/* CSS Document */

<style type="text/css">

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

.gallerycontainer{
position: relative;

/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

.thumbnailr img{
	border: 1px solid white;
	margin: 0 5px 5px 0;
	z-index: auto;
}

.thumbnailr:hover{
	background-color: transparent;
	z-index: auto;
}

.thumbnailr:hover img{
	border: 1px solid blue;
	z-index: auto;
}

.thumbnailr span{ /*CSS for enlarged image*/
	position: fixed;
	background-color: #000033;
	padding: 5px;
	left: -1000px;
	border: 2px solid gray;
	visibility: hidden;
	color: white;
	text-decoration: none;
	font-weight: bold;
}

.thumbnailr span img{ /*CSS for enlarged image*/
	border-width: 0;
	padding: 2px;
	z-index: auto;

}

.thumbnailr:hover span{ /*CSS for enlarged image*/
visibility: visible;
top: 10px;
left: 675px; /*position where enlarged image should offset horizontally on left*/
z-index: auto;
}

</style>

