@CHARSET "UTF-8";

body {
	font: "Times New Roman";
}

p {
	text-align: justify;
}

a:link {
	color: blue;
}

a:visited {
	color: purple;
}

#site-title {
	text-color: "#000080";
	font: "Times New Roman";
	font-size: "6";
	text-align: center;
	text-decoration: underline;
}

#main {
	float: left;
	padding: 0;
	width: 100%;
	margin-bottom: 1em;
}

#nav-menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#nav-menu li a {
	background: url(background.gif) #fff bottom left repeat-x;
	height: 2em;
	line-height: 2em;
	float: left;
	display: block;
	border: 0.1em solid #dcdce9;
	color: #0d2474;
	text-decoration: none;
	text-align: center;
	float: none;
}

#nav-menu {
	width: 15%;
	float: left;
	padding-bottom: 1em;
}

#buffer {
	width: 15%;
	float: right;
	}

#main-page {
	float: left;
	width: 70%;
	text-indent: 2em;
	text-align: justify;
	padding: 1em;
	padding-top: 0em;
	font-size: x-large;
}

#main-page ul {
	list-style: none;
}

#main-page h4 {
	text-decoration: underline;
	font-weight: bold;
}

#main-page dt {
	text-decoration: underline;
	font-weight: bold;
	line-height: 1.0;
}

#main-page dd {
	font-size: large;
	line-height: 1.0;
}

#footer {
	font-size: x-small;
	width: 100%;
	text-align: center;
	float: left;
}

/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.thumbnail{
position: relative;
z-index: 0;
}

.thumbnail:hover{
background-color: transparent;
z-index: 50;
}

.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 on hover*/
visibility: visible;
top: 0;
left: 60px; /*position where enlarged image should offset horizontally */

}