@charset "utf-8";
* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}
.container {
    max-width: 1200px;
    padding: 0 30px;
    margin-left: auto;
    margin-right: auto;
}
.header {
    height: 56px;
    width: 100%;
    box-shadow: 0 0 3px black;
    background-color: white;
    position: fixed;
    top: 0;
}
.header-left {
    float: left;
}
.header-right {
    float: right;
}
.clear {
    clear: both;
}
.header-logo {
    height: 40px;
    margin-top: 8px;
}
.header-right a {
    line-height: 56px;
    color: black;
    margin-left: 5px;
    font-size: 16px;
    padding: 16px 5px;
}
.header-right a:hover {
    background-color: palegoldenrod;
    transition: background-color 0.5s;
}
.footer {
    height: 30px;
    background-image: url(images/top.JPG);
    background-position: bottom;
    color: white;
    padding-top: 0px;
    margin-top: 20px;
}
.footer-left {
    float: left;
}
.footer-right {
    float: right;
    padding-top: 5px;
}
.footer-left p {
    margin-bottom: 18px;
}