/**
 * Owl Carousel v2.1.0
 * Copyright 2013-2016 David Deutsch
 * Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
 */
 
.owl-theme .owl-controls {
	margin-top: 10px;
	text-align: center;
}

/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div{
	color: #FFF;
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	margin: 5px;
	padding: 3px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
/*	background-color: #869791;
*/	filter: Alpha(Opacity=50);/*IE7 fix*/
	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;/*IE7 life-saver */
}
.owl-theme .owl-controls .owl-page span{
	display: block;
	width: 12px;
	height: 12px;
	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;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
}

/* 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(AjaxLoader.gif) no-repeat center center
}






/*	============================================================
	OWL-NAV
	============================================================ */
.owl-theme .owl-controls{
/*	margin-top:10px;
	text-align:center;
	-webkit-tap-highlight-color:transparent
*/}

.owl-theme .owl-controls .owl-nav [class*=owl-]{
	color:#fff;
	font-size:14px;
	margin:5px;
	padding:4px 7px;
	/*background:#d6d6d6;*/
	display:inline-block;
	cursor:pointer;
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
	border-radius:3px
}

.owl-theme .owl-controls .owl-nav [class*=owl-]:hover{
	background:#869791;
	color:#fff;
	text-decoration:none
}

.owl-theme .owl-controls .owl-nav .disabled{
	opacity:.5;
	cursor:default
}


.owl-theme .owl-controls .owl-nav .disabled{
	opacity:.5;
	cursor:default
}

/*	============================================================
	PREF / NEXT
	============================================================ */
.owl-carousel {
	position: relative;
}

.owl-nav {
      position: absolute;
      top: 48%;
      left: 48%;
      transform: translate(-48%,-48%);
      width: 100%;
}
	.owl-theme .owl-nav  button {
		border: 0px transparent;
		background-color: transparent;
	}

.owl-prev,
.owl-next {
	/*position: absolute;
	bottom: -5px;
	margin-bottom: 5px;*/
	/*margin: auto !important;*/
	/*margin-top: -20px;*/ 
}
.fs-prev {
	float: left;
	color: rgb(201, 201, 201);
	margin-left: 10px;
	font-size: 150%;
}
.fs-next {
	float: right;
	color: rgb(201, 201, 201);
	margin-right: 10px;
	font-size: 150%;
}
.fs-prev:hover,
.fs-next:hover {
	color: #BCBCBC;
}

	@media (min-width: 320px) and (max-width: 479px) {
		.fs-prev,
		.fs-next {
			display: none;
		}
		.fs-prev {
		}
		.fs-next {
		}
	}
	@media (min-width: 480px) and (max-width: 991px) {
		.fs-prev,
		.fs-next {
			display: none;
		}
		.fs-prev {
		}
		.fs-next {
		}
	}


/*	============================================================
	OWL-DOTS
	============================================================ */
.owl-theme .owl-dots {
	margin-top: 10px;
	margin-left: 5px;
}

.owl-theme .owl-dots .owl-dot {
	display:inline-block;
	zoom:1;
	*display:inline
}

.owl-theme .owl-dots .owl-dot span {
	width:10px;
	height:10px;
	margin:5px 7px;
	background:#d6d6d6;
	display:block;
	-webkit-backface-visibility:visible;
	-webkit-transition:opacity 200ms ease;
	-moz-transition:opacity 200ms ease;
	-ms-transition:opacity 200ms ease;
	-o-transition:opacity 200ms ease;
	transition:opacity 200ms ease;
	-webkit-border-radius:30px;
	-moz-border-radius:30px;
	border-radius:30px
}

.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{
background:#869791
}
