/*
* 	Owl Carousel Owl Demo Theme 
*	v1.3.3
*/

.owl-theme .owl-controls {
	margin-top: 0px;
	text-align: center;
}

/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div{
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	filter: Alpha(Opacity=50);/*IE7 fix*/
	height: 37px;
	width: 13px;
}
/* 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;
	text-indent: -9999px;
	width: 20px;
	height: 6px;
	margin: 0 5px;
	outline: 0;
	background-color: #f1f1f2;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
	  background: #ee1c25;
}

/* 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-demo .item{
  display: block;
  padding: 0px 0px;
  margin: 0px;
  color: #FFF;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  text-align: center;
}
.owl-theme .owl-controls .owl-buttons div {
  padding: 5px 9px;
}
 
.owl-theme .owl-buttons i{
  margin-top: 2px;
}
 
//To move navigation buttons outside use these settings:
 
.owl-buttons div {
  position: absolute;
}
 
.owl-buttons .owl-prev{
	left: 50px;
	top: 45%; 
	position: absolute;
	background-image: url(../images/left-arrow.png) !important;
	background-repeat: no-repeat;
	color: transparent !important;

}
 
.owl-buttons .owl-next {
    right: 50px;
    top: 45%;
    position: absolute;
    background-image: url(../images/right-arrow.png) !important;
    background-repeat: no-repeat;
    color: transparent !important;
}
#owl-demo2 .owl-buttons .owl-prev {
    left: -50px;
	top: 30%;
}
#owl-demo2 .owl-buttons .owl-next {
    right: -50px;
	top: 30%;
}
.owl-buttons {
    height: 0;
}
.owl-buttons div:first-child {
	display: none !important; 
}