@charset "UTF-8";
/**
 * White theme for reveal.js. This is the opposite of the 'black' theme.
 *
 * By Hakim El Hattab, http://hakim.se
 */
/* -------------------------------------------------------------------
   typography
   ------------------------------------------------------------------- */
@font-face {
  font-family: "IBM Plex Sans";
  src: url("../ttf/IBMPlexSans-Regular.ttf");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "IBM Plex Sans Condensed";
  src: url("../ttf/IBMPlexSansCondensed-Light.ttf");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("../ttf/IBMPlexSans-Bold.ttf");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "IBM Plex Serif";
  src: url("../ttf/IBMPlexSerif-Italic.ttf");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("../ttf/IBMPlexMono-Regular.ttf");
  font-weight: 400;
  font-style: normal;
}
/* -------------------------------------------------------------------
   colors
   ------------------------------------------------------------------- */
section.has-dark-background, section.has-dark-background h1, section.has-dark-background h2, section.has-dark-background h3, section.has-dark-background h4, section.has-dark-background h5, section.has-dark-background h6 {
  color: #fff;
}

/*********************************************
 * GLOBAL STYLES
 *********************************************/
:root {
  --r-background-color: #FFFFFF;
  --r-main-font: IBM Plex Sans;
  --r-main-font-size: 24px;
  --r-main-color: #000000;
  --r-block-margin: 20px;
  --r-heading-margin: 0;
  --r-heading-font: IBM Plex Sans;
  --r-heading-color: #b12d28;
  --r-heading-line-height: 1.2;
  --r-heading-letter-spacing: normal;
  --r-heading-text-transform: none;
  --r-heading-text-shadow: none;
  --r-heading-font-weight: 700;
  --r-heading1-text-shadow: none;
  --r-heading1-size: 1.3em;
  --r-heading2-size: 1.2em;
  --r-heading3-size: 1.2em;
  --r-heading4-size: 1em;
  --r-code-font: monospace;
  --r-link-color: #08526b;
  --r-link-color-dark: rgb(2.6782608696, 27.452173913, 35.8217391304);
  --r-link-color-hover: rgb(13.3217391304, 136.547826087, 178.1782608696);
  --r-selection-background-color: rgb(16.8695652174, 172.9130434783, 225.6304347826);
  --r-selection-color: #fff;
  --r-overlay-element-bg-color: 240, 240, 240;
  --r-overlay-element-fg-color: 0, 0, 0;
}

.reveal-viewport {
  background: #FFFFFF;
  background-color: var(--r-background-color);
}

.reveal {
  font-family: var(--r-main-font);
  font-size: var(--r-main-font-size);
  font-weight: normal;
  color: var(--r-main-color);
}

.reveal ::selection {
  color: var(--r-selection-color);
  background: var(--r-selection-background-color);
  text-shadow: none;
}

.reveal ::-moz-selection {
  color: var(--r-selection-color);
  background: var(--r-selection-background-color);
  text-shadow: none;
}

.reveal .slides section,
.reveal .slides section > section {
  line-height: 1.3;
  font-weight: inherit;
}

/*********************************************
 * HEADERS
 *********************************************/
.reveal h1,
.reveal h2,
.reveal h3,
.reveal h4,
.reveal h5,
.reveal h6 {
  margin: var(--r-heading-margin);
  color: var(--r-heading-color);
  font-family: var(--r-heading-font);
  font-weight: var(--r-heading-font-weight);
  line-height: var(--r-heading-line-height);
  letter-spacing: var(--r-heading-letter-spacing);
  text-transform: var(--r-heading-text-transform);
  text-shadow: var(--r-heading-text-shadow);
  word-wrap: break-word;
}

.reveal h1 {
  font-size: var(--r-heading1-size);
}

.reveal h2 {
  font-size: var(--r-heading2-size);
}

.reveal h3 {
  font-size: var(--r-heading3-size);
}

.reveal h4 {
  font-size: var(--r-heading4-size);
}

.reveal h1 {
  text-shadow: var(--r-heading1-text-shadow);
}

/*********************************************
 * OTHER
 *********************************************/
.reveal p {
  margin: var(--r-block-margin) 0;
  line-height: 1.3;
}

/* Remove trailing margins after titles */
.reveal h1:last-child,
.reveal h2:last-child,
.reveal h3:last-child,
.reveal h4:last-child,
.reveal h5:last-child,
.reveal h6:last-child {
  margin-bottom: 0;
}

/* Ensure certain elements are never larger than the slide itself */
.reveal img,
.reveal video,
.reveal iframe {
  max-width: 95%;
  max-height: 95%;
}

.reveal strong,
.reveal b {
  font-weight: bold;
}

.reveal em {
  font-style: italic;
}

.reveal ol,
.reveal dl,
.reveal ul {
  display: inline-block;
  text-align: left;
  margin: 0 0 0 1em;
}

.reveal ol {
  list-style-type: decimal;
}

.reveal ul {
  list-style-type: disc;
}

.reveal ul ul {
  list-style-type: square;
}

.reveal ul ul ul {
  list-style-type: circle;
}

.reveal ul ul,
.reveal ul ol,
.reveal ol ol,
.reveal ol ul {
  display: block;
  margin-left: 40px;
}

.reveal dt {
  font-weight: bold;
}

.reveal dd {
  margin-left: 40px;
}

.reveal blockquote {
  display: block;
  position: relative;
  width: 70%;
  margin: var(--r-block-margin) auto;
  padding: 5px;
  font-style: italic;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
}

.reveal blockquote p:first-child,
.reveal blockquote p:last-child {
  display: inline-block;
}

.reveal q {
  font-style: italic;
}

.reveal pre {
  display: block;
  position: relative;
  width: 90%;
  margin: var(--r-block-margin) auto;
  text-align: left;
  font-size: 0.55em;
  font-family: var(--r-code-font);
  line-height: 1.2em;
  word-wrap: break-word;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
}

.reveal code {
  font-family: var(--r-code-font);
  text-transform: none;
  tab-size: 2;
}

.reveal pre code {
  display: block;
  padding: 5px;
  overflow: auto;
  max-height: 400px;
  word-wrap: normal;
}

.reveal .code-wrapper {
  white-space: normal;
}

.reveal .code-wrapper code {
  white-space: pre;
}

.reveal table {
  margin: auto;
  border-collapse: collapse;
  border-spacing: 0;
}

.reveal table th {
  font-weight: bold;
}

.reveal table th,
.reveal table td {
  text-align: left;
  padding: 0.2em 0.5em 0.2em 0.5em;
  border-bottom: 1px solid;
}

.reveal table th[align=center],
.reveal table td[align=center] {
  text-align: center;
}

.reveal table th[align=right],
.reveal table td[align=right] {
  text-align: right;
}

.reveal table tbody tr:last-child th,
.reveal table tbody tr:last-child td {
  border-bottom: none;
}

.reveal sup {
  vertical-align: super;
  font-size: smaller;
}

.reveal sub {
  vertical-align: sub;
  font-size: smaller;
}

.reveal small {
  display: inline-block;
  font-size: 0.6em;
  line-height: 1.2em;
  vertical-align: top;
}

.reveal small * {
  vertical-align: top;
}

.reveal img {
  margin: var(--r-block-margin) 0;
}

/*********************************************
 * LINKS
 *********************************************/
.reveal a {
  color: var(--r-link-color);
  text-decoration: none;
  transition: color 0.15s ease;
}

