.menulist, .menulist ul {
 margin: 0;
 padding: 1px;
 width: 193px;
 list-style: none;
 background: #ffffff ;
 border: 0px solid #f1f1f1;
 font-family: sans-serif, Geneva, Arial, Helvetica, sans-serif;
 font-size: 8pt;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menulist ul {
 display: none;
 position: absolute;
 top: 0;
 left: 193px;
 border: outset 1px;
 background-color: #fafafa;
}

/* All menu items (<li> tags) are relatively positioned (to correctly offset submenus). */
.menulist li {
 position: relative;
 margin: 0px;
}

/* Links inside the menu */
.menulist li a {
 display: block;
 padding: 3px 4px 3px 4px;
 color: #186386;
 text-decoration: none;
 border-top: solid 1px gainsboro;
 border-bottom: solid 1px white;
 margin: 0px;
}
.menulist li:first-child > a {
 display: block;
 padding: 3px 4px 3px 4px;
 color: #186386;
 text-decoration: none;
 border-top: solid 1px white;
 border-bottom: solid 1px white;
 margin: 0px;
}

/* HACKS: MSIE6 doesn't support transparent borders, mimic with margins 
* html .menulist li a {
 border-width: 0;
 margin: 1px;
}
*/

.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
 color: #FFFFFF;
 background-color: #656d71;
 padding: 2px 5px 4px 3px;
 border: 1px solid #dfe19b;
 margin: 0px;
}
.menulist li:first-child > a:hover, .menulist li:first-child > a.highlighted:hover, .menulist li:first-child > a:focus {
 color: #FFFFFF;
 background-color: #656d71;
 padding: 2px 5px 4px 3px;
 border: 1px solid #dfe19b;
 margin: 0px;
}

.menulist a.highlighted {
 color: #FFFFFF;
 background-color: #adb0b1;
 border: 1px solid #CDE;
 margin: 0px;
}

.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 */

