.menulist, .menulist ul {
 margin: 0;
 padding: 0;
 width: 146px;
 list-style: none;
}

.menulist ul {
 display: none;
 position: absolute;
 top: -1px;
 left: 153px;
}

.menulist li {
 position: relative;
 width:145px;
 padding-left:4px;
}

.menulist ul>li {
 margin-bottom: 1px; /* Mozilla fix */
}

/* Links inside the menu */

.menulist a {
 display: block;
 padding: 4px; padding-left:1px;
 color: #395445;
 text-decoration: none;
 font: bold 11px verdana, arial, serif, sans-serif;
 background-image:url(menu-bg.jpg);
}



/*

 Lit items: 'hover' is mouseover, 'highlighted' are parent items to visible menus.

*/

.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
 color: #000;
 background-color: #;
 background-image:url(menu-bg.jpg);
}

.menulist a.highlighted {
 color: #FEA477;
 background-color: #C86;
}

/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */

.menulist a .subind {
 float: right;
}



/*

 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 li {
 float: left;
 width: 100%;
}

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

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

/* End Hacks */