#header ul.menulist {
	width:822px;
	background-color:#020088;
	position:absolute;
	top:146px;
	left:8px;
	text-transform:uppercase;
}

#header ul.menulist li {
	display: inline;
	position: relative;
	float:left;
	margin-right:10px;
}

#header ul.menulist li.first {
	position:absolute;
	left:10px;
	top:0;
}

#header ul.menulist ul {
	display: none;
	position: absolute;
	top: 0.6em;
	margin-top: 19px;
	/* I'm using ems and px to allow people to zoom their font */
	left: -1px;
	/* width: 200px; */
	width: 210px;
}

/* My Comment */

#header ul.menulist ul li {
	float: none;
	margin: 0;
}

#header ul.menulist a:link, #header ul.menulist a:visited {
	text-decoration: none;
	color:#fff;
	display: block;
	padding-left:10px;
	padding-right:10px;
	line-height:2.1em;
	background-color:#020088;
	font-weight:bold;
}

#header ul.menulist a:hover {
	background-color:#020088;
	color:#ffcf00;
	text-decoration:none;
	font-weight:bold;
}

#header ul.menulist ul li a:link, #header ul.menulist ul li a:visited {
	display: block;
	text-decoration: none;
	color:#020088;
	background-color:#ededff;
	font-size: 12px;
	font-weight:bold;
	padding-left:10px;
	padding-right:10px;
}

#header ul.menulist ul li a:hover {
	background-color:#6262d5;
	color:#fff;
	font-weight:bold;
}

#header ul.menulist ul li.lilast a:link, #header ul.menulist ul li.lilast a:visited {
    border-bottom: thin solid #aaa;
	background-color:#ededff;
	color:#020088;
	font-weight:bold;
}

#header ul.menulist ul li a.small {
	font-size:11px;
}

/* Only style submenu indicators within submenus. */

#header ul.menulist a .subind {
	display: none;
}

#header ul.menulist ul a .subind {
	display: block;
	float: right;
}

/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */

#header ul.menulist a {
	float: left;
}

#header ul.menulist ul a {
	float: none;
}

/* \*/

#header ul.menulist a {
	float: none;
}

/* */

/*
 HACKS: IE/Win:
 A small height on <li> and <a> tags and floating prevents gaps in menu.
 * html affects <=IE6 and *:first-child+html affects IE7.
 You may want to move these to browser-specific style sheets.
*/

*:first-child+html #header ul.menulist ul li {
	float: left;
	width: 100%;
}

* html #header ul.menulist ul li {
	float: left;
	height: 1%;
}

* html #header ul.menulist ul a {
	height: 1%;
}

/* End Hacks */