/* expandable list with alternate switch symbol */

ul.altsym {
    background-color: #f2f2f2;
    font-family: "Verdana", Arial, Helvetica, sans-serif;
    font-size: 12px;
    margin: 0;
    padding: 0;
    width: 100%;
}

ul.altsym ul {
    display: none;
    margin: 0;
    padding-left: 15px;
}

ul.altsym li {
    list-style-type: none;
    position: relative;
    width: 100%;
}

ul.altsym a {
    color: #000099;
    display: block;
    margin-left: 17px;
    padding: 2px;
    text-decoration: none;
    width: 100%;
}

html>body ul.altsym a { width: auto; } /* hidden from Win/IE */

ul.altsym a:hover {
    background-color: #f2f2f2;
    text-decoration: underline;
}

ul.altsym a.switch {
    background: transparent url(/images/arrows.gif) no-repeat top left;
    border: none;
    height: 10px;
    left: 6px;
    line-height: 0px; /* Win/IE needs this for some reason */
    margin: 0;
    padding: 0;
    text-indent: -500px;
    top: 0.7ex;
    position: absolute;
    width: 10px;
}

ul.altsym a.switch:hover {
    background-color: transparent;
    border: none;
}

ul.altsym a.on { background-position: bottom left; }
ul.altsym a.off { background-position: top left; }

/* Box-model hacks for Win/IE 5.5 \*/
* html ul.altsym { width: 590px; w\idth: 565px; }
* html ul.altsym a { margin-left: 0px; ma\rgin-left: 17px; }
* html ul.altsym a.switch { left: -11px; lef\t: 6px; }
/* end hacks */
