/*
* 	lvwsidx Carousel Owl Theme
*	v1.0.0
*/

.owl-controls {
	margin-top: -60px;
	width: 100%;
	overflow: hidden;
}

.owl_controls_by_title .owl-controls {
	top: 0;
	position: absolute;
	width: 100%;
}

/* Styling Next and Prev buttons */
.owl_controls_by_title .owl-nav,
.parent-carousel-wrap .owl-nav {
	min-height: 48px;
}

.owl-prev,
.owl-next {
	position: absolute;
	display: block;
	width: 50px;
	height: 48px;
	background: transparent url("arrows.png") no-repeat scroll 0% 0%;
	text-indent: -9999px;
	border: 0px none;
	transition: all 200ms ease-in-out 0s;
	max-width: 50px;
	overflow: hidden;
}

.owl-prev {
	left: 20px;
}

.owl-next {
	right: 40px;
	background-position: -50px 0px;
	right: 20px;
}

/* Styling dots */
.owl-dots {
	padding-top: 10px;
}

.owl-dot {
	display: inline-block;
	vertical-align: middle;
	width: 42px;
	height: 20px;
	color: #000;
	background-color: #00A3BA;
	margin: 0 10px;
	border-radius: 20px;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border: #fff double 4px;
}

.owl-dots .active {
	background-color: #fff;
	border: #00A3BA double 4px;
}

/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.lvwsidx-owl-theme .owl-controls.clickable .owl-buttons div:hover{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	text-decoration: none;
}

/* Styling Pagination*/

.lvwsidx-owl-theme .owl-controls .owl-page{
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
}
.lvwsidx-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;
}

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

/* If PaginationNumbers is true */

.lvwsidx-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
}

/**
 * 16.4 Desktop Small 955px or larger
 */

@media screen and (min-width: 59.6875em) {

	.lvwsidx-owl-theme {
		width: 100%;
		margin: 0 auto 10px;
	}

	.lvwsidx-owl-theme .item {
		height: 80%;
		max-height: 80%;
	}

	.lvwsidx-owl-theme .owl-controls {
		display: block;
	}
	
	/* Images */
	.lvwsidx-owl-theme img {
		width: auto !important;
	}
	
	.lvwsidx-owl-theme img.alignleft {
		margin: 0.4em;
	}
	
}