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

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

/* Styling Next and Prev buttons */
.owl-theme .owl-buttons {
/*	position: absolute;
	left: 0;
	top: 0;
	height: 100%;*/
}

	.owl-theme .owl-controls .owl-buttons div {
		position: absolute;
		top: 50%;
		display: inline-block;
		margin-top: -20px;
		font-size: 0;
	}
	
	.owl-theme .owl-controls .owl-buttons div:after {
		color: #fff;
		font-family: 'fontello';
		font-size: 60px;
	}
	
	.owl-theme .owl-controls .owl-buttons .owl-prev { left: 10px; }
	.owl-theme .owl-controls .owl-buttons .owl-next { right: 10px; }

	.owl-theme .owl-controls .owl-buttons .owl-prev:after {
		content: "\e8b1";
	}

	.owl-theme .owl-controls .owl-buttons .owl-next:after {
		content: "\e8b2";
	}
	
	/* 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 {
		
	}

/* Styling Pagination*/
.owl-theme .owl-controls .owl-page{
	display: inline-block;
}

	.owl-theme .owl-controls .owl-page span {
		display: inline-block;
		margin: 2px 8px;
		width: 3px;
		height: 3px;
		padding: 4px;
		border-width: 1px;
		border-style: solid;
		border-color: transparent;
		background-color: #d8d8d8;
		cursor: pointer;
		vertical-align: middle;

		-webkit-transition: all .25s ease-in-out;
				transition: all .25s ease-in-out;
		-webkit-border-radius: 50%;
				border-radius: 50%;
	}
	
	.owl-theme .owl-controls .owl-page.active span,
	.owl-theme .owl-controls.clickable .owl-page:hover span {
		border-color: #d9d9d9;
		background-color: transparent;
		
		-webkit-transform: scale(1.4);
				transform: scale(1.4);
	}

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