#nav {
	font-family: arial, helvetica, serif;
	font-size: 10px;
	font-weight: bold;
	padding-left: 10px;
}

#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	float : left;
	width : 16em;
}

#nav li { /* all list items */
	position : relative;
	float : left;
	line-height : 1.35em;
	margin-bottom : -1px;
	width: 16em;
}

#nav li ul { /* second-level lists */
	position : absolute;
	left: -999em;
	margin-left : 16em;
	margin-top : -1.35em;
}

#nav li ul ul { /* third-and-above-level lists */
	left: -999em;
	margin-left: 16.8em;
	margin-top : -2em;
}

#nav li a {
	width: 16em;
	w\idth : 16em;
	display : block;
	color : black;
	font-weight : bold;
	text-decoration : none;
	border : 0;
	padding : 0 0em;
}

#nav li li a {
	border : 1px solid #b0cfeb;
	background-color : white;
	padding: 2px;
	padding-left: 5px;
	text-decoration : none;
}

#nav li a:hover {
	color : white;
	background-color : #b0cfeb;
	text-decoration : none;
}

#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
	left: -999em;
}

#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 */
	left: auto;
}

