@charset "utf-8";
/* CSS Document */
body  {
font-family:Verdana, Arial, Helvetica, sans-serif;
background: #fff;
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: #000000;
background-image:url(images/bkgd.jpg);
background-repeat:repeat-x;
}
table {
border-collapse:collapse;
margin:0px;
padding:0px;
border:0px;
}
td {
vertical-align:top;
}
h1, h2, h3, h4 {
font-family:Verdana, Arial, Helvetica, sans-serif;
color:#006;
margin: 10px;
padding: 0px;
line-height:100%
}
h1 {
font-size:20px;
}
h2 {
font-size:18px;
}
p{ 
margin:10px;
font-size:12px;
}
li {
font-size:12px;
font-weight:bold;
}
hr {
text-align:center;
width:704px;
border:0px;
color: #006;
background-color: #006;
height: 2px;
}
legend {
text-align:center;
}
a:hover{
color:#c00;
}
a img {
border:0px;
}
#container { 
	width: 955px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#rightbar {
background-color:#c2c2e8;
}
#footer {
background-image:url(images/footer_bkgd.jpg);
font-size:10px;
vertical-align:middle;
}
#content{
}
.left{
text-align:left;
padding:10px;
}
.right{
float:right;
padding:10px;
text-align:right;
}
.gallerycontainer{
position: relative;
height: 480px;/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

.thumbnail img{
border: 1px solid white;
margin: 10px 0 0 10px;
}

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

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

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: lightyellow;
padding: 5px;
left: -1000px;
border: 1px dashed gray;
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: 0px;
left: 280px; /*position where enlarged image should offset horizontally */
z-index: 50;
}
