/*
* 	Owl Carousel Owl Demo Theme 
*	v1.3.3
*/

.owl-theme .owl-controls{
	/*margin-top: 0px;*/
	text-align: center;
}

/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div{
	position: absolute;
	z-index: 99999999;
	text-align: center;
	margin-top: -24px;
	top: 45%;
	color: #FFF;
	text-decoration: none;
	width: 32px;
	height: 32px;
	line-height: 27px;
	font-size: 24px;
	background: rgba(0,0,0,.1);
	border-radius: 100%;
	text-indent: 0;
	-webkit-transition: all .3s ease;
}
.owl-theme .owl-controls .owl-buttons .owl-prev{
	left: 0px;
	opacity: 0;
	top: 50%;
}
.owl-theme .owl-controls .owl-buttons .owl-next{
	right: 0px;
	opacity: 0;
	top: 50%;
}
.ssw_region .carousel:hover .owl-prev {
	left: 15px;
	opacity: 1;
}
.ssw_region .carousel:hover .owl-next {
	right: 15px;
	opacity: 1;
}


/* 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: 10px;
	height: 10px;
	margin: 5px 7px;
	border: 1px solid rgb(255, 255, 255);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
	font-weight: 600;
	color: #4CB2D1;
	box-shadow: 0 0 3px black;
}

.owl-theme .owl-controls .owl-page.owl-slider-active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
	background: rgba(255, 255, 255, 0.75);
}

/* 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
}