* {
margin: 0;
padding: 0;
}


a img {
display: block;
margin-bottom: 0px;
border: 1px solid #fff;
}

a:hover img {
border-color: #000000;
}

#content {
	float: left;
	width: 400px;
	margin-top: 10px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 10px;
}

p {
margin-bottom: 25px;
}

.gallerycontainer{
	position: relative;
	left: 500px;/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

.thumbnail img{
	border: 1px solid #000000;
	margin: 0;
}

.thumbnail:hover{
background-color: transparent;
}

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

.thumbnail span{ /*CSS for enlarged image*/
	position: absolute;
	background-color: white;
	padding: 4px;
	left: -1000px;
	visibility: hidden;
	color: black;
	text-decoration: none;
	width: 450px;
	display: block;
}

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

.thumbnail:hover span{ /*CSS for enlarged image*/
	visibility: visible;
	top: 240px;
	left: 135px; /*position where enlarged image should offset horizontally */
	z-index: 50;
}
                                                                      