/* Style only the top navigation bar (the first UL directly under <body>) */
body > ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
    position: fixed;
    top: 0;
    width: 100%;
    font-family: 'Trebuchet MS', cursive;
    font-size: 18px;
}

/* Nav items in that top UL */
body > ul > li {
    float: left;
}

/* Nav links in that top UL */
body > ul > li > a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

/* Hover state for nav links */
body > ul > li > a:hover {
    background-color: rgb(0,204,255);
}
