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

.owl-theme .owl-controls{
	position: absolute;
    bottom: -30px;
    left: -4px;
}

/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div{
	color: #FFF;
    font-size: 0;
	zoom: 1;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
}
.owl-theme .owl-controls .owl-buttons div.owl-prev{
    position: absolute;
    left: -7px;
    top: -75px;
}
.owl-theme .owl-controls .owl-buttons div.owl-prev:before{
    content: '';
    display: block;
    position: absolute;
    background-image: url('../img/sprite/small_icon_sprite.png');
    background-repeat: no-repeat;
    width: 12px;
    height: 17px;
    background-position: -387px -5px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    
}
.owl-theme .owl-controls .owl-buttons div.owl-next:before{
    content: '';
    display: block;
    position: absolute;
    background-image: url('../img/sprite/small_icon_sprite.png');
    background-repeat: no-repeat;
    width: 12px;
    height: 17px;
    background-position: -280px -5px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    right:-1206px;
}
.owl-theme .owl-controls .owl-buttons div.owl-next:hover:before{
    background-position: -258px -5px;
}
.owl-theme .owl-controls .owl-buttons div.owl-prev:hover:before{
    background-position: -365px -5px;
}
.owl-theme .owl-controls .owl-buttons div.owl-next{
    position: absolute;
    right: 0;
    top: -70px;
}
/* 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-pagination{
    text-align: right;
}

.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: 8px;
	height: 8px;
	margin: 5px 5px;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
	border-radius: 50%;
	background: #e2e2e2;
}

.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: #31b2fd;
}

/* 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;
	border-radius: 30px;
}

/* preloading images */
.owl-item.loading{
	min-height: 150px;
	background: url(AjaxLoader.gif) no-repeat center center
}