/* 
 * 	Default theme - Owl Carousel CSS File
 *	v2.0.0
 */

.owl-theme .owl-controls{
	margin-top: -3em;
	text-align: center;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Styling Next and Prev buttons */
.owl-theme .owl-controls .owl-nav div{
	color: #cbcbcb;
	width: 5%;
	font-size: 2em;
}
.owl-theme .owl-controls .owl-nav .owl-prev{
	    position: absolute;
    top: 35%;
    left: -5%;
 background: url(../img/index/ar_left.png);
    width: 48px;
   height:48px;
}
.owl-theme .owl-controls .owl-nav .owl-next{
	position: absolute;
    top: 35%;
    right: -5%;
    background: url(../img/index/ar_right.png);
    width: 48px;
   height:48px;
}
#owl-demo  .owl-controls .owl-nav .owl-prev{
	    position: absolute;
    top: 35%;
    left: 10%;
   background: url(../img/index/ba_left.png);
   width: 55px;
   height: 105px;
}
#owl-demo  .owl-controls .owl-nav .owl-prev:hover{
   background: url(../img/index/ba_left_h.png);
}
#owl-demo  .owl-controls .owl-nav .owl-next:hover{ background: url(../img/index/ba_right_h.png);}
#owl-demo  .owl-controls .owl-nav .owl-next{
	position: absolute;
    top: 35%;
    right: 10%;
    background: url(../img/index/ba_right.png);
    width: 55px;
   height: 105px;
}
.owl-theme .owl-controls .owl-nav .disabled{
	opacity: 0.5;
	cursor: default;
}

/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls .owl-nav div:hover{
	text-decoration: none;
}

/* Styling dots*/
.owl-theme .owl-dots{
width: 10%;
margin-left: auto;
margin-right: auto;
}
.owl-theme .owl-dots .owl-dot{
	display: block;
    margin-top: 10px;
    zoom: 1;
	display: block;/*IE7 life-saver */
	float:  left;
	}

.owl-theme .owl-dots .owl-dot span{
	-webkit-backface-visibility: visible;
	display: block;
	width: 15px;
	height: 15px;
	margin: 5px 0px;
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 0.4;
	background: #999;
	transition-property: opacity;
  	transition-duration: 200ms;
  	transition-timing-function: ease;
  	margin-left: 10px;
  	border-radius: 50%;
  	
}

.owl-theme .owl-dots .owl-dot.active span{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 0.9;
	background: #000;
}
