/* 
 * 	Default theme - Owl Carousel CSS File
 *	v2.0.0
 */

.owl-theme .owl-controls{
	margin-top: 10px;
	text-align: center;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	
}

/* Styling Next and Prev buttons */
.owl-theme .owl-controls .owl-nav .owl-prev{
	position: absolute;left: 50%;margin-left: -664px;
	display: block;
	width: 60px;
	height: 170px;
	cursor: pointer;
	background: url(../img/icon_prev02.png) no-repeat center center;
	text-indent: 100px;
	overflow: hidden;
	top: 100px;
}
.owl-theme .owl-controls .owl-nav .owl-prev:hover{background: url(../img/icon_prev.png) no-repeat center center;}
.owl-theme .owl-controls .owl-nav .owl-next{
	top: 100px;
	position: absolute;left: 50%;margin-left: 600px;
	display: block;
	width: 60px;
	height: 170px;
	cursor: pointer;
	background: url(../img/icon_next02.png) no-repeat center center;
	text-indent: 100px;
	overflow: hidden;
}
.owl-theme .owl-controls .owl-nav .owl-next:hover{background: url(../img/icon_next.png) no-repeat center center;}
.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 .owl-dot{
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
}

.owl-theme .owl-dots .owl-dot span{
	-webkit-backface-visibility: visible;
	display: block;
	width: 10px;
	height: 10px;
	margin: 50px 7px 0 7px;
/*	filter: Alpha(Opacity=50);*//*IE7 fix*/
	/*opacity: 0.5;*/
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: #009fe8;
	transition-property: opacity;
  	transition-duration: 200ms;
  	transition-timing-function: ease;
  	border-radius: 50%;
}

.owl-theme .owl-dots .owl-dot.active span{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	background: #FFFFFF;
}

