.thumbnail{
position: relative;
}

.thumbnail:hover{
background-color: white;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: #201C2B;
padding: 0px;
left: 25px;
border: 0px dashed #C2A46F;
visibility: hidden;
color: #C2A46F;
text-decoration: none;
text-align: justify;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 4px;
}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
position:absolute;
top: 36px;
left: 103px; /*position where enlarged image should offset horizontally */

}