#nav, #nav ul { /* all lists */
	float : left;
	padding: 0;
	margin: 0;
	list-style: none;
	width : 980px;
}

#nav a {
	float : left;
	font-size : 11px;
	text-decoration: none;
	white-space: nowrap;
}
#nav a:hover {
	float : left;
	font-size : 11px;
	text-decoration: none;
	white-space: nowrap;
}

#nav div.topmenu_off a{
	color: #000000;
}
#nav div.topmenu_off a:hover{
	color: #F18F00;
}
#nav div.topmenu_on a, #nav div.topmenu_on a:hover{
	color: #FFFFFF;
}

#nav li { /* all list items */
	float : left;
	padding: 0;
	margin: 0;
}

#nav li ul { /* second-level lists */
	width: 215px;	/* 12-04-06 : 177px */
	/*margin-left: -1px;*/
	margin: 0 0 0 0;
}
#nav li ul { /* second-level lists */
	position: absolute;
	left : 0;
	border-left : 1px solid #e2e3e3;
	border-right : 1px solid #e2e3e3;
	border-bottom : 1px solid #e2e3e3;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li ul li { /* second-level lists */
	width: 100%;
}

#nav li ul a,
#nav li ul a:hover,
#nav li ul li ul a,
#nav li ul li ul a:hover {
	display: block;
	height: 22px;
	width: 100%;
	line-height: 22px;
	text-indent: 16px;
	border-top : 1px solid #e2e3e3;
	
	background : #fbfbfc;

	padding: 0;
	margin: 0;

	text-decoration: none;
	text-transform: none;
	white-space: nowrap;
}

/* second-level lists */
#nav li ul a {
	color: #000000;
}

#nav li ul a:hover {
	color: #F18F00;
}

/* FF */
html>body #nav li ul ul {
	margin: 0 0 0 200px;	/* 12-04-06 : 177px */
}

#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;
}

#content {
	clear: left;
}


