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

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

/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons .owl-prev,
.owl-theme .owl-controls .owl-buttons .owl-next{
	color: #FFF;
	zoom: 1;
	*display: inline;/*IE7 life-saver *//*IE7 fix*/
	position: absolute;
	left: 45px;
	top: 50%;
	display: block;
	margin-top: -50px;
	width: 100px;
	height: 100px;
	
}

.owl-theme .owl-controls .owl-buttons .icon-wrap {
	background: url(nav.png) 0 no-repeat;
	display: block;
	width: 25px;
	height: 45px;
	position: relative;
	z-index: 100;
	top: 25px;
    left: 35px;
}
.owl-theme .owl-controls .owl-buttons .owl-next .icon-wrap {
	background-position: 100% 0;
}

.owl-theme .owl-controls .owl-buttons .owl-next {
    right: 45px;
    left: auto;
}





.owl-theme .owl-controls .owl-buttons .pic {
    background-color: #566473;
    border-radius: 50%;
    height: 100%;
    left: 0;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    transform: scale(0.7);
    transition: transform 0.3s ease 0s, 
    opacity 0.3s ease 0s,
    background-color 0.1s ease 0s;
    width: 100%;
}
.owl-theme .owl-controls .owl-buttons img {
   /* border-radius: 50%;*/
    display: block;
    transition: transform 0.3s ease 0s;
   /* width: 100px;*/
   width: auto;
   max-width: none;
    margin-left: -50%;
 	height: 100px;
}
.owl-theme .owl-controls .owl-buttons .owl-prev img {
    transform: translateX(-100%);
}
.owl-theme .owl-controls .owl-buttons .owl-next img {
    transform: translateX(100%);
}
.owl-theme .owl-controls .owl-buttons .owl-prev:hover .pic,
.owl-theme .owl-controls .owl-buttons .owl-next:hover .pic {
    background-color: transparent;
    opacity: 1;
    transform: scale(1);
    transition: transform 0.3s ease 0s, opacity 0.3s ease 0s, background-color 0.1s ease 0.2s;
}
.owl-theme .owl-controls .owl-buttons .owl-prev:hover img,
.owl-theme .owl-controls .owl-buttons .owl-next:hover img {
    transform: translateX(0px);
}













/* 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-pagination{
    position: absolute;
    left: 50%;
    margin-left: -770px;
    bottom: 130px;
    width: 1340px;
    text-align: right;
}
.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: 20px;
	height: 20px;
	margin: 5px 7px;/*IE7 fix*/
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: transparent;
	border: 3px solid #fff;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
	background: #fff;/*IE7 fix*/
}

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