@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap");
:root {
  --clr-brand: #127BBF;
  --clr-brand-darker-1: hsl( from var( --clr-brand ) h s calc( l * 0.75 ) / 1 );
  --clr-brand-darker-2: hsl( from var( --clr-brand ) h s calc( l * 0.5 ) / 1 );
  --clr-brand-darker-3: hsl( from var( --clr-brand ) h s calc( l * 0.25 ) / 1 );
  --clr-brand-lighter-1: hsl( from var( --clr-brand ) h s calc( l * 1.25 ) / 1 );
  --clr-brand-lighter-2: hsl( from var( --clr-brand ) h s calc( l * 1.5 ) / 1 );
  --clr-brand-lighter-3: hsl( from var( --clr-brand ) h s calc( l * 1.75 ) / 1 );
  --clr-brand-complement: #A04A9B;
  --clr-brand-complement-darker-1: hsl( from var( --clr-brand-complement ) h s calc( l * 0.75 ) / 1 );
  --clr-brand-complement-darker-2: hsl( from var( --clr-brand-complement ) h s calc( l * 0.5 ) / 1 );
  --clr-brand-complement-darker-3: hsl( from var( --clr-brand-complement ) h s calc( l * 0.25 ) / 1 );
  --clr-brand-complement-lighter-1: hsl( from var( --clr-brand-complement ) h s calc( l * 1.25 ) / 1 );
  --clr-brand-complement-lighter-2: hsl( from var( --clr-brand-complement ) h s calc( l * 1.5 ) / 1 );
  --clr-brand-complement-lighter-3: hsl( from var( --clr-brand-complement ) h s calc( l * 1.75 ) / 1 );
  --clr-black: #000;
  --clr-white: #FFF;
  --clr-grey: #747273;
  --clr-dark-grey: color-mix( in oklab, var( --clr-black ) 50%, var( --clr-grey ) );
  --clr-darker-grey: color-mix( in oklab, var( --clr-black ) 75%, var( --clr-grey ) );
  --clr-blue: #127BBF;
  --clr-gold: #EDB814;
  --clr-green: #00754A;
  --clr-red: #BE1522;
  --clr-yellow: #FFC52B;
  --clr-orange: #E2820D;
  --clr-pink: #E3007B;
  --clr-purple: #4A1C62;
  --clr-red-dark: hsl( from var( --clr-red ) h s calc( l * 0.75 ) / 1 );
  --clr-twitter: #3AA9DF;
  --clr-facebook: #496DA9;
  --clr-google: #E35F44;
  --clr-youtube: #DC3C32;
  --clr-instagram: #6F54A7;
  --clr-linkedin: #0085AF;
  --clr-mastodon: #595AFF;
  --clr-bluesky: #5C8BFF;
}

:root {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
}
html.no-scroll,
body.no-scroll {
  overflow: hidden;
}

body {
  position: relative;
  width: 100%;
  text-align: center;
}
body * {
  outline: none;
}

body * {
  -webkit-text-size-adjust: none;
}

header.page-top {
  float: left;
  width: 0px;
  height: 0px;
  overflow: hidden;
  font-size: 0.000005em;
  text-indent: -99999px;
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: 1rem;
}

h1.page-top {
  float: left;
  width: 0px;
  height: 0px;
  overflow: hidden;
  font-size: 0.000005em;
  text-indent: -99999px;
  text-align: left;
}

address {
  font-style: normal;
}

strong {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}
strong em {
  font-family: "Roboto", sans-serif;
  font-style: italic;
}

em {
  font-family: "Roboto", sans-serif;
  font-style: italic;
}
em strong {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}

.page-width {
  width: 100%;
  padding: 0 1rem;
}
@media only screen and (min-width: 980px) {
  .page-width {
    padding: 0;
  }
}
@media only screen and (min-width: 980px) and (max-width: 1209px) {
  .page-width {
    width: 916px;
  }
}
@media only screen and (min-width: 1210px) {
  .page-width {
    width: 1146px;
  }
}

.bold {
  font-weight: 700;
}

.screen-reader-text,
.assistive-text {
  float: left;
  width: 0px;
  height: 0px;
  overflow: hidden;
  font-size: 0.000005em;
  text-indent: -99999px;
  text-align: left;
}

.hidden {
  display: none;
}

.display-none {
  display: none;
}

p img {
  padding: 0;
  max-width: 100%;
}

.alignleft {
  float: left;
  margin-right: 1.3rem;
  margin-bottom: 1.3rem;
}
.alignleft img {
  display: inline;
}
@media only screen and (max-width: 769px) {
  .alignleft {
    display: block;
    float: none;
    margin: auto;
  }
  .alignleft img {
    display: block;
  }
}

.alignright {
  float: right;
  margin-left: 1.3rem;
  margin-bottom: 1.3rem;
}
.alignright img {
  display: inline;
}
@media only screen and (max-width: 769px) {
  .alignright {
    display: block;
    float: none;
    margin: auto;
  }
  .alignright img {
    display: block;
  }
}

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

