/* The Preloader in the Slider */
#iCarousel-preloader {
	position: absolute;
	z-index: 1000;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	border: #000 1px solid;
	border-color: rgba(0,0,0,0.6);
	padding: 1px;
	width: 150px;
	height: 3px;
}
#iCarousel-preloader div {
	float: left;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	height: 3px;
	background: #000;
	background: rgba(255,0,0,0.6);
	width: 0px;
}

/* The timer in the Slider */
#iCarousel-timer {
	position: absolute;
	z-index: 1000;
	border-radius: 5px;
	cursor: pointer;
}

#iCarousel-timer div {
	border-radius: 3px;
}

.carousel-container {
	width: 100%;
	overflow: hidden;
        position: relative;
}

#icarousel {
	width: 600px;
	height: 450px;
	position: relative;
	margin: 0 auto 70px auto;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-o-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-perspective: 1000px;
	-moz-perspective: 1000px;
	-o-perspective: 1000px;
	-ms-perspective: 1000px;
	perspective: 1000px;
}

#icarousel .slide {
	display: block;
	border-radius: 8px;
	/*border: 5px #000 solid;*/
	width: 580px;
	/*height: 430px;*/
        min-height: 300px;
        box-shadow: 0 0 25px rgba(0,0,0,0.8);
        overflow: hidden!important;
}
#icarousel .slide img {
    max-width: 100%;
    height: auto;
}

/* The Navigation buttons in the Slider */
a.iCarouselNav {
	display: block;
	position: absolute;
	top: 178px;
	width: 22px;
	height: 44px;
	background: url(../images/galCtrls.png) no-repeat left center;
	z-index: 1000;
	text-indent: -9999px;
        cursor: pointer;
        opacity: 0.5;
        transition: all .2s;
}
a.iCarouselNav:hover {
        opacity: 1;
}
a#iCarouselPrev {
	left: -300px;
}
a#iCarouselNext {
	right: -300px;
	background-position: right center;
}