body {
    height: 100%;
    margin: 0;
    padding: 0;

    background: #E87642;
}

html {
    height: 100%;
}

a {
    cursor: pointer;
}

.error {
    color: #FF0000;
}

#wrap {
    min-height: 100%;
    width: 980px;
    margin: auto;
    margin-top: 0;
    position: relative;

    background: #FFE79B;
    border-left: 1px solid #942F2A;
    border-right: 1px solid #942F2A;
    box-shadow: 0 0 300px 100px rgba(0, 0, 0, 0.3);
}

#header {
    min-height: 200px;
    padding: 0 20px;
    margin-bottom: 25px;
    position: relative;
}

#header h1 {
    position: absolute;
    top: 0;
    right: 25px;
    min-width: 650px;

    text-align: center;
}

#nav {
    padding: 0;
    margin: 0;
    width: 200px;
}

#nav ul {
    padding: 0;
    margin: 0;
}

#nav li {
    background: #E87742;
    list-style: none;
    text-align: center;
}

#nav li:last-child {
    -webkit-border-radius: 0 0 8px 8px;
    border-radius: 0 0 8px 8px;
}

#nav li:hover {
    background: #C85722;
}

#nav li a {
    display: block;
    height: 20px;
    padding: 7px 8px;

    color: #FFF;
    font-weight: bold;
    text-decoration: none;
}

#content {
    padding: 5px 20px 50px;
}

#footer {
    position: absolute;
    bottom: 0;
    height: 30px;
    line-height: 30px;
    width: 100%;

    background: #333;
    color: #666;
    text-align: center;
}

#footer a {
    margin: 0 5px;

    color: #999;
    text-decoration: none;
}

#footer a.disguised {
    color: #666;
}

#footer a:hover, #footer a.disguised:hover {
    color: #EEE;
}