/* Header section */

#header {
    height: 70px;
    background-color: black;
    width: 100%;
    position: fixed;
    margin-top: -20px;
    color: white;
    z-index: 1;
}

#headercontent div a {
    text-decoration: none;
    padding: 5px;
    border-right: 2px white solid;
    margin-left: -6px;
} 

#headercontent div a:last-child {
    border-right: 0px;
} 

#headercontent div a:hover {
    background-color: white;
    color: black;
}

#headercontent {
    max-width: 1100px;
    min-width: 900px;
    margin: auto;
    padding: 10px 20px 0 20px;
}

#headercontent div {
    display: inline-block;
    margin-top: 25px;
}

/* End Header */