#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}

#nav a {
	display: block;
	width: 170px;
	color:#000000;
	text-decoration:none;
	font-weight:bold;
}

#nav li { /* all list items */
	float: left;
	padding: 1px;
	margin: 1px;
	background: #8C84C6;
	width: 170px; /* width needed or else Opera goes nuts */
}

#nav li ul{ /* second-level lists */
	position: absolute;
	background: #D6D6EF !important;
	color:#333399;
	font-size:12px;
	font-weight: normal;
	width: 170px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li ul li {
	margin: 0;
	background: #D6D6EF;
	border-bottom: 2px solid #fff;;
}

#nav li ul li a {
	padding-top: 3px;
	padding-bottom: 3px;
}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}

#content {
	clear: left;
	color: #ccc;
}

h1 {
font-size: 14px;
font-weight: bold;
}

h2 {
font-size: 12px;
font-weight: bold;
}