div[data-angular-treeview] {
    /* prevent user selection */
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;

    /* default */
    font-family: Tahoma;
    font-size:13px;
    color: #555;
    text-decoration: none;
}

div[data-tree-model] ul {
    margin: 0;
    padding: 0;
    list-style: none;
    border: none;
    overflow: hidden;
}

div[data-tree-model] li {
    position: relative;
    padding: 0 0 0 20px;
    line-height: 20px;
}

div[data-tree-model] li .expanded {
    padding: 1px 10px;
    background-image: url("../../../../../e/css/images/treeview/folder.png");
    background-repeat: no-repeat;
}

div[data-tree-model] li .collapsed {
    padding: 1px 10px;
    background-image: url("../../../../../e/css/images/treeview/folder-closed.png");
    background-repeat: no-repeat;
}

div[data-tree-model] li .normal {
    padding: 1px 10px;
    background-image: url("../../../../../e/css/images/treeview/file.png");
    background-repeat: no-repeat;
}

div[data-tree-model] li i, div[data-tree-model] li span {
    cursor: pointer;
}

div[data-tree-model] li .selected {
    background-color: #aaddff;
    font-weight: bold;
    padding: 1px 5px;
}

/*
  Custom
*/

div[data-tree-model] li .collapsable, div[data-tree-model] li .expandable{
    background-position: 0 -176px;
}

div[data-tree-model] li {
    margin: 0;
    padding: 3px 0pt 3px 16px;
    background: url(../../../../../e/css/images/treeview/treeview-default-line.gif) 0 0 no-repeat;
}

div[data-tree-model] li .expandable {
    background: url("../../../../../e/css/images/treeview/treeview-default.gif") -80px -3px no-repeat;
    height: 16px;
    width: 16px;
    margin-left: -16px;
    float: left;
    cursor: pointer;
}

div[data-tree-model] li .collapsable {
    background: url("../../../../../e/css/images/treeview/treeview-default.gif") -64px -25px no-repeat;
    height: 16px;
    width: 16px;
    margin-left: -16px;
    float: left;
    cursor: pointer;
}

div[data-tree-model] li:last-child{ background-position: 0 -1766px }