/*
 * Copyright (c) 2011 Synaptic Science LLC, a wholly-owned subsidiary of Schrodinger, Inc.
 */

.thumbnail {
    position: relative;
    z-index: 0;
    text-decoration:none;
}

.thumbnail:hover {
    background-color: transparent;
    z-index: 50;
}

.thumbnail span, .thumbnail div {
/*CSS for enlarged image*/
    position: absolute;
    background-color: lightyellow;
    padding: 1px;
    left: -1000px;
    border: 1px dashed gray;
    visibility: hidden;
    color: black;
    text-decoration: none;
}

.thumbnail span img, .thumbnail div img {
/*CSS for enlarged image*/
    border-width: 0;
    padding: 2px;
}

.thumbnail:hover span, .thumbnail:hover div {
/*CSS for enlarged image on hover*/
    visibility: visible;
    top: 0;
    left: 15px; /*position where enlarged image should offset horizontally */
}

.thumbcaption {
    margin: 1em;
    font-size: 0.8em;
    font-weight: bold;
    font-style: italic;
}


