/* CSS Document */
.thumbnail{
position: relative;
z-index: 0;
}

.thumbnail:hover{
background-color: transparent;
z-index: 1;
text-decoration: none;
}

.thumbnail span{ /*CSS for enlarged image*/
text-decoration: none;
position: absolute;
background-color: #ffffe1;
padding: 10px;
left: -1000px;
border: 1px solid #464646;
visibility: hidden;
font-family: Arial, Helvetica, sans-serif;
font-size: 11px;
line-height: 18px;
color: #000000;
width: 300px;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: 0;
left: 40px; /*position where enlarged image should offset horizontally */
}