html {
  box-sizing: border-box;
}

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

/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
}

a,
area,
button,
[role=button],
input,
label,
select,
summary,
textarea {
  touch-action: manipulation;
}

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  height: auto;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:root {
  --fontStackSans: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --fontStackSerif: "Alegreya", Georgia, Times, "Times New Roman", serif;
}

@font-face {
  font-family: "ui";
  font-style: normal;
  font-display: auto;
  src: url("../fonts/ui.woff2") format("woff2"), url("../fonts/ui.woff") format("woff");
}
@font-face {
  font-family: "Open Sans";
  font-weight: 300;
  font-style: normal;
  font-display: auto;
  src: url("../fonts/OpenSans-Light.woff2") format("woff2"), url("../fonts/OpenSans-Light.woff") format("woff");
}
@font-face {
  font-family: "Open Sans";
  font-weight: 400;
  font-style: normal;
  font-display: auto;
  src: url("../fonts/OpenSans-Regular.woff2") format("woff2"), url("../fonts/OpenSans-Regular.woff") format("woff");
}
@font-face {
  font-family: "Open Sans";
  font-weight: 600;
  font-style: normal;
  font-display: auto;
  src: url("../fonts/OpenSans-SemiBold.woff2") format("woff2"), url("../fonts/OpenSans-SemiBold.woff") format("woff");
}
@font-face {
  font-family: "Open Sans";
  font-weight: 400;
  font-style: italic;
  font-display: auto;
  src: url("../fonts/OpenSans-Italic.woff2") format("woff2"), url("../fonts/OpenSans-Italic.woff") format("woff");
}
@font-face {
  font-family: "Open Sans";
  font-weight: 300;
  font-style: italic;
  font-display: auto;
  src: url("../fonts/OpenSans-LightItalic.woff2") format("woff2"), url("../fonts/OpenSans-LightItalic.woff") format("woff");
}
@font-face {
  font-family: "Open Sans";
  font-weight: 700;
  font-style: normal;
  font-display: auto;
  src: url("../fonts/OpenSans-Bold.woff2") format("woff2"), url("../fonts/OpenSans-Bold.woff") format("woff");
}
@font-face {
  font-family: "Open Sans";
  font-weight: 700;
  font-style: italic;
  font-display: auto;
  src: url("../fonts/OpenSans-BoldItalic.woff2") format("woff2"), url("../fonts/OpenSans-BoldItalic.woff") format("woff");
}
@font-face {
  font-family: "Open Sans";
  font-weight: 800;
  font-style: normal;
  font-display: auto;
  src: url("../fonts/OpenSans-ExtraBold.woff2") format("woff2"), url("../fonts/OpenSans-ExtraBold.woff") format("woff");
}
/* Portrait and Landscape */
/*
    2.822em
    2.645em
    2.479em
    2.323em
    2.178em
    2.041em
    1.913em
    1.793em
    1.68em
    1.575em
    1.476em
    1.383em
    1.296em
    1.215em
    1.138em
    1.067em
    1em
    0.937em
    0.878em
    0.823em
*/
html {
  font-size: 1em;
}

body {
  line-height: 1.45;
  color: #2a2a2a;
}

p,
ul,
ol {
  margin-bottom: 1.3em;
  font-family: var(--fontStackSans);
  font-weight: 400;
  font-size: 1.1rem;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  p,
  ul,
  ol {
    font-size: 1.3em;
    padding: 0;
  }
}

cite,
i {
  font-family: var(--fontStackSans);
  font-style: italic;
  font-weight: 400;
}

.bold,
strong {
  font-weight: 500;
}

blockquote {
  background-color: #e6e6e6;
  padding: 0.75rem;
}

li {
  margin-bottom: 0.5rem;
}

b {
  font-weight: bold;
}

ul,
ol {
  margin-left: 1.45rem;
}

.plain {
  list-style-type: none;
  margin-left: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.5em;
  font-weight: 500;
  line-height: 1.2;
  font-family: var(--fontStackSans);
  padding: 0;
}
@media only screen and (min-width: 768px) {
  h1,
  h2,
  h3,
  h4 {
    padding: 0;
  }
}

h1 {
  margin-top: 0;
  font-size: 1.602em;
  text-align: center;
  font-size: 1.4em;
}
@media only screen and (min-width: 768px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-size: 1.3rem;
}
@media only screen and (min-width: 600px) {
  h2 {
    font-size: 1.75rem;
  }
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.125em;
}

small,
.font_small {
  font-size: 0.889em;
}

.smaller {
  font-size: 80%;
}

.centered {
  text-align: center;
}

section a:link,
section a:visited {
  color: #2a2a2a;
  text-decoration-color: #EF4623;
  transition: text-decoration-color 0.2s ease-in-out;
}

section a:hover {
  text-decoration-color: #EF4623;
}

img.body {
  width: 225px;
  max-width: 225px;
  height: auto;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
  float: none;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 960px) {
  img.body {
    float: left;
    margin: 0.5rem 1rem;
  }
}

img.inlineImage {
  width: 100%;
  max-width: 45rem;
  height: auto;
  border: 1px solid #2a2a2a;
}

figure.inline {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  figure.inline {
    width: 90%;
  }
}

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

figure.left {
  display: none;
  float: left;
  padding-bottom: 2rem;
}
@media only screen and (min-width: 1100px) {
  figure.left {
    margin-left: -10rem;
    display: inline;
    height: auto;
  }
}
@media only screen and (min-width: 1400px) {
  figure.left {
    margin-left: -18.625rem;
  }
}

figure.left img {
  width: 15.625rem;
  height: auto;
}

figure.right {
  display: none;
  float: right;
  padding-bottom: 2rem;
}
@media only screen and (min-width: 1100px) {
  figure.right {
    width: 250px;
    height: auto;
    margin-right: -10rem;
    display: inline;
  }
}
@media only screen and (min-width: 1400px) {
  figure.right {
    margin-right: -18.625rem;
  }
}

figure.right img {
  width: 250px;
  height: auto;
}

