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

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menulist ul {
 visibility: hidden;
 position: absolute;
 top: 0px;
 left: 100%;
 width: 100%;
 background-color:transparent;
z-index:10;
}

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


/* Links inside the menu */
.menulist a {
 display: block;
 padding: 5px 0px 5px 0px;
 background:transparent;
 color: #92d42b;
 margin: 0px;
 font-size:8pt;
 font-weight:bold;
z-index:10;
}
.hrefA {border-bottom:1px solid #84C71C;background-color: #ffffff; z-index:10; color:#84C71C; text-transform:uppercase;}
.hrefB {border-bottom:1px solid #84C71C;background-color: #ffffff; z-index:10; color:#84C71C; text-transform:uppercase;}

.hrefA a {color:#84C71C;}
.hrefB a {color:#84C71C;}

/*.hrefA a:hover, .hrefA a.highlighted:hover, .hrefA a:focus {background-color: #E3F7C4; z-index:10; color:#84C71C;}
.hrefB a:hover, .hrefB a.highlighted:hover, .hrefB a:focus {background-color: #E3F7C4; z-index:10; color:#84C71C;}*/

.hrefA a:hover, .hrefA a.highlighted:hover, .hrefA a:focus {z-index:10; color:#000000; text-decoration:none;}
.hrefB a:hover, .hrefB a.highlighted:hover, .hrefB a:focus {z-index:10; color:#000000; text-decoration:none;}

/* IE fix because it doesn't support transparent borders */
 html .menulist a {margin: 0px;z-index:10;}

/*
 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: #333;
 padding: 5px 0px 5px 0px;
 margin: 0;
 font-size:8pt;
z-index:10;
}
.menulist a.highlighted {
 color: #333;
 background-color: #f9f9f9;
 margin: 0;
z-index:10;
}*/
.subind {
 font-size: 9pt;
}
/*
 If you want per-item background images in your menu items, here's how to do it.
 1) Assign a unique ID tag to each link in your menu, like so: <a id="xyz" href="#">
 2) Copy and paste these next lines for each link you want to have an image:
    .menulist a#xyz {
      background-image: url(out.gif);
    }
    .menulist a#xyz:hover, .menulist a.highlighted#xyz, .menulist a:focus {
     background-image: url(over.gif);
    }
*/


/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulist a .subind {
 float: right;
}

/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
*html .menulist li {
 float: left;
 height: 1%;
}
*html .menulist a {
 height: 1%;
}
/* End Hack */
