<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.bTree {
    font-size: 14px;
}

.bTree li {
    padding: 0;
    line-height: 26px;
}

.bTree li &gt; p:hover {
    background-color: #f7f7f7;
}

.bTree li &gt; p {
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.bTree li &gt; p &gt; span.arrow {
    width: 24px;
    height: 24px;
    background: url("closeicon.png") no-repeat 5px 6px;
    float: left;
    margin: 1px;
    display: block;
}

.bTree li.expanded &gt; p &gt; span.arrow {
    background: url("openicon.png") no-repeat 6px 5px;
}

.bTree li &gt; p.no-child &gt; span.arrow {
    background: none;
}

.bTree li &gt; p &gt; img {
    margin: 5px 5px 5px 2px;
    float: left;
    width: 16px;
    height: 16px;
}

.bTree li &gt; p &gt; div {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.bTree li.selected &gt; p &gt; div {
    color: #dc0000;
    font-weight: bold;
}

.bTree li &gt; ul {
    margin: 0;
    padding: 0 0 0 18px;
    display: none;
}

.bTree li.expanded &gt; ul {
    display: block;
}</pre></body></html>