.reveal a:hover {
  color: var(--r-link-color-hover);
  text-shadow: none;
  border: none;
}

.reveal .roll span:after {
  color: #fff;
  background: var(--r-link-color-dark);
}

/*********************************************
 * Frame helper
 *********************************************/
.reveal .r-frame {
  border: 4px solid var(--r-main-color);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.reveal a .r-frame {
  transition: all 0.15s linear;
}

.reveal a:hover .r-frame {
  border-color: var(--r-link-color);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
}

/*********************************************
 * NAVIGATION CONTROLS
 *********************************************/
.reveal .controls {
  color: var(--r-link-color);
}

/*********************************************
 * PROGRESS BAR
 *********************************************/
.reveal .progress {
  background: rgba(0, 0, 0, 0.2);
  color: var(--r-link-color);
}

/*********************************************
 * PRINT BACKGROUND
 *********************************************/
@media print {
  .backgrounds {
    background-color: var(--r-background-color);
  }
}
/* -------------------------------------------------------------------
   paragraphs
   ------------------------------------------------------------------- */
/* -------------------------------------------------------------------
   mixins
   ------------------------------------------------------------------- */
/* -------------------------------------------------------------------
   styles
   ------------------------------------------------------------------- */
.ABSTRACT {
  margin-bottom: 5em;
  padding-left: 1em;
  padding-right: 1em;
}
.ABSTRACT p {
  font-family: "IBM Plex Serif", serif;
  font-weight: 400 !important;
  font-style: italic;
  font-size: 100%;
}

p,
.reveal p {
  margin-bottom: 0px;
  margin-top: 1em;
  line-height: 150%;
  font-family: "IBM Plex Sans", sans serif;
  font-weight: 400 !important;
  font-style: normal;
  page-break: auto;
}

hr {
  margin-top: 2em;
  margin-bottom: 2em;
  border-top: 1px solid #b12d28;
}

em {
  font-family: "IBM Plex Serif", serif;
  font-weight: 400 !important;
  font-style: italic;
  font-size: 100%;
}

blockquote {
  position: relative;
  box-shadow: none;
}
blockquote p {
  padding: 1em;
  margin: 0em;
  line-height: 150%;
  font-family: "IBM Plex Serif", serif;
  font-weight: 400 !important;
  font-style: italic;
  font-size: 100%;
}
blockquote p .citation {
  text-align: left;
  display: block;
  font-family: "IBM Plex Sans Condensed", sans serif;
  font-weight: 300 !important;
  font-style: normal;
}
blockquote p .citation:before {
  content: "——";
  letter-spacing: -0.1em;
  padding-right: 0.5em;
}
blockquote p {
  /*        border-left: $paragraph-space solid $dark-color; */
}
blockquote {
  /*    &:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	top: 40px;
  	width: 0;
  	height: 0;
  	border: 2em solid transparent;
  	border-right-color: $dark-color;
  	border-left: 0;
  	border-bottom: 0;
  	margin-top: 0.5em;
  	margin-left: -2em;        
      }*/
  margin-top: 0.5em;
  margin-bottom: 1em;
  margin-left: 20%;
  padding: 0em;
}
blockquote p {
  padding: 0.4em 1em 0.2em 1em;
  margin: 0em;
  font-style: normal;
}

code {
  font-family: "IBM Plex Mono", Courier;
  font-weight: 400 !important;
  font-style: normal;
  font-size: 90%;
  padding: 0em 0.3em 0.1em 0.3em;
  margin: 0 0.1em;
  white-space: nowrap;
  background: #f2f2f2;
  /* border: 1px solid $grey-color; */
  /*  border: none; */
  border-radius: 0px;
}
code span {
  display: inline;
}
code span span {
  display: inline;
}
code span span.co {
  color: #3d3d3d;
}
code span span:after {
  content: "";
}
code a:before {
  content: "";
}

strong {
  font-family: "IBM Plex Sans", sans serif;
  font-weight: 400 !important;
  font-style: normal;
  color: #b12d28;
}

a {
  text-decoration: none;
}
a:before {
  content: "↗";
}
a .sourceLine:hover {
  text-decoration: none;
  border-bottom: none;
}
a {
  color: #08526b;
}
a:hover {
  color: #08526b;
  border-bottom: 0.2em solid #08526b;
}

figure {
  margin-bottom: 0px;
  margin-top: 1em;
  line-height: 150%;
  font-family: "IBM Plex Sans", sans serif;
  font-weight: 400 !important;
  font-style: normal;
  page-break: auto;
  page-break-inside: avoid;
  margin-left: 0px;
  padding-left: 0px;
}
figure img {
  box-shadow: none;
}
figure figcaption {
  margin-top: 0.1em;
  text-align: left;
}
figure.fig10 img {
  max-width: 10%;
}
figure.fig20 img {
  max-width: 20%;
}
figure.fig30 img {
  max-width: 30%;
}
figure.fig40 img {
  max-width: 40%;
}
figure.fig50 img {
  max-width: 50%;
}
figure.fig60 img {
  max-width: 60%;
}
figure.fig70 img {
  max-width: 70%;
}
figure.fig80 img {
  max-width: 80%;
}
figure.fig90 img {
  max-width: 90%;
}
figure.fig100 img {
  max-width: 100%;
}
figure figcaption {
  color: #37474f;
}

img.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
img.shadow {
  box-shadow: rgba(55, 71, 79, 0.7) 0px 8px 24px;
}
img.img10 {
  max-width: 10%;
}
img.img20 {
  max-width: 20%;
}
img.img30 {
  max-width: 30%;
}
img.img40 {
  max-width: 40%;
}
img.img50 {
  max-width: 50%;
}
img.img60 {
  max-width: 60%;
}
img.img70 {
  max-width: 70%;
}
img.img80 {
  max-width: 80%;
}
img.img90 {
  max-width: 90%;
}
img.img100 {
  max-width: 100%;
}

ul {
  margin-bottom: 0px;
  margin-top: 1em;
  line-height: 150%;
  font-family: "IBM Plex Sans", sans serif;
  font-weight: 400 !important;
  font-style: normal;
  page-break: auto;
  margin-top: 0px;
  margin-bottom: 1em;
  list-style-position: outside;
  list-style-type: "* ";
  padding-left: 3em;
}
ul li {
  margin-bottom: 0px;
  padding-left: 0.5em;
}
ul ::marker {
  font-family: "IBM Plex Mono", Courier;
  font-weight: 400 !important;
  font-style: normal;
  font-size: 95%;
  padding-right: 1em;
}
ul li p {
  margin-top: 1em;
}
ul .bib {
  font-size: 60%;
}
h1 + ul, h2 + ul, h3 + ul {
  margin-top: 1em !important;
}
ul ::marker {
  color: #b12d28;
}

ol {
  margin-bottom: 0px;
  margin-top: 1em;
  line-height: 150%;
  font-family: "IBM Plex Sans", sans serif;
  font-weight: 400 !important;
  font-style: normal;
  page-break: auto;
  margin-top: 0px;
  margin-bottom: 0px;
  padding-left: 3em;
  list-style: decimal;
}
ol ::marker {
  font-family: "IBM Plex Mono", Courier;
  font-weight: 400 !important;
  font-style: normal;
  font-size: 95%;
}
h1 + ol, h2 + ol, h3 + ol {
  margin-top: 1em !important;
}
ol ::marker {
  color: #b12d28;
}

dl {
  margin-bottom: 0px;
  margin-top: 1em;
  line-height: 150%;
  font-family: "IBM Plex Sans", sans serif;
  font-weight: 400 !important;
  font-style: normal;
  page-break: auto;
  margin-top: 0px;
  margin-bottom: 1em;
  width: 100%;
}
dl dt {
  font-family: "IBM Plex Sans", sans serif;
  font-weight: 700 !important;
  font-style: normal;
  font-size: 100%;
}
dl dd {
  font-size: 100%;
}
dl dd p {
  padding-bottom: 1em;
}
dl dt {
  color: #37474f;
}
dl dt {
  float: left;
  width: 30%;
  clear: both;
  padding-bottom: 0px;
}
dl dd {
  page-break-before: avoid;
  margin-left: 30%;
  padding-left: 1em;
  padding-bottom: 1em;
}
dl dd p {
  margin-top: 0px;
  margin-bottom: 0px;
}
dl dd:after {
  content: "";
  clear: both;
  display: table;
}

table {
  margin-bottom: 0px;
  margin-top: 1em;
  line-height: 150%;
  font-family: "IBM Plex Sans", sans serif;
  font-weight: 400 !important;
  font-style: normal;
  page-break: auto;
}
table caption {
  margin-top: 0.1em;
  text-align: left;
  page-break-after: avoid;
}
table thead {
  font-size: 100%;
}
table tbody {
  font-size: 100%;
}
table td {
  padding: 0px 1em 0px 0px;
}
table th {
  font-family: "IBM Plex Sans Condensed", sans serif;
  font-weight: 300 !important;
  font-style: normal;
  color: #41886c;
  padding: 0px 1em 0px 0px;
}
table tr {
  page-break-inside: avoid;
  vertical-align: top;
}
table thead th {
  border-bottom: 1px solid #41886c;
}
table tbody td {
  border-bottom: 1px solid #41886c;
}
table tbody tr:last-child td {
  border-bottom: 1px solid #41886c;
}

.clear {
  clear: both;
}

#refs {
  margin-bottom: 0px;
  margin-top: 1em;
  line-height: 150%;
  font-family: "IBM Plex Sans", sans serif;
  font-weight: 400 !important;
  font-style: normal;
  page-break: auto;
  font-size: 85%;
  column-count: 2;
}
#refs .csl-entry {
  margin-bottom: 0.5em;
}

