/* CSS Menus - Vertical CSS Menu with Popout and Dropdown Menus - 20050131 */
/* This code is based on the tutorial at:
   http://www.tanfa.co.uk/css/examples/menu/tutorial-v.asp#vs7
   with the code at:
   http://www.tanfa.co.uk/css/examples/menu/vs7.asp

   This one seems to work with IE5.
*/

/* * {
    margin: 0;
    padding: 0;
    border: none;
} */

/* body {
    margin: 0.5em 0.5em 0.5em 1.0em;
    font-size: 100%;
    font-family: verdana, tahoma, arial, sans-serif;
} */

/* Begin CSS Popout Menu */

#menu {
    /* light green */
    background-color:#e5f5e9;
    position: absolute;
    top: 0.5em;
    left: 0.5em;
    z-index: 2;
    width: 17%;
    /* padding-bottom: 12em; */ /* To allow room for bottom dropdown */
}

#menu a, #menu h2 {
    /* Another light greeny grey */
    background-color:#f5fff8;
    color: #004000;
    /* font: bold 11px/16px arial,helvetica,sans-serif; */
    /* font-family: Verdana, helvetica, arial, sans-serif; */
    font-weight: bold;
    /* font-weight: normal; */
    line-height: 2.0;
    display: block;
    border-width: 1px;
    border-style: solid;
    /* border-color: #36c; */
    border-color: green;
    /* white-space: nowrap; */
    margin: 0;
    padding: 1px 0.5em;
}

#menu h2 {
    font-size: small;
    text-transform: uppercase;
    display: block;
}

#menu h2 a {
    border-width: 0;
    border-style: none;
    font-size: 100%;
    padding: 0;
}

#menu a {
    text-decoration: none;
    font-size: small;
}

#menu a:hover,
#menu h2:hover,
#menu a:active {
    color: #ffff64;
    /* light green */
    background-color: #16b016;
    /* background-color: green; */
}

#menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Requirement: Put the element selector name (div)
onto non anchor hover selectors to force IE5 and
5.5 to correctly apply the csshover file. */

div#menu li, div#menu li:hover {
    position: relative;
}

div#menu li ul {
    position: absolute;
    top: 0;
    left: 100.1%;
    display: none;
}

div#menu ul ul,
div#menu ul ul ul,
div#menu ul li:hover ul ul,
div#menu ul li:hover ul ul ul
{ display: none; }

div#menu ul li:hover ul,
div#menu ul ul li:hover ul,
div#menu ul ul ul li:hover ul
{ display: block; }

div#menu h2,
div#menu h2.parent a {
    padding-right: 0;
    margin-right: 0;
    border-right: 0;
}

/* attaches side-arrow to all parents */
div#menu a.parent,
div#menu h2.parent,
div#menu h2.parent a {
    background-image: url(../icons/right-arrow-green-16b016.gif);
    background-position: right center;
    background-repeat: no-repeat;
}

div#menu a.parent:hover,
div#menu h2.parent:hover,
div#menu h2.parent a:hover {
    background-image: url(../icons/right-arrow-yellow-ffff64.gif);
    background-position: right center;
    background-repeat: no-repeat;
}

/* End non-anchor hover selectors */

/* Styling for Expand */

/* #menu a.x, #menu a.x:visited { */
/*     /\* background: #eee url(/css/images/expand3.gif) no-repeat bottom right; *\/ */
/* } */

/* #menu a.x:hover { */
/*     color: #a00; */
/*     background: #ddd; */
/* } */

/* #menu a.x:active { */
/*     color: #060; */
/*     background: #ccc; */
/* } */

