/** Style Sheet for BHBA Gallery page **/
.gallerycontainer{
position:relative;
margin-left: 5px;
height:100%;
width:455px;
/*Add a height attribute and set to largest image's height to prevent overlaying*/
}
.thumbnail img{
border: 1px solid #80A9FF;
margin: 5px 5px 5px 8px;
}
.thumbnail:hover{
background-color: transparent;
}
.thumbnail:hover img{
border: 1px solid #0048dd;
}
.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: #CEDEFF;
padding: 4px;
/* left: -1100px;*/
border: 1px solid #80A9FF;
visibility: hidden;
color: black;
text-decoration: none;
}
.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}
.thumbnail:hover span{ /*CSS for enlarged image*/
visibility: visible;
top: 130px;
left: 18px; /*position where enlarged image should offset horizontally */
z-index: 30;
}

 