body, html {
    scroll-padding-top: 70px; /* adjust the pixel amount here for your top navigation bar height */
  }

body {
    margin: 0;
    padding: 0;
    font-family: Roboto, sans-serif;
    box-sizing: border-box;
}

table {
    border-collapse: collapse;
}
thead, tbody{
    padding:1rem;

}
th {
    text-align: left;
    border-bottom:1px solid darkgray;
    padding:.5rem 1rem;
}
tbody tr:nth-child(odd) {
    background-color: lightgray;
}
td {
    border:1px solid darkgray;
    padding:.5rem 1rem;
    /* border-right:1px solid darkgray; */
}

.appbar {
    position: sticky;
    left: 0;
    top: 0;
    right: 0;
    background: #002664;
    color: white;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    flex-wrap: wrap;
}
.appbar > div {
    height: 48px;

    display: flex;
    justify-content: space-evenly;

}
.appbar > div:first-child {
    font-size: x-large;
    font-weight: 700;
}

.appbar a {
    line-height: 48px;
    color: white;
    text-decoration: none;
    padding: 0 8px;
}

@media (min-width: 600px) {
    .appbar > div {
        padding: 8px 0;
    }
}

.menu {
    margin-left: auto;
    min-width: 300px
}

.menu a:hover {
    background-color: #000039;
}
.menu a[aria-current] {
    background-color: #000039;
    border-bottom:2px solid #b71c1c
}

.content {
    margin: 0px 16px;
}

.background h1, .background h2 {
    text-align: center;
}
.background h1 {
    padding-top: 10vh;
}
.background {
    color: white;
    margin: -22px -16px 0px -16px;
    min-height: calc(100vh - 63px);
    background-color: #000039;
    background-image: url("/img/homebkgnd.webp");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    text-shadow: 1px 1px 2px #303030, -1px -1px 2px #303030, 2px 2px 13px rgba(0, 0, 0, 0.3);
}
.doc {
    font-family: Verdana, Helvetica, sans-serif ;
    max-width: 1000px;
    padding: 0px 16px;
    margin: auto;
}
.docicon {
    transform:translateY(25%);
}
.addr {
    display:none;
}