.menulist, .menulist ul {
 margin: 0;
 padding: 1px;
 width: 130px;
 list-style: none;
 background: #fff;
 border:none;
 font-size:12px;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menulist ul {
 display: none;
 position: absolute;
 top: 0;
 left: 130px;
 font-size:12px;
}

/* All menu items (<li> tags) are relatively positioned (to correctly offset submenus). */
.menulist li {
 position: relative;
 font-size:12px;
}

/* Links inside the menu */
.menulist li a {
 display: block;
 padding: 3px 4px 3px 10px;
 color:#a36800;
 text-decoration: none;
 border: 1px solid transparent;
 margin: 0;
 font-weight:bold;
 font-size:12px;
}
/* HACKS: MSIE6 doesn't support transparent borders, mimic with margins */
* html .menulist li a {
 border-width: 0;
 margin: 1px;
 font-size:12px;
 text-decoration: none;
}

.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
 color:#8d6415;
 background-color:#f2f0ec;
 padding: 2px 5px 4px 9px;
 border: 1px solid #f2f0ec;
 margin: 0;
 font-size:12px;
 text-decoration: none;
 }
.menulist a.highlighted {
 color:#8d6415;
 background-color:#f2f0ec;
 border: 1px solid #f2f0ec;
 margin: 0;
 font-size:12px;
 text-decoration: none;
}

/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulist a .subind {
 float: right;
}

*:first-child+html .menulist li {
 float: left;
 width: 100%;
}

* html .menulist li {
 float: left;
 height: 1%;
}
* html .menulist a {
 height: 1%;
}