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

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

/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div{
	color: #FFF;
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	margin: 0;
	padding: 0;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;	
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
	z-index: 10;
	width: 50px;
	height: 100%;
	position: absolute;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 50px 50px;
	bottom: 0;
}
 
.owl-theme .owl-controls .owl-buttons .owl-prev{
	left: 0px;
 	background-image: url(../_gfx/button_prev.svg);
}
 
.owl-theme .owl-controls .owl-buttons .owl-next{
    right: 0px;
	background-image: url(../_gfx/button_next.svg);
}
/* 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-page{
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
}
.owl-theme .owl-controls .owl-page span{
	display: block;
	position: relative;
	width: 6px;
	height: 6px;
	margin-left: 6px;
	margin-right: 6px;
	margin-bottom: 0;
	margin-top: 20px;
	filter: Alpha(Opacity=40);/*IE7 fix*/
	opacity: 0.4;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	z-index: 1;
	background-color: #222222;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
	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{
	background: url(AjaxLoader.gif) no-repeat center center
}

@media screen and (max-width: 700px) { 
.owl-theme .owl-controls .owl-buttons div {
	display: none;
}
.owl-theme .owl-controls .owl-page span{
	margin-top: 10px;
}
}