* {
    box-sizing: border-box;
}

html {
    margin: 0;
    height: 100%;
    background-color: #882244;
    background: linear-gradient(180deg, rgba(2,0,36,1) 0%, rgba(136,34,68,1) 0%, rgba(255,170,204,1) 100%);
    background-attachment: fixed;
}

body {
    color: #ffaacc;
    text-align: center;
    font-family: Verdana;
    font-size: 11px;
    line-height: 16px;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
}

nav {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

nav a, nav a:visited {
    font-weight: bold;
    padding: 5px 15px;
    color: #ffaacc;
    transition: 0.5s;
}

nav span {
    vertical-align: middle;
    padding: 5px 15px;
}

nav a:hover {
    color: #ffccee;
    background-color: #660022;
}

nav a.active {
    color: #ffccee;
    text-decoration: none;
    background-color: #660022;
}

main {
    margin: 20px auto;
    padding: 10px 20px;
    text-align: left;
    background-color: #ffaacc;
    color: #882244;
}

main a, main a:visited {
    color: #660022;
}

main div.leftcol {
    padding: 0px 10px 10px 0px;
    vertical-align: top;
    width: 100px;
    display: inline-block;
    font-weight: bold;
}

main div.rightcol {
    padding: 0px 10px 10px 0px;
    vertical-align: top;
    width: auto;
    display: inline-block;
}

@media (min-width: 800px) {
    main {
        width: 800px;
    }
    main div.rightcol {
        max-width: 656px;
    }
    nav {
        height: 30px;
    }
}

@media (max-width: 799.9px) {
    main {
        width: 100%;
    }
    main div.rightcol {
        width: auto;
        padding-right: 0;
    }
    nav {
        height: 60px;
    }
    .computeronly {
        display: none;
    }
}

img.logo {
    width: 100%;
    max-width: 600px;
}

main textarea {
    width: 400px;
}

main textarea.narrow {
    width: 200px;
}

main textarea.wide {
    width: 600px;
}

table th, table td {
    padding: 0px 10px 10px 0px;
    vertical-align: top;
}

table td.width200 {
    width: 200px;
}

table th {
    width: 80px;
}

table td img, div.rightcol img {
    width: 100%;
    max-width: 400px;
}

textarea.long {
    height: 120px;
}

textarea.short {
    height: 80px;
}

input, select, textarea {
    color: #440022;
    border-bottom: 1px solid #440022;
    border-right: 1px solid #440022;
    border-top: 1px solid #882244;
    border-left: 1px solid #882244;
    font-family: Verdana;
    font-size: 11px;
}

input:disabled, select:disabled {
    background-color: #eeccdd;
    color: #886677;
    border-bottom: 1px solid #886677;
    border-right: 1px solid #886677;
    border-top: 1px solid #aa8899;
    border-left: 1px solid #aa8899;
}

select option:disabled {
    background-color: #ddd;
    color: #888;
}

input[type="button"], input[type="submit"], input[type="reset"], input::file-selector-button {
    background-color: #ffccee;
    color: #440022;
    border-radius: 4px;
    border-bottom: 2px solid #440022;
    border-right: 2px solid #440022;
    border-top: 2px solid #882244;
    border-left: 2px solid #882244;
    font-family: Verdana;
    font-weight: bold;
    font-size: 12px;
    padding: 2px 8px;
}

input[type="button"]:disabled, input[type="submit"]:disabled, input[type="reset"]:disabled {
    background-color: #eeccdd;
    color: #886677;
    border-bottom: 2px solid #886677;
    border-right: 2px solid #886677;
    border-top: 2px solid #aa8899;
    border-left: 2px solid #aa8899;
}

input[type="file"] {
    border: none;
}

hr {
    border-top: 1px solid #ffccee;
    border-left: 1px solid #ffccee;
    border-bottom: 1px solid #882244;
    border-right: 1px solid #882244;
}

.left {
    float: left;
}

.right {
    float: right;
}

.hide {
    display: none;
}
