/* CSS Document */
.thumbnail{
position: relative;
z-index: 20;
}

.thumbnail:hover{
background-color: #FFFFFF;
z-index: 60;
}

.thumbnail span{ 
position: absolute;
background-color: #FFFFFF;
padding: 5px;
left: -1000px;
/*border: 4px double #000099; */
visibility: hidden;
color: blue;
text-decoration: none;
}

.thumbnail span img{ 
/*border: solid 2px #000099; */
background-color: #FFFFFF;
padding: 2px;
}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
background-color: #FFFFF;
top: -110px;
left: 0px; /*adjust the position where enlarged image should offset horizontally */
text-align: center;
}
