body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	background-color: #fafafa;
	font-size: 0.9em;
	color: #000000;
}

#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1.2em;
	z-index: 1;
}

#nav a a:hover{
	display: block;
	width: 10em;
	text-decoration: none;
}

#nav li { /* all list items */
	position: relative;
	text-align: left;
	cursor: default;
	background-color: #efefef;
	border-width: 1px 0;
	float: left;
	width: 7em; /* width needed or else Opera goes nuts */
	z-index: 1;
}

#nav li ul { /* second-level lists */
	position: absolute;
	background: #efefef;
	width: 10em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	border: solid 1px #000000;
	top: 100%;
	font-weight: normal;
	padding: 0.5em 0 1em 0;
	z-index: 1;
}


#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}

#content {
	clear: left;
	color: #ccc;
}

A {
	color: #555555;
	/*border-bottom: 1px dashed;*/
}

A:link {
	color: #555555;
}

A:visited {
	color: #555555;
	text-decoration: none;
}

A:active {
	color: #222222;
}

A:hover {
	color: #aaaaaa;
}

a img {
	border: 2px;
}

#left {
	text-align: left;
	top: 30px;
/*	float: left;*/
	position: absolute;
}

#right {
	float: right;
	width: 130px;
	font-size: 0.9em;
	padding-bottom: 1em;
}

