/* Mouseover thumbnail images on staff.asp */
.thumbnail{
position: relative;
z-index: 0;
}

.thumbnail:hover{
background-color: transparent;
position: relative;
z-index: 50;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
z-index: 1;
background-color: lightyellow;
padding: 5px;
left: -1000px;
border: 1px dashed gray;
visibility: hidden;
color: #272674;
text-decoration: none;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail:hover span{ /*CSS for enlarged image on hover - this controls the actual enlarged image*/
position: absolute;
top: 0;
left: 60px;
visibility: visible;
margin-top: -75px;
margin-left: -145px;
border: 1px dotted gray;
 /*position where enlarged image should offset horizontally */
}

/* End mouseover thumbnail images on staff.asp */