#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0px 0px 0px 0px;
	list-style: none;
	line-height: 1;
}

#nav a {
	display: block;
	/*width: 10em;*/

	width: 180px;
}

#nav li { /* all list items */
	float: left;
	/*width: 10em;*/ /* width needed or else Opera goes nuts */

}

#nav li ul { /* second-level lists */
	position: absolute;
	background: #49176D;
	width: 180px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */

        /* Custom */
	padding: 0px;
	border: 1px solid black; /*#49176D;*/

}

#nav li ul ul { /* third-and-above-level lists */
	margin: -25px 0 0 180px;
}

#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;
}


/* custom */
#nav .L2   {margin-left: 14px;}
#nav #b_news .L2 {margin-left: -52px;}
#nav #b_user_groups .L2 {margin-left: -72px;}

#nav li li a:link { text-decoration: none; color: white;}
#nav li li a:visited { text-decoration: none; color: white;}
#nav li li a:active { text-decoration: none; color: white;}
#nav li li a:hover { background: #846DA0; text-decoration: none; color: white;}

#b_home, #b_home a { width: 90px;}
#b_corporate, #b_corporate a { width: 118px;}
#b_products,#b_products a  { width: 117px;}
#b_services, #b_services a { width: 117px;}
#b_news, #b_news a { width: 143px;}
#b_filler { width: 11px;}

#b_product_information, #b_product_information a { width: 185px;}
#b_incident_management,#b_incident_management a  { width: 187px;}
#b_user_groups, #b_user_groups a { width: 123px;}

#b_agenda, #b_agenda a { width: 120px;}
#b_events, #b_events a { width: 120px;}
#b_hotel, #b_hotel a { width: 120px;}
#b_registration, #b_registration a { width: 135px;}

#nav .L2 a  { width: 180px; height: auto; padding: 0px; margin: 0px;}
#nav .L2 li { width: 180px; height: auto;padding: 0px; margin: 0px;}

#nav img  {border: none;}

#nav li:hover {background-position: 0 0;} /* sticky menu fix */