#positioning-menu {
	position: absolute;
	top: 150px;
	left: 0px;
	width: 950px;
	height: 46px;
	background:url(/myimages/menu-back.gif) no-repeat;
	padding-left:80px;
	padding-top:7px;
}

.menulist {
	margin:0;
	padding: 0;
	list-style: none;
	color:#fff;
	display:block;
	text-transform:uppercase;
}

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

.menulist ul {
	display: none;
	position: absolute;
	top: 0.6em;
	margin-top: 21px;
	/* 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, .menulist a:visited {
	text-decoration: none;
	color:#fff;
	display: block;
	padding-left:7px;
	padding-right:7px;
	line-height:2.1em;
}

.menulist a:hover {
	color:#fff;
	text-decoration:underline;
}

.menulist ul li a {
	display: block;
	text-decoration: none;
	color: #fff;
	background-color:#000;
	font-size: 12px;
	font-weight: normal;
	font-style: normal;
	padding-left:10px;
	padding-right:10px;
}

.menulist ul li a:hover {
	background-color:#000;
	border-bottom-style:none;
	color:#46b9ea;
}

.menulist ul li.lilast a {
    border-bottom: thin solid #aaa;
}

/* 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 */