#nav, #nav ul { /* all lists */
				padding: 0;
				margin: 0;
				list-style: none;
				font-family: trebuchet ms;
				font-size: 11px;
			}
			
			#nav li {
				display: block;
				color: white;
				font-family: trebuchet ms;
				font-weight: bold;
				font-size: 11px;
				text-decoration: none;
				background-color: #323698;
				position: static;
			}
			#nav li:hover, #nav li.sfhover {
				background-color: #9293cc;
				color: white;
				position: static;
			}
			#nav a {
				display: block;
				padding: 2px 8px;
				color: white;
				
			}
			#nav a:hover {
				display: block;
				color: white;
				font-family: trebuchet ms;
				font-size: 11px;
				text-decoration: none;
				}
			
			#nav li { /* all list items */
				float: left;
			}
			
			#nav li ul { /* second-level lists */
				position: absolute;
				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;
			}
			#nav li ul li { 
				clear: left;
				}
			#nav li li {
			width: 16em;
			text-align: left;
			font-weight: normal;
			}
		