figcaption {
  font-family: var(--fontStackSans);
  font-weight: 300;
  font-size: 1rem;
}

.markedOffTop::before {
  content: "";
  background-color: #c6c6c6;
  width: 40%;
  height: 2px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-bottom: 1rem;
}

.markedOffBottom::after {
  content: "";
  background-color: #c6c6c6;
  width: 40%;
  height: 2px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-top: 1rem;
}

figure.tableContainer {
  max-width: 100%;
  padding: 0 0.5rem;
  margin-left: auto;
  margin-right: auto;
  overflow-x: auto;
}
@media only screen and (min-width: 600px) {
  figure.tableContainer {
    max-width: 75rem;
  }
}

table {
  border-collapse: collapse;
  font-family: var(--fontStackSans);
  font-weight: 400;
}

tr.highlight td {
  background-color: #eee;
}

th {
  vertical-align: middle;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: left;
  background-color: #eee;
}

td,
th {
  padding: 0.5em 0.5em 0.5em 0.5em;
  line-height: 1.3;
  font-size: 1.1rem;
  border: 1px solid #dbdbdb;
}

td {
  background-color: #fff;
}

.slideOutMenu {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 256px;
  min-height: 100vh;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  z-index: 0;
  display: none;
  background-color: #acacac;
}

.slideout-menu-left {
  left: 0;
}

.slideout-menu-right {
  right: 0;
}

.slideout-panel {
  position: relative;
  z-index: 1;
  background-color: #FFF;
  /* A background-color is required */
  min-height: 100vh;
}

.slideout-open,
.slideout-open body,
.slideout-open .slideout-panel {
  overflow: hidden;
}

.slideout-open .slideout-menu {
  display: block;
}

.panel:before {
  content: "";
  display: block;
  background-color: transparent;
  transition: background-color 0.5s ease-in-out;
}

.panel-open:before {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
}

.slideOutMenu ul {
  list-style-type: none;
  font-family: "Roboto Condensed", sans-serif;
  color: #fff;
  margin-left: 30px;
  margin-top: 2rem;
}
.slideOutMenu ul li {
  padding-left: 7px;
  border-left: 3px solid transparent;
}
.slideOutMenu ul li.active {
  border-left: 3px solid #fff;
}

.slideOutMenu a, slideOutMenu a:visited {
  text-decoration: none;
  color: #fff;
  font-size: 1.4rem;
}

.toggleButtonMobile {
  font-family: "ui";
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  background-color: transparent;
  font-size: 2.5rem;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
}
@media only screen and (min-width: 960px) {
  .toggleButtonMobile {
    display: none;
  }
}

.internal .toggleButtonMobile {
  font-size: 30px;
  width: 40px;
  height: 40px;
  display: table-cell;
  vertical-align: middle;
  border-radius: 5px;
  background-color: #fff;
  top: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  padding: 0;
}
@media only screen and (min-width: 600px) {
  .internal .toggleButtonMobile {
    display: none;
  }
}

.splash .toggleButtonMobile {
  color: #fff;
  font-size: 4rem;
  padding: 0;
}
@media only screen and (min-width: 600px) {
  .splash .toggleButtonMobile {
    display: none;
  }
}

:root {
  --link-color: var(--highlight-color);
  --link-underline-color: var(--highlight-color);
  --link-active-color: var(--highlight-color);
  --text-decoration-color-active: var(--highlight-color);
}

:root {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  --bottom-safe-area: env(safe-area-inset-bottom);
  --top-safe-area: env(safe-area-inset-top);
  --highlight-color: #D22630;
  --highlight-color-link: #D22630;
  --heading-color: #002E5D;
  --text-color: #002957;
  --bg-color: #002957;
  --border-color: #EF4623;
  --border-color-bookcontainer: #002957;
  --leftNavWidth: 330px;
  --top-offset: 50px;
  --mobile-toggler-color: #ffffff;
  --wide-bg-color: #d7d7d7;
  --text-bg-color: #ffffff;
  --event-divider: rgba(239, 70, 35, .15);
  --splash-col-width: 620px;
  /*test*/
}

body {
  background-color: var(--wide-bg-color);
  display: flex;
  flex-flow: column nowrap;
  position: initial;
}

body.noScroll {
  overflow: hidden;
}

