/* Global variables. */
/* blue */
/* green */
/* blue */
/* orange */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  color: #444;
  background: #fff;
  line-height: 1.3;
  margin: 0;
}

/*
header {
  background: url(/assets/images/header.jpg);
  height: 35vh;
  width: 100vw;
  background-size: cover;
  padding: 0 0.5rem 2rem 0.5rem;
}
*/
header {
  margin: 0 0 1rem 0;
  font-size: clamp(1.8rem, 4vw, 5rem);
  font-weight: bold;
  text-align: center;
  color: #1b75bc;
}

.home-page header {
  background: url(/assets/images/header.jpg);
  background-position: right 50% bottom 60%;
  height: 35vh;
  width: 100%;
  background-size: cover;
  padding: 0 1rem 1rem 1rem;
}

main, aside {
  padding: 0 1rem;
}

.entry-page main {
  margin: 0 auto;
  max-width: 90ch;
}

@media only screen and (min-width: 750px) {
  main, aside {
    padding: 0 2rem;
  }
}
footer {
  margin: 1rem 0 7rem 0;
  padding: 0.1rem 0 0.5rem 0;
  font-size: 0.9rem;
  text-align: center;
}

@media only screen and (min-width: 750px) {
  footer {
    margin: 1rem 0 0 0;
  }
}
/* Format navigation */
nav {
  font-size: 1rem;
  padding: 0 0 0.5rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: fixed;
  bottom: 0;
  background-color: #fff;
  z-index: 100;
}

nav a,
nav a:visited {
  margin: 0.4rem 0.2rem 0.1rem 0;
  line-height: 1.4;
  border-radius: 5px;
  background-color: #1b75bc;
  color: #f9f9f9;
  display: inline-block;
  padding: 0.2rem 0.3rem;
  text-decoration: none;
  transition: 0.3s;
}

nav a:hover {
  background-color: #ed1c24;
  color: #f9f9f9;
}

nav a.current {
  background-color: #0ea14b;
}

nav img.nav-logo {
  margin: 0.4rem 0.4rem 0.2rem 0;
  height: 2rem;
}

/* left side on larger screens */
@media only screen and (min-width: 750px) {
  nav {
    display: block;
    width: 11rem;
    top: 0;
    padding: 0.5rem;
  }
  nav a,
  nav a:visited {
    padding: 0.4rem;
    line-height: 1;
    width: 10rem;
  }
  nav img.nav-logo {
    margin: 0;
    height: auto;
  }
}
/* Grid layout */
nav {
  grid-area: nav;
}

header {
  grid-area: header;
}

main {
  grid-area: main;
}

aside {
  grid-area: aside;
}

footer {
  grid-area: footer;
}

body {
  display: grid;
}

@media only screen and (max-width: 749px) {
  body.no-aside {
    grid-template-columns: 1fr;
    grid-template-areas: "header" "main" "footer" "nav";
  }
}
@media only screen and (min-width: 750px) {
  body.no-aside {
    grid-template-columns: 10rem 1fr;
    grid-template-areas: "nav header" "nav main" "nav footer";
  }
}
@media only screen and (max-width: 749px) {
  body.with-aside {
    grid-template-columns: 1fr;
    grid-template-areas: "header" "main" "aside" "footer" "nav";
  }
}
@media only screen and (min-width: 750px) {
  body.with-aside {
    grid-template-columns: 10rem 1fr;
    grid-template-areas: "nav header" "nav main" "nav aside" "nav footer";
  }
}
@media only screen and (min-width: 1500px) {
  body.with-aside {
    grid-template-columns: 10rem 2fr 1fr;
    grid-template-areas: "nav header header" "nav main aside" "nav footer footer";
  }
}
/* ===========================================
   Responsive iframes and embeds
   wrap iframe in a <div class="">
   =========================================== */
.embed {
  clear: both;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 25px;
  height: 0;
  margin: 0.5em 0 1em 0;
}

.embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.youtube-container {
  max-width: 2000px;
  margin: 0 auto;
}

