.zoom {
	position:relative;
    width:150px;
    height:150px;
    left:0px;
    top:0px;
    border:10px solid #cfe7ff;
    transition: width 0.3s ease,height 0.3s ease,left 0.3s ease,top 0.3s ease;
    -webkit-transition: width 0.3s ease,height 0.3s ease,left 0.3s ease,top 0.3s ease;
    -o-transition: width 0.3s ease,height 0.3s ease,left 0.3s ease,top 0.3s ease;
    -moz-transition: width 0.3s ease,height 0.3s ease,left 0.3s ease,top 0.3s ease;
}

.zoom:hover {
    width:300px;
    height:300px;
    left:-25px;
    top:-25px;
    z-index:9999;
}

.ZoomIt ul {
clear:both;
}

.ZoomIt li {
width:152px;
height:152px;
margin:30px;
float: left;
overflow:visible;
display: block;
}