div.events-container {
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media only screen and (min-width: 768px) {
  div.events-container {
    margin-bottom: 3rem;
  }
}

h1.splash {
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.88rem;
}
@media only screen and (min-width: 768px) {
  h1.splash {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
}

#splash h1.splash {
  font-size: 1.88rem;
}
@media only screen and (min-width: 768px) {
  #splash h1.splash {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

main:not(.knockout) h1.splash {
  color: var(--text-color);
  line-height: 1.5;
}

h2.splash-logo {
  margin: 0 0 0 0;
}
@media only screen and (min-width: 768px) {
  h2.splash-logo {
    margin: 0 0 1rem 0;
  }
}

h2.splash-logo span {
  position: absolute;
  left: -10000px;
}

div.event {
  width: 100%;
  max-width: 768px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 2px solid var(--event-divider);
  border-bottom: 2px solid var(--event-divider);
  padding: 1rem 0 1rem 0;
  text-decoration: none;
}
@media only screen and (min-width: 768px) {
  div.event {
    padding: 2rem 0 2rem 0;
  }
}

div.splash-link-container {
  width: 100%;
  max-width: 768px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0 1rem 0;
  text-decoration: none;
}
@media only screen and (min-width: 768px) {
  div.splash-link-container {
    padding: 0rem 0 2rem 0;
  }
}

div.internal-event {
  width: 100%;
  max-width: 768px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0 1rem 0;
  text-decoration: none;
}
@media only screen and (min-width: 768px) {
  div.internal-event {
    padding: 2rem 0 2rem 0;
  }
}

div.internal-content {
  width: 100%;
  max-width: 39rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media only screen and (min-width: 768px) {
  div.internal-content {
    margin-bottom: 5rem;
    padding-left: 0;
    padding-right: 0;
  }
}

h2.internal {
  font-family: var(--fontStackSans);
  color: #fff;
  font-size: 1.13rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
@media only screen and (min-width: 768px) {
  h2.internal {
    font-size: 1.25rem;
    padding-left: 0;
    padding-right: 0;
  }
}

main:not(.knockout) h2.internal {
  color: var(--text-color);
}

div.internal-content p {
  width: 100%;
  max-width: 39rem;
  font-family: var(--fontStackSans);
  font-weight: 400;
  font-size: 1rem;
  color: #fff;
  line-height: 1.5;
  font-size: 0.88rem;
}
@media only screen and (min-width: 768px) {
  div.internal-content p {
    font-size: 1rem;
    padding-left: 0;
    padding-right: 0;
  }
}

main:not(.knockout) div.internal-content p {
  color: var(--text-color);
}

ul.internal {
  list-style-position: outside;
  margin: 0 0 1rem 0;
  padding: 0;
  color: #fff;
}
@media only screen and (min-width: 768px) {
  ul.internal {
    padding-left: 0;
  }
}

main:not(.knockout) ul.internal {
  color: var(--text-color);
}

ul.internal li {
  margin-bottom: 0;
  font-family: var(--fontStackSans);
  font-size: 1rem;
  color: #fff;
  font-size: 0.88rem;
  margin-left: 1.5rem;
}
@media only screen and (min-width: 768px) {
  ul.internal li {
    font-size: 1rem;
  }
}

main:not(.knockout) ul.internal li {
  color: var(--text-color);
}

ul.internal li a:link,
ul.internal li a:visited {
  font-family: var(--fontStackSans);
  font-size: 1rem;
  text-decoration: underline;
  color: #fff;
  font-size: 0.88rem;
}
@media only screen and (min-width: 768px) {
  ul.internal li a:link,
  ul.internal li a:visited {
    font-size: 1rem;
  }
}

main:not(.knockout) ul.internal li a:link,
main:not(.knockout) ul.internal li a:visited {
  color: var(--text-color);
}

div.event:not(:first-of-type) {
  border-top: 0;
}

a:hover.event,
a:focus.event {
  text-decoration: none;
}

div.event-martlet-container {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  width: 45px;
  height: 45px;
  order: 1;
}
@media only screen and (min-width: 768px) {
  div.event-martlet-container {
    width: 60px;
    height: 60px;
  }
}

div.splash-martlet-container {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  width: 45px;
  height: 45px;
  order: 1;
}
@media only screen and (min-width: 768px) {
  div.splash-martlet-container {
    width: 60px;
    height: 60px;
  }
}

img.event-martlet-inactive {
  width: 45px;
  height: 45px;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
  position: absolute;
}
@media only screen and (min-width: 768px) {
  img.event-martlet-inactive {
    width: 60px;
    height: 60px;
  }
}

div.splash-martlet-container img.event-martlet-inactive {
  width: 150px;
  height: 150px;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
  position: absolute;
  max-width: initial;
}

img.event-martlet-active {
  width: 45px;
  height: 45px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  position: absolute;
}
@media only screen and (min-width: 768px) {
  img.event-martlet-active {
    width: 60px;
    height: 60px;
  }
}

div.splash-martlet-container img.event-martlet-active {
  width: 45px;
  height: 45px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  position: absolute;
  max-width: initial;
}
@media only screen and (min-width: 768px) {
  div.splash-martlet-container img.event-martlet-active {
    width: 150px;
    height: 150px;
  }
}

div.internal-event img.event-martlet-active {
  opacity: 0;
}

@media not all and (pointer: coarse) {
  a:hover.event img.event-martlet-inactive,
  a:hover.internal-event img.event-martlet-inactive {
    opacity: 0;
  }
}
@media not all and (pointer: coarse) {
  a:hover.event-button + div.event-martlet-container > img.event-martlet-active,
  a:focus.event-button + div.event-martlet-container > img.event-martlet-active,
  a:hover.register-button + div.event-martlet-container > img.event-martlet-active,
  a:hover.splash-link-button + div.splash-martlet-container > img.event-martlet-active,
  a:focus.splash-link-button + div.splash-martlet-container > img.event-martlet-active {
    opacity: 1;
  }
}
@media not all and (pointer: coarse) {
  a:hover.event-button + div.event-martlet-container > img.event-martlet-inactive,
  a:hover.event-button + div.event-martlet-container > img.event-martlet-inactive,
  a:hover.splash-link-button + div.splash-martlet-container > img.event-martlet-inactive,
  a:focus.splash-link-button + div.splash-martlet-container > img.event-martlet-inactive {
    opacity: 0;
  }
}
h2.event-title {
  font-family: var(--fontStackSans);
  color: #fff;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  text-align: center;
  order: 2;
}
@media only screen and (min-width: 768px) {
  h2.event-title {
    font-size: 1.5rem;
  }
}

main:not(.knockout) h2.event-title {
  color: var(--highlight-color);
}

figure {
  margin-bottom: 1rem;
}

figure a img {
  width: 100%;
  max-width: 15rem;
}

figure img.splash-image {
  width: 100%;
  max-width: var(--splash-col-width);
}
figcaption {
  font-family: var(--fontStackSans);
  font-weight: 300;
  font-size: 0.88rem;
  color: #7d7d7d;
}

span.event-date,
span.event-description {
  font-family: var(--fontStackSans);
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
  display: block;
  font-size: 1rem;
  order: 3;
}
@media only screen and (min-width: 768px) {
  span.event-date,
  span.event-description {
    font-size: 1.25rem;
  }
}

#splash .event-date {
  text-align: center;
}

#splash span.event-description {
  text-align: center;
  font-weight: 400;
  font-style: italic;
}

main:not(.knockout) span.event-date,
main:not(.knockout) span.event-description {
  color: var(--text-color);
}

a:link.event-button,
a:visited.event-button,
a:link.register-button,
a:visited.register-button {
  font-family: var(--fontStackSans);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid var(--border-color);
  border-radius: 5px;
  padding: 0.6rem;
  transition: all 0.3s ease-in-out;
  background-color: transparent;
  order: 4;
}

main:not(.knockout) a:link.event-button,
main:not(.knockout) a:visited.event-button,
main:not(.knockout) a:link.register-button,
main:not(.knockout) a:visited.register-button {
  color: var(--text-color);
}

a:link.splash-link-button,
a:visited.splash-link-button {
  font-family: var(--fontStackSans);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid var(--border-color);
  border-radius: 5px;
  padding: 0.6rem;
  transition: all 0.3s ease-in-out;
  background-color: transparent;
  order: 2;
  margin-top: 100px;
}

@media not all and (pointer: coarse) {
  a:hover.event-button,
  a:focus.event-button,
  a:hover.register-button {
    background-color: var(--border-color);
  }
}
@media not all and (pointer: coarse) {
  main:not(.knockout) a:hover.event-button,
  main:not(.knockout) a:focus.event-button,
  main:not(.knockout) a:hover.register-button {
    background-color: var(--border-color);
    color: #ffffff;
  }
}
@media not all and (pointer: coarse) {
  a:hover.splash-link-button,
  a:focus.splash-link-button {
    background-color: var(--border-color);
  }
}
main#contentContainerRead {
  background-color: var(--text-bg-color);
}

main#contentContainerSchedule {
  background-color: #f7f7f7;
}

