/* For treemenu.js */
.treemenu li { list-style: none; }
.treemenu .toggler { cursor: pointer; }
.treemenu .toggler:before { display: inline-block; margin-right: 2pt; }
li.tree-empty > .toggler { opacity: 0; cursor: default; }
li.tree-empty > .toggler:before { content: "\2212"; }
li.tree-closed > .toggler:before { content: "+"; }
li.tree-opened > .toggler:before { content: "\2212"; }












.tree li,
.tree li > a,
.tree li > span {
    /*! padding: 4pt; */
    border-radius: 4px;
}

.tree ul {
    margin-right: 10px;
    padding-right: 7px;
    padding-top: 7px;
}

.tree li a {
    color:#3f3f3f;
    text-decoration: none;
    line-height: 20pt;
    border-radius: 4px;
    font-weight: 300;
}

.tree li a:hover {
    /*! background-color: #34BC9D; */
    color: #E99F3E;
}

.tree .active {
    padding: 0 9px;
    background-color: #E99F3E;
    webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    color:#fff !important;
}

.tree .active a {
    color: #fff;
}

.tree li a.active:hover {
    background-color: #216B82;
    color: #fff;
}