@charset "utf-8";
/* CSS Document */

.gallerycontainer{
	position: relative;
	padding: 2px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

.thumbnail img{
	border: 1px solid #2A1FFF;
	padding: 2px;
	margin: 1;
}

.thumbnail:hover{
background-color: transparent;
}

.thumbnail:hover img{
border: 1px solid blue;
}

.thumbnail span{ /*CSS for enlarged image*/
	position: absolute;
	background-color: lightyellow;
	padding: 5px;
	left: -1000px;
	border: 1px solid #7F0000;
	visibility: hidden;
	color: black;
	text-decoration: none;
}

.thumbnail span img{ /*CSS for enlarged image*/
	padding: 2px;
	border: 1 solid #0000FF;
}

.thumbnail:hover span{ /*CSS for enlarged image*/
	visibility: visible; /*position where enlarged image should offset horizontally */
	z-index: 200;
	left: 0px;
	top: -100px;
}
