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

.owl-theme .owl-controls{
	margin-top: 10px;
	text-align: center;
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	margin-top: -35px;
	pointer-events: none;
}

/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div{
	color: #68ac1b;
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	padding: 20px 20px 0 15px;
	font-size: 36px;
	font-weight: 700;
	width: 50px;
	height: 50px;
	line-height: 0;
	border: #fff 2px solid;
}
.owl-buttons div span{
	transform : scale(1,1.8);
	-webkit-transform:scale(1,1.8); /* Safari and Chrome */
	-moz-transform:scale(1,1.8); /* Firefox */
	-ms-transform:scale(1,1.8); /* IE 9+ */
	-o-transform:scale(1,1.8); /* Opera */
	display: block;
}
.owl-buttons div:hover{
	border: #68ac1b 2px solid !important;
}
.owl-buttons div{ pointer-events: all }
/* 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;
	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;
}

.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;
}
.owl-prev {
	float: left;
	margin-left: -65px !important;
	padding: 20px 20px 0 12px !important;
}
.owl-next {
	float: right;
	margin-right: -55px !important;
}

/* 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
}
.owl-item img{ width: 100%; padding: 0 0 0 10px}
.owl-wrapper-outer{ margin-left: -10px; margin-right: -10px}


@media (max-width: 900px) {
	.owl-theme .owl-controls .owl-buttons div {
		padding: 10px 18px 0 9px;
		font-size: 36px;
		font-weight: 700;
		width: 30px;
		height: 30px;
	}
	.owl-theme .owl-controls .owl-buttons div{
		font-size: 18px;
	}
	.owl-next { margin-right: -35px !important;}
	.owl-prev { padding: 10px 18px 0 9px!important; margin-left: -45px !important }
}
@media (max-width: 750px) {
	.owl-theme .owl-controls .owl-buttons div { background: rgba(255,255,255,0.8) }
	.owl-next { margin-right: 5px !important;}
	.owl-prev { margin-left: 0 !important }
}