

body {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
}

a:link {
    color: #565656;
    text-decoration: none;
    font-weight: bold;
}


a:visited {
    color: #565656;
    text-decoration: none;
}

a:focus {
    color: #019638;
    text-decoration: none;
}

a:hover {
    color: #019638;
    text-decoration: none;
}
a:active {
    color: #565656;
    text-decoration: none;
}

/* Style the navigation menu */
.topnav {
    overflow: hidden;
    background-color: white;
    position: relative;
}

    /* Hide the links inside the navigation menu (except for logo/home) */
    .topnav #myLinks {
        display: none;
    }

    /* Style navigation menu links */
    .topnav a {
        color: black;
        padding: 14px 16px;
        text-decoration: none;
        display: block;
    }

        /* Style the hamburger menu */
        .topnav a.icon {
            background: white;
            display: block;
            position: absolute;
            right: 0;
            top: 0;
        }

        /* Add a grey background color on mouse-over */
        .topnav a:hover {
            background-color:white;
            color: black;
        }

/* Style the active link (or home/logo) */
.active {
    background-color: white;
    color: black;
}
