.dropbtn {
    background: none;
    color : #999;
    font-size: 100%;
    font-weight: normal;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.dropbtn:hover {
    color: #fff;
}

.dropdown {
    height: 30px;
    margin-left: 20px;
    float: left;
    margin-top: -40px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #777;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.dropdown-content a {
/*    color: #ffcc00; */
    color: #fff;
    padding: 10px 12px;
    text-decoration: none;
    font-weight: bold;
    display: block;
}

.dropdown-content a:hover {background-color: #999}

.dropdown:hover .dropdown-content {

    display: block;
}

.dropdown:hover .dropbtn {
    background: none;
}
