/* Style The Dropdown Button */
.dropbtn {
    COLOR:#5A595A;
    FONT-SIZE:7.0pt;
    FONT-FAMILY:'Verdana';
    TEXT-DECORATION: none;
    border: none;
    cursor: pointer;
    height: 12px;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    border: none;
    display: inline;
    float: right;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    margin-top: -14px;
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 280px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

/* Links inside the dropdown */
.dropdown-content a {
    COLOR:#5A595A;
    FONT-SIZE:7.0pt;
    FONT-FAMILY:'Verdana';
    TEXT-DECORATION: none;
    text-align: left;
    padding: 7px 7px;
    text-decoration: none;
    font-weight: bold;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1}

/* 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 {
    color: #E70408;
}

.showmenu { display: block; }