/* expandable list with alternate switch symbol */

ul.altsym {
    font-size: 13px;
    margin: 0;
    padding: 0;
    width: 200px;
    background-color: #D8D8E8;
}

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: #000000;
    display: block;
    margin-left: 17px;
    padding: 2px;
    text-decoration: none;
    width: 100%;
    border: 1px solid #D8D8E8;
}

html>body ul.altsym a { width: auto; } /* hidden from Win/IE */

ul.altsym a:hover {
    background-color: #eee;
}

ul.altsym a.switch {
    background: transparent url(/images/plusminus.gif) no-repeat top left;
    border: none;
    height: 11px;
    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: 11px;
}

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: 202px; w\idth: 177px; }
* html ul.altsym a { margin-left: 0px; ma\rgin-left: 17px; }
* html ul.altsym a.switch { left: -11px; lef\t: 6px; }
/* end hacks */
