/* 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;
	display:none;
}
#iCarousel-preloader div {
	float: left;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	height: 3px;
	background: #000;
	background: rgba(0,0,0,0.6);
	width: 0px;
	display:none;
}

/* The timer in the Slider */
#iCarousel-timer {
	position: absolute;
	z-index: 1000;
	border-radius: 5px;
	cursor: pointer;
	display:none;
}

#iCarousel-timer div {
	border-radius: 3px;
	display:none;
}


.carousel-container {
	width: 100%;
	overflow: hidden;
	padding: 3px 0 3px;
}

#icarousel {
	width: 172px;
	height: 250px;
	position: relative;
	margin: 20px 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 .slidetop {
	display:block;
	border-radius: 4px;
	border: 8px #000000 solid;
	border: 8px rgba(0,0,0,0.3) solid;
	width: 100%;
	height: auto;
}
#icarousel .slidetop h5 {position: absolute; bottom: 40px; left: 10px; right:10px; opacity: 0.7; filter:alpha(opacity=70); text-align:center; }
#icarousel .slidetop h5 span {color: #333; background: #fff; background: rgba(255, 255, 255, 0.4); padding: 5px 10px; display:inline-block;
-webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px;}
#icarousel .slidetop:hover h5 { opacity:1; filter:alpha(opacity=100);}


/* The Navigation buttons in the Slider */
a.iCarouselNav {
	display: block;
	position: absolute;
	top: 65px;
	width: 40px;
	height: 80px;
	background-image: url(../img/nav_paddles.png);
	z-index: 1000;
	text-indent: -9999px;
	opacity: 0.5;
	-ms-filter: alpha(opacity=50);
	filter: alpha(opacity=50);
	cursor: pointer;
	
}
a.iCarouselNav:hover {
	opacity: 1;
	-ms-filter: alpha(opacity=100);
	filter: alpha(opacity=100);
}

a.iCarouselNav:active {
	background-image: url(../img/nav_paddles_down.png);
	
}

a#iCarouselPrev {
	left: 3px;
	background-position: -16px 0px
}

a#iCarouselNext {
	right: 3px;
	background-position: 56px 0px;
}




