@charset "utf-8";
/* CSS Document */
	.nav, .nav ul { /* all lists */
		padding: 0;
		margin: 0;
		list-style: none;
		float : left;
		width : 160px;
		font-size:9pt;
	}
	
	.nav li { /* all list items */
		position : relative;
		float : left;
		/* line-height : 1.25em; */
		margin-bottom : -1px;
		width: 160px;
	}
	
	.nav li ul { /* second-level lists */
		position : absolute;
		left: -999em;
		margin-left : 160px;
		margin-top : -2em;
	}
	
	.nav li ul ul { /* third-and-above-level lists */
		left: -999em;
	}
	
	.nav li a {
		display : block;
		color:#002146;
		font-weight : bold;
		text-decoration : none;
        text-align:right;

		padding:.6em;
		/** the next rule applies the divider line between left nav items **/
		background-image:url(../templateimages/nav_divider_grey_whitebkgd.jpg); /*  LEFTNAV CHANGE */
		background-position:bottom right;
		background-repeat:no-repeat;
		height:auto;

	}
	.nav li a:hover {
		background-color:#E8E8E8;
		text-decoration:underline;
		white-space:normal;
		z-index:10000;	
		}
	
	.nav li:hover ul ul, .nav li:hover ul ul ul, .nav li.lefthover ul ul, .nav li.lefthover ul ul ul {
		left: -999em;

	}
	.nav li:hover ul, .nav li li:hover ul, .nav li li li:hover ul, .nav li.lefthover ul, .nav li li.lefthover ul, .nav li li li.lefthover ul { /* lists nested under hovered list items */
		left: auto;
		border-color:#DEDEDE #555 #555 #DEDEDE;
		border-style:solid;
		border-width:1px 2px 2px 1px;
		background-color:#FFFFFF;
	}

