/* CSS Document */
body{
	background-color:#fff;
}


a img {     border: 0; } 

.owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-dot {
    //width, height
    width:20px;
    height:20px;
    ...
}
.owl-carousel .owl-nav .owl-prev{
    background: url('prev.png') no-repeat; opacity:0.3;border-style: none;;
}

.owl-carousel .owl-nav .owl-prev:hover{
	border:0;
    opacity:1;
}
.owl-carousel .owl-nav .owl-next{
    background: url('next.png') no-repeat;opacity:0.3;border-style: none;
}

.owl-carousel .owl-nav .owl-next:hover{
	border:0;
    opacity:1;
}

.slider2 .div-box{
	height:200px;
}
#clients-carousel .item img {
        width: 220px;
		height:115px;
        max-width: 230px;
        /*filter: gray;*/
        /* IE6-9 */
        /*filter: grayscale(1);*/
        /* Firefox 35+ */
       /* -webkit-filter: grayscale(1);*/
        /* Google Chrome, Safari 6+ & Opera 15+ */
        margin: auto; }
		
#clients-carousel .item:hover img {
      filter: none;
      -webkit-filter: grayscale(0); 
	  }
	  
#clients-carousel .owl-nav{
    position: absolute;
    top: 10%;
    width: 100%;
	height:auto;
}
#clients-carousel .owl-prev{
    float:left;
 }
#clients-carousel .owl-next{
    float:right;
}

@media (max-width: 479px) {
	#clients-carousel .item img {
	width:100%;
	}
}