main {
  width: 100%;
  height: 100%;
  max-width: 1200px;
  -webkit-overflow-scrolling: touch;
  background-color: var(--bg-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  flex: 1;
}
@media only screen and (min-width: 768px) {
  main {
    background-size: 150px auto;
  }
}

main:not(.knockout) {
  background-color: var(--text-bg-color);
}

#topNav {
  width: 100%;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 768px) {
  #topNav {
    margin-bottom: 2rem;
  }
}

@media only screen and (min-width: 768px) {
  #topNav:not(.knockout #topNav) {
    padding-bottom: 2rem;
  }
}

header {
  background-color: var(--bg-color);
  border-top: 0px solid #EF4623;
  margin-bottom: 1rem;
  width: 100%;
  padding: 0 0.25rem 2rem 0.25rem;
}
@media only screen and (min-width: 768px) {
  header {
    padding: 0 0.25rem 0.25rem 0.25rem;
    border-top: 3px solid #EF4623;
    border-bottom: 0;
    margin-bottom: 0;
  }
}

header:not(main.knockout header) {
  border-bottom: 3px solid var(--border-color);
}
@media only screen and (min-width: 768px) {
  header:not(main.knockout header) {
    border-bottom: 0;
  }
}

header a:link,
header a:visited {
  padding: 0;
}

img#logoLarge {
  width: 250px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 768px) {
  img#logoLarge {
    width: 300px;
    margin-top: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  img#logoLarge {
    width: 400px;
  }
}

div#descriptorContainer {
  width: 100%;
  padding: 0rem 1rem 1rem 1rem;
  margin-bottom: 0;
  background-color: var(--text-bg-color);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  div#descriptorContainer {
    margin-bottom: 2rem;
    padding: 0rem 1rem 0rem 1rem;
  }
}

div#descriptorContainer a {
  color: var(--highlight-color);
  text-decoration: underline;
}

div#descriptorContainer.read {
  margin-bottom: 2rem;
}
@media only screen and (min-width: 768px) {
  div#descriptorContainer.read {
    margin-bottom: 2rem;
    padding: 1rem 1rem 1rem 1rem;
  }
}

section.descriptor {
  width: 100%;
  max-width: var(--splash-col-width);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  flex-flow: column nowrap;
  align-items: center;
}

section.descriptor.splash {
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-top: 1rem;
}
@media only screen and (min-width: 768px) {
  section.descriptor.splash {
    margin-top: 0rem;
  }
}

section.descriptor.normal-format {
  max-width: 44rem;
}

section.descriptor h2 {
  font-family: "Open Sans";
  font-size: 1.476rem;
  font-weight: 600;
  color: #002e5d;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0.75rem;
}
@media only screen and (min-width: 768px) {
  section.descriptor h2 {
    font-size: 1.476em;
  }
}

section.descriptor ul {
  display: flex;
  flex-direction: column;
  align-items: center;
}

span.sub-header {
  font-size: 1.067rem;
  text-align: center;
  font-family: var(--fontStackSans);
  font-weight: 600;
  color: #002e5d;
  display: block;
  font-size: 1rem;
  margin-bottom: 1rem;
}

section.descriptor.normal-format h2 {
  margin-bottom: 0.25rem;
}

section.descriptor.normal-format p {
  text-align: left;
  font-size: 1.25rem;
}

section.normal-format h3 {
  font-family: var(--fontStackSans);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.383rem;
  color: #002e5d;
}

section.normal-format ul {
  margin-top: 0;
  margin-left: 0rem;
  margin-bottom: 0.5rem;
  list-style-type: none;
}

section.normal-format ul li {
  font-size: 1.067rem;
}

section.descriptor p {
  font-family: "Open Sans";
  font-weight: 500;
  color: var(--text-color);
  font-size: 0.937rem;
  margin-bottom: 1.5rem;
  text-align: justify;
  hyphens: auto;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  section.descriptor p {
    font-size: 1.25rem;
  }
}

p.details {
  font-family: "Open Sans";
  font-weight: 500;
  color: var(--text-color);
  font-size: 0.937rem;
  margin-bottom: 1.5rem;
  text-align: justify;
  hyphens: auto;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  p.details {
    font-size: 1.25rem;
  }
}

section.descriptor a,
section.descriptor a:visited {
  color: #fff;
  text-decoration-color: #fff;
}

section.descriptor a:hover {
  text-decoration-color: #fff;
}

section.descriptor p > strong {
  display: block;
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

img.splash-martlet {
  width: 50px;
  height: auto;
}

img.orange-martlet {
  width: 80px;
  height: 80px;
  margin-top: 3rem;
}

img#martlet {
  width: 35px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -18px;
}
@media only screen and (min-width: 768px) {
  img#martlet {
    width: 58px;
    height: auto;
    bottom: -29px;
  }
}

