@charset "UTF-8";
/*
 * Resets
 *
 */
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

html[data-initialized=false] {
  /* opacity: 0; */
}

html[data-initialized=true] {
  opacity: 1 !important;
  transition: 0.25s opacity;
}

svg {
  display: inline-block;
  vertical-align: middle;
}

/*
* Media
*
*/
/* This is the most extreme application so we many want to adjust it */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }
}
[hidden] {
  display: none;
}

/*
 * Custom Properties
 *
 */
:root {
  --base-text-color: var(--color-neutral-400);
  --light-text-color: var(--color-neutral-300);
  --viewport-margin: var(--space-medium);
  --text-xx-small: 0.875rem;
  --material: "Material Icons";
  --font-base-family: "Muli", "system-ui", "sans-serif";
}

@media (min-width: 720px) {
  :root {
    --viewport-margin: var(--space-xx-large);
  }
}
body[data-class=text] {
  --record-width: 75ch;
}

/*
 * Globals 
 *
 */
body {
  margin: 0;
  color: var(--base-text-color);
  font-size: var(--text-base-size);
  font-family: var(--font-base-family);
  line-height: var(--line-height-default);
  accent-color: var(--color-teal-400);
}

ol,
ul,
ul.list-unstyled {
  list-style: none;
  padding: 0;
}

ul:not([class]) ul:not([class]) {
  margin-left: 1rem;
}

li {
  margin-bottom: 0.5rem;
}

/* fight me */
ul ul {
  margin-left: 1rem;
}

ul.list-bulleted {
  list-style: initial;
  padding: revert;
}

ol.list-numbered, text-block ol:not([class]) {
  list-style: decimal;
  padding: revert;
}

a {
  color: var(--color-teal-400);
  text-decoration: underline;
}

a[data-current=true] {
  color: var(--color-neutral-600);
  font-weight: bold;
  text-decoration: none;
}

a:hover {
  text-decoration-thickness: 2px; /** TODO: HOVE **/
}

a.group {
  display: inner-flex;
  align-items: center;
}

a.bedazzled-link {
  text-decoration: none;
  display: inline-flex;
  gap: 0.25rem;
  align-items: flex-start;
}

a.bedazzled-link span:not(.material-icons) {
  text-decoration: underline;
}
a.bedazzled-link span:not(.material-icons).postscript {
  text-decoration: none;
  color: var(--base-text-color);
}
a.bedazzled-link span:not(.material-icons):hover .postscript {
  text-decoration: underline;
}

a.bedazzled-link[data-selected=true] .material-icons {
  color: var(--color-neutral-500);
}

a.bedazzled-link[data-selected=true] span:not(.material-icons) {
  text-decoration: none;
  color: var(--color-neutral-500);
}

:not([disabled]):not(#maincontent):not(#chat):not(summary):focus {
  outline: 0;
  box-shadow: 0 0 0 2px var(--color-maize-400), 0 0 0 3px var(--color-neutral-400);
  border-radius: 2px !important;
}

img {
  width: auto;
}

address {
  font-style: normal;
}

main {
  margin-top: 2rem;
  margin-bottom: 2rem;
  /* avoid squishing main with the footer */
  min-height: 65vh;
}

p img {
  width: initial;
}

/*
 * Viewport Margins
 *
 * Handles the need for page content to be centered
 * in the visible view port window and manage the
 * amount of margin between the site and the edge
 * of the screen's viewport.
 */
.viewport-container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--viewport-margin);
  padding-right: var(--viewport-margin);
}

/*
* Actions
*
*/
.actions {
  padding-bottom: 2em;
  border-bottom: 1px solid var(--color-neutral-100);
}

/*
* Blocks
*
*/
.hero {
  margin: 1em 0 2em;
}

.hero__image {
  max-width: 100%;
}

.contact-icon {
  color: var(--color-teal-400);
}

/** Lists **/
.list__links ul li {
  margin-top: 0.5em;
}

/*
 * Anchors/Links
 *
 */
.active-link {
  text-decoration: none;
  color: var(--color-neutral-400);
}

.link-box {
  margin: 0 0 0.5em 0;
  padding: 0.5em 0;
  display: inline-flex;
  color: var(--base-text-color);
}

.link-box a {
  border-left: 2px solid transparent;
}

.link-box a:hover {
  border-left: 2px solid var(--color-teal-400);
}

.link-box > * {
  margin: 0.25em;
}

/* WEBSITE HEADER */
.website-sub-header {
  width: 100%;
  background: var(--color-blue-500);
  color: white;
  font-weight: 600; /* semibold */
  font-size: var(--text-small);
  padding: 0.5rem 0;
}

.website-sub-header a {
  color: white;
  text-decoration: none;
}

.website-sub-header a:hover span:not(.material-icons),
.website-sub-header a:focus span:not(.material-icons) {
  text-decoration: underline;
}

.website-sub-header .material-icons {
  font-size: 1.5rem;
}

