#nav, #nav ul { /* all lists */
	padding: 0 !important;
	margin: 0;
	list-style: none;

}

#nav a {
	display: block;
	text-align: center;
}

#nav li { /* all list items */
	float: left;
	width: 160px; /* width needed or else Opera goes nuts */
	list-style-type: none;
	padding: 0;	
	margin: 0;
}

#nav li li
{
	width: 160px;
	line-height: 1.4;
}

#nav li ul { /* second-level lists */
	position: absolute;
	width: 160px;
	display: none;
}

#nav li ul ul { /* third-and-above-level lists */
	margin: -29px 0 0 160px;
	border-top: 1px solid #ac0000;
}

#nav li:hover ul ul, #nav li.sfhover ul ul {
	display: none;
}

#nav li:hover ul,
#nav li li.sfhover ul,
#nav li li:hover ul,
#nav li li.sfhover ul
{ /* lists nested under hovered list items */
	display: block;
}

#content {
	clear: left;
	color: #ccc;
}

/* Presentation */
#nav
{
	width: 960px;
	margin: 0 auto;
	line-height: 35px;
	height: 35px;
	background: transparent;
	position: relative;
	z-index: 100000;
}

#nav a
{
	font-weight: normal;
	color: #fff;
	background: #eee;
	text-decoration: none;
	display: block;
	font-weight: bold;
}

#nav ul li a:hover
{
	background-color: #e24a2b;
	color: #fff;
	background: transparent url(../img/nav_hover.gif) no-repeat top left;
}

#nav ul li a
{
	background: transparent url(../img/nav.gif) no-repeat top left;
	text-transform: uppercase;
}


#nav li li a
{
	text-align: left;
	padding: 8px 20px;
	font-size: 11px;
	background: #ac0000;
	text-transform: none;
	background-image: none !important;
	border-bottom: 1px solid #ac0000;
	border-right: 1px solid #ac0000;
}


#nav li li a.hasChildren
{
	background-image: url(../img/children.gif) !important;
	background-repeat: no-repeat;
	background-position: right center;
}


#nav li li a:hover
{
	background-color: #e24a2b;
	color: #ffffff;	
}


#nav li ul
{
	background: transparent;
}



