@charset "UTF-8";
/* CSS Document */


 h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 24px;
	color: #666666;
	font-weight: bold;
	}
	
	body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #666666;
	background: #666666;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #666666;
}
font {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #666666;
}

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

.thumbnail img{
border: 1px black;
margin: 0 5px 5px 0;
}

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

.thumbnail:hover img{
border: 0px solid blue;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: silver;
padding: 5px;
left: -1000px;
border: 1px black;
visibility: hidden;
color: black;
text-decoration: none;
}

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

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

/* Second set from here*/


.thumbnail2 img{
border: 1px black;
margin: 0 5px 5px 0;
}

.thumbnail2:hover{
background-color: black;
}

.thumbnail2:hover img{
border: 0px solid blue;
}

.thumbnail2 span{ /*CSS for enlarged image*/
position: absolute;
background-color: silver;
padding: 5px;
left: -1000px;
border: 1px black;
visibility: hidden;
color: black;
text-decoration: none;
}

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

.thumbnail2:hover span{ /*CSS for enlarged image*/
visibility: visible;
display:inline;
top: 850px;
left: 350px; /*position where enlarged image should offset horizontally */
z-index: 50;
}
