@charset "utf-8";

/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.gallerycontainer{
	position: relative;
	height: auto;
	width: 700px;
	background-color: #FFFFFF;
	padding: 0px;
/*Add a height attribute and set to largest image's height to prevent overlaying*/
}
.thumbnailContainer {
	height: auto;
	width: 750px;
}


.thumbnail img{
	border: 1px solid white;
	margin: 0;
	background-color: #FFFFFF;
	padding: 2px;
}

.thumbnail:hover img{
	border: 1px solid #EF8328;
}

.thumbnail span{ /*CSS for enlarged image*/
	position: absolute;
	padding: 5px;
	left: -1000px;
	border: 1px dashed gray;
	visibility: visible;
	color: #666666;
	text-decoration: none;
	width: 405px;
	text-align: center;
	top: 0px;
}

.thumbnail:hover span{ /*CSS for enlarged image*/
	visibility: visible;
	top: 0px;
	left: 280px; /*position where enlarged image should offset horizontally */
	z-index: 50;
	position: absolute;
	border: 1px solid white;
	width: 405px;
	text-align: center;
	color: #666666;
}

</style>


.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}
