.cssmenu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    border-spacing: 0;
    border-collapse: collapse;
}

.cssmenu td {
    padding: 0;
    border: 0 !important;
}

#jstree li {
    list-style: none;
    padding: 0;
}

#jstree ul {
    margin-left: 0.5em;
    padding:0;
    list-style:none;
    color:#CCCCCC;
    position:relative;
}

#jstree ul:before {
    content:"";
    display:block;
    width:0;
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    border-left:1px solid;
}

#jstree ul.single:before {
    border-left: 0 !important;
}

#jstree li {
    margin:0;
    padding: 0.5em 0 0.5em 1.5em;
    line-height:1.25em;
    font-weight:normal;
    position:relative;
}

#jstree li:first-child {
    padding: 1em 0 0.5em 1.5em;
}

#jstree li.first_of_all {
    padding: .5em 0 0.5em 1.5em;
}

#jstree li:first-child::before {
    top:1.5em !important;
}

#jstree li:before {
    content:"";
    display:block;
    width:10px; /* same with indentation */
    height:0;
    border-top:1px solid;
    margin-top:0; /* border top width */
    position:absolute;
    top:1em; /* (line-height/2) */
    left:0;
}

#jstree li.parent span {
    cursor: pointer;
    display:block;
    width:16px;
    height:16px;
    position:absolute;
    left: -7px;
    top: 6px;
}

#jstree li:first-child > span {
    top: 13px;
}

#jstree li.first_of_all > span {
    top: 6px !important;
}

#jstree li.parent span.closed {
    background: url("../img/icon/plus.png") no-repeat 0 0;
    /*background: url("../img/svg/plus.svg") no-repeat 0 0;
    background-size: 16px 16px;*/
    /*background-image: url('../img/sprites1.png');
    background-repeat: no-repeat;
    background-position: 0 -672px;*/
}

#jstree li.parent span.opened {
    background: url("../img/icon/minus.png") no-repeat 0 0;
    /*background: url("../img/svg/minus.svg") no-repeat 0 0;
    background-size: 16px 16px;*/
    /*background-image: url('../img/sprites1.png');
    background-repeat: no-repeat;
    background-position: 0 -681px;*/
}

#jstree > ul > li.first_of_all:first-child:before {
    background: white;
    height: 1em;
    top: 0 !important;
    border-top: 0;
    border-bottom: 1px solid;
}

#jstree > ul > li.leaf:first-child:before {
    background: white;
    height: 50%;
    top: 0;
    border-top: 0;
    border-bottom: 1px solid;
}

#jstree li:last-child:before {
    background:white; /* same with body background */
    height:auto;
    top: 1em; /* (line-height/2) */
    bottom:0;
}

#jstree li.parent > ul {
    display: none;
}