.thumbnail{
position: relative;
z-index: 0;
text-decoration: none;
font-weight:bold;
font-family:monospace, Courier New;
font-size:13px;
color:OrangeRed;
}

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

/*CSS for enlarged image*/
.thumbnail span{
position: absolute;
padding: 1px;
/*left: -2000px;*/
text-decoration: none;
visibility: hidden;
}

/*CSS for enlarged image on hover*/
.thumbnail:hover span{
position: absolute;
visibility: visible;
/*top: 20px;*/
bottom: 50%;
left: 100%; /*position where enlarged image should offset horizontally */
z-index: 500;
background-color: transparent;
}

.thumbnail img {
max-height:500px;
border: 1px green solid;
cursor:default;
}

.thumbnail h3 {
text-decoration: none;
color: black;
font-size:13px;
}
