.client {
		background-color:#fff;
		text-align:center;
		float:left;
		-webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    transition: all 0.1s;
		border-right:1px solid #f0f0f0;
		border-bottom:1px solid #f0f0f0;
		cursor:pointer;
	}
	
	.clearer {
		clear:both;
	}
	
	.client:hover {
		-ms-transform: scale(1.1,1.1); /* IE 9 */
    -webkit-transform: scale(1.1,1.1); /* Safari */
    transform: scale(1.1,1.1);
		-webkit-box-shadow: 5px 5px 50px 0px rgba(160,160,160,0.3);
-moz-box-shadow: 5px 5px 50px 0px rgba(160,160,160,0.3);
box-shadow: 5px 5px 50px 0px rgba(160,160,160,0.3);
		z-index:9999;
		border-right:1px solid transparent;
		border-bottom:1px solid transparent;
		cursor:pointer;
		background-color:#fff;
	}

	
	
	