iframe.youtube {
  aspect-ratio: 16/9;
  width: 100%;
  block-size: auto;
}

.prime-color {
  color: #1b75bc;
}

.second-color {
  color: #0ea14b;
}

.prime-background {
  background-color: rgb(239.04, 245.34, 250.31);
}

.nav-logo {
  object-fit: contain;
}

.summary img.logo {
  object-fit: unset;
  height: unset;
  aspect-ratio: revert;
}

.summary img.map {
  object-fit: unset;
  height: unset;
  aspect-ratio: revert;
}

.titleImagePortrait {
  max-width: 50%;
  margin: 0 0 1rem 1rem;
  float: right;
  clear: right;
}

.titleImageLandscape {
  max-width: 100%;
  margin: 0 0 1rem 0;
}

.titleImageLandscape img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.caption {
  font-size: 0.9em;
  color: rgb(124.1, 124.1, 124.1);
  text-align: center;
}

/* Format the expanding box */
details.explain {
  background: transparent;
  padding: 0;
  margin-top: -0.5rem;
}

details[open].explain {
  padding: 0;
}

summary.explain {
  color: #1b75bc;
  padding: 0;
  font-size: 1rem;
  font-weight: 500;
  list-style-type: none;
}

summary.explain::-webkit-details-marker {
  display: none;
}

details[open] summary.explain {
  margin-bottom: 0.5rem;
  padding: 0;
  list-style: none;
}

.grid-container {
  display: grid;
  grid-gap: 1rem;
}

