@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: 40px;
	margin-right: 40px;
	z-index: inherit;
	background-image: url(../images/roadway.jpg);
	background-repeat: no-repeat;
	background-position: center;
}
#container {
	position: relative;
}


.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: auto;
	left: 250px; /*position where enlarged image should offset horizontally */
	z-index: 50;
	position: absolute;
	margin-top: 110px;
}

</style>
