ul#nav, ul#nav li ul { /* all lists */
	padding: 10px;
	margin: 0;
	list-style: none;
}

ul#nav  { /* top level list */
        width: 140px;
}
     

ul#nav li { /* all list items */
	position: relative;
        margin: 5px 0 0 10px;
		padding: 1px;
        background-color: #003399;
        color: #fff;
        font-size: 10pt;
        font-weight: bold;
}

ul#nav li.current {
        background-color: #8d9ccd;        
}

ul#nav li ul { /* second-level lists */
	display: none;
	position: absolute;
	    padding: 0;
        left: 0;
        top: 20px;
        margin: -20px 0 0 125px;
        width: 200px;
		background-color: #222e7d;
		z-index: 2;
        opacity: .8;
	    filter: alpha(opacity=80);
}

ul#nav li ul li { /* second level list items */
		background-color: #222e7d;
		margin: 2px 0 2px 10px;
}

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

ul#nav a { /* all links in nav list(s)*/
   color: #fff;
   text-decoration: none;
   }

ul#nav a:hover { /* all links when hovering */
   color: #fff;
   text-decoration: underline;
   }
