/*----------------------------------|
| Tree | javascript.ru/unsorted/tree| 
|-----------------------------------|
| Copyright (c) 2008 Илья Кантор    |
|----------------------------------*/

.Container {
	list-style-image: none;
    padding: 0px;
    margin: 0px;
}

.Container ul ul {
	list-style-image: none;
}

.Container ul {
	list-style-image: none;
}

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


/* indent for all tree children excepts root */
.Node {
   background-image : url(/common/img/uploaded/depositarium/tree/line.gif);
    background-position : top left;
    background-repeat : repeat-y;
    margin-left: 18px;
    zoom: 1;
}

.IsRoot {
    margin-left: 0px;
}


/* left vertical line (grid) for all nodes */
.IsLast {
    background: url(/common/img/uploaded/depositarium/tree/line_bhalf.gif) no-repeat;
}

.IsFirst {
    background: url(/common/img/uploaded/depositarium/tree/line_thalf.gif) no-repeat;
}

.ExpandOpen .Expand {
	background: url(/common/img/uploaded/depositarium/tree/minus.gif) top left;
}

/* closed is higher priority than open */
.ExpandClosed .Expand {
    background: url(/common/img/uploaded/depositarium/tree/plus.gif) top left;
/*    background-repeat : no-repeat;*/
}

/* highest priority */
.ExpandLeaf .Expand {
    background: url(/common/img/uploaded/depositarium/tree/page.gif) top left;
}

.Content {
    min-height: 16px;
    margin-left:18px;
    padding-top:2px;
	vertical-align:bottom;
}

* html .Content {
    height: 18px;
}

.Content span 		{position:absolute;margin-left:5px;display:none;background:#f0f0f0;border:solid 1px #999999;}
.Content span img 	{border:0 none;margin:2px;}

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


.ExpandOpen .Container {
        display: block;
}

.ExpandClosed .Container {
        display: none;
}

.ExpandOpen .Expand, .ExpandClosed .Expand {
        cursor: pointer;
}
.ExpandLeaf .Expand {
        cursor: auto;
}

