@charset "utf-8";
/* CSS Document */

#nav a { color: #0f0d7c; }

/***********************/
/* NAVBAR POSITIONING  */
/***********************/
#navbar { padding: 0; }
#nav { 
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	font-family: georgia, arial, helvetica, serif;
	font-size: 13px;
	height: 100%;
	width: 780px;
	background-color: #ffcc00;
	vertical-align: middle;
	padding-left: 10px;
	position: relative;
	/* Added z-index to fix issue in bug 3935 (GS 2008-05-05) */
	z-index: 10;
}

#nav li {
	float: left;
	text-align: left;
	display: block;
	height: 100%;
}

#nav a {
	display: block;
	text-decoration: none;
	padding: 8px 11px;
}
/* 
Firefox doesn't position the fly-outs correctly with the float.
IE6 doesn't position the fly-outs correctly without the float.
IE7 seems to work regardless. */
* html #nav a { float: left; }

/***********************/
/*  NAVBAR COSMETICS   */
/***********************/
#nav ul li a { border: 1px solid #0f0d7c; }
#nav ul li a { border-top: none; }
	
#nav li ul li a {
	background-color: white;
	font-weight: normal;
	border-bottom: 1px solid #0f0d7c;
	width: 13em;
}
#nav li#navPolicyHolders ul li a { width: 14em; }

#nav li a:hover { background-color: #ffdd54; }
#nav li ul li a:hover { background-color: #cccccc; }


/* second-level lists */
#nav li ul { 
	position: absolute;
	height: 100%;
	width: 11em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1.5;
	letter-spacing: normal;
	clear: left;
}

/***********************/
/*   NAVBAR DYNAMISM   */
/***********************/
.urhere a { background-color: #ffeea8; }

#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 ul li:hover ul, #nav li.sfhover ul, #nav li ul li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}

 