﻿/* 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;
        font-weight: 400;
    }

        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("../images/SimpleTreeImages/menu-arrow-right.png");
    }

    ul.simpleTreeMenu li.Leaf > .stm-icon:before {
        content: url("../images/SimpleTreeImages/menu-dot.png");
    }

    ul.simpleTreeMenu li.expanded > .stm-icon:before {
        content: url("../images/SimpleTreeImages/menu-arrow-down.png");
    }

    ul.simpleTreeMenu .stm-content {
        display: inline-block;
        padding: 10px;
        font-weight: 600;
    }

    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;
    }

    ul.simpleTreeMenu li.EmptyNode {
        /* Override li.Node with your EmptyNode preferences here: */
        color: #808080;
    }

