/*\*/
.menulist, .menulist ul {
 margin: 0;
 padding: 1px;
 width: 250px; /* See BELOW. Was 170px */
 list-style: none;
 background: #fffacd url(listmenu_o.gif) left repeat-y;
 border: 1px solid #654;
}
/* Submenus (<ul> tags) */
.menulist ul {
 display: none;
 position: absolute;
 top: 0;
 left: 250px; /* See ABOVE. Was 170px */
}
/* Menu items (<li> tags) */
.menulist li {position: relative;}
/* Links inside menu */
.menulist li a {
 display: block;
 padding: 1px 4px 1px 30px; /* 1px was 3px */
 color: #000;
 text-decoration: none;
 border: 1px solid transparent;
 margin: 0;

}
/* Fixes */
* html .menulist li a {border-width: 0;  margin: 1px;}
/*\*/
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
 color: #FFF;
 background-color: #339; /* Was #46a */
 padding: 1px 5px 1px 29px; /* was 2 5 4 29 */
 border: 1px solid #adf;
 margin: 0;
}
.menulist a.highlighted {
 color: #FFF;
 background-color: #339; /* Was #68c */
 border: 1px solid #cde;
 margin: 0;
}
.menulist a .subind {float: right;}
/* Fixes */
*:first-child+html .menulist li {float: left;  width: 100%;}
* html .menulist li {float: left;  height: 1%;}
* html .menulist a {height: 1%;}