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

.owl-theme .owl-controls{
	margin-top: -28px;
	text-align: left;
	border-bottom:2px solid #9ab6e9;	
	width:100%;
}

/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div{
	position:absolute;
	color: #454545;
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	top:50%;
	margin:-20px 0 0 0;
	padding:0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	background-image:url(../img/direction_nav.png);
	background-repeat:no-repeat;
	width: 28px;
	height: 56px;
	overflow:hidden;
	text-indent:-99px;
	z-index:9;
	filter: Alpha(Opacity=100);/*IE7 fix*/
	font-family: 'nunito', sans-serif;
	font-size:20px;
	font-weight:700;
	-webkit-transition: all .3s ease;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.owl-theme .owl-controls .owl-buttons div.owl-prev{
	background-position:0 0;
	left:20px;
	border-radius:2px 0 0 2px;
}


.owl-theme .owl-controls .owl-buttons div.owl-next{
	background-position:-28px 0;
	right:20px;
	border-radius:0 2px 2px 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-page{
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
}
.owl-theme .owl-controls .owl-page span{
	display: block;
	width: 22px;
	height: 22px;
	margin:0 0 -21px 15px;
	border:5px solid #9ab6e9;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background: #6b8fd1;
}

.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;
	background: #9ab6e9;
	border:5px solid #6b8fd1;
}

/* 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(../img/AjaxLoader.gif) no-repeat center center
}