/* Minimal W3 subset for this site */
html {
    box-sizing: border-box;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

*, *::before, *::after {
    box-sizing: inherit;
}

body {
    margin: 0;
    font-family: Verdana, sans-serif;
    font-size: 15px;
    line-height: 1.5;
}

header,
footer,
nav,
section {
    display: block;
}

a {
    color: inherit;
    background-color: transparent;
}

a:active,
a:hover {
    outline-width: 0;
}

img {
    border-style: none;
    vertical-align: middle;
}

button,
textarea {
    font: inherit;
    margin: 0;
}

button {
    overflow: visible;
    text-transform: none;
    -webkit-appearance: button;
}

button::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring {
    outline: 1px dotted ButtonText;
}

textarea {
    overflow: auto;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 24px;
}

h1,
h2,
h3 {
    margin: 10px 0;
    font-weight: 400;
}

.w3-sidebar {
    position: fixed !important;
    z-index: 1;
    width: 200px;
    height: 100%;
    overflow: auto;
    background-color: #fff;
}

.w3-main {
    transition: margin-left 0.4s;
}

.w3-top {
    position: fixed;
    top: 0;
    z-index: 1;
    width: 100%;
}

.w3-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.w3-display-topleft {
    position: absolute;
    top: 0;
    left: 0;
}

.w3-container::before,
.w3-container::after {
    content: "";
    display: table;
    clear: both;
}

.w3-container {
    padding: 0.01em 16px;
}

.w3-button {
    display: inline-block;
    overflow: hidden;
    border: none;
    padding: 8px 16px;
    color: inherit;
    background-color: inherit;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    white-space: nowrap;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.w3-button:hover {
    color: #000 !important;
    background-color: #ccc !important;
}

.w3-bar-block .w3-bar-item {
    display: block;
    width: 100%;
    float: none;
    outline: 0;
    border: none;
    padding: 8px 16px;
    text-align: left;
    white-space: normal;
}

.w3-large {
    font-size: 18px !important;
}

.w3-xlarge {
    font-size: 24px !important;
}

.w3-xxxlarge {
    font-size: 48px !important;
}

.w3-jumbo {
    font-size: 64px !important;
}

.w3-margin-right {
    margin-right: 16px !important;
}

.w3-padding {
    padding: 8px 16px !important;
}

.w3-padding-32 {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
}

.w3-right {
    float: right !important;
}

.w3-red {
    color: #fff !important;
    background-color: #f44336 !important;
}

.w3-light-grey {
    color: #000 !important;
    background-color: #f1f1f1 !important;
}

.w3-hover-white:hover {
    color: #000 !important;
    background-color: #fff !important;
}

.w3-text-red {
    color: #f44336 !important;
}

@media (min-width: 993px) {
    .w3-hide-large {
        display: none !important;
    }

    .w3-sidebar.w3-collapse {
        display: block !important;
    }
}

@media (max-width: 992px) {
    .w3-sidebar.w3-collapse {
        display: none;
    }

    .w3-main {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
}
