.links {font-family: Verdana, Arial, Helvetica; font-size:10pt; color:#003399; 
font-weight:normal; TEXT-DECORATION: none} A.links:hover {color:#333333; TEXT-DECORATION: underline} 
.smalllinks {font-family: Verdana, Arial, Helvetica; 
font-size:8pt; color:#003399; font-weight:normal; TEXT-DECORATION: none} 
A.smalllinks:hover {color:#333333; TEXT-DECORATION: underline} 
.smalltext {FONT-SIZE: 11px; COLOR: #333333; font-family: Verdana, Arial, Helvetica} 
BODY {font-family: Verdana, Arial, Helvetica } 
.content {FONT-SIZE: 12px; COLOR: #333333; font-family: 
Verdana, Arial, Helvetica} BODY {font-family: Verdana, Arial, Helvetica }

/* in the stylesheet */
#myDiv {
position: absolute; /* can be relative too */
left: 100px; /* can be percentage also */
top: 100px;
width: 300px;
height: 100px;
background-color: #ff0000;
color: inherit;
}

.thumbnail{
position: relative;
z-index: 0;
}

.thumbnail:hover{
background-color: transparent;
z-index: 50;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: lightyellow;
padding: 5px;
left: -500px;
border: 1px dashed gray;
visibility: hidden;
color: black;
text-decoration: none;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

/*.thumbnail a span {display: none;}
.thumbnail:active span, { */
.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: -350px;
left: -300px; /*position where enlarged image should offset horizontally */

}
