.bTree {
    font-size: 14px;
}

.bTree li {
    padding: 0;
    line-height: 26px;
}

.bTree li > p:hover {
    background-color: #f7f7f7;
}

.bTree li > p {
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.bTree li > p > span.arrow {
    width: 24px;
    height: 24px;
    background: url("closeicon.png") no-repeat 5px 6px;
    float: left;
    margin: 1px;
    display: block;
}

.bTree li.expanded > p > span.arrow {
    background: url("openicon.png") no-repeat 6px 5px;
}

.bTree li > p.no-child > span.arrow {
    background: none;
}

.bTree li > p > img {
    margin: 5px 5px 5px 2px;
    float: left;
    width: 16px;
    height: 16px;
}

.bTree li > p > div {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.bTree li.selected > p > div {
    color: #dc0000;
    font-weight: bold;
}

.bTree li > ul {
    margin: 0;
    padding: 0 0 0 18px;
    display: none;
}

.bTree li.expanded > ul {
    display: block;
}