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

.owl-theme .owl-controls{
	margin-top: 0px;
	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: 0px;
	padding: 0px 0px;
	font-size: 12px;
	
	background: #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*/

/* If PaginationNumbers is true */



/* preloading images */

.owl-theme .owl-controls .owl-buttons div 
{
	color: #000;
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	margin: 5px;
	padding: 10px 20px;
	font-size: 18px;	
	background: #fff;	
  position: absolute;
  
}

 .owl-theme .owl-controls .owl-buttons .owl-prev{
  left: 0px;
  top: 40%; 
}
 
.owl-theme .owl-controls .owl-buttons .owl-next{
  right: 0px;
  top: 40%; 
}

.owl-pagination{
	padding-top:50px;
	text-align: center;
	position: absolute;
	bottom: 0px;
	height: 30px;
	width: 100%;
	left: 0;
	z-index: 1000;
}
.owl-pagination .owl-page {
	display: inline-block;
	position: relative;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	margin: 3px;
	background: #ddd;
	background: rgba(150,150,150,0.4);
	cursor: pointer;
	box-shadow: 
		0 1px 1px rgba(255,255,255,0.4), 
		inset 0 1px 1px rgba(0,0,0,0.1);
}

.owl-pagination .owl-page {
	background: rgba(150,150,150,0.1);
	margin: 6px;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
	box-shadow: 
		0 1px 1px rgba(255,255,255,0.4), 
		inset 0 1px 1px rgba(0,0,0,0.1),
		0 0 0 2px rgba(255,255,255,0.5);
}

.owl-pagination .active,
.owl-pagination .owl-page:hover {
	box-shadow: 
		0 1px 1px rgba(255,255,255,0.4), 
		inset 0 1px 1px rgba(0,0,0,0.1),
		0 0 0 5px rgba(255,255,255,0.5);
}

.owl-pagination .active:after {
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	top: 3px;
	left: 3px;
	border-radius: 50%;
	background: rgba(255,255,255,0.8);
}


@media (max-width: 480px)
{
	.owl-theme .owl-controls .owl-buttons div 
{
	padding: 5px 10px;
	font-size: 12px;	
}
}
@media (max-width: 320px)
{
	.owl-theme .owl-controls .owl-buttons div 
{
	padding: 5px 10px;
	font-size: 12px;	
}
}