#TOC ul {
  padding-left: 0px;
  list-style: none;
}
#TOC ul li {
  padding-left: 0px;
}
#TOC ul li ul li {
  padding-left: 1.5em;
}
#TOC ul li:before {
  content: "";
}
#TOC ul li ul li:before {
  content: "";
}
#TOC ul li ul li ul li:before {
  content: "";
}

#LOF ul {
  padding-left: 0px;
  list-style: none;
}
#LOF ul li {
  padding-left: 0px;
}
#LOF ul li ul li {
  padding-left: 1.5em;
}
#LOF ul li:before {
  content: "";
}
#LOF ul li ul li:before {
  content: "";
}
#LOF ul li ul li ul li:before {
  content: "";
}
#LOF ul li {
  margin-bottom: 0.5em;
}

.DROP {
  font-family: "IBM Plex Sans Condensed", sans serif;
  font-weight: 300 !important;
  font-style: normal;
  float: left;
  width: 5em;
  min-width: 5em;
  padding-right: 1em;
  /* padding-bottom: $paragraph-space; */
  margin: 0px;
  text-align: right;
}
.DROP p {
  font-size: 85%;
  padding: 0px;
  margin: 0px;
}
.DROP img {
  width: 100%;
  padding: 0px;
  margin: 0px;
  height: 4.5em;
}
.DROP img.noshadow {
  box-shadow: none;
}

.SMALLDROP {
  font-family: "IBM Plex Sans Condensed", sans serif;
  font-weight: 300 !important;
  font-style: normal;
  float: left;
  width: 7%;
  min-width: 4em;
  padding-right: 1em;
  padding-bottom: 1em;
  margin: 0px;
  font-size: 90%;
  text-align: right;
}
.SMALLDROP p {
  padding: 0px;
  margin: 0px;
}
.SMALLDROP img {
  width: 100%;
  padding: 0px;
  margin: 0px;
}
.SMALLDROP img.noshadow {
  box-shadow: none;
}

.COL {
  display: inline-block;
  box-sizing: border-box;
  vertical-align: top;
  margin-top: 1em;
  margin-bottom: 0px;
  padding-right: 1em;
  width: 49%;
}
.COL > p:first-child {
  margin-top: 0px;
}
.COL h1, .COL h2, .COL h3, .COL h4 {
  margin-top: 0em;
  font-size: 100%;
}
.COL ul {
  padding-left: 0px;
  margin-left: 0px;
}

@media print {
  html:not(.print-pdf) .COL {
    display: inline-block;
    box-sizing: border-box;
    vertical-align: top;
    margin-top: 1em;
    margin-bottom: 0px;
    padding-right: 1em;
    width: 49%;
  }
  html:not(.print-pdf) .COL > p:first-child {
    margin-top: 0px;
  }
  html:not(.print-pdf) .COL h1, html:not(.print-pdf) .COL h2, html:not(.print-pdf) .COL h3, html:not(.print-pdf) .COL h4 {
    margin-top: 0em;
    font-size: 100%;
  }
  html:not(.print-pdf) .COL ul {
    padding-left: 0px;
    margin-left: 0px;
  }
}
.CARD {
  display: inline-block;
  box-sizing: border-box;
  vertical-align: top;
  margin-top: 1em;
  padding: 1em;
  margin-right: 1em;
  min-width: 250px;
  width: 47%;
  min-height: 5em;
  font-size: 80%;
}
.CARD p:first-child {
  margin-top: 0px;
  margin-bottom: 1em;
}
.CARD ul {
  margin-left: 0px;
  padding-left: 0px;
}
.CARD {
  box-shadow: rgba(55, 71, 79, 0.7) 0px 8px 24px;
  background-color: rgba(180, 202, 212, 0.2);
}

@media print {
  html:not(.print-pdf) .CARD {
    display: inline-block;
    box-sizing: border-box;
    vertical-align: top;
    margin-top: 1em;
    padding: 1em;
    margin-right: 1em;
    min-width: 250px;
    width: 47%;
    min-height: 5em;
    font-size: 80%;
  }
  html:not(.print-pdf) .CARD p:first-child {
    margin-top: 0px;
    margin-bottom: 1em;
  }
  html:not(.print-pdf) .CARD ul {
    margin-left: 0px;
    padding-left: 0px;
  }
  html:not(.print-pdf) .CARD {
    box-shadow: rgba(55, 71, 79, 0.7) 0px 8px 24px;
    background-color: rgba(180, 202, 212, 0.2);
  }
}
@media print {
  .noprint, .noprint * {
    display: none !important;
  }
}
.HIGHLIGHT {
  background-color: rgba(180, 202, 212, 0.2);
  padding: 1em;
  margin-top: 1em;
}
.HIGHLIGHT p:first-child {
  margin-top: 0px;
}

.HAND {
  background-color: rgba(180, 202, 212, 0.2);
  padding: 1em;
  margin-top: 1em;
}
.HAND p:first-child {
  margin-top: 0px;
}
.HAND {
  background-image: url(../icons/hand-index.svg);
  background-position: 1em 1em;
  background-size: 2em 2em;
  background-repeat: no-repeat;
  padding-left: 4em;
}
.HAND:after {
  content: "";
  display: table;
  clear: both;
}

