/* CSS Document */

* { /* zero all margins */
	margin: 0;
	padding: 0;
}
body {
	color: #666666;
	background:#999999;
	font: 100%/1.2 "Gill Sans", "Trebuchet MS", Helvetica, Arial, sans-serif;
}
h1, h2, h3, h4 ,h5 ,h6 {
	font-weight: normal;
}
h1 { /* logo */
	font-size: 92%;
	float: right;
	padding-right: 20px;
	padding-top: 10px;
}
h2 { /* section headings */
	font-size: 180%;
	color: #999999;
	padding-top: 20px;
	padding-right: 20px;
	padding-left: 20px;
}
h5 { /* image captions */
	margin-top: 4px;
	font-size: 80%;
	color:#333333;
}
h6 { /* copyright notice */
	margin-top: 6px;
	margin-left: 20px;
	font-size: 60%;
	text-transform: uppercase;
}
p {
	margin-left: 20px;
	margin-right: 20px;
	font-size: 14px;
}
/* frame emulation */

/* use ems for height so topbar enlarges proportionally when fonts are resized. height for topbar should match top padding for content */


#topbar {
	width: 100%;
	height: 3.8em;
	background:#000000;
	position:fixed;
	z-index:10; /* Prevents certain problems with form controls */
}
#botbar {
	width: 100%;
	height: 100%;
	background:#000000;
	position:fixed;
	z-index:10; /* Prevents certain problems with form controls */
}

#content { /* 3.8em = height of #topbar */
	padding-top: 3.8em;
	width: 100%;
	overflow:scroll;
}

/* main content holders */

table {
	border-top: 1px dotted #CCCCCC;
	border-bottom: 1px dotted #CCCCCC;
}
td {
	padding: 20px 20px 10px;
	border-right: 1px dotted #CCCCCC;
	vertical-align: top;
	text-align: right;
}
.textbox { /* intro and outro text */
	height: 300px;
	width: 345px;
	background: #F8F8F8;
	border: 1px dotted #CCCCCC;
	text-align: left;
}
.imagebox { /* temporary image holder */
	height: 300px;
	background: #999999;
}


/* links */

a {
text-decoration: none;
color: #666666;
}
a:hover {
	text-decoration: underline;
}
a:active {
text-decoration: none;
}


/* navigation menu */

#nav {
	list-style: none;
	padding-left: 20px;
	padding-top: 10px;
	font-size: 92%;
}
#nav a { /* to get it displaying correctly in IE PC, thanks georg */
	display: block;
}
#nav li { /* all menu items */
	float: left;
	display: block;
	margin-right: 1.5em;
	text-transform: uppercase;

}
#nav ul { /* sub menu block */
	list-style: none;
	font-size: 80%;
	position: absolute;
	left: 20px;
	visibility: hidden;
}
#nav ul li { /* sub menu items */
	margin-top: 5px;
	font-style: italic;
}
#topbar #nav a:hover { /* to restore the hover effect on sub menu items (it gets cancelled in the code below) */
	text-decoration: underline;
}