@charset "UTF-8";
/* CSS Document */



.gallerycontainer{
position: relative;
/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

.thumbnail img{
border: 1px solid #ccc;
}

.thumbnail:hover{
background-color: transparent;
}

.thumbnail:hover img{

}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
top:510px;
left: 20px;
visibility: hidden;
color: black;
text-decoration: none;
border: 1px solid #ccc;
margin:0px;
}

.thumbnail span img{ /*CSS for enlarged image*/
border: 1px solid #000;

}

.thumbnail:hover span{ /*CSS for enlarged image*/
visibility: visible;
top: -200px;
left: 150px; /*position where enlarged image should offset horizontally */
z-index: 50;
}


