/* CSS Document */
.gallerycontainer{
	position: relative;
	height:850px;
	width:950px;
	background-image:url(../img/backgrounds/ibff-bckgrnd.png);
	background-position:right top;
	background-repeat:no-repeat;
/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

.thumbnail img{
border:4px solid #007386;
margin: 0 5px 5px 0;
}

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

.thumbnail:hover img{
border:4px solid #993399; 
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color:#32224E;
padding: 5px;
border: 25px solid #000000;
visibility: hidden;
color: black;
text-decoration: none;


}

.thumbnail span img{ /*CSS for enlarged image*/
border:1px solid #cccccc;
padding: 0px;
}

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