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

.owl-theme .owl-controls
{
    height: 0px;
	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-over div{
	color: #FFF;
	display: inline-block;
	margin: 0px;
	font-size: 12px;
	height: 30px; 
	width: 28px;
	margin-top: -30px;
	background:url(/images/slider-left.png) no-repeat;
	/*-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	background: #869791;*/
	cursor: pointer;
	position: absolute;
	top: 50%;
	display: none;
}
.owl-theme .owl-controls .owl-nav-over div.owl-prev{left: 0px; background:url(/images/slider-left.png) no-repeat;}
.owl-theme .owl-controls .owl-nav-over div.owl-next{right: 0px;background:url(/images/slider-right.png) no-repeat;}
.owl-theme:hover .owl-controls .owl-nav-over div{display:inline-block}

.owl-theme .owl-controls .owl-nav-over div.owl-prev-big{left: 0px;width:36px; height:44px; background:url(/images/slider-left-big.png) no-repeat;}
.owl-theme .owl-controls .owl-nav-over div.owl-next-big{right: 0px;width:36px; height:44px;background:url(/images/slider-right-big.png) no-repeat;}

/******New by HK*****/
.owl-theme .owl-controls .owl-nav div{
	color: #FFF;
	display: inline-block;
	margin: 0px;
	font-size: 12px;
	height: 24px; 
	width: 24px;
	margin-top: 0px;
	background:#f5f5f5 no-repeat center enter;
	/*-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	background: #869791;*/
	cursor: pointer;
	position: absolute;
	top: -25px;
	display: none;
}
.owl-theme .owl-controls .owl-nav div.owl-prev{right: 31px; left:auto; background:#ddd url(/images/arrow-left-black.png) no-repeat center;}
.owl-theme .owl-controls .owl-nav div.owl-next{right: 0px;background:#ddd url(/images/arrow-right-black.png) no-repeat center; }
.owl-theme:hover .owl-controls .owl-nav div{display:inline-block}
/************/

.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: 8px;
	height: 8px;
	margin: 0px 3px 0px 3px;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	border-radius: 16px;
	background: #869791;
	transition-property: opacity;
  	transition-duration: 200ms;
  	transition-timing-function: ease;
}

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

