/*
* 	product Carousel product Demo Theme 
*	v1.3.3
*/

.product-theme .product-controls{
	margin-top: 10px;
	text-align: center;
}

/* Styling Next and Prev buttons */

.product-theme .product-controls .product-buttons div{
	color: #FFF;
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	margin: 5px;
	height:57px;
	width:39px;
	display:block;
	font-size: 12px;
	transition:0.5s all;
    -webkit-transition:0.5s all;
    -moz-transition:0.5s all;
    -o-transition:0.5s all;
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.product-theme .product-controls.clickable .product-buttons div:hover{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	text-decoration: none;
}

.product-prev {
	position: absolute;
	top: 110%;
	left: -6%;
	background: url(../images/c-arrows.png) no-repeat;
	z-index:60;
}
.product-next{
	position: absolute;
	top: 110%;
	right: -6%;
	background: url(../images/c-arrows.png) no-repeat -39px 0px;
	z-index:60;
	
}

#product-demo .product-prev {
	top:50%;
	left: 0%;
}

#product-demo .product-next {
	top:50%;
	right:0;
}



/* Styling Pagination*/

.product-theme .product-controls .product-page{
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
}
.product-theme .product-controls .product-page span{
	display: block;
	width: 12px;
	height: 12px;
	margin: 5px 7px;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: #869791;
}

.product-theme .product-controls .product-page.active span,
.product-theme .product-controls.clickable .product-page:hover span{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
}

/* If PaginationNumbers is true */

.product-theme .product-controls .product-page span.product-numbers{
	height: auto;
	width: auto;
	color: #FFF;
	padding: 2px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

/* preloading images */
.product-item.loading{
	min-height: 150px;
	background: url(AjaxLoader.gif) no-repeat center center
}