.menulist {
	position:absolute;
	left:185px;
	color:#fff;
	bottom:0;
	width:765px;
	margin:0;
	padding:0 0 0 10px;
	height:26px;
	line-height:1.7em;
	font-size:0.70em;
}

.menulist li {
	display: inline;
	position: relative;
	float:left;
	text-transform:uppercase;
	margin:0 4px 0 0;
	padding:0;
}

.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: 175px;
}

.menulist ul li {
	float:none;
	margin:0;
	margin-bottom:-1px;
	border-left-style:none;
}

.menulist a:link, .menulist a:visited {
	color:#fff;
	text-decoration:none;
	font-weight:bold;
	padding:3px 4px 4px;
	display: block;
}

.menulist a:hover {
	color:#fff;
	text-decoration:none;
	background:#407cef url(/myimages/menu-bkg.jpg) repeat-x left top;
	font-weight:bold;
	padding:3px 4px 4px;
}

.menulist ul li a:link, .menulist ul li a:visited {
	display: block;
	text-decoration: none;
	color:#fff;
	background-color:#407cef;
	font-weight:bold;
	margin:0;
	padding:2px 10px;
	background-image:none;
	text-transform:uppercase;
}

.menulist ul li a:hover {
	background-color:#d6e4ff;
	border-bottom-style:none;
	color:#004ad8;
	padding:2px 10px;
	margin:0;
	background-image:none;
}

/* Only style submenu indicators within submenus. */

.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%;
}