.DISPLAY {
  border-top: #37474f 1px solid;
  border-bottom: #37474f 1px solid;
  margin: 1em;
  padding-bottom: 1em;
}
.DISPLAY p:last-child {
  margin-bottom: 0px;
}
.DISPLAY p {
  font-family: "IBM Plex Sans Condensed", sans serif;
  font-weight: 300 !important;
  font-style: normal;
}
.DISPLAY p em {
  font-family: "IBM Plex Sans Condensed", sans serif;
  font-weight: 300 !important;
  font-style: italic;
}
.DISPLAY ol li {
  font-family: "IBM Plex Sans Condensed", sans serif;
  font-weight: 300 !important;
  font-style: normal;
}
.DISPLAY ul li {
  font-family: "IBM Plex Sans Condensed", sans serif;
  font-weight: 300 !important;
  font-style: normal;
}
.DISPLAY strong {
  font-family: "IBM Plex Sans Condensed", sans serif;
  font-weight: 300 !important;
  font-style: normal;
  color: #41886c;
}
.DISPLAY:after {
  content: "";
  display: table;
  clear: both;
}
.DISPLAY .DROP {
  margin-top: 1em;
}
.DISPLAY ol li:before {
  color: #41886c;
}
.DISPLAY ul li:before {
  color: #41886c;
}

.LARGE {
  display: block;
  height: 10em;
  margin-top: -1em;
  margin-left: -1em;
  margin-right: -1em;
  background-size: cover;
  background-position: center;
}

.SMALL {
  font-size: 85%;
}

.CENTER {
  text-align: center;
}

