/* CSS Document */
* { /* zero all margins */
	margin: 0;
	padding: 0;
}
body {
	background: #FFFFFF;

}
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%;
}
h6 { /* copyright notice */
	margin-top: 6px;
	margin-left: 20px;
	font-size: 60%;
	text-transform: uppercase;
}


/* frame emulation - many thanks to georg at css discuss - the fix for ie6 is in a separate stylesheet */

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

#topbar {
	width: 1029px;
	background: #FFFFFF;
	position:fixed; /* Prevents certain problems with form controls */
}
#content { /* 14.8em = height of #topbar */
	padding-top: 14.8em;
}


/* main content holders - there's a separate stylesheet to give IE5 and IE6 solid borders */

table {
	border-top: 0px dotted #CCCCCC;
	border-bottom: 0px dotted #CCCCCC;
}
td {
	border-right: 0px dotted #CCCCCC;
	vertical-align: top;

}
.textbox { /* intro and outro text */
	height: 450px;
	width: 345px;
	background: #F8F8F8;
	border: 1px dotted #CCCCCC;
	text-align: left;
}
.imagebox { /* temporary image holder */
	height: 325px;
	width: 288px;
	background: #F8F8F8;
	border: 0px solid #CCCCCC;
}


/* 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 */
	display: block;
}
#nav li { /* all menu items */
	float: left;
	display: block;
	margin-right: 1.5em;
}
#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;
}


/* navigation menu visibility and highlighting controls, many thanks to chris smith at css creator */

/* make visible one of the three sub menus hidden with the nav ul rule */


{
	visibility: visible;
}

/* underline top level menu */



{
	text-decoration: underline;
}

/* remove underlining on submenu items */


{
	text-decoration: none;
}


{
	text-decoration: underline;
}
.subnavitems {
	font-family: Arial;
	font-size:12px; 
	color:#aead39;
	font-weight:normal;
	margin-left: 3px;
	margin-right: 3px;
}
.subnavitems_on {
	font-family: Arial;
	font-size:12px; 
	color: #000;
	font-weight:normal;
	margin-left: 3px;
	margin-right: 3px;
}
.purplelinks {
	font-family: Arial;
	font-size:13px; 
	color:#8e57c8;
	font-weight:bold;
	text-align:center;
}
.copy {
	font-family: Arial;
	font-size: 12px;
	color: #000;
	text-align:left;
	margin-left: 10px;
	margin-right: 30px;
	margin-top: 30px;
	overflow:inherit;
}
