@charset "utf-8";

/* This contains all the rotating pages. */
.rotatingPagesContainer{
	max-width: 100%;
	background: #ffffff;
	padding: 8px;
	text-align: center;
}

/* This is an individual page. */
.rotatingPage{
	display: none;
	max-height: 250px;
	position: relative;
	animation: rotatorFadeIn .25s;
}
@keyframes rotatorFadeIn{
	from{
	opacity: 0;
	}
	to{
	opacity: 1;
	}
}

.rotatingPage img{
	max-width:100%;
	max-height:inherit;
}