.embed-responsive-16by9 {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.embed-responsive iframe {
  border: 0px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

ul.tab-buttons {
  padding: 0px;
  border-bottom: #41886c 2px solid;
  margin-bottom: -2px;
  margin-top: 1em;
  font-family: "IBM Plex Sans Condensed", sans serif;
  font-weight: 300 !important;
  font-style: normal;
}

li.tab-button:before {
  content: "";
  dispay: none;
}

li.tab-button {
  cursor: pointer;
  display: inline-block;
  margin-left: 10px;
  padding: 0.25em 1em 0.25em 1em;
  background-color: #f2f2f2;
  color: #37474f;
  border-bottom: #41886c 2px solid;
  margin-bottom: -2px;
}

li.tab-button.active {
  background-color: #41886c;
  color: #FFFFFF;
  border-bottom: #FFFFFF 2px solid;
}

.slide-menu-wrapper .slide-menu-item-vertical:before {
  display: none;
}

.slide-menu-wrapper .toolbar-panel-button:before {
  display: none;
}

.slide-menu-button a:before {
  display: none;
}

.reveal ul li {
  margin-left: 1em;
}

.reveal img.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.reveal img.shadow {
  box-shadow: rgba(55, 71, 79, 0.7) 0px 8px 24px;
}
.reveal img.img10 {
  max-width: 10%;
}
.reveal img.img20 {
  max-width: 20%;
}
.reveal img.img30 {
  max-width: 30%;
}
.reveal img.img40 {
  max-width: 40%;
}
.reveal img.img50 {
  max-width: 50%;
}
.reveal img.img60 {
  max-width: 60%;
}
.reveal img.img70 {
  max-width: 70%;
}
.reveal img.img80 {
  max-width: 80%;
}
.reveal img.img90 {
  max-width: 90%;
}
.reveal img.img100 {
  max-width: 100%;
}
.reveal img {
  margin: 0px;
}

.reveal a {
  text-decoration: none;
}
.reveal a:before {
  content: "↗";
}
.reveal a .sourceLine:hover {
  text-decoration: none;
  border-bottom: none;
}
.reveal a {
  color: #08526b;
}
.reveal a:hover {
  color: #08526b;
  border-bottom: 0.2em solid #08526b;
}

.reveal ol, .reveal dl, .reveal ul {
  display: block;
}

.reveal .CARD ul {
  padding-left: 0px;
}

.reveal blockquote {
  position: relative;
  box-shadow: none;
}
.reveal blockquote p {
  padding: 1em;
  margin: 0em;
  line-height: 150%;
  font-family: "IBM Plex Serif", serif;
  font-weight: 400 !important;
  font-style: italic;
  font-size: 100%;
}
.reveal blockquote p .citation {
  text-align: left;
  display: block;
  font-family: "IBM Plex Sans Condensed", sans serif;
  font-weight: 300 !important;
  font-style: normal;
}
.reveal blockquote p .citation:before {
  content: "——";
  letter-spacing: -0.1em;
  padding-right: 0.5em;
}
.reveal blockquote p {
  /*        border-left: $paragraph-space solid $dark-color; */
}
.reveal blockquote {
  /*    &:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	top: 40px;
  	width: 0;
  	height: 0;
  	border: 2em solid transparent;
  	border-right-color: $dark-color;
  	border-left: 0;
  	border-bottom: 0;
  	margin-top: 0.5em;
  	margin-left: -2em;        
      }*/
  margin-top: 0.5em;
  margin-bottom: 1em;
  margin-left: 20%;
  padding: 0em;
}
.reveal blockquote p {
  padding: 0.4em 1em 0.2em 1em;
  margin: 0em;
  font-style: normal;
}

.reveal blockquote p:first-child, .reveal blockquote p:last-child {
  display: block;
}

#refs {
  font-size: 55%;
  height: 500px;
  overflow: scroll;
}

/* -------------------------------------------------------------------
   titles
   ------------------------------------------------------------------- */
/* -------------------------------------------------------------------
   mixins
   ------------------------------------------------------------------- */
/* -------------------------------------------------------------------
   styles
   ------------------------------------------------------------------- */
.block-title {
  margin-top: 5em;
  margin-bottom: 5em;
}

h1.title {
  font-family: "IBM Plex Sans", sans serif;
  font-weight: 700 !important;
  font-style: normal;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-bottom: 0.4em;
  margin-top: 0px;
  font-size: 220%;
  line-height: 120%;
  color: #b12d28;
}

p.subject {
  font-family: "IBM Plex Serif", serif;
  font-weight: 400 !important;
  font-style: italic;
  font-size: 100%;
  font-size: 100%;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-bottom: 0.8em;
  margin-top: 0px;
  line-height: 120%;
  color: #37474f;
}

p.subtitle {
  font-family: "IBM Plex Sans Condensed", sans serif;
  font-weight: 300 !important;
  font-style: normal;
  font-size: 200%;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-bottom: 0.4em;
  margin-top: 0px;
  line-height: 120%;
  color: #b12d28;
}

p.author {
  font-family: "IBM Plex Sans", sans serif;
  font-weight: 400 !important;
  font-style: normal;
  margin-bottom: 0.4em;
  font-size: 100%;
}
p.author .email {
  font-family: "IBM Plex Mono", Courier;
  font-weight: 400 !important;
  font-style: normal;
  font-size: 90%;
}
p.author .email:before {
  content: "";
}
p.author {
  color: #37474f;
}

p.date {
  font-family: "IBM Plex Sans", sans serif;
  font-weight: 400 !important;
  font-style: normal;
  font-size: 100%;
  color: #37474f;
}

p.toc-title {
  font-family: "IBM Plex Sans", sans serif;
  font-weight: 700 !important;
  font-style: normal;
  font-size: 180%;
  margin-top: 0em;
  margin-bottom: 0em;
  clear: both;
  line-height: 120%;
  color: #41886c;
}

h1 {
  font-family: "IBM Plex Sans", sans serif;
  font-weight: 700 !important;
  font-style: normal;
  font-size: 180%;
  margin-top: 0em;
  margin-bottom: 0em;
  clear: both;
  line-height: 120%;
}
h1.accordion {
  font-family: "IBM Plex Sans", sans serif;
  font-weight: 700 !important;
  font-style: normal;
  color: #3d3d3d;
  font-size: 130%;
  cursor: pointer;
  padding: 0.1em;
  background-color: #f2f2f2;
}
h1.accordion:before {
  content: "[+]";
  width: 2em;
  letter-spacing: -0.2em;
  display: inline-block;
  margin: 0.1em;
  text-align: center;
  color: #b12d28;
  font-family: "IBM Plex Mono", Courier;
  font-weight: 400 !important;
  font-style: normal;
}
h1.accordion.active {
  background-color: #b4cad4;
}
h1.accordion.active:before {
  content: "[-]";
}
h1 {
  color: #41886c;
}
h1 .number {
  color: #41886c;
  padding: 0em;
  margin-left: -3em;
  display: block;
  float: left;
  width: 3em;
  font-size: 100%;
}
h1.has-number {
  padding-left: 3em;
}
h1 .tag {
  font-family: "IBM Plex Sans Condensed", sans serif;
  font-weight: 300 !important;
  font-style: normal;
  background-color: #41886c;
  color: #FFFFFF;
  font-size: 60%;
  padding: 0.25em 0.5em 0.25em 0.5em;
  border-radius: 0.25em;
}

h1.primary {
  font-family: "IBM Plex Sans", sans serif;
  font-weight: 700 !important;
  font-style: normal;
  font-size: 180%;
  margin-top: 0em;
  margin-bottom: 0em;
  clear: both;
  line-height: 120%;
}
h1.primary.accordion {
  font-family: "IBM Plex Sans", sans serif;
  font-weight: 700 !important;
  font-style: normal;
  color: #3d3d3d;
  font-size: 130%;
  cursor: pointer;
  padding: 0.1em;
  background-color: #f2f2f2;
}
h1.primary.accordion:before {
  content: "[+]";
  width: 2em;
  letter-spacing: -0.2em;
  display: inline-block;
  margin: 0.1em;
  text-align: center;
  color: #b12d28;
  font-family: "IBM Plex Mono", Courier;
  font-weight: 400 !important;
  font-style: normal;
}
h1.primary.accordion.active {
  background-color: #b4cad4;
}
h1.primary.accordion.active:before {
  content: "[-]";
}
h1.primary {
  color: #41886c;
}
h1.primary .number {
  color: #41886c;
  padding: 0em;
  margin-left: -3em;
  display: block;
  float: left;
  width: 3em;
  font-size: 100%;
}
h1.primary.has-number {
  padding-left: 3em;
}
h1.primary .tag {
  font-family: "IBM Plex Sans Condensed", sans serif;
  font-weight: 300 !important;
  font-style: normal;
  background-color: #41886c;
  color: #FFFFFF;
  font-size: 60%;
  padding: 0.25em 0.5em 0.25em 0.5em;
  border-radius: 0.25em;
}
h1.primary {
  color: #b12d28;
}

h2 {
  font-family: "IBM Plex Sans", sans serif;
  font-weight: 700 !important;
  font-style: normal;
  color: #37474f;
  margin-top: 0em;
  margin-bottom: 0em;
  clear: both;
  font-size: 150%;
  line-height: 120%;
}
h2.accordion {
  font-family: "IBM Plex Sans", sans serif;
  font-weight: 700 !important;
  font-style: normal;
  color: #3d3d3d;
  font-size: 130%;
  cursor: pointer;
  padding: 0.1em;
  background-color: #f2f2f2;
}
h2.accordion:before {
  content: "[+]";
  width: 2em;
  letter-spacing: -0.2em;
  display: inline-block;
  margin: 0.1em;
  text-align: center;
  color: #b12d28;
  font-family: "IBM Plex Mono", Courier;
  font-weight: 400 !important;
  font-style: normal;
}
h2.accordion.active {
  background-color: #b4cad4;
}
h2.accordion.active:before {
  content: "[-]";
}
h2 {
  color: #41886c;
}
h2 .number {
  color: #41886c;
  padding: 0em;
  margin-left: -3em;
  display: block;
  float: left;
  width: 3em;
  font-size: 100%;
}
h2.has-number {
  padding-left: 3em;
}
h2 .tag {
  font-family: "IBM Plex Sans Condensed", sans serif;
  font-weight: 300 !important;
  font-style: normal;
  background-color: #41886c;
  color: #FFFFFF;
  font-size: 60%;
  padding: 0.25em 0.5em 0.25em 0.5em;
  border-radius: 0.25em;
}

h3 {
  font-family: "IBM Plex Sans", sans serif;
  font-weight: 700 !important;
  font-style: normal;
  color: #37474f;
  font-size: 130%;
  margin-top: 0em;
  margin-bottom: 0em;
  clear: both;
  line-height: 120%;
}
h3.accordion {
  font-family: "IBM Plex Sans", sans serif;
  font-weight: 700 !important;
  font-style: normal;
  color: #3d3d3d;
  font-size: 130%;
  cursor: pointer;
  padding: 0.1em;
  background-color: #f2f2f2;
}
h3.accordion:before {
  content: "[+]";
  width: 2em;
  letter-spacing: -0.2em;
  display: inline-block;
  margin: 0.1em;
  text-align: center;
  color: #b12d28;
  font-family: "IBM Plex Mono", Courier;
  font-weight: 400 !important;
  font-style: normal;
}
h3.accordion.active {
  background-color: #b4cad4;
}
h3.accordion.active:before {
  content: "[-]";
}
h3 {
  color: #41886c;
}

h4 {
  font-family: "IBM Plex Sans", sans serif;
  font-weight: 400 !important;
  font-style: normal;
  color: #37474f;
  font-size: 110%;
  font-weight: 400;
  margin-top: 0em;
  margin-bottom: 0em;
}
h4.accordion {
  font-family: "IBM Plex Sans", sans serif;
  font-weight: 700 !important;
  font-style: normal;
  color: #3d3d3d;
  font-size: 130%;
  cursor: pointer;
  padding: 0.1em;
  background-color: #f2f2f2;
}
h4.accordion:before {
  content: "[+]";
  width: 2em;
  letter-spacing: -0.2em;
  display: inline-block;
  margin: 0.1em;
  text-align: center;
  color: #b12d28;
  font-family: "IBM Plex Mono", Courier;
  font-weight: 400 !important;
  font-style: normal;
}
h4.accordion.active {
  background-color: #b4cad4;
}
h4.accordion.active:before {
  content: "[-]";
}

@media screen {
  h1.pulldown, h2.pulldown, h3.pulldown, h4.pulldown {
    margin-top: 450px !important;
    margin-bottom: 0px !important;
  }
  h1.frosted, h2.frosted, h3.frosted {
    background-color: rgba(255, 255, 255, 0.8);
  }
  h2.frosted.pulldown.has-number {
    margin-left: -0.3m;
    padding-left: 3.3em;
    padding-top: 0.3em;
    padding-bottom: 0.3em;
  }
  h2.frosted.pulldown + p {
    background-color: rgba(255, 255, 255, 0.8);
    margin-left: -0.3m;
    padding-left: 0.3em;
    padding-bottom: 0.3em;
    margin-top: 0px;
  }
}
@media print {
  html:not(.print-pdf) h1.title {
    font-family: "IBM Plex Sans", sans serif;
    font-weight: 700 !important;
    font-style: normal;
    padding-top: 0px;
    padding-bottom: 0px;
    margin-bottom: 0.4em;
    margin-top: 0px;
    font-size: 220%;
    line-height: 120%;
    color: #b12d28;
  }
  html:not(.print-pdf) .subject {
    font-family: "IBM Plex Serif", serif;
    font-weight: 400 !important;
    font-style: italic;
    font-size: 100%;
    font-size: 100%;
    padding-top: 0px;
    padding-bottom: 0px;
    margin-bottom: 0.8em;
    margin-top: 0px;
    line-height: 120%;
    color: #37474f;
  }
  html:not(.print-pdf) .subtitle {
    font-family: "IBM Plex Sans Condensed", sans serif;
    font-weight: 300 !important;
    font-style: normal;
    font-size: 200%;
    padding-top: 0px;
    padding-bottom: 0px;
    margin-bottom: 0.4em;
    margin-top: 0px;
    line-height: 120%;
    color: #b12d28;
  }
  html:not(.print-pdf) .author {
    font-family: "IBM Plex Sans", sans serif;
    font-weight: 400 !important;
    font-style: normal;
    margin-bottom: 0.4em;
    font-size: 100%;
  }
  html:not(.print-pdf) .author .email {
    font-family: "IBM Plex Mono", Courier;
    font-weight: 400 !important;
    font-style: normal;
    font-size: 90%;
  }
  html:not(.print-pdf) .author .email:before {
    content: "";
  }
  html:not(.print-pdf) .author {
    color: #37474f;
  }
  html:not(.print-pdf) .date {
    font-family: "IBM Plex Sans", sans serif;
    font-weight: 400 !important;
    font-style: normal;
    font-size: 100%;
    color: #37474f;
  }
  html:not(.print-pdf) h1 {
    font-family: "IBM Plex Sans", sans serif;
    font-weight: 700 !important;
    font-style: normal;
    font-size: 180%;
    margin-top: 0em;
    margin-bottom: 0em;
    clear: both;
    line-height: 120%;
  }
  html:not(.print-pdf) h1.accordion {
    font-family: "IBM Plex Sans", sans serif;
    font-weight: 700 !important;
    font-style: normal;
    color: #3d3d3d;
    font-size: 130%;
    cursor: pointer;
    padding: 0.1em;
    background-color: #f2f2f2;
  }
  html:not(.print-pdf) h1.accordion:before {
    content: "[+]";
    width: 2em;
    letter-spacing: -0.2em;
    display: inline-block;
    margin: 0.1em;
    text-align: center;
    color: #b12d28;
    font-family: "IBM Plex Mono", Courier;
    font-weight: 400 !important;
    font-style: normal;
  }
  html:not(.print-pdf) h1.accordion.active {
    background-color: #b4cad4;
  }
  html:not(.print-pdf) h1.accordion.active:before {
    content: "[-]";
  }
  html:not(.print-pdf) h1 {
    color: #41886c;
  }
  html:not(.print-pdf) h1 .number {
    color: #41886c;
    padding: 0em;
    margin-left: -3em;
    display: block;
    float: left;
    width: 3em;
    font-size: 100%;
  }
  html:not(.print-pdf) h1.has-number {
    padding-left: 3em;
  }
  html:not(.print-pdf) h1 .tag {
    font-family: "IBM Plex Sans Condensed", sans serif;
    font-weight: 300 !important;
    font-style: normal;
    background-color: #41886c;
    color: #FFFFFF;
    font-size: 60%;
    padding: 0.25em 0.5em 0.25em 0.5em;
    border-radius: 0.25em;
  }
  html:not(.print-pdf) h1.primary {
    font-family: "IBM Plex Sans", sans serif;
    font-weight: 700 !important;
    font-style: normal;
    font-size: 180%;
    margin-top: 0em;
    margin-bottom: 0em;
    clear: both;
    line-height: 120%;
  }
  html:not(.print-pdf) h1.primary.accordion {
    font-family: "IBM Plex Sans", sans serif;
    font-weight: 700 !important;
    font-style: normal;
    color: #3d3d3d;
    font-size: 130%;
    cursor: pointer;
    padding: 0.1em;
    background-color: #f2f2f2;
  }
  html:not(.print-pdf) h1.primary.accordion:before {
    content: "[+]";
    width: 2em;
    letter-spacing: -0.2em;
    display: inline-block;
    margin: 0.1em;
    text-align: center;
    color: #b12d28;
    font-family: "IBM Plex Mono", Courier;
    font-weight: 400 !important;
    font-style: normal;
  }
  html:not(.print-pdf) h1.primary.accordion.active {
    background-color: #b4cad4;
  }
  html:not(.print-pdf) h1.primary.accordion.active:before {
    content: "[-]";
  }
  html:not(.print-pdf) h1.primary {
    color: #41886c;
  }
  html:not(.print-pdf) h1.primary .number {
    color: #41886c;
    padding: 0em;
    margin-left: -3em;
    display: block;
    float: left;
    width: 3em;
    font-size: 100%;
  }
  html:not(.print-pdf) h1.primary.has-number {
    padding-left: 3em;
  }
  html:not(.print-pdf) h1.primary .tag {
    font-family: "IBM Plex Sans Condensed", sans serif;
    font-weight: 300 !important;
    font-style: normal;
    background-color: #41886c;
    color: #FFFFFF;
    font-size: 60%;
    padding: 0.25em 0.5em 0.25em 0.5em;
    border-radius: 0.25em;
  }
  html:not(.print-pdf) h1.primary {
    color: #b12d28;
  }
  html:not(.print-pdf) h2 {
    font-family: "IBM Plex Sans", sans serif;
    font-weight: 700 !important;
    font-style: normal;
    color: #37474f;
    margin-top: 0em;
    margin-bottom: 0em;
    clear: both;
    font-size: 150%;
    line-height: 120%;
  }
  html:not(.print-pdf) h2.accordion {
    font-family: "IBM Plex Sans", sans serif;
    font-weight: 700 !important;
    font-style: normal;
    color: #3d3d3d;
    font-size: 130%;
    cursor: pointer;
    padding: 0.1em;
    background-color: #f2f2f2;
  }
  html:not(.print-pdf) h2.accordion:before {
    content: "[+]";
    width: 2em;
    letter-spacing: -0.2em;
    display: inline-block;
    margin: 0.1em;
    text-align: center;
    color: #b12d28;
    font-family: "IBM Plex Mono", Courier;
    font-weight: 400 !important;
    font-style: normal;
  }
  html:not(.print-pdf) h2.accordion.active {
    background-color: #b4cad4;
  }
  html:not(.print-pdf) h2.accordion.active:before {
    content: "[-]";
  }
  html:not(.print-pdf) h2 {
    color: #41886c;
  }
  html:not(.print-pdf) h2 .number {
    color: #41886c;
    padding: 0em;
    margin-left: -3em;
    display: block;
    float: left;
    width: 3em;
    font-size: 100%;
  }
  html:not(.print-pdf) h2.has-number {
    padding-left: 3em;
  }
  html:not(.print-pdf) h2 .tag {
    font-family: "IBM Plex Sans Condensed", sans serif;
    font-weight: 300 !important;
    font-style: normal;
    background-color: #41886c;
    color: #FFFFFF;
    font-size: 60%;
    padding: 0.25em 0.5em 0.25em 0.5em;
    border-radius: 0.25em;
  }
  html:not(.print-pdf) h3 {
    font-family: "IBM Plex Sans", sans serif;
    font-weight: 700 !important;
    font-style: normal;
    color: #37474f;
    font-size: 130%;
    margin-top: 0em;
    margin-bottom: 0em;
    clear: both;
    line-height: 120%;
  }
  html:not(.print-pdf) h3.accordion {
    font-family: "IBM Plex Sans", sans serif;
    font-weight: 700 !important;
    font-style: normal;
    color: #3d3d3d;
    font-size: 130%;
    cursor: pointer;
    padding: 0.1em;
    background-color: #f2f2f2;
  }
  html:not(.print-pdf) h3.accordion:before {
    content: "[+]";
    width: 2em;
    letter-spacing: -0.2em;
    display: inline-block;
    margin: 0.1em;
    text-align: center;
    color: #b12d28;
    font-family: "IBM Plex Mono", Courier;
    font-weight: 400 !important;
    font-style: normal;
  }
  html:not(.print-pdf) h3.accordion.active {
    background-color: #b4cad4;
  }
  html:not(.print-pdf) h3.accordion.active:before {
    content: "[-]";
  }
  html:not(.print-pdf) h3 {
    color: #41886c;
  }
  html:not(.print-pdf) h4 {
    font-family: "IBM Plex Sans", sans serif;
    font-weight: 400 !important;
    font-style: normal;
    color: #37474f;
    font-size: 110%;
    font-weight: 400;
    margin-top: 0em;
    margin-bottom: 0em;
  }
  html:not(.print-pdf) h4.accordion {
    font-family: "IBM Plex Sans", sans serif;
    font-weight: 700 !important;
    font-style: normal;
    color: #3d3d3d;
    font-size: 130%;
    cursor: pointer;
    padding: 0.1em;
    background-color: #f2f2f2;
  }
  html:not(.print-pdf) h4.accordion:before {
    content: "[+]";
    width: 2em;
    letter-spacing: -0.2em;
    display: inline-block;
    margin: 0.1em;
    text-align: center;
    color: #b12d28;
    font-family: "IBM Plex Mono", Courier;
    font-weight: 400 !important;
    font-style: normal;
  }
  html:not(.print-pdf) h4.accordion.active {
    background-color: #b4cad4;
  }
  html:not(.print-pdf) h4.accordion.active:before {
    content: "[-]";
  }
}
.reveal .block-title {
  margin-top: 5em;
  margin-bottom: 5em;
}

.reveal h1.title {
  font-family: "IBM Plex Sans", sans serif;
  font-weight: 700 !important;
  font-style: normal;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-bottom: 0.4em;
  margin-top: 0px;
  font-size: 220%;
  line-height: 120%;
  color: #b12d28;
  padding-left: 0px;
}

.reveal p.subject {
  font-family: "IBM Plex Serif", serif;
  font-weight: 400 !important;
  font-style: italic;
  font-size: 100%;
  font-size: 100%;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-bottom: 0.8em;
  margin-top: 0px;
  line-height: 120%;
  color: #37474f;
}

.reveal p.subtitle {
  font-family: "IBM Plex Sans Condensed", sans serif;
  font-weight: 300 !important;
  font-style: normal;
  font-size: 200%;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-bottom: 0.4em;
  margin-top: 0px;
  line-height: 120%;
  color: #b12d28;
}

.reveal p.author {
  font-family: "IBM Plex Sans", sans serif;
  font-weight: 400 !important;
  font-style: normal;
  margin-bottom: 0.4em;
  font-size: 100%;
}
.reveal p.author .email {
  font-family: "IBM Plex Mono", Courier;
  font-weight: 400 !important;
  font-style: normal;
  font-size: 90%;
}
.reveal p.author .email:before {
  content: "";
}
.reveal p.author {
  color: #37474f;
}

.reveal p.date {
  font-family: "IBM Plex Sans", sans serif;
  font-weight: 400 !important;
  font-style: normal;
  font-size: 100%;
  color: #37474f;
}

.reveal h1 {
  font-family: "IBM Plex Sans", sans serif;
  font-weight: 700 !important;
  font-style: normal;
  font-size: 180%;
  margin-top: 0em;
  margin-bottom: 0em;
  clear: both;
  line-height: 120%;
}
.reveal h1.accordion {
  font-family: "IBM Plex Sans", sans serif;
  font-weight: 700 !important;
  font-style: normal;
  color: #3d3d3d;
  font-size: 130%;
  cursor: pointer;
  padding: 0.1em;
  background-color: #f2f2f2;
}
.reveal h1.accordion:before {
  content: "[+]";
  width: 2em;
  letter-spacing: -0.2em;
  display: inline-block;
  margin: 0.1em;
  text-align: center;
  color: #b12d28;
  font-family: "IBM Plex Mono", Courier;
  font-weight: 400 !important;
  font-style: normal;
}
.reveal h1.accordion.active {
  background-color: #b4cad4;
}
.reveal h1.accordion.active:before {
  content: "[-]";
}
.reveal h1 {
  color: #41886c;
}
.reveal h1 .number {
  color: #41886c;
  padding: 0em;
  margin-left: -3em;
  display: block;
  float: left;
  width: 3em;
  font-size: 100%;
}
.reveal h1.has-number {
  padding-left: 3em;
}
.reveal h1 .tag {
  font-family: "IBM Plex Sans Condensed", sans serif;
  font-weight: 300 !important;
  font-style: normal;
  background-color: #41886c;
  color: #FFFFFF;
  font-size: 60%;
  padding: 0.25em 0.5em 0.25em 0.5em;
  border-radius: 0.25em;
}
.reveal h1 .number {
  font-family: "IBM Plex Mono", Courier;
  font-weight: 400 !important;
  font-style: normal;
}
.reveal h1 .number:after {
  content: "|";
}

.reveal h2 {
  font-family: "IBM Plex Sans", sans serif;
  font-weight: 700 !important;
  font-style: normal;
  color: #37474f;
  margin-top: 0em;
  margin-bottom: 0em;
  clear: both;
  font-size: 150%;
  line-height: 120%;
}
.reveal h2.accordion {
  font-family: "IBM Plex Sans", sans serif;
  font-weight: 700 !important;
  font-style: normal;
  color: #3d3d3d;
  font-size: 130%;
  cursor: pointer;
  padding: 0.1em;
  background-color: #f2f2f2;
}
.reveal h2.accordion:before {
  content: "[+]";
  width: 2em;
  letter-spacing: -0.2em;
  display: inline-block;
  margin: 0.1em;
  text-align: center;
  color: #b12d28;
  font-family: "IBM Plex Mono", Courier;
  font-weight: 400 !important;
  font-style: normal;
}
.reveal h2.accordion.active {
  background-color: #b4cad4;
}
.reveal h2.accordion.active:before {
  content: "[-]";
}
.reveal h2 {
  color: #41886c;
}
.reveal h2 .number {
  color: #41886c;
  padding: 0em;
  margin-left: -3em;
  display: block;
  float: left;
  width: 3em;
  font-size: 100%;
}
.reveal h2.has-number {
  padding-left: 3em;
}
.reveal h2 .tag {
  font-family: "IBM Plex Sans Condensed", sans serif;
  font-weight: 300 !important;
  font-style: normal;
  background-color: #41886c;
  color: #FFFFFF;
  font-size: 60%;
  padding: 0.25em 0.5em 0.25em 0.5em;
  border-radius: 0.25em;
}
.reveal h2 .number {
  font-family: "IBM Plex Mono", Courier;
  font-weight: 400 !important;
  font-style: normal;
}
.reveal h2 .number:after {
  content: "|";
}

.reveal h3 {
  font-family: "IBM Plex Sans", sans serif;
  font-weight: 700 !important;
  font-style: normal;
  color: #37474f;
  font-size: 130%;
  margin-top: 0em;
  margin-bottom: 0em;
  clear: both;
  line-height: 120%;
}
.reveal h3.accordion {
  font-family: "IBM Plex Sans", sans serif;
  font-weight: 700 !important;
  font-style: normal;
  color: #3d3d3d;
  font-size: 130%;
  cursor: pointer;
  padding: 0.1em;
  background-color: #f2f2f2;
}
.reveal h3.accordion:before {
  content: "[+]";
  width: 2em;
  letter-spacing: -0.2em;
  display: inline-block;
  margin: 0.1em;
  text-align: center;
  color: #b12d28;
  font-family: "IBM Plex Mono", Courier;
  font-weight: 400 !important;
  font-style: normal;
}
.reveal h3.accordion.active {
  background-color: #b4cad4;
}
.reveal h3.accordion.active:before {
  content: "[-]";
}
.reveal h3 {
  color: #41886c;
}

.reveal h4 {
  font-family: "IBM Plex Sans", sans serif;
  font-weight: 400 !important;
  font-style: normal;
  color: #37474f;
  font-size: 110%;
  font-weight: 400;
  margin-top: 0em;
  margin-bottom: 0em;
}
.reveal h4.accordion {
  font-family: "IBM Plex Sans", sans serif;
  font-weight: 700 !important;
  font-style: normal;
  color: #3d3d3d;
  font-size: 130%;
  cursor: pointer;
  padding: 0.1em;
  background-color: #f2f2f2;
}
.reveal h4.accordion:before {
  content: "[+]";
  width: 2em;
  letter-spacing: -0.2em;
  display: inline-block;
  margin: 0.1em;
  text-align: center;
  color: #b12d28;
  font-family: "IBM Plex Mono", Courier;
  font-weight: 400 !important;
  font-style: normal;
}
.reveal h4.accordion.active {
  background-color: #b4cad4;
}
.reveal h4.accordion.active:before {
  content: "[-]";
}

.reveal table {
  margin-bottom: 0px;
  margin-top: 1em;
  line-height: 150%;
  font-family: "IBM Plex Sans", sans serif;
  font-weight: 400 !important;
  font-style: normal;
  page-break: auto;
}
.reveal table caption {
  margin-top: 0.1em;
  text-align: left;
  page-break-after: avoid;
}
.reveal table thead {
  font-size: 100%;
}
.reveal table tbody {
  font-size: 100%;
}
.reveal table td {
  padding: 0px 1em 0px 0px;
}
.reveal table th {
  font-family: "IBM Plex Sans Condensed", sans serif;
  font-weight: 300 !important;
  font-style: normal;
  color: #41886c;
  padding: 0px 1em 0px 0px;
}
.reveal table tr {
  page-break-inside: avoid;
  vertical-align: top;
}
.reveal table thead th {
  border-bottom: 1px solid #41886c;
}
.reveal table tbody td {
  border-bottom: 1px solid #41886c;
}
.reveal table tbody tr:last-child td {
  border-bottom: 1px solid #41886c;
}

.reveal ul {
  margin-bottom: 0px;
  margin-top: 1em;
  line-height: 150%;
  font-family: "IBM Plex Sans", sans serif;
  font-weight: 400 !important;
  font-style: normal;
  page-break: auto;
  margin-top: 0px;
  margin-bottom: 1em;
  list-style-position: outside;
  list-style-type: "* ";
  padding-left: 3em;
}
.reveal ul li {
  margin-bottom: 0px;
  padding-left: 0.5em;
}
.reveal ul ::marker {
  font-family: "IBM Plex Mono", Courier;
  font-weight: 400 !important;
  font-style: normal;
  font-size: 95%;
  padding-right: 1em;
}
.reveal ul li p {
  margin-top: 1em;
}
.reveal ul .bib {
  font-size: 60%;
}
h1 + .reveal ul, h2 + .reveal ul, h3 + .reveal ul {
  margin-top: 1em !important;
}
.reveal ul ::marker {
  color: #b12d28;
}

.reveal ol {
  margin-bottom: 0px;
  margin-top: 1em;
  line-height: 150%;
  font-family: "IBM Plex Sans", sans serif;
  font-weight: 400 !important;
  font-style: normal;
  page-break: auto;
  margin-top: 0px;
  margin-bottom: 0px;
  padding-left: 3em;
  list-style: decimal;
}
.reveal ol ::marker {
  font-family: "IBM Plex Mono", Courier;
  font-weight: 400 !important;
  font-style: normal;
  font-size: 95%;
}
h1 + .reveal ol, h2 + .reveal ol, h3 + .reveal ol {
  margin-top: 1em !important;
}
.reveal ol ::marker {
  color: #b12d28;
}

.reveal .logo {
  padding-bottom: 1em;
  height: 8em;
}

.reveal .qrcode {
  float: right;
  width: 8em;
}
.reveal .qrcode img {
  width: 100%;
}

.reveal .ABSTRACT {
  border-top: #37474f 1px solid;
  border-bottom: #37474f 1px solid;
  margin: 1em;
  padding-bottom: 1em;
}
.reveal .ABSTRACT p:last-child {
  margin-bottom: 0px;
}
.reveal .ABSTRACT p {
  font-family: "IBM Plex Sans Condensed", sans serif;
  font-weight: 300 !important;
  font-style: normal;
}
.reveal .ABSTRACT p em {
  font-family: "IBM Plex Sans Condensed", sans serif;
  font-weight: 300 !important;
  font-style: italic;
}
.reveal .ABSTRACT ol li {
  font-family: "IBM Plex Sans Condensed", sans serif;
  font-weight: 300 !important;
  font-style: normal;
}
.reveal .ABSTRACT ul li {
  font-family: "IBM Plex Sans Condensed", sans serif;
  font-weight: 300 !important;
  font-style: normal;
}
.reveal .ABSTRACT strong {
  font-family: "IBM Plex Sans Condensed", sans serif;
  font-weight: 300 !important;
  font-style: normal;
  color: #41886c;
}
.reveal .ABSTRACT:after {
  content: "";
  display: table;
  clear: both;
}
.reveal .ABSTRACT .DROP {
  margin-top: 1em;
}
.reveal .ABSTRACT ol li:before {
  color: #41886c;
}
.reveal .ABSTRACT ul li:before {
  color: #41886c;
}

/* -------------------------------------------------------------------
   slides
   ------------------------------------------------------------------- */
.slides section {
  text-align: left;
}

/*# sourceMappingURL=reveal-custom.css.map */
