html {
    background: url(../graphics/map2.jpeg);
    background-attachment:fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

#header {
    background-color: black;
    color: white;
    height:80px;
    width: 100%;
    position: fixed;
    top: 0px;
}

#body {
    margin-top: 120px;
}

#content {
    margin-top: 120px;
}

#small-logo {
    float: left;
}

#header ul {
    margin-left: 2em;
    float: right;
}

#header li {
    display: inline;
    float: left;
    border: 4px ridge gray;
    padding: 5px;
    text-transform: capitalize;
    margin-right: 1px;
}

#header a {
    display: block;
    width: 120px;
    color: white;
    text-align: center;
    font-weight: bold;
}

#header a:link, a:hover, a:active {
    text-decoration: none;
}

#header li a:hover {
    color: yellow;
}

#header a:visited {
    color: gray;
    text-decoration: none; 
}


