﻿div.help_widget {
    display: block;/* To ensure that the control buttons below the help menu do not get pushed to left */
}

    div.help_widget > ul {
        display: table-cell;
        position: relative;
        margin: 0;
        padding: 0;
        cursor: pointer;
    }

    div.help_widget ul.child, div.help_widget ul li, div.help_widget ul li a {
        padding: 0;
        margin: 0;
        line-height: 1;
        font-family: 'Source Sans Pro', sans-serif;
        color: #2B2C2B; 
    }

    div.help_widget:before, div.help_widget:after, div.help_widget > ul:before, div.help_widget > ul:after {
        content: '';
        display: table;
    }


    div.help_widget:after, div.help_widget > ul:after {
        clear: both;
    }

    div.help_widget a {
        text-shadow: 0 1px 1px rgba(0, 0, 0, .2);
    }

    div.help_widget ul.child {
        display:none;
        width: 200px;
        border-radius: 4px;
        background: var(--light-background-paper, #FFF);
        /* Elevation/8 */
        box-shadow: 0px 3px 14px 2px rgba(0, 0, 0, 0.12), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 5px 5px -3px rgba(0, 0, 0, 0.20);
    }

    div.help_widget ul > li {
        float: right;
        list-style: none;
    }

        div.help_widget ul > li > a.first {
            display:block;
            text-decoration: none;
            position: relative;
            background-color: #004C76;
            border: #004C76 0.5px solid;
            padding: 0;
            border-radius: 4px;
        }
            div.help_widget ul > li > a.first span {
                color: #ECF6FC;
            }

/*            div.help_widget ul > li > a.first:hover {
                background: #a4a4a4;
                background: url(../images/menu.png) top center no-repeat;
                -webkit-box-shadow: inset 0 0 1px #666;
                -o-box-shadow: inset 0 0 1px #666;
                -moz-box-shadow: inset 0 0 1px #666;
                -ms-box-shadow: inset 0 0 1px #666;
                box-shadow: inset 0 0 1px #666;
            }
*/
    div.help_widget ul.child > li > a.help {
        display: block;
        text-decoration: none;
    }

    div.help_widget ul.child > li.dw_child_items {
        padding:10px 0;
        font-size:12px;
        border-top: 1px solid #e6e6e6;
    }
        div.help_widget ul.child > li.dw_child_items img {
            margin-top:0px !important;
        }
        div.help_widget ul.child > li.dw_child_items:hover ul {
            opacity: 1;
            visibility: visible;
            position: absolute;
            display:inline-block;
            right:100%; 
        }

        div.help_widget ul.child > li > a {
            display: block;
            text-decoration: none;
            padding: 12px 10px;
            position: relative;
            font-size: 9pt;
            white-space: pre-wrap;
            word-wrap: break-word;
        }

            div.help_widget ul.child > li > a:hover {
                background: #e6e6e6;
            }

                div.help_widget ul.child > li > a:hover:before {
                    content: '';
                    z-index: 2;
                    position: absolute;
                    border: 1px solid white;
                    border-top: 0;
                    border-bottom: 0;
                    border-right: 0;
                    width: 100%;
                    height: 100%;
                    top: 0;
                    left: -1px;
                    opacity: .2;
                }

                div.help_widget ul.child > li > a:hover:after {
                    content: '';
                    z-index: 2;
                    position: absolute;
                    border: 1px solid white;
                    border-top: 0;
                    border-bottom: 0;
                    border-left: 0;
                    width: 100%;
                    height: 100%;
                    top: 0;
                    right: -1px;
                    opacity: .2;
                }

    div.help_widget > ul > li > ul {
        opacity: 0;
        visibility: hidden;
        position: absolute;
    }

    /*div.help_widget > ul > li:hover > ul.child {*/
    div.help_widget > ul > li > ul.child {
        opacity: 1;
        visibility: visible;
        position: absolute;
    }

/*    div.help_widget > ul.child > li:hover > ul.child {
        opacity: 1;
        visibility: visible;
        position: absolute;
    }
*/
    div.help_widget > ul > li > ul {
        position: absolute;
        white-space: nowrap;
        right: 0px;
    }

        div.help_widget > ul > li > ul > li {
            float: none;
            position: relative;
        }

            div.help_widget > ul > li > ul > li > ul {
                opacity: 0;
                visibility: hidden;
                position: absolute;
            }

            div.help_widget > ul > li > ul > li:hover > ul {
                opacity: 1;
                visibility: visible;
                position: absolute;
            }

            div.help_widget > ul > li > ul > li > ul {
                right: 202px;
                top: 1px;
            }

                div.help_widget > ul > li > ul > li > ul > li {
                    float: none;
                }
