html,body {
    background-color: white;
    font-family: Lato, sans-serif;
    text-align: center;
    color: black;
}
.header {
    margin-bottom: 3px;
    height: 40px;
    font-size: 1.25rem;
    background-color: #8CC840;
}
.header-title {
    background-color: transparent;
    color: white;
    float: left;
    font-size: 1.8rem;
    vertical-align: middle;
    padding-left: 15px;
    padding-top: 6px;
}
.header-logo {
    background-color: transparent;
    background: white;
    float: right;
    height: 40px;
    vertical-align: middle;
}
.mainbody {
    min-height: 380px;
}
.container {
    display: grid;
    grid-auto-flow: row;
    grid-template-rows: max-content 1fr;
    grid-auto-rows: max-content;
    min-height: calc(100vh - 32px);
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}
.footer {
    clear: both;
    border: none;
    border-top: 1px solid black;
    font-weight: bold;
    line-height: 16px;
    height: 20px;
    padding-top: 2px;
    margin-top: 10px;
    color: black;
}

input {
    background-color: white;
    -moz-border-radius: 0px 0px 0px 0px;
    -webkit-border-radius: 0px 0px 0px 0px;
    border-radius: 0px 0px 0px 0px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid black;
    height: 16px;
    text-align: left;
    color: black;
}
input:disabled {
    background-color: #F5F5F5;
    border: 1px solid #DBDBDB;
    color: black;
}
input:focus {
    outline: 0 none;
}

.button {
    min-width: 8rem;
    width: fit-content;
    padding-left: 1rem;
    padding-right: 1rem;
    text-align: center;
    background-color: #F5F5F5;
}
.button:enabled:hover  {
    background-color: #DBDBDB;
}
.button:focus {
    outline: 0;
}

select {
    background-color: white;
    -moz-border-radius: 0px 0px 0px 0px;
    -webkit-border-radius: 0px 0px 0px 0px;
    border-radius: 0px 0px 0px 0px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-padding-end: 20px;
    -moz-padding-end: 20px;
    -webkit-padding-start: 2px;
    -moz-padding-start: 2px;
    background-image: url(../img/select_arrow_up_and_down.png);
    background-position: center right;
    background-repeat: no-repeat;
    border: 1px solid black;
    height: 20px;
    text-align: left;
    color: black;
}

select[size] {
    background-color: white;
    -moz-border-radius: 0px 0px 0px 0px;
    -webkit-border-radius: 0px 0px 0px 0px;
    border-radius: 0px 0px 0px 0px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-padding-end: 2px;
    -moz-padding-end: 2px;
    -webkit-padding-start: 2px;
    -moz-padding-start: 2px;
    background-image: initial;
    background-position: initial;
    background-repeat: initial;
    border: 1px solid black;
    text-align: left;
    color: black;
}

input[type="radio"] {
    display: none;
}
input[type="radio"] + span {
    cursor: pointer;
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 3px;
    margin-right: 3px;
    vertical-align: middle;
    background-image: url(/platform/img/RadioButton_active.png);
    background-repeat: no-repeat;
    background-size: cover;
}
input[type="radio"]:checked + span {
    cursor: pointer;
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 3px;
    margin-right: 3px;
    vertical-align: middle;
    background-image: url(/platform/img/RadioButton_active_selected.png);
    background-repeat: no-repeat;
    background-size: cover;
}
input[type="radio"]:disabled + span {
    cursor: default;
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 3px;
    margin-right: 3px;
    vertical-align: middle;
    background-image: url(/platform/img/RadioButton_inactive.png);
    background-repeat: no-repeat;
    background-size: cover;
}
input[type="radio"]:checked:disabled + span {
    cursor: default;
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 3px;
    margin-right: 3px;
    vertical-align: middle;
    background-image: url(/platform/img/RadioButton_inactive_selected.png);
    background-repeat: no-repeat;
    background-size: cover;
}

input[type="checkbox"] {
    display: none;
}
input[type="checkbox"] + span {
    cursor: pointer;
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 3px;
    margin-right: 3px;
    vertical-align: middle;
    background-image: url(/platform/img/CheckBox_active.png);
    background-repeat: no-repeat;
    background-size: cover;
}
input[type="checkbox"]:checked + span {
    cursor: pointer;
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 3px;
    margin-right: 3px;
    vertical-align: middle;
    background-image: url(/platform/img/CheckBox_active_selected.png);
    background-repeat: no-repeat;
    background-size: cover;
}
input[type="checkbox"]:disabled + span {
    cursor: default;
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 3px;
    margin-right: 3px;
    vertical-align: middle;
    background-image: url(/platform/img/CheckBox_inactive.png);
    background-repeat: no-repeat;
    background-size: cover;
}
input[type="checkbox"]:checked:disabled + span {
    cursor: default;
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 3px;
    margin-right: 3px;
    vertical-align: middle;
    background-image: url(/platform/img/CheckBox_inactive_selected.png);
    background-repeat: no-repeat;
    background-size: cover;
}

a {
    color: #0096D6;
}

.ui-corner-all {
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
}

.wwFormTable {
    border: 0px;
    width: 1100px;
}