* {
    padding: 0;
    margin: 0;
}

#page {
    width: 1080px;
    margin: 0 auto;
    height: auto;
}

#pageblank {
    margin: 10px;
}

#header {
    position: relative;
    height: 152px;
    background-repeat:no-repeat;
    background-position:right;
}

#header #logo {
    position: absolute;
    top: 40px;
    left: 0px;
}

#header #slogan {
    position: absolute;
    top: 100px;
    right: 0px;
    font-family: Georgia, Garamond, Arial, Helvetica, sans-serif;
    font-size: 18px;
    color: #a5a8ab;
}

#environment-info {
    width: 100%;
    margin: 0px 0px 0px 0px;
    padding: 5px 5px 5px 5px;
    background-color: #ffc107;
    color: #ffffff;
    border-bottom: 2px solid #ffffff;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

#launch-warning {
    width: 100%;
    margin: 0px 0px 0px 0px;
    padding: 5px 5px 5px 5px;
    line-height: 18px;
    background-color: #ff0000;
    color: #ffffff;
    border-bottom: 2px solid #ffffff;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

#maintenance-info {
    width: 100%;
    margin: 0px 0px 0px 0px;
    padding: 8px 5px 8px 5px;
    background-color: #d02239;
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

#navigation {
    height: 16px;
}

#tbl {
    clear:both;
    width: 100%;
    padding-top: 20px;
}

#tbl #l {
    float: left;
}

#tbl #r {
    float: right;
    padding-left: 15px;
}

#topics {
    width: 200px;
}

#headline {
    text-align: left;
    font-family: Georgia, Garamond, Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: bold;
    color:#a5a8ab;
    width: 865px;
}

#content {
    text-align: left;
    min-height: 360px;
    font-size: 12px;
    line-height: 1.25em;
    width: 865px;
}

#content ul {
    margin-left: 0px;
}

#footer {
    float: left;
    width: 100%;
    margin:2em 0 2em 0;
    color:#a5a8ab;
    height:40px;
    border-top:1px solid #a5a8ab;
    border-bottom:1px solid #a5a8ab;
}

#footer ul {
    list-style: none;
    line-height: 40px;
}

#footer ul li a {
    color:#a5a8ab;
    text-decoration: none;
}

#footer ul li a:active, #footer ul li a:hover {
    text-decoration: underline;
}

h1,h2,h3,h4 {
    margin-top: 1em;
    margin-bottom: 1em;
}

#headline{
    margin-bottom: 0.75em;
}

.red {
    color: red;
}

.green {
    color: green;
}

#email p {
    margin-bottom: 1em;
}

/* Absolute Center Spinner */
.loading {
    position: fixed;
    z-index: 999;
    height: 2em;
    width: 2em;
    overflow: show;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

/* Transparent Overlay */
.loading:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
    /* hide "loading..." text */
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.loading:not(:required):after {
    content: '';
    display: block;
    font-size: 10px;
    width: 1em;
    height: 1em;
    margin-top: -0.5em;
    -webkit-animation: spinner 1500ms infinite linear;
    -moz-animation: spinner 1500ms infinite linear;
    -ms-animation: spinner 1500ms infinite linear;
    -o-animation: spinner 1500ms infinite linear;
    animation: spinner 1500ms infinite linear;
    border-radius: 0.5em;
    -webkit-box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.5) -1.5em 0 0 0, rgba(0, 0, 0, 0.5) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
    box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) -1.5em 0 0 0, rgba(0, 0, 0, 0.75) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-moz-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-o-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

#debug-stats {
    position: absolute;
    top: 70px;
    left: 10px;
    background-color: aqua;
    padding: 10px;
}
