/* simpleTreeMenu */

ul.simpleTreeMenu {
    line-height: 1em;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    padding-left: 0px;
}

ul.simpleTreeMenu ul {
    margin-left: 0px;
    padding-left: 20px;
}

ul.simpleTreeMenu li {
    margin-left: 0px;
    padding-left: 0px;
}

ul.simpleTreeMenu li.Node,
ul.simpleTreeMenu li.Leaf {
    list-style-type: none;
    white-space: nowrap;
}

ul.simpleTreeMenu span.stm-icon {
    background-position: 5px 14px;
    background-repeat: no-repeat;
    display: inline-block;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 5px;
    padding-right: 5px;
}

ul.simpleTreeMenu li.Node>.stm-icon:before {
    /*content: url("simpleTreeMenu/menu-arrow-right.png");*/
    font-family: FontAwesome;
    content: "\f0da";
}

ul.simpleTreeMenu li.Leaf>.stm-icon:before {
    /*content: url("simpleTreeMenu/menu-dot.png");*/
    font-family: FontAwesome;
    content: "\f111";
    font-size: 60%;
}

ul.simpleTreeMenu li.expanded>.stm-icon:before {
    /*content: url("simpleTreeMenu/menu-arrow-down.png");*/
    font-family: FontAwesome;
    content: "\f0d7";
}

ul.simpleTreeMenu .stm-content {
    display: inline-block;
    padding: 10px;
}

ul.simpleTreeMenu a,
ul.simpleTreeMenu a:visited {
    text-decoration: none;
}

ul.simpleTreeMenu .stm-content:hover,
ul.simpleTreeMenu li.Node>.stm-icon:hover {
    background-color: #eee;
    cursor: pointer;
}

/*ul.simpleTreeMenu li.selected .stm-content {*/
    /*background-color: #ddd;*/
/*}*/

.selected {
    color: red;
}

ul.simpleTreeMenu li.EmptyNode {
    /* Override li.Node with your EmptyNode preferences here: */
    color: #808080;
}