#coverflow {
	max-width: 800px;
	height: 400px;
	background: rgba(0, 0, 0, 0);
	position: relative;
	margin: 0 auto;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	overflow: hidden;
	outline: solid 0px;
}

.covers {
	width: 100%;
	height: 100%;
	margin: 0 auto;
	overflow: hidden;
	position: absolute;
}

#coverflow ul {
	top: 0px;
	width: 5000px;
	margin: 0;
	padding: 0;
	position: absolute;
	-webkit-transition: -webkit-transform 0.5s ease;
	transition: transform 0.5s ease;
	-webkit-transform: translate3d(175px, 0, 0);
	transform: translate3d(175px, 0, 0);
}

#coverflow li {
	width: 100px;
	list-style: none;
	float: left;
	-webkit-transition: margin 0.5s ease, -webkit-transform 0.5s ease;
	transition: margin 0.5s ease, transform 0.5s ease;
	position: relative;
	pointer-events: none;
	}

#coverflow .imgdiv {
	width: 250px;
	-webkit-transition: -webkit-transform 0.5s ease;
	transition: transform 0.5s ease;
	pointer-events: auto;
	position: relative;
	display: block;
	}

#coverflow .imgdiv img {
	width: 250px;
	display: block;
}

#coverflow .refl {
	display: none;
}

#coverflow .text {
	position: absolute;
	bottom: -50px;
	top: 383.328px;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
	opacity: 0;
	visibility: hidden;
	pointer-events: auto;
	background: rgba(0, 0, 0, 0.298039);
	width: 375px;
	margin-left: -62px;
	color: rgb(255, 255, 255);
	font-family: "Lucida Sans Unicode", Helvetica, Arial, sans-serif;
	font-size: 18px;
}

#coverflow .text p {
	margin: 5px;
	position: relative;
	text-align: center;
}

li:nth-child(-n+1) .imgdiv,
#coverflow ul li .leftItems {
	-webkit-transform: perspective(0px) rotateY(0deg);
	transform: perspective(0px) rotateY(0deg);
}

li:nth-child(n+3) .imgdiv,
#coverflow ul li .rightItems {
	-webkit-transform: perspective(0px) rotateY(-0deg);
	transform: perspective(0px) rotateY(-0deg);
}

li:nth-child(2) .imgdiv,
#coverflow ul li .straight {
	-webkit-transform: rotateY(0deg) scale(1);
	transform: rotateY(0deg) scale(1);
}

#coverflow li:nth-child(-n+1),
#coverflow ul li.leftLI {
	-webkit-transform: translate3d(-175px, 0, 0);
	transform: translate3d(-175px, 0, 0);
}

#coverflow li:nth-child(n+3),
#coverflow ul li.rightLI {
	-webkit-transform: translate3d(175px, 0, 0);
	transform: translate3d(175px, 0, 0);
}

#coverflow ul .straightLI {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.notransition {
	-webkit-transition: none !important;
	transition: none !important;
}

#coverflow .imgdiv a,
#coverflow .text {
	cursor: pointer;
	/*grab cursor available for all browsers except IE (we can use external .cur file but uses too much CPU)*/
	cursor: -webkit-grab;
	cursor: grab;
}

#coverflow .Preloader {
	/*none - autoplay:false ; block - autoplay:true*/
	display: none;
}

#coverflow .Lightbox {
	display: block;
}

.Controller { z-index: 10000; position: absolute; left: 50%; margin-top: 350px; }
#relativediv { position: relative; left: -50%; }
.Controller img { margin-right: 3px; position: relative; opacity: .6; cursor: pointer; }
.Controller img:hover { opacity: 1; }
#prev {-webkit-transform: scaleX(-1); transform: scaleX(-1);}
#play { position: relative; }
#pause-span { visibility: hidden; position: relative; }
#pause { position: absolute; right: 100%; }
.Preloader {
	position: absolute;
	width: 30px;
	height: 30px;
	margin-left: 62%;
	margin-top: 1%;
	background-color: #aaa;
	border: 3px solid #333;
	-webkit-border-radius: 100%;
	border-radius: 100%;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: -webkit-transform 3s ease-in-out,
		opacity 3s ease-in-out;
	transition: transform 3s ease-in-out,
		opacity 3s ease-in-out;
}
.modified { opacity: 1; -webkit-transform: scale(0); transform: scale(0); }