html, body {
  margin: 0;
  padding: 0;
  background: #f1f3f4;
  color: #003939;
}

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

.questrial {
  font-family: "Questrial", sans-serif;
  letter-spacing: -1px;
  line-height: 110%;
}

h1 {
  width: 100%;
}

h2 {
  padding: 0;
  margin: 0;
}

h2 span {
  font-size: 1.25rem;
}

.top-nav {
  height: 52px;
  background: #003939;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  box-sizing: border-box;
  font-family: "Questrial", sans-serif;
  letter-spacing: -1px;
  line-height: 110%;
  font-size: 2rem;
}

.top-nav__title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0;
}

.top-nav__links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-nav a,
.top-nav button {
  color: #fff;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
}

.top-nav a:hover,
.top-nav button:hover {
  text-decoration: underline;
}

.doc-shell {
  padding: 40px 16px;
}

.doc-page {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  max-width: 816px;
  margin: 0 auto;
  background: #fffdf5;
  box-shadow: 0 1px 3px rgba(60, 64, 67, 0.3);
  padding: 72px;
  box-sizing: border-box;
}

.doc-page h1,
.doc-page h2,
.doc-page h3,
.doc-page h4,
.doc-page h5,
.doc-page h6,
.doc-page p,
.doc-page ul,
.doc-page ol {
  font-family: "Open Sans", sans-serif;
}

.doc-page h1 {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 10px;
}

.doc-page h2 {
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 700;
  margin-top: 0px;
  margin-bottom: 0px;
  padding-bottom: 1rem;
  border-bottom: 1px solid #2c5942;
}

.doc-page h3 {
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 400;
  margin: 2rem 0 1rem;
  font-weight: 700;
  border-bottom: 1px solid #2c5942;
  padding-bottom: 1rem;
  color: #2c5942;
}

.doc-page h4 {
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 2rem;
    color: #2c5942;
}

.doc-page h5 {
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 100;
  margin-top: 1rem;
  margin-bottom: 2rem;
  opacity: 0.8;
}

.doc-page h6 {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
  margin-top: 16px;
  margin-bottom: 4px;
}

.doc-page p,
.doc-page li {
  font-size: 11pt;
  line-height: 1.5;
}

.doc-page p {
  margin-bottom: 10px;
}

.doc-page ul,
.doc-page ol {
  margin-bottom: 10px;
  padding-left: 22px;
}

.doc-page li {
  margin-bottom: 4px;
}

.doc-page a {
  color: #2c5942;
  text-decoration: underline;
}

.doc-page .divider {
  letter-spacing: 0;
}

.doc-page h5 span:nth-of-type(1),
.doc-page h5 span:nth-of-type(3) {
  font-weight: 900;
}

.doc-page table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 10px;
}

.doc-page td,
.doc-page th {
  vertical-align: top;
  padding: 0;
}

.doc-page table p {
  margin-bottom: 0;
}

.doc-page p span:first-of-type,
.doc-page li span:first-of-type {
  font-weight: 600;
}

.doc-page table {
  font-size: 75%;
}

.doc-page table p,
.doc-page table li,
.doc-page table span,
.doc-page table td,
.doc-page table th {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0 1rem 0 0;
    color: #2c5942
}

.doc-page table thead td p span {
  font-weight: 700 !important;
  color: #003939 !important;
}











@media (max-width: 900px) {
  .doc-shell {
    padding: 16px 8px;
  }

  .doc-page {
    padding: 28px 20px;
    overflow-x: hidden;
  }

  .doc-page table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .doc-page table tbody,
  .doc-page table thead,
  .doc-page table tr {
    width: max-content;
  }

  .doc-page table td,
  .doc-page table th {
    min-width: 110px;
  }
}




@media print {
  .top-nav {
    display: none;
  }

  html,
  body {
    background: #fff;
  }

  .doc-shell {
    padding: 0;
  }

  .doc-page {
    max-width: none;
    box-shadow: none;
    padding: 0;
  }
}