m-website-header nav a {
  text-decoration: none;
  font-size: 0.875rem;
  text-transform: uppercase;
  font-weight: 800;
  /* color: #637381; */
  color: var(--color-neutral-300);
  letter-spacing: 1.25px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
}

m-website-header nav a:hover span:not(.material-icons),
m-website-header nav a:focus span:not(.material-icons) {
  text-decoration: underline;
}

m-website-header nav a .material-icons {
  font-size: 1.5em;
}

@media screen and (max-width: 500px) {
  m-website-header nav {
    margin-top: 1rem;
    flex-wrap: wrap;
  }
}
@media (max-width: 52rem) {
  .website-header-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 52rem) {
  .mobile-nav {
    display: none;
  }
}
@media (max-width: 52rem) {
  m-website-header nav.primary-nav {
    display: none;
  }
}
.mobile-nav .submenu-container {
  border-top: 1px solid var(--color-neutral-100);
  margin-top: 20px;
  position: absolute;
  right: -1rem;
  width: 50vw;
  background: white;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 8px 0px;
  z-index: 101;
}

.mobile-nav .primary-container ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.mobile-nav .primary-container ul li {
  border-bottom: 1px solid rgb(229, 233, 237);
  padding: 1rem;
}

.mobile-nav .primary-container ul a {
  text-decoration: none;
  color: var(--color-neutral-400);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
}

.mobile-nav .primary-container ul a:hover {
  text-decoration: underline;
}

.mobile-nav .utility-container ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
  background-color: var(--color-blue-100);
}

.mobile-nav .utility-container ul li {
  padding: 1rem;
}

.mobile-nav .utility-container ul a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--color-neutral-400);
}

@media (max-width: 64rem) {
  .utility-nav {
    margin-top: 1rem;
  }
}
@media (max-width: 52rem) {
  .utility-nav {
    display: none;
  }
}
.utility-nav ul {
  list-style: none;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
  flex-flow: row wrap;
}

.utility-nav ul li {
  display: inline;
}

.utility-nav ul li:not(:last-child) {
  margin-right: 1rem;
}

