.treecontainer {
    padding: 0;
    margin: 0;
}

.treecontainer li {
    list-style-type: none;
}

/* indent for all tree children excepts root */
.treenode {
    margin-left: 40px;
}

.IsRoot {
    margin-left: 0;
}

.ExpandOpen .Expand {
    background-image: url(../images/treeopen.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size:50%;
}
 
/* closed is higher priority than open */
.ExpandClosed .Expand {
    background-image: url(../images/treeclosed.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size:50%;
}
 
/* highest priority */
.ExpandLeaf .Expand {
    background-image: url();
}

.treecontent {
    min-height: 18px;
    margin-left:18px;
}

* html  .treecontent {
    height: 18px; 
}

.Expand {
    width: 30px;
    height: 30px;
    float: left;
    padding: 20px;
    margin: 0px 10px 0px -40px;
    
}
.ExpandCheckBox {
    width: 40px;
    height: 40px;
    float: left;
    margin: 17px 13px 0px 0px;
}

.ExpandOpen .treecontainer {
	display: block;
}

.ExpandClosed .treecontainer {
	display: none;
}

.ExpandOpen .Expand, .ExpandClosed .Expand {
	cursor: pointer;
}
.ExpandLeaf .Expand {
	cursor: auto;
}

.isNotDisplay{
    display: none;
}