div#quickLinks {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 4rem;
}

div.quickLinkContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

@media not all and (pointer: coarse) {
  div.quickLinkContainer:hover {
    -webkit-animation-name: pulse;
    animation-name: pulse;
    animation-duration: 0.2s;
  }
}

div.quickLinkContainer a:link,
div.quickLinkContainer a:visited {
  text-decoration: none;
}

div.quickLink {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 2rem;
  cursor: pointer;
  width: 130px;
  height: 130px;
  border-radius: 5px;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  div.quickLink {
    width: 250px;
    height: 238px;
  }
}

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
div#schedule {
  background-color: #002e5d;
  background-image: url("../images/bgSchedule.svg");
  background-position: bottom 70% center;
  background-repeat: no-repeat;
  background-size: 40%;
}
@media only screen and (min-width: 768px) {
  div#schedule {
    background-size: 45%;
  }
}

div#read {
  background-color: #d22630;
  background-image: url("../images/bgRead.svg");
  background-position: bottom 70% center;
  background-repeat: no-repeat;
  background-size: 45%;
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  div#read {
    background-size: 50%;
  }
}

div#contest {
  background-color: #eaaa00;
  background-image: url("../images/bgAward.svg");
  background-position: bottom 70% center;
  background-repeat: no-repeat;
  background-size: 45%;
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  div#contest {
    background-size: 45%;
  }
}

div.quickLink div {
  text-decoration: none;
  margin-top: auto;
  margin-bottom: 1rem;
}

div.quickLink div span {
  font-family: "Open Sans";
  font-weight: 400;
  font-size: 1.476rem;
  color: #fff;
}
@media only screen and (min-width: 768px) {
  div.quickLink div span {
    font-size: 1.68rem;
  }
}

div#internalHeaderContainer {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  background-color: var(--bg-color);
  border-top: 3px solid var(--border-color);
  margin-bottom: 1rem;
  padding: 0.5rem 0.5rem 0.5rem 0.5rem;
  position: relative;
}
@media only screen and (min-width: 768px) {
  div#internalHeaderContainer {
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
  }
}

span.eventDate {
  display: none;
  position: absolute;
  font-family: var(--fontStackSans);
  font-weight: 600;
  color: #102e5a;
  font-size: 3rem;
  top: 0;
  right: 5px;
  opacity: 0.2;
}
@media only screen and (min-width: 768px) {
  span.eventDate {
    display: initial;
  }
}

div#internalHeaderContainer > a:link,
div#internalHeaderContainer > a:visited {
  text-decoration: none;
}

div#internalHeaderContainer a {
  position: relative;
}

div#internalHeaderContainer a span {
  position: absolute;
  top: 65px;
  right: 0;
  font-family: var(--fontStackSans);
  font-weight: 600;
  color: #102e5a;
  top: 35px;
  font-size: 0.6rem;
}
@media only screen and (min-width: 768px) {
  div#internalHeaderContainer a span {
    top: 65px;
    font-size: 0.9rem;
  }
}

div#internalHeaderContainer img#logoSmall {
  width: 175px;
  height: auto;
}
@media only screen and (min-width: 768px) {
  div#internalHeaderContainer img#logoSmall {
    width: 330px;
  }
}

div#headingContainer h1 {
  font-family: var(--fontStackSans);
  color: #002e5d;
  font-weight: 600;
  font-size: 1.138rem;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  div#headingContainer h1 {
    font-size: 1.476rem;
    margin-bottom: 1rem;
  }
}

div#bookGrid {
  display: grid;
  grid-template-columns: repeat(1, minmax(300px, 350px));
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  grid-row-gap: 30px;
  grid-gap: 30px;
  margin-bottom: 3rem;
}
@media only screen and (min-width: 768px) {
  div#bookGrid {
    grid-template-columns: repeat(2, minmax(300px, 350px));
  }
}
@media only screen and (min-width: 1000px) {
  div#bookGrid {
    grid-template-columns: repeat(2, minmax(400px, 450px));
  }
}

div.bookContainer {
  background-color: #fbfbfb;
  border: 1px solid var(--border-color-bookcontainer);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-top: 2rem;
}

div.bookContainer h3 {
  text-align: center;
  margin-top: 1rem;
  font-style: italic;
  font-family: var(--fontStackSans);
  font-weight: 400;
  font-size: 1.067rem;
  line-height: 1.2;
  padding: 0 0.5rem;
  margin-bottom: 1.5rem;
  order: 2;
}
@media only screen and (min-width: 768px) {
  div.bookContainer h3 {
    font-size: 1.067rem;
  }
}

div.bookContainer h3.reduceSize {
  font-size: 1rem;
}

div.bookContainer h3.reduceSizePlus {
  font-size: 1rem;
}

span.bookAuthor {
  font-style: normal;
  font-weight: 300;
  font-size: 0.823rem;
}
@media only screen and (min-width: 768px) {
  span.bookAuthor {
    font-size: 0.823rem;
  }
}

h3.reduceSize span.bookAuthor {
  font-size: 0.937rem;
}

h3.reduceSizePlus span.bookAuthor {
  font-size: 0.823rem;
}

img.bookCover {
  height: 225px;
  width: auto;
  margin-bottom: 1rem;
  border: 1px solid #cccccc;
  order: 1;
}

div.bookContainer p {
  font-family: var(--fontStackSans);
  font-weight: 300;
  font-size: 0.878rem;
  color: #000;
  margin-bottom: 1rem;
  padding: 0rem 1rem;
  order: 3;
}
@media only screen and (min-width: 768px) {
  div.bookContainer p {
    font-size: 0.937rem;
  }
}

div.bookContainer p cite,
div.bookContainer p i {
  font-weight: 300;
}

div.bookContainer blockquote {
  font-family: var(--fontStackSans);
  font-weight: 300;
  font-size: 0.878rem;
  color: #000;
  width: 85%;
  margin-bottom: 2rem;
  font-style: italic;
  border-radius: 5px;
  background-color: #ececec;
  hanging-punctuation: first;
  order: 4;
}
@media only screen and (min-width: 768px) {
  div.bookContainer blockquote {
    font-size: 0.937rem;
  }
}

