

.owl-item img {
	opacity: 1;
	  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -ms-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.owl-item:hover img {
	opacity: 0.2;
    filter: alpha(opacity=50); /* For IE8 and earlier */
    -webkit-filter: blur(5px);
    
}

.infoblock {
position: absolute;
	top: 50%;
	
-webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -ms-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  	max-width:200px;
  	max-height:250px;
	margin:0 auto;
	font-size:12px;
	margin-top:-100px;
	border-radius:5px;
	display:table;
	left: 50%;
	opacity: 0;
	margin-left:-100px;
}

.owl-item:hover .infoblock{
	opacity:1;

}

.infobutton{
	    background: rgba(255,188,102,1);
    border-radius: 20px;
    padding: 10px 20px 10px 20px;
    color: white;
    text-transform:uppercase;
    text-align:center;
    clear:both;
    margin-top:20px;
    cursor:pointer;
}

.owl-dots {display:none;}

.leftnav{
	background-image:url('../img/left.png');
	height:25px;
	width:15px;
	display:block;
}

.rightnav{
	background-image:url('../img/right.png');
	height:25px;
	width:15px;
	display:block;
}

.owl-nav {width:100%;}
.owl-next {position:absolute;right:0;}
.owl-prev {position:absolute;left:0;}
