
#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	display: inline;
}

ul#nav li a {
border-right: 1px solid white;
height: 1.2em;
}

ul#nav li a:hover {
color: #fff;
background-color: #cd232a;
}

ul#nav ul li a {
border: 0px;
height: auto;
}

#nav a {
	display: block;
	/* width: 6em; */
	color: #FFF;
	font-weight: bold;
	padding-left: 5px;
	padding-right: 8px;
	padding-top: 4px;
	padding-bottom: 4px;
}

/* adjust width of top level nav items*/

#nav li { /* all list items */
	float: left;
	width: 8.5em; /* width needed or else Opera goes nuts */
	padding: 0;
	margin: 0;
	display: inline;
}

#nav li ul { /* second-level lists */
	position: absolute;
	background: #cd232a;
	width: 16.5em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}
#nav li ul a {
	width: 15.2em;
}

#nav li ul a:hover {
color: #4c4d4f;
background: #dddddd;

}

#nav li ul ul { /* third-and-above-level lists */
	margin: 0 0 0 6em;
}

#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;
}
/* fix for IE7 problems */
#nav li:hover, #nav li.hover {
    position: static;
}