@supports not (hanging-punctuation: first) {
  div.bookContainer blockquote {
    text-indent: -0.5ch;
    padding: 1rem;
  }
}
div.bookContainer a:link,
div.bookContainer a:visited {
  color: #000000;
}

span.facName {
  font-weight: 400;
  font-size: 0.823rem;
}

img.bookMartlet {
  width: 35px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.25rem;
  margin-top: auto;
  order: 5;
}

/*Schdule-----------------------*/
#scheduleContainer {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 0 0 5px 5px;
  border-bottom: 5px solid #d22630;
  width: 100%;
}

.scheduleItem {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #dbdbdb;
  width: 100%;
  max-width: 1100px;
}
@media only screen and (min-width: 768px) {
  .scheduleItem {
    flex-direction: row;
  }
}

.scheduleItem:last-of-type {
  border-bottom: none;
  margin-bottom: 1rem;
}

.date {
  font-family: var(--fontStackSans);
  color: #002e5d;
  font-weight: 300;
  font-style: normal;
  flex-basis: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0.5rem;
  font-size: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .date {
    flex-basis: 30%;
    flex-shrink: 0;
    margin-left: 1rem;
    justify-content: flex-start;
    padding-top: 0;
    font-size: 1.5rem;
  }
}

span.bold {
  font-weight: bold;
}

.events {
  flex-basis: 65%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .events {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}

.splash-container {
  flex-basis: 65%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .splash-container {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}

.eventContainer {
  margin-bottom: 1rem;
  transition: all;
  display: flex;
  justify-content: center;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .eventContainer {
    justify-content: flex-start;
  }
}

.eventContainer:first-of-type {
  margin-top: 1rem;
}

.events-splash-link {
  margin-bottom: 1rem;
  transition: all;
  display: flex;
  justify-content: center;
  width: 100%;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .events-splash-link {
    justify-content: flex-start;
  }
}

.titleTimeContainer {
  background-color: #ffffff;
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 1rem;
  width: 96%;
}
@media only screen and (min-width: 768px) {
  .titleTimeContainer {
    justify-content: flex-start;
    width: 100%;
  }
}

.descriptionContainer {
  display: none;
}

.descriptionContainer.open {
  display: block;
}

.inline {
  width: 90%;
  max-width: 500px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
  border: 1px solid #d22630;
}

.noBorder {
  border: none;
}

i {
  font-style: italic;
}

.caption {
  font-size: 0.8rem;
  font-weight: 300;
  font-family: var(--fontStackSans);
  padding-left: 0.1rem;
  color: #999999;
  margin-bottom: 1rem;
  display: block;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

/*.eventContainer:nth-of-type(2) .descriptionContainer{
	display: block;
	flex-basis: 100%;
}*/
.timeTitleContainer {
  display: flex;
  flex-direction: row;
}

.titleTime {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 0.75rem;
  cursor: pointer;
  flex-basis: 80%;
}
.titleTime h2 {
  font-family: var(--fontStackSans);
  font-weight: bold;
  color: #d22630;
  font-size: 1.2rem;
  line-height: 1.2;
  margin-top: 0;
}
@media only screen and (min-width: 768px) {
  .titleTime h2 {
    font-size: 1.5rem;
  }
}

span.timeLocation {
  font-family: var(--fontStackSans);
  font-size: 0.9rem;
  color: #000000;
  font-weight: 500;
  display: inline-block;
}
@media only screen and (min-width: 768px) {
  span.timeLocation {
    font-size: 1.1rem;
  }
}

div.titleTime span.timeLocation a:link,
div.titleTime span.timeLocation a:visited,
div.events div.descriptionContainer a.normalLink:link,
div.events div.descriptionContainer a.normalLink:visited {
  color: #d22630;
  font-family: var(--fontStackSans);
  border: 0;
  padding: 0;
  background-color: transparent;
  display: inline;
  margin: auto;
}

span.timeLocation span {
  font-weight: 400;
  font-size: 0.8rem;
}
@media only screen and (min-width: 768px) {
  span.timeLocation span {
    font-size: 1rem;
  }
}

div.opener {
  margin-left: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
}

div.opener span::after {
  font-family: var(--fontStackSans);
  color: #005eb8;
  content: "+";
  font-size: 2.75em;
  line-height: 1;
  margin-right: 1rem;
}

div.opener.open span::after {
  font-family: var(--fontStackSans);
  color: #1ea2d7;
  content: "-";
  font-size: 2.75em;
  line-height: 0.5;
  margin-right: 1rem;
}

div.descriptionContainer h3,
div.descriptionContainer h4 {
  font-family: var(--fontStackSans);
  font-size: 1.1rem;
  font-weight: bold;
  color: #000000;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-bottom: 0.5rem;
}

div.descriptionContainer h3 + h4 {
  margin-top: 1rem;
}

div.descriptionContainer p {
  font-family: var(--fontStackSans);
  color: #262626;
  font-weight: 400;
  font-size: 1.1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

div.descriptionContainer li {
  font-family: var(--fontStackSans);
  color: #262626;
  font-weight: 400;
  font-size: 1.1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-bottom: 1rem;
  line-height: 1.3;
  list-style-position: inside;
}

div.descriptionContainer a:link,
div.descriptionContainer a:visited {
  font-family: var(--fontStackSans);
  color: #005eb8;
}

.collaboration {
  width: 100%;
  max-width: 330px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

@media not all and (pointer: coarse) {
  .collaboration figure a:hover {
    -webkit-animation-name: pulse;
    animation-name: pulse;
    animation-duration: 0.2s;
  }
}

.collaboration figure a:link,
.collaboration figure a:visited {
  background-color: #4c5566;
  padding: 2rem;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
}

.moose-hide {
  width: 100%;
  max-width: 300px;
}

figcaption {
  font-size: 0.9rem;
  font-style: italic;
}

footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-color: var(--bg-color);
  background-image: url(../images/bgEdge.png);
  background-position: bottom 0 right 0;
  background-repeat: no-repeat;
  background-size: 100px auto;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media only screen and (min-width: 1200px) {
  footer {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

div.logos {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 1rem;
}

div.logos a:link,
div.logos a:visited {
  text-decoration: none;
  margin: 1rem;
}

img#uvicLogo {
  width: 165px;
  height: auto;
}
@media only screen and (min-width: 768px) {
  img#uvicLogo {
    width: 200px;
  }
}

footer img#mooseHideLogo {
  width: 125px;
  height: auto;
}

div.info {
  display: flex;
  justify-content: center;
}

span.info-content {
  font-family: var(--fontStackSans);
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
}

span.info-content a:link,
span.info-content a:visited {
  color: #fff;
}

p + h2,
p + h3,
ul + h2,
ul + h3 {
  margin-top: 1.414em;
}

div.descriptionContainer a.registration:link,
div.descriptionContainer a.registration:visited,
section.descriptor a.registration:link,
section.descriptor a.registration:visited {
  font-family: var(--fontStackSans);
  font-weight: 600;
  color: #fff;
  background-color: #005eb8;
  padding: 1rem 0.5rem;
  border-radius: 5px;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
  display: block;
  width: 150px;
  text-align: center;
}

div.descriptionContainer.read section.descriptor a:visited {
  color: black;
}

.italic {
  font-style: italic;
}

.center {
  text-align: center;
}

.thankyou, .acknowledgment {
  font-family: var(--fontStackSans);
  width: 100%;
  max-width: 300px;
  font-size: 0.7rem;
  font-style: italic;
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 300;
}
@media only screen and (min-width: 768px) {
  .thankyou, .acknowledgment {
    max-width: 80ex;
    margin-bottom: 0.7rem;
    font-size: 1rem;
  }
}

.archive {
  text-align: center;
  font-family: "Open Sans";
  font-weight: 300;
  font-size: 0.7rem;
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .archive {
    font-size: 1rem;
  }
}

.archive a:link,
.archive a:visited {
  color: #fff;
  text-decoration-color: #fff;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  padding: 0.5rem;
}

.archive a:hover {
  text-decoration-color: #fff;
}

@media only screen and (min-width: 768px) {
  main.splash nav#topNav div.top-nav-container {
    display: none;
  }
}

/*	background-image: url(../images/splash-bg.png);
	background-repeat: no-repeat;
	background-position: 50% 120%;
	background-size: 600px 600px;
}*/
nav#topNav:not(main.knockout nav#topNav) {
  border-bottom: 3px solid var(--border-color);
}

main.splash nav#topNav[data-state=closed] {
  padding: 0;
}

nav#topNav[data-state=closed] {
  transform: translate3d(-100%, 0, 0);
  position: fixed;
  top: var(--top-offset);
  left: 0;
  background-color: var(--bg-color);
  border-radius: 0;
  display: flex;
  justify-content: center;
  padding: 0.5rem 2rem;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  opacity: 1;
  width: 100%;
  height: 100%;
  z-index: 5;
}
@media only screen and (min-width: 768px) {
  nav#topNav[data-state=closed] {
    position: static;
    transform: translate3d(0, 0, 0);
    width: 100%;
    padding: 0.5rem 0 0rem 0.5rem;
    background-color: var(--bg-color);
  }
}

