/* CSS Document */
<style type="text/css">

/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.thumbnail{
position: relative;
z-index: 0;
}

.thumbnail:hover{
background-color: transparent;
z-index: 50;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: #dceefa;
padding: 0px;
left: -1000px;
border: 1px solid #000000;
visibility: hidden;
color: black;
text-decoration: none;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: 150px;
left: 375px; /*position where enlarged image should offset horizontally */

}


 A.thumbnail:link {font-weight: bold; text-decoration:underline; color: #3366cc; font-size:13px; font-family: Verdana, Arial, Helvetica, sans-serif;}
 A.thumbnail:active { font-weight: bold; text-decoration: underline; color: red; font-size:13px; font-family: Verdana, Arial, Helvetica, sans-serif}
 A.thumbnail:visited { color: #3366ff; text-decoration: underline; font-size:13px; font-weight: bold; font-family:  Verdana, Arial, Helvetica, sans-serif}
 A.thumbnail:hover {color: #3366ff; font-weight: bold ; text-decoration: none; font-size:13px ; font-family: Verdana, Arial, Helvetica, sans-serif }
</style>
