/*
* 	Owl Carousel Owl Demo Theme 
*	v1.3.3
*/
.owl-single .owl-controls {		
	text-align: center;
	z-index: -1;
	width: 100%;
}

/* Styling Next and Prev buttons */
.owl-single .owl-controls .owl-buttons div {
	color: #FFF;
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	background: url('../images/owl-controls.png') no-repeat;
	filter: Alpha(Opacity=80);/*IE7 fix*/
	opacity: 0.8;
	width: 22px;
	height: 41px;
}

.owl-single .owl-controls .owl-buttons div:hover {
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
}

.owl-single .owl-controls .owl-buttons .owl-prev {
	position: absolute;
	top: 50%;
	left: 20px;
	margin-top: -20px;
	background-position: left;
}

.owl-single .owl-controls .owl-buttons .owl-next {
	position: absolute;
	top: 50%;
	right: 20px;
	margin-top: -20px;
	background-position: right;
}
	@media (max-width: 480px) {	
		.owl-single .owl-controls .owl-buttons .owl-prev  {
			top: 50%;
			left: 1%;
		}
		.owl-single .owl-controls .owl-buttons .owl-next {
			top: 50%;
			right: 1%;
		}
	}



/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-single .owl-controls.clickable .owl-buttons div:hover{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	text-decoration: none;
}

/* Styling Pagination */
.owl-single .owl-pagination {
	position: absolute;
	z-index: 9999;
	left: 0;
	right: 0;
	bottom: 20px;
}

.owl-single .owl-controls .owl-page {
	display: inline-block;
	zoom: 1;
	*display: inline; /*IE7 life-saver */
}
.owl-single .owl-controls .owl-page span {
	display: block;
	width: 10px;
	height: 10px;
	margin: 6px 8px;
	filter: Alpha(Opacity=50); /*IE7 fix*/
	opacity: 0.5;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: #fff;
	padding: 3px;
}

.owl-single .owl-controls .owl-page span:after {
	position: relative;
	top: -8px;
	left: -8px;
	display: block;
	content: "";
	border: 1px solid #ccc;
	width: 20px;
	height: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
}

	.owl-single .owl-controls.clickable .owl-page:hover span {
		filter: Alpha(Opacity=100);/*IE7 fix*/
		opacity: 1;
		background: #fff;
	}

	.owl-single .owl-controls .owl-page.active span,
	.owl-single .owl-controls.clickable .owl-page.active:hover span {
		background: #189FD6 !important;
		opacity: 1;
	}
	
	.owl-single .owl-controls .owl-page.active span:after {
		border: 1px solid #189FD6;
	}


/* If PaginationNumbers is true */

.owl-single .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
}