nav#topNav[data-state=open] {
  position: fixed;
  transform: translate3d(0, 0, 0);
  top: var(--top-offset);
  left: 0;
  background-color: var(--bg-color);
  display: flex;
  justify-content: center;
  padding: 0.5rem 2rem;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  opacity: 0.95;
  width: 100%;
  height: 100%;
  z-index: 5;
}
@media only screen and (min-width: 768px) {
  nav#topNav[data-state=open] {
    position: static;
    transform: translate3d(0, 0, 0);
    width: 100%;
    max-width: 62.5rem;
    padding: 0.5rem;
    border-radius: 5px;
    background-color: var(--bg-color);
  }
}

nav#topNav .top-nav-container {
  width: 100%;
  display: flex;
}
@media only screen and (min-width: 768px) {
  nav#topNav .top-nav-container {
    justify-content: center;
  }
}

nav#topNav .top-nav-container ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  nav#topNav .top-nav-container ul {
    flex-direction: row;
  }
}

nav#topNav .top-nav-container ul li {
  margin: 0 1rem;
}

nav#topNav .top-nav-container ul li a:link,
nav#topNav .top-nav-container ul li a:visited {
  color: #fff;
  font-family: var(--fontStackSans);
  font-weight: 700;
  font-size: 1.5rem;
  padding: 0.25rem;
  display: block;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
@media only screen and (min-width: 768px) {
  nav#topNav .top-nav-container ul li a:link,
  nav#topNav .top-nav-container ul li a:visited {
    text-decoration: underline;
    text-underline-position: under;
    text-decoration-color: rgba(255, 255, 255, 0.15);
  }
}

nav#topNav .top-nav-container ul li.active a:link,
nav#topNav .top-nav-container ul li.active a:visited {
  text-decoration: none;
  color: var(--border-color);
}

nav#topNav .top-nav-container ul li a:hover,
nav#topNav .top-nav-container ul li a:focus {
  text-decoration: underline;
  color: var(--border-color);
}

div#top-header {
  background-color: var(--bg-color);
  width: 100%;
  height: var(--top-offset);
  display: flex;
  align-items: center;
  margin-bottom: 0;
  border-top: 3px solid var(--border-color);
  position: sticky;
  top: 0;
}
@media only screen and (min-width: 768px) {
  div#top-header {
    display: none;
  }
}

div#top-header button.topNavMobile {
  appearance: none;
  border: 0;
  background-color: transparent;
  transition: color 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  padding: 1.25rem;
  margin-left: -1rem;
  color: var(--mobile-toggler-color);
  display: block;
  cursor: pointer;
  position: static;
  margin-left: auto;
  z-index: 10;
}
@media only screen and (min-width: 768px) {
  div#top-header button.topNavMobile {
    display: none;
  }
}

