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


body {
	font-family:Calibri;
	color:#FFF;
	font-size: 10pt;
}
h1 {font-family:Lucida console; font-size:36px; font-style:normal; left:auto; font-weight:bold;}
h2 {font-family:Lucida console; font-size:16px; font-style:normal; left:auto; font-weight:bold;}
h3 {font-family:Lucida console; font-size:12pt; color:#FF3; font-weight:bold;}
h4 {font-family:Lucida console; font-size:16px; font-style:normal; left:auto; font-weight:bold; color:#FF0;}
address {font-family:Lucida console; font-size:11pt; color:#FF0}

#nav { margin:0px; padding:0px; position:absolute; top: 250px; display:block;}
#nav > li { list-style-type:none; float:left; display:block; margin:0px 10px; 
                      position:relative; padding:15px; width:69px; color:#9CF; font-family:Arial Black; font-size:11px;}
#nav > li:hover ul { display:block; }
#nav > li:hover { background-color:#999; -moz-border-radius:10px; -webkit-border-radius:5px; }          
#nav li ul { margin:0px; padding:0px; display:none;}
#nav li ul li { list-style-type:none; margin:5px 0 0 0;}
#nav li ul li a { display:block; padding:5px 5px; color:#00C; text-decoration:none;}
#nav li ul li:hover a { background-color:#EAEAEA; -moz-border-radius:5px; -webkit-border-radius:5px;}

 This style is for the photo gallery (on this gallery page only!) 
.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{
background-color: transparent;
}

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

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