/** client logos **/
#clients {
  display: block;
  margin-bottom: 15px;
  /*border: 1px solid red;*/
}

#clients .clients-wrap {
  display: block;
  width: 98%;
  margin: 0 auto;
  overflow: hidden;
  /*border: 1px solid blue;*/
}

#clients .clients-wrap ul {
  display: block;
  list-style: none;
  position: relative;  
  padding: 0px 0px 0px 0px;
  /*border: 1px solid orange;*/
}

#clients .clients-wrap ul li {
  /*width: 160px;*/
  height: 90px;
  line-height: 70px;
  text-align: center;
  display: block;
  float: left;
  padding: 3px;
  margin: 0px 5px 0px 0px;
  position: relative;
  border: 1px solid #d2d2d2;
  /* ----- border box is causing extra space at left and right ----- */
  /*
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  */
  /*
  background-color: blue;
  */
}
#clients .clients-wrap ul li img {
  max-width: 100%;
  max-height: 100%;
  vertical-align: middle;
  margin: 0px;
  padding: 0px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100); 
  opacity: 1.0;
  /*border: 1px solid red;*/
}
#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%; 
}