/* Dropdown menu */

		#nav, #nav ul { /* all lists */
			padding: 0;
			margin: 0;
			list-style: none;
			line-height: 1;
			
		}
		
		#nav a {
			display: block;
			width: 133px;
		}
		
		#nav li { /* all list items */
			float: left;
			width: 133px;
			
		}
		
		
		#nav li ul a {
			font-size: 11px;
			display : block;
			color : white;
			font-weight : normal;
			text-decoration : none;
			height: 10px;
			border-top: 1px solid #FFF;
			padding : 5px 0 6px 0;
			text-align: center;
			
		}
		
		#nav li a:hover {
			color : white;
			background-color: #005796;
		}
		
		#nav li ul { /* second-level lists */
			position: absolute;
			background-color: orange;
			width: 133px;
			left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */	
		}
		
		#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
			left: auto;
			background-color: #D9433D;
		}