



/** client logos **/
#clients {
 display: block;
 margin-bottom: 15px;
}

#clients .clients-wrap {
 display: block;
 
 margin: 0 auto;
 overflow: hidden;
}

#clients .clients-wrap ul {
 display: block;
 list-style: none;
 position: relative;
}

#clients .clients-wrap ul li {
 display: block;
 float: left;
 position: relative;
 width: 140px;
 height: 55px;
 line-height: 55px;
 text-align: center;
}
#clients .clients-wrap ul li img {
 vertical-align: middle;
 max-width: 100%;
 max-height: 100%;
 -webkit-transition: all 0.3s linear;
 -moz-transition: all 0.3s linear;
 transition: all 0.3s linear;
 -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=65)";
 filter: alpha(opacity=65); 
 opacity: 0.8;
}
#clients .clients-wrap ul li img:hover {
 -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
 filter: alpha(opacity=100); 
 opacity: 1.0;
}



/** clearfix **/
.clearfix:after { content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0; }
.clearfix { display: inline-block; }
 
html[xmlns] .clearfix { display: block; }
* html .clearfix { height: 1%; }