ul.menulist {
 margin-left: 25px;
}

.menulist, .menulist ul {
 margin: 0;
 padding: 0;
 list-style: none;
 text-align: left;
}

.menulist ul {
 display: none;
 position: absolute;
 top: 1.0em;
 margin-top: 11px;
 left: -1px;
 width: 153px;
 text-align: left;
}

.menulist ul ul {
 top: -1px;
 margin-top: 0;
 left: 153px;
 text-align: left;
}

.menulist li {
 float: left;
 display: block;
 position: relative;
 background: #ffbd33 url(../graphics/menu_glass.gif) repeat-x top;
 border-top: 1px solid #fff;
 border-right: 0;
 border-bottom: 1px solid #fff;
 border-left: 0;
 margin-top: -1px;
 margin-right: 20px;
 text-align: left;
}

.menulist ul li {
 float: none;
 margin: 0;
 margin-bottom: -1px;
 text-align: left;
}

.menulist ul>li:last-child {
 margin-bottom: 1px; /* Mozilla fix */
 text-align: left;
}

.menulist a {
 display: block;
 border: 0;
 margin: 0;
 padding: 3px;
 color: #000;
 text-decoration: none;
}

.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
 color: #FFF;
 background: #b52744;
}

.menulist a.highlighted {
 color: #FFF;
 background: #79303f;
}

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