div#page-group div#header-left div#positioning-menu {
	background: url(/myimages/menu-back.gif) repeat-x;
	position: absolute;
	top: 130px;
	left: 0;
	width: 900px;
	height: 35px;
}

.menulist {
	margin: 0;
	padding: 0;
	list-style: none;
	color: #336699;
	font-weight: bold;
	font-size: 14px;
}

.menulist li {
	float: left;
	display: inline;
	position: relative;
	margin-right: -1px;
}

.menulist ul {
	display: none;
	position: absolute;
	top: 1.0em;
	margin-top: 21px;

/* I'm using ems and px to allow people to zoom their font */
	left: -1px;
	width: 200px;
}

.menulist ul li {
	float: none;
	margin: 0;
	margin-bottom: -1px;
	background-color: #f9f9f9;
}

.menulist a {
	text-decoration: none;
	color: #000;
	padding: 8px 8px 9px;
	border-right: 1px solid #fff;
	border-left: 1px solid #ddd;
	display: block;
}

.menulist li.last a {
	border-right: 1px solid #ddd;
}

.menulist ul li a {
	display: block;
	text-decoration: none;
	color: #000;
	padding: 6px 10px 7px;
	border-style: none;
	background-color: #99ccff;
	font-size: 12px;
	font-weight: normal;
	font-style: normal;
}

.menulist a:hover {
	background-color: #336699;
	color: #fff;
}

/* 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%;
}

/* End Hacks */