html {
	overflow-y: scroll;
}

.errorMessage {
	color: red;
	text-align: right;
	padding-right: 5px;
}

.tdLabel {
	width: 95px;
}

.errorList {
	list-style-type: none;
}

.gallerycontainer {
	position: relative;
	/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

.thumbnail img {
	border: 1px solid white;
	margin: 0 5px 5px 0;
}

.thumbnail:hover img {
	padding: 1px;
	border: 2px solid rgb(150, 150, 150);
}

.thumbnail span { /*CSS for enlarged image*/
	position: absolute;
	background-color: lightyellow;
	padding: 5px;
	top: -1000px;
	left: -1000px;
	border: 1px dashed gray;
	visibility: hidden;
	color: black;
	text-decoration: none;
	z-index: 999;
}

.thumbnail span img { /*CSS for enlarged image*/
	border-width: 0;
	padding: 2px;
}

.thumbnail:hover span { /*CSS for enlarged image*/
	visibility: visible;
	top: -200px;
	left: 15px;
	/*position where enlarged image should offset horizontally */
	z-index: 999;
}
