img {
    max-width: 100%;
    max-height: 100%;
/*    display: block;*/
}

.thumbnail {
/*	position: absolute;
    top: 50%;
    left: 50%;
    
    width: 110px;
    height: 71px;*/
	float: left;
}

.image {
/*    width: 100%; */  
    height: 60px; 
}

.image img {
    -webkit-transition: all 1s ease; /* Safari and Chrome */
  	-moz-transition: all 1s ease; /* Firefox */
  	-o-transition: all 1s ease; /* IE 9 */
  	-ms-transition: all 1s ease; /* Opera */
  	transition: all 1s ease;
}

.image:hover img {
    -webkit-transform:scale(5); /* Safari and Chrome */
    -moz-transform:scale(5); /* Firefox */
    -ms-transform:scale(5); /* IE 9 */
    -o-transform:scale(5); /* Opera */
     transform:scale(5);
}