@media only screen and (min-width: 750px) {
  .grid-container {
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  }
  .large-grid-box {
    grid-column: auto/span 2;
  }
}
@media only screen and (min-width: 820px) {
  .grid-container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
.grid-box {
  padding: 0;
  border-radius: 5px;
  border: solid 1px #ddd;
  display: flex;
  flex-direction: column;
}

.grid-box img {
  max-inline-size: 100%;
  block-size: auto;
  display: block;
  margin: 0 auto;
  max-height: 50vh;
  object-fit: cover;
  aspect-ratio: 1.2/1;
  object-position: top center;
  border-radius: 5px 5px 0 0;
}

.grid-box img.logo {
  object-fit: contain;
}

.grid-box h2, .grid-box h3, .grid-box p, .grid-box .title {
  margin: 0.1rem 1rem 0.4rem 1rem;
}

.grid-box .title {
  font-size: 2em;
  text-align: left;
  line-height: 1;
}

.flex-container {
  display: -webkit-box;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 1rem;
  margin: 0;
}

.flex-container .summary {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -webkit-flex-basis: 280px;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  min-width: 280px;
  max-width: 510px;
  margin: 0;
}

.column-container {
  -webkit-columns: 300px;
  -webkit-column-gap: 1rem;
  -moz-columns: 300px;
  -moz-column-gap: 1rem;
  columns: 300px;
  column-gap: 1rem;
  margin: 1rem 0 0 0;
  clear: both;
}

.column-container .summary {
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
  margin-bottom: 1rem;
}

.column-container figure {
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
  margin-bottom: 1rem;
}

.summary {
  padding: 1rem;
  border-radius: 5px;
  border: solid 1px #ddd;
}

.summary img {
  max-inline-size: 100%;
  block-size: auto;
  display: block;
  margin: 0 auto;
  max-height: 50vh;
  object-fit: cover;
  aspect-ratio: 1.2/1;
  object-position: top center;
  border-radius: 5px 5px 0 0;
}

.socials {
  font-size: 1.1rem;
  margin: 1rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

svg {
  color: #1b75bc;
}

.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}

.name {
  margin-right: 1em;
  font-size: 1.1em;
}

/* ==========================================
Single-colored icons can be modified like so:
.icon-name {
  font-size: 32px;
  color: red;
}
========================================== */
p.meta {
  margin-top: auto;
}

.meta {
  font-size: 0.8rem;
  display: inline;
  color: rgb(124.1, 124.1, 124.1);
}

.right {
  float: right;
}

.center {
  text-align: center;
}

figure.imageText {
  clear: both;
}

figure.imageText img {
  max-inline-size: 50%;
  margin: 0 0 1rem 1rem;
  float: right;
}

figcaption.imageText {
  text-align: start;
  font-size: 1rem;
  color: #444;
}

ul.crumbs {
  list-style: none;
  margin: 0 0 0.5rem 0;
  padding: 0;
}

.crumbs li {
  display: inline;
  margin: 0;
  font-size: 0.8rem;
}

ul.inLine {
  list-style: none;
  margin: 0 0 0.5rem 0;
  padding: 0;
}

.inLine li {
  display: inline;
  margin: 0;
  font-size: 1rem;
}

.button a,
.button a:visited {
  background-color: #1b75bc;
  border-radius: 5px;
  border: none;
  color: #f9f9f9;
  text-decoration: none;
  cursor: pointer;
  line-height: 1.1;
  padding: 0.5rem;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.5rem;
  width: auto;
}

.button a:link {
  text-decoration: none;
}

.button a:hover {
  background-color: #ed1c24;
  color: #f9f9f9;
}

a.external-link {
  background-image: url(/assets/images/icons-16/external-link.png);
  background-image: url(/assets/images/icons-16/external-link.svg);
  background-position: right center;
  background-repeat: no-repeat;
  display: inline;
  padding-right: 20px;
}

.error {
  color: #f00;
}

html {
  /* Set the font globally */
  font-family: -apple-system, BlinkMacSystemFont, "Avenir Next", Avenir, "Nimbus Sans L", Roboto, Noto, "Segoe UI", Arial, Helvetica, "Helvetica Neue", sans-serif;
  scroll-behavior: smooth;
  font-size: calc(0.8rem + 0.27vw);
  font-size: clamp(1rem, 0.7rem + 0.5vw, 1.4rem);
}

p {
  margin: 0.5rem 0 1rem 0;
}

/* Format headers */
h1, h2, h3, h4 {
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 0.5rem 0;
  color: #444;
}

h1 span, h2 span, h3 span {
  display: block;
  font-size: 0.7em;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.3rem;
}

h4 {
  font-size: 1.1rem;
}

/* Reduce header size on mobile */
@media only screen and (max-width: 720px) {
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  h3 {
    font-size: 1.2rem;
  }
  h4 {
    font-size: 1.1rem;
  }
}
/* Format links & buttons */
a,
a:visited {
  color: #1b75bc;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: #ed1c24;
}

p a {
  text-decoration: underline;
}

button,
[role=button],
input[type=submit],
input[type=reset],
input[type=button] {
  border: none;
  background: #1b75bc;
  font-size: 1rem;
  color: #f9f9f9;
  /* zero padding needed for leaflet map code */
  padding: 0;
  margin: 0.5rem 0;
}

input[type=submit] {
  padding: 0.5rem;
}

input[type=range] {
  padding: 0;
}

/* Set the cursor to '?' while hovering over an abbreviation */
abbr {
  cursor: help;
}

button:focus,
button:enabled:hover,
[role=button]:focus,
[role=button]:not([aria-disabled=true]):hover,
input[type=submit]:focus,
input[type=submit]:enabled:hover,
input[type=reset]:focus,
input[type=reset]:enabled:hover,
input[type=button]:focus,
input[type=button]:enabled:hover {
  background-color: #ed1c24;
  color: #f9f9f9;
  cursor: pointer;
}

/* hide honeypot data field */
p #additional {
  display: none;
}

/* Format the expanding box */
details {
  background: rgb(239.04, 245.34, 250.31);
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 1rem;
}

details summary > * {
  display: inline;
}

summary {
  cursor: pointer;
  font-weight: normal;
  color: #1b75bc;
  padding: 0 1rem;
  font-size: 1.3rem;
  font-weight: 500;
}

details[open] {
  padding: 0.6rem 1rem 0.75rem 1rem;
}

details[open] summary {
  margin-bottom: 0.5rem;
  padding: 0;
}

