/* ######### Thumbnail Popup ######### */
.thumbnail{
position: relative;
z-index: 0;
}

.thumbnail:hover{
background-color: transparent;
z-index: 50;
}

.thumbnail span{ /*CSS for enlarged image*/
position: fixed; /* set fixed to keep from moving while scrolling, default was absolute */
background-color: white;
padding: 5px;
left: -1000px;
border: 5px solid gray;
visibility: hidden;
color: black;
text-decoration: none;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
position:fixed;
visibility: visible;
top: 55px; /* position where popout will display related to top of browser window */
left: 250px; /*position where enlarged image should offset horizontally */

}