:root {
    --blu: #00f;
}

body {
    font-family: "Work Sans", sans-serif;
}

a {
    color: var(--blu);
}

img {
    max-width: 100%;
}

#menu {
    border-top: 1px solid #b2b2b2;
    border-bottom: 1px solid #b2b2b2;
}

#menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
}

#menu li {
    padding: 8px 0;

}

#menu li.selected {
    background-color: var(--blu);
    color: white;
}

#menu li strong {
    font-weight: 500;
}

#menu a {
    display: block;
    padding: 2px 20px;
    text-decoration: none;
    color: inherit;
    border-right: 1px solid #b2b2b2;
}

#breadcrumbs {
    border-bottom: 1px solid #b2b2b2;
    font-size: 11px;
    margin-bottom: 20px;
    padding: 15px 0 15px 20px;
    text-transform: lowercase;
}


#breadcrumbs ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#breadcrumbs li {
    display: inline;
}

#breadcrumbs a {
    color: #333;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-style: dotted;
    text-decoration-thickness: 1px;
    text-decoration-color: #b2b2b2;
}

@media (max-width: 992px) {
    #menu a {
        border-right: none;
    }
}

#header {
    padding: 20px;
}

#header .logo img {
    height: 80px;
}


#footer {
    margin-top: 40px;
    border-top: 1px solid #b2b2b2;
    padding-top: 20px;
}

#footer .menu {
    list-style: none;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
}

#footer .menu li {
    margin-bottom: 10px;
}

#footer .menu a {
    color: #333;
}

#footer .menu a:hover, #footer .menu a:focus {
    text-decoration: none;
}

#submenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#submenu li {
    border-top: 1px solid #b2b2b2;
    position: relative;
}

#submenu > ul > li:last-child {
    border-bottom: 1px solid #b2b2b2;
}

#submenu li a {
    display: block;
    padding: 5px 40px 5px 15px;
    text-decoration: none;
    color: #333;
    line-height: 1.3;
}

#submenu button.toggle {
    background-color: transparent;
    border: none;
    color: inherit;
    padding: 5px 15px;
    position: absolute;
    top: 0;
    right: 0;
    transition: transform .3s;
}

#submenu button.toggle[aria-expanded="true"] {
    transform: scaleY(-1);
}

#submenu li.selected button.toggle {
    color: white;
}

#submenu li a:hover {
    background-color: #f0f0f0;
}

#submenu li a:hover {
    font-weight: bold;
}

#submenu >ul > li.selected > a {
    background-color: var(--blu);
    color: white;
}

#submenu ul ul {
    font-size: .8em;
}

#submenu li li {
    position: relative;
}

#submenu li li a {
    padding-left: 25px;
}

#submenu li li a::before {
    content: "- ";
    color: #666;
    position: absolute;
    left: 10px;

}

#submenu li li.selected a {
    font-weight: bold;
}

h1 {
    color: var(--blu);
    font-size: 32px;
}

#upload-form {
    position: relative;
}

#upload-form button {
    display: none;
}

#upload-form input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
}

#upload-form label {
    cursor: pointer;
    border: 1px dashed #b2b2b2;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
    display: block;
    background-color: #fff;
    transition: all .3s;
}

#upload-form label:hover {
    background-color: green;
    color: #fff;
}

.files {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.files li {
    border-top: 1px solid #b2b2b2;
    padding: 5px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.files li .size {
    font-size: 0.8em;
    color: #666;
}

.files li:last-child {
    border-bottom: 1px solid #b2b2b2;
}

.files li a {
    text-decoration: none;
    color: #333;
}

.files a.disabled {
    color: #999;
}

.files li a:hover {
    font-weight: bold;
}

#homepage .intro {
    margin: 40px 0;
    background-color: #f0f0f0;
    padding: 20px;
    font-size: 1.2em;
}

#homepage .section {
    margin: 25px 0;
}


#homepage .section h2 {
    text-transform: uppercase;
    font-size: 24px;
    margin-bottom: 0;
}

#homepage .hero {
    width: 100%;
    margin: 20px 0;
}

.pagetext {
    font-size: 18px;
}

.pagetext h2 {
    font-size: 26px;
    margin: 40px 0 0;
    border-bottom: 1px solid #b2b2b2;
}

.pagetext h3 {
    font-size: 22px;
    margin: 20px 0 0;
}

.pagetext ul {
    list-style-type: square;
}

.pagetext p:empty {
    height: 1em;
}