/*
body {
	font-family: arial, helvetica, serif;
	}
*/
#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	}

#nav a {
	display: block;
	width: 10em;
	}

#nav li { /* all list items */
	float: left;
	width: 10em; /* width needed or else Opera goes nuts */
	}

#nav li ul { /* second-level lists */
	position: absolute;
	background: orange;
	width: 10em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
	}

#content {
	clear: left;
	color: #ccc;
	}
	
	
/*  Additions */
#nav_container {
	width: 592px;
	background: #00529c;
	}
#nav, #nav ul {
	line-height: 1.5em;
	}
#nav {
	font: bold 10px/1.5em arial, helvetica, serif;
	font-style: italic;
	overflow: hidden;
	}
#nav ul {}	
#nav li {
	width: auto;
	border: 1px solid #ccc;
	border-width: 0 0 0 1px;
	}
#nav li li {
	width: 17.25em;
	background: #eee;
	font-size: 1em;
	border-width: 0 2px 1px;
	}
#nav a {
	display: block;
	color: #fff;
	text-decoration: none;
	}
#nav li a {	
	width: 73px;
	text-align: center;
	}
#nav li li a {
	width: 18em;
	text-align: left;
	color: #000;
	padding: 3px 0 3px .25em;
	}
#nav li a:hover 	{background: #cde;color: #000;}
#nav li li a:hover 	{background: #00529c;color: #fff;}

