﻿/*online help screen styling*/
#helpContentId {
    display: none;
}

#helpTitle {
    font-size: var(--font-size-125);
    font-weight: bold;
    margin-bottom: 25px;
}

.selfHelpLeftNavigation {
    width: 30%;
    display: inline-block;
    height: auto;
    min-height: 500px;
    max-height: 500px;
    overflow-y: auto;
    float: left;
    background-color: var(--aliceblue);
    border-right: 2px solid var(--light-red);
}

.selfHelpRightContent {
    width: 70%;
    display: inline-block;
    word-wrap: break-word;
    padding: 0px 20px;
}

.selfHelpLeftNavigation ul li {
    color: var(--dark-blue-1);
    padding: 2px 0px;
}

.selfHelpLeftNavigation ul {
    padding-left: 20px !important;
}

    .selfHelpLeftNavigation ul li a:focus,
    .focus {
        background-color: var(--lightsteelblue);
    }

    .selfHelpLeftNavigation ul li a:focus,
    .selfHelpLeftNavigation ul li:focus,
    .focus {
        outline: none;
        border: none;
    }

ul[role="tree"] a {
    cursor: pointer;
    font-weight: normal;
}

ul[role="tree"] > li:first-child > a,
li[role="none"] > a[role="treeitem"] {
    font-weight: bold;
}

    li[role="none"] > a[role="treeitem"]:before {
        content: '\25AA';
        position: relative;
        left: -5px;
        font-size: var(--font-size-100);
    }

.selfHelpRightContent > span {
    font-size: var(--font-size-125);
    font-weight: bold;
}

ul[role="tree"] > li:first-child[aria-expanded="false"] > a::before,
li[role="treeitem"][aria-expanded="false"] > a::before {
    content: '\002B';
    position: relative;
    left: -5px;
}

ul[role="tree"] > li:first-child[aria-expanded="true"] > a::before,
li[role="treeitem"][aria-expanded="true"] > a::before {
    content: '\002D';
    position: relative;
    left: -5px;
}

[role="treeitem"][aria-expanded="false"] > ul {
    display: none;
}

[role="treeitem"][aria-expanded="true"] > ul {
    display: block;
}
