<!--

.thumbnailimage{
position: relative;
z-index: 0;
}

.thumbnailimage:hover{
background-color: transparent;
z-index: 50;
}

.thumbnailimage span{ /*CSS for enlarged image*/
position: absolute;
background-color: #FFFFFF;
padding: 5px;
left: -1000px;
border: 2px solid #333333;
visibility: hidden;
color: black;
text-decoration: none;
}

.thumbnailimage span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnailimage:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
left: 10px; /*position where enlarged image should offset horizontally */
top: 50px;
}
html>body .thumbnailimage:hover span {
	top:-50px;

}


/* End for CSS for enlarged image from thumb preview */
-->