/* CSS Document */

.gallerycontainer{
position: relative;padding:35px; left:20px; padding-top:5px
/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

.thumbnail img{
border: none;
margin: 0 5px 5px 0; 
}

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

.thumbnail:hover img{
border: none
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
width:500px;
padding: 5px;
left: 200px; top:65px;
text-align:center;

visibility: hidden;
color: black;
text-decoration: none; z-index:88888
}

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

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

.defaultImage{
margin-left:27px; margin-top:18px; ~margin-top:22px
}

