#positioning-menu {
	position: absolute;
	top:113px;
	right: 0;
	width: 780px;
	height: 40px;
}

.menulist {
	margin:0;
	padding: 0;
	list-style: none;
	color:#333;
	display:block;
	position:absolute;
	left:0;
	font:italic 0.9em Georgia, "Times New Roman", Times;
}

.menulist li {
	display: inline;
	position: relative;
	float:left;
	border-right:1px solid #ccc;
}

.menulist ul {
	display: none;
	position: absolute;
	top: 1.2em;
	margin-top: 23px;
	/* I'm using ems and px to allow people to zoom their font */
	left: -1px;
	/* width: 200px; */
	width: 175px;
	background-color:#fdfdfb;
}

.menulist ul li {
	float: none;
	margin: 0;
	margin-bottom: -1px;
	border-right-style:none;
	font-family:"Trebuchet Ms", Verdana, Arial;
}

.menulist a {
	text-decoration: none;
	color:#333;
	display: block;
	padding-left:10px;
	padding-right:10px;
	line-height:2.8em;
}

.menulist a:hover {
	color:#006800;
	text-decoration:none;
}

.menulist ul li a {
	display: block;
	text-decoration: none;
	color: #333;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	font-size:12px;
	font-weight:normal;
	font-style:normal;
	padding-left:10px;
	padding-right:10px;
	line-height:2em;
}

.menulist ul li a:hover {
	border-bottom-style:none;
	color:#006800;
}

.menulist ul li.lifirst a {
	padding-top:5px;
}

.menulist ul li.lilast a {
    border-bottom: 1px solid #ccc;
	padding-bottom:5px;
}

.menulist ul li.lilast a:hover {
    border-bottom: 1px solid #ccc;
}

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