.menulist, .menulist  ul {
	margin: 0;
	padding: 0;
	list-style: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000053;
}

.menulist ul {
 display: none;
 position: absolute;
 width: 180px;
 border: 1px solid #aaaaaa;
 text-align:left;
}

.menulist li {
	float: left;
	display: block;
	position: relative;
}

.menulist ul li {
	float: none;
	margin: 0;
	background-color:#EEEEDB;
}

.menulist ul>li:last-child {
 margin-bottom: 1px; /* Mozilla fix */
}

.menulist a {
	display: block;
	color: #000053;
	text-decoration: none;
	padding-top: 3px;
	padding-right: 8px;
	padding-bottom: 4px;
	padding-left: 8px;
}

.menulist a:link, .menulist a:visit, .menulist a:active { color: #000053; }

.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
	color: #000053;
	background-color: #A7B8C7;
}
.menulist a.highlighted {
	color: #000053;
	background-color: #A7B8C7;
}

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

/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.menulist a { float: left; }
.menulist ul a { float: none; }
/* \*/
.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 .menulist ul li { float: left; width: 100%; }

* html .menulist ul li { float: left; height: 1%; }
* html .menulist ul a { height: 1%; }
/* End Hacks */
