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

.owl-theme .owl-controls{
	text-align: center;
}

/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div{
	color: #000;
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	margin: 5px;
	padding:0;
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover{
	text-decoration: none;
}
.owl-theme .owl-controls.clickable .owl-buttons div.disabled{
	filter: Alpha(Opacity=20);/*IE7 fix*/
	opacity: 0.2;
	cursor:default;
 
}

/* Styling Pagination*/

.owl-theme .owl-controls .owl-page{
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	margin: 0 6px;
}
.owl-theme .owl-controls .owl-page span{
	width: 8px; 
	height: 8px;
	border:2px solid #cccccc; 
	display: block; 
	background: #cccccc; 
	cursor: pointer; 
	
	webkit-transform: scale(0.7);
	 	  -moz-transform: scale(0.7);
	        -o-transform: scale(0.7);
	           transform: scale(0.7);
     -webkit-transform-style: preserve-3d;
    -webkit-transform: scale3d(0.7,0.7,0.7);
	
  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;
		  
		  
	-webkit-transition: all 0.2s ease-in-out;
   -moz-transition: all 0.2s ease-in-out;
   -o-transition: all 0.2s ease-in-out;
   -ms-transition: all 0.2s ease-in-out;
   transition: all 0.2s ease-in-out;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
	background:none; 
	border:2px solid #eb428c; 
	
	    webkit-transform: scale(1);
	 	  -moz-transform: scale(1);
	        -o-transform: scale(1);
	           transform: scale(1);
     -webkit-transform-style: preserve-3d;
    -webkit-transform: scale3d(1,1,1);
}
#sync1 .owl-item {text-align:center}
#sync2 .owl-item {
	cursor:pointer;
}
 
#sync2 .owl-item:hover,
#sync2 .owl-item.synced{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
}
#sync2 .owl-item img {
	filter: Alpha(Opacity=60);/*IE7 fix*/
	opacity: 0.6;
	zoom:1;
	display: inline-block;
		transition: all 0.2s ease-in-out 0s;
	-webkit-transition:  all 0.2s ease-in-out 0s;
	-moz-transition:  all 0.2s ease-in-out 0s;
	-o-transition:  all 0.2s ease-in-out 0s;
}
#sync2 .owl-item:hover img,
#sync2 .owl-item.synced img{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
}

/* If PaginationNumbers is true */

.owl-theme .owl-controls .owl-page span.owl-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 */
.owl-item.loading{
	min-height: 150px;
	background: url(AjaxLoader.gif) no-repeat center center
}




 