/* Document
 * ========================================================================== */

/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Backgrounds do not repeat by default (opinionated).
 */

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  background-repeat: no-repeat; /* 2 */
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */

::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Breaks words to prevent overflow in all browsers (opinionated).
 * 4. Use a 4-space tab width in all browsers (opinionated).
 * 5. Remove the grey highlight on links in iOS (opinionated).
 * 6. Prevent adjustments of font size after orientation changes in iOS.
 */

:where(:root) {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  overflow-wrap: break-word; /* 3 */
  -moz-tab-size: 4; /* 4 */
  tab-size: 4; /* 4 */
  -webkit-tap-highlight-color: transparent; /* 5 */
  -webkit-text-size-adjust: 100%; /* 6 */
}

/* Sections
 * ========================================================================== */

/**
 * Remove the margin in all browsers (opinionated).
 */

:where(body) {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */

:where(h1) {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */

/**
 * Remove the margin on nested lists in Chrome, Edge, and Safari.
 */

:where(dl, ol, ul) :where(dl, ol, ul) {
  margin: 0;
}

/**
 * 1. Correct the inheritance of border color in Firefox.
 * 2. Add the correct box sizing in Firefox.
 */

:where(hr) {
  color: inherit; /* 1 */
  height: 0; /* 2 */
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */

:where(nav) :where(ol, ul) {
  list-style-type: none;
  padding: 0;
}

/**
 * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
 */

:where(nav li)::before {
  content: "\200B";
  float: left;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 * 3. Prevent overflow of the container in all browsers (opinionated).
 */

:where(pre) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
  overflow: auto; /* 3 */
}

/* Text-level semantics
 * ========================================================================== */

/**
 * Add the correct text decoration in Safari.
 */

:where(abbr[title]) {
  text-decoration: underline;
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

:where(b, strong) {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

:where(code, kbd, samp) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

:where(small) {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */

/*
 * Change the alignment on media elements in all browsers (opinionated).
 */

:where(audio, canvas, iframe, img, svg, video) {
  vertical-align: middle;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */

:where(iframe) {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */

:where(svg:not([fill])) {
  fill: currentColor;
}

/* Tabular data
 * ========================================================================== */

/**
 * 1. Collapse border spacing in all browsers (opinionated).
 * 2. Correct table border color inheritance in all Chrome, Edge, and Safari.
 * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */

:where(table) {
  border-collapse: collapse; /* 1 */
  border-color: inherit; /* 2 */
  text-indent: 0; /* 3 */
}

/* Forms
 * ========================================================================== */

/**
 * Remove the margin on controls in Safari.
 */

:where(button, input, select) {
  margin: 0;
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */

:where(button, [type="button" i], [type="reset" i], [type="submit" i]) {
  -webkit-appearance: button;
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */

:where(fieldset) {
  border: 1px solid #a0a0a0;
}

/**
 * Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */

:where(progress) {
  vertical-align: baseline;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 3. Change the resize direction in all browsers (opinionated).
 */

:where(textarea) {
  margin: 0; /* 1 */
  resize: vertical; /* 3 */
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */

:where([type="search" i]) {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
 * ========================================================================== */

/*
 * Add the correct styles in Safari.
 */

:where(dialog) {
  background-color: white;
  border: solid;
  color: black;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}

:where(dialog:not([open])) {
  display: none;
}

/*
 * Add the correct display in Safari.
 */

:where(details > summary:first-of-type) {
  display: list-item;
}

/* Accessibility
 * ========================================================================== */

/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */

:where([aria-busy="true" i]) {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */

:where([aria-controls]) {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */

:where([aria-disabled="true" i], [disabled]) {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */

:where([aria-hidden="false" i][hidden]) {
  display: initial;
}

:where([aria-hidden="false" i][hidden]:not(:focus)) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

html,
body {
  margin: 0;
  padding: 0;
}
html {
  font-family: sans-serif;
}
body {
  font-family: 'Gotham Narrow SSm A', 'Gotham Narrow SSm B', 'Trebuchet MS', sans-serif;
  font-size: 18px;
  line-height: 1.4;
  color: #2c2c2c;
  background-color: #d1d1d0;
}

summary,
button,
input[type='submit'] {
  cursor: pointer;
}
:where(a) {
  color: #007398;
  text-decoration: none;
}
:where(a):focus-visible {
  outline: 1px dotted #004c65;
  outline-offset: 2px;
}
:where(a):visited:not([class]) {
  color: #009acb;
}
:where(a):hover:not([class]),
:where(a):focus-visible:not([class]) {
  color: #004c65;
}
:where(a):focus-visible:not([class]) {
  text-decoration: underline;
}
:where(p) a:not([class]) {
  text-decoration: underline;
}
:where(h2, h3, h4) a:not([class]) {
  color: inherit;
}
a.long-url {
  word-break: break-all;
}

img {
  display: block;
  width: 100%;
  height: auto;
}
figure,
figcaption {
  margin: 0;
  padding: 0;
}
figcaption {
  margin-top: 0.5rem;
  font-size: 16px;
  color: #5a5a5a;
}
figcaption > :last-child {
  margin-bottom: 0;
}

.skip-link {
  background-color: #007398;
  color: #ffffff;
}
.menu {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
hr {
  border: 0;
  border-top: 2px solid #c8c8c8;
  margin: 30px 0;
  clear: both;
}
hr:first-child {
  margin-top: 0;
}
hr.thick {
  border-top-width: 5px;
}
div#sliding-popup {
  background-color: rgba(0, 0, 0, 0.9);
  padding: 0.25rem;
}
div#sliding-popup .eu-cookie-compliance-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
div#sliding-popup .eu-cookie-compliance-message {
  max-width: 100%;
}
div#sliding-popup .eu-cookie-compliance-message p {
  font-size: 16px;
  font-weight: 400;
}
div#sliding-popup .eu-cookie-compliance-message p a {
  color: #d1d1d0;
}
div#sliding-popup .eu-cookie-compliance-message button {
  color: #d1d1d0;
}
div#sliding-popup #popup-buttons {
  display: block;
}
div#sliding-popup #popup-buttons .button {
  font-family: 'Gotham Narrow SSm A', 'Gotham Narrow SSm B', 'Trebuchet MS', sans-serif;
  text-shadow: none;
  border: none;
  box-shadow: none;
}
div#sliding-popup #popup-buttons .button.eu-cookie-compliance-default-button {
  margin-left: 0.5rem;
  background-color: #d1d1d0;
  color: #2c2c2c;
}
div#sliding-popup #popup-buttons .button.eu-cookie-compliance-default-button:hover {
  color: #2c2c2c;
  background-color: #e3e3e2;
}
@media (max-width : 559px) {
  hr {
    margin: 20px 0;
  }
}
@media (max-width: 1119px) {
  div#sliding-popup .eu-cookie-compliance-content {
    display: block;
  }
  div#sliding-popup #popup-buttons {
    max-width: 100%;
    width: 100%;
  }
}
@media (min-width: 1120px) {
  div#sliding-popup .eu-cookie-compliance-message {
    max-width: 75%;
  }
}

/* default styles, some rules from normalize */
p,
ul,
ol,
dl {
  margin-top: 0;
  margin-bottom: 1em;
  font-size: inherit;
}
h1,
h2,
h3,
h4,
h5 {
  font-weight: 500;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 1em;
}
h1 span,
h2 span,
h3 span,
h4 span,
h5 span {
  font-weight: 400;
  font-size: 0.9em;
}
h1 {
  font-weight: 600;
  font-size: 2em;
  color: #ad5700;
}
h2 {
  font-size: 1.5em;
}
h3 {
  font-size: 1.25em;
}
h4 {
  font-size: 1em;
  margin-bottom: 0;
}
h5 {
  font-size: 0.875em;
  text-transform: uppercase;
  margin-bottom: 0;
  color: #ad5700;
}
blockquote {
  margin: 0;
  padding: 0;
}
blockquote p {
  font-size: 1.5em;
  color: #ad5700;
  font-weight: 500;
}
b,
strong,
th,
dt {
  font-weight: 600;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
ul,
ol {
  margin-top: 0;
}
ul li > ul,
ol li > ul,
ul li > ol,
ol li > ol {
  margin-bottom: 0;
}
dl {
  display: grid;
  grid-column-gap: 1rem;
  grid-row-gap: 5px;
  grid-template-columns: auto 1fr;
}
dt,
dd {
  margin: 0;
  padding: 0;
}
@media (max-width : 559px) {
  h1 {
    font-size: 1.75em;
    font-weight: 500;
  }
  h2 {
    font-size: 1.375em;
  }
  h3 {
    font-size: 1.125em;
  }
  dl {
    display: block;
  }
}






















.box-shadow {
  box-shadow: 0 0 7px 1px rgba(0, 0, 0, 0.25);
}

.container {
  width: 100%;
  max-width: calc(1600px + 2rem + 2rem);
  margin-left: auto;
  margin-right: auto;
}
.wrapper {
  width: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width : 1280px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width : 820px)  and (max-width : 1279px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (max-width : 819px), (max-width : 559px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.draggable {
  cursor: grab;
}
.dragged {
  cursor: grabbing;
}
.disable-selection {
  -webkit-user-select: none;
          user-select: none;
  pointer-events: none;
}
.enable-selection {
  -webkit-user-select: initial;
          user-select: initial;
  pointer-events: initial;
}

.debug {
  outline: 1px dotted red;
}
pre {
  background-color: #ffe0b2;
  border: 1px solid #b98300;
  color: #523800;
  font-size: 16px;
  margin: 0;
  padding: 1rem;
}
pre + pre {
  margin-top: 1rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.visually-visible,
.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  position: unset;
  width: unset;
  height: unset;
  overflow: unset;
  clip: unset;
  white-space: unset;
}

main h2,
.paragraph h2,
main h3,
.paragraph h3,
main p,
.paragraph p,
main ul:not([class]),
.paragraph ul:not([class]),
main ol:not([class]),
.paragraph ol:not([class]),
main dl:not([class]),
.paragraph dl:not([class]),
main blockquote,
.paragraph blockquote {
  max-width: 900px;
}


/*# sourceMappingURL=autry-global-text.library.css.map*/