/* treeview.inc.php */

div.menubar #treeview ul {
    cursor: default;
    margin: 0 0 0 -12px;
    padding: 0 0 0 12px;
/*	line-height: 1.4em;*/
}

div.menubar #treeview li {
    background: transparent url(leaf.gif) no-repeat left 0.3em;
    cursor: default;
    list-style-type: none;
    margin: 0;
    padding: 0 0 0 12px;
}

div.menubar #treeview li.expanded {
    background-image: url(expanded.gif);
    cursor: pointer;
}

div.menubar #treeview li.collapsed {
    background-image: url(collapsed.gif);
    cursor: pointer;
}

#treeview {
    margin-bottom: 1em;
}

#treeview a, #treeview span.current {
    display: block;
    _display: inline-block;  /* for IE6 and below */
    text-decoration: none;
    white-space: nowrap;
    width: 100%;
    line-height: 100%;
    margin: 1px 0;
    padding: 2px 0 3px 0;
    *padding-bottom: 2px;    /* for IE7 */
    _padding-bottom: 1px;    /* for IE6 and below */
}

#treeview a:hover, #treeview span:hover {
    background-color: #cde;
}

#treeview span.current {
    background-color: #cde;
    color: #d00;
    cursor: default;
}
