/*
* 	Owl Carousel Owl Demo Theme 
*	v1.3.3
*/

#owl-bar{
  width: 0%;
  max-width: 100%;
  height: 4px;
  background: #ff9900; /*#7fc242;*/
  filter: Alpha(Opacity=40);/*IE7 fix*/
  opacity: 0.4;
}
#owl-progressBar{
  width: 100%;
  background: #EDEDED;
}

.owl-theme {
    background-color: transparent;
}
.owl-theme .item{
  margin: 0px;
}
.owl-theme .item img{
  display: block;
  width: 100%;
  height: auto;
}
.owl-theme .owl-controls{
	margin-top: 2px;
	text-align: center;
}

/* Styling Next and Prev buttons */
.owl-theme .owl-controls .owl-buttons div{
	/*color: #FFF;
	display: inline-block;
	zoom: 1;
	*display: inline;
	margin: 5px;
	padding: 3px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	background: #ff6600;
	filter: Alpha(Opacity=50);
	opacity: 0.5;*/
}

/* 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;
}
.owl-theme .owl-controls .owl-page span{
	display: block;
	width: 12px;
	height: 12px;
	margin: 5px 7px;
	filter: Alpha(Opacity=20);
	opacity: 0.2;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: #ff6600;
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
	filter: Alpha(Opacity=60);
	opacity: 0.6;
}

/* 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
}

.owl-next {
    z-index: 99;
    top: 50%;
    margin-top: -40px;
    position: absolute;
    /*
    background: url(../img/sprite.png) no-repeat;
    background-position: -72px -36px;
        */
    background: url(../img/img-next.png) no-repeat;
    width: 43px;
    height: 83px;
    right: 10px;    
    filter: Alpha(Opacity=20);
    opacity: 0.2;
}
.owl-prev {
    z-index: 99;
    top: 50%;
    margin-top: -40px;
    position: absolute;
    /*
    background: url(../../img/sprite.png) no-repeat;
    background-position: -8px -36px;
    */
    background: url(../img/img-prev.png) no-repeat;
    width: 43px;
    height: 83px;
    left: 10px;    
    filter: Alpha(Opacity=20);
    opacity: 0.2;
}

.owl-next:hover
,.owl-prev:hover {
    filter: Alpha(Opacity=100);
    opacity: 1;
}


.owl-carousel-caption {
  position: absolute;
  right: 10%;
  top: 20px;
  left: 10%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
}
.owl-carousel-caption .btn {
  text-shadow: none;
}