

/* Variant on popup*/

#galleryimage {
position: relative;
z-index:0;

}

.thumbnail {
display:block;

}


.thumbnail:hover{
position:relative;
text-decoration: none;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: #a0a0a0;
padding:5px;
left: -1000px;
/*border:1px solid #000;*/
display:none;
font-size:8pt;
font-family:Verdana, Arial;
text-decoration: none;
color: black;
font-weight: Bold;
}

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

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
display:block;
top: 90px;
z-index: 50;
left: 150px;
padding:5px;
/*right: 50px*/
}

//

.thumbnailL {
display:block;

}


.thumbnailL:hover{
position:relative;
text-decoration: none;
}

.thumbnailL span{ /*CSS for enlarged image*/
position: absolute;
background-color: #a0a0a0;
padding:5px;
left: -1000px;
/*border:1px solid #000;*/
display:none;
font-size:8pt;
font-family:Verdana, Arial;
text-decoration: none;
color: black;
font-weight: Bold;
}

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

.thumbnailL:hover span{ /*CSS for enlarged image on hover*/
display:block;
top: -70px;
z-index: 50;
left: -200px;
padding:5px;
/*right: 50px*/
}
