/* All <ul> tags in the menu including the first level */
.menulist, .menulist ul {
 margin: 0;
 padding: 0px;
 width: 150px;
 list-style: none;
 background: transparent;
z-index:1000;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menulist ul {
 display: none;
 position: absolute;
 background: #65a58b;
 top: 0;
  width: 150px;
left: 155px;
z-index:1000;
}


/* All menu items (<li> tags) are relatively positioned (to correctly offset submenus). */
.menulist li {
 position: relative;
z-index:1000;
}

/* Links inside the menu */
.menulist li a {
 display: block;
 padding: 3px 4px 3px 10px;
 font-size: 11px;
color: #f1f1f1;
 text-decoration: none;
 border: 1px solid #e7eaee;
 margin: 0;

}

/*
 Lit items: hover/focus = the current item. 'highlighted' = parent items to visible menus.
 Here, active items are given a border, and a padding tweak to 'elevate' the text within.
 Feel free to use background-image:url(file.gif) instead of background-color:#nnn here...
*/
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
 color: #ffab62;
 background-color: #46A;
 border: 1px solid #ADF;
 margin: 0;
}
.menulist a.highlighted {
 color: #ffab62;
 background-color: #68C;
 border: 1px solid #CDE;
 margin: 0;
}
* html .menulist a:link {
 font-family:verdana;
color:#333;
}

* html .menulist a:visited {
 font-family:verdana;
color:#333;
}


* html .menulist a:hover {
 font-family:verdana;
 color: #ffab62;
text-decoration:none;
 background-color: #46A;
}


/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulist a .subind {
 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%;
}

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

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