#nav {
text-align: left;
padding-top:225px; 
padding-left:20px;
}

#nav a {
color: #00467f;
text-decoration: none;
}

#nav li li a {
display: block;
font-weight: normal;
}

#nav li li a:hover {
display: block;
color: #00bdff;
}

ul { /* all lists */
padding: 0;
margin: 0;
list-style: none;
}

li { /* all list items */
float: left;
position: relative;
margin-right: 60px;
color: 00467f;
}

li ul { /* second-level lists */
display: none;
position: absolute;
top: 1em;
left: 0;
width: 14em;
background-color: #fff;
border: 1px solid #999;
margin: 0px;
padding: 5px;
}

li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
top: auto;
left: auto;
}

li li {
	display: block;
	float: none;
	margin: 0px;
	padding: 2px;
	padding-bottom: 4px;
}

li:hover ul, li.over ul { /* lists nested under hovered list items */
display: block;
}

#content {
clear: left;
}