.utility-nav ul li a {
  font-size: 0.875rem;
  text-decoration: none;
  color: var(--color-neutral-300);
  text-transform: uppercase;
  font-weight: var(--bold);
  letter-spacing: 1.25px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

button.nav[aria-expanded]::after {
  font-family: "Material Icons";
  font-size: 2.5rem;
  content: "\e5d2";
  color: var(--color-neutral-400);
}

button.nav[aria-expanded=true]::after {
  content: "\e5cd";
}

/*
 * Utilities
 *
 * 
 */
.py-1 {
  display: flex;
  gap: 0.25rem;
}

.border {
  border: solid 2px var(--color-neutral-100);
}

.no-border {
  border: 0;
}

.border-bottom {
  border-bottom: solid 1px var(--color-neutral-100);
}

.border-rounded {
  border-radius: 0.5rem;
}

.underline {
  text-decoration: underline;
}

.no-underline {
  text-decoration: none;
}

.light-text-color {
  color: var(--light-text-color);
}

.base-text-color {
  color: var(--base-text-color);
}

.bold {
  font-weight: var(--bold);
}

.lowercase {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

.block {
  display: block;
}

.flex {
  display: flex;
}

.flex-start {
  align-items: flex-start;
}

.flex-end {
  align-items: flex-end;
}

.flex-center {
  align-items: center;
}

.justify-end {
  justify-content: end;
}

.flex-flow-rw {
  flex-flow: row wrap;
}

.flex-flow-row {
  flex-flow: row nowrap;
}

.flex-flow-column {
  flex-direction: column;
}

.flex-space-between {
  justify-content: space-between;
}

.flex-justify-center {
  justify-content: center;
}

.flex-align-center {
  align-items: center;
}

.flex-gap-0_25 {
  gap: 0.25rem;
}

.flex-gap-0_5 {
  gap: 0.5rem;
}

.flex-gap-1 {
  gap: 1rem;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.flex-grow-1 {
  flex-grow: 1;
}

.center-grid {
  justify-self: center;
  align-self: center;
}

.m-0 {
  margin: 0 !important;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-0_5 {
  margin-bottom: 0.5rem;
}

.mb-1 {
  margin-bottom: 1em;
}

.mb-2 {
  margin-bottom: 2em;
}

.mb-3 {
  margin-bottom: 3em;
}

.mt-0 {
  margin-top: 0;
}

.mt-0_5 {
  margin-top: 0.5rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2em;
}

.ml-2 {
  margin-left: 2em;
}

.p-2 {
  padding: 2rem;
}

.p-1 {
  padding: 1rem;
}

.p-half {
  padding: 0.5em;
}

.pr-0 {
  padding-right: 0;
}

.pr-1 {
  padding-right: 1rem;
}

.pl-1 {
  padding-left: 1rem;
}

.pl-2 {
  padding-left: 2rem;
}

.pt-1 {
  padding-top: 1rem;
}

.pt-2 {
  padding-top: 2rem;
}

.pb-1 {
  padding-bottom: 1rem;
}

.pb-2 {
  padding-bottom: 2rem;
}

.gap-0_25 {
  gap: 0.25em;
}

.gap-0_5 {
  gap: 0.5em;
}

.gap-0_75 {
  gap: 0.75rem;
}

.gap-1 {
  gap: 1rem;
}

.nowrap {
  white-space: nowrap;
}

.text-align-center {
  text-align: center;
}

.text-xxx-small {
  font-size: var(--text-xxx-small) !important;
}

.text-xx-small {
  font-size: var(--text-xx-small) !important;
}

.text-x-small {
  font-size: var(--text-x-small) !important;
}

.text-x-large {
  font-size: var(--text-x-large) !important;
}

.text-large {
  font-size: var(--text-large) !important;
}

.text-medium {
  font-size: var(--text-medium) !important;
}

.text-muted {
  color: var(--color-neutral-400);
}

.flex--wide {
  flex-basis: 100%;
  flex-shrink: 0;
}

.hidden {
  display: none;
}

.w-100 {
  width: 100% !important;
}

/*
 * Buttons
 */
.button,
button {
  outline: none;
  /* display: inline-block; */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0 0.75rem;
  padding: var(--space-x-small) var(--space-small);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: var(--bold);
  font-family: var(--font-base-family);
  border-radius: var(--radius-default);
  align-items: center;
  min-height: 2.5rem;
  margin: 0; /** must remove margin for Safari */
  text-decoration: none;
}

.button--small {
  padding: var(--space-x-small) var(--space-small);
}

.button--large {
  padding: var(--space-small) var(--space-xxx-large);
}

.button:focus {
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px var(--color-indigo-400);
}

.button:hover {
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--color-neutral-400);
}

.button--primary {
  background: var(--color-teal-400);
  border: solid 1px var(--color-teal-400);
  color: #fff;
}

.button--secondary {
  background: var(--color-neutral-100);
  border: solid 1px var(--color-neutral-100);
  color: var(--color-neutral-400);
}

.button--cta {
  background: var(--color-maize-400);
  border: solid 1px var(--color-maize-400);
  color: var(--color-neutral-400);
}

.button-icon {
  bottom: 0.25em;
  position: relative;
}

.button--ghost {
  border: solid 1px var(--color-neutral-500);
  border-radius: 4px;
  color: var(--color-neutral-500);
  background: white;
  padding: 0.5em 1em;
  margin: 0.25em;
  text-decoration: none;
}

.button--ghost.button--small {
  padding: var(--space-x-small) var(--space-small);
  font-size: 0.875rem;
}

.button + .button, .button + sl-button, sl-button + .button {
  margin-left: 0.5em;
}

button[disabled] {
  opacity: 0.25;
}

button.nav {
  background: #fff;
  border: none;
}

button.button[aria-expanded]::after {
  font-family: "Material Icons";
  font-size: 2.5rem;
  content: "\e5d2";
  color: var(--color-neutral-400);
}

button.button[aria-expanded=true]::after {
  font-family: "Material Icons";
  font-size: 2.5rem;
  content: "\e5cd";
  color: var(--color-neutral-400);
}

/*********** Baseline, reset styles ***********/
input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  cursor: pointer;
  width: 15rem;
}

input[type=range][orient=vertical] {
  writing-mode: vertical-lr;
  width: 1rem;
  height: 15rem;
}

/* Removes default focus */
input[type=range]:focus {
  outline: none;
}

/******** Chrome, Safari, Opera and Edge Chromium styles ********/
/* slider track */
input[type=range]::-webkit-slider-runnable-track {
  background-color: #add8e6;
  border-radius: 0.5rem;
  height: 0.5rem;
  width: 0.25rem;
}

/* slider thumb */
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  margin-top: -4px; /* Centers thumb on the track */
  margin-left: -6px;
  background-color: #808080;
  border-radius: 0.5rem;
  height: 1rem;
  width: 1rem;
}

input[type=range]:focus::-webkit-slider-thumb {
  outline: 3px solid #808080;
  outline-offset: 0.125rem;
}

/*********** Firefox styles ***********/
/* slider track */
input[type=range]::-moz-range-track {
  background-color: #add8e6;
  border-radius: 0.5rem;
  height: 0.5rem;
  width: 0.25rem;
}

/* slider thumb */
input[type=range]::-moz-range-thumb {
  background-color: #808080;
  border: none; /*Removes extra border that FF applies*/
  border-radius: 0.5rem;
  height: 1rem;
  width: 1rem;
}

input[type=range]:focus::-moz-range-thumb {
  outline: 3px solid #808080;
  outline-offset: 0.125rem;
}

input.ranged::-webkit-slider-runnable-track {
  background-color: linear-gradient(0deg, #add8e6 0%, #add8e6 50%, transparent 50%, transparent);
  background-repeat: none;
  border-radius: 0.5rem;
  height: 0.5rem;
  width: 0.25rem;
}

/*
 * Record Container
 *
 */
/* section.records {
  container-type: inline-size;
  container-name: section--records-wrap;
}

@container section--records-wrap ( max-width: 600px ) {
  dl.record {
    max-width: none;
    width: 100%;
  }
} */
dl.record {
  /* max-width: 65vw; */
  max-width: var(--record-width, 65ch);
  display: block;
  width: 100%;
}

@media screen and (max-width: 600px) {
  .record {
    max-width: 90vw;
  }
}
.record > div {
  display: grid;
  grid-template-columns: 12rem 1fr;
  column-gap: 0;
  border-bottom: 1px solid var(--color-neutral-100);
}

.record dd > *:first-child {
  margin-top: 0;
}

.record dd > *:last-child {
  margin-bottom: 0;
}

.record dt {
  font-weight: var(--bold);
}

.record > div[data-key=relevance], .results > div[data-key=relevance] {
  display: none;
}

dl.record dt,
dl.record dd {
  padding: var(--space-small) 0;
  margin-left: 0;
  border-bottom: none;
}

dl.record.record--compact dd, dl.record.record--compact dt {
  padding: var(--space-xx-small);
}

dl.record dd {
  /* for longer/wrapping dt */
  padding-left: var(--space-small);
}

dl.record dd + dd {
  grid-column: 2/3;
  border-top: 1px solid var(--color-indigo-100);
}

dl.record .text--copyable {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  word-break: break-word;
}

dl.record .text--copyable.copied::after {
  content: "Copied to clipboard";
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 0.25rem;
  font-size: 0.875rem;
  padding: 0.5rem;
  display: block;
  background: var(--color-green-100);
  color: black;
  white-space: nowrap;
  animation: fade-out 0s ease-in 5s;
  animation-fill-mode: forwards;
}

@keyframes fade-out {
  25% {
    opacity: 0.75;
  }
  50% {
    opacity: 0.5;
  }
  75% {
    opacity: 0.25;
  }
  100% {
    visibility: hidden;
    display: none;
    width: 0;
    height: 0;
  }
}
.record .text--copyable > span {
  flex-grow: 1;
  font-family: monospace;
  font-size: 0.875rem;
}

span.url {
  word-break: break-all;
}

.record .text--copyable button[data-action] {
  flex-grow: 0;
  align-self: flex-start;
  width: auto;
}

/* Text Block/ prose */
.text-block {
  /* width: max(75%); */
  max-width: 75ch; /* Set line length for readability */
}

.text-block h2 {
  font-size: 1.25rem;
}

.text-block img {
  max-width: 100%;
}

.text-block > div > ul:not([class]) {
  list-style: initial;
  padding: revert;
}

.text--small {
  font-size: 0.875rem !important;
}

.text--bold {
  font-weight: bold;
}

.capitalize {
  text-transform: capitalize;
}

.material-symbols-outlined {
  font-variation-settings: "wght" 300, "opsz" 20;
}

.material-symbols-outlined:hover {
  font-variation-settings: "wght" 500, "FILL" 1;
}

.float-right {
  float: right;
  margin: 1rem;
}

.float-right img, img.float-right {
  padding: 1rem;
  border: 1px solid var(--color-neutral-100);
}

.float-right figcaption {
  font-size: 0.875rem;
  max-width: 20ch;
}

img.brand {
  border-radius: 0;
}

hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: 0.25rem solid;
  border-color: var(--color-neutral-500);
  opacity: 0.25;
}

p.plaintext {
  white-space: pre-line;
}

section[data-item-encoding-level="4"] p.plaintext,
article[data-item-encoding-level="4"] p.plaintext {
  white-space: normal;
}

.fullview-page + .fullview-page {
  padding-top: 2rem;
  border-top: 2px solid var(--color-neutral-100);
}

a.ptr-link {
  margin: 0 0.5rem;
}
a.ptr-link .material-icons {
  vertical-align: text-bottom;
}

.inline-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  scroll-padding-top: 2rem;
  white-space: wrap;
}

