#rotatorContainer {
	height: 860px;
	min-height: 460px;
	min-width: 480px;
	background-color: #000;
	position: absolute;
	left: 0px;
	right: 0px;
}

#rotatorImage {
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	margin-bottom: 125px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

#mainImage {
	position: absolute;
	left: 50px;
	right: 50px;
	top: 5px;
	bottom: 0px;
	text-align: center;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

	#mainImage img {
		height: 100%;
		-webkit-animation: galleryImageFadeIn 1s;
		-moz-animation: galleryImageFadeIn 1s;
		animation: galleryImageFadeIn 1s;
	}

 #transLeft,
 #transRight {
	width: 40px;
	height: 40px;
	background-color: #aeaeae;
	display: inline-block;
	text-align: center;
	vertical-align: center;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	top: 50%;
	margin-top: -20px;
	opacity: .75;
	padding: 4px;
	cursor: pointer;
 }
 
	#transLeft:hover,
	#transRight:hover,
	#expandImage:hover {
		opacity: 1;
	}
	
	#transLeft.disabled,
	#transLeft.disabled:hover,
	#transRight.disabled,
	#transRight.disabled:hover {
		opacity: .25;
	}
 
 #transLeft {
	background-image: url("../rotatorStyleImages/arrowLeft.png");
	left: 0px;
	border-radius: 0px 22px 22px 0px;
 }
 
 #transRight {
	background-image: url("../rotatorStyleImages/arrowRight.png");
	right: 0px;
	border-radius: 22px 0px 0px 22px;
 }
 
 #expandImage {
	position: absolute;
	bottom: 5px; 
	right: 5px;
	height: 40px;
	width: 40px;
	background-image: url("../rotatorStyleImages/expand.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	background-color: rgba(100,100,100,.5);
	opacity: .75;
 }
 
 #rotatorNavStrip {
	background-color: #000;
	height: 130px;
	position: absolute;
	bottom: 0px;
	left: 0px;
	right: 0px;
 }

.navStripImages {
	position: absolute;
	height: 120px;
	left: 25px;
	right: 25px;
	top: 5px;
	white-space: nowrap;
	overflow: hidden;
}

	.navStripImages img {
		display: inline-block;
		height: 120px;
		margin-right: 5px;
		cursor: pointer;
		-webkit-animation: expandNavStrip 1s;
		-moz-animation: expandNavStrip 1s;
		animation: expandNavStrip 1s;
	}

		.navStripImages img:last-child {
			margin-right: 0px;
		}

		.navStripImages img:hover {
			opacity: .75;
		}

		.navStripImages img.selected {
			opacity: .75;
			padding: 20px;
			height: 80px;
			-webkit-animation: shrinkNavStrip 1s;
			-moz-animation: shrinkNavStrip 1s;
			animation: shrinkNavStrip 1s;
		}

#navStripLeft,
#navStripRight {
	height: 120px;
	width: 20px;
	display: inline-block;
	background-repeat: no-repeat;
	background-position: center;
	background-color: #3d3d3d;
	opacity: 1;
	position: absolute;
	top: 5px;
	cursor: pointer;
}

#navStripLeft:hover,
#navStripRight:hover {
	opacity: .75;
}

#navStripLeft.disabled,
#navStripRight.disabled {
	opacity: .25
}


#navStripLeft { 	
	background-image: url("../rotatorStyleImages/stripLeftArrow.png"); 
	left: 0px;
}

#navStripRight { 	
	background-image: url("../rotatorStyleImages/stripRightArrow.png"); 
	right: 0px;
}


#overlayBackground {
	background-color: rgba(0,0,0,.75);
	opacity: 0;
	display: none;
	z-index: 100;
	position: absolute;
	top: 0px;
	right: 0px; 
	bottom: 0px;
	left: 0px;
}

#overlayImage {
	opacity: 1;
	position: absolute; 
	top: 50px;
	right: 50px;
	bottom: 50px;
	left: 50px;
	background-position: top center;
	background-size: contain;
	background-repeat: no-repeat;
	z-index: 110;
}

#overlayX {
	opacity: .85;
	background-color: #fff;
	border-radius: 30px;
	background-image: url("../rotatorStyleImages/x-icon.png");
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	top: 25px;
	right: 25px;
	height: 50px;
	width: 50px;
	padding: 10px;
	z-index: 120;
}

#overlayX:hover {
	opacity: 1;
}

/* @keyframes */

@keyframes shrinkNavStrip {
	from 
	{
		height: 120px;
		opacity: 1;
		padding: 0;
	}
	to 
	{
		opacity: .75;
		padding: 20px;
		height: 80px;
	}
}

@keyframes expandNavStrip {
	from 
	{
		opacity: .75;
		padding: 20px;
		height: 80px;
	}
	to 
	{
		height: 120px;
		opacity: 1;
		padding: 0;
	}
}

@keyframes galleryImageFadeIn {
	from {opacity: 0;}
	to {opacity: 1;}
}