/* CSS Document */

/* body */

body {
 	font-family: Helvetica, Arial, sans-serif;
 	font-size: 14px;
	line-height: 2;
	text-transform: uppercase;
 	color: #777;
 	background-color: #FFF;
}

/* typography */

.black {
	color: #000;
}
a:link {
	color: #777;
	text-decoration: none;
}
a:visited {
	color: #777;
	text-decoration: none;
}
a:hover {
	color: #333;
	text-decoration: none;
}
a:active {
	color: #777;
	text-decoration: none;
}

/* navigation */

#navigation {
	position: absolute;
	background: #EEE;
	display: block;
	top: 15px;
	left: 20px;
	width: 97%;
	border-bottom: dashed 1px;
	z-index: 100;
}
#nav, #nav ul { /* all lists */
	line-height: 2;
	padding: 0;
	margin: 0;
	list-style: none;
}
#nav a {
	background: #EEE; /* IE6 */
	display: block;
	width: 120px;
}
#nav li { /* all list items */
	float: left;
	width: 120px; /* width needed for Opera */
}
#nav li ul { /* second-level lists */
	position: absolute;
	background: #EEE;
	border-bottom: dashed 1px;
	padding: 0px;
	margin: 0px;
	width: 120px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}
#nav li ul ul { /* third-and-above-level lists */
	margin: -2px 0 0 120px;
}
#nav li:hover ul ul, #nav li.sfhover ul ul {
	left: -999em;
}
#nav li:hover ul, #nav li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}