span.lineContainer {
  display: block;
  width: 1.9rem;
  height: 1.5rem;
  position: relative;
}

.topNavTopBar,
.topNavBottomBar {
  display: block;
  width: 1.9rem;
  height: 0.125rem;
  border-radius: 9999px;
  background-color: currentColor;
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0.125rem;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.topNavTopBar {
  top: 0.4375rem;
}

.topNavBottomBar {
  bottom: 0.4375rem;
}

div#top-header[data-state=open] span.topNavTopBar {
  top: 0.6875rem;
  transform: rotate(45deg);
}

div#top-header[data-state=open] span.topNavBottomBar {
  bottom: 0.6875rem;
  transform: rotate(-45deg);
}

#topNav[data-state=closed] img.mobile-martlet {
  opacity: 0;
  transition: opacity 0.3s ease-out;
  width: 60px;
  height: auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  bottom: 15vh;
}
@media only screen and (min-width: 768px) {
  #topNav[data-state=closed] img.mobile-martlet {
    display: none;
  }
}

#topNav[data-state=open] img.mobile-martlet {
  opacity: 1;
  transition: opacity 0.3s ease-out;
  width: 60px;
  height: auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 15vh;
  z-index: 10;
}
@media only screen and (min-width: 768px) {
  #topNav[data-state=open] img.mobile-martlet {
    display: none;
  }
}

div.circle-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border-top: 2px solid var(--event-divider);
  border-bottom: 2px solid var(--event-divider);
  padding-top: 1rem;
  padding-bottom: 1rem;
  width: 95%;
  max-width: 768px;
  padding: 1rem;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 768px) {
  div.circle-container {
    justify-content: center;
    flex-wrap: nowrap;
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 3rem;
  }
}

a:link.circle-link,
a:visited.circle-link {
  text-decoration: none;
  margin: 1rem;
}
@media only screen and (min-width: 768px) {
  a:link.circle-link,
  a:visited.circle-link {
    margin: 1rem;
  }
}

a:hover.circle-link,
a:focus.circle-link {
  text-decoration: none;
}

div.circle {
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8rem;
  height: 8rem;
  border: 3px solid var(--border-color);
  font-family: var(--fontStackSans);
  font-weight: 800;
  color: var(--text-color);
  font-size: 1.4rem;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
@media only screen and (min-width: 768px) {
  div.circle {
    width: 10rem;
    height: 10rem;
    border: 6px solid var(--border-color);
    font-size: 1.8rem;
  }
}

div.secondary div.circle {
  width: 6rem;
  height: 6rem;
  font-size: 1rem;
  font-weight: 700;
  border: 4px solid var(--border-color);
}

@media not all and (pointer: coarse) {
  a:hover.circle-link div.circle,
  a:focus.circle-link div.circle {
    background-color: var(--border-color);
    text-decoration: none;
    color: #fff;
  }
}
blockquote.internal {
  background-color: var(--text-bg-color);
  margin-left: 1rem;
  margin-bottom: 1rem;
}

blockquote.internal p {
  font-style: italic;
  margin-bottom: 0.5rem;
}

blockquote.internal p:last-of-type {
  margin-bottom: 0.25rem;
}

span.attribution {
  font-size: 0.8rem;
  text-align: right;
  font-family: var(--fontStackSans);
  color: var(--text-color);
  display: block;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
@media only screen and (min-width: 768px) {
  span.attribution {
    font-size: 0.9rem;
  }
}

div.target-box:target {
  background-color: var(--border-color);
  padding: 1rem;
  border-radius: 5px;
}

main div.internal-content div.target-box:target * {
  color: #fff;
}

img.splash-martlet {
  width: 80px;
  height: 80px;
  margin-bottom: 2rem;
  opacity: 0.15;
}
@media only screen and (min-width: 768px) {
  img.splash-martlet {
    width: 120px;
    height: 120px;
  }
}

div.internal-content p a:link,
div.internal-content p a:visited {
  color: var(--text-color);
}

p.details {
  font-family: "Open Sans";
  font-weight: 500;
  color: var(--text-color);
  font-size: 0.937rem;
  margin-bottom: 3rem;
  text-align: justify;
  hyphens: auto;
  width: 100%;
  max-width: var(--splash-col-width);
  padding: 0 1rem;
}
@media only screen and (min-width: 768px) {
  p.details {
    font-size: 1.25rem;
    padding: 0;
  }
}

p.details a {
  color: var(--link-color);
  text-decoration: underline;
  text-decoration-color: var(--link-underline-color);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

p.details a:hover {
  color: var(--link-active-color);
  text-decoration-color: var(--link-underline-color-active);
}

.video-embed {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

div.internal-content p.caption {
  font-family: var(--fontStackSans);
  font-weight: 300;
  font-size: 0.88rem;
  color: #7d7d7d;
}

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

.italic {
  font-style: italic;
}

.fig-grid {
  display: grid;
  column-gap: 1rem;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 500px) {
  .fig-grid {
    grid-template-columns: 50% 50%;
  }
}

figure {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 500px) {
  figure {
    width: var(--splash-col-width);
    max-width: 100%;
  }
}

figcaption {
  align-self: flex-start;
  padding-left: 0.25rem;
  font-size: 0.8rem;
}
@media only screen and (min-width: 500px) {
  figcaption {
    padding-left: 0;
    font-size: 1rem;
  }
}

figure img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: auto;
}

.event-banner {
  width: 100%;
  max-width: 39rem;
  height: auto;
}

img.event-banner + div.internal-events-container {
  margin-top: -4rem;
}

.ariella, .aisha-story {
  width: 400px;
  height: auto;
}

.ming {
  width: 300px;
  height: auto;
}

.ariella + figcaption,
.aisha-story + figcaption,
.ming + figcaption {
  text-align: center;
  width: 100%;
}

.video {
  margin-bottom: 1.5rem;
}

/*# sourceMappingURL=style2023-live.css.map */
