/*
* 	Owl Carousel Owl Demo Theme 
*	v1.3.3
*/

.owl-theme .owl-controls{
	margin-top: 10px;
	text-align: center;
	height: 30px;
}

/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div{
	color: #FFF;
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	width: 30px;
	height: 30px;
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
/* preloading images */
.owl-item.loading{
	min-height: 150px;
	background: url(Loader.gif) no-repeat center center
}


.owl-theme .owl-controls .owl-buttons .owl-prev{
	width: 30px;
	height: 30px;
	margin-right: 5px;
	background: url(button.png) no-repeat;
}
.owl-theme .owl-controls .owl-buttons .owl-next{
	width: 30px;
	height: 30px;
	margin-left: 5px;
	background: url(button.png) no-repeat;
	background-position: left bottom;
}
.owl-theme .owl-controls .owl-buttons .owl-prev:hover{
	width: 30px;
	height: 30px;
	background: url(button.png) no-repeat;
	background-position: right bottom;
}
.owl-theme .owl-controls .owl-buttons .owl-next:hover{
	width: 30px;
	height: 30px;
	background: url(button.png) no-repeat;
	background-position: right top;
}