/* html */
html {
    width: 100%;
    margin: 0px;
    line-height: 150%;
    color:#663300;
    background-color: #CC9900;
    font-family:"Times New Roman";
    font-size: 17px;
}

/* Header */
div.header {
    padding: 0.5em;
    color: #CC9900;
    background-color: #663300;
    clear: left;

    position: fixed;
    z-index: 101;
    top: 0;
    left: 0;
    width: 100%;

}
/* Navigation bar */
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: black;

    position: fixed;
    z-index: 102;
    top: 80px;
    left: 0px;
    width: 100%;
}

li {
    float: left;
}

li a {
    display: block;
    color: white;
    text-align: center;
    padding: 5px 15px;
    text-decoration: none;
}

li a:hover:not(.active) {
    background-color: gray;
}

.active {
    background-color: #663300;
}

/* content */
div.content {
    margin-top: 100px;
    overflow: hidden;
    font-size: 20px;
}

/* Footer */
div.footer {
    padding: 0.5em;
    color: #CC9966;
    background-color: #663300;
    clear: left;

    position: fixed;
    z-index: 100;
    bottom: 0;
    left: 0;
    width: 100%;

}

/* Container */
div.container
{
}

/* -----------------------------------------------------------------------*/

