@charset "utf-8";

.thumbnail{
    position: relative;
    z-index: 0;
    padding: 0px;
}
.thumbnail a {
    padding: 0px;
    margin: 0px;
    text-decoration: none;
}

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

.thumbnail span.thumb{ /*CSS for enlarged image*/
    position: absolute;
    background-color: white;
    padding: 5px;
    left: -1000px;
    border: 1px solid gray;
    visibility: hidden;
    color: black;
    text-decoration: none;
    background-color: #93C5F4;
    margin: 0px;
}

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

.thumbnail:hover span.thumb{ /*CSS for enlarged image on hover*/
    visibility: visible;
    top: 0;
    left: 80px; /*position where enlarged image should offset horizontally */
    top: -280px;
}

.lessLeft {
        left: 30px !important;
}
