HTML, BODY {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10pt;
	color: white;
	background-color: Black;
	margin: 0;
	padding: 0;
}

a:link {
	color: white;
	text-decoration: underline;
}

a:visited {
	color: white;
	text-decoration: underline;
}

a:active, a:hover {
	color: red;
	text-decoration: underline;
}

.copyright {
	color: gray;
	font-size: 10px;
	margin-left: 0px;
	padding-left: 4px;
	text-indent: 0px;
}

.copyright a:link, .copyright a:visited {
	color: gray;
	text-decoration: underline;
}

.copyright a:active, .copyright a:hover {
	color: white;
	text-decoration: underline;
}

.bottom {
	position: absolute;
	bottom: 0;
}

/* 
	for this to work, we need to have margin-left and margin-top 
	set to a negative number 1/2 the width and height, respectively
*/
.screen-center { 
	position:absolute;
	top: 50%;
	left: 50%;
	overflow: auto;
}

.transparent {
	opacity: 0;
	filter:alpha(opacity=0);
	-moz-opacity:0;
}

.opaque {
	opacity: 100;
	filter:alpha(opacity=100);
	-moz-opacity:100;
}

/* header styles */

#header {
	position: relative;
	padding: 10px 0px 0px 0px;
	width: 100%;
	height: 3em;
	width: 45em; /* a width is required for Opera, older Mozilla browsers, and Konqueror browsers */
}

#header ul#primary {
	border: 1px solid #cccccc;
	margin: 0;
	padding: 0;
	position: absolute;
	bottom: -1px;
	width: 45em; /* a width is required for Opera, older Mozilla browsers, and Konqueror browsers */
}

#header ul#primary li  {
	display: inline;
	list-style: none;
}

#header ul#primary a,#header ul#primary span,#header ul#primary a.current {
	width: 8em;
	display: block;
	float: left;
	padding: 4px 0;
	margin: 1px 2px 0 0;
	text-align: center;
	font-family: tahoma, verdana, sans-serif;
	font-size: 85%;
	text-decoration: none;
	color: #333;
}

#header ul#primary span,#header ul#primary a.current,#header ul#primary a.current:hover {
	border: 1px solid #666;
	border-bottom: none;
	background: #FFF3B3;
	padding-bottom: 6px;
	margin-top: 0;
}

#header ul#primary a {
	background: #FFFAE1;
	border: 1px solid #AAA;
	border-bottom: none;
}

#header ul#primary a:hover {
	margin-top: 0;
	border-color: #666;
	background: #FFF7CD;
	padding-bottom: 5px;
}

#header ul#secondary {
	border: 1px solid #cccccc;
	position: absolute;
	margin: 0;
	padding: 0;
	bottom: -1.4em;
	left: 1px;
	width: 50em; /* a width is required for Opera, older Mozilla browsers, and Konqueror browsers */
}

#header ul#secondary li a,#header ul#secondary li span {
	width: auto;
	display: block;
	float: left;
	padding: 0 10px;
	margin: 0;
	text-align: auto;
	border: none;
	border-right: 1px dotted #AAA;
	background: none;

}

#header ul#secondary li a {
	color: #06C;
	text-decoration: underline;
}

#header ul#secondary li a:hover {
	color: #333;
	background: transparent;
	padding: 0 10px;
	border: none;
	border-right: 1px dotted #AAA;
}

#header ul#secondary li a:active {
	color: #000;
	background: transparent;
}

#header ul#secondary li:last-child a { border: none; }