/*
* 	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{
	position:absolute;
	top:50%;
	width:100%;
	}
.owl-theme .owl-controls .owl-buttons div{
	position:absolute;
	top:-35px;
	font-size:0;
	height:70px; width:34px; background:url(../../assets/slideshowArrow.png) no-repeat;
}

.owl-theme .owl-controls .owl-buttons div.owl-prev{left:15px; background-position:0 0;}
.owl-theme .owl-controls .owl-buttons div.owl-next{right:15px; background-position:-50px 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{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	text-decoration: none;
}

/* Styling Pagination*/

.owl-theme .owl-controls .owl-pagination{
	position:absolute;
	width:100%;
	bottom:2rem;}
	
.content-block .owl-theme .owl-controls .owl-pagination{
	bottom:-2.25rem;}
	
	
.owl-theme .owl-controls .owl-page{
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
}
.owl-theme .owl-controls .owl-page span{
	display: block;
	width: 15px;
	height: 15px;
	margin: 0 4px;
	
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	/*background: none;
	border:2px solid #fabb00;*/
	border:none;
}

.pagination-white.owl-theme .owl-controls .owl-page span{
	background: rgba(255,255,255,.7);
}
.pagination-white.owl-theme .owl-controls .owl-page.active span,
.pagination-white.owl-theme .owl-controls.clickable .owl-page:hover span{
	background-color: #fff;
}

.pagination-orange.owl-theme .owl-controls .owl-page span{
	background:#999;
}
.pagination-orange.owl-theme .owl-controls .owl-page.active span,
.pagination-orange.owl-theme .owl-controls.clickable .owl-page:hover span{
	background-color: #ff6600;
}

/* 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(../../assets/AjaxLoader.gif) no-repeat center center;
}