details[open] > *:last-child {
  margin-bottom: 0;
}

/* Format tables */
table {
  border-collapse: collapse;
  width: 100%;
  margin: 1.5rem 0;
}

td,
th {
  border: 1px solid #ddd;
  text-align: left;
  padding: 0.2rem 0.5rem;
}

th {
  background: #1b75bc;
  color: #f9f9f9;
  font-weight: bold;
  position: sticky;
  top: 0;
  z-index: 2;
  line-height: 1;
}

tr:nth-child(even) {
  /* Set every other cell slightly darker. Improves readability. */
  background: rgb(239.04, 245.34, 250.31);
}

table caption {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

ul {
  margin-left: 0;
}

ul li {
  list-style-image: url(/assets/images/icons-16/icon.svg);
  margin: 0 0 0.4em 0;
}

::marker {
  color: #1b75bc;
}

/* Misc body elements */
hr {
  color: #ddd;
  border-top: 1px;
  width: 80%;
  margin: 0.7rem auto;
}

mark {
  padding: 2px 5px;
  border-radius: 4px;
  background: #ffdd33;
}

dt, dt a:link, dt a:visited {
  font-size: 1.1em;
  margin-top: 1rem;
}

dd {
  margin: 0;
}

img,
video,
iframe {
  max-inline-size: 100%;
  block-size: auto;
  border-radius: 5px;
}

figure {
  margin: 1em auto;
}

figure img {
  display: block;
  margin: auto;
}

figcaption {
  font-size: 0.9rem;
  text-align: center;
  color: rgb(124.1, 124.1, 124.1);
  margin-bottom: 1rem;
}

blockquote {
  margin: 2rem 0 2rem 2rem;
  padding: 0.4rem 0.8rem;
  border-left: 0.35rem solid #0ea14b;
  color: #444;
  font-style: italic;
}

blockquote p {
  margin: 0;
}

cite {
  font-size: 0.9rem;
  color: #444;
  font-style: normal;
}

/* Format forms */
textarea,
select,
input {
  font-size: inherit;
  font-family: inherit;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  color: #444;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: none;
  width: 60%;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

/* Add arrow to drop-down */
select {
  background-image: linear-gradient(45deg, transparent 49%, #444 51%), linear-gradient(135deg, #444 51%, transparent 49%);
  background-position: calc(100% - 20px), calc(100% - 15px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

select[multiple] {
  background-image: none !important;
}

/* checkbox and radio button style */
input[type=checkbox],
input[type=radio] {
  vertical-align: bottom;
  position: relative;
}

input[type=radio] {
  border-radius: 100%;
}

input[type=checkbox]:checked,
input[type=radio]:checked {
  background: #1b75bc;
}

input[type=checkbox]:checked::after {
  /* Creates a rectangle with colored right and bottom borders which is rotated to look like a check mark */
  content: " ";
  width: 0.1em;
  height: 0.25em;
  border-radius: 0;
  position: absolute;
  top: 0.05em;
  left: 0.18em;
  background: transparent;
  border-right: solid #fff 0.08em;
  border-bottom: solid #fff 0.08em;
  font-size: 1.8em;
  transform: rotate(45deg);
}

input[type=radio]:checked::after {
  /* creates a colored circle for the checked radio button  */
  content: " ";
  width: 0.25em;
  height: 0.25em;
  border-radius: 100%;
  position: absolute;
  top: 0.125em;
  background: #fff;
  left: 0.125em;
  font-size: 32px;
}

/* Make the textarea wider than other inputs */
textarea {
  width: 80%;
}

/* Makes input fields wider on smaller screens */
@media only screen and (max-width: 720px) {
  textarea,
  select,
  input {
    width: 100%;
  }
}
/* Ensures the checkbox and radio inputs do not have a set width like other input fields */
input[type=checkbox],
input[type=radio] {
  width: auto;
}

/* do not show border around file selector button */
input[type=file] {
  border: 0;
}

/* file type icons*/
a[href$=".pdf"] {
  background-image: url(/assets/images/icons-16/pdf.png);
  background-image: url(/assets/images/icons-16/pdf.svg);
  background-position: right center;
  background-repeat: no-repeat;
  padding-right: 20px;
}

a[href$=".doc"] {
  background-image: url(/assets/images/icons-16/word.png);
  background-image: url(/assets/images/icons-16/word.svg);
  background-position: right center;
  background-repeat: no-repeat;
  padding-right: 20px;
}

a[href$=".docx"] {
  background-image: url(/assets/images/icons-16/word.png);
  background-image: url(/assets/images/icons-16/word.svg);
  background-position: right center;
  background-repeat: no-repeat;
  padding-right: 20px;
}

a[href$=".xls"] {
  background-image: url(/assets/images/icons-16/excel.png);
  background-image: url(/assets/images/icons-16/excel.svg);
  background-position: right center;
  background-repeat: no-repeat;
  padding-right: 20px;
}

a[href$=".xlsx"] {
  background-image: url(/assets/images/icons-16/excel.png);
  background-image: url(/assets/images/icons-16/excel.svg);
  background-position: right center;
  background-repeat: no-repeat;
  padding-right: 20px;
}

a[href$=".zip"] {
  background-image: url(/assets/images/icons-16/zip.png);
  background-image: url(/assets/images/icons-16/zip.svg);
  background-position: right center;
  background-repeat: no-repeat;
  padding-right: 20px;
}

a[href^="mailto:"] {
  background-image: url(/assets/images/icons-16/email.png);
  background-image: url(/assets/images/icons-16/email.svg);
  background-position: right center;
  background-repeat: no-repeat;
  padding-right: 20px;
}

/* ================================================
   Print styles
   ================================================ */
@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster: h5bp.com/s */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  body {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.25;
    font-size: 13pt;
  }
  /* Headings */
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
    font-weight: bold;
  }
  h1 {
    font-size: 20pt;
  }
  h2 {
    font-size: 18pt;
  }
  h3 {
    font-size: 16pt;
  }
  h4, h5, h6 {
    font-size: 14pt;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  code {
    font: 12pt Courier, monospace;
  }
  blockquote {
    margin: 1.2em;
    padding: 1em;
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  hr {
    background-color: #ccc;
  }
  ul li {
    list-style-image: none;
    margin: 0 0 0.3em 0;
  }
  /* Images */
  img {
    margin: 1em 1em 1em 0;
    max-width: 100% !important;
  }
  a img {
    border: none;
  }
  /* Links */
  a:link, a:visited {
    background: transparent;
    font-weight: normal;
    color: #000;
  }
  a:link[href]:after, a[href]:visited:after {
    content: " (" attr(href) ") ";
    font-size: 85%;
    color: #666;
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /* Don't show linked images  */
  a[href] {
    color: #000;
  }
  a[href$=".jpg"]:after, a[href$=".jpeg"]:after, a[href$=".gif"]:after, a[href$=".png"]:after {
    content: " (" attr(href) ") ";
    display: none;
  }
  /* Don't show links that are fragment identifiers, or use the `javascript:` pseudo protocol .. taken from html5boilerplate */
  a[href^="#"]:after, a[href^="javascript:"]:after {
    content: "";
  }
  /* Table */
  table {
    margin: 1px;
    text-align: left;
  }
  th {
    border-bottom: 1px solid #333;
    font-weight: bold;
  }
  td {
    border-bottom: 1px solid #333;
  }
  th, td {
    padding: 4px 10px 4px 0;
  }
  tfoot {
    font-style: italic;
  }
  caption {
    background: #fff;
    margin-bottom: 2em;
    text-align: left;
  }
  thead {
    display: table-header-group;
  }
  img, tr {
    page-break-inside: avoid;
  }
  main, section, aside {
    width: 100%;
  }
  /* Hide various parts from the site only print main content --*/
  nav, .header, footer, .noPrint {
    display: none;
  }
  /*-- remove embeded videos --*/
  .embed {
    display: none;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    line-height: 0pt !important;
    white-space: nowrap;
  }
}
