ul.nav {
    list-style-type: none;
    overflow: hidden;
    /*background-color: #333;*/
    background:rgba(0, 0, 0, 0.5);
    position: absolute;
    margin:0;
    padding:0;
    margin-bottom: 1em;
}

ul.nav li {
    float: left;
    border-right: 1px solid #bbb;
    display:inline-block;
    /*    float: left;*/
    /*    margin-right: 1px;*/
}

ul.nav li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

ul.nav li:last-child {
    border-right: none;
}

/* Change the link color to #111 (black) on hover */
ul.nav li a:hover {
    background-color: #111;
}
.menu-icon {
    display: none;
}

@media screen and (max-width: 412px) {
    /*Make dropdown links appear inline*/
    ul.nav {
       /* position: static;*/
        position: relative;
       /* display: block;*/
       /* width: 95%;
        margin-left: 5%;*/
       /* margin-right: auto;*/
    }
    /*Create vertical spacing*/
    li.nav {
        margin-bottom: 1px;
        text-align: center;
    }
    /*Make all menu links full width*/
    ul.nav li, li a {
        width: 100%;
    }

    .menu-icon {
        display: block;
    }

}

.activepage {background-color: #04AA6D;}
/*Style 'show menu' label button and hide it by default*/
