/*
* 	Owl Carousel Owl Demo Theme 
*	v1.3.3
*/

.arrows .owl-controls {
	text-align: center;
	position:absolute;
	bottom:30px;
	right:32px;
}

.arrows .owl-controls .owl-buttons div {
	float:left;
	background:url(setas.png) center no-repeat;
	height:81px;
	width:70px;
	
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.arrows .owl-controls .owl-buttons .owl-prev {
	background-position:0 0;
}

.arrows .owl-controls .owl-buttons .owl-prev:hover {
	background-position:0 -81px;
}

.arrows .owl-controls .owl-buttons .owl-next {
	background-position:-70px 0;
}

.arrows .owl-controls .owl-buttons .owl-next:hover {
	background-position:-70px -81px;
}

@media screen and (max-width: 620px) {
	.arrows .owl-controls {
		bottom:62px;
	}
	
	.arrows .owl-controls .owl-buttons div {
		background:url(setas_responsiva.png) center no-repeat;
		height:48px;
		width:48px;
	}
	
	.arrows .owl-controls .owl-buttons .owl-prev {
		background-position:0 0;
	}

	.arrows .owl-controls .owl-buttons .owl-next {
		background-position:-48px 0;
	}
	
	.arrows .owl-controls .owl-buttons .owl-prev:hover {
		background-position:0 0;
	}

	.arrows .owl-controls .owl-buttons .owl-next:hover {
		background-position:-48px 0;
	}
}

@media screen and (max-width: 600px) {
	.arrows .owl-controls {
		bottom:22px;
	}
}

@media screen and (max-width: 500px) {
	.arrows .owl-controls {
		width:100%;
		position:absolute;
		bottom:89px;
		right:inherit;
	}
}


/* Styling Pagination*/

.owl-pagination {
	position:absolute;
	bottom:5px;
	left:45%;
}

.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: 13px;
	height: 13px;
	margin: 25px 7px;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: #ffffff;
}

.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;
}


/* preloading images */
.owl-item.loading{
	min-height: 150px;
	background: url(AjaxLoader.gif) no-repeat center center
}