

.tree-Container {
    padding: 0;
    margin: 0;
}

.tree-Container li {
    list-style-type: none;
}



/* indent for all tree children excepts root */
.tree-Node {
    background-image : url(/media/images/tree/i.gif);
    background-position : top left;
    background-repeat : repeat-y;
    margin-left: 0px;
    zoom: 1;
}

.tree-IsRoot {
    margin-left: 0;
}


/* left vertical line (grid) for all nodes */
.tree-IsLast {
    background-image: url(/media/images/tree/i_half.gif);
    background-repeat : no-repeat;
}
 
.tree-ExpandOpen .tree-Expand {
    
}
 
/* closed is higher priority than open */
.tree-ExpandClosed .tree-Expand {
    background-image: url(/media/images/tree/expand_plus.gif);
}
 
/* highest priority */
.tree-ExpandLeaf .tree-Expand {
    background-image: url(/media/images/tree/expand_leaf.gif);
}

.tree-Content {
    min-height: 18px;
    margin-left:18px;
}

* html  .tree-Content {
    height: 18px; 
}

.tree-Expand {
    width: 18px;
    height: 18px;
    float: left;
}


.tree-ExpandOpen .tree-Container {
	display: block;
}

.tree-ExpandClosed .tree-Container {
	display: none;
}