/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.gallerycontainer{
	position: relative;
	top: 30px;/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

.thumbnail img{}

.thumbnail:hover{
background-color: transparent;
}

.thumbnail:hover img{}

.thumbnail span{
	position: absolute;
	left: -1000px;
	visibility: hidden;
	text-decoration: none;
	color: #CC9900;
	font-size: 12px;
}

.thumbnail span img{ /*CSS for enlarged image*/}

.thumbnail:hover span{ /*CSS for enlarged image*/
	visibility: visible;
	left:400px; /*position where enlarged image should offset horizontally */
	z-index: 50;
	top: -30px;
}

