/** fonts */
@font-face {
    font-family: "Arial";
    font-weight: normal;
    src: url("f/arial/ARIAL.TTF");
}
@font-face {
    font-family: "Arial";
    font-weight: bold;
    src: url("f/arial/ARIALBD.TTF");
}

/** body */
body {
    margin: 0px;
}

/** header */
header h1 {
    font-family: "Arial";
    font-weight: bold;
    overflow: hidden;
    white-space: nowrap;
    text-decoration: none;
    text-align: left;
    margin-left: 10px;
    margin-right: 10px;
}

/** nav */
nav {
    border-top: 2px solid #ff8c00;
    border-bottom: 2px solid #ff8c00;
    margin-bottom: 28px;
}

nav ul {
    list-style-type: none;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

nav a {
    font-family: "Arial";
    font-weight: bold;
    font-size: 13px;
    color: #111111;
    padding: 12px;
    display: block;
    align-items: center;
    text-align: center;
    line-height: 18px;
    text-decoration: none;
    text-transform: uppercase;
    user-select: none;
}

nav a:hover {
    background-color: #ffd078;
}
nav a#active {
    background-color: #ff8c00;
    color: #ffffff;
}

nav li {
    float: left;
}

/** layout */
#container {
    margin: 0 auto;
    padding: 2px;
    width: 726px;
    position: relative;
}

/** content */
main {
    margin-left: 12px;
    margin-right: 12px;
}

/** hyperlinks */
main a {
    text-decoration: none;
}

main a:hover {
    text-decoration: underline;
}
