/* 
 * 	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 div{
	color: #FFF;
	display: inline-block;
	margin: 5px;
	padding: 4px 7px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	background: #869791;
	cursor: pointer
}
.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: 5px 7px;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	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;
}

/*********************************************************/
.primary-slideshow .owl-stage {
	background: #efefef;
}
.primary-slideshow .owl-item {

}
.primary-slideshow .owl-controls{
	text-align: center;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	margin: 0;
	padding: 0;
	height: 0;
	width: 100%;
}

/* Styling Next and Prev buttons */
.primary-slideshow .owl-controls .owl-nav div{
	color: #FFF;
	position: absolute;
	top: 50%;
	display: block;
	width: 26px;
	height: 39px;
	padding: 0;
	margin: -20px 0 0;
	cursor: pointer;
	opacity: 0.3;
	filter: Alpha(Opacity=30);/*IE7 fix*/
	transition-property: opacity;
  	transition-duration: 200ms;
  	transition-timing-function: ease;
}
.primary-slideshow .owl-controls .owl-nav div.owl-prev {
	left: 5px;
	background: url(arrow-slider-prev.png) left center no-repeat transparent;
	text-indent: -10000px;
}
.primary-slideshow .owl-controls .owl-nav div.owl-next {
	right: 5px;
	background: url(arrow-slider-next.png) left center no-repeat transparent;
	text-indent: 10000px;
}
.primary-slideshow .owl-controls .owl-nav .disabled{
	opacity: 0;
	filter: Alpha(Opacity=0);/*IE7 fix*/
	cursor: default;
}

/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.primary-slideshow .owl-controls .owl-nav div:hover{
	opacity: 1;
	filter: Alpha(Opacity=100);/*IE7 fix*/
}

/* Styling dots*/
.primary-slideshow .owl-dots {
	position: absolute;
	bottom: 0;
	right: 0;
	line-height: 1;
}
.primary-slideshow .owl-dots .owl-dot{
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
}

.primary-slideshow .owl-dots .owl-dot span{
	-webkit-backface-visibility: visible;
	display: block;
	width: 10px;
	height: 10px;
	margin: 5px 5px 5px 0;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background: #999;
	transition-property: opacity;
  	transition-duration: 200ms;
  	transition-timing-function: ease;

  	border: 2px solid #efefef;
	-moz-border-radius: 3px;/*Firefox*/
	-webkit-border-radius: 3px;/*Safari, Chrome*/
	-khtml-border-radius: 3px;/*Konqueror*/
	border-radius: 3px;
}

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