@charset "utf-8";
/* CSS Document */

.gallerycontainer{
	position: relative;
	/*Add a height attribute and set to largest image's height to prevent overlaying*/
height: 212px;
	width: 260px;
	margin-top:166px;
	margin-left:6px;
}

.thumbnail img{
border: 1px solid white;
margin: 0 0 0 0;

}

.thumbnail:hover{
background-color: transparent;
}



.thumbnail span{ /*CSS for enlarged image*/
position: absolute;

padding: 5px;
left: -1000px;

visibility: hidden;
color: black;
text-decoration: none;

}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 0;

}

.thumbnail:hover span{ /*CSS for enlarged image*/
visibility: visible;
top: 0;
left: -11px; /*position where enlarged image should offset horizontally */
top: -171px;
z-index: 50;
float:left;
}










