/* This is the default image for mouseover on homepage. Dimensions MUST be 340x226px */
.gallerycontainer{
	position: relative;
	background-image: url(../pics/galleryslide5.jpg);
	background-repeat: no-repeat;
	background-position: 172px top;
}

.thumbnail img{
	margin-top: 0;
	margin-right: 1px;
	margin-bottom: 1px;
	margin-left: 0;
}
.thumbnail:hover{ background-color: transparent; }
.thumbnail:hover img{ /*border: 1px solid blue;*/
}

/*CSS for enlarged image*/
.thumbnail span{
	position: absolute;
	left: -1000px;
	visibility: hidden;
	color: black;
	text-decoration: none;
}
.thumbnail span img{
	border-width: 0;
	height: 226px;
	width: 340px;
}

/*position where enlarged image should offset horizontally */
.thumbnail:hover span{
	visibility: visible;
	left: 171px;
	z-index: 50;
	top: 0px;
}
