﻿.app_header {
    flex: 0 1 auto;
    background-color: #1d1d1d;
    color: white;
    line-height: 1.8em;
    font-size: 1.2em;
    display: flex;
    flex-direction: row;
    width: 100%;
}

.app_header_fill {
    background-color: #1d1d1d;
    flex: 1;
    font-size: 0.7em;
    line-height: 2.5714em;
    display: flex;
    flex-direction: row;
    text-transform: uppercase;
}


.app_header2 {
    background-color: #1d1d1d;
    color: white;
    line-height: 1.8em;
    font-size: 1.2em;
    width: 100%;
    position: fixed;
    display: flex;
    z-index: 2;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 34px;
    right: 0px
}





/*ul {
    text-align: left;
    display: inline;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

nav ul ul {
    display: none;
    margin: 0;
    padding: 0;
}

nav ul li:hover > ul {
    display: block;
}

nav ul {
    list-style: none;
    position: relative;
    display: block;
    list-style-type: none;
    z-index: 100;
}

    nav ul:after {
        content: "";
        clear: both;
        display: block;
    }

    nav ul li {
        float: left;
    }

        nav ul li:hover {
            background: #ab0000;
        }

            nav ul li:hover span {
                color: #fff;
            }

        nav ul li span {
            color: #fff;
            display: block;
            padding: 0px 15px;
            text-decoration: none;
            text-transform: uppercase;
        }

    nav ul ul {
        background: #292929;
        border-radius: 0px;
        padding: 0;
        position: absolute;
        top: 100%;
    }

        nav ul ul li {
            border-bottom: 1px solid #575F6A;
            float: none;
            min-width: 180px;
            position: relative;
        }

            nav ul ul li span {
                padding: 0px 15px;
                color: #fff;
                text-align: left;
            }

                nav ul ul li span:hover {
                    background: #ab0000;
                }

        nav ul ul ul {
            position: absolute;
            left: 100%;
            top: 0;
        }*/









/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    border: none;
    cursor: pointer;
    display: inline-block;
    padding: 0 10px;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

    /* Links inside the dropdown */
    .dropdown-content span {
        text-decoration: none;
        display: block;
        padding: 0 10px;
        cursor: pointer;
        background-color: #292929;
        border-bottom: 1px solid #575F6A;
    }

        /* Change color of dropdown links on hover */
        .dropdown-content span:hover {
            background-color: #ab0000;
        }

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    background-color: #0b61a9;
}




































