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

.owl-theme .owl-controls{
	margin-top: 0px;
	text-align: center;
}


/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div{
	width: 30px;
	height: 31px;
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	box-shadow: none;
	font-size: 0;
	line-height: 0;
	border:none;
	
	}
	.owl-theme .owl-controls .owl-buttons div:hover{

		}
	.owl-theme .owl-controls .owl-buttons .owl-next{
		position: absolute;
		right: -29px;
		top: 0px;
		
		box-shadow: none;
		border:none;
	}
		.owl-theme .owl-controls .owl-buttons .owl-next:before{
			position: absolute;
			top: 15px;
			right: 0px;
			font-family: 'FontAwesome';
			content: "\f105";
			font-size: 48px;
			color: #000;
			font-style: normal;
			color: #7a7d81;
			background: #fff;
			box-shadow: none;
			border:none;
		}

	.owl-theme .owl-controls .owl-buttons .owl-prev{
		position: absolute;
		left: -26px;
		top: 0px;
		width: 40px;
		height: 31px;
		
	}
		.owl-theme .owl-controls .owl-buttons .owl-prev:before{
			position: absolute;
			top: 15px;
			right: 25px;
			font-family: 'FontAwesome';
			content: "\f104";
			font-size: 48px;
			color: #000;
			font-style: normal;
			background-color: #fff;
			color: #7a7d81;
			background: #fff;
		}

		.owl-theme .owl-controls .owl-buttons .owl-next:hover:before, 
		.owl-theme .owl-controls .owl-buttons .owl-prev:hover:before{
			filter: alpha(opacity=50);/*IE7 fix*/
			opacity: 0.5;

		}



/* 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;
	
	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;
}

/* 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-carousel:before{
	display: block;
	position: absolute;
	width: 2px;
	height: 31px;
	content: '';
	border-left:2px solid #fff;
	left: 0px;
	top: 0px;
	z-index: 9999;
	 -webkit-appearance: none;

} 