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