@charset "utf-8";

/* This contains the stop buttons. */
#rotatorButtonContainer{
	text-align: center;
	width: 100%;
}

/* This is an individual stop button. */
.rotatorButton{
	width: 15px;
	height: 15px;
	border: 2px solid #696969;
	border-radius: 10px;
	background-color: #ffffff;
	margin: 10px;
	display: inline-block;
	cursor: pointer;
}

/* This contains all the rotating pages. */
.pagesWithStopsContainer{
	max-width: 100%;
	background: #ffffff;
	padding: 8px;
	text-align: center;
}

/* This is an individual page in the rotator. */
.pageWithStops{
	display: none;
	max-height: 250px;
	position: relative;
	animation: rotatorWithStopsFadeIn .25s;
}
@keyframes rotatorWithStopsFadeIn{
	from{
	opacity: 0;
	}
	to{
	opacity: 1;
	}
}

.pageWithStops img{
	max-width:100%;
	max-height:inherit;
}