:root {
    --content-width: 1200px;

    --side-menu-width: 190px;
    --side-menu-section-width: 185px;
}

body {
    margin: 0;
    padding: 0;
}

#container {
    width: var(--content-width);
    min-height: 500px;

    margin: 0 auto;

    border: 1px solid;

    position: relative;
}

#topMenu {
    width: 100%;
    height: 40px;
    margin: 0 auto;
}
#topMenu .leftMenu {
    max-width: 700px;

    margin: 0;
    padding: 0;
    
    left: 15px;
    position: absolute;
}
#topMenu .rightMenu {
    margin: 0;
    padding: 0;

    right: 15px;
    position: absolute;
}
#topMenu li {
    list-style: none;
    display: inline-block;

    margin-right: 3px;
    border: 2px solid;
    position: relative;
}
#topMenu a {
    display: inline-block;
    width: 90px;
    padding: 5px 0;

    text-align: center;
    text-decoration: none;
    text-transform: uppercase;

    cursor: default;
    position: relative;
}

#systemMessage {
    width: 100%;
    text-align: center;
}
#systemMessage p {
    margin: 0;
    padding: 0;
}

#sideMenu {
    width: var(--side-menu-width);

    left: 15px;
    top: 75px;

    position: absolute;
}
#sideMenu .menuSection {
    width: var(--side-menu-section-width);
    margin-bottom: 15px;

    border: 2px solid;
    border-left: 0;
}
#sideMenu .menuSection .header {
    text-align: center;

    height: 24px;
    line-height: 24px;
    font-size: 18px;
}
#sideMenu .menuSection ul {
    padding: 0;
    margin: 0;
}
#sideMenu .menuSection li {
    margin: 0;
    padding: 0;

    border-top: 1px solid;

    list-style: none;
    display: block;
}
#sideMenu .menuSection a {
    width: 100%;
    height: 24px;

    line-height: 24px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;

    cursor: default;
    display: inline-block;
}

#sideMenu .loginMenu {
    width: var(--side-menu-section-width);
    margin-bottom: 15px;

    border: 2px solid;
    border-left: none;

    text-align: center;
}
#sideMenu .loginMenu .header {
    text-align: center;

    height: 24px;
    line-height: 24px;
    font-size: 18px;
}
#sideMenu .loginMenu input[type=submit] {
    margin: 3px 0;
    padding: 5px;

    font-weight: bold;
    border: 1px solid;
    border-radius: 5px;
}
#sideMenu .loginMenu a {
    margin-bottom: 5px;

    text-decoration: none;

    display: block;
    cursor: default;
}

#sideMenu #systemTime {
    width: var(--side-menu-section-width);
    text-align: center;
}

.content {
    width: 950px;
    min-height: 75px;

    margin: 38px 0 10px 225px;
}

.pageContent {
    width: 925px;
    margin: 0 auto;

    border: 1px solid;
}
.pageContent .header {
    width: 100%;
    height: 24px;

    border-bottom: 1px solid;

    line-height: 24px;
    font-size: 18px;
    text-align: center;
    text-transform: uppercase;
}
.pageContent p {
    margin: 5px 0 5px 8px;
    padding: 0;
}
.pageContent.small {
    width: 800px;
}

.pageContent .staffMenu {
    width: 90%;
    margin: 8px auto;

    border: 1px solid;
}
.pageContent .staffMenu .header {
    width: 100%;

    text-align: center;
    text-transform: uppercase;

    border-bottom: 1px solid;
}
.pageContent .staffMenu a {
    width: 75px;
    max-height: 75px;

    margin: 6px 10px;
    padding: 8px;

    text-align: center;
    vertical-align: middle;

    border-radius: 8px;
    border: 1px solid;

    overflow: hidden;
    display: inline-block;
}

.description {
    width: 600px;
    margin: 0 auto;
}
.description .header {
    width: 100%;
    height: 24px;

    text-align: center;
    line-height: 24px;
    font-size: 18px;

    font-weight: bold;
}
.description .content {
    padding: 8px;
}

#footer {
    width: var(--content-width);
    margin: 0 auto;

    border: 1px solid;
    border-top: none;
}
#footer p {
    padding: 3px;
    margin: 0 0 0 8px;
}

a, a:visited {
    text-decoration: none;
    cursor: default;
}
a:hover {
    text-decoration: underline;
}

input[type='submit'].redButton, button.redButton {
    margin: 3px 0;
    padding: 5px;

    font-weight: bold;
    border: 1px solid;
    border-radius: 5px;
}

/** TOGGLE SWITCH **/
.switch {
    width: 34px;
    height: 19px;

    display: inline-block;
    position: relative;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    -webkit-transition: .4s;
    transition: .4s;

    cursor: default;
    position: absolute;
}

.slider:before {
    height: 17px;
    width: 17px;
    left: 1px;
    bottom: 1px;

    -webkit-transition: .4s;
    transition: .4s;
    content: "";

    position: absolute;
}

input:checked + .slider:before {
    -webkit-transform: translateX(16px);
    -ms-transform: translateX(16px);
    transform: translateX(16px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}