
/* The navigation bar */
.navbar {
    overflow: hidden;
    background-color: #333;
    position: fixed; /* Set the navbar to fixed position */
    top: 0; /* Position the navbar at the top of the page */
    width: 100%; /* Full width */
    height: 70;
    z-index: 10;
}

/* Links inside the navbar */
.navbar a {
    float: left;
    display: block;
    text-align: center;
    text-decoration: none;
    margin: 5;
}

.navbar a.mainlink {
    font-style: italic;
    color: yellow;
    padding: 6 6 6 6;
}

.navbar a.sectionlink {
    font-style: normal;
    color: aqua;
    padding: 6 20 6 20;
}

.navbar a.activelink {
    font-style: normal;
    color: white;
    padding: 6 20 6 20;
}


/* Change background on mouse-over */
.navbar a:hover {
    background: #ddd;
    color: black;
}


body {
    margin: 0 auto;
    font-family: sans-serif;
    font-size: 0.9em;
    line-height: 1.5;
}

/* Main content */
.content {
    position: absolute;
    top: 70;
    left: 0;
    padding: 10;
    background-color: #ffffe0;
}

.goto {
    z-index: 1;
}

.anchor {
    padding-top: 75px;
    z-index: 0;
}

img {
    float: right;
    margin: 10px;
}

table {
    margin-left: 50px;
}

.infobox {
    float: left;
    margin: 5px;
    padding-top: 1px;
    padding-bottom: 1px;
    padding-left: 20px;
    padding-right: 20px;
    background-color:plum;
    border-style: solid;
    border-width: medium;
    border-color: black;
    
}