body {
	/*font-family: arial, helvetica, serif;*/
}

/* right sidebar section */
#sidebar{
	float: right;
	width: 35%;
	border-style: solid;
	border-width: 1px;
	border-color: #313E7B;
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
}


/* all lists */
#nav, #nav ul {
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}

#nav a {
	display: block;
	width: 10em;
	text-decoration: none;
}

#nav a:visited {
	color: #0000FF;
}

#nav ul li a {
	display: block;
	width: 10em;
	text-decoration: none;
	font-weight: normal;
	padding-top: 3px;
	padding-bottom: 3px;
	padding-left: 2;
	padding-right: 2;
}

#nav ul li a:visited {
	color: #0000FF;
}

/* high-lighted item*/
#nav li:hover, #nav li.sfhover{
	background: rgb(141,164,252);
}

#nav li { /* all list items */
	float: left;
	width: 10em; /* width needed or else Opera goes nuts */
 	font-weight: bold;
}

#nav li ul { /* second-level lists */
	position: absolute;
	width: 10em;
	display: none;
	/*left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	border-style: solid;
	border-color: #313E7B; 
	background: rgb(179,206,247); 
}

#nav li ul ul { /* third-and-above-level lists */
	margin: -1em 0 0 8em;
}

#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
	display: none;
}

#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul { /* lists nested under hovered list items */
	display: block;
}