/* Put this inside a @media qualifier so Netscape 4 ignores it */
@media screen , print { /* Turn off list bullets */
    ul.mktree  li {
        list-style: none;
    }
    /* Control how "spaced out" the tree is */
    ul.mktree,ul.mktree ul,ul.mktree li {
        padding-left: 17px;
        padding-top: 6px;
        padding-bottom: 6px;
        padding-right: 0px;
    }
    /* Provide space for our own "bullet" inside the LI */
    ul.mktree  li .bullet {
        padding-left: 15px;
    }
    /* Show "bullets" in the links, depending on the class of the LI that the link's in */
    ul.mktree  li.liOpen .bullet {
        cursor: pointer;
        background-image: url(img/triangle-down.gif);
        background-position: 5px center;
        background-repeat: no-repeat;
    }
    ul.mktree li.liClosed .bullet {
        cursor: pointer;
        background-image: url(img/triangle-right.gif);
        background-position: 5px center;
        background-repeat: no-repeat;
    }
    ul.mktree li.liBullet .bullet {
        cursor: default;
        background: none;
    }
    /* Sublists are visible or not based on class of parent LI */
    ul.mktree li.liOpen ul {
        display: block;
    }
    ul.mktree li.liClosed ul {
        display: none;
    }
}