html[data-highlight-state=off] .inline-highlight a {
  display: none;
}

.hl-link {
  display: inline-flex;
  align-items: center;
}

.hl-link .material-icons {
  font-size: 1rem;
}

.button--highlight {
  padding: var(--space-xxx-small);
  min-height: 0;
}

.fullview-main {
  display: flex;
  gap: 2rem;
  flex-direction: row;
  flex-wrap: nowrap;
  margin-left: 1rem;
  line-height: 2;
}
.fullview-main .inner {
  width: 100%;
}
.fullview-main ul.list-bulleted {
  padding-left: 1rem;
}

.pre-line {
  white-space: pre-line;
  line-height: 1.75;
  max-width: 80ch;
}

ul.fullview-toc {
  list-style: initial;
  margin-left: 1rem;
}

.fullview-thumbnail, .fullview-blank {
  flex-basis: min-content;
  flex-shrink: 0;
}

.fullview-thumbnail > a {
  display: block;
  position: sticky;
  top: 1rem;
}

.fullview-thumbnail figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.fullview-thumbnail figure span.button {
  white-space: nowrap;
}

.fullview-thumbnail img {
  border: 1px solid var(--color-neutral-400);
  padding: 0.5rem;
  width: auto;
  max-width: 100%;
}

.fullview-thumbnail a:hover img,
.fullview-thumbnail a:hover span {
  /* outline: 1px solid var(--color-neutral-300);
  outline-offset: 2px; */
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--color-neutral-400);
}

