/* The following CSS rule is applied to everything in the <body> section of the HTML 
document. These definitions can be overridden by other rules. */

body {
	background-color:black
	}
	
/* CSS rules in this section override basic HTML tags */

h1 {
	margin:0px 0px 5px 0px;
	padding:0px;
	font:18px BernhardMod BT, verdana, arial, helvetica, sans-serif;
	font-weight:900;
	color:white;
	}

h2 {
	margin:0px 0px 0px 0px;
	padding:0px;
	font:16px BernhardMod BT, verdana, arial, helvetica, sans-serif;
	line-height:15px;
	font-weight:1500;
	color:#afafaf;
	}
h3 {
	margin:0px 0px 0px 0px;
	padding:0px;
	font:12px verdana, arial, helvetica, sans-serif;
	font-weight:500;
	color:white;
	}
h4 {
	margin:0px 0px 0px 0px;
	padding:0px;
	font:11px verdana, arial, helvetica, sans-serif;
	font-weight:100;
	color:#707070;
	}
	
	
p {
	color:#bebebe;
	font:12px/20px verdana, arial, helvetica, sans-serif;
	margin:0px 0px 0px 0px;
	padding:3px;
	}
li {
	color:#cfcfcf;
	font:12px/20px , arial, helvetica, sans-serif;
	margin:0px 0px 0px 0px;
	padding:0px;
	}
	
a {
	color:white;
	text-decoration:none;
	font-weight:600;
	}

	
a:link {color:white;}
a:visited {color:white;}
a:active {color:red;}
a:hover {background-color:#3e3e3e;}

/* Rules in this section are formatted inline  */

span.currentpage {
	font:11px verdana, arial, helvetica, sans-serif;
	font-weight:bold;
	color:Gray;
	}

/* Rules in this section are for nested div tags */
	
div.copyright {
	font: 11px verdana, arial, helvetica, sans-serif;
	font-style: italic;
	color:Gray
	}

div.main {
	margin: 0px 0px 0px 0px;
	padding: 0px;
	background-color:black;
	}

div.main h1{
	text-align:left;
	margin: 0px 0px 0px 0px;
	padding: 0px;
	font: 18px BernhardMod BT, verdana, arial, helvetica, sans-serif;
	font-weight:bold;
	color:white;
	line-height:22px;
	}	
	
div.main p{
	text-align:left;
	margin: 0px 0px 0px 10px;
	padding: 0px;
	font: 12px verdana, arial, helvetica, sans-serif;
	font-weight:bold;
	color:#afafaf;
	line-height:16px;
	}


div.menubox {
	float: right
	margin: 0px 0px 0px 0px;
	padding: 0px;
	width:0px;
	height:0px;
	}
	
div.menubox h1{
	text-align:right;
	margin: 0px 0px 0px 0px;
	padding: 0px;
	font: 15px BernhardMod BT, verdana, arial, helvetica, sans-serif;
	font-weight:bold;
	color: #bebebe;
	}

div.menubox a{
	text-align:right;
	margin: 0px 0px 0px 0px;
	padding: 0px;
	font: 12px verdana, arial, helvetica, sans-serif;
	font-style:italic;
	font-weight:bold;
	color: white;
	}


div.image1 {
	margin: 2px 2px 0px 7px;
	}
	
div.footer {
	margin: 13px 0px 0px 0px;
	}
	
div.footer h1 {
	margin:0px 0px 0px 0px;
	padding:0px;
	font:20px/24px BernhardMod BT, verdana, arial, helvetica, sans-serif;
	line-height:15px;
	font-weight:900;
	color:#bebebe;
	}

div.footer p {
	margin:0px 0px 0px 0px;
	padding:0px;
	font:12px verdana, arial, helvetica, sans-serif;
	color:gray;
	}
	
/* Rules in this section are  for the highest level div tags*/

#Header {
	margin:0px 0px 10px 0px;
	padding:0px 0px 0px 0px;
	/* For IE5/Win's benefit height = [correct height] + [top padding] + [top and bottom border widths] */
	height:30px; /* 14px + 17px + 2px = 33px */
	border-style:solid;
	border-color:black;
	border-width:1px 0px; /* top and bottom borders: 1px; left and right borders: 0px */
	line-height:11px;
	background-color:#eee;

#Header1 {
	margin:0px 0px 10px 0px;
	padding:0px 0px 0px 0px;


/* Here is the ugly brilliant hack that protects IE5/Win from its own stupidity. 
Thanks to Tantek Celik for the hack and to Eric Costello for publicizing it. 
IE5/Win incorrectly parses the "\"}"" value, prematurely closing the style 
declaration. The incorrect IE5/Win value is above, while the correct value is 
below. See http://glish.com/css/hacks.asp for details. */
	voice-family: "\"}\"";
	voice-family:inherit;
	height:28px; /* the correct height */
	}
/* I've heard this called the "be nice to Opera 5" rule. Basically, it feeds correct 
length values to user agents that exhibit the parsing error exploited above yet get 
the CSS box model right and understand the CSS2 parent-child selector. ALWAYS include
a "be nice to Opera 5" rule every time you use the Tantek Celik hack (above). */
body>#Header {height:28px;}

#Content {
	margin:0px 0px 0px 5px;
	padding:0px;
	}

#Menu {
	float: right;
	margin: 0px 0px 0px 0px;
	width: 10px;
	padding: 0px;
	background-color:green;
	}

#Misc {
	margin:70px 50px 50px 20px
	padding:10px;
	background-color:#000033;
	border-right:2px solid #999;
	line-height:17px;
/* Again, the ugly brilliant hack. */
	voice-family: "\"}\"";
	voice-family:inherit;
	width:200px;
	}
/* Again, "be nice to Opera 5". */
body>#Menu {width:200px;}

/* This rule is used to trick 4.0 and older browsers into displaying the browser upgrade 
message in the <Body> section of the HTML document */

.ahem {
	display:none;
}