/* CSS Document */

#galleryimage {
position: relative;
z-index:0;

}

.thumbnail {
display:block;

}


.thumbnail:hover{
position:relative;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background: transparent;
padding:5px;
left: -1000px;
border:1px transparent;
display:none;
}

.thumbnail span img{ /*CSS for enlarged image*/
padding:2px;
}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
display:block;
top:-300px;
z-index: 50;
left: -120px;
}