.fullview-page {
  padding-bottom: 2rem;
}

.fullview-heading {
  font-weight: bold;
  margin: 0.5rem 0;
  line-height: 1.5;
}

.fullview-heading-1 {
  font-size: 1.5rem;
}

.fullview-heading-2 {
  font-size: 1.25rem;
}

.fullview-heading-3 {
  font-size: 1.125rem;
}

.titlepage {
  text-align: center;
}

.footnote-link {
  display: inline-flex;
  min-height: 2rem;
  min-width: 2rem;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  margin: 0 0.25rem;
  line-height: 0;
  border: 1px solid var(--color-neutral-500);
  vertical-align: bottom;
  text-decoration: none;
}

.footnote-link .material-icons {
  font-size: 1.5rem;
}

.footnote-anchor {
  align-self: flex-start;
  position: sticky;
  top: 1rem;
}

.footnote-anchor .bi-x-diamond-fill {
  height: 1.5rem;
  width: 1.5rem;
}

.footnote-text {
  padding: 0.5rem;
}

.footnote-text > * {
  margin-top: 0;
}

del {
  background-color: var(--color-pink-100);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  vertical-align: bottom;
}
del .material-icons {
  font-size: 1rem;
  color: var(--color-pink-500);
}
del::before, del::after {
  clip-path: inset(100%);
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
del::before {
  content: " [deletion start] ";
}
del::after {
  content: " [deletion end] ";
}

ins[data-function=replace] {
  text-decoration: none;
}

ins[data-function=add] {
  text-decoration: none;
}

ins[data-function=add] {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 0.875rem;
  gap: 0.125rem;
  vertical-align: super;
  line-height: 0.5;
  background: var(--color-green-100);
}
ins[data-function=add] .material-icons {
  font-size: 1rem;
  color: #008230;
}
ins[data-function=add]::before {
  content: " [addition start] ";
}
ins[data-function=add]::after {
  content: " [addition end] ";
}
ins[data-function=add]::before, ins[data-function=add]::after {
  clip-path: inset(100%);
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

ins[data-function=replace] {
  background-color: var(--color-green-100);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  vertical-align: bottom;
}
ins[data-function=replace] .material-icons {
  font-size: 1rem;
  color: #008230;
}
ins[data-function=replace]::before {
  content: " [addition start] ";
}
ins[data-function=replace]::after {
  content: " [addition end] ";
}
ins[data-function=replace]::before, ins[data-function=replace]::after {
  clip-path: inset(100%);
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.edit-wrap {
  display: inline-flex;
  flex-direction: column-reverse;
  vertical-align: top;
  font-size: 0.875rem;
  margin-top: -0.25rem;
  margin-left: 0.125rem;
  margin-right: 0.125rem;
  line-height: 0;
}

.unclear {
  background-color: var(--color-maize-100);
  color: var(--color-neutral-400);
}

.unclear::after {
  content: " [unclear] ";
  /* color: #5e6f7d; */
  /* color: var(--color-neutral-400); */
}

.supplied {
  background-color: var(--color-maize-100);
  color: var(--color-neutral-400);
}
.supplied::after {
  content: " [supplied by ed.] ";
}

.fullview-main .name {
  padding: 0 0.25rem;
}
.fullview-main .name .name--reg {
  display: inline-block;
  background: var(--color-green-100);
}
.fullview-main .name .name--reg::before {
  content: " [";
  font-weight: bold;
  font-size: 1.1rem;
}
.fullview-main .name .name--reg::after {
  content: "] ";
  font-weight: bold;
  font-size: 1.1rem;
}

.fullview-main figure {
  border: 1px solid var(--color-neutral-100);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin: 0.25rem;
}

.fullview-main figure img {
  width: auto;
  max-width: 100%;
  border: 1px solid var(--color-neutral-400);
  padding: 0.5rem;
}

.fullview-main a:not(.button):hover img,
.fullview-main a:not(.button):hover span {
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--color-neutral-400);
}

.fullview-main figure figcaption {
  font-size: 0.875rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.fullview-main figure figcaption p {
  margin: 0;
}
.fullview-main figure figcaption p + p {
  margin-top: 1em;
}

.figure--inline .figdesc--inline {
  background: var(--color-maize-100);
  font-weight: bold;
  display: inline-block;
  padding: 0.25rem;
}

.lg {
  margin-left: 1rem;
}

.lg + .lg {
  margin-top: 1rem;
}

.line {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 0.0625rem;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.line:has(a) {
  margin-bottom: 0.25rem;
}
.line:has(.edit-wrap) {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.line:hover {
  background: var(--color-indigo-100);
}
.line .line--number {
  font-family: monospace;
  font-size: 0.75rem;
  color: var(--color-blue-300);
}

.line--indent1, .indentlevel1 {
  margin-left: 1em;
}

.line--indent2 {
  margin-left: 2em;
}

.q1 {
  /* margin-left: 5%;
  margin-right: 15%;
  padding-top: 1em;
  margin-bottom: 1rem; */
  margin-left: 1rem;
  padding: 1rem;
  border-left: 0.5rem solid var(--color-teal-100);
}

.q1--block {
  padding-top: 0;
}

.salute svg line {
  stroke: rgb(0, 0, 0);
  stroke-width: 2;
}

.foreign {
  font-style: italic;
}

.rend-i, .rend-italic {
  font-style: italic;
}

.rend-underline {
  background-image: linear-gradient(120deg, #1F1C2C, #928DAB 100%);
  background-repeat: no-repeat;
  background-size: 100% 0.1em;
  background-position: 0 100%;
  transition: background-size 0.25s ease-in;
}

.rend-superscript {
  font-size: 75%;
  vertical-align: top;
}

.rend-superscriptunderline {
  font-size: 75%;
  vertical-align: top;
  text-decoration: dotted underline;
}

.segment--decorInit {
  color: var(--color-indigo-500);
  padding: 0 0.3rem;
  margin: 0 0.3rem 0 0;
  border: 2px solid;
  border-radius: 8px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 4rem;
  float: left;
  line-height: 1;
}

.gap {
  white-space: pre-line;
  font-family: monospace;
  color: #c64b0e;
  margin: 0 0.125rem;
}
.gap .gap--reason {
  font-family: var(--font-base-family);
  background: var(--color-maize-100);
}
.gap .gap--reason::before {
  content: " [";
  font-weight: bold;
}
.gap .gap--reason::after {
  content: "] ";
  font-weight: bold;
}

.opener {
  padding: 1rem;
  border-left: 0.5rem solid var(--color-teal-100);
  margin: 1rem 0;
}

.closer {
  padding: 1rem;
  border-left: 0.5rem solid var(--color-teal-100);
  margin: 1rem 0;
}

.sp {
  margin-bottom: 1rem;
}

.stage {
  margin-bottom: 1rem;
  /* font-style: italic; */
}

.stage--align-c {
  text-align: center;
}

.stage--align-r {
  text-align: right;
}

.speaker {
  font-size: 1.125em;
  font-weight: bold;
}

.notenumber {
  font-weight: bold;
  display: inline-block;
  padding: 0 0.25rem 0 0.5rem;
}

.note {
  padding: 0.25rem;
  background: var(--color-maize-100);
  border: 1px solid var(--color-maize-500);
  display: inline-block;
}
.note .note--number {
  font-weight: bold;
  padding: 0.25rem;
  background: var(--color-maize-100);
}
.note .note--content {
  margin-left: 0.25rem;
  background: var(--color-maize-100);
  color: var(--color-neutral-400);
}

.inline-note {
  background: var(--color-maize-100);
  display: block;
}
.inline-note.inline {
  display: inline-block;
}

.div-heading {
  display: flex;
  padding: 0.25rem;
  padding-left: 0;
  font-weight: bold;
  background: var(--color-blue-100);
  border-top: 1px solid var(--color-teal-500);
  border-bottom: 2px solid var(--color-teal-500);
}

.display-inline {
  display: inline-block;
}

.inline-note-edge {
  font-weight: bold;
  font-size: 125%;
}

html[data-annotations-state=off] .annotated {
  display: none !important;
}

html[data-annotations-state=on] .corr, html[data-annotations-state=on] .sic--expanded {
  background-color: var(--color-green-100);
}
html[data-annotations-state=on] .sic {
  /* color: var(--color-neutral-400); */
  background-color: var(--color-neutral-100);
}
html[data-annotations-state=on] .abbr--expanded {
  color: var(--color-neutral-300);
}

html {
  scroll-padding-top: 2rem;
}

@media screen and (max-width: 600px) {
  .fullview-main {
    flex-direction: column;
  }
  .fullview-blank {
    display: none;
  }
}
.bs-caret {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-caret-up-fill' viewBox='0 0 16 16'%3E%3Cpath d='m7.247 4.86-4.796 5.481c-.566.647-.106 1.659.753 1.659h9.592a1 1 0 0 0 .753-1.659l-4.796-5.48a1 1 0 0 0-1.506 0z'/%3E%3C/svg%3E");
}

.milestone--paragraph-page {
  font-size: 0.875rem;
  color: var(--color-neutral-300);
}

.milestone--rule {
  padding: 1rem;
  margin: 1rem;
  text-align: center;
}
.milestone--rule span {
  font-size: 1.5rem;
  white-space: nowrap;
}

:target {
  animation: target-fade-2 1.5s ease-in-out;
}
:target .footnote-anchor {
  color: var(--color-green-500);
}

.line:has(:target) {
  animation: target-fade-2 1.5s ease-in-out;
}

@keyframes target-fade-2 {
  from {
    background-color: var(--color-green-100);
    box-shadow: 6px 0 4px -4px var(--color-green-500), -6px 0 4px -4px var(--color-green-500);
  }
  to {
    box-shadow: 6px 0 4px -4px transparent, -6px 0 4px -4px transparent;
  }
}
@keyframes target-fade {
  0% {
    background: var(--color-maize-200);
    box-shadow: 6px 0 4px -4px var(--color-maize-500), -6px 0 4px -4px var(--color-maize-500);
  }
  10% {
    background: var(--color-maize-100);
  }
  100% {
    box-shadow: none;
  }
}
.wrap-continuation {
  margin-bottom: 0;
}
.wrap-continuation::marker {
  font-size: 0;
}

table:not([class]) {
  width: 100% !important;
  border: 0 !important;
  border-collapse: collapse !important;
}
table:not([class]) thead {
  border-color: transparent;
}
table:not([class]) tr > * {
  border-bottom: solid 1px var(--color-neutral-100);
  padding: 1rem 0;
  vertical-align: top;
}
table:not([class]) tr > *:not(:last-child) {
  padding-right: 2rem;
}
table:not([class]) td, table:not([class]) th {
  padding: 1rem;
  padding-left: 0;
  vertical-align: top;
}
table:not([class]) th {
  text-align: left;
  border-bottom: solid 2px var(--color-maize-400);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 1.25px;
  text-transform: uppercase;
  vertical-align: top;
}
table:not([class]) th:not([scope^=row]) {
  border-bottom: solid var(--space-xxx-small) var(--color-maize-400);
}

.responsive-table table {
  width: 100%;
}

.responsive-table table * {
  text-align: left;
}

.responsive-table table caption .caption-flex {
  justify-content: space-between;
}

.responsive-table table caption .caption-flex, .responsive-table table caption .caption-flex form, .responsive-table table caption .caption-flex form > label {
  align-items: center;
  display: flex;
}

.responsive-table table caption .caption-flex, .responsive-table table caption .caption-flex form {
  gap: 1rem;
  flex-wrap: wrap;
}

.responsive-table table caption .caption-flex form, .responsive-table table caption .caption-flex form > label {
  justify-content: flex-start;
}

.responsive-table table caption .caption-flex form > label {
  gap: 0.5rem;
}

.responsive-table table thead {
  border-bottom: solid 2px var(--color-maize-400);
}

@media (max-width: 1000px) {
  .responsive-table table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
}
.responsive-table table th, .responsive-table table td {
  vertical-align: top;
}

@media (min-width: 1001px) {
  .responsive-table table th, .responsive-table table td {
    padding: 1rem 0;
  }
  .responsive-table table th:not(:last-of-type), .responsive-table table td:not(:last-of-type) {
    padding-right: 2rem;
  }
}
.responsive-table table th {
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 1.25px;
  text-transform: uppercase;
}

@media (min-width: 1280px) {
  .responsive-table table th {
    white-space: nowrap;
  }
}
.responsive-table table th[scope=row] {
  line-height: 2;
}

@media (max-width: 1000px) {
  .responsive-table table th[scope=row] {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
}
.responsive-table table tbody tr {
  border-bottom: solid 1px var(--color-neutral-100);
}

@media (max-width: 1000px) {
  .responsive-table table tbody tr {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 1rem 0;
  }
  .responsive-table table tbody tr td {
    display: block;
    grid-column: 1/2;
  }
  .responsive-table table tbody tr td:first-of-type:not(:only-of-type) {
    padding-bottom: 0.75rem;
  }
  .responsive-table table tbody tr td.table-cell-action {
    grid-column: 2/3;
    grid-row: 1/-1;
    padding-left: 1rem;
  }
  .responsive-table table tbody tr td a:not(.button) {
    display: block;
  }
  .responsive-table table tbody tr td .bullet-point:first-of-type {
    display: none;
  }
}
.responsive-table table tbody tr span[aria-hidden=true] {
  font-weight: 600;
}

@media (min-width: 1001px) {
  .responsive-table table tbody tr span[aria-hidden=true] {
    display: none;
  }
}
/* https://unpkg.com/@umich-lib/web@1/umich-lib.css */
table.m-table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

.m-table caption,
.m-table th {
  text-align: left;
}

.m-table caption {
  color: var(--color-neutral-300);
}

.m-table tr > * {
  border-bottom: solid 1px var(--color-neutral-100);
  padding: var(--space-medium) 0;
  vertical-align: top;
}

.m-table tr > *:not(:last-child) {
  padding-right: var(--space-x-large);
}

.m-table th {
  font-size: var(--text-xxx-small);
  font-weight: var(--extrabold);
  letter-spacing: 1.25px;
  text-transform: uppercase;
  vertical-align: middle;
}

.m-table th:not([scope^=row]) {
  border-bottom: solid var(--space-xxx-small) var(--color-maize-400);
}

.m-table tr > *[data-th]:before {
  content: attr(data-th) ": ";
  display: none;
}

.m-table tr > td[data-th]:before {
  font-weight: var(--semibold);
}

@media only screen and (max-width: 1200px) {
  .m-table--responsive-large thead {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
  }
  .m-table--responsive-large tr > * {
    display: block;
  }
  .m-table--responsive-large tr > *:not(:last-child) {
    border-bottom: 0;
    padding-bottom: 0;
    padding-right: 0;
  }
  .m-table--responsive-large tr > *[data-th]:not(th) + *[data-th] {
    padding-top: 0;
  }
  .m-table--responsive-large tr > *[data-th]:before {
    display: inline;
  }
}
@media only screen and (max-width: 920px) {
  .m-table--responsive-medium thead {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
  }
  .m-table--responsive-medium tr > * {
    display: block;
  }
  .m-table--responsive-medium tr > *:not(:last-child) {
    border-bottom: 0;
    padding-bottom: 0;
    padding-right: 0;
  }
  .m-table--responsive-medium tr > *[data-th]:not(th) + *[data-th] {
    padding-top: 0;
  }
  .m-table--responsive-medium tr > *[data-th]:before {
    display: inline;
  }
}
@media only screen and (max-width: 720px) {
  .m-table--responsive-small thead {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
  }
  .m-table--responsive-small tr > * {
    display: block;
  }
  .m-table--responsive-small tr > *:not(:last-child) {
    border-bottom: 0;
    padding-bottom: 0;
    padding-right: 0;
  }
  .m-table--responsive-small tr > *[data-th]:not(th) + *[data-th] {
    padding-top: 0;
  }
  .m-table--responsive-small tr > *[data-th]:before {
    display: inline;
  }
}
.m-table--responsive thead {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
}

.m-table--responsive tr > * {
  display: block;
}

.m-table--responsive tr > *:not(:last-child) {
  border-bottom: 0;
  padding-bottom: 0;
  padding-right: 0;
}

.m-table--responsive tr > *[data-header]:not(th) + *[data-header] {
  padding-top: 0;
}

.m-table--responsive tr > *[data-header]:before {
  content: attr(data-header) ": ";
}

.m-table--responsive tr > td[data-header]:before {
  font-weight: var(--semibold);
}

.m-table--striped > tbody > tr:nth-of-type(odd) > * {
  background-color: rgba(0, 0, 0, 0.025);
}

.m-table--striped tr > *:first-child {
  padding-left: var(--space-medium);
}

.m-table--striped tr > *:last-child {
  padding-right: var(--space-medium);
}

.hilite1 {
  color: #000000;
  background-color: #FFFF00;
}

.hilite2 {
  color: #000000;
  background-color: #00FF00;
}

.hilite3 {
  color: #000000;
  background-color: #FF9900;
}

.hilite4 {
  color: #000000;
  background-color: #00ffcc;
}

.hilite5 {
  color: #000000;
  background-color: #00cccc;
}

.hilite6 {
  color: #000000;
  background-color: #0099cc;
}

html[data-highlight-state=off] .hilite1,
html[data-highlight-state=off] .hilite2,
html[data-highlight-state=off] .hilite3,
html[data-highlight-state=off] .hilite4,
html[data-highlight-state=off] .hilite5,
html[data-highlight-state=off] .hilite6 {
  background-color: transparent;
}

main {
  margin: 0;
}

.mirador-companion-area-left .mirador-companion-windows {
  box-shadow: 5px 0 5px -5px var(--color-neutral-500);
}

.mirador-osd-container {
  display: grid !important;
  grid-template-rows: 1fr min-content;
  row-gap: 8px;
}
.mirador-osd-container .openseadragon-container {
  grid-row: 1/2;
}

.mirador-canvas-nav {
  width: 96% !important;
  left: 50%;
  bottom: 4px !important;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.75) !important;
  border: 1px solid var(--color-neutral-100) !important;
  border-radius: 0.5rem;
  align-items: center;
  position: relative !important;
  grid-row: 2/3;
}
.mirador-canvas-nav .mirador-osd-info {
  width: auto;
}

li.MuiListItem-root img[role=presentation] {
  border: 1px solid var(--color-neutral-100);
  padding: 2px;
}
li.MuiListItem-root .MuiTypography-body1 {
  font-size: 0.875rem;
  white-space: wrap;
}

dl.record {
  width: 100%;
  column-gap: 1rem;
}

.fullview-main {
  display: block;
  margin: 0;
  width: 100%;
}

span.inline-highlight {
  scroll-margin-top: 2rem;
}

@media screen and (max-width: 600px) {
  .ocr-wrap {
    min-width: calc(100dvw - 50px) !important;
  }
}
.loader {
  position: relative;
  display: block;
  height: 8rem;
  width: 8rem;
  transition: all 0.3s;
  transition-timing-function: ease-in;
  animation: spinHourglas 1750ms infinite;
}

.loader::after {
  content: "";
  box-sizing: border-box;
  display: inline-block;
  width: 100%;
  height: 100%;
  background: 0 0;
  border-width: 2em;
  border-color: #9b9b9b transparent;
  border-radius: 50%;
  border-style: solid;
}

@keyframes spinHourglas {
  0% {
    transform: rotate(0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    transform: rotate(180deg);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* #sourceMappingURL=embed.css.map */