img {
  display: block;
  max-width: 100%;
  border: none;
}
img.aligncenter {
  display: block;
  margin: auto;
  margin-top: 1rem;
}
img.alignleft {
  margin-right: 1.5rem;
}
img.alignright {
  margin-left: 1.5rem;
}
img.alignleft, img.alignright, img.aligncenter {
  margin-bottom: 1rem;
}
img.alignleft, img.alignright {
  display: inline;
}
@media only screen and (max-width: 769px) {
  img.alignleft, img.alignright {
    display: block;
    margin: 0 auto 1.3rem;
  }
}

.noborder {
  border: none !important;
}

.nobackground {
  background: none !important;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.page-width {
  margin: 0 auto;
  text-align: left;
}

:root {
  interpolate-size: allow-keywords;
}

body.live, body.expired, body.suspended {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
}
body.live div.content, body.expired div.content, body.suspended div.content {
  width: 100%;
}
body.live {
  background-color: var(--clr-brand-darker-3);
  color: color-mix(in oklab, var(--clr-brand-darker-3) 70%, var(--clr-white));
}
body.live div.content div.top {
  padding: 5rem 0;
  background-color: color-mix(in oklab, var(--clr-brand-darker-3) 75%, var(--clr-black));
  background-image: url("data:image/svg+xml;utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20425.2%20425.2%22%3E%3Cpath%20d%3D%22M53.86%2C240.79c-.1%2C9.11-7.58%2C16.41-16.69%2C16.31-9.11-.1-16.41-7.57-16.31-16.68%2C0-9.01%2C7.3-16.32%2C16.31-16.32.13%2C0%2C.25%2C0%2C.38%2C0%2C9.11.1%2C16.41%2C7.58%2C16.31%2C16.69ZM118.11%2C196.54l-11.62-3c-8.82-2.26-12-4.88-12-9.75%2C0-5.63%2C4.89-9.37%2C12.19-9.37s14.07%2C2%2C23.63%2C6.93l8.25-16.87c-8.81-4.31-18.93-9-34.31-9-22.31%2C0-37.13%2C12.56-37.13%2C31.31%2C0%2C6.18%2C2.07%2C13.13%2C5.44%2C17.25s11.26%2C8.62%2C17.63%2C9.75l11.25%2C2.06c10.1%2C1.9%2C14.79%2C5.27%2C14.8%2C11.82%2C0%2C0%2C0%2C0%2C0%2C0v.02s0%2C0%2C0-.01c0%2C6.19-5.63%2C10.87-12.76%2C10.87-10.86%2C0-24.18-6.19-31.86-10.88l-9%2C18.37c14.06%2C7.32%2C27%2C11.07%2C38.81%2C11.07%2C24.56%2C0%2C41.06-13.5%2C41.06-33.37%2C0-6.38-1.69-11.82-5.25-16.32-3.38-4.31-7.32-7.87-19.13-10.87ZM211.45%2C229.37c-6.19%2C5.44-11.43%2C7.88-17.25%2C7.88-4.38-.02-8.51-2.02-11.25-5.44-3.37-4.13-4.88-11.63-4.88-24.19%2C0-22.49%2C5.06-32.24%2C16.31-32.24%2C4.69%2C0%2C10.13%2C2.8%2C15.19%2C7.49l12.19-16.5c-4.13-3.56-5.81-4.87-9.38-6.75-5.8-2.77-12.13-4.24-18.56-4.31-8.44.12-16.69%2C2.59-23.81%2C7.12-11.24%2C7.69-19.69%2C22.31-19.69%2C44.44%2C0%2C31.11%2C15.37%2C49.48%2C41.81%2C49.48%2C8.22.18%2C16.32-1.89%2C23.44-6%2C3.27-1.94%2C6.24-4.33%2C8.82-7.12l-11.45-15.17-1.49%2C1.31ZM425.2%2C212.6c0%2C117.42-95.18%2C212.6-212.6%2C212.6S0%2C330.02%2C0%2C212.6%2C95.18%2C0%2C212.6%2C0s212.6%2C95.18%2C212.6%2C212.6ZM229.78%2C408.7l99.47-104.92H38.11c33.96%2C64.98%2C101.22%2C105.71%2C174.54%2C105.67%2C5.77%2C0%2C11.48-.26%2C17.13-.75ZM387.1%2C303.78h-23.45l-91.55%2C96.51c49.55-15.76%2C90.88-50.45%2C115-96.51ZM403.16%2C262.14l.03-.03h-.02s0%2C.02%2C0%2C.03l-15.85%2C16.7h10.72c1.93-5.46%2C3.64-11.02%2C5.13-16.7ZM409.45%2C212.6c0-108.72-88.13-196.85-196.85-196.85S15.74%2C103.88%2C15.74%2C212.6c-.02%2C22.57%2C3.86%2C44.98%2C11.45%2C66.24h325.73l56.4-59.46c.07-2.25.13-4.51.13-6.78ZM299.91%2C170.72c7.7%2C8.94%2C11.07%2C19.45%2C11.07%2C35%2C0%2C16.51-3.74%2C27.76-12%2C37.14-7.3%2C8.24-16.86%2C13.31-31.68%2C13.31-26.06%2C0-43.12-19.51-43.12-49.68%2C0-30.18%2C17.25-50.24%2C43.11-50.21%2C13.69%2C0%2C24.38%2C4.68%2C32.62%2C14.44ZM283.61%2C205.56c0-12.94-1.69-21.38-5.06-25.69-2.63-3.3-6.66-5.18-10.88-5.06-5.99%2C0-10.87%2C3.75-12.93%2C9.75-1.69%2C5.06-2.63%2C11.81-2.63%2C21.37%2C0%2C11.06%2C1.13%2C19.32%2C3.19%2C24.19%2C2.25%2C5.25%2C7.88%2C7.84%2C12.75%2C7.88%2C10.88%2C0%2C15.56-9.75%2C15.56-32.44ZM365.65%2C174.62l6.37-16.66h-22.5c0-9.64.51-19.28%2C1.5-28.87l-25.51%2C6.37c-.93%2C7.13-.93%2C13.51-.93%2C22.88h-9.56v16.26h9.56v52.88c0%2C8.81.19%2C10.69%2C1.69%2C14.81%2C2.81%2C8.43%2C13.12%2C14.06%2C25.87%2C14.06%2C7.03-.06%2C13.98-1.53%2C20.44-4.31l-3.19-15c-4.49%2C1.31-6.75%2C1.87-9%2C1.87-8.62%2C0-10.87-3.18-10.87-15.37v-48.92h16.13Z%22%20style%3D%22fill%3A%23031622%3B%22%2F%3E%3C%2Fsvg%3E");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 400px;
  color: var(--clr-white);
}
@media only screen and (min-width: 770px) {
  body.live div.content div.top {
    padding: 7.5rem 0;
    background-size: 600px;
  }
}
@media only screen and (min-width: 980px) {
  body.live div.content div.top {
    padding: 10rem 0;
    background-size: 800px;
  }
}
body.live div.content div.top div.page-width {
  text-align: center;
}
body.live div.content div.top div.copy p {
  --letter-spacing: 3px;
  padding: 0.3rem 0 0.3rem var(--letter-spacing);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing);
}
body.live div.content div.bottom {
  padding: 2rem 0;
  border-top: 3px solid var(--clr-brand-complement-darker-2);
}
body.live div.content div.bottom div.page-width {
  text-align: center;
}
body.live div.content div.bottom div.branding {
  height: 50px;
  margin-bottom: 1rem;
}
body.live div.content div.bottom div.branding div.logo {
  width: 50px;
  height: 100%;
  margin: 0 auto;
  background-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20425.2%20425.2%22%3E%3Ccircle%20cx%3D%22212.6%22%20cy%3D%22212.6%22%20r%3D%22212.6%22%20style%3D%22fill%3A%23FFF%22%2F%3E%3Cpath%20d%3D%22M463.65%2C315.16c-2.06-4.87-3.19-13.13-3.19-24.19%2C0-9.56.94-16.31%2C2.63-21.37%2C2.06-6%2C6.94-9.75%2C12.93-9.75a13.43%2C13.43%2C0%2C0%2C1%2C10.88%2C5.06c3.37%2C4.31%2C5.06%2C12.75%2C5.06%2C25.69%2C0%2C22.69-4.68%2C32.44-15.56%2C32.44C471.53%2C323%2C465.9%2C320.41%2C463.65%2C315.16ZM224.09%2C297.64c0-108.72%2C88.14-196.85%2C196.86-196.85S617.8%2C188.92%2C617.8%2C297.64c0%2C2.27-.06%2C4.53-.13%2C6.78l-56.4%2C59.46H235.54A196.41%2C196.41%2C0%2C0%2C1%2C224.09%2C297.64Zm299.28-38h9.56v52.88c0%2C8.81.19%2C10.69%2C1.69%2C14.81%2C2.81%2C8.43%2C13.12%2C14.06%2C25.87%2C14.06a52.93%2C52.93%2C0%2C0%2C0%2C20.44-4.31l-3.19-15c-4.49%2C1.31-6.75%2C1.87-9%2C1.87-8.62%2C0-10.87-3.18-10.87-15.37V259.66H574L580.37%2C243h-22.5a282.13%2C282.13%2C0%2C0%2C1%2C1.5-28.87l-25.51%2C6.37c-.93%2C7.13-.93%2C13.51-.93%2C22.88h-9.56Zm-90.84%2C31.88c0%2C30.18%2C17.06%2C49.69%2C43.12%2C49.69%2C14.82%2C0%2C24.38-5.07%2C31.68-13.31%2C8.26-9.38%2C12-20.63%2C12-37.14%2C0-15.55-3.37-26.06-11.07-35-8.24-9.76-18.93-14.44-32.62-14.44C449.78%2C241.29%2C432.53%2C261.35%2C432.53%2C291.54Zm-73.86.38c0%2C31.12%2C15.37%2C49.49%2C41.81%2C49.49a44.86%2C44.86%2C0%2C0%2C0%2C23.44-6%2C39.45%2C39.45%2C0%2C0%2C0%2C8.82-7.12L421.29%2C313.1l-1.49%2C1.31c-6.19%2C5.44-11.43%2C7.88-17.25%2C7.88a14.51%2C14.51%2C0%2C0%2C1-11.25-5.44c-3.37-4.13-4.88-11.63-4.88-24.19%2C0-22.49%2C5.06-32.24%2C16.31-32.24%2C4.69%2C0%2C10.13%2C2.8%2C15.19%2C7.49l12.19-16.5c-4.13-3.56-5.81-4.87-9.38-6.75a44.25%2C44.25%2C0%2C0%2C0-18.56-4.31%2C45.54%2C45.54%2C0%2C0%2C0-23.81%2C7.12C367.12%2C255.16%2C358.67%2C269.78%2C358.67%2C291.92Zm-34.08%2C20.8c0%2C6.19-5.63%2C10.88-12.76%2C10.88-10.86%2C0-24.18-6.19-31.86-10.88l-9%2C18.37c14.06%2C7.32%2C27%2C11.07%2C38.81%2C11.07%2C24.56%2C0%2C41.06-13.5%2C41.06-33.37%2C0-6.38-1.69-11.82-5.25-16.32-3.38-4.31-7.32-7.87-19.13-10.87l-11.62-3c-8.82-2.26-12-4.88-12-9.75%2C0-5.63%2C4.89-9.37%2C12.19-9.37%2C7.13%2C0%2C14.07%2C2%2C23.63%2C6.93l8.25-16.87c-8.81-4.31-18.93-9-34.31-9-22.31%2C0-37.13%2C12.56-37.13%2C31.31%2C0%2C6.18%2C2.07%2C13.13%2C5.44%2C17.25s11.26%2C8.62%2C17.63%2C9.75l11.25%2C2.06C319.9%2C302.79%2C324.59%2C306.16%2C324.59%2C312.72Zm-95.38%2C12.75a16.5%2C16.5%2C0%2C1%2C0%2C16.31-16.31A16.32%2C16.32%2C0%2C0%2C0%2C229.21%2C325.47ZM421%2C494.49c5.77%2C0%2C11.48-.26%2C17.13-.75L537.6%2C388.82H246.46A196.82%2C196.82%2C0%2C0%2C0%2C421%2C494.49ZM572%2C388.82l-91.55%2C96.51a197.36%2C197.36%2C0%2C0%2C0%2C115-96.51Zm39.54-41.67-15.88%2C16.73h10.72Q609.28%2C355.68%2C611.52%2C347.15Z%22%20transform%3D%22translate%28-208.35%20-85.04%29%22%20style%3D%22fill%3A%23127BBF%22%2F%3E%3C%2Fsvg%3E");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
}
body.live div.content div.bottom div.branding div.logo a {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  overflow: hidden;
}
body.live div.content div.bottom div.copy p {
  line-height: 140%;
  font-size: 0.8rem;
}
body.live div.content div.bottom div.copy p a:link, body.live div.content div.bottom div.copy p a:visited {
  color: color-mix(in oklab, var(--clr-brand-darker-3) 50%, var(--clr-white));
}
body.live div.content div.bottom div.copy p a:hover, body.live div.content div.bottom div.copy p a:focus {
  color: color-mix(in oklab, var(--clr-brand-darker-3) 30%, var(--clr-white));
}
body.expired {
  background-color: var(--clr-brand-darker-3);
  color: color-mix(in oklab, var(--clr-brand-darker-3) 70%, var(--clr-white));
}
body.expired div.content div.top {
  padding: 5rem 0;
  background-color: color-mix(in oklab, var(--clr-brand-darker-3) 75%, var(--clr-black));
  background-image: url("data:image/svg+xml;utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20425.2%20425.2%22%3E%3Cpath%20d%3D%22M53.86%2C240.79c-.1%2C9.11-7.58%2C16.41-16.69%2C16.31-9.11-.1-16.41-7.57-16.31-16.68%2C0-9.01%2C7.3-16.32%2C16.31-16.32.13%2C0%2C.25%2C0%2C.38%2C0%2C9.11.1%2C16.41%2C7.58%2C16.31%2C16.69ZM118.11%2C196.54l-11.62-3c-8.82-2.26-12-4.88-12-9.75%2C0-5.63%2C4.89-9.37%2C12.19-9.37s14.07%2C2%2C23.63%2C6.93l8.25-16.87c-8.81-4.31-18.93-9-34.31-9-22.31%2C0-37.13%2C12.56-37.13%2C31.31%2C0%2C6.18%2C2.07%2C13.13%2C5.44%2C17.25s11.26%2C8.62%2C17.63%2C9.75l11.25%2C2.06c10.1%2C1.9%2C14.79%2C5.27%2C14.8%2C11.82%2C0%2C0%2C0%2C0%2C0%2C0v.02s0%2C0%2C0-.01c0%2C6.19-5.63%2C10.87-12.76%2C10.87-10.86%2C0-24.18-6.19-31.86-10.88l-9%2C18.37c14.06%2C7.32%2C27%2C11.07%2C38.81%2C11.07%2C24.56%2C0%2C41.06-13.5%2C41.06-33.37%2C0-6.38-1.69-11.82-5.25-16.32-3.38-4.31-7.32-7.87-19.13-10.87ZM211.45%2C229.37c-6.19%2C5.44-11.43%2C7.88-17.25%2C7.88-4.38-.02-8.51-2.02-11.25-5.44-3.37-4.13-4.88-11.63-4.88-24.19%2C0-22.49%2C5.06-32.24%2C16.31-32.24%2C4.69%2C0%2C10.13%2C2.8%2C15.19%2C7.49l12.19-16.5c-4.13-3.56-5.81-4.87-9.38-6.75-5.8-2.77-12.13-4.24-18.56-4.31-8.44.12-16.69%2C2.59-23.81%2C7.12-11.24%2C7.69-19.69%2C22.31-19.69%2C44.44%2C0%2C31.11%2C15.37%2C49.48%2C41.81%2C49.48%2C8.22.18%2C16.32-1.89%2C23.44-6%2C3.27-1.94%2C6.24-4.33%2C8.82-7.12l-11.45-15.17-1.49%2C1.31ZM425.2%2C212.6c0%2C117.42-95.18%2C212.6-212.6%2C212.6S0%2C330.02%2C0%2C212.6%2C95.18%2C0%2C212.6%2C0s212.6%2C95.18%2C212.6%2C212.6ZM229.78%2C408.7l99.47-104.92H38.11c33.96%2C64.98%2C101.22%2C105.71%2C174.54%2C105.67%2C5.77%2C0%2C11.48-.26%2C17.13-.75ZM387.1%2C303.78h-23.45l-91.55%2C96.51c49.55-15.76%2C90.88-50.45%2C115-96.51ZM403.16%2C262.14l.03-.03h-.02s0%2C.02%2C0%2C.03l-15.85%2C16.7h10.72c1.93-5.46%2C3.64-11.02%2C5.13-16.7ZM409.45%2C212.6c0-108.72-88.13-196.85-196.85-196.85S15.74%2C103.88%2C15.74%2C212.6c-.02%2C22.57%2C3.86%2C44.98%2C11.45%2C66.24h325.73l56.4-59.46c.07-2.25.13-4.51.13-6.78ZM299.91%2C170.72c7.7%2C8.94%2C11.07%2C19.45%2C11.07%2C35%2C0%2C16.51-3.74%2C27.76-12%2C37.14-7.3%2C8.24-16.86%2C13.31-31.68%2C13.31-26.06%2C0-43.12-19.51-43.12-49.68%2C0-30.18%2C17.25-50.24%2C43.11-50.21%2C13.69%2C0%2C24.38%2C4.68%2C32.62%2C14.44ZM283.61%2C205.56c0-12.94-1.69-21.38-5.06-25.69-2.63-3.3-6.66-5.18-10.88-5.06-5.99%2C0-10.87%2C3.75-12.93%2C9.75-1.69%2C5.06-2.63%2C11.81-2.63%2C21.37%2C0%2C11.06%2C1.13%2C19.32%2C3.19%2C24.19%2C2.25%2C5.25%2C7.88%2C7.84%2C12.75%2C7.88%2C10.88%2C0%2C15.56-9.75%2C15.56-32.44ZM365.65%2C174.62l6.37-16.66h-22.5c0-9.64.51-19.28%2C1.5-28.87l-25.51%2C6.37c-.93%2C7.13-.93%2C13.51-.93%2C22.88h-9.56v16.26h9.56v52.88c0%2C8.81.19%2C10.69%2C1.69%2C14.81%2C2.81%2C8.43%2C13.12%2C14.06%2C25.87%2C14.06%2C7.03-.06%2C13.98-1.53%2C20.44-4.31l-3.19-15c-4.49%2C1.31-6.75%2C1.87-9%2C1.87-8.62%2C0-10.87-3.18-10.87-15.37v-48.92h16.13Z%22%20style%3D%22fill%3A%23031622%3B%22%2F%3E%3C%2Fsvg%3E");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 400px;
  color: var(--clr-white);
}
@media only screen and (min-width: 770px) {
  body.expired div.content div.top {
    padding: 7.5rem 0;
    background-size: 600px;
  }
}
@media only screen and (min-width: 980px) {
  body.expired div.content div.top {
    padding: 10rem 0;
    background-size: 800px;
  }
}
body.expired div.content div.top div.page-width {
  text-align: center;
}
body.expired div.content div.top div.copy p {
  --letter-spacing: 3px;
  padding: 0.3rem 0 0.3rem var(--letter-spacing);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing);
}
body.expired div.content div.top div.copy p a {
  display: inline-block;
  margin-left: calc(var(--letter-spacing) * -1);
  padding: 1rem 1.5rem;
  translate: 0 0.5rem;
  color: var(--clr-white);
  letter-spacing: 0px;
  font-size: 0.8rem;
}
body.expired div.content div.top div.copy p a:link, body.expired div.content div.top div.copy p a:visited {
  background-color: var(--clr-brand-complement-darker-2);
}
body.expired div.content div.top div.copy p a:hover, body.expired div.content div.top div.copy p a:focus {
  background-color: var(--clr-brand-complement-darker-1);
}
@media only screen and (min-width: 770px) {
  body.expired div.content div.top div.copy p a {
    translate: 0 1.25rem;
  }
}
@media only screen and (min-width: 980px) {
  body.expired div.content div.top div.copy p a {
    translate: 0 2rem;
  }
}
body.expired div.content div.bottom {
  padding: 2rem 0;
  border-top: 3px solid var(--clr-brand-complement-darker-2);
}
body.expired div.content div.bottom div.page-width {
  text-align: center;
}
body.expired div.content div.bottom div.branding {
  height: 50px;
  margin-bottom: 1rem;
}
body.expired div.content div.bottom div.branding div.logo {
  width: 50px;
  height: 100%;
  margin: 0 auto;
  background-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20425.2%20425.2%22%3E%3Ccircle%20cx%3D%22212.6%22%20cy%3D%22212.6%22%20r%3D%22212.6%22%20style%3D%22fill%3A%23FFF%22%2F%3E%3Cpath%20d%3D%22M463.65%2C315.16c-2.06-4.87-3.19-13.13-3.19-24.19%2C0-9.56.94-16.31%2C2.63-21.37%2C2.06-6%2C6.94-9.75%2C12.93-9.75a13.43%2C13.43%2C0%2C0%2C1%2C10.88%2C5.06c3.37%2C4.31%2C5.06%2C12.75%2C5.06%2C25.69%2C0%2C22.69-4.68%2C32.44-15.56%2C32.44C471.53%2C323%2C465.9%2C320.41%2C463.65%2C315.16ZM224.09%2C297.64c0-108.72%2C88.14-196.85%2C196.86-196.85S617.8%2C188.92%2C617.8%2C297.64c0%2C2.27-.06%2C4.53-.13%2C6.78l-56.4%2C59.46H235.54A196.41%2C196.41%2C0%2C0%2C1%2C224.09%2C297.64Zm299.28-38h9.56v52.88c0%2C8.81.19%2C10.69%2C1.69%2C14.81%2C2.81%2C8.43%2C13.12%2C14.06%2C25.87%2C14.06a52.93%2C52.93%2C0%2C0%2C0%2C20.44-4.31l-3.19-15c-4.49%2C1.31-6.75%2C1.87-9%2C1.87-8.62%2C0-10.87-3.18-10.87-15.37V259.66H574L580.37%2C243h-22.5a282.13%2C282.13%2C0%2C0%2C1%2C1.5-28.87l-25.51%2C6.37c-.93%2C7.13-.93%2C13.51-.93%2C22.88h-9.56Zm-90.84%2C31.88c0%2C30.18%2C17.06%2C49.69%2C43.12%2C49.69%2C14.82%2C0%2C24.38-5.07%2C31.68-13.31%2C8.26-9.38%2C12-20.63%2C12-37.14%2C0-15.55-3.37-26.06-11.07-35-8.24-9.76-18.93-14.44-32.62-14.44C449.78%2C241.29%2C432.53%2C261.35%2C432.53%2C291.54Zm-73.86.38c0%2C31.12%2C15.37%2C49.49%2C41.81%2C49.49a44.86%2C44.86%2C0%2C0%2C0%2C23.44-6%2C39.45%2C39.45%2C0%2C0%2C0%2C8.82-7.12L421.29%2C313.1l-1.49%2C1.31c-6.19%2C5.44-11.43%2C7.88-17.25%2C7.88a14.51%2C14.51%2C0%2C0%2C1-11.25-5.44c-3.37-4.13-4.88-11.63-4.88-24.19%2C0-22.49%2C5.06-32.24%2C16.31-32.24%2C4.69%2C0%2C10.13%2C2.8%2C15.19%2C7.49l12.19-16.5c-4.13-3.56-5.81-4.87-9.38-6.75a44.25%2C44.25%2C0%2C0%2C0-18.56-4.31%2C45.54%2C45.54%2C0%2C0%2C0-23.81%2C7.12C367.12%2C255.16%2C358.67%2C269.78%2C358.67%2C291.92Zm-34.08%2C20.8c0%2C6.19-5.63%2C10.88-12.76%2C10.88-10.86%2C0-24.18-6.19-31.86-10.88l-9%2C18.37c14.06%2C7.32%2C27%2C11.07%2C38.81%2C11.07%2C24.56%2C0%2C41.06-13.5%2C41.06-33.37%2C0-6.38-1.69-11.82-5.25-16.32-3.38-4.31-7.32-7.87-19.13-10.87l-11.62-3c-8.82-2.26-12-4.88-12-9.75%2C0-5.63%2C4.89-9.37%2C12.19-9.37%2C7.13%2C0%2C14.07%2C2%2C23.63%2C6.93l8.25-16.87c-8.81-4.31-18.93-9-34.31-9-22.31%2C0-37.13%2C12.56-37.13%2C31.31%2C0%2C6.18%2C2.07%2C13.13%2C5.44%2C17.25s11.26%2C8.62%2C17.63%2C9.75l11.25%2C2.06C319.9%2C302.79%2C324.59%2C306.16%2C324.59%2C312.72Zm-95.38%2C12.75a16.5%2C16.5%2C0%2C1%2C0%2C16.31-16.31A16.32%2C16.32%2C0%2C0%2C0%2C229.21%2C325.47ZM421%2C494.49c5.77%2C0%2C11.48-.26%2C17.13-.75L537.6%2C388.82H246.46A196.82%2C196.82%2C0%2C0%2C0%2C421%2C494.49ZM572%2C388.82l-91.55%2C96.51a197.36%2C197.36%2C0%2C0%2C0%2C115-96.51Zm39.54-41.67-15.88%2C16.73h10.72Q609.28%2C355.68%2C611.52%2C347.15Z%22%20transform%3D%22translate%28-208.35%20-85.04%29%22%20style%3D%22fill%3A%23127BBF%22%2F%3E%3C%2Fsvg%3E");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
}
body.expired div.content div.bottom div.branding div.logo a {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  overflow: hidden;
}
body.expired div.content div.bottom div.copy p {
  line-height: 140%;
  font-size: 0.8rem;
}
body.expired div.content div.bottom div.copy p a:link, body.expired div.content div.bottom div.copy p a:visited {
  color: color-mix(in oklab, var(--clr-brand-darker-3) 50%, var(--clr-white));
}
body.expired div.content div.bottom div.copy p a:hover, body.expired div.content div.bottom div.copy p a:focus {
  color: color-mix(in oklab, var(--clr-brand-darker-3) 30%, var(--clr-white));
}
body.suspended {
  background-color: color-mix(in oklab, var(--clr-black) 10%, var(--clr-white));
  color: color-mix(in oklab, var(--clr-black) 40%, var(--clr-white));
}
body.suspended div.content div.top {
  padding: 2rem 0;
  background-color: color-mix(in oklab, var(--clr-black) 8%, var(--clr-white));
  color: var(--clr-red-dark);
}
@media only screen and (min-width: 770px) {
  body.suspended div.content div.top {
    padding: 4.5rem 0;
  }
}
@media only screen and (min-width: 980px) {
  body.suspended div.content div.top {
    padding: 7rem 0;
  }
}
body.suspended div.content div.top div.page-width {
  text-align: center;
}
body.suspended div.content div.top div.copy div.no-entry {
  height: 50px;
  margin-bottom: 1rem;
}
body.suspended div.content div.top div.copy div.no-entry div.icon {
  width: 50px;
  height: 100%;
  margin: 0 auto;
  background-image: url("data:image/svg+xml;utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22uuid-20c6539a-6c69-4d99-97da-b0eb670ad5f4%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201000%201000%22%3E%3Cpath%20d%3D%22M500%2C0C223.86%2C0%2C0%2C223.86%2C0%2C500s223.86%2C500%2C500%2C500%2C500-223.86%2C500-500S776.14%2C0%2C500%2C0ZM500%2C904c-54.58%2C0-107.48-10.67-157.23-31.71-48.1-20.34-91.31-49.49-128.45-86.62-37.13-37.13-66.28-80.35-86.62-128.45-21.04-49.75-31.71-102.64-31.71-157.23s10.67-107.48%2C31.71-157.23c14.09-33.31%2C32.41-64.28%2C54.67-92.51l567.35%2C567.35c-28.23%2C22.26-59.2%2C40.58-92.51%2C54.67-49.75%2C21.04-102.64%2C31.71-157.23%2C31.71ZM817.62%2C749.73L250.26%2C182.38c28.23-22.26%2C59.2-40.58%2C92.51-54.67%2C49.75-21.04%2C102.64-31.71%2C157.23-31.71s107.48%2C10.67%2C157.23%2C31.71c48.1%2C20.34%2C91.31%2C49.49%2C128.45%2C86.62%2C37.13%2C37.13%2C66.28%2C80.35%2C86.62%2C128.45%2C21.04%2C49.75%2C31.71%2C102.64%2C31.71%2C157.23s-10.67%2C107.48-31.71%2C157.23c-14.09%2C33.31-32.41%2C64.28-54.67%2C92.51Z%22%20style%3D%22fill%3A%238f101a%3B%22%2F%3E%3C%2Fsvg%3E");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
}
body.suspended div.content div.top div.copy p {
  --letter-spacing: 3px;
  padding: 0.3rem 0 0.3rem var(--letter-spacing);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing);
}
body.suspended div.content div.top div.copy p a {
  display: inline-block;
  margin-left: calc(var(--letter-spacing) * -1);
  padding: 1rem 1.5rem;
  translate: 0 0.5rem;
  color: var(--clr-white);
  letter-spacing: 0px;
  font-size: 0.8rem;
}
body.suspended div.content div.top div.copy p a:link, body.suspended div.content div.top div.copy p a:visited {
  background-color: var(--clr-red-dark);
}
body.suspended div.content div.top div.copy p a:hover, body.suspended div.content div.top div.copy p a:focus {
  background-color: var(--clr-red);
}
@media only screen and (min-width: 770px) {
  body.suspended div.content div.top div.copy p a {
    translate: 0 1.25rem;
  }
}
@media only screen and (min-width: 980px) {
  body.suspended div.content div.top div.copy p a {
    translate: 0 2rem;
  }
}
body.suspended div.content div.bottom {
  padding: 2rem 0;
}
body.suspended div.content div.bottom div.page-width {
  text-align: center;
}
body.suspended div.content div.bottom div.branding {
  height: 50px;
  margin-bottom: 1rem;
}
body.suspended div.content div.bottom div.branding div.logo {
  width: 50px;
  height: 100%;
  margin: 0 auto;
  background-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20425.2%20425.2%22%3E%3Ccircle%20cx%3D%22212.6%22%20cy%3D%22212.6%22%20r%3D%22212.6%22%20style%3D%22fill%3A%23FFF%22%2F%3E%3Cpath%20d%3D%22M463.65%2C315.16c-2.06-4.87-3.19-13.13-3.19-24.19%2C0-9.56.94-16.31%2C2.63-21.37%2C2.06-6%2C6.94-9.75%2C12.93-9.75a13.43%2C13.43%2C0%2C0%2C1%2C10.88%2C5.06c3.37%2C4.31%2C5.06%2C12.75%2C5.06%2C25.69%2C0%2C22.69-4.68%2C32.44-15.56%2C32.44C471.53%2C323%2C465.9%2C320.41%2C463.65%2C315.16ZM224.09%2C297.64c0-108.72%2C88.14-196.85%2C196.86-196.85S617.8%2C188.92%2C617.8%2C297.64c0%2C2.27-.06%2C4.53-.13%2C6.78l-56.4%2C59.46H235.54A196.41%2C196.41%2C0%2C0%2C1%2C224.09%2C297.64Zm299.28-38h9.56v52.88c0%2C8.81.19%2C10.69%2C1.69%2C14.81%2C2.81%2C8.43%2C13.12%2C14.06%2C25.87%2C14.06a52.93%2C52.93%2C0%2C0%2C0%2C20.44-4.31l-3.19-15c-4.49%2C1.31-6.75%2C1.87-9%2C1.87-8.62%2C0-10.87-3.18-10.87-15.37V259.66H574L580.37%2C243h-22.5a282.13%2C282.13%2C0%2C0%2C1%2C1.5-28.87l-25.51%2C6.37c-.93%2C7.13-.93%2C13.51-.93%2C22.88h-9.56Zm-90.84%2C31.88c0%2C30.18%2C17.06%2C49.69%2C43.12%2C49.69%2C14.82%2C0%2C24.38-5.07%2C31.68-13.31%2C8.26-9.38%2C12-20.63%2C12-37.14%2C0-15.55-3.37-26.06-11.07-35-8.24-9.76-18.93-14.44-32.62-14.44C449.78%2C241.29%2C432.53%2C261.35%2C432.53%2C291.54Zm-73.86.38c0%2C31.12%2C15.37%2C49.49%2C41.81%2C49.49a44.86%2C44.86%2C0%2C0%2C0%2C23.44-6%2C39.45%2C39.45%2C0%2C0%2C0%2C8.82-7.12L421.29%2C313.1l-1.49%2C1.31c-6.19%2C5.44-11.43%2C7.88-17.25%2C7.88a14.51%2C14.51%2C0%2C0%2C1-11.25-5.44c-3.37-4.13-4.88-11.63-4.88-24.19%2C0-22.49%2C5.06-32.24%2C16.31-32.24%2C4.69%2C0%2C10.13%2C2.8%2C15.19%2C7.49l12.19-16.5c-4.13-3.56-5.81-4.87-9.38-6.75a44.25%2C44.25%2C0%2C0%2C0-18.56-4.31%2C45.54%2C45.54%2C0%2C0%2C0-23.81%2C7.12C367.12%2C255.16%2C358.67%2C269.78%2C358.67%2C291.92Zm-34.08%2C20.8c0%2C6.19-5.63%2C10.88-12.76%2C10.88-10.86%2C0-24.18-6.19-31.86-10.88l-9%2C18.37c14.06%2C7.32%2C27%2C11.07%2C38.81%2C11.07%2C24.56%2C0%2C41.06-13.5%2C41.06-33.37%2C0-6.38-1.69-11.82-5.25-16.32-3.38-4.31-7.32-7.87-19.13-10.87l-11.62-3c-8.82-2.26-12-4.88-12-9.75%2C0-5.63%2C4.89-9.37%2C12.19-9.37%2C7.13%2C0%2C14.07%2C2%2C23.63%2C6.93l8.25-16.87c-8.81-4.31-18.93-9-34.31-9-22.31%2C0-37.13%2C12.56-37.13%2C31.31%2C0%2C6.18%2C2.07%2C13.13%2C5.44%2C17.25s11.26%2C8.62%2C17.63%2C9.75l11.25%2C2.06C319.9%2C302.79%2C324.59%2C306.16%2C324.59%2C312.72Zm-95.38%2C12.75a16.5%2C16.5%2C0%2C1%2C0%2C16.31-16.31A16.32%2C16.32%2C0%2C0%2C0%2C229.21%2C325.47ZM421%2C494.49c5.77%2C0%2C11.48-.26%2C17.13-.75L537.6%2C388.82H246.46A196.82%2C196.82%2C0%2C0%2C0%2C421%2C494.49ZM572%2C388.82l-91.55%2C96.51a197.36%2C197.36%2C0%2C0%2C0%2C115-96.51Zm39.54-41.67-15.88%2C16.73h10.72Q609.28%2C355.68%2C611.52%2C347.15Z%22%20transform%3D%22translate%28-208.35%20-85.04%29%22%20style%3D%22fill%3A%23999999%22%2F%3E%3C%2Fsvg%3E");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
}
body.suspended div.content div.bottom div.branding div.logo a {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  overflow: hidden;
}
body.suspended div.content div.bottom div.copy p {
  line-height: 140%;
  font-size: 0.8rem;
}
body.suspended div.content div.bottom div.copy p a:link, body.suspended div.content div.bottom div.copy p a:visited {
  color: var(--clr-red-dark);
}
body.suspended div.content div.bottom div.copy p a:hover, body.suspended div.content div.bottom div.copy p a:focus {
  color: var(--clr-red);
}
