@charset "utf-8";
/* CSS Document */

<style type="text/css">

.gallerycontainer {
position: relative;
/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

.thumbnail img{
	border: 5px solid #000000;
	margin: 0 5px 5px 0; /*margin between boxes*/
}
.gallerycontainer {
	margin-left: 30px;
	z-index: inherit;
	background-repeat: no-repeat;
	position: relative;
	width: 300px;
	float: left;
}

#gallery_text {
	font-family: "Trajan Pro";
	color: #000000;
	float: right;
	height: 600%;
	width: 415px;
	font-size: medium;
	font-weight: bolder;
}


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

.thumbnail:hover img{
	border: 5px solid #FFFFFF; /*border highlight*/
}

.thumbnail span{ /*CSS for enlarged image*/
	position: absolute;
	background-color: #333333;
	padding: 0px;
	left: -1000px;
	border: 8px inset gray;
	visibility: hidden;
	color: #FFFFFF;
	text-decoration: none;
	font-family: "Trajan Pro";
	font-size: 16px;
	text-align: center;
}

.thumbnail span img{ /*CSS for enlarged image*/
	border-width: 0;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;	 /*padding around big image*/
}

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

</style>
