:root {
  --header-height: 65px;
  --secondary-nav-height: 70px;
  --sticky-header-height: var(--header-height);
}
@media screen and (min-width: 1040px) {
  :root {
    --header-height: 70px;
    --sticky-header-height: calc(
      var(--header-height) + var(--secondary-nav-height)
    );
  }
}

/* ==================================
 ------------ RESET CSS -----------
================================== */
html,
body,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
pre,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
center,
dl,
dt,
dd,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html {
  box-sizing: border-box;
  font-size: 10px;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

nav ol,
nav ul:not(.list),
.list--reset ol,
.list--reset ul:not(.list) {
  margin: 0;
  padding: 0;
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
}

sub {
  vertical-align: sub;
}

sup {
  vertical-align: super;
}

small {
  font-size: 70%;
  line-height: normal;
}

select:empty {
  display: none;
}

*::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

*::-moz-placeholder {
  color: inherit;
  opacity: 1;
}

*:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

/* ---------- Animations ---------- */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* ==================================
 --------- DEFAULT STYLES ---------
================================== */
body {
  overflow-x: hidden;
  overflow-y: scroll;
  color: #2a3035;
  font-family: "din-2014", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.4rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: none;
}

* {
  scroll-margin-top: var(--sticky-header-height);
}

/* ---------- TYPOGRAPHY ---------- */
h1,
.h1 {
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  h1,
.h1 {
    font-size: 4.5rem;
  }
}
@media only screen and (max-width: 480px) {
  h1,
.h1 {
    font-size: 3.6rem;
  }
}

h2,
.h2 {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.278;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  h2,
.h2 {
    font-size: 2.7rem;
  }
}

.module-first-heading h2.module_title {
  font-size: 4.4rem;
}

h3,
.h3 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 3.4rem;
  margin: 24px 0 16px 0;
  color: #141c1f;
}

h4,
.h4 {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.8rem;
  margin-top: 24px;
  margin-bottom: 16px;
}

h5,
.h5 {
  font-size: 1.28rem;
  margin-bottom: 12.8px;
  text-transform: uppercase;
}

a {
  text-decoration: none;
  color: #cd173f;
}
a:hover {
  color: #fff;
  text-underline-offset: 6px;
}
a:hover:not(:has(span), :is(.button, .primary-cta)) {
  color: #cd173f;
  text-decoration: underline;
}
a:hover:not(:has(span), :is(.button, .primary-cta)).module-links_list-item-link {
  color: #fff;
}

p {
  line-height: 2.4rem;
  font-weight: 400;
  font-size: 1.6rem;
}

/* ------------ COMMON ------------ */
img {
  max-width: 100%;
}

input[type=checkbox], input[type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
input[type=checkbox] + label, input[type=radio] + label {
  user-select: none;
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
input[type=checkbox] + label::before, input[type=radio] + label::before {
  content: "";
  display: inline-flex;
  align-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid #767676;
  line-height: 1;
}
input[type=checkbox]:checked + label::before, input[type=radio]:checked + label::before {
  background-color: #cd173f;
}
input[type=radio] + label::before {
  border-radius: 100%;
}
input::-ms-clear {
  display: none;
}

iframe {
  width: 100%;
}

/* ------- HACKS AND FIXES ------- */
.clearfix::before, .clearfix::after {
  content: " ";
  display: table;
}
.clearfix::after {
  clear: both;
}

/* ------------ LISTS ------------ */
.list {
  list-style-type: disc;
  padding-left: 30px;
  margin-top: 15px;
  margin-bottom: 15px;
  line-height: 1.5;
}
.list--ordered {
  list-style-type: decimal;
}
.list--alpha {
  list-style-type: lower-alpha;
}
.list--roman {
  list-style-type: lower-roman;
}
.list--inside {
  list-style-position: inside;
}

/* ------- BUTTONS / INPUTS ------- */
*::-webkit-input-placeholder {
  color: inherit;
}

*::-moz-placeholder {
  color: inherit;
}

*::-ms-input-placeholder {
  color: inherit;
}

.input,
.textarea,
.dropdown,
.upload,
.submit,
.button {
  display: inline-block;
  max-width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 13px 20px;
  background: transparent;
  border: 1px solid #cd173f;
  color: #cd173f;
  border-radius: 0;
  font-family: "din-2014", sans-serif;
  font-size: 1.4rem;
  margin: 17px;
}
.input::-ms-clear,
.textarea::-ms-clear,
.dropdown::-ms-clear,
.upload::-ms-clear,
.submit::-ms-clear,
.button::-ms-clear {
  display: none;
}

.dropdown {
  margin: 0;
  background: transparent url('../design/svg/arrow-down-red.svg') no-repeat right 20px center;
  background-size: 14px 8px;
  padding-right: 44px;
  min-width: 120px;
  border-color: #bbb;
  font-size: 1.6rem;
  border-radius: 40px;
}
.dropdown::-ms-expand {
  display: none;
}

.submit,
.button,
.upload,
.dropdown {
  cursor: pointer;
}

.submit,
.button {
  text-transform: uppercase;
}

.textarea {
  width: 100%;
  resize: vertical;
  min-height: 150px;
}

.upload {
  line-height: 0;
}

.button {
  transition: 0.3s ease-in-out;
  border-color: #cd173f;
  background: #cd173f;
  color: #fff;
  padding: 14px 24px;
  text-align: center;
  font-style: normal;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.button:hover, .button:focus {
  color: #fff;
  background: #9a1130;
  border-color: #9a1130;
  text-decoration: none !important;
}
.button:focus {
  outline-color: #9a1130 !important;
}
.button--inverted {
  background: #141c1f;
  border-color: #141c1f;
}
.button--inverted:hover, .button--inverted:focus {
  border-color: #141c1f;
  background: #141c1f;
}
.button--inverted:focus {
  outline-color: #141c1f !important;
}
.button--inverted.js--disabled {
  background: #fff;
  border-color: #141c1f;
  color: #141c1f;
}
.button--dark {
  border-color: #cd173f;
  background-color: #fff;
  color: #141c1f;
  border-width: 2px;
}
.button--dark:hover, .button--dark:focus {
  background: #cd173f;
  border-color: #cd173f;
  color: #fff;
}
.button--dark:focus {
  outline-color: #cd173f !important;
}
.button--meeting {
  font-size: 1.3rem;
  background-color: #f1af0f;
  border-color: #f1af0f;
  color: #000;
  font-weight: 700;
}
.button--meeting:hover, .button--meeting:focus {
  background-color: #dc9e27;
  border-color: #dc9e27;
  color: #000;
}
.button--meeting:focus {
  outline-color: #dc9e27 !important;
}
.button--cta {
  border: 0 none;
  padding: 0 25px 0 0;
  font-size: 1.4rem;
  background: transparent;
  color: #cd173f;
  position: relative;
  min-width: auto;
}
.button--cta:hover, .button--cta:focus {
  color: #141c1f;
  background: transparent;
  outline-color: #141c1f !important;
}
.button--cta:hover::after, .button--cta:focus::after {
  right: -5px;
}
.button--cta::after {
  font-family: "q4-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e90d";
  font-size: 20px;
  vertical-align: middle;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: right 0.5s;
}

/* ------------ COOKIE MONSTER ------------ */
.cm .cm_close-button {
  opacity: 1;
}
.cm .cm_close-button::before, .cm .cm_close-button::after {
  background-color: #cd173f;
}
.cm .cm_close-button:hover {
  opacity: 0.7;
}

/* ------------ TABLES ------------ */
.table {
  width: 100%;
  margin: 16px 0;
}
.table thead {
  background-color: #9a1130;
  color: #fff;
  font-size: 1.4rem;
}
.table thead th {
  text-align: left;
  text-transform: capitalize;
}
.table tbody tr:nth-child(odd) {
  background-color: #000;
}
.table tbody tr:nth-child(even) {
  background-color: #1d1d1d;
}
.table th,
.table td,
.table tr > .grid_col {
  margin: 0;
  padding: 15px 10px;
}
.table th {
  color: #fff;
}
.table th[data-sorting=true]:hover {
  cursor: pointer;
}
.table--headless tr:nth-child(even) {
  background-color: transparent;
}
.table--headless tr:nth-child(odd) {
  background-color: #f8f1f3;
}
.table--headless tr:first-child {
  background-color: #141c1f;
  text-align: left;
}
.table--headless tr:first-child td {
  color: #fff;
}
.table-wrapper {
  overflow-x: auto;
}
@media only screen and (max-width: 480px) {
  .table--responsive thead {
    display: none;
  }
  .table--responsive tbody {
    border-top: 2px solid #141c1f;
    border-bottom: 2px solid #141c1f;
  }
  .table--responsive td {
    display: block;
  }
  .table--responsive td::before {
    content: attr(data-heading) ": ";
    font-weight: bold;
  }
}
.table--analyst thead {
  background-color: transparent;
  color: inherit;
}
.table--analyst thead th {
  font-size: 1.8rem;
  line-height: 2.8rem;
  font-weight: 500;
  color: inherit;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.table--analyst thead th:nth-child(odd) {
  background-color: #fff;
}
.table--analyst thead th:nth-child(even) {
  background-color: #f8f1f3;
}
.table--analyst tbody tr:nth-child(odd),
.table--analyst tbody tr:nth-child(even) {
  background-color: transparent;
}
.table--analyst tbody th {
  color: #2a3035;
}
.table--analyst tbody td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.table--analyst tbody td:nth-child(odd) {
  background-color: #fff;
}
.table--analyst tbody td:nth-child(even) {
  background-color: #f8f1f3;
}

.highcharts-data-table .table tbody th {
  color: #2a3035;
  text-align: left;
}

/* --------- SPECIAL BOXES -------- */
.code {
  margin: 32px 0;
  padding: 20px 15px;
  background: #f8f1f3;
  border-left: 3px solid rgba(20, 28, 31, 0.5);
  font-family: monospace, serif;
  font-size: 1.4rem;
  word-break: break-all;
  word-wrap: break-word;
  white-space: pre;
  overflow: hidden;
}
.code_comment {
  opacity: 0.5;
}

.quote {
  margin: 32px 0;
  padding: 20px 15px;
  background: #f8f1f3;
  border-left: 3px solid rgba(205, 23, 63, 0.5);
  font-size: 1.4rem;
  font-style: italic;
}
.quote p::before {
  margin-right: 5px;
  font-family: "q4-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\eb1b";
}
.quote p::after {
  margin-left: 5px;
  font-family: "q4-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\eb1c";
}

.our-projects .highcharts-background {
  fill: #000;
}
@media only screen and (max-width: 1024px) {
  .our-projects .primary-cta {
    margin: 19px auto 0 auto;
  }
}
.our-projects .module_container--outer {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
.our-projects #container-na {
  max-width: 100%;
  margin: 0 auto;
}
.our-projects .tooltip-metric {
  margin: 1rem 0;
}

.module_overview-careers a.primary-cta {
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .module_overview-careers a.primary-cta {
    margin: 0 auto;
  }
}

#highcharts-screen-reader-region-before-0,
#highcharts-screen-reader-region-after-0 > div {
  opacity: 1 !important;
}

/* ==================================
 -------- Q4 Modules Icons ---------
================================== */
.q4icons .q4icons_icon::before {
  font-family: "q4-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e91e";
  font-size: 18px;
  vertical-align: middle;
  display: inline-block;
  padding-right: 5px;
  min-width: 25px; /* min-width because sometimes icons don't align properly */
  text-align: right;
}
.q4icons .module_rss-link .q4icons_icon::before,
.q4icons .module_link-rss .q4icons_icon::before {
  content: "\eefa";
}
.q4icons .module_add-to-calendar-reveal .q4icons_icon::before {
  content: "\ea5f";
  padding-right: 5px;
}
.q4icons [href$=".mp3"] .q4icons_icon::before,
.q4icons [href$=".wmv"] .q4icons_icon::before,
.q4icons [href$=".MP3"] .q4icons_icon::before,
.q4icons [href$=".WMV"] .q4icons_icon::before {
  content: "\e952";
}
.q4icons [href$=".xls"] .q4icons_icon::before,
.q4icons [href$=".xlsx"] .q4icons_icon::before,
.q4icons [href$=".csv"] .q4icons_icon::before,
.q4icons [href$=".XLS"] .q4icons_icon::before,
.q4icons [href$=".XLSX"] .q4icons_icon::before,
.q4icons [href$=".CSV"] .q4icons_icon::before {
  content: "\eeae";
}
.q4icons [href$=".mp4"] .q4icons_icon::before,
.q4icons [href$=".flv"] .q4icons_icon::before,
.q4icons [href$=".avi"] .q4icons_icon::before,
.q4icons [href$=".MP4"] .q4icons_icon::before,
.q4icons [href$=".FLV"] .q4icons_icon::before,
.q4icons [href$=".AVI"] .q4icons_icon::before {
  content: "\e95e";
}
.q4icons [href$=".pdf"] .q4icons_icon::before,
.q4icons [href$=".PDF"] .q4icons_icon::before {
  content: "\e911";
}
.q4icons [href$=".ppt"] .q4icons_icon::before,
.q4icons [href$=".PPT"] .q4icons_icon::before,
.q4icons [href$=".pptx"] .q4icons_icon::before,
.q4icons [href$=".PPTX"] .q4icons_icon::before {
  content: "\e925";
}
.q4icons .module_link-webcast .q4icons_icon::before,
.q4icons .module_webcast-link .q4icons_icon::before {
  content: "\e912";
}
.q4icons .module_link-presentation .q4icons_icon::before {
  content: "\e913";
}
.q4icons .module_link-download .q4icons_icon::before {
  content: "\e910";
}
.q4icons .module_link-sec .q4icons_icon::before {
  content: "\e91e";
}
.q4icons .module_link-sec[href$=".pdf"] .q4icons_icon::before {
  content: "\e911";
}
.q4icons .module_link-sec[href$=".rtf"] .q4icons_icon::before {
  content: "\e91c";
}
.q4icons .module_link-sec[href$=".xls"] .q4icons_icon::before {
  content: "\e919";
}
.q4icons .module_link-sec[href$=".zip"] .q4icons_icon::before {
  content: "\e918";
}
.q4icons [href^="tel:"] .q4icons_icon::before {
  font-size: 1.6rem;
  vertical-align: text-bottom;
  font-family: "q4-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\ea1d";
}
.q4icons [href^="mailto:"] .q4icons_icon::before {
  font-size: 1.6rem;
  vertical-align: text-bottom;
  font-family: "q4-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\ea34";
}

/* ==================================
 ----------- TOAST GRID -----------
================================== */
.grid {
  list-style: none;
  margin-left: -20px;
}
.grid--flex {
  margin-left: -20px;
  box-sizing: border-box;
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
}
.grid--flex_column {
  flex-direction: column;
}
.grid--flex_row-reverse {
  flex-direction: row-reverse;
}
.grid--flex_column-reverse {
  flex-direction: column-reverse;
}
.grid--flex_justify-start {
  justify-content: flex-start;
  text-align: start;
}
.grid--flex_justify-center {
  justify-content: center;
  text-align: center;
}
.grid--flex_justify-end {
  justify-content: flex-end;
  text-align: end;
}
.grid--flex_align-top {
  align-items: flex-start;
}
.grid--flex_align-middle {
  align-items: center;
}
.grid--flex_align-bottom {
  align-items: flex-end;
}
.grid--flex_space-around {
  justify-content: space-around;
}
.grid--flex_space-between {
  justify-content: space-between;
}

.grid--flex .grid_col {
  display: block;
  margin-right: 0;
  flex: 0 0 auto;
}

.grid_col--12-of-12, .grid_col--8-of-8, .grid_col--7-of-7, .grid_col--6-of-6, .grid_col--5-of-5, .grid_col--4-of-4, .grid_col--3-of-3, .grid_col--2-of-2, .grid_col--1-of-1 {
  width: 100%;
}

.grid_col--6-of-12, .grid_col--4-of-8, .grid_col--3-of-6, .grid_col--2-of-4, .grid_col--1-of-2 {
  width: 50%;
}

.grid_col--4-of-12, .grid_col--2-of-6, .grid_col--1-of-3 {
  width: 33.3333333333%;
}

.grid_col--8-of-12, .grid_col--4-of-6, .grid_col--2-of-3 {
  width: 66.6666666667%;
}

.grid_col--3-of-12, .grid_col--2-of-8, .grid_col--1-of-4 {
  width: 25%;
}

.grid_col--9-of-12, .grid_col--6-of-8, .grid_col--3-of-4 {
  width: 75%;
}

.grid--flex .grid_col--12-of-12, .grid--flex .grid_col--8-of-8, .grid--flex .grid_col--7-of-7, .grid--flex .grid_col--6-of-6, .grid--flex .grid_col--5-of-5, .grid--flex .grid_col--4-of-4, .grid--flex .grid_col--3-of-3, .grid--flex .grid_col--2-of-2, .grid--flex .grid_col--1-of-1 {
  width: auto;
  flex-basis: 100%;
  max-width: 100%;
}

.grid--flex .grid_col--6-of-12, .grid--flex .grid_col--4-of-8, .grid--flex .grid_col--3-of-6, .grid--flex .grid_col--2-of-4, .grid--flex .grid_col--1-of-2 {
  width: auto;
  flex-basis: 50%;
  max-width: 50%;
}

.grid--flex .grid_col--4-of-12, .grid--flex .grid_col--2-of-6, .grid--flex .grid_col--1-of-3 {
  width: auto;
  flex-basis: 33.3333333333%;
  max-width: 33.3333333333%;
}

.grid--flex .grid_col--8-of-12, .grid--flex .grid_col--4-of-6, .grid--flex .grid_col--2-of-3 {
  width: auto;
  flex-basis: 66.6666666667%;
  max-width: 66.6666666667%;
}

.grid--flex .grid_col--3-of-12, .grid--flex .grid_col--2-of-8, .grid--flex .grid_col--1-of-4 {
  width: auto;
  flex-basis: 25%;
  max-width: 25%;
}

.grid--flex .grid_col--9-of-12, .grid--flex .grid_col--6-of-8, .grid--flex .grid_col--3-of-4 {
  width: auto;
  flex-basis: 75%;
  max-width: 75%;
}

.grid_col--push-12-of-12, .grid_col--push-8-of-8, .grid_col--push-7-of-7, .grid_col--push-6-of-6, .grid_col--push-5-of-5, .grid_col--push-4-of-4, .grid_col--push-3-of-3, .grid_col--push-2-of-2, .grid_col--push-1-of-1 {
  margin-left: 100%;
}

.grid_col--push-6-of-12, .grid_col--push-4-of-8, .grid_col--push-3-of-6, .grid_col--push-2-of-4, .grid_col--push-1-of-2 {
  margin-left: 50%;
}

.grid_col--push-4-of-12, .grid_col--push-2-of-6, .grid_col--push-1-of-3 {
  margin-left: 33.3333333333%;
}

.grid_col--push-8-of-12, .grid_col--push-4-of-6, .grid_col--push-2-of-3 {
  margin-left: 66.6666666667%;
}

.grid_col--push-3-of-12, .grid_col--push-2-of-8, .grid_col--push-1-of-4 {
  margin-left: 25%;
}

.grid_col--push-9-of-12, .grid_col--push-6-of-8, .grid_col--push-3-of-4 {
  margin-left: 75%;
}

.grid_col--pull-12-of-12, .grid_col--pull-8-of-8, .grid_col--pull-7-of-7, .grid_col--pull-6-of-6, .grid_col--pull-5-of-5, .grid_col--pull-4-of-4, .grid_col--pull-3-of-3, .grid_col--pull-2-of-2, .grid_col--pull-1-of-1 {
  margin-left: -100%;
}

.grid_col--pull-6-of-12, .grid_col--pull-4-of-8, .grid_col--pull-3-of-6, .grid_col--pull-2-of-4, .grid_col--pull-1-of-2 {
  margin-left: -50%;
}

.grid_col--pull-4-of-12, .grid_col--pull-2-of-6, .grid_col--pull-1-of-3 {
  margin-left: -33.3333333333%;
}

.grid_col--pull-8-of-12, .grid_col--pull-4-of-6, .grid_col--pull-2-of-3 {
  margin-left: -66.6666666667%;
}

.grid_col--pull-3-of-12, .grid_col--pull-2-of-8, .grid_col--pull-1-of-4 {
  margin-left: -25%;
}

.grid_col--pull-9-of-12, .grid_col--pull-6-of-8, .grid_col--pull-3-of-4 {
  margin-left: -75%;
}

.grid_col--1-of-5 {
  width: 20%;
}

.grid--flex .grid_col--1-of-5 {
  width: auto;
  flex-basis: 20%;
  max-width: 20%;
}

.grid_col--push-1-of-5 {
  margin-left: 20%;
}

.grid_col--pull-1-of-5 {
  margin-left: -20%;
}

.grid_col--2-of-5 {
  width: 40%;
}

.grid--flex .grid_col--2-of-5 {
  width: auto;
  flex-basis: 40%;
  max-width: 40%;
}

.grid_col--push-2-of-5 {
  margin-left: 40%;
}

.grid_col--pull-2-of-5 {
  margin-left: -40%;
}

.grid_col--3-of-5 {
  width: 60%;
}

.grid--flex .grid_col--3-of-5 {
  width: auto;
  flex-basis: 60%;
  max-width: 60%;
}

.grid_col--push-3-of-5 {
  margin-left: 60%;
}

.grid_col--pull-3-of-5 {
  margin-left: -60%;
}

.grid_col--4-of-5 {
  width: 80%;
}

.grid--flex .grid_col--4-of-5 {
  width: auto;
  flex-basis: 80%;
  max-width: 80%;
}

.grid_col--push-4-of-5 {
  margin-left: 80%;
}

.grid_col--pull-4-of-5 {
  margin-left: -80%;
}

.grid_col--1-of-6 {
  width: 16.6666666667%;
}

.grid--flex .grid_col--1-of-6 {
  width: auto;
  flex-basis: 16.6666666667%;
  max-width: 16.6666666667%;
}

.grid_col--push-1-of-6 {
  margin-left: 16.6666666667%;
}

.grid_col--pull-1-of-6 {
  margin-left: -16.6666666667%;
}

.grid_col--5-of-6 {
  width: 83.3333333333%;
}

.grid--flex .grid_col--5-of-6 {
  width: auto;
  flex-basis: 83.3333333333%;
  max-width: 83.3333333333%;
}

.grid_col--push-5-of-6 {
  margin-left: 83.3333333333%;
}

.grid_col--pull-5-of-6 {
  margin-left: -83.3333333333%;
}

.grid_col--1-of-7 {
  width: 14.2857142857%;
}

.grid--flex .grid_col--1-of-7 {
  width: auto;
  flex-basis: 14.2857142857%;
  max-width: 14.2857142857%;
}

.grid_col--push-1-of-7 {
  margin-left: 14.2857142857%;
}

.grid_col--pull-1-of-7 {
  margin-left: -14.2857142857%;
}

.grid_col--2-of-7 {
  width: 28.5714285714%;
}

.grid--flex .grid_col--2-of-7 {
  width: auto;
  flex-basis: 28.5714285714%;
  max-width: 28.5714285714%;
}

.grid_col--push-2-of-7 {
  margin-left: 28.5714285714%;
}

.grid_col--pull-2-of-7 {
  margin-left: -28.5714285714%;
}

.grid_col--3-of-7 {
  width: 42.8571428571%;
}

.grid--flex .grid_col--3-of-7 {
  width: auto;
  flex-basis: 42.8571428571%;
  max-width: 42.8571428571%;
}

.grid_col--push-3-of-7 {
  margin-left: 42.8571428571%;
}

.grid_col--pull-3-of-7 {
  margin-left: -42.8571428571%;
}

.grid_col--4-of-7 {
  width: 57.1428571429%;
}

.grid--flex .grid_col--4-of-7 {
  width: auto;
  flex-basis: 57.1428571429%;
  max-width: 57.1428571429%;
}

.grid_col--push-4-of-7 {
  margin-left: 57.1428571429%;
}

.grid_col--pull-4-of-7 {
  margin-left: -57.1428571429%;
}

.grid_col--5-of-7 {
  width: 71.4285714286%;
}

.grid--flex .grid_col--5-of-7 {
  width: auto;
  flex-basis: 71.4285714286%;
  max-width: 71.4285714286%;
}

.grid_col--push-5-of-7 {
  margin-left: 71.4285714286%;
}

.grid_col--pull-5-of-7 {
  margin-left: -71.4285714286%;
}

.grid_col--6-of-7 {
  width: 85.7142857143%;
}

.grid--flex .grid_col--6-of-7 {
  width: auto;
  flex-basis: 85.7142857143%;
  max-width: 85.7142857143%;
}

.grid_col--push-6-of-7 {
  margin-left: 85.7142857143%;
}

.grid_col--pull-6-of-7 {
  margin-left: -85.7142857143%;
}

.grid_col--1-of-8 {
  width: 12.5%;
}

.grid--flex .grid_col--1-of-8 {
  width: auto;
  flex-basis: 12.5%;
  max-width: 12.5%;
}

.grid_col--push-1-of-8 {
  margin-left: 12.5%;
}

.grid_col--pull-1-of-8 {
  margin-left: -12.5%;
}

.grid_col--3-of-8 {
  width: 37.5%;
}

.grid--flex .grid_col--3-of-8 {
  width: auto;
  flex-basis: 37.5%;
  max-width: 37.5%;
}

.grid_col--push-3-of-8 {
  margin-left: 37.5%;
}

.grid_col--pull-3-of-8 {
  margin-left: -37.5%;
}

.grid_col--5-of-8 {
  width: 62.5%;
}

.grid--flex .grid_col--5-of-8 {
  width: auto;
  flex-basis: 62.5%;
  max-width: 62.5%;
}

.grid_col--push-5-of-8 {
  margin-left: 62.5%;
}

.grid_col--pull-5-of-8 {
  margin-left: -62.5%;
}

.grid_col--7-of-8 {
  width: 87.5%;
}

.grid--flex .grid_col--7-of-8 {
  width: auto;
  flex-basis: 87.5%;
  max-width: 87.5%;
}

.grid_col--push-7-of-8 {
  margin-left: 87.5%;
}

.grid_col--pull-7-of-8 {
  margin-left: -87.5%;
}

.grid_col--1-of-12 {
  width: 8.3333333333%;
}

.grid--flex .grid_col--1-of-12 {
  width: auto;
  flex-basis: 8.3333333333%;
  max-width: 8.3333333333%;
}

.grid_col--push-1-of-12 {
  margin-left: 8.3333333333%;
}

.grid_col--pull-1-of-12 {
  margin-left: -8.3333333333%;
}

.grid_col--2-of-12 {
  width: 16.6666666667%;
}

.grid--flex .grid_col--2-of-12 {
  width: auto;
  flex-basis: 16.6666666667%;
  max-width: 16.6666666667%;
}

.grid_col--push-2-of-12 {
  margin-left: 16.6666666667%;
}

.grid_col--pull-2-of-12 {
  margin-left: -16.6666666667%;
}

.grid_col--5-of-12 {
  width: 41.6666666667%;
}

.grid--flex .grid_col--5-of-12 {
  width: auto;
  flex-basis: 41.6666666667%;
  max-width: 41.6666666667%;
}

.grid_col--push-5-of-12 {
  margin-left: 41.6666666667%;
}

.grid_col--pull-5-of-12 {
  margin-left: -41.6666666667%;
}

.grid_col--7-of-12 {
  width: 58.3333333333%;
}

.grid--flex .grid_col--7-of-12 {
  width: auto;
  flex-basis: 58.3333333333%;
  max-width: 58.3333333333%;
}

.grid_col--push-7-of-12 {
  margin-left: 58.3333333333%;
}

.grid_col--pull-7-of-12 {
  margin-left: -58.3333333333%;
}

.grid_col--10-of-12 {
  width: 83.3333333333%;
}

.grid--flex .grid_col--10-of-12 {
  width: auto;
  flex-basis: 83.3333333333%;
  max-width: 83.3333333333%;
}

.grid_col--push-10-of-12 {
  margin-left: 83.3333333333%;
}

.grid_col--pull-10-of-12 {
  margin-left: -83.3333333333%;
}

.grid_col--11-of-12 {
  width: 91.6666666667%;
}

.grid--flex .grid_col--11-of-12 {
  width: auto;
  flex-basis: 91.6666666667%;
  max-width: 91.6666666667%;
}

.grid_col--push-11-of-12 {
  margin-left: 91.6666666667%;
}

.grid_col--pull-11-of-12 {
  margin-left: -91.6666666667%;
}

.grid_col {
  box-sizing: border-box;
  display: inline-block;
  margin-right: -0.25em;
  min-height: 1px;
  padding-left: 20px;
  vertical-align: top;
}
@media (max-width: 480px) {
  .grid_col {
    display: block;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
}
@media (max-width: 1200px) and (min-width: 1025px) {
  .grid_col[class*=grid_col--lg-] {
    display: inline-block;
    margin-right: -0.24em;
  }
  .grid--flex .grid_col[class*=grid_col--lg-] {
    display: block;
    margin-right: 0;
  }
  .grid_col.grid_col--lg-1-of-1 {
    width: 100%;
  }
  .grid--flex .grid_col.grid_col--lg-1-of-1 {
    width: auto;
    flex-basis: 100%;
    max-width: 100%;
  }
  .grid_col.grid_col--lg-1-of-2, .grid_col.grid_col--lg-2-of-4 {
    width: 50%;
  }
  .grid--flex .grid_col.grid_col--lg-1-of-2, .grid--flex .grid_col.grid_col--lg-2-of-4 {
    width: auto;
    flex-basis: 50%;
    max-width: 50%;
  }
  .grid_col.grid_col--lg-1-of-3 {
    width: 33.3333333333%;
  }
  .grid--flex .grid_col.grid_col--lg-1-of-3 {
    width: auto;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .grid_col.grid_col--lg-2-of-3 {
    width: 66.6666666667%;
  }
  .grid--flex .grid_col.grid_col--lg-2-of-3 {
    width: auto;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .grid_col.grid_col--lg-1-of-4 {
    width: 25%;
  }
  .grid--flex .grid_col.grid_col--lg-1-of-4 {
    width: auto;
    flex-basis: 25%;
    max-width: 25%;
  }
  .grid_col.grid_col--lg-3-of-4 {
    width: 75%;
  }
  .grid--flex .grid_col.grid_col--lg-3-of-4 {
    width: auto;
    flex-basis: 75%;
    max-width: 75%;
  }
}
@media (max-width: 1024px) and (min-width: 769px) {
  .grid_col[class*=grid_col--lc-] {
    display: inline-block;
    margin-right: -0.24em;
  }
  .grid--flex .grid_col[class*=grid_col--lc-] {
    display: block;
    margin-right: 0;
  }
  .grid_col.grid_col--lc-1-of-1 {
    width: 100%;
  }
  .grid--flex .grid_col.grid_col--lc-1-of-1 {
    width: auto;
    flex-basis: 100%;
    max-width: 100%;
  }
  .grid_col.grid_col--lc-1-of-2, .grid_col.grid_col--lc-2-of-4 {
    width: 50%;
  }
  .grid--flex .grid_col.grid_col--lc-1-of-2, .grid--flex .grid_col.grid_col--lc-2-of-4 {
    width: auto;
    flex-basis: 50%;
    max-width: 50%;
  }
  .grid_col.grid_col--lc-1-of-3 {
    width: 33.3333333333%;
  }
  .grid--flex .grid_col.grid_col--lc-1-of-3 {
    width: auto;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .grid_col.grid_col--lc-2-of-3 {
    width: 66.6666666667%;
  }
  .grid--flex .grid_col.grid_col--lc-2-of-3 {
    width: auto;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .grid_col.grid_col--lc-1-of-4 {
    width: 25%;
  }
  .grid--flex .grid_col.grid_col--lc-1-of-4 {
    width: auto;
    flex-basis: 25%;
    max-width: 25%;
  }
  .grid_col.grid_col--lc-3-of-4 {
    width: 75%;
  }
  .grid--flex .grid_col.grid_col--lc-3-of-4 {
    width: auto;
    flex-basis: 75%;
    max-width: 75%;
  }
}
@media (max-width: 768px) and (min-width: 481px) {
  .grid_col[class*=grid_col--md-] {
    display: inline-block;
    margin-right: -0.24em;
  }
  .grid--flex .grid_col[class*=grid_col--md-] {
    display: block;
    margin-right: 0;
  }
  .grid_col.grid_col--md-1-of-1 {
    width: 100%;
  }
  .grid--flex .grid_col.grid_col--md-1-of-1 {
    width: auto;
    flex-basis: 100%;
    max-width: 100%;
  }
  .grid_col.grid_col--md-1-of-2, .grid_col.grid_col--md-2-of-4 {
    width: 50%;
  }
  .grid--flex .grid_col.grid_col--md-1-of-2, .grid--flex .grid_col.grid_col--md-2-of-4 {
    width: auto;
    flex-basis: 50%;
    max-width: 50%;
  }
  .grid_col.grid_col--md-1-of-3 {
    width: 33.3333333333%;
  }
  .grid--flex .grid_col.grid_col--md-1-of-3 {
    width: auto;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .grid_col.grid_col--md-2-of-3 {
    width: 66.6666666667%;
  }
  .grid--flex .grid_col.grid_col--md-2-of-3 {
    width: auto;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .grid_col.grid_col--md-1-of-4 {
    width: 25%;
  }
  .grid--flex .grid_col.grid_col--md-1-of-4 {
    width: auto;
    flex-basis: 25%;
    max-width: 25%;
  }
  .grid_col.grid_col--md-3-of-4 {
    width: 75%;
  }
  .grid--flex .grid_col.grid_col--md-3-of-4 {
    width: auto;
    flex-basis: 75%;
    max-width: 75%;
  }
}
@media (max-width: 480px) {
  .grid_col[class*=grid_col--sm-] {
    display: inline-block;
    margin-right: -0.24em;
  }
  .grid--flex .grid_col[class*=grid_col--sm-] {
    display: block;
    margin-right: 0;
  }
  .grid_col.grid_col--sm-1-of-2, .grid_col.grid_col--sm-2-of-4 {
    width: 50%;
  }
  .grid--flex .grid_col.grid_col--sm-1-of-2, .grid--flex .grid_col.grid_col--sm-2-of-4 {
    width: auto;
    flex-basis: 50%;
    max-width: 50%;
  }
  .grid_col.grid_col--sm-1-of-3 {
    width: 33.3333333333%;
  }
  .grid--flex .grid_col.grid_col--sm-1-of-3 {
    width: auto;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .grid_col.grid_col--sm-2-of-3 {
    width: 66.6666666667%;
  }
  .grid--flex .grid_col.grid_col--sm-2-of-3 {
    width: auto;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .grid_col.grid_col--sm-1-of-4 {
    width: 25%;
  }
  .grid--flex .grid_col.grid_col--sm-1-of-4 {
    width: auto;
    flex-basis: 25%;
    max-width: 25%;
  }
  .grid_col.grid_col--sm-3-of-4 {
    width: 75%;
  }
  .grid--flex .grid_col.grid_col--sm-3-of-4 {
    width: auto;
    flex-basis: 75%;
    max-width: 75%;
  }
  .grid--flex .grid_col {
    width: auto;
    flex-basis: 100%;
    max-width: 100%;
  }
}

.grid_col--centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.grid_col--d-first {
  float: left;
}
.grid--flex .grid_col--d-first {
  float: none;
  order: -1;
}

.grid_col--d-last {
  float: right;
}
.grid--flex .grid_col--d-last {
  float: none;
  order: 1;
}

.grid--no-gutter {
  margin-left: 0;
}
.grid--no-gutter .grid_col {
  padding-left: 0;
}
.grid--no-gutter .grid_col--span-all {
  margin-left: 0;
  width: 100%;
}

.grid--gutter {
  margin-left: -20px;
}
.grid--gutter .grid_col {
  padding-left: 20px;
}
.grid--gutter-40 {
  margin-left: -40px;
}
.grid--gutter-40 .grid_col {
  padding-left: 40px;
}

.grid--no-space .grid_col {
  margin-right: 0;
}

.grid_col--ab {
  vertical-align: bottom;
}

.grid_col--am {
  vertical-align: middle;
}

/* ==================================
 --------- UTILITY CLASSES --------
================================== */
.hidden:not([role=tabpanel]) {
  display: none !important;
}
.hidden[role=tabpanel] {
  display: none;
}

.disabled {
  opacity: 0.3;
  transition: none;
  pointer-events: none;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.inline {
  display: inline;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.vtop {
  vertical-align: top;
}

.vmiddle {
  vertical-align: middle;
}

.vbottom {
  vertical-align: bottom;
}

.right {
  float: right;
}

.left {
  float: left;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.heading-right .module_title {
  text-align: right;
}

.heading-left .module_title {
  text-align: left;
}

.heading-center .module_title {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.background--cover {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.background--brand {
  background-color: #141c1f;
}

.background--alt-brand {
  background-color: #cd173f;
}

.background--dark {
  background-color: #000;
  color: #fff;
}

.background--dark-alt {
  background-color: #1d1d1d;
  color: #fff;
}

.background--light {
  background-color: #fff;
}

.background--grey {
  background-color: #f8f1f3;
}

.background--grey-alt {
  background-color: #f7f7f7;
}

.background--grey-dark {
  background-color: #4a4a4a;
}

.background--success {
  background-color: #006613;
}

.background--error {
  background-color: #b72121;
}

.background--fixed {
  background-attachment: fixed;
}
@media only screen and (max-width: 1024px) {
  .background--fixed {
    background-attachment: scroll;
  }
}

.color--brand {
  color: #141c1f;
}

.color--light {
  color: #fff;
}

.color--dark {
  color: #000;
}

.color--grey {
  color: #f8f1f3;
}

.color--success {
  color: #006613;
}

.color--error {
  color: #b72121;
}

.dark {
  color: #fff;
  background-color: #000;
}
.dark a {
  color: #fff;
}
.dark .button {
  background-color: transparent;
}
.dark .button:hover {
  background-color: #cd173f;
}

.splitbox {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .splitbox {
    flex-direction: column;
    text-align: center;
  }
}
.splitbox > div {
  width: 50%;
}
@media only screen and (max-width: 1024px) {
  .splitbox > div {
    width: 100%;
  }
}

.splitbox_text--left {
  padding: 85px 80px 85px 130px;
}
@media only screen and (max-width: 1024px) {
  .splitbox_text--left {
    padding: 65px 60px;
  }
}
@media only screen and (max-width: 768px) {
  .splitbox_text--left {
    padding: 60px 13px;
  }
}

.primary-cta, .module-stock-historical .module_options-submit, .primary-cta--filled {
  transition: 0.3s ease-in-out;
  background-color: transparent;
  padding: 14px 20px;
  width: fit-content;
  display: block;
  border-radius: 50px;
  border: 2px solid #cd173f;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.7rem;
  letter-spacing: 1.5px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  margin: 0 auto;
}
.primary-cta:hover, .module-stock-historical .module_options-submit:hover, .primary-cta--filled:hover, .primary-cta:focus, .module-stock-historical .module_options-submit:focus, .primary-cta--filled:focus {
  background-color: #9a1130;
  border-color: #9a1130;
  color: #fff;
}

.module-stock-historical .module_options-submit, .primary-cta--filled {
  background-color: #cd173f;
}

.secondary-cta {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.4rem;
  color: brand-color--alt;
}
.secondary-cta:hover {
  text-decoration: underline;
  color: brand-color--alt2;
}
.secondary-cta--alt {
  color: #fff;
}
.secondary-cta--alt:hover {
  color: #fff;
}

.hyperlink {
  color: #cd173f;
  font-size: 1.6rem;
  line-height: 2.4rem;
}
.hyperlink:hover {
  text-decoration: underline;
  color: #9a1130;
}

.hyperlink--alt {
  color: #fff;
}
.hyperlink--alt:hover {
  color: #fff;
}

.module-pipeline_footnotes {
  font-size: 1.2rem;
  line-height: 2.2rem;
}

.module-news-latest-latest-overview .module_date-time, .module-news-latest-overview .module_date-time {
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 400;
}

.module-pipeline .highcharts-subtitle {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
}

.module-news-latest-latest .module_headline-link, .module-news-latest .module_headline-link {
  font-size: 1.8rem;
  line-height: 2.8rem;
  font-weight: 500;
  text-transform: capitalize;
}

.img-container_zoom-effect {
  overflow: hidden;
}
.img-container_zoom-effect img {
  transition: all 0.25s ease-in-out;
}
.img-container_zoom-effect:hover img {
  transform: scale(1.05);
}

.no-margin-left {
  margin-left: 0;
}

.narrow-content h2 {
  max-width: 33ch;
}
.narrow-content p {
  max-width: 75ch;
}
.narrow-content.text-center h2,
.narrow-content.text-center p {
  margin-left: auto;
  margin-right: auto;
}

/* ==================================
 --------- ACCESSIBILITY ----------
================================== */
input:focus,
select:focus,
textarea:focus,
button:focus,
[href]:focus,
[tabindex]:focus,
[contentEditable=true]:focus,
.module_add-to-calendar-reveal:focus,
a:focus,
input[type=checkbox]:focus + label::before,
input[type=radio]:focus + label::before,
.radio--btn input[type=radio]:focus + label {
  outline-width: 2px;
  outline-style: dotted;
  outline-color: inherit;
  outline-offset: 2px;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
}

#maincontent:focus {
  outline: 0;
}

.tooltip {
  position: absolute;
  padding: 5px;
  font-family: Arial, sans-serif;
  color: black;
  background: white;
  line-height: normal;
  transform: translate(0, -50%);
  z-index: 200;
  font-size: 12px;
  white-space: nowrap;
  margin-left: 5px;
}
.tooltip[data-position=left] {
  transform: translate(-20px, -35px);
  margin-left: 0;
}
.tooltip[aria-hidden=true] {
  display: none;
}
.tooltip[aria-hidden=false] {
  display: block;
}

/* ---------- Javascript ---------- */
.js--loading::after {
  position: relative;
  left: 50%;
  display: inline-block;
  margin: 10px 0 10px -25px;
  font-family: "q4-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\eb27";
  font-size: 5rem;
  animation: spin 0.8s infinite linear;
}
.js--hidden:not([data-accordion]) {
  display: none !important;
}
.js--hidden[data-accordion] {
  display: none;
}
.js--visible {
  display: block;
}
.js--disabled {
  opacity: 0.3;
  transition: none;
  pointer-events: none;
}
.js--invalid input[type=text],
.js--invalid select {
  border: 1px solid #b72121 !important;
}
.js--invalid input[type=checkbox] {
  border-color: #b72121 !important;
}

/* ==================================
 ----------- MODULE CSS -----------
================================== */
/* -------- All Module CSS -------- */
.module_header, .module_back-to-top, .module_anchor-target, .module_file-size, .module_file-type, .module_file-text {
  display: none;
}
.module_nav, .module_headline, .module_location, .module_speakers, .module_links, .module_body, .module_options, .module_not-found {
  margin-bottom: 10px;
}
.module_add-to-calendar-reveal {
  color: #cd173f;
  cursor: pointer;
}
.module_add-to-calendar-reveal:hover {
  color: #141c1f;
}
.module_add-to-calendar-list {
  display: none;
}
.module_add-to-calendar-list::after {
  content: "Select your Calendar";
  display: block;
  margin-top: 15px;
  font-size: 1.4rem;
  text-align: center;
}
.fancybox-container .module_add-to-calendar-list {
  padding: 0 30px;
}

.module_add-to-calendar-item {
  display: inline-block;
  margin: 0 10px;
}
.module_add-to-calendar-item--ics {
  display: none;
}
.module_add-to-calendar-link {
  font-size: 2.4rem;
}
.module_add-to-calendar.js--hidden {
  display: none;
}
.module_actions, .module_pager {
  margin-top: 20px;
}
.module_date-time {
  margin-bottom: 5px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #141c1f;
}
.module_error-container {
  display: block;
  margin-bottom: 30px;
  color: #b72121;
}
.module_error-container ul {
  padding-left: 18px;
  list-style-type: disc;
}
.module_error-container ul > li {
  line-height: 1.5;
}
.module_error-container > br {
  display: none;
}
.module_error-container > span {
  display: block;
  line-height: 1.5;
}
.module_error-container > span::before {
  font-family: "q4-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\ec6b";
  margin-right: 5px;
}
.module_headline {
  line-height: 1.5;
}
.module_headline-link:hover {
  text-decoration: underline;
  color: #cd173f;
}
.module_image {
  display: inline-block;
  max-width: 30%;
  margin-bottom: 16px;
}
.module_image--right {
  float: right;
  margin-left: 32px;
}
.module_image--left {
  float: left;
  margin-right: 32px;
}
.module_introduction {
  margin-bottom: 35px;
}
.module_item {
  padding-top: 30px;
  padding-bottom: 10px;
}
.module_item ~ .module_item {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.module_item_link {
  position: inline-block;
  margin: 0 15px 10px 0;
  vertical-align: middle;
  font-size: 1.2rem;
  text-transform: uppercase;
}
.module_item_link:hover {
  text-decoration: underline;
  color: #9a1130;
}
.module_item_link > .module_item_link-text, .module_item_link > i, .module_item_link > span {
  vertical-align: middle;
}
.module_item_link[style="DISPLAY:block;"], .module_item_link[style="display: block;"] {
  display: inline-block !important;
}
.module_links > *,
.module_links li,
.module_links .module_presentation {
  display: inline;
}
@media only screen and (max-width: 480px) {
  .module_links > *,
.module_links li,
.module_links .module_presentation {
    display: block;
  }
}
.module_links > * a:hover span.module_link-text,
.module_links li a:hover span.module_link-text,
.module_links .module_presentation a:hover span.module_link-text {
  text-decoration: underline;
}
.module_links.module_links--stack > *,
.module_links.module_links--stack li,
.module_links.module_links--stack .module_presentation {
  display: block;
}
.module_link-container {
  position: absolute;
  bottom: 20px;
  font-size: 1.2rem;
  text-transform: uppercase;
}
.module_link-container:hover {
  text-decoration: underline;
  color: #9a1130;
}
.module_loader {
  margin: 0;
  display: inline-block;
  animation: spin 1s linear infinite;
}
.module_message {
  display: block;
  margin: 16px 0;
}
.module_message[style$="hidden;"], .module_message:empty {
  display: none;
}
.module_message--success {
  color: #006613;
}
.module_message--success::before {
  font-family: "q4-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\ed71";
  margin-right: 5px;
}
.module_message--error {
  color: #b72121;
}
.module_message--error::before {
  font-family: "q4-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\ed4f";
  margin-right: 5px;
}
.module_message--validation_error {
  margin: 0;
}
.module_nav-link,
.module_nav .ModuleYearLink, .module_nav-link:visited,
.module_nav .ModuleYearLink:visited {
  display: inline-block;
  margin-right: 5px;
  padding: 15px 20px;
  border: 2px solid #141c1f;
  color: #2a3035;
  font-weight: normal;
}
.module_nav-link.selected, .module_nav-link.selected:visited,
.module_nav .ModuleYearLink.selected,
.module_nav .ModuleYearLink.selected:visited, .module_nav-link:visited.selected, .module_nav-link:visited.selected:visited,
.module_nav .ModuleYearLink:visited.selected,
.module_nav .ModuleYearLink:visited.selected:visited {
  background-color: #141c1f;
  color: #fff;
}
@media only screen and (max-width: 480px) {
  .module_nav-link,
.module_nav .ModuleYearLink, .module_nav-link:visited,
.module_nav .ModuleYearLink:visited {
    margin-bottom: 10px;
  }
}
.module_options {
  margin-bottom: 30px;
}
.module_options-label, .module_options-select {
  margin-right: 10px;
}
@media only screen and (max-width: 480px) {
  .module_options-label, .module_options-select, .module_options-submit {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
}
.module_pager a {
  color: #2a3035;
}
.module_pager a[href] {
  color: #141c1f;
}
.module_reminder {
  margin-top: 10px;
}
.module_reminder .grid_col {
  vertical-align: inherit;
}
.module_reminder .grid_col .button {
  margin: 0;
}
.module_reminder .module_label {
  margin-right: 10px;
}
.module_reminder.js--reminded {
  display: none;
}
.module_required {
  color: #2a3035;
}
.module_required-text {
  font-size: 1.3rem;
  color: #2a3035;
}
.module_rss {
  float: right;
  margin-top: 10px;
}
.module_speakers li {
  margin-bottom: 5px;
}
.module_title {
  text-transform: capitalize;
}
.module_view-all-link {
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
}
.module_input[type=text], .module_input[type=email], .module_input[type=file], .module_dropdown,
.module textarea.module_input {
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* Text area demands width */
  width: 100%;
  max-width: none;
  padding: 11px 14px;
  border: 1px solid #767676;
  border-radius: 0;
  background-color: #fafafa;
  font-family: inherit;
  font-size: 1.2rem;
  color: #545b62;
}
.module_input[type=text]::-ms-clear, .module_input[type=email]::-ms-clear, .module_input[type=file]::-ms-clear, .module_dropdown::-ms-clear,
.module textarea.module_input::-ms-clear {
  display: none;
}
.module_input[type=text]:-ms-input-placeholder, .module_input[type=email]:-ms-input-placeholder, .module_input[type=file]:-ms-input-placeholder, .module_dropdown:-ms-input-placeholder,
.module textarea.module_input:-ms-input-placeholder {
  color: #000 !important;
}
.module textarea.module_input {
  resize: vertical;
  min-height: 150px;
}
.module_input[type=file], .module_dropdown {
  cursor: pointer;
}
.module_input[type=file] {
  line-height: 1;
}
.module_input--brand-alt[type=text] {
  display: inline-block;
  width: auto;
  border: 1px solid #cd173f;
  background: transparent;
}
.module_dropdown {
  background: #fafafa url('../design/svg/q4-icon_chevron-down-black.svg') no-repeat right 20px center;
  background-size: 14px 14px;
}
.module_dropdown::-ms-expand {
  display: none;
}
.module-details .module_date-time {
  color: #fff;
  margin-bottom: 15px;
}

/* - Investment Calculator Widget - */
.module-calculator p {
  font-size: 2rem;
}
.module-calculator .js--loading::after {
  left: auto;
  margin: 10px 0;
}
@media only screen and (min-width: 769px) {
  .module-calculator_fieldset {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
}
.module-calculator_legend {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.55;
  margin: 0 0 17px 0;
}
@media screen and (min-width: 901px) {
  .module-calculator_legend {
    float: left;
    margin: 23px 17px 0 0;
  }
}
.module-calculator_input {
  display: inline-block;
  position: relative;
}
.module-calculator_input:not(:last-of-type) {
  margin-right: 20px;
}
@media only screen and (max-width: 768px) {
  .module-calculator_input {
    display: block;
    text-align: left;
  }
  .module-calculator_input:not(:last-of-type) {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.module-calculator_input h4 {
  font-weight: normal;
  display: inline-block;
  margin: 0 25px 10px 0;
}
@media only screen and (max-width: 768px) {
  .module-calculator_input h4 {
    display: block;
  }
}
.module-calculator_input label {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.8rem;
  text-align: left;
}
.module-calculator_input input[type=text] {
  border: 1px solid #bbb;
  display: inline-block;
  max-width: 190px;
  color: #cd173f;
  font-size: 1.6rem;
}
@media only screen and (max-width: 768px) {
  .module-calculator_input input[type=text] {
    max-width: 100%;
  }
}
.module-calculator_input input[type=text].hasDatepicker {
  width: 150px;
  padding-right: 30px;
}
@media only screen and (max-width: 768px) {
  .module-calculator_input input[type=text].hasDatepicker {
    width: 100%;
  }
}
.module-calculator_input input[type=text].module_input--autocomplete {
  display: none;
  margin: auto;
}
.module-calculator_input input[type=text].module_input--autocomplete.js--revealed {
  display: block;
}
.module-calculator_input button {
  background: transparent;
  padding: 0;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  position: absolute;
  right: 10px;
  bottom: 13px;
  color: #141c1f;
  cursor: pointer;
}
.module-calculator_input.module-calculator_reinvest-dividends {
  display: block;
}
.module-calculator_input-row {
  padding-bottom: 10px;
  margin-right: 25px;
  display: inline-block;
}
.module-calculator_input-row input[type=text] {
  margin-top: 10px;
  max-width: 300px;
}
.module-calculator_popup-container h2 {
  margin-top: 0;
  color: inherit;
}
@media screen and (min-width: 1024px) {
  .module-calculator_popup-container {
    min-width: 920px;
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .module-calculator_popup-container .table thead {
    display: none;
  }
  .module-calculator_popup-container .table tbody {
    border-top: 2px solid #141c1f;
    border-bottom: 2px solid #141c1f;
  }
  .module-calculator_popup-container .table td {
    display: block;
  }
  .module-calculator_popup-container .table td::before {
    content: attr(data-heading) ": ";
    font-weight: bold;
  }
}
.module-calculator_info td:first-child::before {
  content: none;
}
.module-calculator .module_actions {
  display: flex;
  justify-content: center;
}
.module-calculator .q4-icon_calendar {
  color: #cd173f;
}

/* -------- Careers Module CSS ------- */
.module-careers .module-intro p {
  font-size: 2rem;
  line-height: 3rem;
}

.pane--content .module.careers-join-us {
  padding-top: 99px;
  padding-bottom: 99px;
}
@media only screen and (max-width: 480px) {
  .pane--content .module.careers-join-us {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.careers-join-us {
  background-image: url('../design/careers-join-us.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}
.careers-join-us .module_container--inner {
  display: flex;
  justify-content: flex-end;
}
.careers-join-us .join-us-container {
  background-color: #141c1f;
  padding: 48px 61px;
  max-width: 528px;
}
.careers-join-us .join-us-container h2 {
  font-weight: 400;
  font-size: 28px;
  line-height: 34px;
  letter-spacing: 0px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 480px) {
  .careers-join-us .join-us-container {
    padding: 20px;
  }
}
.careers-join-us .join-us-container h2,
.careers-join-us .join-us-container .description {
  color: #fff;
}
.careers-join-us .join-us-container .description {
  margin-bottom: 30px;
}
.careers-join-us .join-us-container .button {
  margin: unset;
  font-weight: 400;
  letter-spacing: 1.4px;
}

.narrow-intro {
  display: grid;
  max-width: 1160px;
  justify-content: center;
}
.narrow-intro p {
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  margin-top: 0;
  margin-bottom: 24px;
}

.careers-locations h2 {
  color: #CD173F !important;
  margin-top: 0;
  margin-bottom: 24px;
}
.careers-locations ul {
  display: grid;
  width: 100%;
  justify-content: space-between;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
  list-style: none;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .careers-locations ul {
    grid-template-columns: 1fr;
  }
}
.careers-locations ul li {
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
}

/* -------- Contacts Module CSS ------- */
.module-contact-corporate .module_container--outer, .module-contact-transfer .module_container--outer {
  border-bottom: 1px solid #c4c4c4;
  padding-bottom: 14px;
}
.module-contact-corporate .q4icons_icon, .module-contact-transfer .q4icons_icon {
  margin-right: 10px;
}
.module-contact-corporate .q4icons a, .module-contact-transfer .q4icons a {
  display: inline-block;
  margin-bottom: 10px;
}
.module-contact-corporate_name, .module-contact-transfer_name {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.8rem;
}
.module-contact-corporate_title, .module-contact-transfer_title {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.4rem;
}
.module-contact-headquarters .module_container--outer {
  border-bottom: 1px solid #c4c4c4;
  padding-bottom: 24px;
}
.module-contact-headquarters .module_container--outer:last-child {
  border: none;
  padding-bottom: 0;
}
.module-contact-headquarters_address {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.4rem;
}
.module-contact-map iframe {
  display: block;
}

/* - Committee Composition Widget - */
.module-committee {
  padding: 3rem 0 !important;
}
.module-committee h2.module_title {
  font-weight: 400;
  font-style: Regular;
  font-size: 28px;
  line-height: 34px;
  letter-spacing: 0px;
  color: #CD173F;
  margin-bottom: 10px;
}
.module-committee .module_container {
  color: #fff;
}
.module-committee .module_container--inner {
  border-bottom: 1px solid #fff;
}
.module-committee .module_container--desktop .module_header {
  display: table-header-group;
}
@media only screen and (max-width: 768px) {
  .module-committee .module_container--desktop {
    display: none;
  }
}
.module-committee .module_container--tablet {
  display: none;
}
@media only screen and (max-width: 768px) {
  .module-committee .module_container--tablet {
    display: block;
  }
}
.module-committee .module_container--tablet .module-committee_name {
  padding: 10px 0;
  display: inline-block;
}
.module-committee .module_container--tablet .module-committee_icon {
  padding: 10px 0 10px 25px;
  display: inline-block;
  text-align: center;
}
.module-committee .module_container--tablet .module_header {
  border: 0 none;
}
.module-committee .module_container--tablet .module_items-container .grid_col {
  padding: 0;
}
.module-committee .module_header {
  display: block;
  border-bottom: 1px solid #C4C4C4;
  font-weight: normal;
  color: #fff;
  font-size: 1.6rem;
}
.module-committee .module_item {
  padding: 0;
}
.module-committee .module_item ~ .module_item {
  border: 0;
}
.module-committee .module_item:nth-child(even) {
  background: #1d1d1d;
}
.module-committee .module_items-container {
  padding: 15px;
  margin: 0 0 15px 0;
  color: #fff;
  background: #1d1d1d;
}
.module-committee .module_item {
  font-size: 1.6rem;
}
.module-committee .grid_col {
  padding: 15px;
  text-align: center;
}
.module-committee .grid_col:first-child {
  text-align: left;
}
.module-committee_category {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.module-committee_category:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.module-committee_category .module_item:nth-child(even) {
  background: transparent;
}
.module-committee_category.js--active .module_header {
  color: #fff;
}
.module-committee_category.js--active .module_header .module-committee_trigger::before {
  content: "\edba";
}
.module-committee_custom-role {
  margin-left: 5px;
}
.module-committee_bio {
  padding: 0 15px 20px;
  text-align: left;
}
.module-committee_bio p {
  margin: 0;
}
.module-committee_bio p:not(:last-of-type) {
  margin-bottom: 16px;
}
.module-committee_legend-container {
  padding: 20px 15px;
}
.module-committee_legend {
  display: inline-block;
  margin-right: 30px;
  margin-bottom: 5px;
}
.module-committee_legend [class*=q4-icon_] {
  margin-right: 5px;
}
.module-committee .q4-icon_member::before {
  filter: brightness(100);
}
.module-committee .q4-icon_chairblack::before {
  filter: brightness(0) saturate(100%) invert(23%) sepia(45%) saturate(4987%) hue-rotate(332deg) brightness(79%) contrast(104%);
}

.pane--content .module_corporate-profile-1 img,
.pane--content .module_corporate-profile-2 img {
  width: 100%;
  display: block;
}
.pane--content .module.module_corporate-profile-1 {
  padding: 94px 0 100px;
}
@media screen and (max-width: 1150px) {
  .pane--content .module.module_corporate-profile-1 {
    padding: 74px 0 80px;
  }
}
@media only screen and (max-width: 1024px) {
  .pane--content .module.module_corporate-profile-1 {
    padding: 54px 0 60px;
  }
}
.pane--content .module.module_corporate-profile-2 {
  padding: 0 0 50px;
}
.pane--content .module.module_person-quotes-carousel.module_person-quotes-carousel-profile {
  padding-bottom: 100px;
}
@media screen and (max-width: 1150px) {
  .pane--content .module.module_person-quotes-carousel.module_person-quotes-carousel-profile {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 1024px) {
  .pane--content .module.module_person-quotes-carousel.module_person-quotes-carousel-profile {
    padding-bottom: 60px;
  }
}
.pane--content .full-width .module_container--outer {
  max-width: unset;
  padding-left: unset;
  padding-right: unset;
  margin-left: unset;
  margin-right: unset;
}

.module_corporate-profile-1 .grid_col:first-child {
  padding-right: 58px;
}
@media screen and (max-width: 1150px) {
  .module_corporate-profile-1 .grid_col:first-child {
    padding-right: 38px;
  }
}
@media only screen and (max-width: 1024px) {
  .module_corporate-profile-1 .grid_col:first-child {
    padding-right: 0;
  }
}

.module_corporate-profile-2 img {
  height: 100%;
  object-fit: cover;
}
.module_corporate-profile-2 .extra-padded {
  padding: 100px 88px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.module_corporate-profile-2 .extra-padded > * {
  max-width: 50.5rem;
}
@media screen and (max-width: 1150px) {
  .module_corporate-profile-2 .extra-padded {
    padding: 80px 68px;
  }
}
@media only screen and (max-width: 1024px) {
  .module_corporate-profile-2 .extra-padded {
    padding: 30px 20px 40px;
  }
}
@media only screen and (max-width: 768px) {
  .module_corporate-profile-2 .extra-padded {
    padding-left: 40px;
    order: -1;
  }
}
.module_corporate-profile-2 .primary-cta--filled {
  margin: 0;
}

/* -------- Media Coverage Module CSS ------- */
.module-coverage .module_options-container {
  display: inline-flex;
  flex-direction: column;
}
.module-coverage .module_options-container label {
  margin-bottom: 10px;
  font-size: 1.8rem;
  line-height: 2.8rem;
  font-weight: 500;
}
.module-coverage .module_options-container .dropdown {
  border: 1px solid #c4c4c4;
  font-size: 1.6rem;
  line-height: 2.4rem;
  min-width: 200px;
}
.module-coverage .module_date-time {
  font-size: 1.6rem;
  line-height: 2.4rem;
  margin-bottom: 10px;
}
.module-coverage .module_headline-link {
  font-size: 1.8rem;
  line-height: 2.8rem;
  font-weight: 500;
}

.diversity-matrix h3 {
  width: 78%;
  margin: 40px auto;
}
.diversity-matrix .bod-full {
  text-align: left;
  width: 100%;
}
.diversity-matrix .left {
  text-align: left;
  width: 30%;
}
.diversity-matrix .table tbody tr:nth-child(even),
.diversity-matrix .table tbody tr:nth-child(odd) {
  background-color: #fff !important;
}
.diversity-matrix table {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.diversity-matrix table thead {
  text-transform: none;
  font-size: 16px;
}
.diversity-matrix table thead th {
  color: #fff;
}
.diversity-matrix table thead .text-center {
  text-align: center;
}
.diversity-matrix table th {
  color: #2a3035;
  text-transform: inherit;
}
.diversity-matrix table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 0;
}
.diversity-matrix table tr .fw {
  width: 70%;
}
.diversity-matrix table tr .qw {
  width: 17.5%;
}
.diversity-matrix table tr .bold {
  font-weight: 700;
}
.diversity-matrix table tr .bod-dark {
  background-color: #9a1130 !important;
  color: #fff;
}
.diversity-matrix table tr .bod-light {
  background-color: #f8f1f3 !important;
}
.diversity-matrix table tr td {
  border-bottom: 0;
}

.mobile-total {
  display: none;
}

.diversity-matrix .table--responsive td::before {
  display: none !important;
}

.gender td {
  min-height: 77px;
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 768px) {
  .mobile-total {
    display: inline;
  }
  .diversity-matrix table tr .qw {
    display: none;
  }
  .diversity-matrix table tr.gender .qw {
    display: block;
    width: 100%;
    background-color: white !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .diversity-matrix table tr.gender .qw:nth-of-type(5) {
    border-bottom: 0;
  }
  .diversity-matrix .bod-full,
.diversity-matrix .left,
.diversity-matrix table tr .fw {
    width: 100%;
    text-align: center;
  }
  .gender,
.diversity-matrix table thead tr {
    flex-direction: column;
  }
  .mobile-hide {
    display: none !important;
  }
  .gender td {
    min-height: 0;
  }
}
/* ----- Download List Module ----- */
.module-downloads .module_nav {
  display: none;
}
.module-downloads .module_item {
  padding: 15px 0;
}
.module-downloads_thumbnail, .module-downloads_description, .module-downloads_date {
  display: none;
}
.module-downloads_title {
  position: relative;
}
.module-downloads_title-link {
  margin: 0 20px 0 0;
  font-size: 1.6rem;
  line-height: 2.4rem;
}
.module-downloads .q4icons_icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}

.module-downloads-card .module_container--content {
  display: flex;
  flex-wrap: wrap;
}
.module-downloads-card .module_item {
  padding: 15px 0;
  border-top: none;
  transition: all 0.2s ease-in-out;
  position: relative;
  bottom: 0;
}
.module-downloads-card .module_item:hover {
  bottom: 7px;
}
.module-downloads-card .module_item:hover .module-downloads-card_title-link {
  box-shadow: none;
}
.module-downloads-card_title {
  margin: 0 25px 10px 0;
  height: calc(100% - 35px);
}
.module-downloads-card_title-link {
  position: relative;
  width: 100%;
  background-color: #fff;
  color: #000;
  padding: 25px 10px;
  padding-left: 60px;
  font-size: 1.6rem;
  line-height: 2.4rem;
  text-transform: capitalize;
  border-radius: 5px;
  border: 1px solid #cd173f;
  box-shadow: 0 2px 0 #2431d8;
  display: flex;
  align-items: center;
  height: 100%;
}
.module-downloads-card_revision {
  font-size: 1.2rem;
  line-height: 2.6rem;
  color: #535456;
}
.module-downloads-card .q4icons_icon {
  position: absolute;
  color: #cd173f;
  top: 50%;
  left: 10px;
  transform: translate(0, -50%);
}
.module-downloads-card .q4icons_icon::before {
  font-size: 30px;
}

[class*=module][class*=downloads] {
  padding: 0 !important;
}
[class*=module][class*=downloads][class*=governance] .module_item {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 3rem 0;
  border-bottom: 1px solid #fff;
}
[class*=module][class*=downloads][class*=governance] h4 {
  font-size: 2.8rem;
  line-height: 1.1428571429;
  color: #cd173f;
  margin: 0;
}
[class*=module][class*=downloads][class*=governance] p {
  font-size: 1.6rem;
  line-height: 1.5;
  margin: 0;
}
[class*=module][class*=downloads][class*=policy] .module_item {
  border-bottom: none;
  padding: 0 0 8rem;
}
[class*=module][class*=downloads][class*=awareness] .module_container--content {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
}
[class*=module][class*=downloads][class*=awareness] .module_item {
  padding: 0;
}
[class*=module][class*=downloads] .module_item a {
  color: #ec1342;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background-color: #1d1d1d;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 300ms ease-in-out;
}
[class*=module][class*=downloads] .module_item a::before {
  content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNCAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMS45OTg1IDguNzQ5NjJDMTEuNzg4IDguNTUwMDQgMTEuMzIxMyA4LjQ0NDM1IDEwLjYxMDkgOC40MzUzNkMxMC4xMzAxIDguNDMwMjcgOS41NTE0MSA4LjQ3MTAzIDguOTQyNzQgOC41NTMwNUM4LjY3MDE3IDguNDAxNjcgOC4zODkyMSA4LjIzNjk1IDguMTY4NzMgOC4wMzg2MUM3LjU3NTU4IDcuNTA1NDYgNy4wODA0NCA2Ljc2NTQxIDYuNzcxODggNS45NTE2NkM2Ljc5MTk2IDUuODc1NjYgNi44MDkwOSA1LjgwODg3IDYuODI1MDMgNS43NDA2OUM2LjgyNTAzIDUuNzQwNjkgNy4xNTkxNyAzLjkxNDAyIDcuMDcwNzMgMy4yOTY0NEM3LjA1ODUyIDMuMjExNzYgNy4wNTEwNyAzLjE4NzE2IDcuMDI3NDUgMy4xMjEzNkw2Ljk5ODQzIDMuMDQ5NkM2LjkwNzUyIDIuODQ3ODQgNi43MjkzMyAyLjYzNDA2IDYuNDQ5OTUgMi42NDU3M0w2LjI4MTU5IDIuNjQwNjJDNS45NzAwNCAyLjY0MDYyIDUuNzE2MTcgMi43OTM5OSA1LjY0OTUyIDMuMDIzMkM1LjQ0NjkxIDMuNzQyMTQgNS42NTU5NSA0LjgxNzY4IDYuMDM0NzYgNi4yMTA3MUw1LjkzNzc4IDYuNDM3NjJDNS42NjY1NSA3LjA3NDA2IDUuMzI2NiA3LjcxNTA3IDUuMDI2NjggOC4yODA1N0w0Ljk4NzcgOC4zNTQxMkM0LjY3MjE2IDguOTQ4NDYgNC4zODU4NCA5LjQ1Mjk1IDQuMTI2MjggOS44ODAzOEwzLjg1ODMxIDEwLjAxNjdDMy44Mzg4IDEwLjAyNjcgMy4zNzk1NiAxMC4yNjA1IDMuMjcxODQgMTAuMzIzMkMyLjM1Nzk5IDEwLjg0ODQgMS43NTI0IDExLjQ0NDUgMS42NTE5NCAxMS45MTc2QzEuNjE5OTggMTIuMDY4NiAxLjY0Mzc2IDEyLjI2MTggMS44MDYzNyAxMi4zNTEzTDIuMDY1NTYgMTIuNDc2OEMyLjE3ODAyIDEyLjUzMSAyLjI5NjU1IDEyLjU1ODUgMi40MTgwMSAxMi41NTg1QzMuMDY4OTIgMTIuNTU4NSAzLjgyNDUzIDExLjc3ODEgNC44NjU0NiAxMC4wMjk2QzYuMDY3MjggOS42NTMwMyA3LjQzNTU3IDkuMzQgOC42MzQ3OSA5LjE2NzM0QzkuNTQ4NjggOS42NjI2NSAxMC42NzI3IDEwLjAwNjcgMTEuMzgyMSAxMC4wMDY3QzExLjUwODEgMTAuMDA2NyAxMS42MTY3IDkuOTk1MDkgMTEuNzA0OSA5Ljk3MjZDMTEuODQxIDkuOTM3OTUgMTEuOTU1NiA5Ljg2MzI1IDEyLjAyNTYgOS43NjE5MUMxMi4xNjMyIDkuNTYyNTQgMTIuMTkxMSA5LjI4NzkyIDEyLjE1MzggOS4wMDY3MkMxMi4xNDI3IDguOTIzMjggMTIuMDczNCA4LjgyMDA3IDExLjk5ODUgOC43NDk2MlpNMi4yNzY5NiAxMi4wODMxQzIuMzk1NjggMTEuNzcwNyAyLjg2NTQ3IDExLjE1MzIgMy41NjAxNiAxMC42MDUzQzMuNjAzODMgMTAuNTcxMiAzLjcxMTQyIDEwLjQ3NDIgMy44MDk5MSAxMC4zODQxQzMuMDgzNDcgMTEuNDk5MiAyLjU5NyAxMS45NDM3IDIuMjc2OTYgMTIuMDgzMVpNNi43Mjk0OSAzLjk0NzA5QzYuNzE5NjMgMy40NzEyMSA2LjYwMDYgMi45NjM2NSA2LjM5MTM2IDIuOTYzNjVDNi4yOTUzNCAyLjk2MzY1IDYuMzA0MDkgMy42ODQ0NCA2LjMwNDA5IDMuNjg0NDRDNi4zMDQwOSA0LjA2MTUzIDYuMzYxNTEgNC42MzgyMiA2LjQ4MDI4IDUuMDA0MTFDNi42MjM3MyA0Ljc1Njk3IDYuNzM5MzYgNC40MjMwMSA2LjcyOTQ5IDMuOTQ3MDlaTTUuMTY0MDYgOS40NjIzNUM1LjMwOTc5IDkuMjExMjQgNS40NjE0NCA4Ljk0NjQ1IDUuNjE2MzkgOC42NjU1NkM1Ljk5NDExIDcuOTc4MDYgNi4yMzI2MiA3LjQ0MDEzIDYuNDEwMjkgNi45OTc5NEM2Ljc2MzU5IDcuNjE2NjcgNy4yMDM2NSA4LjE0MjY4IDcuNzIwODkgOC41NjQxMkM3Ljc4NTQ1IDguNjE2NyA3Ljg1Mzg0IDguNjY5NTMgNy45MjU2NiA4LjcyMjJDNi44NzM3MSA4LjkyMjUzIDUuOTY0NTEgOS4xNjYyIDUuMTY0MDYgOS40NjIzNVpNMTEuNDMwNyA5LjQ2NjE2QzExLjU0ODcgOS40NjYxNiAxMS43MzIzIDkuNDQzODkgMTEuNzk2MyA5LjQwNTNDMTEuODYwNCA5LjM2Njc0IDExLjg1NTYgOS4xODA0IDExLjQ4MiA5LjA4ODY4QzExLjExNDcgOC45OTg1IDEwLjk5OTEgOC45OTg1IDEwLjYzMjMgOC45OTg1M0gxMC42MTI5QzEwLjQwNDEgOC45OTg1MyAxMC4xNzEzIDkuMDA3NzQgOS45MTczNyA5LjAyNTgzQzEwLjU3ODMgOS4yOTg1MyAxMS4wNDk2IDkuNDY2MTYgMTEuNDMwNyA5LjQ2NjE2WiIgZmlsbD0iI0NEMTczRiIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTEzLjE2NzQgMy40MDAzMkMxMi44MjQ5IDIuOTUwNjkgMTIuMzQ3NCAyLjQyNTExIDExLjgyMyAxLjkyMDM2QzExLjI5ODUgMS40MTU2MSAxMC43NTI1IDAuOTU2MDUyIDEwLjI4NTMgMC42MjYzMTVDOS40ODk5NCAwLjA2NDkyNjQgOS4xMDQxMyAwIDguODgzMSAwSDEuMjMzNzZDMC41NTM0NjUgMCAwIDAuNTMyNzEyIDAgMS4xODc0OVYxNC4wMTI1QzAgMTQuNjY3MiAwLjU1MzQzNiAxNS4yIDEuMjMzNzYgMTUuMkgxMi41ODQ0QzEzLjI2NDcgMTUuMiAxMy44MTgxIDE0LjY2NzIgMTMuODE4MSAxNC4wMTI1VjQuNzQ5OThDMTMuODE4MSA0LjUzNzI1IDEzLjc1MDcgNC4xNjU4NyAxMy4xNjc0IDMuNDAwMzJaTTExLjEyNSAyLjU5MjFDMTEuNTk4NSAzLjA0NzggMTEuOTcwMiAzLjQ1ODk1IDEyLjI0NDQgMy43OTk5OUg5Ljg3MDFWMS41MTQ4NkMxMC4yMjQ1IDEuNzc4NzggMTAuNjUxNyAyLjEzNjQ4IDExLjEyNSAyLjU5MjFaTTEyLjU4NDQgMTQuMjVDMTIuNzE4MSAxNC4yNSAxMi44MzExIDE0LjE0MTIgMTIuODMxMSAxNC4wMTI1VjQuNzQ5OThIOS4zNzY2QzkuMTA0IDQuNzQ5OTggOC44ODMxIDQuNTM3MzEgOC44ODMxIDQuMjc0OTdWMC45NDk5OTdIMS4yMzM3NkMxLjEwMDAyIDAuOTQ5OTk3IDAuOTg3MDEgMS4wNTg3NyAwLjk4NzAxIDEuMTg3NDlWMTQuMDEyNUMwLjk4NzAxIDE0LjE0MTIgMS4xMDAwMiAxNC4yNSAxLjIzMzc2IDE0LjI1SDEyLjU4NDRaIiBmaWxsPSIjQ0QxNzNGIi8+Cjwvc3ZnPgo=");
  filter: brightness(0) saturate(100%) invert(16%) sepia(64%) saturate(7319%) hue-rotate(341deg) brightness(96%) contrast(93%);
  height: 17px;
}
[class*=module][class*=downloads] .module_item a span {
  color: #c4c4c4;
}
[class*=module][class*=downloads] .module_item a:hover {
  background-color: #141414;
  color: #ec1342;
}

.module-governance_downloads--policy {
  padding: 0 0 8rem !important;
}

/* --------- Event Module --------- */
.module-event .module_location, .module-event .module_speakers h4, .module-event .module_speakers .h4, .module-event .module_body {
  display: none;
}
.module-event .module_item {
  padding: 0;
  border: 0 none;
}
.module-event .module_item ~ .module_item {
  border-top: 0 none;
}
.module-event .module_item:not(:last-child) {
  margin-bottom: 10px;
}
.module-event .module_item-wrap {
  padding: 30px 30px 10px 30px;
}
.module-event .module_links {
  margin-bottom: 0;
}
.module-event .module_links.module_links--columns > *:not(ul) {
  width: 50%;
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (max-width: 480px) {
  .module-event .module_links.module_links--columns > *:not(ul) {
    display: block;
    width: auto;
  }
}
.module-event .module_links.module_links--columns > ul li {
  width: 50%;
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (max-width: 480px) {
  .module-event .module_links.module_links--columns > ul li {
    display: block;
    width: auto;
  }
}
.module-event .module_links.module_links--columns-3 > *:not(ul) {
  width: 33.33%;
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (max-width: 1200px) {
  .module-event .module_links.module_links--columns-3 > *:not(ul) {
    width: 50%;
  }
}
@media only screen and (max-width: 1024px) {
  .module-event .module_links.module_links--columns-3 > *:not(ul) {
    width: 33.33%;
  }
}
@media only screen and (max-width: 640px) {
  .module-event .module_links.module_links--columns-3 > *:not(ul) {
    width: 50%;
  }
}
@media only screen and (max-width: 480px) {
  .module-event .module_links.module_links--columns-3 > *:not(ul) {
    display: block;
    width: auto;
  }
}
.module-event .module_links.module_links--columns-3 > ul li {
  width: 33.33%;
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (max-width: 1200px) {
  .module-event .module_links.module_links--columns-3 > ul li {
    width: 50%;
  }
}
@media only screen and (max-width: 1024px) {
  .module-event .module_links.module_links--columns-3 > ul li {
    width: 33.33%;
  }
}
@media only screen and (max-width: 640px) {
  .module-event .module_links.module_links--columns-3 > ul li {
    width: 50%;
  }
}
@media only screen and (max-width: 480px) {
  .module-event .module_links.module_links--columns-3 > ul li {
    display: block;
    width: auto;
  }
}
.module-event .module_links--separator > *:not(:first-child)::before {
  content: "|";
  margin: 0 10px;
  font-size: 14px;
  vertical-align: top;
}
@media only screen and (max-width: 480px) {
  .module-event .module_links--separator > *:not(:first-child)::before {
    content: none;
  }
}
.module-event .module_links--separator .module_link {
  margin-right: 0;
}
.module-event .module_links--separator .module_attachments li:not(:first-child)::before,
.module-event .module_links--separator .module_financials li:not(:first-child)::before {
  content: "|";
  margin: 0 10px;
  font-size: 14px;
  vertical-align: top;
}
@media only screen and (max-width: 480px) {
  .module-event .module_links--separator .module_attachments li:not(:first-child)::before,
.module-event .module_links--separator .module_financials li:not(:first-child)::before {
    content: none;
  }
}
.module-event-details .module_speakers h4, .module-event-details .module_speakers .h4 {
  display: none;
}
.module-event-details .module_webcast:empty {
  display: none;
}
.module-event-details .module_links {
  margin-bottom: 0;
}
.module-event-details .module_links.module_links--columns > *:not(ul) {
  width: 50%;
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (max-width: 1024px) {
  .module-event-details .module_links.module_links--columns > *:not(ul) {
    display: inline;
    width: auto;
  }
}
@media only screen and (max-width: 480px) {
  .module-event-details .module_links.module_links--columns > *:not(ul) {
    display: block;
    width: auto;
  }
}
.module-event-details .module_links.module_links--columns > ul li {
  width: 50%;
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (max-width: 1024px) {
  .module-event-details .module_links.module_links--columns > ul li {
    display: inline;
    width: auto;
  }
}
@media only screen and (max-width: 480px) {
  .module-event-details .module_links.module_links--columns > ul li {
    display: block;
    width: auto;
  }
}
.module-event-details .module_links--separator > *:not(:first-child)::before {
  content: "|";
  margin: 0 10px;
  font-size: 14px;
  vertical-align: top;
}
@media only screen and (max-width: 480px) {
  .module-event-details .module_links--separator > *:not(:first-child)::before {
    content: none;
  }
}
.module-event-details .module_links--separator > .js--hidden:first-child + *::before {
  content: none;
}
.module-event-details .module_links--separator .module_link {
  margin-right: 0;
}
.module-event-details .module_links--separator .module_attachments li:not(:first-child)::before,
.module-event-details .module_links--separator .module_financials li:not(:first-child)::before {
  content: "|";
  margin: 0 10px;
  font-size: 14px;
  vertical-align: top;
}
@media only screen and (max-width: 480px) {
  .module-event-details .module_links--separator .module_attachments li:not(:first-child)::before,
.module-event-details .module_links--separator .module_financials li:not(:first-child)::before {
    content: none;
  }
}
.module-event-details .module_links--separator .module_add-to-calendar.js--hidden + .module_webcast::before,
.module-event-details .module_links--separator .module_add-to-calendar + .module_webcast:empty + *::before {
  content: none;
}
@media only screen and (max-width: 768px) {
  .module-event-details .module_reminder .grid_col {
    margin-bottom: 20px;
  }
}
.module-event-home {
  height: 100%;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .module-event-home {
    margin-top: 25px;
    margin-left: -25px;
    margin-right: -25px;
    padding-left: 25px;
    padding-right: 25px;
    background: #f8f1f3;
  }
}
.module-event-home .module_container--content {
  margin-bottom: 50px;
}
.module-event-home .module_links {
  display: flex;
  flex-wrap: wrap;
}
.module-event-home .module_link {
  margin: 0 15px 0 0;
}
.module-event-home .module_link-text {
  font-weight: 600;
  vertical-align: middle;
  padding: 5px 0;
}
.module-event-home .module_date-text {
  font-size: 16px;
  font-size: 1.6rem;
}
.module-event-home .module_headline-link {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 18px;
  font-size: 1.8rem;
}
.module-event-home .module_item {
  padding: 0;
}
.module-event-home .module_item:not(:last-child) {
  margin-bottom: 10px;
}
.module-event-home .module_item ~ .module_item {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 20px;
  margin-top: 20px;
}
.module-event-home.background--grey .module_item-wrap {
  background-color: #fff;
}
.module-event-home .button--cta {
  position: absolute;
  bottom: 60px;
}
.module-event-home .button {
  margin: 0;
  position: absolute;
  bottom: 70px;
}
@media only screen and (max-width: 1024px) {
  .module-event-home .button {
    position: unset;
    margin-bottom: 20px;
  }
}
.module-event-latest .module_item {
  margin: 0;
  border: none;
  text-align: left;
  padding-top: 0;
  padding-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .module-event-latest .module_item:first-child {
    width: 100%;
  }
}
.module-event-latest .module_item-wrap {
  padding: 30px;
  background-color: #f8f1f3;
}
.module-event-latest .module_links {
  margin: 0;
}
.module-event-latest.background--grey .module_item-wrap {
  background-color: #fff;
}
.module-event-upcoming .module_nav {
  display: none;
}
.module-event-upcoming .module_item:not(:last-child) {
  margin-bottom: 30px;
}
.module-event-upcoming .module_date-time {
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.module-event-upcoming .module_headline-link {
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 2.8rem;
}
.module-event-upcoming .module_links {
  font-size: 1.2rem;
  font-weight: 600;
}
.module-event-calendar {
  padding-right: calc(100% - 500px);
}
.module-event-calendar_event-container {
  margin-top: 20px;
}
.module-event-calendar_splash i {
  font-size: 4rem;
  color: #141c1f;
}
.module-event-calendar_splash p {
  font-size: 1.4rem;
  line-height: 1.2;
}
.module-event-calendar_controls {
  padding: 20px 15px;
  background-color: #141c1f;
  color: #fff;
  text-align: center;
  font-size: 2.4rem;
}
.module-event-calendar_controls button {
  color: inherit;
  background-color: transparent;
  border: 0;
  padding: 5px 0;
}
.module-event-calendar_previous-month, .module-event-calendar_month, .module-event-calendar_next-month {
  display: inline-block;
}
.module-event-calendar_previous-month, .module-event-calendar_next-month {
  cursor: pointer;
}
.module-event-calendar_previous-month {
  float: left;
}
.module-event-calendar_next-month {
  float: right;
}
.module-event-calendar_day-container {
  text-align: center;
  border: 1px solid #f8f1f3;
  padding-bottom: 10px;
  display: table;
  table-layout: fixed;
  width: 100%;
}
.module-event-calendar_week {
  display: table-row;
  background-color: #f8f1f3;
  margin-bottom: 10px;
}
.module-event-calendar_days {
  display: table-row-group;
}
.module-event-calendar_days > div[role=row] {
  display: table-row;
}
.module-event-calendar_day {
  display: inline-block;
  position: relative;
  width: 14.285%;
  margin: 0;
  padding: 15px 0;
  border: none;
  background-color: transparent;
}
@media only screen and (max-width: 480px) {
  .module-event-calendar_day {
    padding: 5px 0;
  }
}
.module-event-calendar_day > span {
  display: block;
  max-width: 40px;
  margin-left: auto;
  margin-right: auto;
  padding: 8px 0;
  text-align: center;
  border-radius: 3px;
}
.module-event-calendar_day--name {
  padding: 15px 0;
  border: none;
}
@media only screen and (max-width: 480px) {
  .module-event-calendar_day--name {
    padding: 10px 0;
  }
}
.module-event-calendar_day--today:not(.module-event-calendar_day--adjacent-month) > span {
  background-color: #cd173f;
  color: #fff;
}
.module-event-calendar_day--event {
  cursor: pointer;
}
.module-event-calendar_day--event > span {
  background-color: #141c1f;
  color: #fff;
}
.module-event-calendar_day--adjacent-month {
  color: rgba(42, 48, 53, 0.1);
  pointer-events: none;
}
.module-event-calendar_day--adjacent-month::after {
  content: none;
}
@media only screen and (max-width: 480px) {
  .module-event-calendar_day {
    display: inline-block;
  }
}
.module-event-calendar .module_add-to-calendar {
  margin: 0;
}
.module-event-calendar_legend ul {
  padding: 0;
  margin: 15px 0 25px 0;
}
.module-event-calendar_legend li {
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding-left: 25px;
  margin-right: 30px;
}
.module-event-calendar_legend li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 16px;
  height: 16px;
  background-color: #141c1f;
  border-radius: 3px;
}
.module-event-calendar_legend li.module-event-calendar_legend-item--current::before {
  background-color: #cd173f;
}
@media only screen and (max-width: 768px) {
  .module-event-calendar {
    display: block;
  }
  .module-event-calendar_calendar-container, .module-event-calendar_event-container {
    display: block;
    width: 100%;
  }
  .module-event-calendar_calendar-container {
    padding-right: 0;
  }
  .module-event-calendar_event-container {
    margin-top: 20px;
  }
}
.module-event-archive .module_options {
  display: flex;
}
.module-event-archive .module_options-group {
  display: flex;
  flex-direction: column;
}
.module-event-archive .module_options-label {
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 28px;
}
.module-event-archive .module_options-select {
  border-color: #cfcfcf;
}
.module-event-archive .module_pager .pager_button {
  border-radius: 50%;
  color: #cd173f;
  border-color: transparent;
}
.module-event-archive .module_pager .pager_button.js--active {
  color: #fff;
  background-color: #cd173f;
}

:root {
  /* --evgRootFontSize is defined in evergreen.css */
  /*** START COLOR VARIABLES ***/
  --evgBodyTextColor: #ffffff;
  --evgBorderColor: #f8f1f3;
  --evgPrimaryColor: #cd173f;
  --evgAltColor: #000;
  --evgBrand1Color: #141c1f;
  --evgBrand2Color: #9a1130;
  --evgBrand3Color: #322a2c;
  --evgBrand4Color: #ffffff;
  --evgBrand5Color: #ffffff;
  --evgLightColor: #ffffff;
  --evgGreyColor: #fafafa;
  --evgGreyDarkColor: #374448;
  --evgDarkColor: #283033;
  --evgDarkenColor: rgba(0, 0, 0, 0.05);
  --evgLightenColor: rgba(255, 255, 255, 0.05);
  --evgLightOverlayColor: rgba(255, 255, 255, 0.6);
  --evgDarkOverlayColor: rgba(0, 0, 0, 0.6);
  --evgErrorColor: #b72121;
  --evgSuccessColor: #006613;
  --evgInheritColor: inherit;
  /*** END COLOR VARIABLES ***/
  /*** START BANNER VARIABLES ***/
  /** Static **/
  --evgBannersStaticBackgroundImageAltText: inherit; /* Empty or N/A */
  --evgBannersStaticBackgroundImagePosition: inherit; /* Empty or N/A */
  --evgBannersStaticBackgroundImageSizing: inherit; /* Empty or N/A */
  --evgBannersStaticBackgroundVideoShowOnTablet: block;
  --evgBannersStaticMinimumHeightSizeL: px;
  --evgBannersStaticMinimumHeightSizeM: px;
  --evgBannersStaticMinimumHeightSizeS: px;
  --evgBannersStaticBorderRadius: px;
  --evgBannersStaticBannerCoverage: bannerAndHeader;
  /*** END BANNER VARIABLES ***/
  /*** START MODULE VARIABLES ***/
  /** Padding **/
  --evgPaddingContainerPadding: 20px;
  --evgPaddingItemPadding: 30px;
  /** Border **/
  /** ModuleName **/
  --evgModuleNameFontTypography: h2;
  --evgModuleNameFontFamily: "din-2014" !important;
  --evgModuleNameFontSizeL: calc(var(--evgRootFontSize) * 3.6);
  --evgModuleNameFontSizeM: calc(var(--evgRootFontSize) * 2.7);
  --evgModuleNameFontSizeS: calc(var(--evgRootFontSize) * 2.7);
  --evgModuleNameFontColor: var(--evgBodyTextColor);
  --evgModuleNameFontWeight: normal;
  --evgModuleNameFontLineHeight: 1.3;
  --evgModuleNameFontCapitalization: none;
  --evgModuleNameFontAlignment: left;
  /** ModuleItem **/
  --evgModuleItemUnderline: 0;
  --evgModuleItemUnderlineStyle: solid;
  --evgModuleItemUnderlineColor: var(--evgBodyTextColor);
  /** ModuleItemTitle **/
  --evgModuleItemTitleFontTypography: h4;
  --evgModuleItemTitleFontFamily: "din-2014" !important;
  --evgModuleItemTitleFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgModuleItemTitleFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgModuleItemTitleFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgModuleItemTitleFontColor: var(--evgBodyTextColor);
  --evgModuleItemTitleFontHoverColor: var(--evgLightColor);
  --evgModuleItemTitleFontFocusColor: var(--evgLightColor);
  --evgModuleItemTitleFontWeight: normal;
  --evgModuleItemTitleFontLineHeight: 1.4;
  --evgModuleItemTitleFontCapitalization: none;
  /** ModuleItemSubtitle **/
  --evgModuleItemSubtitleFontTypography: h5;
  --evgModuleItemSubtitleFontFamily: "din-2014" !important;
  --evgModuleItemSubtitleFontSizeL: calc(var(--evgRootFontSize) * 1.3);
  --evgModuleItemSubtitleFontSizeM: calc(var(--evgRootFontSize) * 1.3);
  --evgModuleItemSubtitleFontSizeS: calc(var(--evgRootFontSize) * 1.3);
  --evgModuleItemSubtitleFontColor: var(--evgAltColor);
  --evgModuleItemSubtitleFontWeight: normal;
  --evgModuleItemSubtitleFontLineHeight: 1.3;
  --evgModuleItemSubtitleFontCapitalization: none;
  /** ModuleBackground **/
  --evgModuleBackgroundColor: var(--evgAltColor);
  --evgModuleBackgroundItemBackgroundColor: var(--evgAltColor);
  --evgModuleBackgroundBorderRadius: 0px;
  --evgModuleBackgroundItemBorderRadius: 0px;
  /** DateTime **/
  --evgDateTimeFontTypography: caption;
  --evgDateTimeFontFamily: "din-2014" !important;
  --evgDateTimeFontSizeL: calc(var(--evgRootFontSize) * 1.3);
  --evgDateTimeFontSizeM: calc(var(--evgRootFontSize) * 1.3);
  --evgDateTimeFontSizeS: calc(var(--evgRootFontSize) * 1.3);
  --evgDateTimeFontColor: var(--evgAltColor);
  --evgDateTimeFontWeight: normal;
  --evgDateTimeFontLineHeight: 1.3;
  --evgDateTimeFontCapitalization: none;
  /*** END MODULE VARIABLES ***/
  /*** START COMPONENT VARIABLES ***/
  /** Body **/
  --evgBodyFontColor: var(--evgBodyTextColor);
  /** Hyperlink **/
  --evgHyperlinkFontTypography: body;
  --evgHyperlinkFontFamily: "din-2014" !important;
  --evgHyperlinkFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgHyperlinkFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgHyperlinkFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgHyperlinkFontColor: var(--evgAltColor);
  --evgHyperlinkFontHoverColor: var(--evgPrimaryColor);
  --evgHyperlinkFontFocusColor: var(--evgAltColor);
  --evgHyperlinkFontWeight: normal;
  --evgHyperlinkFontStyle: normal;
  --evgHyperlinkFontLineHeight: 1.3;
  --evgHyperlinkFontCapitalization: none;
  --evgHyperlinkDecorationTextDecoration: none;
  --evgHyperlinkDecorationTextDecorationHover: none;
  --evgHyperlinkDecorationTextDecorationFocus: none;
  --evgHyperlinkDecorationTextDecorationColor: var(--evgInheritColor);
  --evgHyperlinkDecorationTextDecorationHoverColor: var(--evgInheritColor);
  --evgHyperlinkDecorationTextDecorationFocusColor: var(--evgInheritColor);
  /** Button **/
  --evgButtonFontTypography: body;
  --evgButtonFontFamily: "din-2014" !important;
  --evgButtonFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgButtonFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgButtonFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgButtonFontColor: var(--evgLightColor);
  --evgButtonFontHoverColor: var(--evgLightColor);
  --evgButtonFontFocusColor: var(--evgLightColor);
  --evgButtonFontWeight: normal;
  --evgButtonFontStyle: normal;
  --evgButtonFontLineHeight: 1.3;
  --evgButtonFontCapitalization: none;
  --evgButtonBorderColor: var(--evgPrimaryColor);
  --evgButtonBorderHoverColor: var(--evgAltColor);
  --evgButtonBorderFocusColor: var(--evgAltColor);
  --evgButtonBorderRadius: 0;
  --evgButtonBackgroundColor: var(--evgPrimaryColor);
  --evgButtonBackgroundHoverColor: var(--evgAltColor);
  --evgButtonBackgroundFocusColor: var(--evgAltColor);
  --evgButtonPaddingItemPadding: initial;
  --evgButtonPaddingVerticalPadding: 20px;
  --evgButtonDecorationTextDecoration: none;
  --evgButtonDecorationTextDecorationHover: none;
  --evgButtonDecorationTextDecorationFocus: none;
  --evgButtonDecorationTextDecorationColor: var(--evgLightColor);
  --evgButtonDecorationTextDecorationHoverColor: var(--evgLightColor);
  --evgButtonDecorationTextDecorationFocusColor: var(--evgLightColor);
  /** ButtonAlt **/
  --evgButtonAltFontTypography: body;
  --evgButtonAltFontFamily: "din-2014" !important;
  --evgButtonAltFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgButtonAltFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgButtonAltFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgButtonAltFontColor: var(--evgPrimaryColor);
  --evgButtonAltFontHoverColor: var(--evgLightColor);
  --evgButtonAltFontFocusColor: var(--evgLightColor);
  --evgButtonAltFontWeight: normal;
  --evgButtonAltFontStyle: normal;
  --evgButtonAltFontLineHeight: 1.3;
  --evgButtonAltFontCapitalization: none;
  --evgButtonAltBorderColor: var(--evgLightColor);
  --evgButtonAltBorderHoverColor: var(--evgPrimaryColor);
  --evgButtonAltBorderFocusColor: var(--evgPrimaryColor);
  --evgButtonAltBorderRadius: 0;
  --evgButtonAltBackgroundColor: var(--evgLightColor);
  --evgButtonAltBackgroundHoverColor: var(--evgPrimaryColor);
  --evgButtonAltBackgroundFocusColor: var(--evgPrimaryColor);
  --evgButtonAltPaddingItemPadding: initial;
  --evgButtonAltPaddingVerticalPadding: 20px;
  --evgButtonAltDecorationTextDecoration: none;
  --evgButtonAltDecorationTextDecorationHover: none;
  --evgButtonAltDecorationTextDecorationFocus: none;
  --evgButtonAltDecorationTextDecorationColor: var(--evgLightColor);
  --evgButtonAltDecorationTextDecorationHoverColor: var(--evgLightColor);
  --evgButtonAltDecorationTextDecorationFocusColor: var(--evgLightColor);
  /** Dropdown **/
  --evgDropdownFontTypography: body;
  --evgDropdownFontFamily: "din-2014" !important;
  --evgDropdownFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgDropdownFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgDropdownFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgDropdownFontColor: var(--evgAltColor);
  --evgDropdownFontFocusColor: var(--evgAltColor);
  --evgDropdownFontWeight: normal;
  --evgDropdownFontLineHeight: 1.3;
  --evgDropdownFontCapitalization: none;
  --evgDropdownBorderColor: var(--evgAltColor);
  --evgDropdownBorderFocusColor: var(--evgAltColor);
  --evgDropdownBorderRadius: 0;
  --evgDropdownBackgroundColor: var(--evgLightColor);
  --evgDropdownBackgroundFocusColor: var(--evgLightColor);
  /** Accordion **/
  --evgAccordionContentFontColor: var(--evgBodyTextColor);
  --evgAccordionContentBackgroundColor: var(--evgAltColor);
  --evgAccordionFontTypography: h4;
  --evgAccordionFontFamily: "din-2014" !important;
  --evgAccordionFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgAccordionFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgAccordionFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgAccordionFontColor: var(--evgBodyTextColor);
  --evgAccordionFontAltColor: var(--evgBodyTextColor);
  --evgAccordionFontFocusColor: var(--evgBodyTextColor);
  --evgAccordionFontWeight: bold;
  --evgAccordionFontStyle: normal;
  --evgAccordionFontLineHeight: 1.5;
  --evgAccordionFontCapitalization: none;
  --evgAccordionSecondaryFontTypography: caption;
  --evgAccordionSecondaryFontFamily: Inter;
  --evgAccordionSecondaryFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgAccordionSecondaryFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgAccordionSecondaryFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgAccordionSecondaryFontColor: var(--evgBodyTextColor);
  --evgAccordionSecondaryFontAltColor: var(--evgBodyTextColor);
  --evgAccordionSecondaryFontWeight: normal;
  --evgAccordionSecondaryFontStyle: normal;
  --evgAccordionSecondaryFontLineHeight: 1.3;
  --evgAccordionSecondaryFontCapitalization: none;
  --evgAccordionSecondaryFontActiveColor: bodyText;
  --evgAccordionBorderColor: var(--evgPrimaryColor);
  --evgAccordionBorderHoverColor: var(--evgPrimaryColor);
  --evgAccordionBorderFocusColor: var(--evgPrimaryColor);
  --evgAccordionBorderActiveColor: var(--evgPrimaryColor);
  --evgAccordionBorderRadius: 0px;
  --evgAccordionBackgroundColor: var(--evgAltColor);
  --evgAccordionBackgroundHoverColor: var(--evgAltColor);
  --evgAccordionBackgroundFocusColor: var(--evgAltColor);
  --evgAccordionBackgroundActiveColor: var(--evgAltColor);
  --evgAccordionPaddingItemPadding: 20px;
  /** Tabs **/
  --evgTabsFontTypography: body;
  --evgTabsFontFamily: "din-2014" !important;
  --evgTabsFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgTabsFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgTabsFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgTabsFontColor: var(--evgLightColor);
  --evgTabsFontAltColor: var(--evgPrimaryColor);
  --evgTabsFontHoverColor: var(--evgPrimaryColor);
  --evgTabsFontWeight: normal;
  --evgTabsFontLineHeight: 1.3;
  --evgTabsFontCapitalization: none;
  --evgTabsBorderRadius: 0;
  --evgTabsBackgroundColor: var(--evgPrimaryColor);
  --evgTabsSecondaryBackgroundColor: var(--evgPrimaryColor);
  --evgTabsSecondaryBackgroundHoverColor: var(--evgLightColor);
  --evgTabsSecondaryBackgroundActiveColor: var(--evgLightColor);
  /** List **/
  --evgListBulletStyle: disc;
  --evgListBulletColor: var(--evgPrimaryColor);
  --evgListFontTypography: body;
  --evgListFontFamily: "din-2014" !important;
  --evgListFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgListFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgListFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgListFontColor: var(--evgBodyTextColor);
  --evgListFontWeight: normal;
  --evgListFontStyle: normal;
  --evgListFontLineHeight: 1;
  --evgListFontCapitalization: none;
  --evgListDecorationTextDecoration: none;
  --evgListDecorationTextDecorationHover: inherit; /* Empty or N/A */
  --evgListDecorationTextDecorationFocus: inherit; /* Empty or N/A */
  --evgListDecorationTextDecorationColor: var(--evgInheritColor);
  /** Table **/
  --evgTableZebra: inherit;
  --evgTableRowUnderline: 1px solid;
  --evgTableFontTypography: body;
  --evgTableFontFamily: "din-2014" !important;
  --evgTableFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgTableFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgTableFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgTableFontColor: var(--evgLightColor);
  --evgTableFontWeight: normal;
  --evgTableFontLineHeight: 1;
  --evgTableFontCapitalization: none;
  --evgTableSecondaryFontTypography: body;
  --evgTableSecondaryFontFamily: "din-2014" !important;
  --evgTableSecondaryFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgTableSecondaryFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgTableSecondaryFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgTableSecondaryFontColor: var(--evgPrimaryColor);
  --evgTableSecondaryFontAltColor: var(--evgBodyTextColor);
  --evgTableSecondaryFontWeight: normal;
  --evgTableSecondaryFontLineHeight: 1.5;
  --evgTableSecondaryFontCapitalization: none;
  --evgTableBorderColor: var(--evgBorderColor);
  --evgTableBorderRadius: 0;
  --evgTableBackgroundColor: var(--evgPrimaryColor);
  --evgTableBackgroundAltColor: var(--evgBorderColor);
  --evgTableSecondaryBackgroundColor: var(--evgLightColor);
  --evgTableSecondaryBackgroundAltColor: var(--evgGreyColor);
  --evgTableShowNavigationArrows: initial;
  /** StockChart **/
  --evgStockChartStockChartMainColor: var(--evgPrimaryColor);
  --evgStockChartStockChartMarkerColor: var(--evgAltColor);
  --evgStockChartStockChartDividerColor: var(--evgGreyColor);
  --evgStockChartStockChartTimelineSelectorColor: var(--evgPrimaryColor);
  --evgStockChartFontTypography: caption;
  --evgStockChartFontFamily: "din-2014" !important;
  --evgStockChartFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgStockChartFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgStockChartFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgStockChartFontColor: var(--evgBodyTextColor);
  --evgStockChartFontWeight: normal;
  --evgStockChartFontLineHeight: 1.2;
  --evgStockChartFontCapitalization: uppercase;
  --evgStockChartBackgroundColor: var(--evgLightColor);
  /** Pagination **/
  --evgPaginationFontTypography: caption;
  --evgPaginationFontFamily: "din-2014" !important;
  --evgPaginationFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgPaginationFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgPaginationFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgPaginationFontColor: var(--evgPrimaryColor);
  --evgPaginationFontAltColor: var(--evgLightColor);
  --evgPaginationFontHoverColor: var(--evgLightColor);
  --evgPaginationFontWeight: normal;
  --evgPaginationFontLineHeight: 1.2;
  --evgPaginationFontCapitalization: uppercase;
  --evgPaginationBorderColor: var(--evgPrimaryColor);
  --evgPaginationBorderHoverColor: var(--evgPrimaryColor);
  --evgPaginationBorderActiveColor: var(--evgPrimaryColor);
  --evgPaginationBorderRadius: 0;
  --evgPaginationBackgroundColor: var(--evgLightColor);
  --evgPaginationBackgroundHoverColor: var(--evgPrimaryColor);
  --evgPaginationBackgroundActiveColor: var(--evgPrimaryColor);
  --evgPaginationOutlineFocusColor: var(--evgPrimaryColor);
  /** Input **/
  --evgInputPlaceholderColor: var(--evgGreyColor);
  --evgInputShowPlaceholder: visible;
  --evgInputFontTypography: body;
  --evgInputFontFamily: "din-2014" !important;
  --evgInputFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgInputFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgInputFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgInputFontColor: var(--evgBodyTextColor);
  --evgInputFontWeight: normal;
  --evgInputFontLineHeight: 1;
  --evgInputFontCapitalization: none;
  --evgInputSecondaryFontTypography: body;
  --evgInputSecondaryFontFamily: "din-2014" !important;
  --evgInputSecondaryFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgInputSecondaryFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgInputSecondaryFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgInputSecondaryFontColor: var(--evgBodyTextColor);
  --evgInputSecondaryFontWeight: normal;
  --evgInputSecondaryFontLineHeight: 1;
  --evgInputSecondaryFontCapitalization: capitalize;
  --evgInputBorderColor: var(--evgBorderColor);
  --evgInputBorderFocusColor: var(--evgPrimaryColor);
  --evgInputBorderRadius: 0;
  --evgInputBackgroundColor: var(--evgLightColor);
  /** RadioCheckbox **/
  --evgRadioCheckboxFillStyle: var(--evgBodyTextColor);
  --evgRadioCheckboxFillColor: var(--evgBodyTextColor);
  --evgRadioCheckboxFillActiveColor: var(--evgAltColor);
  --evgRadioCheckboxSecondaryBorderColor: var(--evgLightColor);
  --evgRadioCheckboxSecondaryBorderActiveColor: var(--evgAltColor);
  --evgRadioCheckboxSecondaryFillStyle: var(--evgBodyTextColor);
  --evgRadioCheckboxSecondaryFillColor: var(--evgBodyTextColor);
  --evgRadioCheckboxSecondaryFillActiveColor: var(--evgAltColor);
  --evgRadioCheckboxFontTypography: body;
  --evgRadioCheckboxFontFamily: Arial;
  --evgRadioCheckboxFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgRadioCheckboxFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgRadioCheckboxFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgRadioCheckboxFontColor: var(--evgLightColor);
  --evgRadioCheckboxFontWeight: normal;
  --evgRadioCheckboxFontLineHeight: 1.2;
  --evgRadioCheckboxFontCapitalization: none;
  --evgRadioCheckboxBorderColor: var(--evgLightColor);
  --evgRadioCheckboxBorderActiveColor: var(--evgAltColor);
  --evgRadioCheckboxBorderRadius: 0;
  /** Calendar **/
  --evgCalendarDayFontTypography: body;
  --evgCalendarDayFontFamily: Inter;
  --evgCalendarDayFontSizeL: calc(var(--evgRootFontSize) * 1.4);
  --evgCalendarDayFontSizeM: calc(var(--evgRootFontSize) * 1.4);
  --evgCalendarDayFontSizeS: calc(var(--evgRootFontSize) * 1.4);
  --evgCalendarDayFontColor: var(--evgBodyTextColor);
  --evgCalendarDayFontWeight: normal;
  --evgCalendarDayFontLineHeight: 1;
  --evgCalendarDayFontCapitalization: capitalize;
  --evgCalendarLegendFontTypography: caption;
  --evgCalendarLegendFontFamily: Inter;
  --evgCalendarLegendFontSizeL: calc(var(--evgRootFontSize) * 1.4);
  --evgCalendarLegendFontSizeM: calc(var(--evgRootFontSize) * 1.4);
  --evgCalendarLegendFontSizeS: calc(var(--evgRootFontSize) * 1.4);
  --evgCalendarLegendFontColor: var(--evgBodyTextColor);
  --evgCalendarLegendFontWeight: normal;
  --evgCalendarLegendFontLineHeight: 1;
  --evgCalendarLegendFontCapitalization: capitalize;
  --evgCalendarDotPrimaryColor: var(--evgPrimaryColor);
  --evgCalendarDotSecondaryColor: var(--evgSuccessColor);
  --evgCalendarFontTypography: caption;
  --evgCalendarFontFamily: Inter;
  --evgCalendarFontSizeL: calc(var(--evgRootFontSize) * 1.4);
  --evgCalendarFontSizeM: calc(var(--evgRootFontSize) * 1.4);
  --evgCalendarFontSizeS: calc(var(--evgRootFontSize) * 1.4);
  --evgCalendarFontColor: var(--evgBodyTextColor);
  --evgCalendarFontAltColor: var(--evgLightColor);
  --evgCalendarFontHoverColor: var(--evgLightColor);
  --evgCalendarFontFocusColor: var(--evgBodyTextColor);
  --evgCalendarFontWeight: normal;
  --evgCalendarFontLineHeight: 1.2;
  --evgCalendarFontCapitalization: uppercase;
  --evgCalendarFontDisabledColor: var(--evgGreyColor);
  --evgCalendarSecondaryFontTypography: caption;
  --evgCalendarSecondaryFontFamily: Inter;
  --evgCalendarSecondaryFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgCalendarSecondaryFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgCalendarSecondaryFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgCalendarSecondaryFontColor: var(--evgLightColor);
  --evgCalendarSecondaryFontWeight: 600;
  --evgCalendarSecondaryFontLineHeight: 1.5;
  --evgCalendarSecondaryFontCapitalization: capitalize;
  --evgCalendarBorderColor: var(--evgBorderColor);
  --evgCalendarBorderRadius: 0;
  --evgCalendarBackgroundColor: var(--evgLightColor);
  --evgCalendarBackgroundHoverColor: var(--evgAltColor);
  --evgCalendarBackgroundActiveColor: var(--evgPrimaryColor);
  --evgCalendarSecondaryBackgroundColor: var(--evgPrimaryColor);
  --evgCalendarSecondaryBackgroundAltColor: var(--evgLightColor);
  /*** END COMPONENT VARIABLES ***/
  /*** START TEXT and HEADING VARIABLES ***/
  /** Body **/
  --evgBodyFontFamily: "din-2014" !important;
  --evgBodyFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgBodyFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgBodyFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgBodyFontColor: var(--evgBodyTextColor);
  --evgBodyFontWeight: normal;
  --evgBodyLineHeight: 1.5;
  --evgBodyCapitalization: none;
  /** Link **/
  --evgLinkTypography: body;
  --evgLinkFontFamily: "din-2014" !important;
  --evgLinkFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgLinkFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgLinkFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgLinkFontColor: var(--evgBodyTextColor);
  --evgLinkFontWeight: normal;
  --evgLinkLineHeight: 1.5;
  --evgLinkCapitalization: none;
  /** H1 **/
  --evgH1FontFamily: "din-2014" !important;
  --evgH1FontSizeL: calc(var(--evgRootFontSize) * 6);
  --evgH1FontSizeM: calc(var(--evgRootFontSize) * 4.5);
  --evgH1FontSizeS: calc(var(--evgRootFontSize) * 3.6);
  --evgH1FontColor: var(--evgBodyTextColor);
  --evgH1FontWeight: normal;
  --evgH1LineHeight: 1.5;
  --evgH1Capitalization: none;
  /** H2 **/
  --evgH2FontFamily: "din-2014" !important;
  --evgH2FontSizeL: calc(var(--evgRootFontSize) * 3.6);
  --evgH2FontSizeM: calc(var(--evgRootFontSize) * 2.7);
  --evgH2FontSizeS: calc(var(--evgRootFontSize) * 2.7);
  --evgH2FontColor: var(--evgBodyTextColor);
  --evgH2FontWeight: normal;
  --evgH2LineHeight: 1.5;
  --evgH2Capitalization: none;
  /** H3 **/
  --evgH3FontFamily: "din-2014" !important;
  --evgH3FontSizeL: calc(var(--evgRootFontSize) * 2.4);
  --evgH3FontSizeM: calc(var(--evgRootFontSize) * 2.4);
  --evgH3FontSizeS: calc(var(--evgRootFontSize) * 2.4);
  --evgH3FontColor: var(--evgBodyTextColor);
  --evgH3FontWeight: normal;
  --evgH3LineHeight: 1.5;
  --evgH3Capitalization: none;
  /** H4 **/
  --evgH4FontFamily: "din-2014" !important;
  --evgH4FontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgH4FontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgH4FontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgH4FontColor: var(--evgBodyTextColor);
  --evgH4FontWeight: normal;
  --evgH4LineHeight: 1.5;
  --evgH4Capitalization: none;
  /** H5 **/
  --evgH5FontFamily: "din-2014" !important;
  --evgH5FontSizeL: calc(var(--evgRootFontSize) * 1.2);
  --evgH5FontSizeM: calc(var(--evgRootFontSize) * 1.2);
  --evgH5FontSizeS: calc(var(--evgRootFontSize) * 1.2);
  --evgH5FontColor: var(--evgBodyTextColor);
  --evgH5FontWeight: normal;
  --evgH5LineHeight: 1.5;
  --evgH5Capitalization: none;
  /** Caption **/
  --evgCaptionFontFamily: Inter;
  --evgCaptionFontSizeL: calc(var(--evgRootFontSize) * 1);
  --evgCaptionFontSizeM: calc(var(--evgRootFontSize) * 1);
  --evgCaptionFontSizeS: calc(var(--evgRootFontSize) * 1);
  --evgCaptionFontColor: var(--evgBodyTextColor);
  --evgCaptionFontWeight: normal;
  --evgCaptionLineHeight: 1.2;
  --evgCaptionCapitalization: uppercase;
  /*** END TEXT and HEADING VARIABLES ***/
  /*** START NAVIGATION VARIABLES ***/
  /** Main **/
  --evgNavigationsMainDisplay: var(--evgBodyTextColor);
  --evgNavigationsMainSiteLogoUrl: url("https://deleklogistics2025corp.s4.q4web.com/preview");
  --evgNavigationsMainSiteLogoUrlLink: url("https://deleklogistics2025corp.s4.q4web.com/preview");
  --evgNavigationsMainSiteLogoAltText: Logo Alt Text;
  --evgNavigationsMainSiteLogoOpenLinkInNewTab: var(--evgBodyTextColor);
  --evgNavigationsMainCurrentPageIndicator: var(--evgBodyTextColor);
  --evgNavigationsMainLinkAlignment: right;
  --evgNavigationsMainDropdownBackgroundHoverColor: var(--evgInheritColor);
  --evgNavigationsMainDropdownBackgroundActiveColor: var(--evgInheritColor);
  --evgNavigationsMainDropdownLinkTypography: body;
  --evgNavigationsMainDropdownLinkFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgNavigationsMainDropdownLinkColor: var(--evgBodyTextColor);
  --evgNavigationsMainDropdownLinkActiveColor: var(--evgInheritColor);
  --evgNavigationsMainDropdownLinkTextDecorationActiveColor: var(--evgInheritColor);
  --evgNavigationsMainDropdownLinkFontFamily: "din-2014" !important;
  --evgNavigationsMainDropdownLinkFontCapitalization: none;
  --evgNavigationsMainDropdownLinkFontWeight: normal;
  --evgNavigationsMainDropdownLinkFontStyle: normal;
  --evgNavigationsMainSearchFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgNavigationsMainSearchFontColor: var(--evgBodyTextColor);
  --evgNavigationsMainMobileMenuSeparatorColor: var(--evgBorderColor);
  --evgNavigationsMainMobileSearchFontColor: var(--evgBodyTextColor);
  --evgNavigationsMainMobileLinkTypography: body;
  --evgNavigationsMainMobileLinkFontFamily: "din-2014" !important;
  --evgNavigationsMainMobileLinkFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgNavigationsMainMobileLinkFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgNavigationsMainMobileLinkFontWeight: normal;
  --evgNavigationsMainMobileLinkFontStyle: normal;
  --evgNavigationsMainMobileLinkLineHeight: 1.5;
  --evgNavigationsMainMobileLinkCapitalization: none;
  --evgNavigationsMainMobileLinkTextDecoration: none;
  --evgNavigationsMainMobileLinkTextDecorationHover: none;
  --evgNavigationsMainMobileLinkTextDecorationFocus: none;
  --evgNavigationsMainMobileLinkColor: var(--evgBodyTextColor);
  --evgNavigationsMainMobileLinkTextDecorationActive: none;
  --evgNavigationsMainMobileLinkFontWeightActive: normal;
  --evgNavigationsMainLinkTypography: caption;
  --evgNavigationsMainLinkFontFamily: Inter;
  --evgNavigationsMainLinkFontSize: calc(var(--evgRootFontSize) * 1.6);
  --evgNavigationsMainLinkFontWeight: normal;
  --evgNavigationsMainLinkFontStyle: normal;
  --evgNavigationsMainLinkLineHeight: 1.5;
  --evgNavigationsMainLinkCapitalization: none;
  --evgNavigationsMainLinkTextDecoration: none;
  --evgNavigationsMainLinkTextDecorationHover: none;
  --evgNavigationsMainLinkTextDecorationFocus: none;
  --evgNavigationsMainLinkPrescrollColor: var(--evgBodyTextColor);
  --evgNavigationsMainLinkScrollColor: var(--evgBodyTextColor);
  /** Secondary **/
  --evgNavigationsSecondaryLinkTypography: caption;
  --evgNavigationsSecondaryLinkFontFamily: Inter;
  --evgNavigationsSecondaryLinkFontSize: calc(var(--evgRootFontSize) * 1.6);
  --evgNavigationsSecondaryLinkFontWeight: normal;
  --evgNavigationsSecondaryLinkFontStyle: normal;
  --evgNavigationsSecondaryLinkLineHeight: 1.5;
  --evgNavigationsSecondaryLinkCapitalization: none;
  --evgNavigationsSecondaryLinkTextDecoration: none;
  --evgNavigationsSecondaryLinkTextDecorationHover: none;
  --evgNavigationsSecondaryLinkTextDecorationFocus: none;
  --evgNavigationsSecondaryLinkPrescrollColor: var(--evgBodyTextColor);
  --evgNavigationsSecondaryLinkScrollColor: var(--evgBodyTextColor);
  /** Footer **/
  --evgFooterPrimaryColor: var(--evgPrimaryColor);
  --evgFooterSecondaryColor: var(--evgPrimaryColor);
  --evgFooterImagePosition: top left;
  --evgFooterImageSizing: cover;
  /** Corporate **/
  --evgNavigationsCorporateBackgroundPrescrollColor: var(--evgPrimaryColor);
  --evgNavigationsCorporateBackgroundScrollColor: var(--evgAltColor);
  --evgNavigationsCorporateLinkTypography: caption;
  --evgNavigationsCorporateLinkFontFamily: Inter;
  --evgNavigationsCorporateLinkFontSize: calc(var(--evgRootFontSize) * 1.6);
  --evgNavigationsCorporateLinkFontWeight: normal;
  --evgNavigationsCorporateLinkFontStyle: normal;
  --evgNavigationsCorporateLinkLineHeight: 1;
  --evgNavigationsCorporateLinkCapitalization: none;
  --evgNavigationsCorporateLinkPrescrollColor: var(--evgBodyTextColor);
  --evgNavigationsCorporateLinkScrollColor: var(--evgBodyTextColor);
  --evgNavigationsCorporateCurrentPageIndicator: var(--evgBodyTextColor);
  --evgNavigationsCorporateLinkAlignment: right;
  --evgNavigationsCorporateMobileBackgroundPrescrollColor: var(--evgPrimaryColor);
  --evgNavigationsCorporateMobileBackgroundScrollColor: var(--evgPrimaryColor);
  --evgNavigationsCorporateMobileHamburgerColor: var(--evgPrimaryColor);
  --evgNavigationsCorporateMobileMenuSeparatorColor: var(--evgBorderColor);
  --evgNavigationsCorporateMobileNavigationBackgroundColor: var(--evgPrimaryColor);
  --evgNavigationsCorporateMobileNavigationColor: var(--evgPrimaryColor);
  --evgNavigationsCorporateMobileSearchBackgroundColor: var(--evgPrimaryColor);
  --evgNavigationsCorporateMobileSearchFontColor: var(--evgPrimaryColor);
  --evgNavigationsCorporateMobileLinkTypography: caption;
  --evgNavigationsCorporateMobileLinkFontFamily: Inter;
  --evgNavigationsCorporateMobileLinkFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgNavigationsCorporateMobileLinkFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgNavigationsCorporateMobileLinkFontWeight: normal;
  --evgNavigationsCorporateMobileLinkFontStyle: normal;
  --evgNavigationsCorporateMobileLinkLineHeight: 1.2;
  --evgNavigationsCorporateMobileLinkCapitalization: none;
  --evgNavigationsCorporateMobileLinkTextDecoration: none;
  --evgNavigationsCorporateMobileLinkTextDecorationHover: none;
  --evgNavigationsCorporateMobileLinkTextDecorationFocus: none;
  --evgNavigationsCorporateMobileLinkColor: var(--evgPrimaryColor);
  --evgNavigationsCorporateMobileLinkHoverColor: var(--evgDarkColor);
  --evgNavigationsCorporateMobileLinkFocusColor: var(--evgPrimaryColor);
  --evgNavigationsCorporateMobileLinkTextDecorationColor: var(--evgPrimaryColor);
  --evgNavigationsCorporateMobileLinkTextDecorationHoverColor: var(--evgDarkColor);
  --evgNavigationsCorporateMobileLinkTextDecorationFocusColor: var(--evgPrimaryColor);
  /*** END NAVIGATION VARIABLES ***/
  /*** START COOKIE MANAGEMENT VARIABLES ***/
  --evgCookiesBannerBackgroundColor: var(--evgLightColor);
  --evgCookiesBannerAcceptButtonFontTypography: body;
  --evgCookiesBannerAcceptButtonFontFamily: "din-2014" !important;
  --evgCookiesBannerAcceptButtonFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgCookiesBannerAcceptButtonFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgCookiesBannerAcceptButtonFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgCookiesBannerAcceptButtonFontColor: var(--evgLightColor);
  --evgCookiesBannerAcceptButtonFontHoverColor: var(--evgLightColor);
  --evgCookiesBannerAcceptButtonFontFocusColor: var(--evgLightColor);
  --evgCookiesBannerAcceptButtonFontWeight: normal;
  --evgCookiesBannerAcceptButtonFontStyle: normal;
  --evgCookiesBannerAcceptButtonFontLineHeight: 1.3;
  --evgCookiesBannerAcceptButtonFontCapitalization: none;
  --evgCookiesBannerAcceptButtonBorderColor: var(--evgPrimaryColor);
  --evgCookiesBannerAcceptButtonBorderHoverColor: var(--evgAltColor);
  --evgCookiesBannerAcceptButtonBorderFocusColor: var(--evgAltColor);
  --evgCookiesBannerAcceptButtonBorderRadius: 0;
  --evgCookiesBannerAcceptButtonBackgroundColor: var(--evgPrimaryColor);
  --evgCookiesBannerAcceptButtonBackgroundHoverColor: var(--evgAltColor);
  --evgCookiesBannerAcceptButtonBackgroundFocusColor: var(--evgAltColor);
  --evgCookiesBannerAcceptButtonPaddingItemPadding: initial;
  --evgCookiesBannerAcceptButtonPaddingVerticalPadding: 20px;
  --evgCookiesBannerAcceptButtonDecorationTextDecoration: none;
  --evgCookiesBannerAcceptButtonDecorationTextDecorationHover: none;
  --evgCookiesBannerAcceptButtonDecorationTextDecorationFocus: none;
  --evgCookiesBannerAcceptButtonDecorationTextDecorationColor: var(--evgLightColor);
  --evgCookiesBannerAcceptButtonDecorationTextDecorationHoverColor: var(--evgLightColor);
  --evgCookiesBannerAcceptButtonDecorationTextDecorationFocusColor: var(--evgLightColor);
  --evgCookiesBannerRejectButtonFontTypography: body;
  --evgCookiesBannerRejectButtonFontFamily: "din-2014" !important;
  --evgCookiesBannerRejectButtonFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgCookiesBannerRejectButtonFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgCookiesBannerRejectButtonFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgCookiesBannerRejectButtonFontColor: var(--evgPrimaryColor);
  --evgCookiesBannerRejectButtonFontHoverColor: var(--evgLightColor);
  --evgCookiesBannerRejectButtonFontFocusColor: var(--evgLightColor);
  --evgCookiesBannerRejectButtonFontWeight: normal;
  --evgCookiesBannerRejectButtonFontStyle: normal;
  --evgCookiesBannerRejectButtonFontLineHeight: 1.3;
  --evgCookiesBannerRejectButtonFontCapitalization: none;
  --evgCookiesBannerRejectButtonBorderColor: var(--evgLightColor);
  --evgCookiesBannerRejectButtonBorderHoverColor: var(--evgPrimaryColor);
  --evgCookiesBannerRejectButtonBorderFocusColor: var(--evgPrimaryColor);
  --evgCookiesBannerRejectButtonBorderRadius: 0;
  --evgCookiesBannerRejectButtonBackgroundColor: var(--evgLightColor);
  --evgCookiesBannerRejectButtonBackgroundHoverColor: var(--evgPrimaryColor);
  --evgCookiesBannerRejectButtonBackgroundFocusColor: var(--evgPrimaryColor);
  --evgCookiesBannerRejectButtonPaddingItemPadding: initial;
  --evgCookiesBannerRejectButtonPaddingVerticalPadding: 20px;
  --evgCookiesBannerRejectButtonDecorationTextDecoration: none;
  --evgCookiesBannerRejectButtonDecorationTextDecorationHover: none;
  --evgCookiesBannerRejectButtonDecorationTextDecorationFocus: none;
  --evgCookiesBannerRejectButtonDecorationTextDecorationColor: var(--evgLightColor);
  --evgCookiesBannerRejectButtonDecorationTextDecorationHoverColor: var(--evgLightColor);
  --evgCookiesBannerRejectButtonDecorationTextDecorationFocusColor: var(--evgLightColor);
  --evgCookiesBannerPreferenceButtonFontTypography: body;
  --evgCookiesBannerPreferenceButtonFontFamily: "din-2014" !important;
  --evgCookiesBannerPreferenceButtonFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgCookiesBannerPreferenceButtonFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgCookiesBannerPreferenceButtonFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgCookiesBannerPreferenceButtonFontColor: var(--evgPrimaryColor);
  --evgCookiesBannerPreferenceButtonFontHoverColor: var(--evgLightColor);
  --evgCookiesBannerPreferenceButtonFontFocusColor: var(--evgLightColor);
  --evgCookiesBannerPreferenceButtonFontWeight: normal;
  --evgCookiesBannerPreferenceButtonFontStyle: normal;
  --evgCookiesBannerPreferenceButtonFontLineHeight: 1.3;
  --evgCookiesBannerPreferenceButtonFontCapitalization: none;
  --evgCookiesBannerPreferenceButtonBorderColor: var(--evgLightColor);
  --evgCookiesBannerPreferenceButtonBorderHoverColor: var(--evgPrimaryColor);
  --evgCookiesBannerPreferenceButtonBorderFocusColor: var(--evgPrimaryColor);
  --evgCookiesBannerPreferenceButtonBorderRadius: 0;
  --evgCookiesBannerPreferenceButtonBackgroundColor: var(--evgLightColor);
  --evgCookiesBannerPreferenceButtonBackgroundHoverColor: var(--evgPrimaryColor);
  --evgCookiesBannerPreferenceButtonBackgroundFocusColor: var(--evgPrimaryColor);
  --evgCookiesBannerPreferenceButtonPaddingItemPadding: initial;
  --evgCookiesBannerPreferenceButtonPaddingVerticalPadding: 20px;
  --evgCookiesBannerPreferenceButtonDecorationTextDecoration: none;
  --evgCookiesBannerPreferenceButtonDecorationTextDecorationHover: none;
  --evgCookiesBannerPreferenceButtonDecorationTextDecorationFocus: none;
  --evgCookiesBannerPreferenceButtonDecorationTextDecorationColor: var(--evgLightColor);
  --evgCookiesBannerPreferenceButtonDecorationTextDecorationHoverColor: var(--evgLightColor);
  --evgCookiesBannerPreferenceButtonDecorationTextDecorationFocusColor: var(--evgLightColor);
  --evgCookiesBannerCloseButtonIconColor: var(--evgPrimaryColor);
  --evgCookiesBannerHeadingFontFamily: "din-2014" !important;
  --evgCookiesBannerHeadingFontSizeL: calc(var(--evgRootFontSize) * 2.4);
  --evgCookiesBannerHeadingFontSizeM: calc(var(--evgRootFontSize) * 2.4);
  --evgCookiesBannerHeadingFontSizeS: calc(var(--evgRootFontSize) * 2.4);
  --evgCookiesBannerHeadingFontColor: var(--evgBodyTextColor);
  --evgCookiesBannerHeadingFontWeight: normal;
  --evgCookiesBannerHeadingFontLineHeight: 1.5;
  --evgCookiesBannerHeadingFontCapitalization: none;
  --evgCookiesBannerDescriptionFontFamily: "din-2014" !important;
  --evgCookiesBannerDescriptionFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgCookiesBannerDescriptionFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgCookiesBannerDescriptionFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgCookiesBannerDescriptionFontColor: var(--evgBodyTextColor);
  --evgCookiesBannerDescriptionFontWeight: normal;
  --evgCookiesBannerDescriptionFontLineHeight: 1.5;
  --evgCookiesBannerDescriptionFontCapitalization: none;
  --evgCookiesLinkTypography: caption;
  --evgCookiesLinkFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgCookiesLinkFontSizeM: calc(var(--evgRootFontSize) * 1.4);
  --evgCookiesLinkFontSizeS: calc(var(--evgRootFontSize) * 1.4);
  --evgCookiesLinkColor: var(--evgPrimaryColor);
  --evgCookiesLinkHoverColor: var(--evgAltColor);
  --evgCookiesLinkFocusColor: var(--evgBodyTextColor);
  --evgCookiesLinkLineHeight: 2.0;
  --evgCookiesLinkTextDecoration: none;
  --evgCookiesLinkTextDecorationHover: underline solid;
  --evgCookiesLinkTextDecorationFocus: none;
  --evgCookiesLinkTextDecorationColor: var(--evgAltColor);
  --evgCookiesLinkTextDecorationHoverColor: var(--evgAltColor);
  --evgCookiesLinkTextDecorationFocusColor: var(--evgAltColor);
  --evgCookiesPaneBackgroundColor: var(--evgLightColor);
  --evgCookiesPaneCloseButtonFontTypography: body;
  --evgCookiesPaneCloseButtonFontFamily: "din-2014" !important;
  --evgCookiesPaneCloseButtonFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgCookiesPaneCloseButtonFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgCookiesPaneCloseButtonFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgCookiesPaneCloseButtonFontColor: var(--evgPrimaryColor);
  --evgCookiesPaneCloseButtonFontHoverColor: var(--evgLightColor);
  --evgCookiesPaneCloseButtonFontFocusColor: var(--evgLightColor);
  --evgCookiesPaneCloseButtonFontWeight: normal;
  --evgCookiesPaneCloseButtonFontStyle: normal;
  --evgCookiesPaneCloseButtonFontLineHeight: 1.3;
  --evgCookiesPaneCloseButtonFontCapitalization: none;
  --evgCookiesPaneCloseButtonBorderColor: var(--evgLightColor);
  --evgCookiesPaneCloseButtonBorderHoverColor: var(--evgPrimaryColor);
  --evgCookiesPaneCloseButtonBorderFocusColor: var(--evgPrimaryColor);
  --evgCookiesPaneCloseButtonBorderRadius: 0;
  --evgCookiesPaneCloseButtonBackgroundColor: var(--evgLightColor);
  --evgCookiesPaneCloseButtonBackgroundHoverColor: var(--evgPrimaryColor);
  --evgCookiesPaneCloseButtonBackgroundFocusColor: var(--evgPrimaryColor);
  --evgCookiesPaneCloseButtonPaddingItemPadding: initial;
  --evgCookiesPaneCloseButtonPaddingVerticalPadding: 20px;
  --evgCookiesPaneCloseButtonDecorationTextDecoration: none;
  --evgCookiesPaneCloseButtonDecorationTextDecorationHover: none;
  --evgCookiesPaneCloseButtonDecorationTextDecorationFocus: none;
  --evgCookiesPaneCloseButtonDecorationTextDecorationColor: var(--evgLightColor);
  --evgCookiesPaneCloseButtonDecorationTextDecorationHoverColor: var(--evgLightColor);
  --evgCookiesPaneCloseButtonDecorationTextDecorationFocusColor: var(--evgLightColor);
  --evgCookiesPaneSwitchOnBackgroundColor: var(--evgPrimaryColor);
  --evgCookiesPaneSwitchOnTextColor: var(--evgBodyTextColor);
  --evgCookiesPaneSwitchOffBackgroundColor: var(--evgGreyDarkColor);
  --evgCookiesPaneSwitchOffTextColor: var(--evgPrimaryColor);
  --evgCookiesPaneLineSeparatorColor: var(--evgGreyColor);
  --evgCookiesPaneAlwaysActiveColor: var(--evgSuccessColor);
  --evgCookiesPaneAllAcceptedColor: var(--evgSuccessColor);
  --evgCookiesPaneAllRejectedColor: var(--evgErrorColor);
  --evgCookiesPaneSomeAcceptedColor: var(--evgBodyTextColor);
  --evgCookiesPaneWarningBackgroundColor: var(--evgLightColor);
  --evgCookiesPaneWarningBorderColor: var(--evgBrand5Color);
  --evgCookiesPaneWarningIconColor: var(--evgBrand5Color);
  --evgCookiesPaneHeadingFontFamily: "din-2014" !important;
  --evgCookiesPaneHeadingFontSizeL: calc(var(--evgRootFontSize) * 2.4);
  --evgCookiesPaneHeadingFontSizeM: calc(var(--evgRootFontSize) * 2.4);
  --evgCookiesPaneHeadingFontSizeS: calc(var(--evgRootFontSize) * 2.4);
  --evgCookiesPaneHeadingFontColor: var(--evgBodyTextColor);
  --evgCookiesPaneHeadingFontWeight: normal;
  --evgCookiesPaneHeadingFontLineHeight: 1.5;
  --evgCookiesPaneHeadingFontCapitalization: none;
  --evgCookiesPaneSubheadingFontFamily: "din-2014" !important;
  --evgCookiesPaneSubheadingFontSizeL: calc(var(--evgRootFontSize) * 1.2);
  --evgCookiesPaneSubheadingFontSizeM: calc(var(--evgRootFontSize) * 1.2);
  --evgCookiesPaneSubheadingFontSizeS: calc(var(--evgRootFontSize) * 1.2);
  --evgCookiesPaneSubheadingFontColor: var(--evgBodyTextColor);
  --evgCookiesPaneSubheadingFontWeight: normal;
  --evgCookiesPaneSubheadingFontLineHeight: 1.5;
  --evgCookiesPaneSubheadingFontCapitalization: none;
  --evgCookiesPaneBodyFontFamily: "din-2014" !important;
  --evgCookiesPaneBodyFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgCookiesPaneBodyFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgCookiesPaneBodyFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgCookiesPaneBodyFontColor: var(--evgBodyTextColor);
  --evgCookiesPaneBodyFontWeight: normal;
  --evgCookiesPaneBodyFontLineHeight: 1.5;
  --evgCookiesPaneBodyFontCapitalization: none;
  --evgCookiesFloatingButtonTypography: caption;
  --evgCookiesFloatingButtonFontFamily: Inter;
  --evgCookiesFloatingButtonFontSizeL: calc(var(--evgRootFontSize) * 1.4);
  --evgCookiesFloatingButtonFontSizeM: calc(var(--evgRootFontSize) * 1.4);
  --evgCookiesFloatingButtonFontSizeS: calc(var(--evgRootFontSize) * 1.4);
  --evgCookiesFloatingButtonFontWeight: normal;
  --evgCookiesFloatingButtonFontStyle: normal;
  --evgCookiesFloatingButtonLineHeight: 1.6;
  --evgCookiesFloatingButtonCapitalization: none;
  --evgCookiesFloatingButtonTextDecoration: none;
  --evgCookiesFloatingButtonTextDecorationHover: none;
  --evgCookiesFloatingButtonTextDecorationFocus: none;
  --evgCookiesFloatingButtonTextDecorationColor: var(--evgPrimaryColor);
  --evgCookiesFloatingButtonTextDecorationHoverColor: var(--evgPrimaryColor);
  --evgCookiesFloatingButtonTextDecorationFocusColor: var(--evgPrimaryColor);
  --evgCookiesFloatingButtonFontColor: var(--evgLightColor);
  --evgCookiesFloatingButtonFontHoverColor: var(--evgLightColor);
  --evgCookiesFloatingButtonFontFocusColor: var(--evgLightColor);
  --evgCookiesFloatingButtonBorderRadius: 4px;
  --evgCookiesFloatingButtonBorderColor: var(--evgPrimaryColor);
  --evgCookiesFloatingButtonBorderHoverColor: var(--evgAltColor);
  --evgCookiesFloatingButtonBorderFocusColor: var(--evgAltColor);
  --evgCookiesFloatingButtonBackgroundColor: var(--evgPrimaryColor);
  --evgCookiesFloatingButtonBackgroundHoverColor: var(--evgAltColor);
  --evgCookiesFloatingButtonBackgroundFocusColor: var(--evgAltColor);
  --evgCookiesFloatingButtonVerticalPadding: 20px;
  /*** END COOKIE MANAGEMENT VARIABLES ***/
  /*** START CUSTOM GRID VARIABLES ***/
  --evergreen-grid-col: 1;
  --evergreen-grid-col-tablet: 1;
  --evergreen-grid-col-mobile: 1;
  --evergreen-grid-col-p: 0;
  --evergreen-grid-col-p-tablet: 0;
  --evergreen-grid-col-p-mobile: 0;
  --evergreen-grid-col-bg: transparent;
}

/*** END CUSTOM GRID VARIABLES ***/
/***** EVERGREEN STYLES *****/
/* Navigation */
.evergreen-layout {
  --navigationsMainBackgroundColor: var(--evgNavigationsMainBackgroundPrescrollColor);
  --navigationsMainMobileBackgroundColor: var(--evgNavigationsMainMobileBackgroundPrescrollColor);
  --navigationsMainLinkColor: var(--evgNavigationsMainLinkPrescrollColor);
  --navigationsMainLinkHoverColor: var(--evgNavigationsMainLinkPrescrollHoverColor);
  --navigationsMainLinkFocusColor: var(--evgNavigationsMainLinkPrescrollFocusColor);
  --navigationsMainTextDecorationColor: var(--evgNavigationsMainLinkPrescrollTextDecorationColor);
  --navigationsMainTextDecorationHoverColor: var(--evgNavigationsMainLinkPrescrollTextDecorationHoverColor);
  --navigationsMainTextDecorationFocusColor: var(--evgNavigationsMainLinkPrescrollTextDecorationFocusColor);
  --navigationsSecondaryBackgroundColor: var(--evgNavigationsSecondaryBackgroundPrescrollColor);
  --navigationsSecondaryTabBackgroundColor: var(--evgNavigationsSecondaryTabBackgroundPrescrollColor);
  --navigationsSecondaryTabBackgroundHoverColor: var(--evgNavigationsSecondaryTabBackgroundPrescrollHoverColor);
  --navigationsSecondaryTabBackgroundFocusColor: var(--evgNavigationsSecondaryTabBackgroundPrescrollActiveColor);
  --navigationsSecondaryLinkColor: var(--evgNavigationsSecondaryLinkPrescrollColor);
  --navigationsSecondaryLinkHoverColor: var(--evgNavigationsSecondaryLinkPrescrollHoverColor);
  --navigationsSecondaryLinkFocusColor: var(--evgNavigationsSecondaryLinkPrescrollFocusColor);
  --navigationsSecondaryTextDecorationColor: var(--evgNavigationsSecondaryLinkPrescrollTextDecorationColor);
  --navigationsSecondaryTextDecorationHoverColor: var(--evgNavigationsSecondaryLinkPrescrollTextDecorationHoverColor);
  --navigationsSecondaryTextDecorationFocusColor: var(--evgNavigationsSecondaryLinkPrescrollTextDecorationFocusColor);
  --navigationsCorporateBackgroundColor: var(--evgNavigationsCorporateBackgroundPrescrollColor);
  --navigationsCorporateMobileBackgroundColor: var(--evgNavigationsCorporateMobileBackgroundPrescrollColor);
}

.evergreen-layout.evergreen-layout--scroll .evergreen-primary-navigation-menu-container {
  --navigationsMainMobileBackgroundColor: var(--evgNavigationsMainMobileBackgroundScrollColor);
}

.evergreen-layout--scroll .evergreen-primary-navigation-menu--primary {
  --navigationsMainBackgroundColor: var(--evgNavigationsMainBackgroundScrollColor);
  --navigationsMainMobileBackgroundColor: var(--evgNavigationsMainMobileBackgroundScrollColor);
  --navigationsMainLinkColor: var(--evgNavigationsMainLinkScrollColor);
  --navigationsMainLinkHoverColor: var(--evgNavigationsMainLinkScrollHoverColor);
  --navigationsMainLinkFocusColor: var(--evgNavigationsMainLinkScrollFocusColor);
  --navigationsMainTextDecorationColor: var(--evgNavigationsMainLinkScrollTextDecorationColor);
  --navigationsMainTextDecorationHoverColor: var(--evgNavigationsMainLinkScrollTextDecorationHoverColor);
  --navigationsMainTextDecorationFocusColor: var(--evgNavigationsMainLinkScrollTextDecorationFocusColor);
}

.evergreen-layout--scroll .evergreen-section--sticky {
  --navigationsSecondaryBackgroundColor: var(--evgNavigationsSecondaryBackgroundScrollColor);
  --navigationsSecondaryTabBackgroundColor: var(--evgNavigationsSecondaryTabBackgroundScrolllColor);
  --navigationsSecondaryTabBackgroundHoverColor: var(--evgNavigationsSecondaryTabBackgroundScrollHoverColor);
  --navigationsSecondaryTabBackgroundFocusColor: var(--evgNavigationsSecondaryTabBackgroundScrollActiveColor);
  --navigationsSecondaryLinkColor: var(--evgNavigationsSecondaryLinkScrollColor);
  --navigationsSecondaryLinkHoverColor: var(--evgNavigationsSecondaryLinkScrollHoverColor);
  --navigationsSecondaryLinkFocusColor: var(--evgNavigationsSecondaryLinkScrollFocusColor);
  --navigationsSecondaryTextDecorationColor: var(--evgNavigationsSecondaryLinkScrollTextDecorationColor);
  --navigationsSecondaryTextDecorationHoverColor: var(--evgNavigationsSecondaryLinkScrollTextDecorationHoverColor);
  --navigationsSecondaryTextDecorationFocusColor: var(--evgNavigationsSecondaryLinkScrollTextDecorationFocusColor);
}

/* Navigation Section */
.evergreen-layout .evergreen-section.evergreen-section--navigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.evergreen-layout .evergreen-section.evergreen-section--navigation .evergreen-primary-navigation-menu--primary {
  background: var(--navigationsMainBackgroundColor);
}

.evergreen-layout .evergreen-section.evergreen-section--navigation .evergreen-primary-navigation-menu--primary .evergreen-primary-navigation-desktop-container {
  transition: all 0.5s ease-out;
  padding: 20px 20px;
}

.evergreen-layout .evergreen-section.evergreen-section--navigation .evergreen-primary-navigation-menu--corporate {
  transition: all 0.5s ease-out;
  background: var(--navigationsCorporateBackgroundColor);
  padding: 16px 20px;
}

.evergreen-pane.evergreen-pane--navigation {
  position: relative;
  display: flex;
  gap: 56px;
}

.evergreen-layout.evergreen-layout--scroll .evergreen-section.evergreen-section--navigation .evergreen-primary-navigation-menu--primary .evergreen-primary-navigation-desktop-container {
  --navigationBackgroundColor: var(--evgNavigationsMainBackgroundScrollColor);
  padding: 12px 20px;
}

.evergreen-layout.evergreen-layout--scroll .evergreen-section.evergreen-section--navigation .evergreen-primary-navigation-menu--corporate {
  --navigationsCorporateBackgroundColor: var(--evgNavigationsCorporateBackgroundScrollColor);
  padding: 8px 20px;
}

.evergreen-pane.evergreen-pane--navigation .NavigationPaneDiv {
  flex-grow: 1;
  min-width: 32px;
}

.evergreen-container--outer.evergreen-primary-navigation {
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}

/* MAIN NAVIGATION LINK STYLING -- DESKTOP */
.evergreen-primary-navigation-container {
  display: flex;
}

.evergreen-primary-navigation {
  flex: 1;
}

.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container ul li > a.evergreen-navigation-link,
.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container ul li > button.evergreen-navigation-button {
  font-family: var(--evgNavigationsMainLinkFontFamily);
  font-size: var(--evgNavigationsMainLinkFontSize);
  font-weight: var(--evgNavigationsMainLinkFontWeight);
  line-height: var(--evgNavigationsMainLinkLineHeight);
  font-style: var(--evgNavigationsMainLinkFontStyle);
  text-transform: var(--evgNavigationsMainLinkCapitalization);
}

.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container ul li > a.evergreen-navigation-link,
.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container ul li > button.evergreen-navigation-button .evergreen-navigation-button-text {
  color: var(--navigationsMainLinkColor);
}

.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container ul.evergreen-navigation-list--innerMenu li > a.evergreen-navigation-link {
  text-decoration: var(--evgNavigationsMainLinkTextDecoration);
  text-decoration-color: var(--navigationsMainTextDecorationColor);
  text-decoration-thickness: 1px;
}

.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container ul li > a.evergreen-navigation-link:hover,
.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container ul li > button.evergreen-navigation-button:hover .evergreen-navigation-button-text {
  color: var(--navigationsMainLinkHoverColor);
}

.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container ul.evergreen-navigation-list--innerMenu li > a.evergreen-navigation-link:hover {
  text-decoration: var(--evgNavigationsMainLinkTextDecorationHover);
  text-decoration-color: var(--navigationsMainTextDecorationHoverColor);
}

.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container ul li > a.evergreen-navigation-link:focus,
.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container ul li > a.evergreen-navigation-link:focus-visible,
.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container ul li > button.evergreen-navigation-button:focus .evergreen-navigation-button-text,
.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container ul li > button.evergreen-navigation-button:focus-visible .evergreen-navigation-button-text {
  color: var(--navigationsMainLinkFocusColor);
}

.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container ul.evergreen-navigation-list--innerMenu li > a.evergreen-navigation-link:focus,
.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container ul.evergreen-navigation-list--innerMenu li > a.evergreen-navigation-link:focus-visible {
  text-decoration: var(--evgNavigationsMainLinkTextDecorationFocus);
  text-decoration-color: var(--navigationsMainTextDecorationFocusColor);
}

.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container > ul > li.expanded,
.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container > ul > li.selected {
  background-image: linear-gradient(to right, var(--navigationsMainTextDecorationColor) 33%, rgba(255, 255, 255, 0) 0%);
  background-position: bottom;
  background-size: 7px 2px;
  background-repeat: repeat-x;
  background-position-x: -7px;
}

.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container ul li.selected,
.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container ul li.expanded {
  border-bottom: var(--evgModuleItemUnderline);
  border-bottom-style: var(--evgModuleItemUnderlineStyle);
  border-bottom-color: var(--evgModuleItemUnderlineColor);
}

/* Navigation Dropdowns */
.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container ul li > button.evergreen-navigation-button .evergreen-navigation-button-icon {
  color: var(--evgNavigationsMainDropdownArrowColor);
  margin-left: 4px;
  font-size: 8px;
  vertical-align: middle;
}

.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container li ul[class*=list--innerMenu] {
  background: var(--evgNavigationsMainDropdownBackgroundColor);
}

.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container ul[class*=list--innerMenu] li > a.evergreen-navigation-link,
.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container ul[class*=list--innerMenu] li > button.evergreen-navigation-button .evergreen-navigation-button-text {
  color: var(--evgNavigationsMainDropdownLinkColor);
  text-decoration-color: var(--evgNavigationsMainDropdownLinkTextDecorationColor);
  font-size: var(--evgNavigationsMainDropdownLinkFontSizeL);
  text-transform: var(--evgNavigationsMainDropdownLinkFontCapitalization);
  font-family: var(--evgNavigationsMainDropdownLinkFontFamily);
  font-weight: var(--evgNavigationsMainDropdownLinkFontWeight);
  font-style: var(--evgNavigationsMainDropdownLinkFontStyle);
}

.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container ul[class*=list--innerMenu] li:hover > a.evergreen-navigation-link,
.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container ul[class*=list--innerMenu] li > button.evergreen-navigation-button:hover .evergreen-navigation-button-text {
  color: var(--evgNavigationsMainDropdownLinkHoverColor);
  text-decoration-color: var(--evgNavigationsMainDropdownLinkTextDecorationHoverColor);
}

.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container ul[class*=list--innerMenu] li:focus > a.evergreen-navigation-link,
.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container ul[class*=list--innerMenu] li:focus-visible > a.evergreen-navigation-link,
.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container ul[class*=list--innerMenu] li > button.evergreen-navigation-button:focus .evergreen-navigation-button-text,
.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container ul[class*=list--innerMenu] li > button.evergreen-navigation-button:focus-visible .evergreen-navigation-button-text {
  color: var(--evgNavigationsMainDropdownLinkFocusColor);
  text-decoration-color: var(--evgNavigationsMainDropdownLinkTextDecorationFocusColor);
}

/* Navigation Search */
.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container .evergreen-navigation-search--btn {
  color: var(--evgNavigationsMainSearchFontColor);
}

.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container .evergreen-navigation-search input {
  background: var(--evgNavigationsMainSearchBackgroundColor);
  color: var(--evgNavigationsMainSearchFontColor);
  font-size: var(--evgNavigationsMainSearchFontSizeL);
}

.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container .evergreen-navigation-search input::placeholder {
  color: var(--evgNavigationsMainSearchFontColor);
}

.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container .evergreen-navigation-search .q4-icon_search,
.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container .evergreen-navigation-search .tooltip {
  color: var(--evgNavigationsMainDropdownArrowColor);
}

.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container li ul[class*=list--innerMenu] li,
.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container li ul[class*=list--innerMenu] li > button {
  width: 100%;
}

.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container li ul[class*=list--innerMenu] li:hover,
.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container li ul[class*=list--innerMenu] li:hover > button.evergreen-navigation-button {
  background: var(--evgNavigationsMainDropdownBackgroundHoverColor);
}

.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container li ul[class*=list--innerMenu] li:active,
.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container li ul[class*=list--innerMenu] li > button.evergreen-navigation-button:active {
  background: var(--evgNavigationsMainDropdownBackgroundActiveColor);
}

.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container li ul[class*=list--innerMenu] li:focus,
.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container li ul[class*=list--innerMenu] li > button.evergreen-navigation-button:active {
  background: var(--evgNavigationsMainDropdownBackgroundHoverColor);
}

.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container li ul[class*=list--innerMenu] li:active > a.evergreen-navigation-link,
.evergreen-primary-navigation .evergreen-primary-navigation-desktop-container li ul[class*=list--innerMenu] li > button.evergreen-navigation-button:active .evergreen-navigation-button-text {
  color: var(--evgNavigationsMainDropdownLinkActiveColor);
  text-decoration-color: var(--evgNavigationsMainDropdownLinkTextDecorationActiveColor);
}

/* NAVIGATION LINK STYLING -- MOBILE */
/* Panel */
.evergreen-primary-navigation nav.evergreen-navigation-mobile,
.evergreen-primary-navigation nav.evergreen-navigation-mobile ul[class*=panel--innerMenu] {
  background: var(--evgNavigationsMainMobileNavigationBackgroundColor);
}

/* Hamburger */
.evergreen-primary-navigation button.evergreen-primary-navigation-mobile-toggle {
  color: var(--evgNavigationsMainMobileHamburgerColor);
}

/* Icons */
.evergreen-primary-navigation .evergreen-navigation-mobile .evergreen-icon,
.evergreen-primary-navigation .evergreen-navigation-mobile .panel-control .evergreen-navigation-button-text,
.evergreen-primary-navigation .evergreen-navigation-mobile--inner_toggle_container button.evergreen-primary-navigation-mobile-toggle {
  color: var(--evgNavigationsMainMobileNavigationColor);
}

/* Search */
.evergreen-primary-navigation .evergreen-navigation-mobile .evergreen-navigation-mobile_search-container input {
  box-shadow: 0 0 0 30px var(--evgNavigationsMainMobileSearchBackgroundColor) inset;
  color: var(--evgNavigationsMainMobileSearchFontColor);
}

.evergreen-primary-navigation .evergreen-navigation-mobile .evergreen-navigation-mobile_search-container input::placeholder,
.evergreen-primary-navigation .evergreen-navigation-mobile .evergreen-navigation-mobile_search-container .evergreen-icon {
  color: var(--evgNavigationsMainMobileSearchFontColor);
}

/* Links */
.evergreen-primary-navigation .evergreen-navigation-mobile .evergreen-navigation-button-text,
.evergreen-primary-navigation .evergreen-navigation-mobile .evergreen-navigation-link {
  color: var(--evgNavigationsMainMobileLinkColor);
  font-family: var(--evgNavigationsMainMobileLinkFontFamily);
  font-size: var(--evgNavigationsMainMobileLinkFontSizeM);
  font-weight: var(--evgNavigationsMainMobileLinkFontWeight);
  font-style: var(--evgNavigationsMainMobileLinkFontStyle);
  line-height: var(--evgNavigationsMainMobileLinkLineHeight);
  text-transform: var(--evgNavigationsMainMobileLinkCapitalization);
  text-decoration: var(--evgNavigationsMainMobileLinkTextDecoration);
  text-decoration-color: var(--evgNavigationsMainMobileLinkTextDecorationColor);
}

.evergreen-primary-navigation .evergreen-navigation-mobile .evergreen-navigation-button-text:hover,
.evergreen-primary-navigation .evergreen-navigation-mobile .evergreen-navigation-link:hover {
  color: var(--evgNavigationsMainMobileLinkHoverColor);
  text-decoration: var(--evgNavigationsMainMobileLinkTextDecorationHover);
  text-decoration-color: var(--evgNavigationsMainMobileLinkTextDecorationHoverColor);
}

.evergreen-primary-navigation .evergreen-navigation-mobile .evergreen-navigation-button:focus .evergreen-navigation-button-text,
.evergreen-primary-navigation .evergreen-navigation-mobile .evergreen-navigation-button:focus-visible .evergreen-navigation-button-text,
.evergreen-primary-navigation .evergreen-navigation-mobile .evergreen-navigation-link:focus,
.evergreen-primary-navigation .evergreen-navigation-mobile .evergreen-navigation-link:focus-visible {
  color: var(--evgNavigationsMainMobileLinkFocusColor);
  text-decoration: var(--evgNavigationsMainMobileLinkTextDecorationFocus);
  text-decoration-color: var(--evgNavigationsMainMobileLinkTextDecorationFocusColor);
}

.evergreen-primary-navigation .evergreen-navigation-mobile ul li.selected,
.evergreen-primary-navigation .evergreen-navigation-mobile ul li.expanded {
  border-bottom: var(--evgModuleItemUnderline);
  border-bottom-style: var(--evgModuleItemUnderlineStyle);
  border-bottom-color: var(--evgModuleItemUnderlineColor);
}

.evergreen-primary-navigation .evergreen-navigation-mobile .selected > a span,
.evergreen-primary-navigation .evergreen-navigation-mobile .expanded > a span,
.evergreen-primary-navigation .evergreen-navigation-mobile .selected > .evergreen-navigation-button > .evergreen-navigation-button-text,
.evergreen-primary-navigation .evergreen-navigation-mobile .expanded > .evergreen-navigation-button > .evergreen-navigation-button-text {
  color: var(--evgNavigationsMainMobileLinkActiveColor);
  text-decoration: var(--evgNavigationsMainMobileLinkTextDecorationActive);
  text-decoration-color: var(--evgNavigationsMainMobileLinkTextDecorationActiveColor);
  font-weight: var(--evgNavigationsMainMobileLinkFontWeightActive);
}

.evergreen-primary-navigation .evergreen-navigation-mobile .selected > .evergreen-navigation-button .evergreen-navigation-button-icon,
.evergreen-primary-navigation .evergreen-navigation-mobile .expanded > .evergreen-navigation-button .evergreen-navigation-button-icon {
  color: var(--evgNavigationsMainMobileLinkActiveColor);
}

.evergreen-layout .evergreen-primary-navigation .evergreen-primary-navigation-quicklink--link {
  color: var(--evgNavigationsCorporateLinkPrescrollColor);
  font-family: var(--evgNavigationsCorporateLinkFontFamily);
  font-size: var(--evgNavigationsCorporateLinkFontSize);
  font-weight: var(--evgNavigationsCorporateLinkFontWeight);
  font-style: var(--evgNavigationsCorporateLinkFontStyle);
  line-height: var(--evgNavigationsCorporateLinkLineHeight);
  text-transform: var(--evgNavigationsCorporateLinkCapitalization);
}

.evergreen-layout .evergreen-primary-navigation nav.evergreen-navigation-mobile .evergreen-primary-navigation-quicklink--link {
  color: var(--evgNavigationsMainMobileLinkColor);
  font-size: var(--evgNavigationsCorporateMobileLinkFontSizeM);
  font-family: var(--evgNavigationsCorporateMobileLinkFontFamily);
  font-weight: var(--evgNavigationsCorporateMobileLinkFontWeight);
  font-style: var(--evgNavigationsCorporateMobileLinkFontStyle);
  line-height: var(--evgNavigationsCorporateMobileLinkLineHeight);
  text-transform: var(--evgNavigationsCorporateMobileLinkCapitalization);
  /* NOTE: Using configuration from Main navigation */
  text-decoration: var(--evgNavigationsMainMobileLinkTextDecoration);
  text-decoration-color: var(--evgNavigationsMainMobileLinkTextDecorationColor);
}

.evergreen-layout .evergreen-primary-navigation .evergreen-primary-navigation-quicklink--link:hover {
  color: var(--evgNavigationsCorporateLinkPrescrollHoverColor);
}

.evergreen-layout .evergreen-primary-navigation nav.evergreen-navigation-mobile .evergreen-primary-navigation-quicklink--link:hover {
  color: var(--evgNavigationsMainMobileLinkHoverColor);
}

.evergreen-layout .evergreen-primary-navigation .evergreen-primary-navigation-quicklink--link:focus,
.evergreen-layout .evergreen-primary-navigation .evergreen-primary-navigation-quicklink--link:focus-visible {
  color: var(--evgNavigationsCorporateLinkPrescrollFocusColor);
}

.evergreen-layout .evergreen-primary-navigation nav.evergreen-navigation-mobile .evergreen-primary-navigation-quicklink--link:focus,
.evergreen-layout .evergreen-primary-navigation nav.evergreen-navigation-mobile .evergreen-primary-navigation-quicklink--link:focus-visible {
  color: var(--evgNavigationsMainMobileLinkFocusColor);
}

.evergreen-layout.evergreen-layout--scroll .evergreen-primary-navigation .evergreen-primary-navigation-quicklink--link {
  color: var(--evgNavigationsCorporateLinkScrollColor);
}

.evergreen-layout.evergreen-layout--scroll .evergreen-primary-navigation .evergreen-primary-navigation-quicklink--link:hover {
  color: var(--evgNavigationsCorporateLinkScrollHoverColor);
}

.evergreen-layout.evergreen-layout--scroll .evergreen-primary-navigation .evergreen-primary-navigation-quicklink--link:focus,
.evergreen-layout.evergreen-layout--scroll .evergreen-primary-navigation .evergreen-primary-navigation-quicklink--link:focus-visible {
  color: var(--evgNavigationsCorporateLinkScrollFocusColor);
}

.evergreen-primary-navigation-menu--corporate .evergreen-primary-navigation-desktop-container {
  justify-content: var(--evgNavigationsCorporateLinkAlignment);
}

.evergreen-primary-navigation-menu--primary .evergreen-primary-navigation-desktop-container ul {
  justify-content: var(--evgNavigationsMainLinkAlignment);
}

@media only screen and (max-width: 1024px) {
  .evergreen-layout .evergreen-section.evergreen-section--navigation .evergreen-primary-navigation-menu--primary {
    background: none;
  }
  .evergreen-primary-navigation-container {
    display: flex;
    flex: 1;
    align-self: center;
  }
  .evergreen-pane.evergreen-pane--navigation .NavigationPaneDiv > div > .evergreen {
    display: flex;
    height: 100%;
  }
  .evergreen-pane.evergreen-pane--navigation .NavigationPaneDiv {
    flex-grow: 1;
    min-width: 32px;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: stretch;
  }
  .evergreen-pane.evergreen-pane--navigation .NavigationPaneDiv > div[class*=NavigationPaneDiv] {
    flex: 1 0 auto;
  }
}
@media only screen and (max-width: 480px) {
  .evergreen-primary-navigation .evergreen-navigation-mobile .evergreen-navigation-button-text,
.evergreen-primary-navigation .evergreen-navigation-mobile .evergreen-navigation-link {
    font-size: var(--evgNavigationsMainMobileLinkFontSizeS);
  }
  .evergreen-layout .evergreen-primary-navigation nav.evergreen-navigation-mobile .evergreen-primary-navigation-quicklink--link {
    font-size: var(--evgNavigationsCorporateMobileLinkFontSizeS);
  }
}
/* SECONDARY NAVIGATION LINK STYLING -- DESKTOP */
/* Breadcrumbs Section */
.evergreen-pane.evergreen-pane--breadcrumb.evergreen-section--sticky {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

.evergreen-layout .evergreen-secondary-navigation {
  max-width: 100vw;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  background: var(--navigationsSecondaryBackgroundColor);
}

.evergreen-layout.evergreen-layout--scroll .evergreen-section--sticky .evergreen-secondary-navigation {
  --navigationBackgroundColor: var(--evgNavigationsSecondaryBackgroundScrollColor);
}

.evergreen-secondary-navigation .evergreen-secondary-navigation-container ul li > a.evergreen-navigation-link {
  font-family: var(--evgNavigationsSecondaryLinkFontFamily);
  font-size: var(--evgNavigationsSecondaryLinkFontSize);
  font-weight: var(--evgNavigationsSecondaryLinkFontWeight);
  line-height: var(--evgNavigationsSecondaryLinkLineHeight);
  font-style: var(--evgNavigationsSecondaryLinkFontStyle);
  text-transform: var(--evgNavigationsSecondaryLinkCapitalization);
}

.evergreen-secondary-navigation .evergreen-secondary-navigation-container ul li {
  background: var(--navigationsSecondaryTabBackgroundColor);
}

.evergreen-secondary-navigation .evergreen-secondary-navigation-container ul li:hover,
.evergreen-secondary-navigation .evergreen-secondary-navigation-container ul li:focus,
.evergreen-secondary-navigation .evergreen-secondary-navigation-container ul li:focus-visible {
  background: var(--navigationsSecondaryTabBackgroundHoverColor);
}

.evergreen-secondary-navigation .evergreen-secondary-navigation-container ul li.selected,
.evergreen-secondary-navigation .evergreen-secondary-navigation-container ul li.expanded {
  background: var(--navigationsSecondaryTabBackgroundFocusColor);
}

.evergreen-secondary-navigation .evergreen-secondary-navigation-container ul li > a.evergreen-navigation-link {
  text-decoration: var(--evgNavigationsSecondaryLinkTextDecoration);
  text-decoration-color: var(--navigationsSecondaryTextDecorationColor);
  text-decoration-thickness: 1px;
  color: var(--navigationsSecondaryLinkColor);
}

.evergreen-secondary-navigation .evergreen-secondary-navigation-container ul li:hover > a.evergreen-navigation-link,
.evergreen-secondary-navigation .evergreen-secondary-navigation-container ul li:focus > a.evergreen-navigation-link,
.evergreen-secondary-navigation .evergreen-secondary-navigation-container ul li:focus-visible > a.evergreen-navigation-link {
  text-decoration: var(--evgNavigationsSecondaryLinkTextDecorationHover);
  text-decoration-color: var(--navigationsSecondaryTextDecorationHoverColor);
  color: var(--navigationsSecondaryLinkHoverColor);
}

.evergreen-secondary-navigation .evergreen-secondary-navigation-container ul li.selected > a.evergreen-navigation-link,
.evergreen-secondary-navigation .evergreen-secondary-navigation-container ul li.expanded > a.evergreen-navigation-link {
  text-decoration: var(--evgNavigationsSecondaryLinkTextDecorationFocus);
  text-decoration-color: var(--navigationsSecondaryTextDecorationFocusColor);
  color: var(--navigationsSecondaryLinkFocusColor);
}

/* CORPORATE NAVIGATION */
.evergreen-corporate-navigation {
  display: flex;
  flex-direction: row;
  column-gap: 32px;
}

/* Container */
.evergreen-corporate-navigation-container {
  display: flex;
  align-items: center;
  flex: 1;
}

.evergreen-corporate-navigation .evergreen-container.evergreen-container-content {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-start;
}
.evergreen-corporate-navigation .evergreen-container.evergreen-container-content .evergreen-navigation-list {
  justify-content: flex-start;
}
.evergreen-corporate-navigation .evergreen-container.evergreen-container-content.evergreen-container-content--center {
  justify-content: center;
}
.evergreen-corporate-navigation .evergreen-container.evergreen-container-content.evergreen-container-content--center .evergreen-navigation-list {
  justify-content: center;
}
.evergreen-corporate-navigation .evergreen-container.evergreen-container-content.evergreen-container-content--right {
  justify-content: flex-end;
}
.evergreen-corporate-navigation .evergreen-container.evergreen-container-content.evergreen-container-content--right .evergreen-navigation-list {
  justify-content: flex-end;
}

.evergreen-container.evergreen-container--outer.evergreen-corporate-navigation {
  margin: 0;
  padding-top: 16px;
  padding-bottom: 16px;
}

/* List */
.evergreen-corporate-navigation ul {
  justify-content: left;
  flex-grow: 1;
  display: flex;
  flex-wrap: wrap;
  column-gap: 16px;
  row-gap: 8px;
  padding-left: 0;
}

/* Link */
.evergreen-corporate-navigation ul li {
  position: relative;
  width: fit-content;
  list-style: none;
  display: inline-block;
}

.evergreen-corporate-navigation ul li > a {
  background: none;
  border: none;
  padding: 8px 0;
  min-width: fit-content;
  line-height: 1;
  font-size: 14px;
  display: block;
  text-transform: none;
  text-align: inherit;
  cursor: pointer;
}

.evergreen-corporate-navigation ul li > a.evergreen-navigation-link {
  font-family: var(--evgNavigationsMainLinkFontFamily);
  font-size: var(--evgNavigationsMainLinkFontSize);
  font-weight: var(--evgNavigationsMainLinkFontWeight);
  line-height: var(--evgNavigationsMainLinkLineHeight);
  font-style: var(--evgNavigationsMainLinkFontStyle);
  text-transform: var(--evgNavigationsMainLinkCapitalization);
}

.evergreen-corporate-navigation ul li > a.evergreen-navigation-link {
  text-decoration: var(--evgNavigationsMainLinkTextDecoration);
  text-decoration-color: var(--navigationsMainTextDecorationColor);
  text-decoration-thickness: 1px;
  color: var(--navigationsMainLinkColor);
}

.evergreen-corporate-navigation ul li > a.evergreen-navigation-link:hover {
  text-decoration: var(--evgNavigationsMainLinkTextDecorationHover);
  text-decoration-color: var(--navigationsMainTextDecorationHoverColor);
  color: var(--navigationsMainLinkHoverColor);
}

.evergreen-corporate-navigation ul li > a.evergreen-navigation-link:focus,
.evergreen-corporate-navigation ul li > a.evergreen-navigation-link:focus-visible {
  text-decoration: var(--evgNavigationsMainLinkTextDecorationFocus);
  text-decoration-color: var(--navigationsMainTextDecorationFocusColor);
  color: var(--navigationsMainLinkFocusColor);
}

/* CORPORATE NAVIGATION -- MOBILE */
@media only screen and (max-width: 1024px) {
  .evergreen-corporate-navigation-container {
    display: none;
  }
  .evergreen-primary-navigation-menu-container {
    transition: all 0.5s ease-in-out;
    padding: 24px;
    background: var(--navigationsMainMobileBackgroundColor);
  }
  .evergreen-layout--scroll .evergreen-primary-navigation-menu-container {
    padding: 12px 24px;
  }
}
/* Banner */
.evergreen-section.evergreen-section--banner {
  position: relative;
}

.evergreen-section.evergreen-section--breadcrumb {
  position: relative;
}

.evergreen-layout .evergreen-layout-header-wrapper {
  --staticBannerBackgroundColor: var(--evgBannersStaticBackgroundColor);
  --staticBannerHorizontalPadding: var(--evgBannersStaticHorizontalPadding);
}

.evergreen-layout .evergreen-layout-header {
  --staticBannerBackgroundImage: var(--evgBannersStaticBackgroundImageUrl);
  --staticBannerBackgroundImageMobile: var(--evgBannersStaticBackgroundImageMobileUrl);
  --staticBackgroundVideoTabletDisplay: var(--evgBannersStaticBackgroundVideoShowOnTablet);
  --staticBannerImagePosition: var(--evgBannersStaticBackgroundImagePosition);
  --staticBannerImageSizing: var(--evgBannersStaticBackgroundImageSizing);
  --staticBannerOverlayColor: var(--evgBannersStaticBackgroundOverlayColor);
  --staticBannerMinimumHeightSizeL: var(--evgBannersStaticMinimumHeightSizeL);
  --staticBannerMinimumHeightSizeM: var(--evgBannersStaticMinimumHeightSizeM);
  --staticBannerMinimumHeightSizeS: var(--evgBannersStaticMinimumHeightSizeS);
  --staticBannerBorderRadius: var(--evgBannersStaticBorderRadius);
}

.evergreen-layout .evergreen-layout-header-overlay .evergreen-layout-header-overlay-color,
.evergreen-layout .evergreen-section .evergreen-section-overlay--banner .evergreen-section-overlay-color {
  width: 100%;
  height: 100%;
  background-color: var(--staticBannerOverlayColor);
  position: relative;
}

.evergreen-layout .evergreen-layout-header--small-banner .evergreen-layout-header-overlay,
.evergreen-layout .evergreen-layout-header--full-banner .evergreen-section-overlay--banner {
  display: none;
}

.evergreen-layout .evergreen-layout-header--small-banner {
  min-height: 0;
}

.evergreen-layout .evergreen-layout-header-overlay,
.evergreen-layout .evergreen-section-overlay--banner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}

.evergreen-layout .evergreen-layout-header--small-banner .evergreen-section-overlay--banner {
  z-index: -1;
}

.evergreen-layout .evergreen-section evergreen-section--banner {
  background-color: var(--staticBannerBackgroundColor);
  z-index: -1;
}

.evergreen-layout .evergreen-layout-header--full-banner,
.evergreen-layout .evergreen-layout-header--small-banner .evergreen-section-overlay--banner {
  background-repeat: no-repeat;
  background-image: var(--staticBannerBackgroundImage);
  background-position: var(--staticBannerImagePosition);
  background-size: var(--staticBannerImageSizing);
}

.evergreen-layout .evergreen-layout-header--full-banner,
.evergreen-layout .evergreen-layout-header--small-banner .evergreen-section--banner {
  min-height: var(--staticBannerMinimumHeightSizeL);
  background-color: var(--staticBannerBackgroundColor);
  z-index: 3;
}

.evergreen-layout .evergreen-layout-header-video,
.evergreen-layout .evergreen-section--banner .evergreen-layout-banner-video {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  /* the following CSS centers the video in the header */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/** Responsive Desktop **/
@media (min-width: 1025px) {
  .evergreen-layout .evergreen-layout-header--small-banner .evergreen-section--banner {
    margin: var(--staticBannerHorizontalPadding);
    border-radius: var(--staticBannerBorderRadius);
    overflow: hidden;
  }
  .evergreen-layout .evergreen-layout-header--full-banner .evergreen-layout-header-video,
.evergreen-layout .evergreen-layout-header--small-banner .evergreen-section--banner .evergreen-layout-banner-video {
    display: block;
  }
}
/** Responsive Tablet **/
@media (min-width: 481px) and (max-width: 1024px) {
  .evergreen-layout .evergreen-layout-header--full-banner,
.evergreen-layout .evergreen-layout-header--small-banner .evergreen-section--banner {
    min-height: var(--staticBannerMinimumHeightSizeM);
  }
  .evergreen-layout .evergreen-layout-header--full-banner .evergreen-layout-header-video,
.evergreen-layout .evergreen-layout-header--small-banner .evergreen-section--banner .evergreen-layout-banner-video {
    display: var(--staticBackgroundVideoTabletDisplay);
    height: 100%;
    object-fit: cover;
  }
}
/** Responsive Mobile **/
@media (max-width: 480px) {
  .evergreen-layout .evergreen-layout-header--full-banner,
.evergreen-layout .evergreen-layout-header--small-banner .evergreen-section--banner {
    min-height: var(--staticBannerMinimumHeightSizeS);
  }
  .evergreen-layout .evergreen-layout-header--full-banner,
.evergreen-layout .evergreen-layout-header--small-banner .evergreen-section-overlay--banner {
    background-image: var(--staticBannerBackgroundImageMobile);
  }
} /* Slider */
.evergreen-slider-description a {
  --fontSize: var(--evgHyperlinkFontSizeL);
  --fontFamily: var(--evgHyperlinkFontFamily);
  --fontColor: var(--evgHyperlinkFontColor);
  --fontWeight: var(--evgHyperlinkFontWeight);
  --fontStyle: var(--evgHyperlinkFontStyle);
  --lineHeight: var(--evgHyperlinkFontLineHeight);
  --capitalization: var(--evgHyperlinkFontCapitalization);
  --textDecoration: var(--evgHyperlinkDecorationTextDecoration);
  --textDecorationColor: var(--evgHyperlinkDecorationTextDecorationColor);
  font-size: var(--fontSize);
  font-family: var(--fontFamily);
  font-style: var(--fontStyle);
  color: var(--fontColor);
  font-weight: var(--fontWeight);
  line-height: var(--lineHeight);
  text-transform: var(--capitalization);
  text-decoration: var(--textDecoration);
  text-decoration-color: var(--textDecorationColor);
  transition-property: color, text-decoration;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
}

.evergreen-slider-arrow {
  color: var(--evgHyperlinkFontColor);
}

.evergreen-slider-description a:not([class*=evergreen-button]):hover {
  --fontColor: var(--evgHyperlinkFontHoverColor);
  --textDecoration: var(--evgHyperlinkDecorationTextDecorationHover);
  --textDecorationColor: var(--evgHyperlinkDecorationTextDecorationHoverColor);
  font-size: var(--fontSize);
  font-family: var(--fontFamily);
  color: var(--fontColor);
  font-weight: var(--fontWeight);
  line-height: var(--lineHeight);
  text-transform: var(--capitalization);
  text-decoration: var(--textDecoration);
  text-decoration-color: var(--textDecorationColor);
}

.evergreen-slider-description a:not([class*=evergreen-button]):focus,
.evergreen-slider-description a:not([class*=evergreen-button]):focus-visible {
  --fontColor: var(--evgHyperlinkFontFocusColor);
  --textDecoration: var(--evgHyperlinkDecorationTextDecorationFocus);
  --textDecorationColor: var(--evgHyperlinkDecorationTextDecorationFocusColor);
  font-size: var(--fontSize);
  font-family: var(--fontFamily);
  color: var(--fontColor);
  font-weight: var(--fontWeight);
}

.evergreen-slider-bottom-controls {
  --borderColor: var(--evgPaginationBorderColor);
  --backgroundColor: var(--evgPaginationBackgroundColor);
  --backgroundActiveColor: var(--evgPaginationBackgroundActiveColor);
}

.evergreen-slider-bottom-controls .slick_autoplay-ctrl button:before {
  color: var(--backgroundColor);
  color: var(--backgroundActiveColor);
}

.evergreen-slider-bottom-controls .evergreen-slider-dots li button {
  background: var(--backgroundColor);
  border: 1px solid var(--borderColor);
}

.evergreen-slider-bottom-controls .evergreen-slider-dots .slick-active button {
  background: var(--backgroundActiveColor);
} /* Table */
.evergreen table,
.evergreen .evergreen-table {
  --fontFamily: var(--evgTableFontFamily);
  --headingFontSize: var(--evgTableFontSizeL);
  --headingFontColor: var(--evgTableFontColor);
  --headingFontWeight: var(--evgTableFontWeight);
  --headingLineHeight: var(--evgTableFontLineHeight);
  --headingCapitalization: var(--evgTableFontCapitalization);
  --headerBackgroundColor: var(--evgTableBackgroundColor);
  --categoryFontColor: var(--evgTableSecondaryFontAltColor);
  --categoryBackgroundColor: var(--evgTableBackgroundAltColor);
  --rowFontSize: var(--evgTableSecondaryFontSizeL);
  --rowFontColor: var(--evgTableSecondaryFontColor);
  --rowFontWeight: var(--evgTableSecondaryFontWeight);
  --rowCapitalization: var(--evgTableSecondaryFontCapitalization);
  --rowBackgroundColor: var(--evgTableSecondaryBackgroundColor);
  --rowAltBackgroundColor: var(--evgTableZebra);
  --border: var(--evgTableRowUnderline);
  --borderColor: var(--evgTableBorderColor);
  --borderRadius: var(--evgTableBorderRadius);
  --moduleItemCellPadding: var(--evgPaddingItemPadding);
}

.evergreen table tbody,
.evergreen table tbody tr,
.evergreen table tr,
.evergreen .evergreen-table tbody,
.evergreen .evergreen-table .evergreen-table-body,
.evergreen .evergreen-table tr,
.evergreen .evergreen-table .evergreen-table-row,
.evergreen .evergreen-table .evergreen-table-row th {
  font-size: var(--rowFontSize);
  font-family: var(--fontFamily);
  font-weight: var(--rowFontWeight);
  color: var(--rowFontColor);
  text-transform: var(--rowCapitalization);
  background: var(--rowBackgroundColor);
  border-bottom: var(--border);
  border-color: var(--borderColor);
}

.evergreen table tbody tr:nth-child(even),
.evergreen table tr:nth-child(even),
.evergreen .evergreen-table tbody tr:nth-child(even),
.evergreen .evergreen-table .evergreen-table-body tr:nth-child(even),
.evergreen .evergreen-table tr:nth-child(even),
.evergreen .evergreen-table .evergreen-table-row:nth-child(even) {
  background: var(--rowAltBackgroundColor);
}

.evergreen .evergreen-table tbody td.evergreen-table-category,
.evergreen .evergreen-table tbody th.evergreen-table-category,
.evergreen .evergreen-table .evergreen-table-category {
  color: var(--categoryFontColor);
  background: var(--categoryBackgroundColor);
}

.evergreen .evergreen-table thead,
.evergreen .evergreen-table .evergreen-table-header,
.evergreen .evergreen-table thead tr {
  --fontSize: var(--headingFontSize);
  --fontColor: var(--headingFontColor);
  --fontWeight: var(--headingFontWeight);
  --lineHeight: var(--headingLineHeight);
  --capitalization: var(--headingCapitalization);
  --backgroundColor: var(--headerBackgroundColor);
  font-size: var(--fontSize);
  font-family: var(--fontFamily);
  font-weight: var(--headingFontWeight);
  color: var(--headingFontColor);
  text-transform: var(--headingCapitalization);
  background: var(--headerBackgroundColor);
}

.evergreen .evergreen-table-arrow {
  --fontSize: var(--evgTableFontSizeL);
  --fontColor: var(--evgTableFontColor);
  --fontWeight: var(--evgTableFontWeight);
  --lineHeight: var(--evgTableFontLineHeight);
  font-size: var(--fontSize);
  color: var(--fontColor);
  font-weight: var(--fontWeight);
  line-height: var(--lineHeight);
}

.evergreen .evergreen-table thead tr th {
  font-size: var(--fontSize);
  font-family: var(--fontFamily);
  font-weight: var(--headingFontWeight);
  color: var(--headingFontColor);
  text-transform: var(--headingCapitalization);
}

.evergreen .evergreen-table tbody a,
.evergreen .evergreen-table tbody .evergreen-link {
  --fontFamily: var(--evgHyperlinkFontFamily);
  --fontColor: var(--evgHyperlinkFontColor);
  --fontWeight: var(--evgHyperlinkFontWeight);
  --fontStyle: var(--evgHyperlinkFontStyle);
  --lineHeight: var(--evgHyperlinkFontLineHeight);
  --capitalization: var(--evgHyperlinkFontCapitalization);
  --textDecoration: var(--evgHyperlinkDecorationTextDecoration);
  --textDecorationColor: var(--evgHyperlinkDecorationTextDecorationColor);
  font-family: var(--fontFamily);
  font-style: var(--fontStyle);
  color: var(--fontColor);
  font-weight: var(--fontWeight);
  line-height: var(--lineHeight);
  text-transform: var(--capitalization);
  text-decoration: var(--textDecoration);
  text-decoration-color: var(--textDecorationColor);
}

.evergreen .evergreen-table tbody a:hover,
.evergreen .evergreen-table tbody .evergreen-link:hover {
  --fontColor: var(--evgHyperlinkFontHoverColor);
  --textDecoration: var(--evgHyperlinkDecorationTextDecorationHover);
  --textDecorationColor: var(--evgHyperlinkDecorationTextDecorationHoverColor);
  color: var(--fontColor);
  text-decoration: var(--textDecoration);
  text-decoration-color: var(--textDecorationColor);
}

.evergreen .evergreen-table tbody a:focus,
.evergreen .evergreen-table tbody .evergreen-link:focus,
.evergreen .evergreen-table tbody a:focus-visible,
.evergreen .evergreen-table tbody .evergreen-link:focus-visible {
  --fontColor: var(--evgHyperlinkFontFocusColor);
  --textDecoration: var(--evgHyperlinkDecorationTextDecorationFocus);
  --textDecorationColor: var(--evgHyperlinkDecorationTextDecorationFocusColor);
  color: var(--fontColor);
  text-decoration: var(--textDecoration);
  text-decoration-color: var(--textDecorationColor);
}

/** Responsive Tablet **/
@media (min-width: 481px) and (max-width: 1024px) {
  .evergreen .evergreen-table tbody,
.evergreen .evergreen-table .evergreen-table-body,
.evergreen .evergreen-table tr {
    font-size: var(--evgTableSecondaryFontSizeM);
  }
  .evergreen .evergreen-table-arrow {
    font-size: var(--evgTableFontSizeM);
  }
  .evergreen .evergreen-table thead,
.evergreen .evergreen-table .evergreen-table-header,
.evergreen .evergreen-table thead tr,
.evergreen .evergreen-table thead tr th {
    font-size: var(--evgTableFontSizeM);
  }
}
/** Responsive Mobile **/
@media (max-width: 480px) {
  .evergreen table tbody,
.evergreen table tbody tr,
.evergreen .evergreen-table tbody,
.evergreen .evergreen-table .evergreen-table-body,
.evergreen .evergreen-table tr {
    --fontSize: var(--evgTableSecondaryFontSizeS);
    font-size: var(--fontSize);
  }
  .evergreen table thead,
.evergreen table thead tr,
.evergreen .evergreen-table thead,
.evergreen .evergreen-table .evergreen-table-header,
.evergreen .evergreen-table thead tr,
.evergreen .evergreen-table thead tr th {
    --fontSize: var(--evgTableFontSizeS);
    font-size: var(--fontSize);
  }
  .evergreen .evergreen-table-arrow {
    font-size: var(--evgTableFontSizeS);
  }
} /* Committee */
.evergreen .evergreen-committee-composition {
  --backgroundColor: var(--evgModuleBackgroundColor);
  --fontFamily: var(--evgTableFontFamily);
  --headingFontColor: var(--evgTableFontColor);
  --headingFontWeight: var(--evgTableFontWeight);
  --headingLineHeight: var(--evgTableFontLineHeight);
  --headingCapitalization: var(--evgTableFontCapitalization);
  --headerBackgroundColor: var(--evgTableBackgroundColor);
  --categoryFontColor: var(--evgTableSecondaryFontAltColor);
  --categoryBackgroundColor: var(--evgTableBackgroundAltColor);
  --cellFontColor: var(--evgTableSecondaryFontColor);
  --cellFontWeight: var(--evgTableSecondaryFontWeight);
  --cellCapitalization: var(--evgTableSecondaryFontCapitalization);
  --rowBackgroundColor: var(--evgTableSecondaryBackgroundColor);
  --rowAltBackgroundColor: var(--evgTableZebra);
  --border: var(--evgTableRowUnderline);
  --borderColor: var(--evgTableBorderColor);
  --borderRadius: var(--evgTableBorderRadius);
}

.evergreen .evergreen-committee-composition .evergreen-committee-composition-table {
  table-layout: fixed;
  width: 100%;
}

.evergreen .evergreen-committee-composition thead,
.evergreen .evergreen-committee-composition .evergreen-committee-composition-header,
.evergreen .evergreen-committee-composition thead tr {
  --fontSize: var(--headingFontSize);
  --fontColor: var(--headingFontColor);
  --fontWeight: var(--headingFontWeight);
  --lineHeight: var(--headingLineHeight);
  --capitalization: var(--headingCapitalization);
  --backgroundColor: var(--headerBackgroundColor);
  font-size: var(--fontSize);
  font-family: var(--fontFamily);
  font-weight: var(--headingFontWeight);
  color: var(--headingFontColor);
  text-transform: var(--headingCapitalization);
  background: var(--headerBackgroundColor);
}

.evergreen .evergreen-committee-composition tbody .evergreen-committee-composition-row,
.evergreen .evergreen-committee-composition tbody .evergreen-committee-composition-row {
  font-family: var(--fontFamily);
  font-size: var(--cellFontSize);
  font-weight: var(--cellFontWeight);
  color: var(--cellFontColor);
  text-transform: var(--cellCapitalization);
  background: var(--rowBackgroundColor);
  border-bottom: var(--border);
  border-color: var(--borderColor);
}

.evergreen .evergreen-committee-composition thead tr th,
.evergreen .evergreen-committee-composition .evergreen-committee-composition-header tr th,
.evergreen .evergreen-committee-composition tbody tr td,
.evergreen .evergreen-committee-composition .evergreen-committee-composition-body tr td {
  padding: 20px 15px;
  overflow-wrap: break-word;
  text-align: center;
}

.evergreen .evergreen-committee-composition thead tr th,
.evergreen .evergreen-committee-composition .evergreen-committee-composition-header tr th {
  font-size: var(--fontSize);
  font-family: var(--fontFamily);
  font-weight: var(--headingFontWeight);
  color: var(--headingFontColor);
  text-transform: var(--headingCapitalization);
}

.evergreen .evergreen-committee-composition tbody tr td,
.evergreen .evergreen-committee-composition tbody tr th,
.evergreen .evergreen-committee-composition .evergreen-committee-composition-body tr th,
.evergreen .evergreen-committee-composition .evergreen-committee-composition-body tr td {
  font-family: var(--fontFamily);
  font-size: var(--cellFontSize);
  font-weight: var(--cellFontWeight);
  color: var(--cellFontColor);
  text-transform: var(--cellCapitalization);
}

.evergreen-committee-composition-person-name-wrap,
.evergreen-committee-composition-committee-composition-name-wrap {
  display: flex;
  gap: 8px;
  align-items: center;
}

.evergreen .evergreen-committee-composition .committee-membership-options {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: left;
  align-items: center;
  margin-top: 15px;
  padding: 20px 15px;
  row-gap: 20px;
  column-gap: 30px;
}

.evergreen .evergreen-committee-composition .committee-membership-options li {
  display: flex;
  align-items: center;
  font-family: var(--fontFamily);
  font-size: var(--cellFontSize);
  font-weight: var(--cellFontWeight);
  color: var(--cellFontColor);
  text-transform: var(--cellCapitalization);
  list-style: none;
}

.evergreen .evergreen-committee-composition .committee-membership-options li .icon {
  font-size: var(--cellFontSize);
  font-color: var(--iconColor);
}

.evergreen .evergreen-committee-composition .committee-membership-options li .icon.member {
  --iconColor: var(--cellFontColor);
  --iconFilledColor: var(--evgModuleBackgroundColor);
}

.evergreen .evergreen-committee-composition .committee-membership-options li .icon.comittee-chair {
  --iconColor: var(--evgPrimaryColor);
  --iconFilledColor: var(--evgPrimaryColor);
}

.evergreen .evergreen-committee-composition .committee-membership-options li .icon.board-chair {
  --iconColor: var(--cellFontColor);
  --iconFilledColor: var(--cellFontColor);
}

.evergreen .evergreen-committee-composition .committee-membership-options li .icon.lead-independent-director {
  --iconColor: var(--cellFontColor);
  --iconFilledColor: var(--cellFontColor);
}

.evergreen .evergreen-committee-composition .committee-membership-options li .icon.independent-director {
  --iconColor: var(--cellFontColor);
  --iconFilledColor: var(--evgModuleBackgroundColor);
}

.evergreen .evergreen-committee-composition .committee-membership-options li .icon.financial-expert {
  --iconColor: var(--cellFontColor);
  --iconFilledColor: var(--evgModuleBackgroundColor);
}

/** Mobile style **/
.evergreen .evergreen-committee-composition .evergreen-committee-composition-mobile-accordion {
  display: none;
}

.committee-composition-icon-empty:before {
  content: " ";
}

.evergreen .evergreen-committee-composition .evergreen-committee-composition-mobile-accordion .evergreen-accordion {
  --fontFamily: var(--evgTableFontFamily);
  --headingFontSize: var(--evgTableFontSizeL);
  --headingFontColor: var(--evgTableFontColor);
  --headingFontActiveColor: var(--evgTableFontColor);
  --headingFontWeight: var(--evgTableFontWeight);
  --headingLineHeight: var(--evgTableFontLineHeight);
  --headingCapitalization: var(--evgTableFontCapitalization);
  --headerBackgroundColor: var(--evgTableBackgroundColor);
  background: none;
  border-bottom: none;
}

.evergreen .evergreen-committee-composition .evergreen-committee-composition-mobile-accordion .evergreen-accordion .evergreen-accordion-header .evergreen-committee-composition-name,
.evergreen .evergreen-committee-composition .evergreen-committee-composition-mobile-accordion .evergreen-accordion button .accordion-toggle-icon {
  font-size: var(--fontSize);
  font-family: var(--fontFamily);
  font-weight: var(--headingFontWeight);
  color: var(--headingFontColor);
  text-transform: var(--headingCapitalization);
}

.evergreen .evergreen-committee-composition .evergreen-committee-composition-mobile-accordion .evergreen-accordion .evergreen-accordion-header button.accordion-toggle {
  padding: 20px 15px;
  justify-content: space-between;
  gap: 8px;
}

.evergreen .evergreen-committee-composition .evergreen-committee-composition-mobile-accordion .evergreen-accordion .evergreen-accordion-content {
  background: none;
}

.evergreen .evergreen-committee-composition .evergreen-committee-composition-mobile-accordion .evergreen-accordion .evergreen-committee-composition-members-list {
  margin-bottom: 15px;
  background: var(--rowBackgroundColor);
}

.evergreen .evergreen-committee-composition .evergreen-committee-composition-mobile-accordion .evergreen-accordion:last-child .evergreen-committee-composition-members-list {
  margin-bottom: 0;
}

.evergreen .evergreen-committee-composition .evergreen-committee-composition-mobile-accordion .evergreen-committee-composition-member {
  font-family: var(--fontFamily);
  font-size: var(--cellFontSize);
  font-weight: var(--cellFontWeight);
  color: var(--cellFontColor);
  text-transform: var(--cellCapitalization);
  background: var(--rowBackgroundColor);
  display: flex;
  justify-content: space-between;
  padding: 15px;
  column-gap: 8px;
  overflow-wrap: anywhere;
}

.evergreen .evergreen-committee-composition .evergreen-committee-composition-mobile-accordion .evergreen-committee-composition-member:not(:last-child) {
  border-bottom: var(--border);
  border-color: var(--borderColor);
}

.evergreen .evergreen-committee-composition .evergreen-committee-composition-mobile-accordion .evergreen-accordion .evergreen-committee-composition-no-members {
  font-family: var(--fontFamily);
  font-size: var(--cellFontSize);
  font-weight: var(--cellFontWeight);
  color: var(--cellFontColor);
  background: var(--rowBackgroundColor);
  padding: 15px;
  text-align: center;
}

/** Responsive Desktop **/
@media (min-width: 1025px) {
  .evergreen .evergreen-committee-composition thead tr th,
.evergreen .evergreen-committee-composition .evergreen-committee-composition-header tr th {
    font-size: var(--evgTableSecondaryFontSizeL);
  }
  .evergreen .evergreen-committee-composition {
    --cellFontSize: var(--evgTableSecondaryFontSizeL);
  }
}
/** Responsive Tablet **/
@media (max-width: 1024px) {
  .evergreen .evergreen-committee-composition thead tr th,
.evergreen .evergreen-committee-composition .evergreen-committee-composition-header tr th,
.evergreen .evergreen-committee-composition tbody tr td,
.evergreen .evergreen-committee-composition .evergreen-committee-composition-body tr td {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .evergreen .evergreen-committee-composition .evergreen-committee-composition-table {
    display: none;
  }
  .evergreen .evergreen-committee-composition .evergreen-committee-composition-mobile-accordion {
    display: block;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .evergreen .evergreen-committee-composition thead tr th,
.evergreen .evergreen-committee-composition .evergreen-committee-composition-header tr th {
    font-size: var(--evgTableSecondaryFontSizeM);
  }
  .evergreen .evergreen-committee-composition {
    --cellFontSize: var(--evgTableSecondaryFontSizeM);
  }
  .evergreen .evergreen-committee-composition thead tr th,
.evergreen .evergreen-committee-composition .evergreen-committee-composition-header tr th,
.evergreen .evergreen-committee-composition tbody tr td,
.evergreen .evergreen-committee-composition .evergreen-committee-composition-body tr td {
    width: 100%;
  }
  .evergreen .evergreen-committee-composition tbody,
.evergreen .evergreen-committee-composition .evergreen-committee-composition-body,
.evergreen .evergreen-committee-composition tr {
    font-size: var(--evgTableSecondaryFontSizeM);
  }
  .evergreen .evergreen-committee-composition thead,
.evergreen .evergreen-committee-composition .evergreen-committee-composition-header,
.evergreen .evergreen-committee-composition thead tr,
.evergreen .evergreen-committee-composition thead tr th {
    font-size: var(--evgTableFontSizeM);
  }
}
/** Responsive Mobile **/
@media (max-width: 480px) {
  .evergreen .evergreen-committee-composition thead tr th,
.evergreen .evergreen-committee-composition .evergreen-committee-composition-header tr th {
    font-size: var(--evgTableSecondaryFontSizeS);
  }
  .evergreen .evergreen-committee-composition {
    --cellFontSize: var(--evgTableSecondaryFontSizeS);
  }
  .evergreen .evergreen-committee-composition table tbody,
.evergreen .evergreen-committee-composition table tbody tr,
.evergreen .evergreen-committee-composition tbody,
.evergreen .evergreen-committee-composition .evergreen-committee-composition-body,
.evergreen .evergreen-committee-composition tr {
    font-size: var(--evgTableSecondaryFontSizeS);
  }
  .evergreen .evergreen-committee-composition table thead,
.evergreen .evergreen-committee-composition table thead tr,
.evergreen .evergreen-committee-composition thead,
.evergreen .evergreen-committee-composition .evergreen-committee-composition-header,
.evergreen .evergreen-committee-composition thead tr,
.evergreen .evergreen-committee-composition thead tr th {
    font-size: var(--evgTableFontSizeS);
  }
}
@media (max-width: 320px) {
  .evergreen .evergreen-committee-composition .committee-membership-options {
    padding: 15px 15px;
    row-gap: 15px;
  }
}
.evergreen-committee-composition-table-container {
  border-radius: var(--borderRadius);
  overflow: hidden;
}

.evergreen-consent {
  user-select: none;
  /* Cookie Banner Styles */
  /* Floating Manage Preferences button */
  /* Preferences Pane */
}
.evergreen-consent .evergreen-consent-banner {
  background: var(--evgCookiesBannerBackgroundColor);
  color: var(--evgCookiesBannerDescriptionFontColor);
  font-family: var(--evgCookiesBannerDescriptionFontFamily);
  font-weight: var(--evgCookiesBannerDescriptionFontWeight);
  line-height: var(--evgCookiesBannerDescriptionFontLineHeight);
  text-transform: var(--evgCookiesBannerDescriptionFontCapitalization);
}
.evergreen-consent .evergreen-consent-banner-header {
  font-family: var(--evgCookiesBannerHeadingFontFamily);
  font-weight: var(--evgCookiesBannerHeadingFontWeight);
  line-height: var(--evgCookiesBannerHeadingFontLineHeight);
  color: var(--evgCookiesBannerHeadingFontColor);
  text-transform: var(--evgCookiesBannerHeadingFontCapitalization);
}
.evergreen-consent .evergreen-consent-banner-text a {
  color: var(--evgCookiesLinkColor);
  line-height: var(--evgCookiesLinkLineHeight);
  text-decoration: var(--evgCookiesLinkTextDecoration);
  text-decoration-color: var(--evgCookiesLinkTextDecorationColor);
}
.evergreen-consent .evergreen-consent-banner-text a:hover {
  color: var(--evgCookiesLinkHoverColor);
  text-decoration: var(--evgCookiesLinkTextDecorationHover);
  text-decoration-color: var(--evgCookiesLinkTextDecorationHoverColor);
}
.evergreen-consent .evergreen-consent-banner-text a:focus {
  color: var(--evgCookiesLinkFocusColor);
  text-decoration: var(--evgCookiesLinkTextDecorationFocus);
  text-decoration-color: var(--evgCookiesLinkTextDecorationFocusColor);
}
.evergreen-consent .evergreen-consent-banner-btn--close {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}
.evergreen-consent .evergreen-consent-banner-btn--close span {
  color: var(--evgCookiesBannerCloseButtonIconColor);
}
.evergreen-consent .evergreen-consent-banner-btn--accept {
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  font-family: var(--evgCookiesBannerAcceptButtonFontFamily);
  font-weight: var(--evgCookiesBannerAcceptButtonFontWeight);
  font-style: var(--evgCookiesBannerAcceptButtonFontStyle);
  line-height: var(--evgCookiesBannerAcceptButtonFontLineHeight);
  color: var(--evgCookiesBannerAcceptButtonFontColor);
  text-transform: var(--evgCookiesBannerAcceptButtonFontCapitalization);
  text-decoration: var(--evgCookiesBannerAcceptButtonDecorationTextDecoration);
  text-decoration-color: var(--evgCookiesBannerAcceptButtonDecorationTextDecorationColor);
  border-radius: var(--evgCookiesBannerAcceptButtonBorderRadius);
  border: 1px solid var(--evgCookiesBannerAcceptButtonBorderColor);
  background: var(--evgCookiesBannerAcceptButtonBackgroundColor);
  padding: var(--evgCookiesBannerAcceptButtonPaddingVerticalPadding) 20px;
}
.evergreen-consent .evergreen-consent-banner-btn--accept:hover {
  color: var(--evgCookiesBannerAcceptButtonFontHoverColor);
  text-decoration: var(--evgCookiesBannerAcceptButtonDecorationTextDecorationHover);
  text-decoration-color: var(--evgCookiesBannerAcceptButtonDecorationTextDecorationHoverColor);
  border-color: var(--evgCookiesBannerAcceptButtonBorderHoverColor);
  background: var(--evgCookiesBannerAcceptButtonBackgroundHoverColor);
}
.evergreen-consent .evergreen-consent-banner-btn--accept:focus {
  color: var(--evgCookiesBannerAcceptButtonFontFocusColor);
  text-decoration: var(--evgCookiesBannerAcceptButtonDecorationTextDecorationFocus);
  text-decoration-color: var(--evgCookiesBannerAcceptButtonDecorationTextDecorationFocusColor);
  border-color: var(--evgCookiesBannerAcceptButtonBorderFocusColor);
  background: var(--evgCookiesBannerAcceptButtonBackgroundFocusColor);
}
.evergreen-consent .evergreen-consent-banner-btn--reject {
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  font-family: var(--evgCookiesBannerRejectButtonFontFamily);
  font-weight: var(--evgCookiesBannerRejectButtonFontWeight);
  font-style: var(--evgCookiesBannerRejectButtonFontStyle);
  line-height: var(--evgCookiesBannerRejectButtonFontLineHeight);
  color: var(--evgCookiesBannerRejectButtonFontColor);
  text-transform: var(--evgCookiesBannerRejectButtonFontCapitalization);
  text-decoration: var(--evgCookiesBannerRejectButtonDecorationTextDecoration);
  text-decoration-color: var(--evgCookiesBannerRejectButtonDecorationTextDecorationColor);
  border-radius: var(--evgCookiesBannerRejectButtonBorderRadius);
  border: 1px solid var(--evgCookiesBannerRejectButtonBorderColor);
  background: var(--evgCookiesBannerRejectButtonBackgroundColor);
  padding: var(--evgCookiesBannerRejectButtonPaddingVerticalPadding) 20px;
}
.evergreen-consent .evergreen-consent-banner-btn--reject:hover {
  color: var(--evgCookiesBannerRejectButtonFontHoverColor);
  text-decoration: var(--evgCookiesBannerRejectButtonDecorationTextDecorationHover);
  text-decoration-color: var(--evgCookiesBannerRejectButtonDecorationTextDecorationHoverColor);
  border-color: var(--evgCookiesBannerRejectButtonBorderHoverColor);
  background: var(--evgCookiesBannerRejectButtonBackgroundHoverColor);
}
.evergreen-consent .evergreen-consent-banner-btn--reject:focus {
  color: var(--evgCookiesBannerRejectButtonFontFocusColor);
  text-decoration: var(--evgCookiesBannerRejectButtonDecorationTextDecorationFocus);
  text-decoration-color: var(--evgCookiesBannerRejectButtonDecorationTextDecorationFocusColor);
  border-color: var(--evgCookiesBannerRejectButtonBorderFocusColor);
  background: var(--evgCookiesBannerRejectButtonBackgroundFocusColor);
}
.evergreen-consent .evergreen-consent-banner-btn--preference {
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  font-family: var(--evgCookiesBannerPreferenceButtonFontFamily);
  font-weight: var(--evgCookiesBannerPreferenceButtonFontWeight);
  font-style: var(--evgCookiesBannerPreferenceButtonFontStyle);
  line-height: var(--evgCookiesBannerPreferenceButtonFontLineHeight);
  color: var(--evgCookiesBannerPreferenceButtonFontColor);
  text-transform: var(--evgCookiesBannerPreferenceButtonFontCapitalization);
  text-decoration: var(--evgCookiesBannerPreferenceButtonDecorationTextDecoration);
  text-decoration-color: var(--evgCookiesBannerPreferenceButtonDecorationTextDecorationColor);
  border-radius: var(--evgCookiesBannerPreferenceButtonBorderRadius);
  border: 1px solid var(--evgCookiesBannerPreferenceButtonBorderColor);
  background: var(--evgCookiesBannerPreferenceButtonBackgroundColor);
  padding: var(--evgCookiesBannerPreferenceButtonPaddingVerticalPadding) 20px;
}
.evergreen-consent .evergreen-consent-banner-btn--preference:hover {
  color: var(--evgCookiesBannerPreferenceButtonFontHoverColor);
  text-decoration: var(--evgCookiesBannerPreferenceButtonDecorationTextDecorationHover);
  text-decoration-color: var(--evgCookiesBannerPreferenceButtonDecorationTextDecorationHoverColor);
  border-color: var(--evgCookiesBannerPreferenceButtonBorderHoverColor);
  background: var(--evgCookiesBannerPreferenceButtonBackgroundHoverColor);
}
.evergreen-consent .evergreen-consent-banner-btn--preference:focus {
  color: var(--evgCookiesBannerPreferenceButtonFontFocusColor);
  text-decoration: var(--evgCookiesBannerPreferenceButtonDecorationTextDecorationFocus);
  text-decoration-color: var(--evgCookiesBannerPreferenceButtonDecorationTextDecorationFocusColor);
  border-color: var(--evgCookiesBannerPreferenceButtonBorderFocusColor);
  background: var(--evgCookiesBannerPreferenceButtonBackgroundFocusColor);
}
.evergreen-consent .evergreen-consent-manage-btn {
  font-family: var(--evgCookiesFloatingButtonFontFamily);
  font-weight: var(--evgCookiesFloatingButtonFontWeight);
  font-style: var(--evgCookiesFloatingButtonFontStyle);
  line-height: var(--evgCookiesFloatingButtonLineHeight);
  color: var(--evgCookiesFloatingButtonFontColor);
  cursor: pointer;
  text-transform: var(--evgCookiesFloatingButtonCapitalization);
  text-decoration: var(--evgCookiesFloatingButtonTextDecoration);
  text-decoration-color: var(--evgCookiesFloatingButtonTextDecorationColor);
  border-radius: var(--evgCookiesFloatingButtonBorderRadius) 0 0 var(--evgCookiesFloatingButtonBorderRadius);
  border-color: var(--evgCookiesFloatingButtonBorderColor);
  background: var(--evgCookiesFloatingButtonBackgroundColor);
  padding: 20px var(--evgCookiesFloatingButtonVerticalPadding);
}
.evergreen-consent .evergreen-consent-manage-btn:hover {
  color: var(--evgCookiesFloatingButtonFontHoverColor);
  text-decoration: var(--evgCookiesFloatingButtonTextDecorationHover);
  text-decoration-color: var(--evgCookiesFloatingButtonTextDecorationHoverColor);
  border-color: var(--evgCookiesFloatingButtonBorderHoverColor);
  background: var(--evgCookiesFloatingButtonBackgroundHoverColor);
}
.evergreen-consent .evergreen-consent-manage-btn:focus {
  color: var(--evgCookiesFloatingButtonFontFocusColor);
  text-decoration: var(--evgCookiesFloatingButtonTextDecorationFocus);
  text-decoration-color: var(--evgCookiesFloatingButtonTextDecorationFocusColor);
  border-color: var(--evgCookiesFloatingButtonBorderFocusColor);
  background: var(--evgCookiesFloatingButtonBackgroundFocusColor);
}
.evergreen-consent .evergreen-consent-preference {
  background: var(--evgCookiesPaneBackgroundColor);
  font-family: var(--evgCookiesPaneBodyFontFamily);
  font-weight: var(--evgCookiesPaneBodyFontWeight);
  text-transform: var(--evgCookiesPaneBodyFontCapitalization);
  color: var(--evgCookiesPaneBodyFontColor);
  line-height: var(--evgCookiesPaneBodyFontLineHeight);
  box-sizing: border-box;
}
.evergreen-consent .evergreen-consent-preference a {
  color: var(--evgCookiesLinkColor);
  line-height: var(--evgCookiesLinkLineHeight);
  text-decoration: var(--evgCookiesLinkTextDecoration);
  text-decoration-color: var(--evgCookiesLinkTextDecorationColor);
}
.evergreen-consent .evergreen-consent-preference a:hover {
  color: var(--evgCookiesLinkHoverColor);
  text-decoration: var(--evgCookiesLinkTextDecorationHover);
  text-decoration-color: var(--evgCookiesLinkTextDecorationHoverColor);
}
.evergreen-consent .evergreen-consent-preference a:focus {
  color: var(--evgCookiesLinkFocusColor);
  text-decoration: var(--evgCookiesLinkTextDecorationFocus);
  text-decoration-color: var(--evgCookiesLinkTextDecorationFocusColor);
}
.evergreen-consent .evergreen-consent-preference .evergreen-consent-preference-header {
  font-family: var(--evgCookiesPaneHeadingFontFamily);
  font-weight: var(--evgCookiesPaneHeadingFontWeight);
  text-transform: var(--evgCookiesPaneHeadingFontCapitalization);
  color: var(--evgCookiesPaneHeadingFontColor);
  line-height: var(--evgCookiesPaneHeadingFontLineHeight);
}
.evergreen-consent .evergreen-consent-preference .evergreen-consent-subheader {
  font-family: var(--evgCookiesPaneSubheadingFontFamily);
  font-weight: var(--evgCookiesPaneSubheadingFontWeight);
  text-transform: var(--evgCookiesPaneSubheadingFontCapitalization);
  color: var(--evgCookiesPaneSubheadingFontColor);
  line-height: var(--evgCookiesPaneSubheadingFontLineHeight);
}
.evergreen-consent .evergreen-consent-preference button.evergreen-consent-preference-btn.evergreen-consent-preference-btn--close {
  font-family: var(--evgCookiesPaneCloseButtonFontFamily);
  color: var(--evgCookiesPaneCloseButtonFontColor);
  font-weight: var(--evgCookiesPaneCloseButtonFontWeight);
  font-style: var(--evgCookiesPaneCloseButtonFontStyle);
  line-height: var(--evgCookiesPaneCloseButtonLineHeight);
  text-transform: var(--evgCookiesPaneCloseButtonFontCapitalization);
  text-decoration: var(--evgCookiesPaneCloseButtonDecorationTextDecoration);
  text-decoration-color: var(--evgCookiesPaneCloseButtonDecorationTextDecorationColor);
  border-radius: var(--evgCookiesPaneCloseButtonBorderRadius);
  border: 1px solid var(--evgCookiesPaneCloseButtonBorderColor);
  background: var(--evgCookiesPaneCloseButtonBackgroundColor);
  padding: var(--evgCookiesPaneCloseButtonPaddingVerticalPadding) 20px;
  cursor: pointer;
}
.evergreen-consent .evergreen-consent-preference button.evergreen-consent-preference-btn.evergreen-consent-preference-btn--close:hover {
  color: var(--evgCookiesPaneCloseButtonFontHoverColor);
  text-decoration: var(--evgCookiesPaneCloseButtonDecorationTextDecorationHover);
  text-decoration-color: var(--evgCookiesPaneCloseButtonDecorationTextDecorationHoverColor);
  border-color: var(--evgCookiesPaneCloseButtonBorderHoverColor);
  background: var(--evgCookiesPaneCloseButtonBackgroundHoverColor);
}
.evergreen-consent .evergreen-consent-preference button.evergreen-consent-preference-btn.evergreen-consent-preference-btn--close:focus {
  color: var(--evgCookiesPaneCloseButtonFontFocusColor);
  text-decoration: var(--evgCookiesPaneCloseButtonDecorationTextDecorationFocus);
  text-decoration-color: var(--evgCookiesPaneCloseButtonDecorationTextDecorationFocusColor);
  border-color: var(--evgCookiesPaneCloseButtonBorderFocusColor);
  background: var(--evgCookiesPaneCloseButtonBackgroundFocusColor);
}
.evergreen-consent .evergreen-consent-preference .evergreen-consent-optional-action-btns .evergreen-consent-optional-btn--reject {
  font-family: var(--evgCookiesBannerRejectButtonFontFamily);
  font-weight: var(--evgCookiesBannerRejectButtonFontWeight);
  font-style: var(--evgCookiesBannerRejectButtonFontStyle);
  line-height: var(--evgCookiesBannerRejectButtonFontLineHeight);
  color: var(--evgCookiesBannerRejectButtonFontColor);
  text-transform: var(--evgCookiesBannerRejectButtonFontCapitalization);
  text-decoration: var(--evgCookiesBannerRejectButtonDecorationTextDecoration);
  text-decoration-color: var(--evgCookiesBannerRejectButtonDecorationTextDecorationColor);
  border-radius: var(--evgCookiesBannerRejectButtonBorderRadius);
  border: 1px solid var(--evgCookiesBannerRejectButtonBorderColor);
  background: var(--evgCookiesBannerRejectButtonBackgroundColor);
  padding: var(--evgCookiesBannerRejectButtonPaddingVerticalPadding) 20px;
  cursor: pointer;
}
.evergreen-consent .evergreen-consent-preference .evergreen-consent-optional-action-btns .evergreen-consent-optional-btn--accept {
  font-family: var(--evgCookiesBannerAcceptButtonFontFamily);
  font-weight: var(--evgCookiesBannerAcceptButtonFontWeight);
  font-style: var(--evgCookiesBannerAcceptButtonFontStyle);
  line-height: var(--evgCookiesBannerAcceptButtonFontLineHeight);
  color: var(--evgCookiesBannerAcceptButtonFontColor);
  text-transform: var(--evgCookiesBannerAcceptButtonFontCapitalization);
  text-decoration: var(--evgCookiesBannerAcceptButtonDecorationTextDecoration);
  text-decoration-color: var(--evgCookiesBannerAcceptButtonDecorationTextDecorationColor);
  border-radius: var(--evgCookiesBannerAcceptButtonBorderRadius);
  border: 1px solid var(--evgCookiesBannerAcceptButtonBorderColor);
  background: var(--evgCookiesBannerAcceptButtonBackgroundColor);
  padding: var(--evgCookiesBannerAcceptButtonPaddingVerticalPadding) 20px;
  cursor: pointer;
}
.evergreen-consent .evergreen-consent-preference .evergreen-consent-optional-action-btns .evergreen-consent-optional-btn--accept:hover {
  color: var(--evgCookiesBannerAcceptButtonFontHoverColor);
  text-decoration: var(--evgCookiesBannerAcceptButtonDecorationTextDecorationHover);
  text-decoration-color: var(--evgCookiesBannerAcceptButtonDecorationTextDecorationHoverColor);
  border-color: var(--evgCookiesBannerAcceptButtonBorderHoverColor);
  background: var(--evgCookiesBannerAcceptButtonBackgroundHoverColor);
}
.evergreen-consent .evergreen-consent-preference .evergreen-consent-optional-action-btns .evergreen-consent-optional-btn--accept:focus {
  color: var(--evgCookiesBannerAcceptButtonFontFocusColor);
  text-decoration: var(--evgCookiesBannerAcceptButtonDecorationTextDecorationFocus);
  text-decoration-color: var(--evgCookiesBannerAcceptButtonDecorationTextDecorationFocusColor);
  border-color: var(--evgCookiesBannerAcceptButtonBorderFocusColor);
  background: var(--evgCookiesBannerAcceptButtonBackgroundFocusColor);
}
.evergreen-consent .evergreen-consent-preference .evergreen-consent-optional-action-btns .evergreen-consent-optional-btn--reject:hover {
  color: var(--evgCookiesBannerRejectButtonFontHoverColor);
  text-decoration: var(--evgCookiesBannerRejectButtonDecorationTextDecorationHover);
  text-decoration-color: var(--evgCookiesBannerRejectButtonDecorationTextDecorationHoverColor);
  border-color: var(--evgCookiesBannerRejectButtonBorderHoverColor);
  background: var(--evgCookiesBannerRejectButtonBackgroundHoverColor);
}
.evergreen-consent .evergreen-consent-preference .evergreen-consent-optional-action-btns .evergreen-consent-optional-btn--reject:focus {
  color: var(--evgCookiesBannerRejectButtonFontFocusColor);
  text-decoration: var(--evgCookiesBannerRejectButtonDecorationTextDecorationFocus);
  text-decoration-color: var(--evgCookiesBannerRejectButtonDecorationTextDecorationFocusColor);
  border-color: var(--evgCookiesBannerRejectButtonBorderFocusColor);
  background: var(--evgCookiesBannerRejectButtonBackgroundFocusColor);
}
.evergreen-consent .evergreen-consent-preference .evergreen-consent-necessary {
  border-bottom: 1px solid var(--evgCookiesPaneLineSeparatorColor);
}
.evergreen-consent .evergreen-consent-preference .evergreen-consent-necessary .evergreen-consent-necessary-status {
  color: var(--evgCookiesPaneAlwaysActiveColor);
}
.evergreen-consent .evergreen-consent-preference .evergreen-consent-non-essential-opt-out {
  background: var(--evgCookiesPaneWarningBackgroundColor);
  border-color: var(--evgCookiesPaneWarningBorderColor);
}
.evergreen-consent .evergreen-consent-preference .evergreen-consent-non-essential-opt-out .evergreen-icon-warning-fill {
  color: var(--evgCookiesPaneWarningIconColor);
}
.evergreen-consent .evergreen-consent-preference .evergreen-consent-optional .evergreen-consent-optional-status {
  color: var(--evgCookiesPaneAllRejectedColor);
}
.evergreen-consent .evergreen-consent-preference .evergreen-consent-optional .evergreen-consent-optional-status--accept-all {
  color: var(--evgCookiesPaneAllAcceptedColor);
}
.evergreen-consent .evergreen-consent-preference .evergreen-consent-optional .evergreen-consent-optional-status--accept-partial {
  color: var(--evgCookiesPaneSomeAcceptedColor);
}
.evergreen-consent .evergreen-consent-preference .evergreen-consent-non-essential-switch-checkbox {
  clip: initial;
}
.evergreen-consent .evergreen-consent-preference .evergreen-consent-non-essential-switch-container--on .evergreen-consent-non-essential-switch-checkbox[id*=switch-checkbox][type=checkbox]:checked + .evergreen-consent-non-essential-switch-knob::before {
  background: var(--evgCookiesPaneSwitchOnBackgroundColor);
}
.evergreen-consent .evergreen-consent-preference .evergreen-consent-non-essential-switch-container--on .evergreen-consent-non-essential-switch-label {
  color: var(--evgCookiesPaneSwitchOnTextColor);
}
.evergreen-consent .evergreen-consent-preference .evergreen-consent-non-essential-switch-container--off .evergreen-consent-non-essential-switch-checkbox[id*=switch-checkbox][type=checkbox]:not(checked) + .evergreen-consent-non-essential-switch-knob::before {
  background: var(--evgCookiesPaneSwitchOffBackgroundColor);
}
.evergreen-consent .evergreen-consent-preference .evergreen-consent-non-essential-switch-container--off .evergreen-consent-non-essential-switch-label {
  color: var(--evgCookiesPaneSwitchOffTextColor);
}

/** Responsive Desktop **/
@media (min-width: 1025px) {
  .evergreen-consent .evergreen-consent-manage-btn {
    font-size: var(--evgCookiesFloatingButtonFontSizeL);
  }
  .evergreen-consent .evergreen-consent-banner {
    font-size: var(--evgCookiesBannerDescriptionFontSizeL);
  }
  .evergreen-consent .evergreen-consent-banner-header {
    font-size: var(--evgCookiesBannerHeadingFontSizeL);
  }
  .evergreen-consent .evergreen-consent-banner-text a {
    font-size: var(--evgCookiesLinkFontSizeL);
  }
  .evergreen-consent .evergreen-consent-banner-btn--accept {
    font-size: var(--evgCookiesBannerAcceptButtonFontSizeL);
  }
  .evergreen-consent .evergreen-consent-banner-btn--reject {
    font-size: var(--evgCookiesBannerRejectButtonFontSizeL);
  }
  .evergreen-consent .evergreen-consent-banner-btn--preference {
    font-size: var(--evgCookiesBannerPreferenceButtonFontSizeL);
  }
  .evergreen-consent .evergreen-consent-preference {
    font-size: var(--evgCookiesPaneBodyFontSizeL);
  }
  .evergreen-consent .evergreen-consent-preference a {
    font-size: var(--evgCookiesLinkFontSizeL);
  }
  .evergreen-consent .evergreen-consent-preference .evergreen-consent-preference-header {
    font-size: var(--evgCookiesPaneHeadingFontSizeL);
  }
  .evergreen-consent .evergreen-consent-preference .evergreen-consent-subheader {
    font-size: var(--evgCookiesPaneSubheadingFontSizeL);
  }
  .evergreen-consent .evergreen-consent-preference button.evergreen-consent-preference-btn.evergreen-consent-preference-btn--close {
    font-size: var(--evgCookiesPaneCloseButtonFontSizeL);
  }
  .evergreen-consent .evergreen-consent-preference .evergreen-consent-optional-action-btns .evergreen-consent-optional-btn--reject {
    font-size: var(--evgCookiesBannerRejectButtonFontSizeL);
  }
  .evergreen-consent .evergreen-consent-preference .evergreen-consent-optional-action-btns .evergreen-consent-optional-btn--accept {
    font-size: var(--evgCookiesBannerAcceptButtonFontSizeL);
  }
}
/** Responsive Tablet **/
@media (max-width: 1024px) {
  .evergreen-consent .evergreen-consent-manage-btn {
    font-size: var(--evgCookiesFloatingButtonFontSizeM);
  }
  .evergreen-consent .evergreen-consent-banner {
    font-size: var(--evgCookiesBannerDescriptionFontSizeM);
  }
  .evergreen-consent .evergreen-consent-banner-header {
    font-size: var(--evgCookiesBannerHeadingFontSizeM);
  }
  .evergreen-consent .evergreen-consent-banner-text a {
    font-size: var(--evgCookiesLinkFontSizeM);
  }
  .evergreen-consent .evergreen-consent-banner-btn--accept {
    font-size: var(--evgCookiesBannerAcceptButtonFontSizeM);
  }
  .evergreen-consent .evergreen-consent-banner-btn--reject {
    font-size: var(--evgCookiesBannerRejectButtonFontSizeM);
  }
  .evergreen-consent .evergreen-consent-banner-btn--preference {
    font-size: var(--evgCookiesBannerPreferenceButtonFontSizeM);
  }
  .evergreen-consent .evergreen-consent-preference {
    font-size: var(--evgCookiesPaneBodyFontSizeM);
  }
  .evergreen-consent .evergreen-consent-preference a {
    font-size: var(--evgCookiesLinkFontSizeM);
  }
  .evergreen-consent .evergreen-consent-preference .evergreen-consent-preference-header {
    font-size: var(--evgCookiesPaneHeadingFontSizeM);
  }
  .evergreen-consent .evergreen-consent-preference .evergreen-consent-subheader {
    font-size: var(--evgCookiesPaneSubheadingFontSizeM);
  }
  .evergreen-consent .evergreen-consent-preference button.evergreen-consent-preference-btn.evergreen-consent-preference-btn--close {
    font-size: var(--evgCookiesPaneCloseButtonFontSizeM);
  }
  .evergreen-consent .evergreen-consent-preference .evergreen-consent-optional-action-btns .evergreen-consent-optional-btn--reject {
    font-size: var(--evgCookiesBannerRejectButtonFontSizeM);
  }
  .evergreen-consent .evergreen-consent-preference .evergreen-consent-optional-action-btns .evergreen-consent-optional-btn--accept {
    font-size: var(--evgCookiesBannerAcceptButtonFontSizeM);
  }
}
/** Responsive Mobile **/
@media (max-width: 480px) {
  .evergreen-consent .evergreen-consent-manage-btn {
    font-size: var(--evgCookiesFloatingButtonFontSizeS);
  }
  .evergreen-consent .evergreen-consent-banner {
    font-size: var(--evgCookiesBannerDescriptionFontSizeS);
  }
  .evergreen-consent .evergreen-consent-banner-header {
    font-size: var(--evgCookiesBannerHeadingFontSizeS);
  }
  .evergreen-consent .evergreen-consent-banner-text a {
    font-size: var(--evgCookiesLinkFontSizeS);
  }
  .evergreen-consent .evergreen-consent-banner-btn--accept {
    font-size: var(--evgCookiesBannerAcceptButtonFontSizeS);
  }
  .evergreen-consent .evergreen-consent-banner-btn--reject {
    font-size: var(--evgCookiesBannerRejectButtonFontSizeS);
  }
  .evergreen-consent .evergreen-consent-banner-btn--preference {
    font-size: var(--evgCookiesBannerPreferenceButtonFontSizeS);
  }
  .evergreen-consent .evergreen-consent-preference {
    font-size: var(--evgCookiesPaneBodyFontSizeS);
  }
  .evergreen-consent .evergreen-consent-preference a {
    font-size: var(--evgCookiesLinkFontSizeS);
  }
  .evergreen-consent .evergreen-consent-preference .evergreen-consent-preference-header {
    font-size: var(--evgCookiesPaneHeadingFontSizeS);
  }
  .evergreen-consent .evergreen-consent-preference .evergreen-consent-subheader {
    font-size: var(--evgCookiesPaneSubheadingFontSizeS);
  }
  .evergreen-consent .evergreen-consent-preference button.evergreen-consent-preference-btn.evergreen-consent-preference-btn--close {
    font-size: var(--evgCookiesPaneCloseButtonFontSizeS);
  }
  .evergreen-consent .evergreen-consent-preference .evergreen-consent-optional-action-btns .evergreen-consent-optional-btn--reject {
    font-size: var(--evgCookiesBannerRejectButtonFontSizeS);
  }
  .evergreen-consent .evergreen-consent-preference .evergreen-consent-optional-action-btns .evergreen-consent-optional-btn--accept {
    font-size: var(--evgCookiesBannerAcceptButtonFontSizeS);
  }
} /* Stock Summary */
.evergreen-stock-summary .evergreen-stock-summary-layout {
  --fontSize: var(--evgBodyFontSizeL);
  --fontFamily: var(--evgBodyFontFamily);
  --fontColor: var(--evgBodyFontColor);
  --fontWeight: var(--evgBodyFontWeight);
  --lineHeight: var(--evgBodyLineHeight);
  --capitalization: var(--evgBodyCapitalization);
  font-size: var(--fontSize);
  font-family: var(--fontFamily);
  color: var(--fontColor);
  font-weight: var(--fontWeight);
  line-height: var(--lineHeight);
  text-transform: var(--capitalization);
}

.evergreen-stock-summary .evergreen-stock-summary-layout .evergreen-stock-summary--delay,
.evergreen-stock-summary .evergreen-stock-summary-layout .evergreen-stock-summary--date-time-wrap {
  --fontSize: var(--evgCaptionFontSizeL);
  --fontFamily: var(--evgCaptionFontFamily);
  --fontColor: var(--evgCaptionFontColor);
  --fontWeight: var(--evgCaptionFontWeight);
  --lineHeight: var(--evgCaptionLineHeight);
  --capitalization: var(--evgCaptionCapitalization);
  font-size: var(--fontSize);
  font-family: var(--fontFamily);
  color: var(--fontColor);
  font-weight: var(--fontWeight);
  line-height: var(--lineHeight);
  text-transform: var(--capitalization);
}

.evergreen-stock-summary .evergreen-stock-summary-layout .evergreen-stock-summary--delay {
  text-transform: lowercase;
}

.evergreen-stock-summary .evergreen-stock-summary-layout {
  text-align: center;
}

.evergreen-stock-summary .evergreen-stock-summary-layout .evergreen-stock-summary--divider {
  display: block;
  width: 1px;
  margin: 4px 8px;
}

.evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--align-center {
  margin: 0 auto;
}

.evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--align-left {
  margin: 0;
}

.evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--align-right {
  margin: 0 0 0 auto;
}

/** Basic Layout **/
.evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--basic {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 32px;
  width: max-content;
}

.evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--basic .evergreen-stock-summary--ticker,
.evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--basic .evergreen-stock-summary--price {
  margin-bottom: 8px;
}

.evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--basic .evergreen-stock-summary--delay {
  margin-top: 16px;
}

.evergreen-stock-summary .evergreen-stock-summary-layout .evergreen-stock-summary--date-time-wrap {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

/** Details Layout **/
.evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--details {
  display: flex;
  flex-direction: column;
  padding: 16px;
  width: max-content;
}

.evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--details .evergreen-stock-summary-price-wrap {
  display: flex;
  flex-direction: row;
  padding: 8px 0;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--evgModuleItemUnderlineColor);
  border-bottom: 1px solid var(--evgModuleItemUnderlineColor);
}

.evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--details .evergreen-stock-summary--volume {
  padding: 4px 0;
  border-bottom: 1px solid var(--evgModuleItemUnderlineColor);
}

.evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--details .evergreen-stock-summary--delay-date-wrap {
  display: flex;
  flex-direction: row;
  padding: 4px 0;
  gap: 0;
  justify-content: center;
}

.evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--details .evergreen-stock-summary--date-time-wrap {
  display: flex;
  justify-content: center;
}

/** Announcement Layout **/
.evergreen-layout.evergreen-layout--home .evergreen-pane.evergreen-pane--announcement .evergreen-stock-summary,
.evergreen-layout.evergreen-layout--subpage .evergreen-pane.evergreen-pane--announcement .evergreen-stock-summary {
  position: relative;
  top: 0;
  padding: 0;
}

.evergreen-layout.evergreen-layout--home.evergreen-layout--scroll .evergreen-pane.evergreen-pane--announcement .evergreen-stock-summary,
.evergreen-layout.evergreen-layout--subpage.evergreen-layout--scroll .evergreen-pane.evergreen-pane--announcement .evergreen-stock-summary {
  transition: 0.3s ease-in-out;
}

.evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--announcement {
  display: flex;
  flex-direction: row;
  gap: 16px;
  max-width: 1220px;
  align-items: center;
  justify-content: flex-end;
}

.evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--announcement .evergreen-stock-summary--date-time-wrap {
  display: flex;
  flex-direction: row;
  column-gap: 16px;
  max-width: 1220px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  row-gap: 4px;
}

.evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--announcement .evergreen-stock-summary--divider {
  display: none;
}

/** Announcement (Premium) Layout **/
.evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--announcement-premium {
  display: flex;
  flex-direction: row;
  gap: 16px;
  max-width: 1220px;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--announcement-premium .evergreen-stock-summary--stock-data-wrap {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}

.evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--announcement-premium .evergreen-stock-summary--delay-date-wrap {
  display: flex;
  flex-direction: row;
  column-gap: 1ch;
}

.evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--announcement-premium .evergreen-stock-summary--delay-date-wrap * {
  max-width: fit-content;
  flex: 1;
}

.evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--announcement-premium .evergreen-stock-summary--date-time-wrap {
  display: flex;
  flex-direction: row;
  column-gap: 1ch;
  max-width: 1220px;
  align-items: center;
  justify-content: center;
}

.evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--announcement-premium .evergreen-stock-summary--update-label:before {
  content: "•";
  margin-right: 1ch;
}

.evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--announcement-premium .evergreen-stock-summary--separator {
  width: 4px;
  align-self: stretch;
  border-radius: 4px;
  background: var(--evgModuleItemUnderlineColor);
}

/** Responsive Desktop **/
@media (min-width: 1025px) {
  .evergreen-stock-summary .evergreen-stock-summary-layout {
    font-size: var(--evgBodyFontSizeL);
  }
  .evergreen-stock-summary .evergreen-stock-summary-layout .evergreen-stock-summary--delay,
.evergreen-stock-summary .evergreen-stock-summary-layout .evergreen-stock-summary--date-time-wrap {
    --cellFontSize: var(--evgCaptionFontSizeL);
  }
}
/** Responsive Tablet **/
@media (min-width: 481px) and (max-width: 1024px) {
  .evergreen-stock-summary .evergreen-stock-summary-layout {
    font-size: var(--evgBodyFontSizeM);
  }
  .evergreen-stock-summary .evergreen-stock-summary-layout .evergreen-stock-summary--delay,
.evergreen-stock-summary .evergreen-stock-summary-layout .evergreen-stock-summary--date-time-wrap {
    --cellFontSize: var(--evgCaptionFontSizeM);
  }
  /** Basic Layout responsive **/
  .evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--basic {
    display: grid;
    grid-template-columns: max-content auto;
    grid-template-rows: auto auto auto;
    grid-column-gap: 32px;
    grid-row-gap: 0px;
    grid-template-areas: "ticker change" "price delay" "price date";
    width: max-content;
    margin: 0 auto;
    padding: 16px 0;
  }
  .evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--basic .evergreen-stock-summary--ticker {
    grid-area: ticker;
    margin-bottom: 8px;
  }
  .evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--basic .evergreen-stock-summary--price {
    grid-area: price;
    margin: 0;
  }
  .evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--basic .evergreen-stock-summary--change {
    grid-area: change;
    margin-bottom: 4px;
  }
  .evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--basic .evergreen-stock-summary--delay {
    grid-area: delay;
    margin: 0px 0px 4px;
  }
  .evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--basic .evergreen-stock-summary--date-time-wrap {
    grid-area: date;
    margin-bottom: 0px;
  }
  .evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--basic .evergreen-stock-summary--change,
.evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--basic .evergreen-stock-summary--delay,
.evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--basic .evergreen-stock-summary--date-time-wrap {
    text-align: left;
  }
}
@media (max-width: 1024px) {
  /** Announcement (Premium) Layout **/
  .evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--announcement-premium {
    flex-direction: column;
  }
  .evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--announcement-premium > .evergreen-stock-summary--separator {
    display: none;
  }
}
@media (max-width: 768px) {
  /** Announcement (Premium) Layout **/
  .evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--announcement-premium {
    collumn-gap: 12px;
  }
}
/** Responsive Mobile **/
@media (max-width: 480px) {
  .evergreen-stock-summary .evergreen-stock-summary-layout {
    font-size: var(--evgBodyFontSizeS);
  }
  .evergreen-stock-summary .evergreen-stock-summary-layout .evergreen-stock-summary--delay,
.evergreen-stock-summary .evergreen-stock-summary-layout .evergreen-stock-summary--date-time-wrap {
    --cellFontSize: var(--evgCaptionFontSizeS);
  }
  /** Basic Layout responsive **/
  .evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--basic {
    padding: 16px;
  }
  .evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--basic .evergreen-stock-summary--ticker,
.evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--basic .evergreen-stock-summary--price {
    margin-bottom: 0;
  }
  .evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--basic .evergreen-stock-summary--delay {
    margin-top: 8px;
  }
  /** Details Layout responsive **/
  .evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--details .evergreen-stock-summary-price-wrap {
    gap: 16px;
  }
  .evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--details .evergreen-stock-summary--delay-date-wrap {
    padding: 4px 0;
    gap: 0;
  }
  .evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--details .evergreen-stock-summary--date-time-wrap {
    border: none;
    padding: 4px 0;
  }
  /** Details Layout **/
  .evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--details {
    padding: 16px;
  }
  .evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--details .evergreen-stock-summary-price-wrap {
    gap: 16px;
  }
  .evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--details .evergreen-stock-summary--delay-date-wrap {
    display: flex;
    flex-direction: column;
    padding: 0;
  }
  .evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--details .evergreen-stock-summary--delay {
    padding: 4px 0;
    border-bottom: 1px solid var(--evgModuleItemUnderlineColor);
  }
  .evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--details .evergreen-stock-summary--date-time-wrap {
    padding: 4px 0;
  }
  .evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--details .evergreen-stock-summary--delay-date-wrap .evergreen-stock-summary--divider {
    display: none;
  }
  .evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--details .evergreen-stock-summary--date-time-wrap .evergreen-stock-summary--divider {
    display: block;
  }
  /** Announcement Layout **/
  .evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--announcement {
    flex-wrap: wrap;
    row-gap: 4px;
    justify-content: center;
  }
  .evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--announcement .evergreen-stock-summary--date-time-wrap {
    column-gap: 0;
    align-items: stretch;
  }
  .evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--announcement .evergreen-stock-summary--update-label {
    display: none;
  }
  .evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--announcement .evergreen-stock-summary--date-time-wrap .evergreen-stock-summary--divider {
    display: block;
  }
  /** Announcement (Premium) Layout **/
  .evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--announcement-premium .evergreen-stock-summary--delay-date-wrap {
    flex-wrap: wrap;
    justify-content: center;
    white-space: nowrap;
  }
  .evergreen-stock-summary .evergreen-stock-summary-layout.evergreen-stock-summary-layout--announcement-premium .evergreen-stock-summary--date-time-wrap {
    white-space: nowrap;
  }
} /* News */
.evergreen.evergreen-news {
  padding: 50px 0;
}

.evergreen-item.evergreen-news-item.evergreen-item-container .evergreen-news-item-wrap .evergreen-news-item-headline-wrap {
  grid-area: headline;
}
.evergreen-item.evergreen-news-item.evergreen-item-container .evergreen-news-item-wrap .evergreen-news-attachments {
  grid-area: downlaod;
  margin: 0;
}
.evergreen-item.evergreen-news-item.evergreen-item-container .evergreen-news-item-wrap .evergreen-news-read-more-container {
  grid-area: read-more;
}

.evergreen-item.evergreen-news-item.evergreen-item-container.evergreen-item-container--download-right .evergreen-news-item-wrap {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  gap: 0;
  grid-template-areas: "headline downlaod" "read-more read-more";
}
.evergreen-item.evergreen-news-item.evergreen-item-container.evergreen-item-container--download-right .evergreen-news-item-wrap .evergreen-news-attachments {
  padding-left: 24px;
  gap: 0;
}
.evergreen-item.evergreen-news-item.evergreen-item-container.evergreen-item-container--download-right .evergreen-news-item-wrap.evergreen-news-item-data-center .evergreen-news-read-more-container {
  margin: 0 auto;
}

.evergreen-item.evergreen-news-item.evergreen-item-container.evergreen-item-container--download-bottom .evergreen-news-item-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto;
  gap: 0;
  align-items: center;
  grid-template-areas: "headline headline" "read-more downlaod";
}
.evergreen-item.evergreen-news-item.evergreen-item-container.evergreen-item-container--download-bottom .evergreen-news-item-wrap .evergreen-news-attachments {
  padding-left: 8px;
}
.evergreen-item.evergreen-news-item.evergreen-item-container.evergreen-item-container--download-bottom .evergreen-news-item-wrap:not(:has(> .evergreen-news-attachments)), .evergreen-item.evergreen-news-item.evergreen-item-container.evergreen-item-container--download-bottom .evergreen-news-item-wrap:not(:has(> .evergreen-news-read-more-container)) {
  grid-template-areas: "headline headline" "single-line single-line";
  column-gap: 0;
}
.evergreen-item.evergreen-news-item.evergreen-item-container.evergreen-item-container--download-bottom .evergreen-news-item-wrap:not(:has(> .evergreen-news-attachments)) .evergreen-news-read-more-container,
.evergreen-item.evergreen-news-item.evergreen-item-container.evergreen-item-container--download-bottom .evergreen-news-item-wrap:not(:has(> .evergreen-news-attachments)) .evergreen-news-attachments, .evergreen-item.evergreen-news-item.evergreen-item-container.evergreen-item-container--download-bottom .evergreen-news-item-wrap:not(:has(> .evergreen-news-read-more-container)) .evergreen-news-read-more-container,
.evergreen-item.evergreen-news-item.evergreen-item-container.evergreen-item-container--download-bottom .evergreen-news-item-wrap:not(:has(> .evergreen-news-read-more-container)) .evergreen-news-attachments {
  grid-area: single-line;
  justify-content: start;
  padding-left: 0;
}
.evergreen-item.evergreen-news-item.evergreen-item-container.evergreen-item-container--download-bottom .evergreen-news-item-wrap.evergreen-news-item-data-center {
  grid-template-columns: 1fr 1fr;
}
.evergreen-item.evergreen-news-item.evergreen-item-container.evergreen-item-container--download-bottom .evergreen-news-item-wrap.evergreen-news-item-data-center .evergreen-news-attachments {
  display: flex;
  justify-content: flex-start;
}
.evergreen-item.evergreen-news-item.evergreen-item-container.evergreen-item-container--download-bottom .evergreen-news-item-wrap.evergreen-news-item-data-center .evergreen-news-read-more-container {
  display: flex;
  justify-content: flex-end;
}
.evergreen-item.evergreen-news-item.evergreen-item-container.evergreen-item-container--download-bottom .evergreen-news-item-wrap.evergreen-news-item-data-center:not(:has(> .evergreen-news-attachments)) .evergreen-news-read-more-container,
.evergreen-item.evergreen-news-item.evergreen-item-container.evergreen-item-container--download-bottom .evergreen-news-item-wrap.evergreen-news-item-data-center:not(:has(> .evergreen-news-attachments)) .evergreen-news-attachments, .evergreen-item.evergreen-news-item.evergreen-item-container.evergreen-item-container--download-bottom .evergreen-news-item-wrap.evergreen-news-item-data-center:not(:has(> .evergreen-news-read-more-container)) .evergreen-news-read-more-container,
.evergreen-item.evergreen-news-item.evergreen-item-container.evergreen-item-container--download-bottom .evergreen-news-item-wrap.evergreen-news-item-data-center:not(:has(> .evergreen-news-read-more-container)) .evergreen-news-attachments {
  justify-content: center;
}

.evergreen.evergreen-news .evergreen-news-layout-wrapper.evergreen-news-layout--list-overlay {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 648px;
  width: auto;
  max-width: 1220px;
  position: relative;
}
.evergreen.evergreen-news .evergreen-news-layout-wrapper.evergreen-news-layout--list-overlay .evergreen-news-layout-overlay-background {
  min-height: 100%;
  max-width: 800px;
  width: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.evergreen.evergreen-news .evergreen-news-layout-wrapper.evergreen-news-layout--list-overlay .evergreen-container.evergreen-container--outer.evergreen-container--news {
  background: var(--evgLightColor);
  width: 100%;
  max-width: 850px;
  margin: 28px 0;
  background-color: rgb(255, 255, 255);
  border-radius: 4px;
  z-index: 2;
  padding: 50px;
  border-radius: 4px;
  box-shadow: 5px 5px 22px 4px rgba(62, 70, 81, 0.08), 12px 12px 17px 2px rgba(62, 70, 81, 0.08), 7px 7px 8px -4px rgba(62, 70, 81, 0.08);
}
.evergreen.evergreen-news .evergreen-news-layout-wrapper.evergreen-news-layout--list-overlay .evergreen-header {
  gap: 16px;
}
.evergreen.evergreen-news .evergreen-news-layout-wrapper.evergreen-news-layout--list-overlay .evergreen-container--news .evergreen-year-options {
  margin: 0;
}
.evergreen.evergreen-news .evergreen-news-layout-wrapper.evergreen-news-layout--list-overlay .evergreen-news-date {
  margin-bottom: 8px;
}
.evergreen.evergreen-news .evergreen-news-layout-wrapper.evergreen-news-layout--list-overlay .evergreen-header {
  margin-bottom: 32px;
}
.evergreen.evergreen-news .evergreen-news-layout-wrapper.evergreen-news-layout--list-overlay .evergreen-item-container {
  margin: 0;
  padding: 0;
}
.evergreen.evergreen-news .evergreen-news-layout-wrapper.evergreen-news-layout--list-overlay .evergreen-item.evergreen-news-item {
  border: none;
}
.evergreen.evergreen-news .evergreen-news-layout-wrapper.evergreen-news-layout--list-overlay .evergreen-item.evergreen-news-item .evergreen-news-item-wrap {
  padding-bottom: 24px;
  border-bottom: var(--borderBottom);
  border-bottom-style: var(--borderBottomStyle);
}
.evergreen.evergreen-news .evergreen-news-layout-wrapper.evergreen-news-layout--list-overlay .evergreen-item-container.evergreen-item-container--has-divider:not(:first-child) {
  padding-top: 24px;
}
.evergreen.evergreen-news .evergreen-news-layout-wrapper.evergreen-news-layout--list-overlay .evergreen-item-container:first-child .evergreen-news-date {
  padding-top: 8px;
}
.evergreen.evergreen-news .evergreen-news-layout-wrapper.evergreen-news-layout--list-overlay .evergreen-item-container.evergreen-item-container--has-padding {
  padding: 0 20px;
}
.evergreen.evergreen-news .evergreen-news-layout-wrapper.evergreen-news-layout--list-overlay .evergreen-item-container.evergreen-item-container--no-padding {
  padding: 0;
}
.evergreen.evergreen-news .evergreen-news-layout-wrapper.evergreen-news-layout--list-overlay .evergreen-news-item-wrap.evergreen-news-item-data-center .evergreen-news-item-headline-wrap {
  text-align: left;
  margin: 0 auto;
}
.evergreen.evergreen-news .evergreen-news-layout-wrapper.evergreen-news-layout--list-overlay p.evergreen-news-message-no-items {
  min-height: 300px;
  display: flex;
  align-items: center;
}
.evergreen.evergreen-news .evergreen-news-layout-wrapper.evergreen-news-layout--list-overlay p.evergreen-news-message-no-items .evergreen-icon-warning-line {
  display: none;
}
.evergreen.evergreen-news .evergreen-news-layout-wrapper.evergreen-news-layout--list-overlay p.evergreen-news-message-no-items .evergreen-news-message-no-items--text {
  --fontSize: var(--evgH3FontSizeL);
  --fontWeight: var(--evgH3FontWeight);
  --lineHeight: var(--evgH3LineHeight);
  --fontFamily: var(--evgModuleItemTitleFontFamily);
  --fontColor: var(--evgModuleItemTitleFontColor);
  display: block;
  margin: 0 auto;
  font-size: var(--fontSize);
  font-family: var(--fontFamily);
  color: var(--fontColor);
  font-weight: var(--fontWeight);
  line-height: var(--lineHeight);
}

/** Responsive **/
@media (max-width: 1024px) {
  .evergreen.evergreen-news .evergreen-news-layout-wrapper.evergreen-news-layout--list-overlay {
    margin: 50px 0;
  }
  .evergreen.evergreen-news .evergreen-news-layout-wrapper.evergreen-news-layout--list-overlay:has(> .evergreen-container--has-padding) {
    margin: 50px 24px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .evergreen.evergreen-news .evergreen-news-layout-wrapper.evergreen-news-layout--list-overlay {
    min-height: 600px;
  }
  .evergreen.evergreen-news .evergreen-news-layout-wrapper.evergreen-news-layout--list-overlay .evergreen-news-layout-overlay-background {
    max-width: 808px;
  }
  .evergreen.evergreen-news .evergreen-news-layout-wrapper.evergreen-news-layout--list-overlay .evergreen-container.evergreen-container--outer.evergreen-container--news {
    max-width: 811px;
  }
}
@media (max-width: 768px) {
  .evergreen.evergreen-news .evergreen-news-layout-wrapper.evergreen-news-layout--list-overlay {
    max-width: 721px;
    padding: 0 32px;
    flex-direction: column;
    justify-content: center;
  }
  .evergreen.evergreen-news .evergreen-news-layout-wrapper.evergreen-news-layout--list-overlay .evergreen-news-layout-overlay-background {
    height: 460px;
    min-height: 460px;
    width: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .evergreen.evergreen-news .evergreen-news-layout-wrapper.evergreen-news-layout--list-overlay .evergreen-container.evergreen-container--outer.evergreen-container--news {
    margin: 0 auto;
    position: relative;
    padding: 32px;
  }
  .evergreen.evergreen-news .evergreen-news-layout-wrapper.evergreen-news-layout--list-overlay .evergreen-container.evergreen-container--outer.evergreen-container--news.evergreen-container-news--overlay-space {
    justify-content: flex-start;
    top: 88px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .evergreen.evergreen-news .evergreen-news-layout-wrapper.evergreen-news-layout--list-overlay {
    margin: 0;
  }
  .evergreen.evergreen-news .evergreen-news-layout-wrapper.evergreen-news-layout--list-overlay:has(> .evergreen-container--has-padding) {
    margin: 0 24px;
  }
  .evergreen.evergreen-news .evergreen-news-layout-wrapper.evergreen-news-layout--list-overlay .evergreen-container.evergreen-container--outer.evergreen-container--news {
    max-width: 811px;
  }
}
@media (max-width: 480px) {
  .evergreen-item.evergreen-news-item.evergreen-item-container.evergreen-item-container--download-right .evergreen-news-item-wrap .evergreen-news-attachments {
    padding-left: 16px;
  }
  .evergreen.evergreen-news .evergreen-news-layout-wrapper.evergreen-news-layout--list-overlay {
    max-width: 448px;
    padding: 0 16px;
  }
  .evergreen.evergreen-news .evergreen-news-layout-wrapper.evergreen-news-layout--list-overlay .evergreen-news-layout-overlay-background {
    position: relative;
    height: 184px;
    min-height: 184px;
  }
  .evergreen.evergreen-news .evergreen-news-layout-wrapper.evergreen-news-layout--list-overlay .evergreen-container.evergreen-container--outer.evergreen-container--news {
    margin: 0 auto;
    position: relative;
  }
  .evergreen.evergreen-news .evergreen-news-layout-wrapper.evergreen-news-layout--list-overlay .evergreen-container.evergreen-container--outer.evergreen-container--news.evergreen-container-news--overlay-space {
    justify-content: flex-start;
    top: 88px;
  }
  .evergreen.evergreen-news .evergreen-news-layout-wrapper.evergreen-news-layout--list-overlay .evergreen-header {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: "title rss" "all-news all-news";
  }
  .evergreen.evergreen-news .evergreen-news-layout-wrapper.evergreen-news-layout--list-overlay .evergreen-header .evergreen-title {
    grid-area: title;
  }
  .evergreen.evergreen-news .evergreen-news-layout-wrapper.evergreen-news-layout--list-overlay .evergreen-header .evergreen-news-view-all-wrapper {
    grid-area: all-news;
  }
  .evergreen.evergreen-news .evergreen-news-layout-wrapper.evergreen-news-layout--list-overlay .evergreen-header .evergreen-rss-container {
    grid-area: rss;
  }
  .evergreen.evergreen-news .evergreen-news-layout-wrapper.evergreen-news-layout--list-overlay .evergreen-header .evergreen-news-view-all-link {
    width: 100%;
  }
}
/* Card */
.evergreen-card {
  --itemBackgroundColor: var(--evgModuleBackgroundItemBackgroundColor);
  --itemBackgroundHoverColor: var(--evgLightOverlayColor);
  --itemBackgroundFocusColor: var(--evgLightOverlayColor);
  --titleKeylineColor: var(--evgAltColor);
}

.evergreen-card-item-description {
  font-family: var(--fontFamily);
  font-size: var(--fontSize);
  font-weight: var(--fontWeight);
  line-height: var(--lineHeight);
  color: var(--fontColor);
  text-transform: var(--capitalization);
}

.evergreen-card-item img {
  color: var(--fontColor);
}

/** Financial Accordion Module Card Header **/
.evergreen-financial-accordion-card-header {
  --fontSize: var(--evgH4FontSizeL);
  --fontFamily: var(--evgH4FontFamily);
  --fontColor: var(--evgH4FontColor);
  --fontWeight: var(--evgH4FontWeight);
  --lineHeight: var(--evgH4LineHeight);
  --capitalization: var(--evgH4Capitalization);
  font-size: var(--fontSize);
  font-family: var(--fontFamily);
  color: var(--fontColor);
  font-weight: var(--fontWeight);
  line-height: var(--lineHeight);
  text-transform: var(--capitalization);
}

/** Responsive Tablet **/
@media (max-width: 1024px) {
  .evergreen-card-item-description {
    --fontSize: var(--evgBodyFontSizeM);
  }
  .evergreen-card-item img {
    --fontSize: var(--evgH3FontSizeM);
  }
}
/** Responsive Mobile **/
@media (max-width: 480px) {
  .evergreen-card-item-description {
    --fontSize: var(--evgBodyFontSizeS);
  }
  .evergreen-card-item img {
    --fontSize: var(--evgH3FontSizeS);
  }
}
.evergreen-sitemap-nav ul li {
  list-style-type: none;
}

.evergreen-sitemap-nav ul.level1 > li {
  padding: 20px;
}

.evergreen-sitemap-nav ul.level1 > li > .evergreen-link {
  font-family: var(--fontFamily);
  font-size: var(--evgLinkFontSizeL);
  font-weight: var(--fontWeight);
  line-height: var(--lineHeight);
  text-transform: var(--capitalization);
  font-style: var(--fontStyle);
  color: var(--fontColor);
}

.evergreen-sitemap-nav ul.level1 > li > .evergreen-link:hover {
  color: var(--fontColor);
}

.evergreen-sitemap-nav ul.level1 > li > .evergreen-link:focus, .evergreen-sitemap-nav ul.level1 > li > .evergreen-link:focus-visible {
  color: var(--fontColor);
}

.evergreen-sitemap-nav ul.level2 > li {
  padding: 10px 20px 10px 20px;
}

.evergreen-sitemap-nav ul.level2 > li > .evergreen-link {
  font-family: var(--fontFamily);
  font-size: var(--evgLinkFontSizeL);
  font-weight: var(--fontWeight);
  line-height: var(--lineHeight);
  text-transform: var(--capitalization);
  font-style: var(--fontStyle);
  color: var(--fontColor);
}

.evergreen-sitemap-nav ul.level2 > li > .evergreen-link:hover {
  color: var(--fontColor);
}

.evergreen-sitemap-nav ul.level2 > li > .evergreen-link:focus, .evergreen-sitemap-nav ul.level2 > li > .evergreen-link:focus-visible {
  color: var(--fontColor);
}

.evergreen-sitemap-nav ul.level3 > li {
  padding: 5px 20px 5px 20px;
}

.evergreen-sitemap-nav ul.level3 > li > .evergreen-link {
  font-family: var(--fontFamily);
  font-size: var(--evgLinkFontSizeL);
  font-weight: var(--fontWeight);
  line-height: var(--lineHeight);
  text-transform: var(--capitalization);
  font-style: var(--fontStyle);
  color: var(--fontColor);
}

.evergreen-sitemap-nav ul.level3 > li > .evergreen-link:hover {
  color: var(--fontColor);
}

.evergreen-sitemap-nav ul.level3 > li > .evergreen-link:focus, .evergreen-sitemap-nav ul.level3 > li > .evergreen-link:focus-visible {
  color: var(--fontColor);
}

.evergreen-sitemap-nav ul.level4 li {
  padding: 5px 20px 5px 20px;
}

.evergreen-sitemap-nav ul.level4 li > .evergreen-link {
  font-family: var(--fontFamily);
  font-size: var(--evgLinkFontSizeL);
  font-weight: var(--fontWeight);
  line-height: var(--lineHeight);
  text-transform: var(--capitalization);
  font-style: var(--fontStyle);
  color: var(--fontColor);
}

.evergreen-sitemap-nav ul.level4 li > .evergreen-link:hover {
  color: var(--fontColor);
}

.evergreen-sitemap-nav ul.level4 li > .evergreen-link:focus, .evergreen-sitemap-nav ul.level4 li > .evergreen-link:focus-visible {
  color: var(--fontColor);
}

.evergreen-header .evergreen-title .ModuleTitle {
  font-size: var(--evgBodyFontSizeL);
}

@media (min-width: 481px) and (max-width: 1024px) {
  .evergreen-header .evergreen-title .ModuleTitle {
    font-size: var(--evgBodyFontSizeM);
  }
  .evergreen-sitemap-nav ul.level1 > li > .evergreen-link {
    font-size: var(--evgLinkFontSizeM);
  }
  .evergreen-sitemap-nav ul.level2 > li > .evergreen-link {
    font-size: var(--evgLinkFontSizeM);
  }
  .evergreen-sitemap-nav ul.level3 > li > .evergreen-link {
    font-size: var(--evgLinkFontSizeM);
  }
  .evergreen-sitemap-nav ul.level4 li > .evergreen-link {
    font-size: var(--evgLinkFontSizeM);
  }
}
@media (max-width: 480px) {
  .evergreen-header .evergreen-title .ModuleTitle {
    font-size: var(--evgBodyFontSizeS);
  }
  .evergreen-sitemap-nav ul.level1 > li > .evergreen-link {
    font-size: var(--evgLinkFontSizeS);
  }
  .evergreen-sitemap-nav ul.level2 > li > .evergreen-link {
    font-size: var(--evgLinkFontSizeS);
  }
  .evergreen-sitemap-nav ul.level3 > li > .evergreen-link {
    font-size: var(--evgLinkFontSizeS);
  }
  .evergreen-sitemap-nav ul.level4 li > .evergreen-link {
    font-size: var(--evgLinkFontSizeS);
  }
}
.evergreen.evergreen-sec-filings-details .evergreen-sec-filings-details-container .evergreen-sec-filings-details-type {
  font-family: var(--evgH3FontFamily);
  font-weight: var(--evgH3FontWeight);
  line-height: var(--evgH3LineHeight);
  text-transform: var(--evgH3Capitalization);
  color: var(--evgH3FontColor);
}
.evergreen.evergreen-sec-filings-details .evergreen-sec-filings-details-container .evergreen-sec-filings-details-date {
  font-family: var(--evgDateTimeFontFamily);
  font-weight: var(--evgDateTimeFontWeight);
  line-height: var(--evgDateTimeFontLineHeight);
  text-transform: var(--evgDateTimeFontCapitalization);
  color: var(--evgDateTimeFontColor);
}
.evergreen.evergreen-sec-filings-details .evergreen-sec-filings-details-container .evergreen-sec-filings-details-description {
  font-family: var(--evgBodyFontFamily);
  font-weight: var(--evgBodyFontWeight);
  line-height: var(--evgBodyLineHeight);
  text-transform: var(--evgBodyCapitalization);
  color: var(--evgBodyFontColor);
}
.evergreen.evergreen-sec-filings-details .evergreen-sec-filings-details-container .evergreen-sec-filings-details-download-text {
  font-family: var(--evgBodyFontFamily);
  font-weight: var(--evgBodyFontWeight);
  line-height: var(--evgBodyLineHeight);
  text-transform: var(--evgBodyCapitalization);
  color: var(--evgBodyFontColor);
}

.evergreen.evergreen-sec-filings-details .evergreen-sec-filings-details-download-links a i::before {
  font-weight: var(--evgHyperlinkFontWeight);
  color: var(--evgHyperlinkFontColor);
}

.evergreen.evergreen-sec-filings-details .evergreen-sec-filings-details-download-links a:hover i::before {
  color: var(--evgHyperlinkFontHoverColor);
}

.evergreen.evergreen-sec-filings-details .evergreen-sec-filings-details-download-links a:active i::before,
.evergreen.evergreen-sec-filings-details .evergreen-sec-filings-details-download-links a:focus i::before {
  color: var(--evgHyperlinkFontFocusColor);
}

@media (max-width: 480px) {
  .evergreen.evergreen-sec-filings-details .evergreen-sec-filings-details-container .evergreen-sec-filings-details-type {
    font-size: var(--evgH3FontSizeS);
  }
  .evergreen.evergreen-sec-filings-details .evergreen-sec-filings-details-container .evergreen-sec-filings-details-date {
    font-size: var(--evgDateTimeFontSizeS);
  }
  .evergreen.evergreen-sec-filings-details .evergreen-sec-filings-details-container .evergreen-sec-filings-details-description {
    font-size: var(--evgBodyFontSizeS);
  }
  .evergreen.evergreen-sec-filings-details .evergreen-sec-filings-details-container .evergreen-sec-filings-details-download-text {
    font-size: var(--evgBodyFontSizeS);
  }
  .evergreen.evergreen-sec-filings-details .evergreen-sec-filings-details-container .evergreen-sec-filings-details-download-links {
    font-size: var(--evgHyperlinkFontSizeS);
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .evergreen.evergreen-sec-filings-details .evergreen-sec-filings-details-container .evergreen-sec-filings-details-type {
    font-size: var(--evgH3FontSizeM);
  }
  .evergreen.evergreen-sec-filings-details .evergreen-sec-filings-details-container .evergreen-sec-filings-details-date {
    font-size: var(--evgDateTimeFontSizeM);
  }
  .evergreen.evergreen-sec-filings-details .evergreen-sec-filings-details-container .evergreen-sec-filings-details-description {
    font-size: var(--evgBodyFontSizeM);
  }
  .evergreen.evergreen-sec-filings-details .evergreen-sec-filings-details-container .evergreen-sec-filings-details-download-text {
    font-size: var(--evgBodyFontSizeM);
  }
  .evergreen.evergreen-sec-filings-details .evergreen-sec-filings-details-container .evergreen-sec-filings-details-download-links {
    font-size: var(--evgHyperlinkFontSizeM);
  }
}
@media (min-width: 1025px) {
  .evergreen.evergreen-sec-filings-details .evergreen-sec-filings-details-container .evergreen-sec-filings-details-type {
    font-size: var(--evgH3FontSizeL);
  }
  .evergreen.evergreen-sec-filings-details .evergreen-sec-filings-details-container .evergreen-sec-filings-details-date {
    font-size: var(--evgDateTimeFontSizeL);
  }
  .evergreen.evergreen-sec-filings-details .evergreen-sec-filings-details-container .evergreen-sec-filings-details-description {
    font-size: var(--evgBodyFontSizeL);
  }
  .evergreen.evergreen-sec-filings-details .evergreen-sec-filings-details-container .evergreen-sec-filings-details-download-text {
    font-size: var(--evgBodyFontSizeL);
  }
  .evergreen.evergreen-sec-filings-details .evergreen-sec-filings-details-container .evergreen-sec-filings-details-download-links {
    font-size: var(--evgHyperlinkFontSizeL);
  }
}
.evergreen-data-figures-item {
  text-align: var(--alignment);
  grid-template-columns: repeat(var(--itemsPerRow), 1fr);
}

.evergreen-data-figures-item-title {
  font-size: var(--fontSize);
  color: var(--fontColor);
}

.evergreen-data-figures-caption-text {
  text-align: var(--alignment);
}

.evergreen-data-figures-link {
  text-align: var(--alignment);
}

@media (min-width: 481px) and (max-width: 1024px) {
  .evergreen-data-figures-item {
    text-align: var(--alignment);
    grid-template-columns: repeat(2, 1fr);
  }
  .evergreen-data-figures-item-title {
    font-size: var(--fontSize);
  }
  .evergreen-data-figures-item-description {
    font-size: var(--fontSize);
  }
}
@media (max-width: 480px) {
  .evergreen-data-figures-item {
    text-align: var(--alignment);
    grid-template-columns: repeat(1, 1fr);
  }
  .evergreen-data-figures-item-title {
    font-size: var(--fontSize);
  }
  .evergreen-data-figures-item-description {
    font-size: var(--fontSize);
  }
}
.evergreen-calendar {
  --borderRadius: var(--evgCalendarBorderRadius);
  --dayFontFamily: var(--evgCalendarDayFontFamily);
  --dayFontSizeL: var(--evgCalendarDayFontSizeL);
  --dayFontSizeM: var(--evgCalendarDayFontSizeM);
  --dayFontSizeS: var(--evgCalendarDayFontSizeS);
  --dayFontColor: var(--evgCalendarDayFontColor);
  --dayFontWeight: var(--evgCalendarDayFontWeight);
  --dayFontLineHeight: var(--evgCalendarDayFontLineHeight);
  --dayFontCapitalization: var(--evgCalendarDayFontCapitalization);
  --secondaryBackgroundAltColor: var(--evgCalendarSecondaryBackgroundAltColor);
  --legendFontFamily: var(--evgCalendarLegendFontFamily);
  --legendFontSizeL: var(--evgCalendarLegendFontSizeL);
  --legendFontSizeM: var(--evgCalendarLegendFontSizeM);
  --legendFontSizeS: var(--evgCalendarLegendFontSizeS);
  --legendFontColor: var(--evgCalendarLegendFontColor);
  --legendFontWeight: var(--evgCalendarLegendFontWeight);
  --legendFontLineHeight: var(--evgCalendarLegendFontLineHeight);
  --legendFontCapitalization: var(--evgCalendarLegendFontCapitalization);
  --dotPrimaryColor: var(--evgCalendarDotPrimaryColor);
  --dotSecondaryColor: var(--evgCalendarDotSecondaryColor);
  --fontFamily: var(--evgCalendarFontFamily);
  --fontSizeL: var(--evgCalendarFontSizeL);
  --fontSizeM: var(--evgCalendarFontSizeM);
  --fontSizeS: var(--evgCalendarFontSizeS);
  --fontColor: var(--evgCalendarFontColor);
  --fontAltColor: var(--evgCalendarFontAltColor);
  --fontHoverColor: var(--evgCalendarFontHoverColor);
  --fontFocusColor: var(--evgCalendarFontFocusColor);
  --fontWeight: var(--evgCalendarFontWeight);
  --fontDisabledColor: var(--evgCalendarFontDisabledColor);
  --borderColor: var(--evgCalendarBorderColor);
  --backgroundColor: var(--evgCalendarBackgroundColor);
  --backgroundHoverColor: var(--evgCalendarBackgroundHoverColor);
  --backgroundActiveColor: var(--evgCalendarBackgroundActiveColor);
  --secondaryFontFamily: var(--evgCalendarSecondaryFontFamily);
  --secondaryFontSizeL: var(--evgCalendarSecondaryFontSizeL);
  --secondaryFontSizeM: var(--evgCalendarSecondaryFontSizeM);
  --secondaryFontSizeS: var(--evgCalendarSecondaryFontSizeS);
  --secondaryFontColor: var(--evgCalendarSecondaryFontColor);
  --secondaryFontWeight: var(--evgCalendarSecondaryFontWeight);
  --secondaryFontLineHeight: var(--evgCalendarSecondaryFontLineHeight);
  --secondaryFontCapitalization: var(--evgCalendarSecondaryFontCapitalization);
  --secondaryBackgroundColor: var(--evgCalendarSecondaryBackgroundColor);
}

.evergreen-calendar-month-container,
.evergreen-calendar-month-year {
  background: var(--secondaryBackgroundColor);
  border-top-left-radius: var(--borderRadius);
  border-top-right-radius: var(--borderRadius);
}

.evergreen-calendar-month,
.evergreen-calendar-month-year > * {
  font-family: var(--secondaryFontFamily);
  font-size: var(--secondaryFontSizeL);
  color: var(--secondaryFontColor);
  font-weight: var(--secondaryFontWeight);
  line-height: var(--secondaryFontLineHeight);
  text-transform: var(--secondaryFontCapitalization);
}

.evergreen-calendar-week {
  background: var(--secondaryBackgroundAltColor);
}

.evergreen-calendar-day {
  color: var(--dayFontColor);
  font-family: var(--dayFontFamily);
  font-size: var(--dayFontSizeL);
  font-weight: var(--dayFontWeight);
  line-height: var(--dayFontLineHeight);
  text-transform: var(--dayFontCapitalization);
}

.evergreen-calendar-date-container,
.evergreen-calendar-dates {
  background: var(--backgroundColor);
  border-bottom-left-radius: var(--borderRadius);
  border-bottom-right-radius: var(--borderRadius);
}

.evergreen-calendar-date {
  border-color: var(--borderColor);
  color: var(--fontColor);
  font-weight: var(--fontWeight);
  font-size: var(--fontSizeL);
  font-family: var(--fontFamily);
}

.evergreen-calendar-date:hover {
  background: var(--backgroundHoverColor);
  color: var(--fontHoverColor);
}

.evergreen-calendar-date:focus {
  color: var(--fontFocusColor);
}

.evergreen-calendar-date:focus-visible {
  color: var(--fontFocusColor);
}

.evergreen-calendar-date--selected > span {
  background: var(--backgroundActiveColor);
  color: var(--fontAltColor);
}

.evergreen-calendar-date--inactive,
.evergreen-calendar-date--adjacent-month {
  color: var(--fontDisabledColor);
}

.evergreen-calendar-legend,
.evergreen-calendar-legend-container li.evergreen-calendar-legend {
  color: var(--legendFontColor);
  font-family: var(--legendFontFamily);
  font-size: var(--legendFontSizeL);
  font-weight: var(--legendFontWeight);
  line-height: var(--legendFontLineHeight);
  text-transform: var(--legendFontCapitalization);
}

.evergreen-calendar-legend-indicator--primary,
.evergreen-calendar-indicator--primary {
  background: var(--dotPrimaryColor);
}

.evergreen-calendar-legend-indicator--secondary,
.evergreen-calendar-indicator--secondary {
  background: var(--dotSecondaryColor);
}

@media (min-width: 481px) and (max-width: 768px) {
  .evergreen-calendar-month,
.evergreen-calendar-month-year > * {
    font-size: var(--secondaryFontSizeM);
  }
  .evergreen-calendar-day {
    font-size: var(--dayFontSizeM);
  }
  .evergreen-calendar-date {
    font-size: var(--fontSizeM);
  }
  .evergreen-calendar-legend {
    font-size: var(--legendFontSizeM);
  }
}
@media (max-width: 480px) {
  .evergreen-calendar-month,
.evergreen-calendar-month-year > * {
    font-size: var(--secondaryFontSizeS);
  }
  .evergreen-calendar-day {
    font-size: var(--dayFontSizeS);
  }
  .evergreen-calendar-date {
    font-size: var(--fontSizeS);
  }
  .evergreen-calendar-legend {
    font-size: var(--legendFontSizeS);
  }
}
.evergreen,
.evergreen-layout {
  --fontSize: var(--evgBodyFontSizeL);
  --fontFamily: var(--evgBodyFontFamily);
  --fontColor: var(--evgBodyFontColor);
  --fontWeight: var(--evgBodyFontWeight);
  --lineHeight: var(--evgBodyLineHeight);
  --capitalization: var(--evgBodyCapitalization);
  font-size: var(--fontSize);
  font-family: var(--fontFamily);
  color: var(--fontColor);
  font-weight: var(--fontWeight);
  line-height: var(--lineHeight);
  text-transform: var(--capitalization);
}

.evergreen-layout .evergreen-layout-header {
  position: relative;
  padding-top: var(--primaryNavigationModuleHeight);
}

.evergreen {
  padding: 50px 0;
}

.evergreen.evergreen-no-padding {
  padding: 0;
}

.evergreen p {
  --fontSize: var(--evgBodyFontSizeL);
  --fontFamily: var(--evgBodyFontFamily);
  --fontColor: var(--evgBodyFontColor);
  --fontWeight: var(--evgBodyFontWeight);
  --lineHeight: var(--evgBodyLineHeight);
  --capitalization: var(--evgBodyCapitalization);
}

.evergreen h1 {
  --fontSize: var(--evgH1FontSizeL);
  --fontFamily: var(--evgH1FontFamily);
  --fontColor: var(--evgH1FontColor);
  --fontWeight: var(--evgH1FontWeight);
  --lineHeight: var(--evgH1LineHeight);
  --capitalization: var(--evgH1Capitalization);
  overflow-wrap: anywhere;
}

.evergreen h2 {
  --fontSize: var(--evgH2FontSizeL);
  --fontFamily: var(--evgH2FontFamily);
  --fontColor: var(--evgH2FontColor);
  --fontWeight: var(--evgH2FontWeight);
  --lineHeight: var(--evgH2LineHeight);
  --capitalization: var(--evgH2Capitalization);
}

.evergreen h3 {
  --fontSize: var(--evgH3FontSizeL);
  --fontFamily: var(--evgH3FontFamily);
  --fontColor: var(--evgH3FontColor);
  --fontWeight: var(--evgH3FontWeight);
  --lineHeight: var(--evgH3LineHeight);
  --capitalization: var(--evgH3Capitalization);
}

.evergreen h4 {
  --fontSize: var(--evgH4FontSizeL);
  --fontFamily: var(--evgH4FontFamily);
  --fontColor: var(--evgH4FontColor);
  --fontWeight: var(--evgH4FontWeight);
  --lineHeight: var(--evgH4LineHeight);
  --capitalization: var(--evgH4Capitalization);
}

.evergreen h5 {
  --fontSize: var(--evgH5FontSizeL);
  --fontFamily: var(--evgH5FontFamily);
  --fontColor: var(--evgH5FontColor);
  --fontWeight: var(--evgH5FontWeight);
  --lineHeight: var(--evgH5LineHeight);
  --capitalization: var(--evgH5Capitalization);
}

.evergreen caption {
  --fontSize: var(--evgCaptionFontSizeL);
  --fontFamily: var(--evgCaptionFontFamily);
  --fontColor: var(--evgCaptionFontColor);
  --fontWeight: var(--evgCaptionFontWeight);
  --lineHeight: var(--evgCaptionLineHeight);
  --capitalization: var(--evgCaptionCapitalization);
}

.evergreen p,
.evergreen h1,
.evergreen h2,
.evergreen h3,
.evergreen h4,
.evergreen h5,
.evergreen caption {
  font-size: var(--fontSize);
  font-family: var(--fontFamily);
  color: var(--fontColor);
  font-weight: var(--fontWeight);
  line-height: var(--lineHeight);
  text-transform: var(--capitalization);
}

.evergreen h1,
.evergreen h2,
.evergreen h3,
.evergreen h4,
.evergreen h5,
.evergreen caption {
  border-bottom: none;
}

.evergreen-container--outer {
  --padding: var(--evgPaddingContainerPadding);
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--padding);
  padding-right: var(--padding);
  margin-top: auto;
  margin-bottom: auto;
}

.evergreen *:focus,
.evergreen *:focus-visible {
  outline-width: 2px;
  outline-style: dotted;
  outline-color: inherit;
  outline-offset: 2px;
}

.evergreen-error {
  --fontColor: var(--evgErrorColor);
  font-family: var(--fontFamily);
  line-height: var(--lineHeight);
  text-transform: var(--capitalization);
  font-weight: var(--fontWeight);
  color: var(--fontColor);
}

/* Footer */
.evergreen-layout .evergreen-pane.evergreen-pane--footer {
  --primaryColor: var(--evgFooterPrimaryColor);
  background: var(--primaryColor);
}

.evergreen-layout .evergreen-pane.evergreen-pane--sub-footer {
  --secondaryColor: var(--evgFooterSecondaryColor);
  background: var(--secondaryColor);
}

.evergreen .evergreen-checkbox label,
.evergreen .evergreen-radio label {
  --fontFamily: var(--evgRadioCheckboxFontFamily);
  --fontSize: var(--evgRadioCheckboxFontSizeL);
  --fontColor: var(--evgRadioCheckboxFontColor);
  --fontWeight: var(--evgRadioCheckboxFontWeight);
  --lineHeight: var(--evgRadioCheckboxFontLineHeight);
  --capitalization: var(--evgRadioCheckboxFontCapitalization);
  font-family: var(--fontFamily);
  font-size: var(--fontSize);
  color: var(--fontColor);
  font-weight: var(--fontWeight);
  line-height: var(--lineHeight);
  text-transform: var(--capitalization);
}

.evergreen .evergreen-checkbox input[type=checkbox] {
  --fillColor: var(--evgRadioCheckboxFillColor);
  --borderColor: var(--evgRadioCheckboxBorderColor);
  --borderRadius: var(--evgRadioCheckboxBorderRadius);
  background: var(--fillColor);
  border: 1px solid var(--borderColor);
  border-radius: var(--borderRadius);
}

.evergreen .evergreen-checkbox input[type=checkbox]:checked {
  --fillColor: var(--evgRadioCheckboxFillActiveColor);
  --borderColor: var(--evgRadioCheckboxBorderActiveColor);
  --borderRadius: var(--evgRadioCheckboxBorderRadius);
  background: var(--fillColor);
  border: 1px solid var(--borderColor);
  border-radius: var(--borderRadius);
}

.evergreen .evergreen-checkbox.evergreen-checkbox--checkmark input[type=checkbox]:checked::before {
  --borderColor: var(--evgRadioCheckboxBorderColor);
  content: "";
  display: block;
  width: 38%;
  height: 85%;
  margin: -4% 25%;
  border-bottom: 1px solid var(--borderColor);
  border-right: 1px solid var(--borderColor);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.evergreen .evergreen-checkbox.evergreen-checkbox--square input[type=checkbox]:checked::before {
  --borderColor: var(--evgRadioCheckboxBorderColor);
  content: "";
  display: block;
  width: 50%;
  height: 50%;
  margin: 25%;
  border: 1px solid var(--borderColor);
  background: var(--borderColor);
}

.evergreen .evergreen-radio input[type=radio],
.evergreen .evergreen-radio input[type=checkbox] {
  --fillColor: var(--evgRadioCheckboxSecondaryFillColor);
  --borderColor: var(--evgRadioCheckboxSecondaryBorderColor);
  -moz-appearance: none;
  -webkit-appearance: none;
  -o-appearance: none;
  appearance: none;
  margin: 0 10px 0 0;
  vertical-align: middle;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-style: solid;
  border-width: 1px;
  cursor: pointer;
  border-radius: 100%;
  background: var(--fillColor);
  border-color: var(--borderColor);
}

.evergreen .evergreen-radio input[type=radio]:checked {
  --fillColor: var(--evgRadioCheckboxSecondaryFillActiveColor);
  --borderColor: var(--evgRadioCheckboxSecondaryBorderActiveColor);
  background: var(--fillColor);
  border-color: var(--borderColor);
}

.evergreen .evergreen-radio.evergreen-radio--dot input[type=radio]:checked::before {
  --borderColor: var(--evgRadioCheckboxSecondaryBorderColor);
  content: "";
  display: block;
  width: 60%;
  height: 60%;
  margin: 2px;
  border-radius: 50%;
  border: 1px solid var(--borderColor);
  background: var(--borderColor);
}

/* Hyperlink */
.evergreen .evergreen-link,
.evergreen.evergreen-text-editor a:not([class*=evergreen-button]),
.evergreen a.evergreen-rss-link {
  --fontSize: var(--evgHyperlinkFontSizeL);
  --fontFamily: var(--evgHyperlinkFontFamily);
  --fontColor: var(--evgHyperlinkFontColor);
  --fontWeight: var(--evgHyperlinkFontWeight);
  --fontStyle: var(--evgHyperlinkFontStyle);
  --lineHeight: var(--evgHyperlinkFontLineHeight);
  --capitalization: var(--evgHyperlinkFontCapitalization);
  --textDecoration: var(--evgHyperlinkDecorationTextDecoration);
  --textDecorationColor: var(--evgHyperlinkDecorationTextDecorationColor);
  font-size: var(--fontSize);
  font-family: var(--fontFamily);
  font-style: var(--fontStyle);
  color: var(--fontColor);
  font-weight: var(--fontWeight);
  line-height: var(--lineHeight);
  text-transform: var(--capitalization);
  text-decoration: var(--textDecoration);
  text-decoration-color: var(--textDecorationColor);
  transition-property: color, text-decoration;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
}

.evergreen a.evergreen-rss-link {
  --fontSize: var(--evgModuleNameFontSizeL);
  --fontFamily: var(--evgModuleNameFontFamily);
  --fontWeight: var(--evgModuleNameFontWeight);
  --lineHeight: var(--evgModuleNameFontLineHeight);
  --alignment: var(--evgModuleNameFontAlignment);
}

.evergreen .evergreen-link:hover,
.evergreen.evergreen-text-editor a:not([class*=evergreen-button]):hover,
.evergreen a.evergreen-rss-link:hover {
  --fontColor: var(--evgHyperlinkFontHoverColor);
  --textDecoration: var(--evgHyperlinkDecorationTextDecorationHover);
  --textDecorationColor: var(--evgHyperlinkDecorationTextDecorationHoverColor);
  font-size: var(--fontSize);
  font-family: var(--fontFamily);
  color: var(--fontColor);
  font-weight: var(--fontWeight);
  line-height: var(--lineHeight);
  text-transform: var(--capitalization);
  text-decoration: var(--textDecoration);
  text-decoration-color: var(--textDecorationColor);
}

.evergreen .evergreen-link:focus,
.evergreen .evergreen-link:focus-visible,
.evergreen.evergreen-text-editor a:not([class*=evergreen-button]):focus,
.evergreen.evergreen-text-editor a:not([class*=evergreen-button]):focus-visible,
.evergreen a.evergreen-rss-link:focus,
.evergreen a.evergreen-rss-link:focus-visible {
  --fontColor: var(--evgHyperlinkFontFocusColor);
  --textDecoration: var(--evgHyperlinkDecorationTextDecorationFocus);
  --textDecorationColor: var(--evgHyperlinkDecorationTextDecorationFocusColor);
  font-size: var(--fontSize);
  font-family: var(--fontFamily);
  color: var(--fontColor);
  font-weight: var(--fontWeight);
}

/* Shared/Default Button Props */
.evergreen [class*=evergreen-button],
.evergreen [class*=evergreen-link--button],
.evergreen [class^=button] {
  --fontSize: var(--evgButtonFontSizeL);
  --fontFamily: var(--evgButtonFontFamily);
  --fontColor: var(--evgButtonFontColor);
  --fontWeight: var(--evgButtonFontWeight);
  --lineHeight: var(--evgButtonFontLineHeight);
  --capitalization: var(--evgButtonFontCapitalization);
  --fontStyle: var(--evgButtonFontStyle);
  --textDecoration: var(--evgButtonDecorationTextDecoration);
  --textDecorationColor: var(--evgButtonDecorationTextDecorationColor);
  --borderRadius: var(--evgButtonBorderRadius);
  --borderColor: var(--evgButtonBorderColor);
  --backgroundColor: var(--evgButtonBackgroundColor);
  --topBottomPadding: var(--evgButtonPaddingVerticalPadding);
}

.evergreen [class*=evergreen-button]:hover,
.evergreen [class*=evergreen-link--button]:hover,
.evergreen [class^=button]:hover {
  --fontColor: var(--evgButtonFontHoverColor);
  --borderColor: var(--evgButtonBorderHoverColor);
  --backgroundColor: var(--evgButtonBackgroundHoverColor);
  --textDecoration: var(--evgButtonDecorationTextDecorationHover);
  --textDecorationColor: var(--evgButtonDecorationTextDecorationHoverColor);
  color: var(--fontColor);
}

.evergreen [class*=evergreen-button]:focus,
.evergreen [class*=evergreen-link--button]:focus,
.evergreen [class^=button]:focus,
.evergreen [class*=evergreen-button]:focus-visible,
.evergreen [class*=evergreen-link--button]:focus-visible,
.evergreen [class^=button]:focus-visible {
  --fontColor: var(--evgButtonFontFocusColor);
  --borderColor: var(--evgButtonBorderFocusColor);
  --backgroundColor: var(--evgButtonBackgroundFocusColor);
  --textDecoration: var(--evgButtonDecorationTextDecorationFocus);
  --textDecorationColor: var(--evgButtonDecorationTextDecorationFocusColor);
  color: var(--fontColor);
}

/* Alt Button */
.evergreen .button--alt,
.evergreen .evergreen-button--alt,
.evergreen a.evergreen-link--button--alt,
.evergreen a.evergreen-link--button-alt {
  --fontSize: var(--evgButtonAltFontSizeL);
  --fontFamily: var(--evgButtonAltFontFamily);
  --fontColor: var(--evgButtonAltFontColor);
  --fontWeight: var(--evgButtonAltFontWeight);
  --lineHeight: var(--evgButtonAltFontLineHeight);
  --capitalization: var(--evgButtonAltFontCapitalization);
  --fontStyle: var(--evgButtonAltFontStyle);
  --textDecoration: var(--evgButtonAltDecorationTextDecoration);
  --textDecorationColor: var(--evgButtonAltDecorationTextDecorationColor);
  --borderRadius: var(--evgButtonAltBorderRadius);
  --borderColor: var(--evgButtonAltBorderColor);
  --backgroundColor: var(--evgButtonAltBackgroundColor);
  --topBottomPadding: var(--evgButtonAltPaddingVerticalPadding);
}

.evergreen .button--alt:hover:not(:focus),
.evergreen .evergreen-button--alt:hover:not(:focus),
.evergreen a.evergreen-link--button--alt:hover:not(:focus),
.evergreen a.evergreen-link--button-alt:hover:not(:focus) {
  --fontColor: var(--evgButtonAltFontHoverColor);
  --borderColor: var(--evgButtonAltBorderHoverColor);
  --backgroundColor: var(--evgButtonAltBackgroundHoverColor);
  --textDecoration: var(--evgButtonAltDecorationTextDecorationHover);
  --textDecorationColor: var(--evgButtonAltDecorationTextDecorationHoverColor);
  color: var(--fontColor);
}

.evergreen [class*=evergreen-button--alt]:focus,
.evergreen [class*=evergreen-link--button-alt]:focus,
.evergreen [class*=evergreen-link--button--alt]:focus,
.evergreen [class*=button--alt]:focus,
.evergreen [class*=evergreen-button--alt]:focus-visible,
.evergreen [class*=evergreen-link--button-alt]:focus-visible,
.evergreen [class*=evergreen-link--button--alt]:focus-visible,
.evergreen [class*=button--alt]:focus-visible {
  --fontColor: var(--evgButtonAltFontFocusColor);
  --borderColor: var(--evgButtonAltBorderFocusColor);
  --backgroundColor: var(--evgButtonAltBackgroundFocusColor);
  --textDecoration: var(--evgButtonAltDecorationTextDecorationFocus);
  --textDecorationColor: var(--evgButtonAltDecorationTextDecorationFocusColor);
  color: var(--fontColor);
}

/* Button Prop application */
.evergreen [class*=evergreen-button],
.evergreen [class*=evergreen-link--button],
.evergreen [class^=button] {
  padding: var(--topBottomPadding) 20px;
  font-style: var(--fontStyle);
  text-decoration: var(--textDecoration);
  text-decoration-color: var(--textDecorationColor);
  border-radius: var(--borderRadius);
  background: var(--backgroundColor);
  font-size: var(--fontSize);
  font-family: var(--fontFamily);
  color: var(--fontColor);
  font-weight: var(--fontWeight);
  line-height: var(--lineHeight);
  text-transform: var(--capitalization);
  display: inline-block;
  text-align: center;
  min-width: 165px;
  max-width: 100%;
  border: 1px solid var(--borderColor);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.evergreen .evergreen-icon-button::before {
  font-size: var(--evgButtonFontSizeL);
  color: var(--evgButtonFontColor);
  border: 1px solid var(--evgButtonBorderColor);
  background: var(--evgButtonBackgroundColor);
  border-radius: 50%;
  cursor: pointer;
  padding: 16px;
}

.evergreen-icon-button .evergreen-icon-button--alt::before {
  font-size: var(--evgButtonAltFontSizeL);
  color: var(--evgButtonAltFontColor);
  border: 1px solid var(--evgButtonAltBorderColor);
  background: var(--evgButtonAltBackgroundColor);
  border-radius: 50%;
  cursor: pointer;
  padding: 16px;
}

/* HOVER */
.evergreen [class*=evergreen-button]:hover,
.evergreen [class*=evergreen-link--button]:hover,
.evergreen [class*=button]:hover {
  text-decoration: var(--textDecoration);
  text-decoration-color: var(--textDecorationColor);
}

.evergreen-icon-button:hover::before {
  color: var(--evgButtonFontHoverColor);
  border: 1px solid var(--evgButtonBorderHoverColor);
  background: var(--evgButtonBackgroundHoverColor);
}

.evergreen-icon-button .evergreen-icon-button--alt:hover::before {
  color: var(--evgButtonAltFontHoverColor);
  border: 1px solid var(--evgButtonAltBorderHoverColor);
  background: var(--evgButtonAltBackgroundHoverColor);
}

/* FOCUS */
.evergreen [class*=evergreen-button]:focus,
.evergreen [class*=evergreen-link--button]:focus,
.evergreen [class*=button]:focus,
.evergreen [class*=evergreen-button]:focus-visible,
.evergreen [class*=evergreen-link--button]:focus-visible,
.evergreen [class*=button]:focus-visible {
  outline-color: var(--outlineFocusColor, --borderColor);
  text-decoration: var(--textDecoration);
  text-decoration-color: var(--textDecorationColor);
}

.evergreen-icon-button:focus::before, .evergreen-icon-button:focus-visible::before {
  color: var(--evgButtonFontFocusColor);
  border: 1px solid var(--evgButtonBorderFocusColor);
  background: var(--evgButtonBackgroundFocusColor);
}

.evergreen-icon-button .evergreen-icon-button--alt:focus::before,
.evergreen-icon-button .evergreen-icon-button--alt:focus-visible::before {
  color: var(--evgButtonAltFontFocusColor);
  border: 1px solid var(--evgButtonAltBorderFocusColor);
  background: var(--evgButtonAltBackgroundFocusColor);
}

/* Dropdown */
.evergreen .evergreen-dropdown-wrapper {
  --fontSize: var(--evgDropdownFontSizeL);
  --fontFamily: var(--evgDropdownFontFamily);
  --fontColor: var(--evgDropdownFontColor);
  --fontWeight: var(--evgDropdownFontWeight);
  --fontStyle: var(--evgDropdownFontStyle);
  --capitalization: var(--evgDropdownFontCapitalization);
  --borderRadius: var(--evgDropdownBorderRadius);
  --borderColor: var(--evgDropdownBorderColor);
  --backgroundColor: var(--evgDropdownBackgroundColor);
  --lineHeight: var(--evgDropdownFontLineHeight);
}

.evergreen .evergreen-dropdown {
  border-radius: var(--borderRadius);
  border-color: var(--borderColor);
  background: var(--backgroundColor);
  font-size: var(--fontSize);
  font-family: var(--fontFamily);
  color: var(--fontColor);
  font-weight: var(--fontWeight);
  line-height: var(--lineHeight);
  text-transform: var(--capitalization);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  padding: 8px 48px 8px 16px;
  appearance: none;
  min-width: 90px;
}

.evergreen .evergreen-dropdown:focus,
.evergreen .evergreen-dropdown:focus-visible {
  --fontColor: var(--evgDropdownFontFocusColor);
  --borderColor: var(--evgDropdownBorderFocusColor);
  --backgroundColor: var(--evgDropdownBackgroundFocusColor);
  outline-color: var(--borderColor);
}

.evergreen .evergreen-dropdown-wrapper select:empty {
  display: block;
}

/* Accordion */
.evergreen .evergreen-accordion {
  --fontFamily: var(--evgAccordionFontFamily);
  --detailFontColor: var(--evgAccordionContentFontColor);
  --detailBackgroundColor: var(--evgAccordionContentBackgroundColor);
  --headingFontSize: var(--evgAccordionFontSizeL);
  --headingFontColor: var(--evgAccordionFontColor);
  --headingFontActiveColor: var(--evgAccordionFontAltColor);
  --headingFontFocusColor: var(--evgAccordionFontFocusColor);
  --headingFontWeight: var(--evgAccordionFontWeight);
  --headingFontStyle: var(--evgAccordionFontStyle);
  --headingFontLineHeight: var(--evgAccordionFontLineHeight);
  --headingFontCapitalization: var(--evgAccordionFontCapitalization);
  --headingPadding: var(--evgAccordionPaddingItemPadding);
  --subtitleFontSize: var(--evgAccordionSecondaryFontSizeL);
  --subtitleFontColor: var(--evgAccordionSecondaryFontColor);
  --subtitleFontWeight: var(--evgAccordionSecondaryFontWeight);
  --subtitleFontStyle: var(--evgAccordionSecondaryFontStyle);
  --subtitleFontLineHeight: var(--evgAccordionSecondaryFontLineHeight);
  --subtitleFontCapitalization: var(--evgAccordionSecondaryFontCapitalization);
  --subtitleFontActiveColor: var(--evgAccordionSecondaryFontAltColor);
  --borderColor: var(--evgAccordionBorderColor);
  --borderColorHover: var(--evgAccordionBorderHoverColor);
  --borderColorFocus: var(--evgAccordionBorderFocusColor);
  --borderColorActive: var(--evgAccordionBorderActiveColor);
  --borderRadius: var(--evgAccordionBorderRadius);
  --backgroundColor: var(--evgAccordionBackgroundColor);
  --backgroundColorFocus: var(--evgAccordionBackgroundFocusColor);
  --backgroundColorActive: var(--evgAccordionBackgroundActiveColor);
  padding: 0;
  border-top: 1px solid var(--borderColor);
  border-radius: var(--borderRadius);
}

.evergreen .evergreen-accordion .evergreen-accordion-content-text {
  --borderRadius: var(--evgAccordionBorderRadius);
  border-radius: var(--borderRadius);
}

.evergreen .evergreen-accordion img {
  --borderRadius: var(--evgAccordionBorderRadius);
  border-radius: var(--borderRadius);
}

.evergreen .evergreen-accordion:last-child {
  border-bottom: 1px solid var(--borderColor);
}

.evergreen .evergreen-accordion:not(.evergreen-accordion--active):focus-within {
  --borderColor: var(--borderColorFocus);
  --backgroundColor: var(--backgroundColorFocus);
}

.evergreen .evergreen-accordion:not(.evergreen-accordion--active):focus-within + .evergreen-accordion {
  --borderTopColor: var(--borderColorFocus);
}

.evergreen .evergreen-accordion:last-child:not(.evergreen-accordion--active):focus-within {
  --borderBottomColor: var(--borderColorFocus);
}

.evergreen .evergreen-accordion--active {
  --borderColor: var(--borderColorActive);
  --backgroundColor: var(--backgroundColorActive);
}

.evergreen .evergreen-accordion--active + .evergreen-accordion:not(.evergreen-accordion--active),
.evergreen .evergreen-accordion--active + .evergreen-accordion:focus-within:not(.evergreen-accordion--active) {
  --borderTopColor: var(--borderColorActive);
}

.evergreen .evergreen-accordion--active.evergreen-accordion:last-child:focus-within {
  --borderBottomColor: var(--borderColorActive);
}

.evergreen .evergreen-accordion .evergreen-accordion-header button.accordion-toggle {
  padding: var(--headingPadding) 0;
}

.evergreen .evergreen-accordion .evergreen-accordion-header,
.evergreen .evergreen-accordion .evergreen-accordion-header button.accordion-toggle {
  --borderRadius: var(--evgAccordionBorderRadius);
  --backgroundColor: var(--evgAccordionBackgroundColor);
  border-radius: var(--borderRadius);
  background: var(--backgroundColor);
}

.evergreen .evergreen-accordion .evergreen-accordion-header .accordion-toggle-icon,
.evergreen .evergreen-accordion .evergreen-accordion-header .evergreen-accordion-title {
  --fontSize: var(--headingFontSize);
  --fontFamily: var(--evgAccordionFontFamily);
  --fontColor: var(--headingFontColor);
  --fontWeight: var(--headingFontWeight);
  --fontStyle: var(--headingFontStyle);
  --lineHeight: var(--headingFontLineHeight);
  --capitalization: var(--headingFontCapitalization);
  font-size: var(--fontSize);
  font-family: var(--fontFamily);
  color: var(--fontColor);
  font-weight: var(--fontWeight);
  font-style: var(--fontStyle);
  line-height: var(--lineHeight);
  text-transform: var(--capitalization);
  margin: 0;
}

.evergreen .evergreen-accordion:not(.evergreen-accordion--active):focus-within .evergreen-accordion-header .evergreen-accordion-title {
  --fontColor: var(--headingFontFocusColor);
  color: var(--fontColor);
}

.evergreen .evergreen-accordion--active .evergreen-accordion-header,
.evergreen .evergreen-accordion--active .evergreen-accordion-header button.accordion-toggle {
  --borderRadius: var(--evgAccordionBorderRadius);
  --backgroundColor: var(--evgAccordionBackgroundActiveColor);
  border-radius: var(--borderRadius);
  background-color: var(--backgroundColor);
  margin-bottom: 4px;
}

.evergreen .evergreen-accordion--active .evergreen-accordion-header .accordion-toggle-icon,
.evergreen .evergreen-accordion--active .evergreen-accordion-header .evergreen-accordion-title {
  --fontColor: var(--headingFontActiveColor);
  color: var(--fontColor);
}

.evergreen .evergreen-accordion .evergreen-accordion-header button.accordion-toggle:focus,
.evergreen .evergreen-accordion .evergreen-accordion-header button.accordion-toggle:focus-visible {
  outline-width: 2px;
  outline-style: dotted;
  outline-color: var(--borderColor);
  outline-offset: 2px;
}

.evergreen .evergreen-accordion .evergreen-accordion-header button.accordion-toggle .evergreen-accordion-subtitle {
  --fontSize: var(--subtitleFontSize);
  --fontColor: var(--subtitleFontColor);
  --fontWeight: var(--subtitleFontWeight);
  --fontStyle: var(--subtitleFontStyle);
  --lineHeight: var(--subtitleFontLineHeight);
  --capitalization: var(--subtitleFontCapitalization);
  font-size: var(--fontSize);
  font-family: var(--fontFamily);
  color: var(--fontColor);
  font-weight: var(--fontWeight);
  font-style: var(--fontStyle);
  line-height: var(--lineHeight);
  text-transform: var(--capitalization);
}

.evergreen .evergreen-accordion--active .evergreen-accordion-header button.accordion-toggle .evergreen-accordion-subtitle {
  --fontColor: var(--subtitleFontActiveColor);
  color: var(--fontColor);
}

.evergreen .evergreen-accordion-content {
  --fontColor: var(--detailFontColor);
  --fontSize: var(--evgBodyFontSizeL);
  --backgroundColor: var(--detailBackgroundColor);
  --borderRadius: var(--evgAccordionBorderRadius);
  font-size: var(--fontSize);
  font-family: var(--fontFamily);
  color: var(--fontColor);
  font-weight: var(--fontWeight);
  line-height: var(--lineHeight);
  text-transform: var(--capitalization);
  background: var(--backgroundColor);
  border-radius: var(--borderRadius);
}

.evergreen .evergreen-accordion-content-text,
.evergreen .evergreen-accordion-content-text p {
  font-size: var(--fontSize);
  color: var(--fontColor);
}

.evergreen .evergreen-accordion-content-text p a,
.evergreen .evergreen-accordion-content-text a:not([class*=evergreen-link--button]) {
  --fontColor: var(--evgHyperlinkFontColor);
  --textDecoration: var(--evgHyperlinkDecorationTextDecoration);
  --textDecorationColor: var(--evgHyperlinkDecorationTextDecorationColor);
  --fontWeight: var(--evgHyperlinkFontWeight);
  --capitalization: var(--evgHyperlinkFontCapitalization);
  color: var(--fontColor);
  text-decoration: var(--textDecoration);
  text-decoration-color: var(--textDecorationColor);
  font-weight: var(--fontWeight);
  text-transform: var(--capitalization);
  transition-property: color, text-decoration;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
}

.evergreen .evergreen-accordion-content-text p a:hover,
.evergreen .evergreen-accordion-content-text a:not([class*=evergreen-link--button]):hover {
  --fontColor: var(--evgHyperlinkFontHoverColor);
  --textDecoration: var(--evgHyperlinkDecorationTextDecorationHover);
  --textDecorationColor: var(--evgHyperlinkDecorationTextDecorationHoverColor);
  color: var(--fontColor);
  text-decoration: var(--textDecoration);
  text-decoration-color: var(--textDecorationColor);
}

.evergreen .evergreen-accordion-content-text p a:focus,
.evergreen .evergreen-accordion-content-text a:not([class*=evergreen-link--button]):focus {
  --fontColor: var(--evgHyperlinkFontFocusColor);
  --textDecoration: var(--evgHyperlinkDecorationTextDecorationFocus);
  --textDecorationColor: var(--evgHyperlinkDecorationTextDecorationFocusColor);
  color: var(--fontColor);
  text-decoration: var(--textDecoration);
  text-decoration-color: var(--textDecorationColor);
}

/* Carousel */
.evergreen .evergreen-carousel-slider-item-text {
  --fontColor: var(--evgBodyFontColor);
  --fontSize: var(--evgBodyFontSizeL);
  color: var(--fontColor);
  font-size: var(--fontSize);
}

.evergreen .evergreen-carousel-display-item-header-text {
  --fontColor: var(--evgBodyFontColor);
  --fontSize: var(--evgH3FontSizeL);
  color: var(--fontColor);
  font-size: var(--fontSize);
}

.evergreen .evergreen-carousel-display-item-subtitle-text,
.evergreen .evergreen-carousel-display-item-text,
.evergreen .evergreen-carousel-display-item-text p {
  --fontColor: var(--evgBodyFontColor);
  --fontSize: var(--evgBodyFontSizeL);
  color: var(--fontColor);
  font-size: var(--fontSize);
}

.evergreen .evergreen-carousel-arrow,
.evergreen .evergreen-carousel-display-item-text a,
.evergreen .evergreen-carousel-display-item-text p a {
  --fontColor: var(--evgHyperlinkFontColor);
  --textDecoration: var(--evgHyperlinkDecorationTextDecoration);
  --textDecorationColor: var(--evgHyperlinkDecorationTextDecorationColor);
  --fontWeight: var(--evgHyperlinkFontWeight);
  --capitalization: var(--evgHyperlinkFontCapitalization);
  color: var(--fontColor);
  text-decoration: var(--textDecoration);
  text-decoration-color: var(--textDecorationColor);
  font-weight: var(--fontWeight);
  text-transform: var(--capitalization);
  transition-property: color, text-decoration;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
}

.evergreen .evergreen-carousel-arrow:hover,
.evergreen .evergreen-carousel-display-item-text a:hover,
.evergreen .evergreen-carousel-display-item-text p a:hover {
  --fontColor: var(--evgHyperlinkFontHoverColor);
  --textDecoration: var(--evgHyperlinkDecorationTextDecorationHover);
  --textDecorationColor: var(--evgHyperlinkDecorationTextDecorationHoverColor);
  color: var(--fontColor);
  text-decoration: var(--textDecoration);
  text-decoration-color: var(--textDecorationColor);
}

.evergreen .evergreen-carousel-arrow:focus,
.evergreen .evergreen-carousel-display-item-text a:focus,
.evergreen .evergreen-carousel-display-item-text p a:focus {
  --fontColor: var(--evgHyperlinkFontFocusColor);
  --textDecoration: var(--evgHyperlinkDecorationTextDecorationFocus);
  --textDecorationColor: var(--evgHyperlinkDecorationTextDecorationFocusColor);
  color: var(--fontColor);
  text-decoration: var(--textDecoration);
  text-decoration-color: var(--textDecorationColor);
}

/* Tabs */
.evergreen .evergreen-tabs {
  --fontSize: var(--evgTabsFontSizeL);
  --fontFamily: var(--evgTabsFontFamily);
  --fontColor: var(--evgTabsFontColor);
  --fontColorHover: var(--evgTabsFontHoverColor);
  --fontColorActive: var(--evgTabsFontAltColor);
  --fontWeight: var(--evgTabsFontWeight);
  --lineHeight: var(--evgTabsFontLineHeight);
  --capitalization: var(--evgTabsFontCapitalization);
  --backgroundColor: var(--evgTabsBackgroundColor);
  --itemBackgroundColor: var(--evgTabsSecondaryBackgroundColor);
  --itemBackgroundColorHover: var(--evgTabsSecondaryBackgroundHoverColor);
  --itemBackgroundColorActive: var(--evgTabsSecondaryBackgroundActiveColor);
  --borderRadius: var(--evgTabsBorderRadius);
  margin-bottom: 16px;
  font-size: var(--fontSize);
  font-family: var(--fontFamily);
  color: var(--fontColor);
  font-weight: var(--fontWeight);
  line-height: var(--lineHeight);
  text-transform: var(--capitalization);
}

.evergreen .evergreen-tabs ul {
  background: var(--backgroundColor);
  border: 0 none;
  padding: 10px 15px 0;
  list-style: none;
  display: flex;
  column-gap: 3px;
  margin: 0;
  flex-wrap: wrap;
}

.evergreen .evergreen-tabs li {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-wrap: anywhere;
}

.evergreen .evergreen-tabs ul li a {
  --fontSize: var(--evgTabsFontSizeL);
  --fontFamily: var(--evgTabsFontFamily);
  --fontColor: var(--evgTabsFontColor);
  --fontColorHover: var(--evgTabsFontHoverColor);
  --fontColorActive: var(--evgTabsFontAltColor);
  --fontWeight: var(--evgTabsFontWeight);
  --lineHeight: var(--evgTabsFontLineHeight);
  --capitalization: var(--evgTabsFontCapitalization);
  --backgroundColor: var(--itemBackgroundColor);
  color: var(--fontColor);
  font-size: var(--fontSize);
  font-family: var(--fontFamily);
  font-weight: var(--fontWeight);
  line-height: var(--lineHeight);
  text-transform: var(--capitalization);
  background: var(--backgroundColor);
  display: inline-block;
  border-radius: var(--borderRadius) var(--borderRadius) 0 0;
  padding: 10px 15px 5px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.evergreen .evergreen-tabs ul li a:not(.evergreen--selected):hover {
  --fontColor: var(--fontColorHover);
  --backgroundColor: var(--itemBackgroundColorHover);
  color: var(--fontColor);
  background: var(--backgroundColor);
}

.evergreen .evergreen-tabs ul li a.evergreen--selected,
.evergreen .evergreen-tabs ul li a.evergreen-active {
  --fontColor: var(--fontColorActive);
  --backgroundColor: var(--itemBackgroundColorActive);
  pointer-events: none;
  cursor: default;
  color: var(--fontColor);
  background: var(--backgroundColor);
}

/* List */
.evergreen ul:not(.evergreen-styleless-list),
.evergreen ol:not(.evergreen-styleless-list) {
  --bulletStyle: var(--evgListBulletStyle);
  --bulletcolor: var(--evgListBulletColor);
  --fontFamily: var(--evgListFontFamily);
  --fontSize: var(--evgListFontSizeL);
  --fontColor: var(--evgListFontColor);
  --fontWeight: var(--evgListFontWeight);
  --fontStyle: var(--evgListFontStyle);
  --lineHeight: var(--evgListFontLineHeight);
  --capitalization: var(--evgListFontCapitalization);
  --textDecoration: var(--evgListDecorationTextDecoration);
  --textDecorationColor: var(--evgListDecorationTextDecorationColor);
}

.evergreen ul:not(.evergreen-styleless-list) li,
.evergreen ol:not(.evergreen-styleless-list) li {
  color: var(--fontColor);
  font-size: var(--fontSize);
  font-family: var(--fontFamily);
  font-weight: var(--fontWeight);
  font-style: var(--fontStyle);
  line-height: var(--lineHeight);
  text-transform: var(--capitalization);
  text-decoration: var(--textDecoration);
  text-decoration-color: var(--textDecorationColor);
}

.evergreen ul:not(.evergreen-styleless-list) li {
  list-style: var(--bulletStyle);
}

.evergreen ul li::marker,
.evergreen ol li::marker {
  color: var(--bulletcolor);
}

/* Pager */
.evergreen .evergreen-pager,
.evergreen .evergreen-pager .evergreen-pager-list,
.evergreen .evergreen-pager .evergreen-pager-list-item {
  --fontFamily: var(--evgPaginationFontFamily);
  --fontSize: var(--evgPaginationFontSizeL);
  --fontColor: var(--evgPaginationFontColor);
  --fontAltColor: var(--evgPaginationFontAltColor);
  --fontHoverColor: var(--evgPaginationFontHoverColor);
  --fontWeight: var(--evgPaginationFontWeight);
  --borderColor: var(--evgPaginationBorderColor);
  --borderHoverColor: var(--evgPaginationBorderHoverColor);
  --borderActiveColor: var(--evgPaginationBorderActiveColor);
  --borderRadius: var(--evgPaginationBorderRadius);
  --backgroundColor: var(--evgPaginationBackgroundColor);
  --backgroundHoverColor: var(--evgPaginationBackgroundHoverColor);
  --backgroundActiveColor: var(--evgPaginationBackgroundActiveColor);
  --outlineFocusColor: var(--evgPaginationOutlineFocusColor);
}

.evergreen .evergreen-pager-button {
  background: var(--backgroundColor);
  border: 1px solid var(--borderColor);
  border-radius: var(--borderRadius, 0);
  color: var(--fontColor);
  font-family: var(--fontFamily);
  font-size: var(--fontSize);
  font-weight: var(--fontWeight);
  text-decoration: none;
}

.evergreen .evergreen-pager-button:not(.js--disabled):hover,
.evergreen .evergreen-pager-button:not(.evergreen-pager-button--disabled):hover {
  background: var(--backgroundHoverColor);
  border-color: var(--borderHoverColor);
  color: var(--fontHoverColor);
}

.evergreen .evergreen-pager-button.js--active,
.evergreen .evergreen-pager-button.evergreen-pager-button--active {
  background: var(--backgroundActiveColor);
  border-color: var(--borderActiveColor);
  color: var(--fontAltColor);
}

.evergreen .evergreen-pager-button:not(.js--disabled):focus,
.evergreen .evergreen-pager-button:not(.js--disabled):focus-visible,
.evergreen .evergreen-pager-button:not(.evergreen-pager-button--disabled):focus,
.evergreen .evergreen-pager-button:not(.evergreen-pager-button--disabled):focus-visible {
  outline-color: var(--outlineFocusColor);
}

/* Input */
.evergreen .evergreen-input,
.evergreen input {
  --fontFamily: var(--evgInputFontFamily);
  --fontColor: var(--evgInputFontColor);
  --fontSize: var(--evgInputFontSizeL);
  --placeholderFontColor: var(--evgInputPlaceholderColor);
  --fontWeight: var(--evgInputFontWeight);
  --lineHeight: var(--evgInputFontLineHeight);
  --capitalization: var(--evgInputFontCapitalization);
  --borderColor: var(--evgInputBorderColor);
  --borderFocusColor: var(--evgInputBorderFocusColor);
  --borderRadius: var(--evgInputBorderRadius);
  --backgroundColor: var(--evgInputBackgroundColor);
  font-family: var(--fontFamily);
  font-size: var(--fontSize);
  color: var(--fontColor);
  font-weight: var(--fontWeight);
  line-height: var(--lineHeight);
  text-transform: var(--capitalization);
  border: 1px solid var(--borderColor);
  border-radius: var(--borderRadius);
  background: var(--backgroundColor);
  transition: all 0.3s ease-in-out;
}

.evergreen .evergreen-input:focus,
.evergreen input:focus {
  border-color: var(--borderFocusColor);
  outline-color: var(--borderFocusColor);
}

.evergreen .evergreen-input::placeholder,
.evergreen input::placeholder {
  color: var(--placeholderFontColor);
  visibility: var(--evgInputShowPlaceholder);
}

/* Label */
.evergreen .evergreen-label,
.evergreen label,
.evergreen legend {
  --fontFamily: var(--evgInputFontFamily);
  --fontSize: var(--evgInputSecondaryFontSizeL);
  --fontColor: var(--evgInputSecondaryFontColor);
  --fontWeight: var(--evgInputSecondaryFontWeight);
  --lineHeight: var(--evgInputSecondaryFontLineHeight);
  --capitalization: var(--evgInputSecondaryFontCapitalization);
  font-family: var(--fontFamily);
  font-size: var(--fontSize);
  color: var(--fontColor);
  font-weight: var(--fontWeight);
  line-height: var(--lineHeight);
  text-transform: var(--capitalization);
}

/* Module Specific Styling */
.evergreen {
  background: var(--evgModuleBackgroundColor);
  border-radius: var(--evgModuleBackgroundBorderRadius);
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
}

.evergreen .evergreen-title,
.evergreen .evergreen-title .ModuleTitle {
  --fontSize: var(--evgModuleNameFontSizeL);
  --fontColor: var(--evgModuleNameFontColor);
  --fontFamily: var(--evgModuleNameFontFamily);
  --fontWeight: var(--evgModuleNameFontWeight);
  --capitalization: var(--evgModuleNameFontCapitalization);
  --lineHeight: var(--evgModuleNameFontLineHeight);
  --alignment: var(--evgModuleNameFontAlignment);
}

.evergreen .evergreen-title, .evergreen .evergreen-title .ModuleTitle {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--fontColor);
  font-size: var(--fontSize);
  font-family: var(--fontFamily);
  font-weight: var(--fontWeight);
  text-transform: var(--capitalization);
  line-height: var(--lineHeight);
  text-align: var(--alignment);
}

.evergreen .evergreen-item {
  --backgroundColor: var(--evgModuleBackgroundItemBackgroundColor);
  --borderRadius: var(--evgModuleBackgroundItemBorderRadius);
  --padding: var(--evgPaddingItemPadding);
  --borderBottom: var(--evgModuleItemUnderline);
  --borderBottomStyle: var(--evgModuleItemUnderlineStyle);
  --borderBottomColor: var(--evgModuleItemUnderlineColor);
  background: var(--backgroundColor);
  border-radius: var(--borderRadius);
  padding: 30px var(--padding) 10px var(--padding);
  border-bottom: var(--borderBottom);
  border-bottom-style: var(--borderBottomStyle);
  border-bottom-color: var(--borderBottomColor);
}

.evergreen .evergreen-financial-details_report-container,
.evergreen .evergreen-latest-quarter-report-documents {
  --backgroundColor: var(--evgModuleBackgroundItemBackgroundColor);
  --borderRadius: var(--evgModuleBackgroundItemBorderRadius);
  background: var(--backgroundColor);
  border-radius: var(--borderRadius);
}

.evergreen-financial-table--outer {
  border-radius: var(--evgTableBorderRadius);
}

.evergreen-dividend-history-container {
  border-radius: var(--evgTableBorderRadius);
  overflow: hidden;
}

.evergreen .evergreen-item-container tbody,
.evergreen .evergreen-item-container tr,
.evergreen .evergreen-item-container tr:nth-child(even) {
  --backgroundColor: var(--evgModuleBackgroundItemBackgroundColor);
  background: var(--backgroundColor);
  border: none;
  border-collapse: collapse;
}

.evergreen .evergreen-item tr,
.evergreen .evergreen-item tr:nth-child(even) {
  --borderBottom: var(--evgModuleItemUnderline);
  --borderBottomStyle: var(--evgModuleItemUnderlineStyle);
  --borderBottomColor: var(--evgModuleItemUnderlineColor);
  border-bottom: var(--borderBottom);
  border-bottom-style: var(--borderBottomStyle);
  border-bottom-color: var(--borderBottomColor);
}

.evergreen .evergreen-item-container.evergreen-item-one-column {
  display: grid;
  grid-template-columns: 1fr;
  padding-bottom: 16px;
}

.evergreen .evergreen-item-container.evergreen-item-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.evergreen .evergreen-item-title,
.evergreen a.evergreen-item-title,
.evergreen .evergreen-item-detail-title {
  --fontSize: var(--evgModuleItemTitleFontSizeL);
  --fontFamily: var(--evgModuleItemTitleFontFamily);
  --fontWeight: var(--evgModuleItemTitleFontWeight);
  --lineHeight: var(--evgModuleItemTitleFontLineHeight);
  --capitalization: var(--evgModuleItemTitleFontCapitalization);
  font-size: var(--fontSize);
  font-family: var(--fontFamily);
  color: var(--fontColor);
  font-weight: var(--fontWeight);
  line-height: var(--lineHeight);
  text-transform: var(--capitalization);
}

.evergreen .evergreen-item-subtitle {
  --fontSize: var(--evgModuleItemSubtitleFontSizeL);
  --fontColor: var(--evgModuleItemSubtitleFontColor);
  --fontFamily: var(--evgModuleItemSubtitleFontFamily);
  --fontWeight: var(--evgModuleItemSubtitleFontWeight);
  --lineHeight: var(--evgModuleItemSubtitleFontLineHeight);
  --capitalization: var(--evgModuleItemSubtitleFontCapitalization);
  font-size: var(--fontSize);
  font-family: var(--fontFamily);
  color: var(--fontColor);
  font-weight: var(--fontWeight);
  line-height: var(--lineHeight);
  text-transform: var(--capitalization);
}

.evergreen .evergreen-item-title:not(:hover):not(:focus),
.evergreen a.evergreen-item-title:not(:hover):not(:focus),
.evergreen .evergreen-item-detail-title {
  --fontColor: var(--evgModuleItemTitleFontColor);
  font-size: var(--fontSize);
  font-family: var(--fontFamily);
  color: var(--fontColor);
  font-weight: var(--fontWeight);
  line-height: var(--lineHeight);
  text-transform: var(--capitalization);
}

.evergreen a.evergreen-item-title:hover {
  --fontColor: var(--evgModuleItemTitleFontHoverColor);
  font-size: var(--fontSize);
  font-family: var(--fontFamily);
  color: var(--fontColor);
  font-weight: var(--fontWeight);
  line-height: var(--lineHeight);
  text-transform: var(--capitalization);
}

.evergreen a.evergreen-item-title:focus,
.evergreen a.evergreen-item-title:focus-visible {
  --fontColor: var(--evgModuleItemTitleFontFocusColor);
  color: var(--fontColor);
}

.evergreen .evergreen-item-date-time {
  --fontSize: var(--evgDateTimeFontSizeL);
  --fontColor: var(--evgDateTimeFontColor);
  --fontFamily: var(--evgDateTimeFontFamily);
  --fontWeight: var(--evgDateTimeFontWeight);
  --capitalization: var(--evgDateTimeFontCapitalization);
  --lineHeight: var(--evgDateTimeFontLineHeight);
  font-size: var(--fontSize);
  font-family: var(--fontFamily);
  color: var(--fontColor);
  font-weight: var(--fontWeight);
  line-height: var(--lineHeight);
  text-transform: var(--capitalization);
}

/* Custom Grid */
.evergreen .evergreen-grid-row {
  --grid-col: var(--evergreen-grid-col, 1);
  display: grid;
  grid-template-columns: repeat(var(--grid-col), minmax(0, 1fr));
  grid-template-rows: repeat(1, 1fr);
  grid-column-gap: 0;
  grid-row-gap: 0;
  margin: 0;
  padding: 0;
}

.evergreen .evergreen-grid-row .evergreen-grid-column {
  margin: 0;
  padding: var(--evergreen-grid-col-p);
  background: var(--evergreen-grid-col-bg, transparent);
}

/** Grid Tablet **/
@media only screen and (max-width: 1024px) and (min-width: 481px) {
  .evergreen .evergreen-grid-row {
    grid-template-columns: repeat(var(--evergreen-grid-col-tablet), minmax(0, 1fr));
  }
  .evergreen .evergreen-grid-row .evergreen-grid-column {
    padding: var(--evergreen-grid-col-p-tablet);
  }
}
/** Grid Mobile **/
@media only screen and (max-width: 480px) {
  .evergreen .evergreen-grid-row {
    grid-template-columns: repeat(var(--evergreen-grid-col-mobile), minmax(0, 1fr));
  }
  .evergreen .evergreen-grid-row .evergreen-grid-column {
    padding: var(--evergreen-grid-col-p-mobile);
  }
}
/** Responsive Tablet **/
@media only screen and (max-width: 1024px) and (min-width: 481px) {
  .evergreen {
    --fontSize: var(--evgBodyFontSizeM);
    padding-top: 25px;
    padding-bottom: 25px;
  }
  /* Text Editor */
  .evergreen p {
    --fontSize: var(--evgBodyFontSizeM);
    font-size: var(--fontSize);
  }
  .evergreen h1 {
    font-size: var(--evgH1FontSizeM);
    font-family: var(--evgH1FontFamily);
  }
  .evergreen h2 {
    font-size: var(--evgH2FontSizeM);
    font-family: var(--evgH2FontFamily);
  }
  .evergreen h3 {
    --fontSize: var(--evgH3FontSizeM);
  }
  .evergreen h4 {
    font-size: var(--evgH4FontSizeM);
    font-family: var(--evgH4FontFamily);
  }
  .evergreen h5 {
    font-size: var(--evgH5FontSizeM);
    font-family: var(--evgH5FontFamily);
  }
  .evergreen caption {
    --fontSize: var(--evgCaptionFontSizeM);
  }
  /* TODO: Text editor buttons have Link Font Weight applied to them. */
  /* Hyperlink */
  .evergreen .evergreen-link,
.evergreen.evergreen-text-editor a:not([class*=evergreen-button]) {
    --fontSize: var(--evgHyperlinkFontSizeM);
    font-size: var(--fontSize);
  }
  /* Default Button */
  .evergreen .button, .evergreen .evergreen-button {
    --fontSize: var(--evgButtonFontSizeM);
    font-size: var(--fontSize);
  }
  .evergreen .evergreen-icon-button::before {
    font-size: var(--evgButtonFontSizeM);
  }
  /* Alt Button */
  .evergreen .button--alt, .evergreen .evergreen-button--alt {
    --fontSize: var(--evgButtonAltFontSizeM);
    font-size: var(--fontSize);
  }
  .evergreen-icon-button .evergreen-icon-button--alt::before {
    font-size: var(--evgButtonAltFontSizeM);
  }
  /* Dropdown */
  .evergreen .evergreen-dropdown {
    --fontSize: var(--evgDropdownFontSizeM);
    font-size: var(--fontSize);
  }
  /* Accordion */
  .evergreen .evergreen-accordion-header,
.evergreen .evergreen-accordion button,
.evergreen .evergreen-accordion button .evergreen-accordion-title,
.evergreen .evergreen-accordion button .accordion-toggle-icon {
    font-size: var(--evgAccordionFontSizeM);
  }
  .evergreen .evergreen-accordion button .evergreen-accordion-subtitle {
    font-size: var(--evgAccordionSubtitleFontSizeM);
  }
  .evergreen .evergreen-accordion-content .evergreen-accordion-title {
    font-size: var(--evgH3FontSizeM);
  }
  .evergreen .evergreen-accordion-content-text,
.evergreen .evergreen-accordion-content-text p {
    font-size: var(--evgBodyFontSizeM);
  }
  /* Carousel */
  .evergreen .evergreen-carousel-display-item-subtitle-text,
.evergreen .evergreen-carousel-display-item-text,
.evergreen .evergreen-carousel-slider-item-text {
    font-size: var(--evgBodyFontSizeM);
  }
  .evergreen .evergreen-carousel-display-item-header-text {
    font-size: var(--evgH3FontSizeM);
  }
  /* Tabs */
  .evergreen .evergreen-tabs {
    font-size: var(--evgTabsFontSizeM);
  }
  /* Module Styling */
  .evergreen .evergreen-title, .evergreen .evergreen-title .ModuleTitle {
    --fontSize: var(--evgModuleNameFontSizeM);
  }
  .evergreen .evergreen-item-title,
.evergreen a.evergreen-item-title,
.evergreen .evergreen-item-detail-title {
    --fontSize: var(--evgModuleItemTitleFontSizeM);
    font-size: var(--fontSize);
  }
  .evergreen .evergreen-item-subtitle {
    --fontSize: var(--evgModuleItemSubtitleFontSizeM);
    font-size: var(--fontSize);
  }
  .evergreen .evergreen-item-date-time {
    --fontSize: var(--evgDateTimeFontSizeM);
  }
  /* Pager */
  .evergreen .evergreen-pager,
.evergreen .evergreen-pager .evergreen-pager-list,
.evergreen .evergreen-pager .evergreen-pager-list-item {
    --fontSize: var(--evgPaginationFontSizeM);
    font-size: var(--fontSize);
  }
  /* List */
  .evergreen ul,
.evergreen ol {
    --fontSize: var(--evgListFontSizeM);
  }
  /* Input */
  .evergreen .evergreen-input,
.evergreen input {
    --fontSize: var(--evgInputFontSizeM);
    font-size: var(--fontSize);
  }
  /* Label */
  .evergreen .evergreen-label,
.evergreen label,
.evergreen legend {
    --fontSize: var(--evgInputSecondaryFontSizeM);
    font-size: var(--fontSize);
  }
}
/** Responsive Mobile **/
@media only screen and (max-width: 480px) {
  .evergreen {
    --fontSize: var(--evgBodyFontSizeS);
    padding-top: 20px;
    padding-bottom: 20px;
  }
  /* Text Editor */
  .evergreen p {
    --fontSize: var(--evgBodyFontSizeS);
    font-size: var(--fontSize);
  }
  .evergreen h1 {
    font-size: var(--evgH1FontSizeS);
    font-family: var(--evgH1FontFamily);
  }
  .evergreen h2 {
    font-size: var(--evgH2FontSizeS);
    font-family: var(--evgH2FontFamily);
  }
  .evergreen h3 {
    --fontSize: var(--evgH3FontSizeS);
  }
  .evergreen h4 {
    font-size: var(--evgH4FontSizeS);
    font-family: var(--evgH4FontFamily);
  }
  .evergreen h5 {
    font-size: var(--evgH5FontSizeS);
    font-family: var(--evgH5FontFamily);
  }
  .evergreen caption {
    --fontSize: var(--evgCaptionFontSizeS);
  }
  /* Hyperlink */
  .evergreen .evergreen-link,
.evergreen.evergreen-text-editor a:not([class*=evergreen-button]) {
    --fontSize: var(--evgHyperlinkFontSizeS);
    font-size: var(--fontSize);
  }
  /* Default Button */
  .evergreen .button,
.evergreen .evergreen-button {
    --fontSize: var(--evgButtonFontSizeS);
    font-size: var(--fontSize);
  }
  .evergreen .evergreen-icon-button::before {
    font-size: var(--evgButtonFontSizeS);
  }
  /* Alt Button */
  .evergreen .button--alt,
.evergreen .evergreen-button--alt {
    --fontSize: var(--evgButtonAltFontSizeS);
    font-size: var(--fontSize);
  }
  .evergreen-icon-button .evergreen-icon-button--alt::before {
    font-size: var(--evgButtonAltFontSizeS);
  }
  /* Dropdown */
  .evergreen .evergreen-dropdown {
    --fontSize: var(--evgDropdownFontSizeS);
    font-size: var(--fontSize);
  }
  /* Accordion */
  .evergreen .evergreen-accordion-header,
.evergreen .evergreen-accordion button,
.evergreen .evergreen-accordion button .evergreen-accordion-title,
.evergreen .evergreen-accordion button .accordion-toggle-icon {
    font-size: var(--evgAccordionFontSizeS);
  }
  .evergreen .evergreen-accordion button .evergreen-accordion-subtitle {
    font-size: var(--evgAccordionSubtitleFontSizeS);
  }
  .evergreen .evergreen-accordion-content .evergreen-accordion-title {
    font-size: var(--evgH3FontSizeS);
  }
  .evergreen .evergreen-accordion-content-text,
.evergreen-accordion-content-text p {
    font-size: var(--evgBodyFontSizeS);
  }
  /* Carousel */
  .evergreen .evergreen-carousel-display-item-subtitle-text,
.evergreen .evergreen-carousel-display-item-text,
.evergreen .evergreen-carousel-slider-item-text {
    font-size: var(--evgBodyFontSizeS);
  }
  .evergreen .evergreen-carousel-display-item-header-text {
    font-size: var(--evgH3FontSizeS);
  }
  /* Tabs */
  .evergreen .evergreen-tabs {
    font-size: var(--evgTabsFontSizeS);
  }
  /* Module Styling */
  .evergreen .evergreen-title,
.evergreen .evergreen-title .ModuleTitle {
    --fontSize: var(--evgModuleNameFontSizeS);
  }
  .evergreen .evergreen-item-title,
.evergreen a.evergreen-item-title,
.evergreen .evergreen-item-detail-title {
    --fontSize: var(--evgModuleItemTitleFontSizeS);
    font-size: var(--fontSize);
  }
  .evergreen .evergreen-item-subtitle {
    --fontSize: var(--evgModuleItemSubtitleFontSizeS);
    font-size: var(--fontSize);
  }
  .evergreen .evergreen-item-date-time {
    --fontSize: var(--evgDateTimeFontSizeS);
  }
  /* Pager */
  .evergreen .evergreen-pager,
.evergreen .evergreen-pager .evergreen-pager-list,
.evergreen .evergreen-pager .evergreen-pager-list-item {
    --fontSize: var(--evgPaginationFontSizeS);
    font-size: var(--fontSize);
  }
  /* List */
  .evergreen ul,
.evergreen ol {
    --fontSize: var(--evgListFontSizeS);
  }
  /* Input */
  .evergreen .evergreen-input,
.evergreen input {
    --fontSize: var(--evgInputFontSizeS);
    font-size: var(--fontSize);
  }
  /* Label */
  .evergreen .evergreen-label,
.evergreen label,
.evergreen legend {
    --fontSize: var(--evgInputSecondaryFontSizeS);
    font-size: var(--fontSize);
  }
}
/* ---------- FAQ Module ---------- */
.module-faq_question {
  margin-top: 0;
  cursor: pointer;
  position: relative;
}
.module-faq_question button {
  width: 100%;
  text-align: left;
}
.module-faq_answer {
  padding: 15px;
  margin: 0 0 15px 0;
  background-color: #f8f1f3;
}
.module-faq_answer p:first-child {
  margin-top: 0;
}
.module-faq_answer p:last-child {
  margin-bottom: 0;
}
.module-faq .module_item {
  padding: 0;
  border-top: 1px solid #c4c4c4;
}
.module-faq .module_item:last-child {
  border-bottom: 1px solid #c4c4c4;
}
.module-faq .module_item > h4, .module-faq .module_item > .h4 {
  margin: 0;
  padding: 0;
  color: #cd173f;
}
.module-faq .module_item > h4 button, .module-faq .module_item > .h4 button {
  color: inherit;
  width: 100%;
  padding: 20px 0;
  font-family: "din-2014", sans-serif;
  font-size: 1.8rem;
  line-height: 2.8rem;
  font-weight: 500;
  background: unset;
  border: unset;
}
.module-faq .module_item > h4 button::before, .module-faq .module_item > .h4 button::before {
  font-family: "q4-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\edc2";
  float: right;
  margin-left: 10px;
  color: #cd173f;
  font-weight: 700;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.module-faq .module_item.js--active > h4, .module-faq .module_item.js--active > .h4 {
  color: #141c1f;
}
.module-faq .module_item.js--active > h4 button::before, .module-faq .module_item.js--active > .h4 button::before {
  content: "\edba";
}
.module-faq .module_item.js--active button {
  color: #cd173f;
}
.module-faq .toggle-all {
  margin-bottom: 30px;
}
.module-faq .toggle-all .button {
  letter-spacing: 1.5px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 50px;
  background-color: #cd173f;
  margin-left: 0;
}
.module-faq .toggle-all .button:hover {
  background-color: #9a1130;
}

/* --- Financial Report Modules --- */
.module-financial-year .module_options {
  text-align: left;
}
.module-financial-year .module_cover {
  margin-bottom: 15px;
}
.module-financial-year .module_cover img {
  display: inline-block;
  vertical-align: top;
}
.module-financial-year .module_item {
  padding: 0;
}
.module-financial-year .module_item ~ .module_item {
  border: none;
}
.module-financial-year .module_fiscal {
  text-transform: none;
}
.module-financial-year .module_link {
  font-weight: 600;
}
.module-financial-year .module_link .q4icons_icon {
  content: url('../design/svg/pdf-icon.svg');
  height: 16px;
  margin-right: 15px;
}
.module-financial-year-option1 .module-financial_year {
  text-align: center;
}
.module-financial-year-option1 .module-financial_annual-archive {
  position: relative;
}
.module-financial-year-option1 .module-financial_annual-archive .module_links--stack {
  margin-top: 90px;
  position: absolute;
}
@media only screen and (max-width: 768px) {
  .module-financial-year-option1 .module-financial_annual-archive .module_links--stack {
    position: relative;
    margin-top: 75px;
  }
}
@media only screen and (max-width: 480px) {
  .module-financial-year-option1 .module-financial_annual-archive .module_links--stack {
    margin-top: 0;
  }
}
@media only screen and (max-width: 768px) {
  .module-financial-year-option1 .module-financial_annual-archive {
    margin-top: 25px;
  }
}
.module-financial-year-option1 .module_options {
  position: absolute;
  left: 50%;
}
@media only screen and (max-width: 480px) {
  .module-financial-year-option1 .module_options {
    position: relative;
    left: 0;
  }
}
.module-financial-year-option1 .module_options-label {
  color: #333;
  font-size: 1.2rem;
  font-weight: 500;
}
.module-financial-year-option1 .module_options-select {
  border-color: #f3f7f9;
  min-width: 172px;
}
.module-financial-year-option1 .module_options-label, .module-financial-year-option1 .module_options-select {
  margin-left: 5px;
  display: block;
}
@media only screen and (max-width: 480px) {
  .module-financial-year-option1 .module_options-label, .module-financial-year-option1 .module_options-select {
    margin-left: 0;
  }
}
.module-financial-year-option1 .module_doc {
  margin-bottom: 18px;
}
.module-financial-year-option1 .module_doc-title {
  text-transform: none;
  font-weight: 500;
  margin: 0 0 10px 0;
}
.module-financial-year-option1 .module_links {
  margin: 0;
}
.module-financial-year-option2 {
  background-color: #f8f1f3;
}
.module-financial-year-option3 .module_cover {
  text-align: right;
}
.module-financial-year-option3 .module_cover img {
  width: 195px;
}
@media only screen and (max-width: 768px) {
  .module-financial-year-option3 .module_cover {
    text-align: center;
  }
  .module-financial-year-option3 .module_cover img {
    max-width: 100%;
  }
}
@media only screen and (min-width: 1220px) {
  .module-financial-year-option3 .module_cover {
    text-align: right;
    padding-left: 0;
    padding-right: 27px;
  }
}
.module-financial-year-option3 .module table {
  width: 100%;
}
.module-financial-year-option3 .module table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
}
.module-financial-year-option3 .module table td.module-financial-table_item.visible-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding: 20px 37px;
}
.module-financial-year-option3 .module table td.module-financial-table_item.visible-track span {
  margin-left: 5px;
  margin-right: 5px;
}
@media only screen and (max-width: 540px) {
  .module-financial-year-option3 .module table td.module-financial-table_item.visible-track span {
    width: 50%;
    margin: 0 0 10px;
  }
}
.module-financial-year-option3 .module table .module-financial-table_column-year {
  opacity: 0;
  visibility: hidden;
  position: relative;
  transform: translateX(0);
  z-index: 1;
  transition: transform 500ms ease, opacity 600ms ease-in, visibility 600ms ease-in;
}
.module-financial-year-option3 .module table .module-financial-table_column-year.visible-track {
  opacity: 1;
  display: block;
  visibility: visible;
}
.module-financial-year-option3 .module_link {
  margin-bottom: 18px;
}
.module-financial-year-option3 .module_link-text {
  background: url('../design/svg/q4-icon_chevron-right.svg') no-repeat right center;
  vertical-align: baseline;
  padding-right: 17px;
  transition: 0.3s ease-in;
}
.module-financial-year-option3 .module_link-text:hover {
  padding-right: 22px;
}
.module-financial-year-option3 .module_link .q4icons_icon {
  height: 27px;
}
@media only screen and (max-width: 480px) {
  .module-financial-year-option3 .module_link .q4icons_icon {
    height: 20px;
    margin-right: 10px;
  }
}
@media only screen and (min-width: 1220px) {
  .module-financial-year-option3 .module_links {
    padding-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1220px) {
  .module-financial-year-option3 .module_links {
    padding-left: 25px;
  }
}
@media only screen and (max-width: 768px) {
  .module-financial-year-option3 .module_links {
    text-align: center;
  }
}
@media only screen and (max-width: 768px) {
  .module-financial-year-option3 .module_docs {
    display: inline-block;
    text-align: left;
    margin-left: 70px;
  }
}
@media only screen and (max-width: 480px) {
  .module-financial-year-option3 .module_docs {
    margin-right: calc(50% - 65vw);
    margin-left: calc(50% - 50vw);
  }
}
.module-financial-year-option3 .splide__arrow--next {
  right: 0;
}
.module-financial-year-option3 .splide__arrow--prev {
  left: 0;
}
.module-financial-quarter .module_options label {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 1.8rem;
}
.module-financial-quarter .module_options select {
  font-size: 1.6rem;
  line-height: 2.4rem;
}
.module-financial-quarter .module_item {
  padding: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.module-financial-quarter .module_item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.module-financial-quarter .module_item.js--active h3 button::before {
  content: "\edba";
}
.module-financial-quarter .module_item.js--active button::before {
  content: "\edba";
}
.module-financial-quarter .module_links {
  background-color: #f8f1f3;
  margin: 0 0 15px 0;
  padding: 30px 15px;
}
.module-financial-quarter .module_links > .grid_col {
  display: inline-block;
  padding-right: 20px;
}
.module-financial-quarter .module_link {
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
}
.module-financial-quarter .module_link-text {
  margin-left: 0.9rem;
}
.module-financial-quarter .module-financial_year-text {
  padding: 0;
  margin: 0;
  color: #333;
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
}
.module-financial-quarter .module-financial_year-text button {
  cursor: pointer;
  background: transparent;
  border: none;
  color: inherit;
  text-align: left;
  text-transform: uppercase;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  width: 100%;
  padding: 20px 0;
}
.module-financial-quarter .module-financial_year-text button::before {
  float: right;
  font-family: "q4-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\edc2";
  color: #cd173f;
}
.module-financial-table .module_container--content {
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  -webkit-box-shadow: 0 0 33px -18px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0 0 33px -18px rgba(0, 0, 0, 0.75);
  box-shadow: 0 0 33px -18px rgba(0, 0, 0, 0.75);
}
.module-financial-table table {
  width: 100%;
}
.module-financial-table table caption {
  caption-side: bottom;
  text-align: left;
  padding: 5px 15px;
  font-size: 1.2rem;
}
.module-financial-table table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
}
.module-financial-table table td.module-financial-table_item.visible-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding: 20px 37px;
}
.module-financial-table table td.module-financial-table_item.visible-track span {
  margin-left: 5px;
  margin-right: 5px;
}
@media only screen and (max-width: 540px) {
  .module-financial-table table td.module-financial-table_item.visible-track span {
    width: 50%;
    margin: 0 0 10px;
  }
}
.module-financial-table table .module-financial-table_column-year {
  opacity: 0;
  visibility: hidden;
  position: relative;
  transform: translateX(0);
  z-index: 1;
  transition: transform 500ms ease, opacity 600ms ease-in, visibility 600ms ease-in;
}
.module-financial-table table .module-financial-table_column-year.visible-track {
  opacity: 1;
  display: block;
  visibility: visible;
}
.module-financial-table_column {
  padding: 20px 15px;
  width: 25%;
}
.module-financial-table_column:not(thead):not(th) {
  background-color: #fff;
}
.module-financial-table_column-year {
  text-align: center;
  user-select: none;
}
.module-financial-table_column-report {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  background: #f8f1f3;
  text-align: left;
}
.module-financial-table_column.doc:not(:last-child) {
  margin-right: 15px;
}
.module-financial-table_container-years {
  display: inline-block;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.module-financial-table .doc-link--missing:hover {
  color: #cd173f;
  cursor: not-allowed;
}
.module-financial-table .doc-missing {
  opacity: 0.3;
}
.module-financial-table_header {
  display: flex;
  background-color: #9a1130;
  color: #fff;
}
.module-financial-table_header-year {
  padding: 20px 15px;
  flex: 0 0 auto;
}
.module-financial-table_header .module-financial-table_track {
  display: inline-flex;
}
.module-financial-table_track {
  display: flex;
  will-change: transform;
  transition: transform 500ms ease;
  z-index: 1;
}
.module-financial-table_track-arrow {
  background: transparent;
  box-shadow: none;
  background-color: transparent;
  border: none;
  color: white;
  font-size: 1.6rem;
  position: absolute;
  top: 23px;
  z-index: 3;
}
.module-financial-table_track-arrow:not(.module-financial-table_track-arrow--disabled) {
  cursor: pointer;
}
.module-financial-table_track-arrow--disabled {
  opacity: 0.3;
}
.module-financial-table_track-arrow--left {
  left: 20px;
}
.module-financial-table_track-arrow--right {
  right: 20px;
}
.module-financial-table_track td {
  background-color: white;
}
@media screen and (min-width: calc(768px + 1px)) {
  .module-financial-mashup .module_options {
    margin-bottom: 0;
  }
}
.module-financial-mashup .grid_col {
  margin-right: 0;
}
.module-financial-mashup_item {
  margin-left: 0;
  padding: 20px 20px 20px 0;
  border: 1px solid #2a3035;
}
.module-financial-mashup_item .grid_col > :first-child {
  margin-top: 0;
}
.module-financial-mashup .module_body {
  max-height: 300px;
  overflow: hidden;
  position: relative;
}
.module-financial-mashup .module_body > *:first-child, .module-financial-mashup .module_body > style + p {
  margin-top: 0;
}
.module-financial-mashup .module_body::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50px;
  z-index: 1;
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0.5) 0%, rgb(255, 255, 255) 70%, rgb(255, 255, 255) 100%);
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.5) 0%, rgb(255, 255, 255) 70%, rgb(255, 255, 255) 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, rgb(255, 255, 255) 70%, rgb(255, 255, 255) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#70ffffff", endColorstr="#ffffff", GradientType=0);
}
.module-financial-mashup h4,
.module-financial-mashup .h4 {
  margin-top: 16px;
}
.module-financial-mashup .module-financial-mashup_documents .h4 {
  margin-top: 0;
}
.module-financial-mashup .module-financial-mashup_documents .module_links + h4, .module-financial-mashup .module-financial-mashup_documents .module_links + .h4 {
  margin-top: 30px;
}
.module-financial-mashup .module-financial-mashup_documents .module_links > div {
  background-color: #f8f1f3;
  padding: 15px;
  margin-bottom: 1px;
}
.module-financial-mashup .module-financial-mashup_documents .module_links .module_link {
  margin: 0;
  font-weight: 600;
}
.module-financial-mashup .module-financial-mashup_documents .module_links .module_link-text {
  margin-left: 0.9rem;
}
.module-financial-mashup .module-financial-mashup_documents .module_links--dark a {
  color: #2a3035;
}
.module-financial-mashup .module-financial-mashup_documents .module_links--dark a span:last-child {
  font-size: 0.8rem;
  margin-left: 0.5rem;
}
.module-financial-mashup_news .h3 {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.8rem;
}
.module-financial-mashup_news .h4 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 3rem;
}
.module-financial-mashup_news .module_links {
  font-weight: 600;
}
.module-financial-mashup .button {
  width: 100%;
  min-width: auto;
  border-radius: 25px 25px 0 0;
  border-bottom: 0;
  outline-offset: 2px;
}
.module-financial-mashup .button.js--selected {
  background: #9a1130;
  color: #fff;
}
@media only screen and (min-width: calc(768px + 1px)) {
  .module-financial-mashup .module_options--mobile {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .module-financial-mashup .module_options--desktop {
    display: none;
  }
}
.module-financial-latest {
  position: relative;
  z-index: 0;
  background-image: url('../design/banner/banner-financial-latest.jpg');
}
.module-financial-latest::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.module-financial-latest .grid_col {
  margin-bottom: 25px;
}
.module-financial-latest .module_link {
  margin: 0;
}
.module-financial-latest .module_link .q4icons_icon::before {
  display: inline-block;
  font-size: 5rem;
  padding: 0;
  width: 92px;
  height: 92px;
  line-height: 92px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 100%;
  transition: background-color 0.25s ease-in-out;
}
.module-financial-latest .module_link.module_link-presentation .q4icons_icon::before {
  content: "\e913" !important;
}
.module-financial-latest .module_link:hover .q4icons_icon::before {
  background-color: white;
}
.module-financial-latest .module_link:hover .module_link-text {
  color: #fff;
  text-decoration: inherit;
}
.module-financial-latest .module_link-text {
  display: block;
  margin: 15px 0 0;
  font-size: 1.8rem;
  text-transform: none;
  font-weight: 500;
}
.module-financial-latest .module-financial_type-text {
  margin-top: 10px;
  font-size: 4.8rem;
  line-height: 5.8rem;
  font-weight: 500;
  text-align: center;
}
.module-financial-latest .module-financial_year-text {
  margin-top: 15px;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 3.4rem;
  letter-spacing: 2px;
}
@media only screen and (max-width: 1024px) {
  .module-financial-latest .module_links {
    border-left: 0;
  }
  .module-financial-latest .module_link {
    margin: 0 0 15px;
  }
  .module-financial-latest .grid_col {
    vertical-align: middle;
  }
}
.module-financial-latest .button--cta:hover {
  color: #fff;
  text-decoration: underline;
}
.module-financial-latest .button--dark {
  background-color: transparent;
}
.module-financial-latest .button--dark:hover, .module-financial-latest .button--dark:focus {
  background-color: #cd173f;
}
@media only screen and (max-width: 768px) {
  .module-financial-latest .module_item > div:first-child {
    margin-bottom: 30px;
  }
}
.module-financial-columns_item {
  display: grid;
  grid-template-columns: repeat(auto-fill, 28rem);
  gap: 2rem;
  grid-auto-flow: row;
}
@media only screen and (max-width: 480px) {
  .module-financial-columns_item {
    grid-template-columns: 1fr;
    align-items: center;
  }
}
.module-financial-columns .module_options {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.module-financial-columns .module_options label {
  display: block;
  font-size: 1.8rem;
  margin-right: 0;
  margin-bottom: 1.8rem;
  width: 18.2rem;
}
.module-financial-columns .module_options select {
  font-size: 1.6rem;
  line-height: 2.4rem;
  width: 18.2rem;
}
.module-financial-columns .module_item {
  background-color: #fff;
  width: 280px;
  margin-bottom: 3rem;
  border-radius: 5px;
  padding: 0;
  border: none;
  -webkit-box-shadow: 0 2px 25px rgba(0, 0, 0, 0.077087);
  box-shadow: 0 2px 25px rgba(0, 0, 0, 0.077087);
}
.module-financial-columns .module_item:first-child .module-financial_year-text {
  color: #fff;
  width: 100%;
  background-color: #9a1130;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.module-financial-columns .module-financial_year-text {
  color: #141c1f;
  background-color: #eceff0;
  font-family: "din-2014", sans-serif;
  width: 13rem;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 2.8rem;
  padding: 1rem 0 1rem 2.4rem;
  margin: 0;
  border-top-left-radius: 5px;
  transition: 0.2s;
}
.module-financial-columns .module_links a {
  position: relative;
  text-transform: none;
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.8rem;
  margin: 2.2rem 0 0 2rem;
}
.module-financial-columns .module_links a:not(:last-child)::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 195px; /* or 100px */
  left: 1.2rem;
  bottom: -1.3rem;
  border-bottom: 2px solid #efefef;
}
.module-financial-columns .module_links .module_link-text {
  margin-left: 3rem;
}

/* ------ Formbuilder Module ------ */
.module-form-request {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}
.module-form-request .module_actions button {
  margin: 0;
}
.module-form--custom.module {
  padding-top: 0;
}
.module-form--custom .module_container--content {
  display: none;
}
.module-form--custom .module_container--content.js--visible {
  display: block;
}
.module-form .module_container--content {
  margin-left: -20px;
}
@media only screen and (max-width: 768px) {
  .module-form .module_container--content {
    margin-left: 0;
  }
}
.module-form .module_error-container li[style="visibility: hidden;"] {
  display: none;
}
.module-form .module_required {
  margin-left: 3px;
}
.module-form .module_container--captcha > div {
  margin: 0;
  padding: 0;
}
.module-form .module_container--captcha > div .ErrorMessage {
  display: block;
  margin-top: 10px;
  font-size: 1.4rem;
  color: #b72121;
}
.module-form .module_container--captcha > div .ErrorMessage[style="visibility: hidden;"] {
  display: none;
}
.module-form_item {
  display: inline-block;
  width: 50%;
  margin-bottom: 20px;
  padding-left: 20px;
  vertical-align: top;
}
.module-form_item > label,
.module-form_item legend {
  display: inline-block;
  margin-bottom: 5px;
  font-size: 1.2rem;
}
.module-form_item legend {
  float: left;
  margin-bottom: 15px;
  font-size: 1.6rem;
}
.module-form_item legend ~ ul {
  clear: both;
  padding-left: 10px;
  font-size: 12px;
}
.module-form_item ul li:not(:last-of-type) {
  padding-bottom: 5px;
}
.module-form_item--document-request, .module-form_item--are-you-an-investor {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .module-form_item {
    width: 100%;
    padding-left: 0;
  }
}
.module-form_error-text {
  color: #b72121;
  margin: 0 0 15px 0;
}
.module-form_error-text[style*="visibility:hidden"], .module-form_error-text[style*="visibility: hidden"] {
  display: none;
}
.module-form .CaptchaContainer {
  display: block;
}
.module-form .CaptchaContainer input[type=text] {
  width: 100%;
}
.fancybox-slide--form .fancybox-content {
  margin: 10px auto;
  max-width: 1000px;
  width: 80% !important;
  height: calc(100% - 20px);
  overflow: visible;
}
@media only screen and (max-width: 480px) {
  .fancybox-slide--form .fancybox-content {
    width: 95% !important;
  }
}
.fancybox-slide--form_confirmation .fancybox-content {
  max-width: 700px;
}
.fancybox-slide--form .fancybox-button--close {
  display: none;
}

.module-form button[type=submit] {
  min-width: 18rem;
}

.module-form--meeting {
  padding: 0 20px !important;
  background-color: #fff;
}
.module-form--meeting .module_container--outer {
  padding: 0 !important;
}
.module-form--meeting_header {
  padding: 20px !important;
}
.module-form--meeting_header .module_container--outer {
  padding: 0 !important;
}
@media screen and (min-width: 769px) {
  .module-form--meeting_header {
    padding: 20px !important;
  }
  .module-form--meeting_header .grid {
    direction: rtl;
  }
  .module-form--meeting_header .grid .grid_col {
    direction: ltr;
  }
}
.module-form--meeting_header-intro {
  font-size: 1.3rem;
}
@media only screen and (max-width: 768px) {
  .module-form--meeting_header-intro {
    text-align: center;
  }
}
.module-form--meeting_header-intro h3,
.module-form--meeting_header-intro .h3 {
  margin: 0 0 10px 0;
  color: inherit;
  font-size: 2.6rem;
}
.module-form--meeting_header-intro p {
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .module-form--meeting_header-logo {
    text-align: center;
    margin-bottom: 10px;
  }
}
.module-form--meeting_header-logo span {
  font-size: 1.1rem;
  display: block;
}
.module-form--meeting_header-logo img {
  margin: 5px;
}
.module-form--meeting_footer {
  background-color: #141c1f;
  color: #fff;
  font-size: 1.3rem;
}
.module-form--meeting_footer img {
  margin-right: 20px;
  vertical-align: bottom;
}
.module-form--meeting .module_introduction {
  font-size: 1.3rem;
  margin: 0;
}
.module-form--meeting .module_introduction > p:first-child {
  margin-top: 0;
  padding-top: 13px;
}
.module-form--meeting .module-form_item label,
.module-form--meeting .module-form_item legend {
  line-height: 15px;
  vertical-align: top;
}
.module-form--meeting .module-form_item--namehidden .module_input {
  margin-top: 20px;
}
.module-form--meeting .module-form_item--namehidden label {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
}
@media only screen and (min-width: 769px) {
  .module-form--meeting .module-form_item--additional-information-optional {
    width: 75%;
  }
}
.module-form--meeting .module-form_item--date-request-optional {
  position: relative;
}
@media only screen and (min-width: 769px) {
  .module-form--meeting .module-form_item--date-request-optional {
    width: 25%;
  }
}
.module-form--meeting .module-form_item--date-request-optional::before {
  font-family: "q4-icons"; /* stylelint-disable-line font-family-no-missing-generic-family-keyword */
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e921";
  position: absolute;
  right: 20px;
  bottom: calc(50% - 19px);
  color: #616161;
  display: none;
}
.module-form--meeting .module-form_item--date-request-optional .ui-datepicker-trigger {
  position: absolute;
  right: 13px;
  top: 35px;
  background: transparent;
  border: none;
}
.module-form--meeting .module-form_item--current-shareholder {
  display: block;
}
.module-form--meeting .module-form_item--current-shareholder legend {
  margin-bottom: 0;
}
@media only screen and (max-width: 480px) {
  .module-form--meeting .module-form_item--current-shareholder legend {
    display: block;
    float: none;
  }
}
.module-form--meeting .module-form_item--current-shareholder ul {
  display: inline-block;
  padding-left: 20px;
}
@media only screen and (max-width: 480px) {
  .module-form--meeting .module-form_item--current-shareholder ul {
    display: block;
    padding-left: 0;
    padding-top: 10px;
  }
}
.module-form--meeting .module-form_item--current-shareholder ul li {
  padding-left: 20px;
  display: inline-block;
  vertical-align: top;
}
@media only screen and (max-width: 480px) {
  .module-form--meeting .module-form_item--current-shareholder ul li {
    padding-left: 0;
    padding-right: 20px;
  }
}
.module-form--meeting .module-form_item--consent-checkbox {
  width: 100%;
}
.module-form--meeting .module-form_item--consent-checkbox label {
  padding-left: 30px;
  position: relative;
}
.module-form--meeting .module-form_item--consent-checkbox label::before, .module-form--meeting .module-form_item--consent-checkbox label::after {
  position: absolute;
  left: 0;
  top: 50% !important;
  transform: translateY(-50%);
}
.module-form--meeting .module-form_item--consent-checkbox label::after {
  left: 3px;
}
.module-form--meeting .module-form_itemCaptcha {
  position: relative;
  padding-left: 25px;
}
.module-form--meeting .module-form_itemCaptcha input[type=text] {
  color: #2a3035;
}
.module-form--meeting .module_dropdown {
  color: #2a3035;
}
.module-form--meeting .module_input {
  color: #2a3035;
}
.module-form--meeting .module_required {
  display: none;
}
.module-form--meeting .module_actions {
  margin: 0 -20px;
  padding: 20px;
  background-color: #4a4a4a;
  text-align: right;
  color: #fff;
}
.module-form--meeting .module_actions .module_link {
  color: #fff;
  margin: 0 15px 0 0;
  text-decoration: none;
  text-transform: none;
  font-size: 1.4rem;
}
.module-form--meeting .module_actions [type=submit][disabled] {
  opacity: 0.5;
  pointer-events: none;
}
.module-form--meeting .module_actions button {
  color: #fff;
}
.module-form--meeting .module_actions button.button-close {
  background: none;
  border: 0;
  cursor: pointer;
}
.module-form--meeting .module_actions button:focus {
  outline-color: #fff;
}
.module-form--meeting_confirmation {
  font-size: 1.8rem;
  text-align: center;
  max-width: 520px;
  margin: auto;
}
.module-form--meeting_confirmation .module_container--inner::before {
  font-family: "q4-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e920";
  font-size: 4.6rem;
  color: #000;
  display: block;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .module-form--meeting .module-form_item--namehidden .module_input {
    margin-top: 0;
  }
}

/* ------ Glossary Module ------ */
.module-glossary .module_header {
  display: block;
}
.module-glossary .module_header table {
  width: 100%;
  table-layout: fixed;
}
.module-glossary .module_header table a {
  color: #2a3035;
  font-weight: normal;
}
.module-glossary .module_header table a[href] {
  color: #141c1f;
}

/* ---------- HISTORY Module ---------- */
.module-history .option-1 {
  padding: 0 calc(6% + 25px);
}
.module-history .option-1 h3 {
  color: #333;
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 400;
  margin: 0;
}
.module-history .option-1 .module_date-time {
  color: #333;
  font-size: 1.2rem;
  padding-top: 27px;
}
.module-history .option-1 .module_description {
  display: none;
}
.module-history .option-1 .splide__slide {
  padding: 0 20px;
}
.module-history .option-1 .splide__slide img {
  display: none;
}
.module-history .option-1 .splide__slide::before {
  content: "";
  display: block;
  background: #cd173f;
  height: 18px;
  width: 18px;
  border-radius: 100px;
  z-index: 999;
  position: relative;
  right: 20px;
  top: 10px;
}
.module-history .option-1 .splide__slide::after {
  content: "";
  position: absolute;
  display: block;
  height: 48px;
  width: 1px;
  background: #cd173f;
  border-radius: 100%;
  top: 22px;
  left: 8px;
  z-index: 0;
  margin: auto;
  transform: translateZ(-1px);
}
.module-history .option-1 .splide__slide.is-active {
  padding: 0 0 0 40px;
}
.module-history .option-1 .splide__slide.is-active::before {
  content: "";
  background-image: url('../design/svg/oval-active.svg');
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  right: 40px;
  top: 0;
}
.module-history .option-1 .splide__slide.is-active::after {
  left: 20px;
}
.module-history .option-1 .splide__arrow {
  top: 22px;
}
.module-history .option-1::before {
  content: "";
  position: relative;
  display: block;
  height: 5px;
  background: #cd173f;
  border-radius: 100px;
  top: 22px;
  z-index: 0;
  margin: auto;
  transform: translateZ(-1px);
}
.module-history .option-2 {
  padding-top: 30px;
}
.module-history .option-2 h3 {
  color: #141c1f;
  font-size: 1.8rem;
  line-height: 2.8rem;
  font-weight: 500;
  margin: 10px 0;
}
.module-history .option-2 .module_date-time {
  color: #cd173f;
  font-size: 2.8rem;
  line-height: 3.4rem;
  font-weight: 700;
  margin: 10px 0;
}
.module-history .option-2 .splide__slide {
  position: relative;
}
.module-history .option-2 .splide__slide:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 25px;
  right: -18px;
  width: 1px;
  height: 85%;
  background-color: #e0e0e0;
}
.module-history .option-2 .splide__slide img {
  width: 100%;
}
.module-history .option-2 .splide__arrow {
  top: 0;
}
.module-history .option-2 .splide__arrow--prev {
  right: 64px;
  left: unset;
}
.module-history .option-2 .splide__arrow--next {
  right: 0;
}
.module-history .option-3 {
  display: flex;
}
.module-history .option-3 h3 {
  color: #fff;
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 400;
  margin: 0;
  text-wrap: balance;
}
.module-history .option-3 img {
  width: 100%;
}
.module-history .option-3 .module_date-time {
  color: #fff;
  font-size: 2rem;
  line-height: 3rem;
  font-weight: 700;
  margin: 0;
}
.module-history .option-3 .list-left {
  margin-top: -25px;
  flex-basis: 50%;
}
.module-history .option-3 .list-left .module-item {
  text-align: right;
  position: relative;
  padding-right: 15%;
  padding-left: 15%;
}
.module-history .option-3 .list-left .module-item:not(:first-child) {
  margin-top: 100px;
}
.module-history .option-3 .list-left .module-item:nth-child(even) {
  display: none;
}
.module-history .option-3 .list-left .module-item::before {
  content: "";
  display: block;
  background: #cd173f;
  height: 18px;
  width: 18px;
  border-radius: 100px;
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  translate: 50% 50%;
}
.module-history .option-3 .list-left .module-item::after {
  content: "";
  position: absolute;
  display: block;
  height: 1px;
  width: 10%;
  background: #cd173f;
  right: 0;
  top: 18px;
  z-index: 0;
  margin: auto;
  transform: translateZ(-1px);
}
@media only screen and (max-width: 480px) {
  .module-history .option-3 .list-left {
    display: none;
  }
}
.module-history .option-3 .list-right {
  flex-basis: 50%;
}
.module-history .option-3 .list-right .module-item {
  position: relative;
  padding-left: 15%;
  padding-right: 15%;
}
.module-history .option-3 .list-right .module-item:not(:first-child) {
  margin-top: 100px;
}
.module-history .option-3 .list-right .module-item:nth-child(odd) {
  display: none;
}
@media only screen and (max-width: 480px) {
  .module-history .option-3 .list-right .module-item:nth-child(odd) {
    display: block;
  }
}
.module-history .option-3 .list-right .module-item:nth-child(2) {
  margin-top: 10%;
}
.module-history .option-3 .list-right .module-item::before {
  content: "";
  display: block;
  background: #cd173f;
  height: 18px;
  width: 18px;
  border-radius: 100px;
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  translate: -50% 50%;
}
.module-history .option-3 .list-right .module-item::after {
  content: "";
  position: absolute;
  display: block;
  height: 1px;
  width: 10%;
  background: #cd173f;
  left: 0;
  top: 18px;
  z-index: 0;
  margin: auto;
  transform: translateZ(-1px);
}
@media only screen and (max-width: 480px) {
  .module-history .option-3 .list-right {
    flex-basis: 100%;
    margin-top: -25px;
  }
}
.module-history .option-3 .list-divider {
  background-color: #F3F7F9;
  position: relative;
  width: 1px;
}
.module-history .option-4 {
  padding: 0 40px;
  position: relative;
}
.module-history .option-4 h3 {
  color: #545b62;
  font-size: 1.2rem;
  line-height: 2.2rem;
  font-weight: 400;
  margin: 0;
}
.module-history .option-4 .splide__track {
  margin: 0 10px;
}
.module-history .option-4 .splide__list {
  align-items: flex-end;
}
.module-history .option-4 .splide__slide {
  border: 0;
}
.module-history .option-4 .splide__slide img {
  display: none;
}
.module-history .option-4 .splide__slide .module_date-time {
  color: #fff;
  background-color: #cd173f;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.8rem;
  width: fit-content;
  padding: 5px 25px;
  position: relative;
  right: 35px;
  margin-bottom: 20px;
}
.module-history .option-4 .splide__slide .module_date-time::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 0 solid transparent;
  border-top: 8px solid #cd173f;
  clear: both;
}
.module-history .option-4 .splide__slide .module_description {
  display: none;
}
.module-history .option-4 .splide__slide .module_item {
  padding: 5px 25px 25px;
  margin: 25px 7px 55px;
  position: relative;
  box-shadow: 0 2px 10px 0 rgba(51, 51, 51, 0.2980392157);
  background-color: #fff;
}
.module-history .option-4 .splide__slide .module_item ~ .module_item {
  border-top: none;
  background-color: #fff;
}
.module-history .option-4 .splide__slide .module_item::before {
  content: "";
  display: block;
  background: #cd173f;
  height: 9px;
  width: 9px;
  border-radius: 100px;
  z-index: 999;
  position: absolute;
  bottom: -55px;
  left: 40%;
}
.module-history .option-4 .splide__slide .module_item::after {
  content: "";
  position: absolute;
  left: 42%;
  top: 100%;
  width: 0;
  height: 0;
  border-left: 0 solid transparent;
  border-right: 38px solid transparent;
  border-top: 35px solid #fff;
  clear: both;
  filter: drop-shadow(-2px 4px 3px rgba(51, 51, 51, 0.2980392157));
}
.module-history .option-4 .splide__slide:focus {
  outline-offset: -2px;
}
.module-history .option-4 .splide__slide.is-active {
  border: 0;
}
.module-history .option-4 .splide__slide.is-active .module_item {
  background-color: #9a1130;
}
.module-history .option-4 .splide__slide.is-active .module_item h3 {
  color: #fff;
  font-weight: 700;
}
.module-history .option-4 .splide__slide.is-active .module_item .module_date-time {
  color: #cd173f;
  background-color: #fff;
}
.module-history .option-4 .splide__slide.is-active .module_item .module_description {
  display: block;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 2.2rem;
  color: #fff;
}
.module-history .option-4 .splide__slide.is-active .module_item::before {
  background: #297ac5;
}
.module-history .option-4 .splide__slide.is-active .module_item::after {
  border-top: 35px solid #9a1130;
}
.module-history .option-4 .splide__arrow {
  bottom: -35px;
  top: unset;
}
.module-history .option-4::before {
  content: "";
  position: absolute;
  display: block;
  height: 2px;
  background: #e0e0e0;
  border-radius: 100px;
  bottom: 3px;
  width: calc(100% - 60px);
  z-index: 0;
  margin: auto;
  right: 0;
  left: 0;
}

/* ------------------ IR Overview > Why Invest ------------------- */
@media screen and (min-width: 481px) {
  .module-ir-overview-why-invest .splide__slide:not(:last-child) {
    position: relative;
  }
  .module-ir-overview-why-invest .splide__slide:not(:last-child) .module-ir-overview-why-invest_column::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    right: -24px;
    width: 1px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
  }
}
.module-ir-overview-why-invest_title {
  font-family: "din-2014", sans-serif;
  font-size: 4.8rem;
  font-weight: 500;
  line-height: 1.21;
  color: #cd173f;
}
.module-ir-overview-why-invest_detail {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.56;
}

#why-invest {
  margin-bottom: 77px;
}
@media screen and (min-width: 769px) {
  #why-invest {
    margin-bottom: 57px;
  }
  #why-invest .splide__arrow:disabled {
    opacity: 0;
  }
}
#why-invest .splide__arrows {
  position: absolute;
  bottom: -60px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 24px;
}
#why-invest .splide__arrow {
  position: relative;
  top: unset;
  left: unset;
  right: unset;
  transform: unset;
}

/* ---------- Job Modules --------- */
.module-job-details_description-container {
  margin-bottom: 35px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.module-job-details_description {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.module-job-details_description label {
  font-weight: normal;
}
.module-job-details_description input {
  width: auto;
  max-width: none;
  padding: 0;
  border: none;
  float: right;
  font-family: "din-2014", sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 0;
}
@media only screen and (max-width: 480px) {
  .module-job-details_description label::after {
    content: ":";
  }
  .module-job-details_description input {
    display: block;
    float: none;
    margin-top: 5px;
  }
}
.module-job-details .grid_col {
  padding: 15px 20px;
}
.module-job-application_table {
  display: block;
  width: 100%;
  margin-left: -20px;
  font-size: 0;
}
.module-job-application_table tr {
  display: inline-block;
  width: 50%;
  margin-bottom: 20px;
  padding-left: 20px;
  vertical-align: top;
  font-size: 1.6rem;
}
.module-job-application_table tr:last-child {
  margin-bottom: 0;
}
.module-job-application_table tr.module-job-application_cover-letter-text, .module-job-application_table tr.module-job-application_resume-text {
  width: 100%;
}
.module-job-application_table tr td {
  display: block;
  position: relative;
}
.module-job-application_table tr label {
  display: inline-block;
  margin-bottom: 5px;
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .module-job-application_table {
    margin-left: 0;
  }
  .module-job-application_table tr {
    width: 100%;
    padding-left: 0;
  }
}
.module-job-application .module_required {
  font-size: 1.4rem;
}

/* ----- Miscellaneous Modules ---- */
.module-script {
  display: none;
}

.module-slideshow_ratio {
  padding-bottom: 56.25%;
  /* this should be changed with aspecRatio option in widget */
  position: relative;
}
.module-slideshow_viewer:not(.grid_col) {
  display: inline-block;
  width: 100%;
  max-width: 640px;
}
.module-slideshow_viewer:not(.grid_col):not(:last-child) {
  margin-bottom: 25px;
}
.module-slideshow_featured {
  padding: 0 40px;
}
@media (max-width: 1024px) {
  .module-slideshow_featured {
    padding: unset;
  }
}
.module-slideshow_title {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 2.8rem;
}
.module-slideshow_date {
  color: #141c1f;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.4rem;
  margin-bottom: 10px;
}
.module-slideshow .module_links > * + * {
  margin-top: 15px;
}
.module-slideshow_link {
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
}
.module-slideshow iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
}

.module-rss p + h2 {
  margin: 40px 0 30px;
}

.big-text {
  font-size: 30px;
  line-height: 1.1;
}

.module-privacy-policy h3,
.module-terms-of-use h3 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 3.4rem;
  margin: 24px 0 16px 0;
  color: #ee3124 !important;
}

/* ------ Navigation Modules ------ */
.nav_close {
  display: none;
}
.nav_guide {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
@media only screen and (max-width: 1024px) {
  .nav_guide {
    display: none;
  }
}
.nav a[tabindex="-1"]:focus {
  /* navigation needs this for accessibility purpose  */
  outline-width: 2px !important;
  outline-style: dotted !important;
  outline-color: inherit !important;
}
.nav--main {
  text-align: right;
  font-size: 1.3rem;
}
.nav--main button.submenu-trigger {
  /* removing default button styling for dropdown menu buttons */
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
}
.nav--main li {
  display: inline-block;
  position: relative;
}
.nav--main li a {
  display: block;
  padding: 10px 5px;
  color: #2a3035;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media only screen and (max-width: 1200px) {
  .nav--main li a {
    text-transform: none;
    letter-spacing: 0;
  }
}
.nav--main li.selected > a, .nav--main li.expanded:not(.home) > a,
.nav--main li a:hover,
.nav--main li a:focus,
.nav--main li button:focus a {
  color: #141c1f;
}
.nav--main .level2 {
  display: inline-block;
  vertical-align: top;
}
.nav--main .level2 > li {
  padding: 10px 0;
}
.nav--main .level3 {
  display: none;
  background-color: #141c1f;
  padding: 20px 10px;
  text-align: left;
  white-space: nowrap;
  position: absolute;
  z-index: 200;
  left: calc(50% - 30px);
  top: 100%;
  min-width: 200px;
}
.nav--main .level3::before {
  content: "";
  border-bottom: 11px solid #141c1f;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  position: absolute;
  top: -10px;
  left: 15px;
}
.nav--main li:last-child > .level3 {
  right: calc(50% - 30px);
  left: auto;
}
.nav--main li:last-child > .level3::before {
  left: auto;
  right: 15px;
}

.nav--main li.sfHover > .level3 {
  display: block;
}

.nav--main .level3 li {
  display: block;
}
.nav--main .level3 li.selected > a, .nav--main .level3 li.expanded > a {
  color: #fff;
}
.nav--main .level3 a {
  color: #fff;
  padding: 10px;
  text-transform: none;
}
.nav--main .level3 a:hover, .nav--main .level3 a:focus {
  color: #fff;
  text-decoration: underline;
}
.nav--main .js--expanded .level3 {
  display: block;
}
.nav--secondary {
  background: #cd173f;
  text-align: center;
  line-height: 1.25;
  letter-spacing: 1px;
}
.js--sticky .nav--secondary {
  position: fixed;
  width: 100%;
  z-index: 200;
  box-shadow: rgba(0, 0, 0, 0.2) 0 2px 20px;
}

@media only screen and (max-width: 1024px) {
  .nav--secondary {
    display: none;
  }
}
.nav--secondary .level1 {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (max-width: 1024px) {
  .nav--secondary .level1 {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }
}
.nav--secondary .level1 > li {
  display: none;
}
.nav--secondary .level1 > li.selected, .nav--secondary .level1 > li.expanded {
  display: block;
}
.nav--secondary .level1 > li.selected > a, .nav--secondary .level1 > li.expanded > a {
  display: none;
}
.nav--secondary .level2 > li {
  display: none;
}
.nav--secondary .level2 > li.selected, .nav--secondary .level2 > li.expanded {
  display: block;
}
.nav--secondary .level2 > li.selected > a, .nav--secondary .level2 > li.expanded > a {
  display: none;
}
.nav--secondary .level2 > li.has-children:focus .level3[style*=none] {
  display: block !important;
}
.nav--secondary .level3 {
  text-align: center;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: center;
}
@media screen and (min-width: 1025px) {
  .nav--secondary .level3 {
    /* to override superfish on desktop */
    display: flex !important;
    opacity: 1 !important;
  }
}

.nav--secondary .level3 > li {
  display: inline-block;
  vertical-align: top;
}
.nav--secondary .level3 > li a {
  background-color: #cd173f;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15px 20px;
}
.nav--secondary .level3 > li a:hover, .nav--secondary .level3 > li a:focus {
  background: #9A1030;
  text-decoration: none;
}
.nav--secondary .level3 > li a:focus {
  margin: 2px;
  padding: 13px 18px;
}
.nav--secondary .level3 > li.selected a {
  background: #9A1030;
}
.nav--secondary .level3 > li:has(> a:focus) {
  position: relative;
}
.nav--secondary .level3 > li:has(:is([aria-label="Overview within the Social Commitment section"], [aria-label="Public Awareness within the Social Commitment section"])) {
  display: none;
}
.nav--sitemap {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.nav--sitemap a {
  display: inline-block;
}
.nav--sitemap .level1 > li:not(:last-of-type),
.nav--sitemap .level2 > li:not(:last-of-type) {
  margin-bottom: 35px;
}
.nav--sitemap .level1 > li > h2,
.nav--sitemap .level2 > li > h2 {
  margin-bottom: 5px;
  line-height: 2.4rem;
}
.nav--sitemap .level1 > li > h2 > a, .nav--sitemap .level1 > li > h2 > a:visited,
.nav--sitemap .level2 > li > h2 > a,
.nav--sitemap .level2 > li > h2 > a:visited {
  margin-bottom: 15px;
  font-size: 2.4rem;
  color: #fff;
  text-transform: uppercase;
  font-weight: normal;
}
.nav--sitemap .level2 {
  margin-top: 20px;
}
.nav--sitemap .level2 > li > h2 a {
  margin-bottom: 5px;
}
.nav--sitemap .level3 > li {
  padding: 5px 0;
  padding-left: 15px;
}
.nav--sitemap .level3 > li > h3, .nav--sitemap .level3 > li > a {
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}
.nav--sitemap .level3 > li > h3:hover, .nav--sitemap .level3 > li > a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.nav--sitemap .level4 > li {
  padding: 5px 0;
  padding-left: 15px;
}

/* ==================================
 ---------- NEW NAV START ----------
================================== */
.nav--mobile {
  display: none;
  width: 100%;
  background-color: #000;
  overflow-y: auto;
  position: fixed;
  will-change: transform;
  top: 0;
  height: 100%;
  box-shadow: rgba(0, 0, 0, 0.2) 0 8px 24px;
  z-index: 300;
  overflow: initial;
}
.nav--mobile.right {
  right: 0;
}
.nav--mobile.left {
  left: 0;
  transform: translateX(-100%);
}
.nav--mobile.top {
  right: 0;
  transform: translateY(-120%);
}
@media only screen and (max-width: 768px) {
  .nav--mobile.top {
    transform: translateY(-200%);
  }
}
.js--mobile .nav--mobile {
  transform: translateY(65px);
}

@media only screen and (min-width: 1042px) {
  .nav--mobile {
    display: none;
  }
}
.nav--mobile--toggle {
  display: none;
  font-size: 2.4rem;
  color: #000;
  background: transparent;
  border: 0 none;
  margin: 0;
  padding: 0;
  outline-color: #000;
  position: absolute;
  top: 21px;
  right: 20px;
}
.nav--mobile--toggle[aria-expanded=false] {
  color: #000;
}
.nav--mobile--toggle [class^=q4-icon_]:focus,
.nav--mobile--toggle [class*=" q4-icon_"]:focus {
  outline: none;
}
.nav--mobile--toggle .q4-icon_menu.close {
  display: none;
}
@media only screen and (max-width: 1042px) {
  .nav--mobile--toggle {
    display: block;
  }
}
.nav--mobile--toggle.right {
  right: 20px;
}
.nav--mobile--inner_toggle_container .nav--mobile--toggle {
  position: static;
  color: #fff;
  float: none;
  transform: translate(-10px, -45px);
}
.nav--mobile--inner_toggle_container .nav--mobile--toggle .q4-icon_menu.close {
  display: block;
}
.nav--mobile--inner_toggle_container .nav--mobile--toggle .q4-icon_menu.close::before {
  content: "\ed6d";
  font-size: 20px;
}
.nav--mobile--inner_toggle_container .nav--mobile--toggle.right {
  margin-left: auto;
}
.nav--mobile--inner_toggle_container .nav--mobile--toggle [class^=q4-icon_]::before,
.nav--mobile--inner_toggle_container .nav--mobile--toggle [class*=" q4-icon_"]::before {
  font-size: 2.5rem;
  content: "\ed6d";
}
.nav--mobile--search_container {
  display: block;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 1.4rem;
  padding: 17px 24px;
  min-height: 73px;
  background-color: #000;
  width: 100%;
}
.nav--mobile--search_container--input {
  -webkit-box-shadow: 0 0 0 30px #000 inset !important;
  -webkit-text-fill-color: #fff !important;
  border: none;
  border-bottom: 1px solid;
  left: 0;
  padding: 10px 35px 10px 0;
  width: 90%;
  color: #fff !important;
  font-size: 16px;
  line-height: 19.5px;
  font-weight: 500;
  -webkit-appearance: none;
  font-family: "din-2014", sans-serif;
}
.nav--mobile--search_container--btn {
  position: absolute;
  right: 20px;
  font-size: 23px;
  color: #fff;
  background-color: transparent;
  border: none;
  padding: 10px 15px;
}
.nav--mobile--expand--topMenu--menuItem, .nav--mobile--panel--topMenu--menuItem {
  display: block;
  position: relative;
  width: fit-content;
}
.nav--mobile--expand--topMenu--menuItem:hover, .nav--mobile--panel--topMenu--menuItem:hover {
  text-decoration: underline;
}
.nav--mobile--expand--topMenu--menuItem .link,
.nav--mobile--expand--topMenu--menuItem .button, .nav--mobile--panel--topMenu--menuItem .link,
.nav--mobile--panel--topMenu--menuItem .button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 0;
  margin: 0 10px;
  width: calc(100% - 20px);
  font-weight: normal;
  letter-spacing: 0.5px;
  background-color: transparent;
  text-transform: capitalize;
  color: #fff;
  border: none;
  min-width: auto;
  transition: none;
}
.nav--mobile--expand--topMenu--menuItem .link:focus,
.nav--mobile--expand--topMenu--menuItem .button:focus, .nav--mobile--panel--topMenu--menuItem .link:focus,
.nav--mobile--panel--topMenu--menuItem .button:focus {
  outline-color: #fff !important;
  border-radius: 0;
}
.nav--mobile--expand--topMenu--menuItem.selected > a .icon,
.nav--mobile--expand--topMenu--menuItem.selected > a .text,
.nav--mobile--expand--topMenu--menuItem.selected > button .icon,
.nav--mobile--expand--topMenu--menuItem.selected > button .text, .nav--mobile--expand--topMenu--menuItem.expanded > a .icon,
.nav--mobile--expand--topMenu--menuItem.expanded > a .text,
.nav--mobile--expand--topMenu--menuItem.expanded > button .icon,
.nav--mobile--expand--topMenu--menuItem.expanded > button .text, .nav--mobile--panel--topMenu--menuItem.selected > a .icon,
.nav--mobile--panel--topMenu--menuItem.selected > a .text,
.nav--mobile--panel--topMenu--menuItem.selected > button .icon,
.nav--mobile--panel--topMenu--menuItem.selected > button .text, .nav--mobile--panel--topMenu--menuItem.expanded > a .icon,
.nav--mobile--panel--topMenu--menuItem.expanded > a .text,
.nav--mobile--panel--topMenu--menuItem.expanded > button .icon,
.nav--mobile--panel--topMenu--menuItem.expanded > button .text {
  font-weight: bold;
  color: #fff;
}
.nav--mobile--expand--topMenu--menuItem .button, .nav--mobile--panel--topMenu--menuItem .button {
  width: fit-content;
  border: none;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  min-width: auto;
}
.nav--mobile--expand--topMenu--menuItem .button .text, .nav--mobile--panel--topMenu--menuItem .button .text {
  display: inline-block;
}
.nav--mobile--expand--topMenu--menuItem .button .icon, .nav--mobile--panel--topMenu--menuItem .button .icon {
  margin-left: 5px;
  display: inline-block;
}
.nav--mobile--expand--topMenu--menuItem .button .icon.q4-icon_chevron-right, .nav--mobile--panel--topMenu--menuItem .button .icon.q4-icon_chevron-right {
  font-size: 8px;
  font-weight: bold;
}
.nav--mobile--expand--topMenu--menuItem.has-innerMenu > button:hover, .nav--mobile--panel--topMenu--menuItem.has-innerMenu > button:hover {
  text-decoration: underline;
}
.nav--mobile--expand--innerMenu, .nav--mobile--panel--innerMenu {
  margin-left: 25px !important;
}
.nav--mobile--panel--topMenu {
  padding: 20px 20px 15px 9px !important;
  max-height: 100vh;
  overflow-y: auto;
}
.nav--mobile--panel--topMenu--menuItem {
  position: static;
  display: block;
}
.nav--mobile--panel--innerMenu {
  margin-left: 0 !important;
  will-change: transform;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 20px 20px 60px 9px !important;
  background-color: #000;
  overflow-y: auto;
}
.nav--mobile--panel--innerMenu.right {
  right: 0;
  transform: translateX(100%);
}
.nav--mobile--panel--innerMenu.left {
  left: 0;
  transform: translateX(-100%);
}
.nav--mobile--panel--innerMenu--menuItem {
  position: static;
}
.nav--mobile--panel--innerMenu--menuItem:hover {
  text-decoration: underline;
}
.nav--mobile--panel--innerMenu--menuItem.has-innerMenu > button:hover {
  text-decoration: underline;
}
.nav--mobile--panel--innerMenu--menuItem:not(.panel-control) {
  margin-left: 20px;
}
.nav--mobile--panel--innerMenu--menuItem.selected > a .icon,
.nav--mobile--panel--innerMenu--menuItem.selected > a .text,
.nav--mobile--panel--innerMenu--menuItem.selected > button .icon,
.nav--mobile--panel--innerMenu--menuItem.selected > button .text, .nav--mobile--panel--innerMenu--menuItem.expanded > a .icon,
.nav--mobile--panel--innerMenu--menuItem.expanded > a .text,
.nav--mobile--panel--innerMenu--menuItem.expanded > button .icon,
.nav--mobile--panel--innerMenu--menuItem.expanded > button .text {
  font-weight: bold;
}
.nav--mobile--panel--innerMenu .panel-control {
  margin-top: 13px;
}
.nav--mobile--panel--innerMenu .panel-control .button {
  justify-content: start;
  font-weight: 500;
}
.nav--mobile--panel--innerMenu .panel-control .button .icon {
  margin-left: 0;
  margin-right: 8px;
  height: fit-content;
}
.nav--mobile--panel--innerMenu .panel-control .button .icon::before {
  font-weight: bold;
  font-size: 10px;
  position: relative;
  top: -3px;
}
.nav--desktop {
  font-size: 1.4rem;
}
@media only screen and (max-width: 1042px) {
  .nav--desktop {
    display: none !important;
  }
}
.nav--desktop.hoz {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
}
.nav--desktop--search_container {
  position: relative;
  font-size: 1.4rem;
  font-family: "din-2014", sans-serif;
  font-style: italic;
  color: #cd173f;
}
.nav--desktop--search_container--input {
  display: none;
  background-color: #fff;
  -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0) inset !important;
  -webkit-text-fill-color: #000 !important;
  border: 1px solid #4a4a4a;
  position: absolute;
  top: calc(100% + 19px);
  right: 0;
  padding: 10px 35px 10px 15px;
  font-family: "din-2014", sans-serif;
  font-style: italic;
}
.nav--desktop--search_container--input:focus {
  outline-color: #141c1f;
}
.nav--desktop--search_container--btn {
  position: relative;
  font-size: 15px;
  color: #000;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.nav--desktop .level0 {
  outline-color: #fff !important;
}
.nav--desktop .level0 > .selected:after,
.nav--desktop .level0 > .expanded:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #CD173F;
  position: absolute;
  bottom: 15px;
}
.nav--desktop--list--topMenu {
  display: flex;
  justify-content: flex-end;
  gap: 0;
  width: 100%;
}
.nav--desktop--list--topMenu--menuItem {
  display: inline-block;
  position: relative;
  vertical-align: middle;
}
.nav--desktop--list--topMenu--menuItem:first-child {
  display: none;
}
.nav--desktop--list--topMenu--menuItem:hover {
  background-image: linear-gradient(to right, #fff 100%, rgba(255, 255, 255, 0) 0%);
  background-position: bottom;
  background-size: 7px 3px;
  background-repeat: repeat-x;
}
.nav--desktop--list--topMenu--menuItem:hover .q4-icon_chevron-down {
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.nav--desktop--list--topMenu--menuItem .link,
.nav--desktop--list--topMenu--menuItem .button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 27.5px 12px;
  margin: 0 0;
  width: 100%;
  background: transparent;
  font-family: "din-2014", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2rem;
  text-transform: capitalize;
  color: #4a4a4a;
}
.nav--desktop--list--topMenu--menuItem .link[data-text="Social Commitment"] + .nav--desktop--list--innerMenu li:is(:first-child, :last-child),
.nav--desktop--list--topMenu--menuItem .button[data-text="Social Commitment"] + .nav--desktop--list--innerMenu li:is(:first-child, :last-child) {
  display: none;
}
.nav--desktop--list--topMenu--menuItem .button {
  border: none;
  min-width: auto;
  transition: none;
  letter-spacing: unset;
}
.nav--desktop--list--topMenu--menuItem .button:focus {
  outline-color: #fff !important;
  border-radius: 0;
}
.nav--desktop--list--topMenu--menuItem .button .text {
  display: inline-block;
}
.nav--desktop--list--topMenu--menuItem .button .icon {
  margin-left: 5px;
  display: inline-block;
  font-size: 0.75rem;
}
.nav--desktop--list--innerMenu {
  display: none;
  border-width: 0 1px;
  border-style: solid;
  -webkit-border-image: -webkit-gradient(linear, 0 100%, 0 0, from(rgba(181, 176, 172, 0.4)), to(rgba(0, 0, 0, 0))) 1 100%;
  -webkit-border-image: -webkit-linear-gradient(bottom, rgba(181, 176, 172, 0.4), rgba(0, 0, 0, 0)) 1 100%;
  -moz-border-image: -moz-linear-gradient(bottom, rgba(181, 176, 172, 0.4), rgba(0, 0, 0, 0)) 1 100%;
  -o-border-image: -o-linear-gradient(bottom, rgba(181, 176, 172, 0.4), rgba(0, 0, 0, 0)) 1 100%;
  border-image: linear-gradient(to top, rgba(181, 176, 172, 0.4), rgba(0, 0, 0, 0)) 1 100%;
  border-top: none;
  background-color: #fff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.14);
  min-width: 240px;
  outline-color: #fff;
  position: absolute;
  transition: all 0.3s ease-in-out;
  transition-behavior: allow-discrete;
}
.nav--desktop--list--innerMenu--menuItem {
  position: relative;
}
.nav--desktop--list--innerMenu--menuItem.selected a {
  color: #cd173f;
}
.nav--desktop--list--innerMenu .level2 {
  top: 0 !important;
  margin-left: 1px;
  border-top: 1px solid rgba(181, 176, 172, 0.4);
  z-index: 100;
}
.nav--desktop--list--innerMenu .link,
.nav--desktop--list--innerMenu .button {
  padding: 15px 18px;
  color: #000;
  text-transform: none;
  font-weight: 400;
  border-radius: 0;
}
.nav--desktop--list--innerMenu .link span,
.nav--desktop--list--innerMenu .button span {
  translate: 0px 0px;
  transition: translate 0.3s ease-in-out;
}
.nav--desktop--list--innerMenu .link:hover, .nav--desktop--list--innerMenu .link[aria-expanded=true],
.nav--desktop--list--innerMenu .button:hover,
.nav--desktop--list--innerMenu .button[aria-expanded=true] {
  color: #cd173f;
}
.nav--desktop--list--innerMenu .link:hover span, .nav--desktop--list--innerMenu .link[aria-expanded=true] span,
.nav--desktop--list--innerMenu .button:hover span,
.nav--desktop--list--innerMenu .button[aria-expanded=true] span {
  translate: 10px 0px;
}
.nav--desktop--list--innerMenu .link:focus,
.nav--desktop--list--innerMenu .button:focus {
  outline-color: #000 !important;
}
.nav--desktop--container .module_container--inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav--desktop--container .module_container--inner .module-logo {
  width: min(120px, 100%);
}

/* ==================================
 ----------- NEW NAV END -----------
================================== */
/* -------- News Module CSS ------- */
.module-news-list {
  background-color: #000;
}
.module-news .module_nav,
.module-news .module_thumbnail-link,
.module-news .module_more-link,
.module-news .module_links {
  display: none;
}
@media only screen and (max-width: 768px) {
  .module-news .module_options .grid_col {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .module-news .module_rss {
    margin-top: 0;
  }
}
.module-news .module_options {
  margin-bottom: 0;
}
.module-news .module_options-container {
  display: inline-flex;
  flex-direction: column;
}
.module-news .module_options-container label {
  font-size: 1.6rem;
  line-height: 2.8rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.4rem;
}
.module-news .module_options-container .dropdown {
  background: transparent url('../design/svg/arrow-down-red.svg') no-repeat right 20px center;
  color: #fff;
  border: 1px solid #fff;
  font-size: 1.6rem;
  line-height: 2.4rem;
  min-width: 200px;
}
.module-news .module_item {
  padding: 4rem 0 2.5rem;
  border-bottom: 1px solid #fff;
}
.module-news .module_headline {
  margin-bottom: 0;
}
.module-news .module_date-time {
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #ec1342;
}
.module-news .module_headline-link {
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 400;
  color: #fff;
}
.module-news .module_headline-link:hover {
  color: #fff;
  text-decoration: underline;
}
.module-news-latest {
  background-image: url('../design/banner/banner-latest-news.png');
}
.module-news-latest .module_container--content {
  display: flex;
  justify-content: stretch;
  align-items: stretch;
  padding: 0;
  margin-bottom: 20px;
}
.module-news-latest .module_container--content .slick-track {
  display: flex;
  justify-content: stretch;
  align-items: stretch;
}
.module-news-latest .module_container--content .slick-list {
  width: 100%;
}
.module-news-latest .module_date-time {
  color: #fff;
  margin-bottom: 15px;
}
.module-news-latest .module_headline {
  margin-bottom: 3.2rem;
}
.module-news-latest .module_headline-link:hover {
  color: #fff;
  text-decoration: underline;
}
.module-news-latest .module_item {
  align-self: stretch;
  border: none;
  margin: 0;
  padding: 0 0 20px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.module-news-latest .module_item-wrap {
  border-bottom: 1px solid #ddd;
  height: 100%;
}
.module-news-latest .module_item hr {
  position: absolute;
  bottom: 0;
  width: 90%;
  border: none;
  border-top: 1px solid #fff;
}
.module-news-latest .module_link-text {
  font-weight: 600;
}
.module-news-latest .module_link-text:hover {
  color: #fff;
  text-decoration: underline;
}
.module-news-latest .module_link-text + .q4-icon_chevron-right {
  margin-left: 5px;
}
.module-news-latest .latest-news {
  width: 100%;
}
.module-news-latest a:hover {
  text-decoration: underline;
}
.module-news-latest.dark .button--cta:hover {
  color: #fff;
  text-decoration: underline;
}
.module-news-latest .slick-slide {
  float: none;
  height: auto;
}
.module-news-latest-overview {
  background-image: none;
}
.module-news-latest-overview .module_item hr {
  border: none;
  border-top: 1px solid #fff;
  margin: 0;
}
.module-news-latest-overview .module_headline-link {
  color: #fff;
  font-size: 1.6rem;
}
.module-news-latest-overview .module_headline-link:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.module-news-latest-overview .module_link-container {
  color: #fff;
  position: unset;
  margin-top: auto;
}
.module-news-latest-overview .module_link-container:hover {
  text-decoration: none !important;
}
.module-news-latest-overview .module_link-container:hover .module_link-text {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.module-news-latest-overview .module_link-text {
  color: #fff;
  font-size: 1.4rem;
}
.module-news-latest-latest {
  background-image: url('../design/banner/banner-latest-news.png');
}
.module-news-latest-latest .module_container--content {
  display: flex;
  justify-content: stretch;
  align-items: stretch;
  padding: 0;
  margin-bottom: 20px;
}
.module-news-latest-latest .module_container--content .slick-track {
  display: flex;
  justify-content: stretch;
  align-items: stretch;
}
.module-news-latest-latest .module_container--content .slick-list {
  width: 100%;
}
.module-news-latest-latest .module_date-time {
  color: #fff;
  margin-bottom: 15px;
}
.module-news-latest-latest .module_headline {
  margin-bottom: 40px;
}
.module-news-latest-latest .module_headline-link:hover {
  color: #fff;
}
.module-news-latest-latest .module_item {
  align-self: stretch;
  border: none;
  margin: 0;
  padding: 0 0 20px 20px;
  position: relative;
}
.module-news-latest-latest .module_item-wrap {
  border-bottom: 1px solid #ddd;
  height: 100%;
}
.module-news-latest-latest .module_item hr {
  position: absolute;
  bottom: 0;
  width: 90%;
  border: none;
  border-top: 1px solid #fff;
}
.module-news-latest-latest .module_link-container {
  position: absolute;
  bottom: 20px;
  font-size: 1.2rem;
  text-transform: uppercase;
}
.module-news-latest-latest .module_link-text {
  font-weight: 600;
}
.module-news-latest-latest .module_link-text:hover {
  color: #fff;
  text-decoration: underline;
}
.module-news-latest-latest .module_link-text + .q4-icon_chevron-right {
  margin-left: 5px;
}
.module-news-latest-latest .latest-news {
  width: 100%;
}
.module-news-latest-latest a:hover {
  text-decoration: underline;
}
.module-news-latest-latest.dark .button--cta:hover {
  color: #fff;
  text-decoration: underline;
}
.module-news-latest-latest .slick-slide {
  float: none;
  height: auto;
}
.module-news-latest-latest-overview {
  background-image: none;
}
.module-news-latest-latest-overview .module_date-time {
  color: #333;
}
.module-news-latest-latest-overview .module_item hr {
  border: none;
  border-top: 1px solid #9a1130;
}
.module-news-latest-latest-overview .module_headline-link:hover {
  color: #fff !important;
  text-decoration: underline !important;
}
.module-news-latest-latest-overview .module_link-text:hover {
  color: #cd173f;
}
.module-news-details .module_view-all-link {
  margin-bottom: 10px;
}
.module-news-details .module_view-all-link--bottom {
  margin-top: 25px;
  margin-bottom: 0;
}
.module-news_category {
  display: none;
}
.module-news ul {
  margin: 16px 0;
  padding-left: 32px;
  list-style-type: disc;
}
.module-news ul li {
  line-height: 1.5;
}
.module-news .module_multimedia .module_link {
  margin: 0;
  display: block;
}
.module-news .module_multimedia-caption {
  margin-bottom: 16px;
}
.module-news .module_multimedia-caption .module_file-text {
  display: block;
}
.module-news .module_multimedia-caption .module_file-resolution {
  display: none;
}
.module-news .module_multimedia-image {
  width: 100%;
  float: none;
}
.module-news .module_multimedia-size {
  margin-top: 10px;
}
.module-news .module_multimedia-size .module_file-size {
  display: inline;
}
.module-news .module_multimedia-size .module_file-resolution::before {
  content: "(";
}
.module-news .module_multimedia-size .module_file-resolution::after {
  content: ")";
}
@media only screen and (max-width: 1024px) {
  .module-news .module_multimedia-size-item {
    margin-bottom: 30px;
  }
}
.module-news .pager.module_pager {
  margin: 3rem 0 0;
}
.module-news .pager_list {
  display: flex;
  gap: 1rem;
}
.module-news .pager_list-item {
  margin: 0;
}
.module-news .pager_list-item:not(:last-child) button {
  margin-right: 0;
}
.module-news .pager_button {
  color: #fff;
  border: 1px solid #fff;
  width: 30px;
  height: 30px;
}
.module-news .pager_button.js--active {
  border-color: #9A1030;
}

.pane--content .module-news--grid.module {
  padding-bottom: 0;
}
.module-news--grid h2 {
  line-height: inherit;
  margin-bottom: 24px;
}
.module-news--grid .module_container--content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}
@media only screen and (max-width: 768px) {
  .module-news--grid .module_container--content {
    display: block;
  }
}
.module-news--grid .module_item {
  padding: 0;
}
.module-news--grid .module_item:first-child {
  grid-row: 1/span 2;
}
@media only screen and (max-width: 768px) {
  .module-news--grid .module_item:first-child {
    grid-row: 1;
    grid-column: 1/span 2;
  }
}
.module-news--grid .module_item:first-child img {
  height: 492px;
  object-fit: cover;
}
.module-news--grid .module_item:not(:first-child) {
  align-self: start;
}
@media only screen and (max-width: 768px) {
  .module-news--grid .module_item:not(:first-child) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.module-news--grid .module_item:not(:first-child) img {
  height: 156px;
  object-fit: cover;
}
@media only screen and (max-width: 768px) {
  .module-news--grid .module_item:not(:first-child) img {
    height: inherit;
    object-fit: none;
    width: inherit;
  }
}
.module-news--grid .module_item ~ .module_item {
  border-top: 0;
}
.module-news--grid .module_date-time {
  font-size: 16px;
  font-size: 1.6rem;
  color: #ec1342;
  margin-top: 12px;
  margin-bottom: 8px;
}
.module-news--grid .module_headline {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 0;
}
.module-news--grid .module_headline a {
  color: #fff;
}
.module-news--grid .module_headline a:hover {
  text-decoration: underline;
  color: #fff;
}
.module-news--grid img {
  display: block;
  width: 100%;
}

.PageAboutUsNewsroomNewsDetails .module_multimedia-item {
  color: #fff;
  margin-bottom: 1.6rem;
}
.PageAboutUsNewsroomNewsDetails .module_multimedia-item a {
  color: #cd173f;
}
.PageAboutUsNewsroomNewsDetails .module_multimedia-item a:hover {
  color: #fff;
  text-decoration: underline;
}
.PageAboutUsNewsroomNewsDetails .bw-contact-info-wrapper a:hover {
  color: #fff;
  text-decoration: underline;
}
.PageAboutUsNewsroomNewsDetails .bw-source-text-wrapper {
  color: #fff;
}

.module_overview-careers .overview-careers {
  background: #000;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.module_overview-careers .overview-careers_content {
  padding: 7.5rem 8rem;
}
.module_overview-careers .overview-careers_content h2 {
  margin-bottom: 2.4rem;
}
.module_overview-careers .overview-careers_content p {
  margin-top: 0;
  margin-bottom: 2.4rem;
}
.module_overview-careers .overview-careers_image {
  background: url('../design/banner/overview-careers-bg.jpg') no-repeat center center;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  .module_overview-careers .module_container.module_container--outer {
    padding-left: 0;
    padding-right: 0;
  }
  .module_overview-careers .module_container.module_container--outer .overview-careers {
    grid-template-columns: 1fr;
  }
  .module_overview-careers .module_container.module_container--outer .overview-careers_content {
    display: grid;
    padding: 6rem 2rem;
    text-align: center;
    justify-items: center;
  }
  .module_overview-careers .module_container.module_container--outer .overview-careers_image {
    min-height: 375px;
  }
}

@property --gradientStep {
  initial-value: 0%;
  inherits: false;
  syntax: "<percentage>";
}
.module-our-portfolio--option-1 .section_title {
  margin-bottom: 25px;
}
.module-our-portfolio--option-1 .section_leadin {
  font-size: 2rem;
  max-width: 90%;
}
.module-our-portfolio--option-1 .splide {
  margin-top: 40px;
}
.module-our-portfolio--option-1 .splide__list {
  display: flex;
  align-items: flex-end;
}
.module-our-portfolio--option-1 .splide__arrows {
  position: absolute;
  top: -50px;
  right: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media screen and (min-width: 1121px) {
  .module-our-portfolio--option-1 .splide__arrows {
    display: none;
  }
}
.module-our-portfolio--option-1 .splide__arrow {
  position: relative;
  transform: unset;
  top: unset;
  left: unset;
  right: unset;
}
.module-our-portfolio--option-1_tile {
  width: 100%;
  aspect-ratio: 1/1.4035714286;
  background-size: cover;
  background-position: bottom;
  position: relative;
  overflow: hidden;
  transition: height 2s;
  transition: background-size 2s;
}
.module-our-portfolio--option-1_tile::before {
  --gradientStep: 0%;
  content: "";
  position: absolute;
  inset: -1px;
  background-image: linear-gradient(0deg, rgba(20, 28, 31, 0.9) var(--gradientStep, 0%), rgba(20, 28, 31, 0) 100%);
  background-size: 100% 100%;
  background-position: center bottom;
  transition: all 0.4s ease-in-out;
}
@media screen and (min-width: 640px) {
  .module-our-portfolio--option-1_tile:hover, .module-our-portfolio--option-1_tile:focus-within {
    background-repeat: no-repeat;
  }
}
.module-our-portfolio--option-1_tile:hover .module-our-portfolio--option-1_title-wrapper, .module-our-portfolio--option-1_tile:focus-within .module-our-portfolio--option-1_title-wrapper {
  translate: 0 0%;
}
.module-our-portfolio--option-1_tile:hover .module-our-portfolio--option-1_description, .module-our-portfolio--option-1_tile:focus-within .module-our-portfolio--option-1_description {
  opacity: 1;
}
.module-our-portfolio--option-1_tile:hover::before, .module-our-portfolio--option-1_tile:focus-within::before {
  --gradientStep: 50%;
  background-size: 100% 200%;
}
.module-our-portfolio--option-1_title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 62px 24px 32px;
  position: absolute;
  color: white;
  transition: all 0.4s ease-in-out;
  height: 100%;
  width: 100%;
}
@media screen and (min-width: 640px) {
  .module-our-portfolio--option-1_title-wrapper {
    display: block;
    translate: 0 calc(60% + 24px);
  }
}
@media screen and (min-width: 820px) {
  .module-our-portfolio--option-1_title-wrapper {
    padding: 24px 32px;
  }
}
.module-our-portfolio--option-1_title {
  color: #fff;
  margin: 0;
  padding-bottom: 24px;
  position: relative;
  width: 100%;
  font-size: 2.6rem;
}
.module-our-portfolio--option-1_title::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #cd173f;
}
.module-our-portfolio--option-1_description {
  display: block;
  color: white;
  font-size: 1.6rem;
  line-height: 1.5;
  line-height: 1.5;
  margin: 24px 0;
  opacity: 0;
}
.module-our-portfolio--option-1_link {
  color: #fff;
  text-transform: uppercase;
  font-size: 1.3rem;
  font-weight: 500;
}
.module-our-portfolio--option-1_link:hover {
  color: #fff;
}
.module-our-portfolio--option-1_link:hover .text {
  text-decoration: underline;
}
.module-our-portfolio--option-1_link:hover .q4-icon_chevron-right {
  margin-left: 8px;
  text-decoration: none !important;
}
.module-our-portfolio--option-2 {
  background-color: #f8f1f3;
}
.module-our-portfolio--option-2 h2 {
  text-align: center;
  margin-bottom: 45px;
}
.module-our-portfolio--option-2_items {
  position: relative;
  margin-left: -12px;
  margin-right: -12px;
}
.module-our-portfolio--option-2_items::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  width: calc(100% - 24px);
  height: 1px;
  background-color: #e6eefb;
}
@media only screen and (max-width: 1024px) {
  .module-our-portfolio--option-2_items::after {
    display: none;
  }
}
.module-our-portfolio--option-2_items .grid_col {
  padding: 0 12px;
  margin-right: 0;
}
.module-our-portfolio--option-2_item {
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.module-our-portfolio--option-2_item:hover {
  border-color: #0f5ca3;
  transition: 0.3s ease-in;
}
.module-our-portfolio--option-2_item:hover img {
  height: 325px;
}
@media only screen and (max-width: 1024px) {
  .module-our-portfolio--option-2_item {
    margin: 0 auto 40px;
  }
}
.module-our-portfolio--option-2_title {
  font-size: 2.8rem;
  margin-bottom: 40px;
}
.module-our-portfolio--option-2_image {
  position: relative;
  height: 300px;
}
.module-our-portfolio--option-2_image img {
  position: absolute;
  bottom: 0;
  right: 0;
  transition: all 0.3s;
  height: 300px;
  width: 100%;
  object-fit: cover;
}
.module-our-portfolio--option-3 {
  position: relative;
  display: grid;
  justify-content: center;
  isolation: isolate;
  overflow: hidden;
  margin: 70px 0;
  padding: 0 !important;
}
.module-our-portfolio--option-3 .module_container--outer {
  max-width: unset;
  padding-left: unset;
  padding-right: unset;
  margin-left: unset;
  margin-right: unset;
}
.module-our-portfolio--option-3::after {
  content: "";
  height: 100%;
  width: 50vw;
  background-color: #f8f1f3;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
}
@media only screen and (max-width: 1200px) {
  .module-our-portfolio--option-3::after {
    width: 100vw;
  }
}
.module-our-portfolio--option-3_wrapper {
  position: relative;
  display: grid;
  place-items: center;
  background-color: #f8f1f3;
  padding-bottom: 432px;
}
@media only screen and (max-width: 1200px) {
  .module-our-portfolio--option-3_wrapper {
    padding-bottom: 112px;
  }
}
.module-our-portfolio--option-3_wrapper .row {
  display: grid;
  grid-template-columns: 344px 1fr;
  justify-content: center;
  overflow: hidden;
  padding-top: 4.2rem;
  padding-bottom: 0;
  max-width: 1220px;
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (max-width: 1200px) {
  .module-our-portfolio--option-3_wrapper .row {
    grid-template-columns: 1fr;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.module-our-portfolio--option-3_wrapper .row .column {
  display: grid;
  padding: 42px 39px;
}
.module-our-portfolio--option-3_wrapper .row .column p {
  max-width: 636px;
}
.module-our-portfolio--option-3_wrapper .row .column.title {
  padding: 42px 65px;
  border-right: 1px solid #876f42;
}
.module-our-portfolio--option-3_wrapper .row .column .primary-cta--filled {
  margin: unset;
  margin-top: 24px;
}
@media only screen and (max-width: 1200px) {
  .module-our-portfolio--option-3_wrapper .row .column {
    grid-template-rows: repeat(3, max-content);
    text-align: center;
    padding: 0;
  }
  .module-our-portfolio--option-3_wrapper .row .column.title {
    padding: unset;
    padding-top: 42px;
    border-right: none;
  }
  .module-our-portfolio--option-3_wrapper .row .column .primary-cta--filled {
    justify-self: center;
  }
}
.module-our-portfolio--option-3_slides {
  display: grid;
  position: absolute;
  bottom: 78px;
}
@media only screen and (max-width: 1200px) {
  .module-our-portfolio--option-3_slides {
    position: relative;
    bottom: unset;
    margin-top: 40px;
  }
}
@media only screen and (max-width: 1200px) {
  .module-our-portfolio--option-3_splide {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.module-our-portfolio--option-3_item {
  display: inline-block;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.module-our-portfolio--option-3_item img {
  width: 100%;
  height: 292px;
  object-fit: cover;
  transition: transform 0.2s linear;
}
.module-our-portfolio--option-3_item .label {
  display: inline-flex;
  gap: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 63px;
  width: 100%;
  align-items: center;
  padding: 0 32px;
  background-color: rgba(205, 23, 63, 0.9);
  color: #fff;
  font-size: 1.8rem;
  line-height: 2.8rem;
  font-weight: 500;
  transition: background-color 0.5s linear;
}
.module-our-portfolio--option-3_item .label::after {
  content: "";
  background: url('../design/svg/angle-white.svg') no-repeat center center;
  background-size: cover;
  height: 14px;
  width: 14px;
  display: inline-flex;
  transition: transform 0.6s ease;
}
.module-our-portfolio--option-3_item:hover img {
  transform: scale(104%);
}
.module-our-portfolio--option-3_item:hover .label {
  background-color: rgba(154, 17, 48, 0.9);
}
.module-our-portfolio--option-3_item:hover .label::after {
  transform: translateX(10px);
}
.module-our-portfolio--option-3 .splide__track {
  width: 150%;
  margin-left: -40px;
}
@media only screen and (max-width: 1200px) {
  .module-our-portfolio--option-3 .splide__track {
    width: unset;
    margin-left: unset;
  }
}
.module-our-portfolio--option-3 .splide__arrow--prev {
  left: calc(50% - 450px);
}
.module-our-portfolio--option-3 .splide__arrow--next {
  left: calc(50% - 385px);
}
.module-our-portfolio--option-3 .splide__arrow {
  bottom: 2em;
  transform: translateX(-50%);
  top: -150px;
}
@media only screen and (max-width: 1200px) {
  .module-our-portfolio--option-3 .splide__arrows {
    width: 100%;
    display: inline-flex;
    gap: 24px;
    justify-content: center;
    position: absolute;
    bottom: -87px;
  }
  .module-our-portfolio--option-3 .splide__arrow {
    top: unset;
    left: unset;
    right: unset;
    transform: unset;
    position: relative;
  }
  .module-our-portfolio--option-3 .splide__arrow--prev {
    left: unset;
  }
  .module-our-portfolio--option-3 .splide__arrow--next {
    left: unset;
  }
}
.module-our-portfolio_map.module--full-width .module_container--outer {
  padding-right: 0;
  padding-left: 0;
}
.module-our-portfolio_map .module-our-portfolio_map-container {
  display: flex;
  justify-content: space-between;
}
.module-our-portfolio_map .module-our-portfolio_map-container > div {
  width: 50%;
}
@media only screen and (max-width: 1200px) {
  .module-our-portfolio_map .module-our-portfolio_map-container {
    flex-direction: column;
  }
  .module-our-portfolio_map .module-our-portfolio_map-container > div {
    width: 100%;
  }
}
.module-our-portfolio_map .module-our-portfolio_overview-text {
  max-width: 610px;
  margin-left: auto;
  padding: 7rem 7.8rem 7rem 2.3rem;
}
.module-our-portfolio_map .module-our-portfolio_overview-text .button {
  margin-left: 0;
}
@media only screen and (max-width: 1200px) {
  .module-our-portfolio_map .module-our-portfolio_overview-text {
    max-width: unset;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }
  .module-our-portfolio_map .module-our-portfolio_overview-text .button {
    margin-left: 17px;
  }
}

.module-our-portfolio_map-container .module_legend-container {
  padding: 0;
  margin: 2rem 0 0;
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style-type: none;
}
.module-our-portfolio_map-container .module_legend-container li {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
}

.module_portfolio-overview-intro h2,
.module_portfolio-overview-intro h3, .module_portfolio-overview-content h2,
.module_portfolio-overview-content h3 {
  color: #585555;
}
.module_portfolio-overview .pane--content {
  padding-bottom: 85px;
}
@media only screen and (max-width: 768px) {
  .module_portfolio-overview .pane--content {
    padding-bottom: 55px;
  }
}

.pane--content .module.module_portfolio-overview-intro {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 768px) {
  .pane--content .module.module_portfolio-overview-intro {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.pane--content .module.module_portfolio-overview-content {
  padding-top: 85px;
  padding-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .pane--content .module.module_portfolio-overview-content {
    padding-top: 55px;
  }
}

@media screen and (min-width: 769px) {
  .module_portfolio-overview-content .grid_col:first-child {
    padding-right: 10px;
  }
  .module_portfolio-overview-content .grid_col:last-child {
    padding-left: 30px;
  }
  .module_portfolio-overview-content .grid_col > :first-child {
    margin-top: 0;
  }
}
.module_portfolio-overview-content .grid_col > :last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .module_portfolio-overview-content--mobile-img-first .grid_col:last-child {
    order: -1;
  }
}
.module_portfolio-overview-content img {
  display: block;
  width: 100%;
}

/* ---------- Pager ---------- */
.pager {
  margin: 15px 0;
}
.pager_list-item {
  display: inline-block;
  vertical-align: top;
  margin: 5px 0;
}
.pager_list-item:not(:last-child) button {
  margin-right: 5px;
}
.pager_dots {
  margin-right: 5px;
  appearance: none;
  border: 1px solid #141c1f;
  color: #141c1f;
  background-color: #f8f1f3;
  border-radius: 3px;
  width: 35px;
  height: 35px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 35px;
  text-align: center;
  cursor: default;
}
.pager_button {
  appearance: none;
  border: none;
  color: #cd173f;
  font-family: "din-2014", sans-serif;
  font-size: 1.2rem;
  background-color: transparent;
  width: 35px;
  height: 35px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  font-weight: 500;
  cursor: pointer;
  border-radius: 50%;
}
.pager_button:not(.js--disabled):hover {
  border: 1px solid #cd173f;
  background-color: #cd173f;
}
.pager_button.js--active {
  color: #fff;
  background-color: #9A1030;
}
.pager_button.js--active:focus {
  outline: 2px dotted #9A1030;
}
.pager_button.js--disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
.pager_button [class^=q4-icon_],
.pager_button [class*=" q4-icon_"] {
  color: inherit;
  font-size: 1rem;
  pointer-events: none;
}
.pager_button--next, .pager_button--prev {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.pager_button--next:hover, .pager_button--prev:hover {
  color: #fff;
  background-color: #cd173f;
}

/* ------ Person List Module ------ */
.module-person .module-person_description,
.module-person .module-person_res-photo-container,
.module-person .module_comma {
  display: none;
}
.module-person .module-person_name-container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 100%;
  opacity: 0;
  visibility: hidden;
  text-align: center;
  cursor: pointer;
}
.module-person .module-person_name-container h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  margin: 0;
  transform: translate(-50%, -50%);
  color: #fff;
}
.module-person .module-person_name-container a {
  color: #fff;
}
.module-person .module-person_name {
  display: block;
  font-size: 1.8rem;
  text-transform: uppercase;
}
.module-person-list {
  margin: 0 -2.2rem;
}
@media only screen and (max-width: 480px) {
  .module-person-list {
    margin: 0;
    padding: 0;
  }
}
.module-person-list_person {
  padding: 0 2.22rem;
  margin-bottom: 9rem;
  margin-right: 0;
  cursor: pointer;
  background-color: transparent;
  border: none;
  font: inherit;
}
.module-person-carousel .module-person-list_person:hover h3,
.module-person-carousel .module-person-list_person:hover .h3, .module-person-carousel .module-person-list_person:focus h3,
.module-person-carousel .module-person-list_person:focus .h3 {
  color: #cd173f;
}
.module-person-carousel .module-person-list_person:hover .module-person-list_person-photo, .module-person-carousel .module-person-list_person:focus .module-person-list_person-photo {
  opacity: 0.5;
}
.module-person-carousel .module-person-list_person:hover .module-person-list_photo-container::before, .module-person-carousel .module-person-list_person:focus .module-person-list_photo-container::before {
  color: white;
  background-color: #cd173f;
}

@media only screen and (max-width: 480px) {
  .module-person-list_person {
    margin-bottom: 7rem;
  }
}
.module-person-list_person h3,
.module-person-list_person .h3 {
  color: #333;
  font-size: 2.8rem;
  line-height: 1.45;
  margin-top: 2.1rem;
  margin-bottom: 0.7rem;
}
@media only screen and (max-width: 1024px) {
  .module-person-list_person h3,
.module-person-list_person .h3 {
    font-size: 2.6rem;
  }
}
@media only screen and (max-width: 768px) {
  .module-person-list_person h3,
.module-person-list_person .h3 {
    font-size: 2.4rem;
  }
}
.module-person-list_person_title {
  color: #333;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.4rem;
  margin: 0;
}
.module-person-list .module-person-list_photo-container {
  text-align: center;
  position: relative;
}
.module-person-list .module-person-list_photo-container img {
  display: block;
  margin: 0 auto;
  transition: opacity 0.2s ease-out;
  width: 100%;
}
.module-person-list .module-person-list_photo-container::before {
  z-index: 100;
  font-size: 1.2rem;
  color: #cd173f;
  position: absolute;
  width: 3.6rem;
  height: 3.6rem;
  line-height: 3.6rem;
  bottom: 0;
  right: 0;
  background-color: white;
}
.module-person-list--modal {
  padding: 0;
}
.module-person-list.js--selected img {
  border-color: #141c1f;
}
.module-person-list_person.fancybox-content {
  max-width: 102rem;
  padding: 6rem 6rem 6rem 4rem;
}
@media only screen and (max-width: 1024px) {
  .module-person-list_person.fancybox-content {
    padding: 5rem 5rem 5rem 3rem;
  }
}
@media only screen and (max-width: 768px) {
  .module-person-list_person.fancybox-content {
    padding: 4rem 5rem 4rem 3rem;
  }
}
@media only screen and (max-width: 768px) {
  .module-person-list_person.fancybox-content {
    padding-right: 2rem;
    padding-left: 0;
  }
}
.module-person-list_person > .fancybox-button.fancybox-close-small {
  border-radius: 50%;
  border: 2px solid #cd173f;
  opacity: 1;
  width: 2.46rem;
  height: 2.46rem;
  padding: 0;
  right: 3.23rem;
  top: 2.3rem;
  transition: background 0.2s ease-out;
}
@media only screen and (max-width: 1024px) {
  .module-person-list_person > .fancybox-button.fancybox-close-small {
    right: 2rem;
    top: 1.6rem;
  }
}
@media only screen and (max-width: 480px) {
  .module-person-list_person > .fancybox-button.fancybox-close-small {
    right: 0.7rem;
    top: 0.9rem;
  }
}
.module-person-list_person > .fancybox-button.fancybox-close-small svg {
  color: #cd173f;
  font-size: 1.36rem;
  transition: color 0.2s ease-out;
}
.module-person-list_person > .fancybox-button.fancybox-close-small:hover, .module-person-list_person > .fancybox-button.fancybox-close-small:focus {
  background: #cd173f;
}
.module-person-list_person > .fancybox-button.fancybox-close-small:hover svg, .module-person-list_person > .fancybox-button.fancybox-close-small:focus svg {
  color: #fff;
}
.module-person .module-person_suffix .module_comma {
  display: none;
}
.module-person .module-person_suffix:empty + .module-person_title .module_comma {
  display: none;
}
.module-person .module_item {
  position: relative;
  padding: 0 0 20px 20px;
  border: none;
}
.module-person .module_item:hover .module-person_name-container {
  opacity: 1;
  visibility: visible;
}
.module-person .module_item .module-person_name {
  display: block;
  font-size: 2.8rem;
}
.module-person .module_item .module-person_suffix,
.module-person .module_item .module-person_title {
  font-size: 1.6rem;
}
.module-person .module_item ~ .module_item {
  border-top: 0 none;
}
.module-person .module-person_photo-container {
  text-align: center;
  border-radius: 100%;
  overflow: hidden;
}
.module-person .module-person_photo-container img {
  display: inline-block;
  vertical-align: top;
  margin: 0 auto;
  width: 100%;
}
.module-person .module-person_res-photo-container {
  display: none;
}
.module-person_suffix, .module-person_title {
  font-size: 1.3rem;
}
.fancybox-container .module-person_module_item {
  max-width: 1220px;
}
.fancybox-container .module-person_photo-container, .fancybox-container .module-person_name-container {
  display: inline-block;
  vertical-align: middle;
}
.fancybox-container .module-person_name-container {
  position: static;
  background: transparent;
  opacity: 1;
  visibility: visible;
  cursor: initial;
}
.fancybox-container .module-person_name-container h3 {
  position: static;
  transform: none;
}
.fancybox-container .module-person_name-container a {
  color: #2a3035;
}
@media only screen and (max-width: 768px) and (min-width: 641px) {
  .fancybox-container .module-person_name-container {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
  .fancybox-container .module-person_name-container h3,
.fancybox-container .module-person_name-container .h3 {
    margin-top: 0;
  }
}
.fancybox-container .module-person_photo-container {
  max-width: 24.2rem;
  margin-right: 2.8rem;
}
.fancybox-container .module-person_photo-container img {
  display: block;
  margin: 0;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .fancybox-container .module-person_photo-container {
    margin-right: 15px;
    margin-bottom: 35px;
  }
}
@media only screen and (max-width: 768px) and (min-width: 641px) {
  .fancybox-container .module-person_photo-container {
    max-width: none;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 2rem 2fr;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
  }
}
@media only screen and (max-width: 480px) {
  .fancybox-container .module-person_photo-container {
    margin-right: 0;
    max-width: none;
    display: block;
  }
}
.fancybox-container .module-person_title {
  font-size: 1.6rem;
  font-weight: 400;
  color: #141c1f;
}
.fancybox-container .module-person_description p {
  margin-top: 0;
}

.module-person-accordion .module-person_name-container {
  color: #141c1f;
  padding: 0;
  cursor: pointer;
}
.module-person-accordion .module-person_name-container h3,
.module-person-accordion .module-person_name-container .h3 {
  margin: 0;
}
.module-person-accordion .module-person_name-container h3 button,
.module-person-accordion .module-person_name-container .h3 button {
  background: transparent;
  border: none;
  color: inherit;
  font-style: inherit;
  letter-spacing: 0.5px;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2.8rem;
  margin: 0;
  padding: 25px 0;
  position: relative;
  text-align: left;
  width: 100%;
}
.module-person-accordion .module-person_name-container h3 button::before,
.module-person-accordion .module-person_name-container .h3 button::before {
  font-family: "q4-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\edc2";
  font-weight: 700;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.module-person-accordion .module_item {
  padding: 0;
  border-top: 1px solid #c4c4c4;
}
.module-person-accordion .module_item:first-child {
  border-top: none;
}
.module-person-accordion .module_item:last-child {
  border-bottom: 1px solid #c4c4c4;
}
.module-person-accordion .module_item.js--active h3, .module-person-accordion .module_item.js--active .h3 {
  color: #cd173f;
}
.module-person-accordion .module_item.js--active h3 button::before, .module-person-accordion .module_item.js--active .h3 button::before {
  content: "\edba";
}
.module-person-accordion .module-person_name {
  margin-right: 10px;
}
@media screen and (max-width: 640px) {
  .module-person-accordion .module-person_name {
    display: block;
  }
}
.module-person-accordion .module-person_title {
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 400;
}
.module-person-accordion .module_comma {
  display: none;
}
.module-person-accordion .module-person_description-container {
  padding: 15px;
  margin: 0 0 15px 0;
  background-color: #f8f1f3;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .module-person-accordion .module-person_description-container {
    flex-direction: column;
  }
}
.module-person-accordion .module-person_photo-container {
  float: left;
  margin: 0 25px 0 0;
  min-width: 198px;
  min-height: 198px;
}
@media only screen and (max-width: 768px) {
  .module-person-accordion .module-person_photo-container {
    float: none;
    margin: 0 auto 15px auto;
    text-align: center;
  }
}
.module-person-accordion .module-person_photo-container img {
  display: block;
  margin: auto;
  border-radius: 100%;
}
.module-person-accordion .module-person_description > *:first-child {
  margin-top: 0;
}
.module-person-accordion .module-person_res-photo-container > span {
  margin-right: 10px;
}
@media only screen and (max-width: 768px) {
  .module-person-accordion .module-person_res-photo-container > span {
    display: block;
    margin: 0 0 10px 0;
  }
}
.module-person-carousel_list.slick-slider {
  padding: 0;
}
.module-person-carousel_list .slick-list {
  margin: 0 40px;
  width: auto;
}
.module-person-carousel_list .slick-slide > div {
  padding: 2px;
}
.module-person-carousel_list .slick-arrow {
  padding: 10px;
  color: #141c1f;
  border: 1px solid #141c1f;
  border-radius: 100%;
  width: 40px;
  height: 40px;
}
.module-person-carousel_list h3 {
  font-size: 1.8rem;
  text-align: center;
}
.module-person-carousel_list .module-person_name {
  display: block;
  margin-bottom: 5px;
}
.module-person-carousel_details.slick-slider {
  padding: 0;
}
.module-person-carousel_person {
  padding: 0 20px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  font: inherit;
}
@media only screen and (max-width: 480px) {
  .module-person-carousel_person {
    padding: 0;
  }
}
.module-person-carousel_person img {
  margin: 5px;
  padding: 5px;
  border: 2px solid transparent;
  border-radius: 100%;
}
.module-person-carousel_person.js--selected img {
  border-color: #141c1f;
}
.module-person-carousel .module-person_suffix .module_comma {
  display: none;
}
.module-person-carousel .module-person_suffix:empty + .module-person_title .module_comma {
  display: none;
}
.module-person-carousel .module_item .module-person_name {
  display: block;
  font-size: 2.8rem;
}
.module-person-carousel .module_item .module-person_suffix,
.module-person-carousel .module_item .module-person_title {
  font-size: 1.6rem;
}
.module-person-carousel .module_item ~ .module_item {
  border-top: 0 none;
}
.module-person-carousel .module-person_photo-container {
  text-align: center;
}
.module-person-carousel .module-person_photo-container img {
  display: inline-block;
  vertical-align: top;
  margin: 0 auto;
}
.module-person-carousel .module-person_res-photo-container {
  display: none;
}
.module-person-details .module_title {
  display: none;
}
.module-person-details .module_comma {
  display: none;
}
.module-person-details_photo-container, .module-person-details_name-container {
  display: inline-block;
  vertical-align: middle;
}
.module-person-details_photo-container {
  max-width: 30%;
  margin-right: 40px;
}
@media only screen and (max-width: 768px) {
  .module-person-details_photo-container {
    margin-right: 15px;
    margin-bottom: 35px;
  }
}
@media only screen and (max-width: 480px) {
  .module-person-details_photo-container {
    margin-right: 0;
    max-width: none;
  }
}
.module-person-details_name {
  display: block;
  margin-bottom: 10px;
  font-size: 3.6rem;
  color: #141c1f;
}
.module-person-details_title {
  display: block;
  font-size: 2.4rem;
}
.module-person-details_description-container {
  margin-top: 40px;
}

.module-people_accordion.evergreen {
  --backgroundColor: $dark-color !important;
}
.module-people_accordion .evergreen-person-image-original {
  border-radius: 50rem;
  overflow: hidden;
}
/* .PageAboutUsBoardofDirectors .module-people_accordion .evergreen-person-image-original {
  display: none;
}
.PageAboutUsBoardofDirectors .module-people_accordion .evergreen-person-image-original + * {
  margin-left: 0 !important;
} */
.module-people_accordion .evergreen-person-bio {
  padding: 0 !important;
}
.module-people_accordion .evergreen-person-bio br {
  display: none;
}
.module-people_accordion .evergreen-accordion-content {
  margin-bottom: 0 !important;
  padding: 2rem 1rem !important;
}
.module-people_accordion .evergreen-accordion-header {
  margin-bottom: 0 !important;
}
.module-people_accordion .evergreen-accordion-header button {
  margin-bottom: 0 !important;
  padding: 1rem 0 !important;
}
.module-people_accordion .evergreen-person-item:first-child {
  border-top: none !important;
}
.module-people_accordion .evergreen-person-item:first-child ~ * {
  padding-top: 0.5rem !important;
}
.module-people_accordion .evergreen-person-name:after {
  content: ",";
}
.module-people_accordion .evergreen-person-header-right {
  column-gap: 0.35em !important;
}

.pane--content .module.module_person-quotes-carousel {
  padding-top: 60px;
  padding-bottom: 60px;
}
.pane--content .module.module_person-quotes-carousel-profile {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 768px) {
  .pane--content .module.module_person-quotes-carousel-profile {
    padding-top: 0;
    padding-bottom: 60px;
  }
}

.module.module_person-quotes-carousel .person-carousel .split {
  display: grid;
  grid-template-columns: 46.44fr 50.86fr;
  gap: 20px 69px;
}
@media only screen and (max-width: 1024px) {
  .module.module_person-quotes-carousel .person-carousel .split {
    gap: 20px 40px;
  }
}
@media only screen and (max-width: 768px) {
  .module.module_person-quotes-carousel .person-carousel .split {
    grid-template-columns: 1fr;
  }
}
.module.module_person-quotes-carousel .person-carousel .split .content {
  padding-bottom: 50px;
}
.module.module_person-quotes-carousel .person-carousel .split .content blockquote {
  position: relative;
  font-size: 2.8rem;
  line-height: 3.4rem;
  font-weight: 700;
  margin-top: 36px;
  margin-bottom: 1.6rem;
}
.module.module_person-quotes-carousel .person-carousel .split .content blockquote::before {
  content: "";
  background: url('../design/svg/quote-icon.svg') no-repeat center center;
  background-size: cover;
  width: 22px;
  height: 19px;
  display: block;
  position: absolute;
  top: -36px;
}
.module.module_person-quotes-carousel .person-carousel .split .content figcaption {
  text-align: left;
  font-size: 1.8rem;
  font-weight: 500;
}
.module.module_person-quotes-carousel .person-carousel .split .content figcaption .title {
  font-size: 1.2rem;
  line-height: 2.2rem;
  font-weight: 400;
}
.module.module_person-quotes-carousel .person-carousel .split .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.module.module_person-quotes-carousel .splide__arrows {
  position: absolute;
  bottom: 0;
  left: 46.44%;
  margin-left: 49px;
  display: flex;
  gap: 24px;
}
@media only screen and (max-width: 1024px) {
  .module.module_person-quotes-carousel .splide__arrows {
    margin-left: 34px;
  }
}
@media only screen and (max-width: 768px) {
  .module.module_person-quotes-carousel .splide__arrows {
    left: 0;
    margin-left: 0;
  }
}
.module.module_person-quotes-carousel .splide__arrow {
  position: relative;
  top: unset;
  right: unset;
  bottom: unset;
  left: unset;
  transform: unset;
  width: 40px;
  height: 40px;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}
.module.module_person-quotes-carousel .splide__arrow svg {
  fill: #cd173f;
}

.module-pipeline .highcharts-container {
  height: 500px !important;
}
.module-pipeline .highcharts-root {
  position: relative;
  z-index: 10;
  font-family: "din-2014", sans-serif !important;
  font-size: 10px !important;
  height: 500px;
}
.module-pipeline .highcharts-background {
  fill: transparent;
}
.module-pipeline .highcharts-title {
  font-size: 3.6rem !important;
  font-weight: 700;
  line-height: 4.6rem;
  margin-bottom: 30px;
  transform: translateY(10px);
  fill: #fff !important;
}
@media only screen and (max-width: 768px) {
  .module-pipeline .highcharts-title {
    font-size: 27px;
  }
}
.module-pipeline .highcharts-subtitle {
  fill: #fff !important;
}
.module-pipeline .highcharts-series {
  transform: translate(-119px, 153px) scale(1.1, 1) !important;
}
.module-pipeline .highcharts-point {
  border-top-left-radius: 0 !important;
}
.module-pipeline .highcharts-grid-line {
  stroke-dasharray: 1, 5;
  opacity: 0.6;
}
.module-pipeline .highcharts-xaxis-labels text {
  font-weight: 500;
  font-size: 1.8rem !important;
  line-height: 2.8rem;
  color: #fff;
  fill: #fff !important;
}
.module-pipeline .highcharts-data-label text {
  font-size: 1.6rem !important;
  line-height: 2.4rem;
  font-weight: 400 !important;
}
.module-pipeline .highcharts-text-outline {
  stroke-width: 0;
}
.module-pipeline_footnotes {
  text-align: center;
  margin-top: 60px;
}

.overview-pipeline_background {
  position: relative;
  background-image: url('../design/corporate_landing/overview-pipeline.png');
  background-size: cover;
}
.overview-pipeline_background::before {
  content: " s";
  background-color: #000;
  opacity: 0.7;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
}
.overview-pipeline_background .module-pipeline_footnotes {
  color: #fff;
  z-index: 0;
  position: relative;
}

/* ------ Presentation Module ------ */
.module-presentation .module_body {
  display: none;
}
.module-presentation .module_item {
  padding: 0;
  border: 0 none;
}
.module-presentation .module_item ~ .module_item {
  border-top: 0 none;
}
.module-presentation .module_item:not(:last-child) {
  margin-bottom: 10px;
}
.module-presentation .module_item-wrap {
  padding: 30px 30px 10px 30px;
}
.module-presentation-latest .module_links {
  display: flex;
  flex-wrap: wrap;
}
.module-presentation-latest .module_link {
  margin: 0 15px 0 0;
}
.module-presentation-latest .module_link-text {
  font-weight: 600;
  vertical-align: middle;
  padding: 5px 0;
}
.module-presentation-latest .module_headline-link {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}
.module-presentation-latest .module-slideshow_viewer {
  display: block;
}
.module-presentation-latest .grid_col {
  position: relative;
}
.module-presentation-latest .grid_col .button {
  margin: 0;
  position: absolute;
  bottom: 0;
}
@media only screen and (max-width: 1024px) {
  .module-presentation-latest .grid_col .button {
    position: unset;
    margin-bottom: 20px;
  }
}

/* ------ Q4 Preview Toolbar ------ */
body.PreviewBody {
  margin: 0;
  background-position: 0;
}
body.PreviewBody .PreviewToolBar {
  position: fixed;
  top: 100%;
  bottom: auto;
  width: 100%;
  margin: 0;
  padding: 35px 20px;
  border: 0;
  background: #000;
  font-size: 0;
  text-align: left;
  color: #fff;
  z-index: 100;
}
body.PreviewBody .PreviewToolBar.js--open {
  top: auto;
  bottom: 0;
}
body.PreviewBody .PreviewToolBar .PreviewTrigger {
  position: absolute;
  top: 0;
  left: 10px;
  padding: 20px;
  background: #000;
  transform: translate(0, -100%);
  font-size: 2.4rem;
  cursor: pointer;
}
body.PreviewBody .PreviewToolBar .PreviewTrigger.js--active i::before {
  content: "\ed6d";
}
body.PreviewBody .PreviewToolBar .PreviewFloatLeft,
body.PreviewBody .PreviewToolBar .PreviewDateControls {
  display: inline-block;
  vertical-align: middle;
}
body.PreviewBody .PreviewToolBar .PreviewFloatLeft::before,
body.PreviewBody .PreviewToolBar .PreviewDateControls::before {
  font-size: 1.6rem;
  margin-right: 15px;
  line-height: 50px;
}
body.PreviewBody .PreviewToolBar .PreviewFloatLeft {
  float: none;
}
body.PreviewBody .PreviewToolBar .PreviewFloatLeft::before {
  content: "Select Preview Type:";
}
body.PreviewBody .PreviewToolBar .PreviewDateControls {
  float: right;
}
body.PreviewBody .PreviewToolBar .PreviewDateControls::before {
  content: "Select Preview Date:";
}
body.PreviewBody .PreviewToolBar img {
  display: none;
}
body.PreviewBody .PreviewToolBar input[type=radio],
body.PreviewBody .PreviewToolBar label,
body.PreviewBody .PreviewToolBar input[type=text],
body.PreviewBody .PreviewToolBar select,
body.PreviewBody .PreviewToolBar input[type=submit] {
  display: inline-block;
  margin-right: 5px;
  font-family: "din-2014", sans-serif !important;
  font-weight: 300;
  font-size: 1.4rem;
  text-transform: uppercase;
  vertical-align: baseline;
}
body.PreviewBody .PreviewToolBar input[type=text],
body.PreviewBody .PreviewToolBar select,
body.PreviewBody .PreviewToolBar input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 15px 20px;
  border: 0;
  border-radius: 0;
}
body.PreviewBody .PreviewToolBar label + input[type=radio] {
  margin-left: 15px;
}
body.PreviewBody .PreviewToolBar input[type=text] {
  min-width: 110px;
}
body.PreviewBody .PreviewToolBar select {
  padding: 15px 35px 15px 20px;
  background: #fff url('../design/svg/q4-icon_chevron-down-black.svg') no-repeat right 10px center;
  background-size: 14px 14px;
}
body.PreviewBody .PreviewToolBar select::-ms-expand {
  display: none;
}
body.PreviewBody .PreviewToolBar input[type=submit] {
  background: #141c1f;
  color: #fff !important;
}
@media only screen and (max-width: 1024px) {
  body.PreviewBody .PreviewToolBar .PreviewFloatLeft,
body.PreviewBody .PreviewToolBar .PreviewDateControls {
    display: block;
    float: none;
    margin-bottom: 15px;
  }
  body.PreviewBody .PreviewToolBar .PreviewFloatLeft::before,
body.PreviewBody .PreviewToolBar .PreviewDateControls::before {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  body.PreviewBody .PreviewToolBar input[type=radio],
body.PreviewBody .PreviewToolBar label,
body.PreviewBody .PreviewToolBar input[type=text],
body.PreviewBody .PreviewToolBar select,
body.PreviewBody .PreviewToolBar input[type=submit] {
    margin-bottom: 5px;
  }
}

/* -------- Search Results: Accessible Datepicker -------- */
.ui-datepicker.ui-widget {
  padding: 5px;
}

/* reduce input width... */
.module-search-results .form_field--date .form_input {
  width: calc(100% - 40px);
  vertical-align: top;
  display: inline-block;
  height: 45px;
}

/* to make room for button */
.module-search-results .ui-datepicker-trigger {
  width: 40px;
  vertical-align: top;
  display: inline-block;
  height: 45px;
  background: transparent;
  border: none;
  border-left: none;
}
_::-webkit-full-page-media,
_:future, :root .module-search-results .ui-datepicker-trigger {
  /* For Safari only */
  margin: 2px 0;
}

.module-search-results .ui-datepicker-trigger:hover {
  cursor: pointer;
}

/* button icon ('module-search-results .form_field--date:after' content copied to this style and then removed since new datepicker trigger exists) */
.q4-icon_calendar-results::before {
  content: "\e921";
  font-size: 16px;
  color: #ffffff;
}

.ui-datepicker .ui-datepicker-buttonpane button {
  padding: 5px 10px;
  text-transform: uppercase;
  border-radius: 3px;
  border: 0 none;
  margin-left: 15px;
  font-size: 14px;
  font-weight: normal;
  height: 30px;
  vertical-align: top;
  display: inline-block;
  background-color: #141c1f;
  outline-color: #141c1f;
  color: #fff;
  min-width: auto;
  font-family: "din-2014", sans-serif;
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-close {
  background-color: #4a4a4a;
  outline-color: #4a4a4a;
  color: #fff;
}

.ui-datepicker .ui-widget-header {
  background: #fff;
}

.ui-datepicker .ui-state-active,
.ui-datepicker.ui-widget-content .ui-state-active,
.ui-datepicker .ui-widget-header .ui-state-active,
.ui-datepicker a.ui-button:active,
.ui-datepicker .ui-button:active,
.ui-datepicker .ui-button.ui-state-active:hover,
.ui-datepicker .ui-state-active a,
.ui-datepicker .ui-state-active a:link,
.ui-datepicker .ui-state-active a:visited {
  color: #fff;
  background-color: #141c1f;
}

/* -------- Search Modules -------- */
.module-search_toggle {
  margin: 0;
  font-size: 1.6rem;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #cd173f;
  cursor: pointer;
}
.module-search_toggle.js--active {
  color: #141c1f;
}
.module-search_input[type=text] {
  opacity: 0;
  visibility: hidden;
  border-color: #141c1f;
  background-color: #141c1f;
  color: #fff;
  width: 100%;
  max-width: 380px;
  padding: 15px 20px;
  margin: 0;
  font-size: 1.8rem;
  text-transform: uppercase;
  position: absolute;
  top: calc(100% + 25px);
  right: 25px;
  transition: 0.3s ease-in-out;
}
.js--header-small .module-search_input[type=text] {
  top: 100%;
}

.module-search_input[type=text].js--revealed {
  opacity: 1;
  visibility: visible;
}
.module-search_button {
  display: none;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 15px;
  height: 15px;
  padding: 0;
  border: 0;
  background: transparent url('../design/svg/q4-icon_buttons.svg');
  background-position: 0 -100%;
  background-size: 300%;
  font-size: 0;
  cursor: pointer;
}
.module-search-results {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 25px;
  padding-right: 25px;
}
.module-search-results .form_fields-right input {
  width: 100%;
  border-color: z;
  color: #979797;
}
.module-search-results .form_field {
  margin-bottom: 25px;
}
.module-search-results .form_field--date {
  position: relative;
}
.module-search-results .form_field--search {
  margin-bottom: 35px;
}
.module-search-results .form_label {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  display: block;
  margin-bottom: 7px;
}
.module-search-results .form_select {
  color: #fff;
  font-size: 14px;
  width: 100%;
  min-width: auto;
  border-color: #fff;
  display: block !important;
}
.module-search-results .form_select + .sbHolder {
  display: none;
}
.module-search-results .form_input {
  width: 100%;
  border: 1px solid #fff;
  background-color: transparent;
  color: #ffffff;
  padding: 13px 20px;
  margin: 0;
  display: block;
  font-family: "din-2014", sans-serif;
  font-size: 1.6rem;
  border-radius: 0;
  appearance: none;
  border-radius: 40px;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.module-search-results_link {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  display: inline-block;
}
.module-search-results_item {
  box-shadow: inset 0 1px 0 0 rgba(204, 201, 196, 0.3), inset 0 -1px 0 0 rgba(204, 201, 196, 0.3);
  padding: 30px 0;
}
.module-search-results_url, .module-search-results_result a {
  word-wrap: break-word;
}
.module-search-results_url {
  display: none;
}
.module-search-results_result::after {
  content: "";
  display: table;
  clear: both;
}
.module-search-results_description {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}
.module-search-results_summary {
  color: #ffffff;
  font-size: 20px;
  line-height: 21px;
  font-weight: 400;
  margin: 0 0 30px;
}
.module-search-results_summary span {
  color: #cd173f;
}
.module-search-results .pager_text {
  display: none;
}
.module-search-results .daterangepicker .calendar-table .prev span {
  top: 5px;
}
.module-search-results .daterangepicker .calendar-table .prev span::before {
  content: "\e90f";
  font-size: 16px;
}
.module-search-results .daterangepicker .calendar-table .next span {
  top: 5px;
}
.module-search-results .daterangepicker .calendar-table .next span::before {
  content: "\e90d";
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  .module-search-results .form-fields-right .grid_col {
    padding-left: 0;
  }
  .module-search-results .form-fields--pages {
    margin-top: 25px;
    display: block;
    width: 100%;
  }
  .module-search-results .form-fields--search {
    width: 100%;
  }
}
@media only screen and (max-width: 500px) {
  .module-search-results .form_field.form_field--date {
    overflow: visible;
  }
}

/* -------- SEC Module CSS -------- */
.module-sec .module_header-text {
  padding: 15px 8px;
  color: #fff;
}
.module-sec .module_table {
  width: 100%;
}
.module-sec .module_table caption {
  caption-side: bottom;
  text-align: left;
  padding: 8px 8px;
  font-size: 1.2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.module-sec .module_table thead > tr > th {
  background-color: #9a1130;
  text-align: left;
}
.module-sec .module_table tr {
  border: none;
}
.module-sec .module_table tr:nth-child(odd) {
  background-color: #f8f1f3;
}
.module-sec .module_table td {
  padding: 15px 8px;
}
@media only screen and (max-width: 480px) {
  .module-sec .module_table th,
.module-sec .module_table td {
    font-size: 1.2rem;
  }
  .module-sec .module_table th {
    padding: 10px 8px;
  }
  .module-sec .module_table td {
    padding: 8px;
  }
}
.module-sec .module_download-list-item {
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .module-sec .module_download-list-item {
    display: block;
    text-align: center;
    margin-bottom: 12px;
  }
  .module-sec .module_options select {
    display: block;
    margin: 10px 0;
  }
}
.module-sec .module_link-sec {
  margin: 0;
}
@media only screen and (max-width: 480px) {
  .module-sec .module_rss {
    margin-bottom: 10px;
  }
}

.module-skip_link {
  position: absolute;
  top: -100px;
  left: 50%;
  padding: 15px 20px;
  transform: translate(-50%, 0);
  transition: 0.5s ease-in-out;
  z-index: 9999;
  width: 100%;
  text-align: center;
}
.module-skip_link:focus, .module-skip_link:active {
  top: 0;
  color: #fff;
  background: #141c1f;
  outline-color: #141c1f;
}
.module-skip_link:hover {
  text-decoration: underline;
}

/* ------ Slider ------ */
.module-slider .module_container--outer {
  display: table;
  width: 100%;
  table-layout: fixed;
}
.module-slider .module_container--inner {
  display: table-cell;
  vertical-align: middle;
  height: 390px;
}
.module-slider .slick-slider {
  padding: 0 40px;
}
.module-slider .slick-slider .slick-slide {
  float: none;
  display: inline-block;
  vertical-align: middle;
  padding: 0 5px;
}
.module-slider .slick-arrow::before {
  font-size: 30px;
}
.module-slider .module_add-to-calendar-reveal {
  color: #fff;
}
.module-slider .module-slider_title h1 {
  margin: 0;
}
.module-slider .module_loader {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.module-slider_description {
  font-size: 2.4rem;
  margin-top: 10px;
}
.module-slider_description .module_date-time {
  font-size: inherit;
}
.module-slider_description p {
  margin: 10px 0;
}
.module-slider_description p:first-child {
  margin-top: 0;
  margin-bottom: 10px;
}
.module-slider_description .module_links {
  margin-top: 10px;
  margin-bottom: 0;
}

/* ------ Stock Chart Widget ------ */
.module-stock-chart [data-highcharts-chart].js--hidden {
  display: block !important;
  max-height: 0;
  overflow: hidden;
}
.module-stock-chart .highcharts-legend {
  transform: translateY(20px);
}
.module-stock-chart .highcharts-legend > rect {
  fill: none;
}
.module-stock-chart .highcharts-legend-item text[style*="#CCC"] {
  fill: #767676 !important;
  color: #767676 !important;
}
.module-stock-chart .highcharts-legend-item text {
  font-weight: 400 !important;
}
.module-stock-chart .highcharts-legend-item rect[fill="#CCC"] {
  fill: #767676 !important;
}
.module-stock-chart .highcharts-legend-item:first-child path {
  stroke: #cd173f !important;
}
.module-stock-chart .highcharts-legend-item:first-child text {
  cursor: default !important;
  color: #333 !important;
  fill: #333 !important;
}
.module-stock-chart .highcharts-series-0 path:first-child {
  stroke: #333;
}
.module-stock-chart .highcharts-series-group .highcharts-series-2 path {
  stroke: #000;
  stroke-width: 2px;
}
.module-stock-chart .highcharts-navigator rect.highcharts-navigator-mask-inside {
  fill: rgba(154, 17, 48, 0.6);
}
.module-stock-chart .highcharts-navigator-handle {
  stroke: #9a1130;
  fill: #9a1130;
  cursor: ew-resize;
}
.module-stock-chart .highcharts-navigator-handle-right rect, .module-stock-chart .highcharts-navigator-handle-left rect {
  stroke-width: 0;
  fill: #141c1f;
}
.module-stock-chart .highcharts-navigator-handle-right path, .module-stock-chart .highcharts-navigator-handle-left path {
  stroke: #fff;
}
.module-stock-chart .highcharts-scrollbar g:first-of-type rect, .module-stock-chart .highcharts-scrollbar-thumb {
  fill: #f2f2f2;
  stroke: #f2f2f2;
}
.module-stock-chart .highcharts-range-selector {
  box-sizing: content-box;
}
.module-stock-chart .highcharts-range-input rect {
  stroke: #ccc;
  fill: #f2f2f2;
}
.module-stock-chart .highcharts-button rect, .module-stock-chart .highcharts-input-group rect {
  stroke-width: 0;
  fill: rgba(0, 0, 0, 0.05);
}
.module-stock-chart .highcharts-button text, .module-stock-chart .highcharts-input-group text {
  fill: #2a3035;
}
.module-stock-chart .highcharts-container > svg > .highcharts-button {
  display: none;
}
.module-stock-chart .highcharts-data-table-button, .module-stock-chart .highcharts-data-table-button button {
  text-transform: uppercase;
  text-align: left;
  color: inherit;
  width: 100%;
  border: none;
  background-color: inherit;
  cursor: pointer;
}
.module-stock-chart .highcharts-data-table thead th {
  font-size: 1.6rem;
}
.module-stock-chart .highcharts-table-caption {
  display: none;
}
.module-stock-chart .highcharts-graph {
  stroke: #000 !important;
}
.module-stock-chart .highcharts-label {
  font-size: 1.6rem;
}
.module-stock-chart .highcharts-label text {
  fill: #333 !important;
}
.module-stock-chart .highcharts-axis-labels text {
  fill: #333 !important;
}
.module-stock-chart_accessible-datepickers span,
.module-stock-chart_accessible-datepickers input {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .module-stock-chart_accessible-datepickers {
    display: none;
  }
}
.module-stock-chart .button {
  display: inline-block;
  margin: 0;
}
.module-stock-datatable_accessible-datepicker--from > span {
  margin-left: 0 !important;
}
@media screen and (max-width: 400px) {
  .module-stock-datatable_accessible-datepicker {
    display: block;
  }
  .module-stock-datatable_accessible-datepicker > span {
    margin-left: 0 !important;
  }
  .module-stock-datatable_accessible-datepicker--from {
    padding-top: 10px;
    margin-bottom: 10px;
  }
}

/* ------ Stock Header Module ----- */
.module-stock-header {
  transition: max-height 0.25s ease-in;
  padding: 2.75px 0;
  vertical-align: middle;
}
.module-stock-header--desktop {
  text-align: right;
  max-height: 34px;
}
.module-stock-header--mobile {
  padding: 0 20px 54px;
}
@media only screen and (max-width: 480px) {
  .module-stock-header--mobile > span {
    display: block;
  }
}
@media only screen and (max-width: 1042px) {
  .module-stock-header--desktop {
    display: none;
  }
}
.module-stock-header .module_container--outer {
  display: inline-block;
  width: 100%;
  position: relative;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .module-stock-header .module_container--outer {
    max-width: none;
    min-height: auto;
    display: block;
    text-align: left;
    padding: 20px;
  }
}
.module-stock-header_link {
  font-size: 12px;
  line-height: 22px;
}
.module-stock-header_link:focus {
  outline: 2px dotted #fff;
}
.module-stock-header_description1 {
  display: block;
  font-size: 2.2rem;
  margin: 15px 0;
}
@media only screen and (max-width: 768px) {
  .module-stock-header_description1 {
    text-align: center;
    margin: 0;
  }
}
@media only screen and (max-width: 480px) {
  .module-stock-header_description1 {
    text-align: left;
  }
}
.module-stock-header_stock-price {
  font-size: 1.4rem;
  line-height: 1.6rem;
  color: #000;
}
@media only screen and (max-width: 768px) {
  .module-stock-header_stock-price {
    text-align: center;
  }
}
@media only screen and (max-width: 480px) {
  .module-stock-header_stock-price {
    text-align: left;
  }
}
.module-stock-header_stock-price:not(last-child) {
  margin-right: 14px;
}
.module-stock-header_stock-price:hover {
  color: #cd173f;
}
.module-stock-header_change, .module-stock-header_percent-change {
  display: inline-block;
  margin: 10px 0;
  font-size: 2rem;
}
@media only screen and (max-width: 768px) {
  .module-stock-header_change, .module-stock-header_percent-change {
    margin: 0;
  }
}
.module-stock-header_percent-change::before {
  content: "(";
}
.module-stock-header_percent-change .module-stock-header_indicator {
  display: none;
}
.module-stock-header_percent-change::after {
  content: ")";
}
.module-stock-header_volume {
  display: none;
  margin-bottom: 32px;
}
.module-stock-header_volume::before {
  content: "Volume ";
  font-weight: bold;
}
.module-stock-header_description3, .module-stock-header_date {
  display: block;
  font-size: 1.2rem;
  margin: 10px 0;
}
.module-stock-header_volume-text {
  display: none;
}

.js--header-small .module-stock-header {
  transform: translateY(-100px);
  max-height: 0;
  transition: max-height 0.5s ease-out;
}

/* ------ Stock Header Module ----- */
.module-stock-banner {
  text-align: right;
  margin: 50px 0;
}
@media only screen and (max-width: 768px) {
  .module-stock-banner {
    text-align: left;
    margin: 0;
  }
}
.module-stock-banner .module_container--outer {
  display: inline-block;
  padding: 40px 25px;
  background: #cd173f;
  text-align: center;
  width: 100%;
  max-width: 260px;
  min-height: 270px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .module-stock-banner .module_container--outer {
    max-width: none;
    min-height: auto;
    display: block;
    text-align: left;
    padding: 20px;
  }
}
.module-stock-banner_link {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.module-stock-banner_link:focus {
  outline-offset: 2px;
  outline-color: #fff;
}
.module-stock-banner_description1 {
  display: block;
  font-size: 2.6rem;
  line-height: 34px;
  font-weight: 500;
  margin: 0 0 14px 0;
}
@media only screen and (max-width: 768px) {
  .module-stock-banner_description1 {
    text-align: center;
    margin: 0;
  }
}
@media only screen and (max-width: 480px) {
  .module-stock-banner_description1 {
    text-align: left;
  }
}
.module-stock-banner_stock-price {
  display: block;
  font-size: 4rem;
  line-height: 49px;
  color: #fff;
}
.module-stock-banner_stock-price::before {
  content: "$";
}
@media only screen and (max-width: 768px) {
  .module-stock-banner_stock-price {
    text-align: center;
  }
}
@media only screen and (max-width: 480px) {
  .module-stock-banner_stock-price {
    text-align: left;
  }
}
.module-stock-banner_change, .module-stock-banner_percent-change {
  display: inline-block;
  margin: 14px 0;
  font-size: 2rem;
  line-height: 30px;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .module-stock-banner_change, .module-stock-banner_percent-change {
    margin: 0;
  }
}
.module-stock-banner_percent-change::before {
  content: "(";
}
.module-stock-banner_percent-change .module-stock-header_indicator {
  display: none;
}
.module-stock-banner_percent-change::after {
  content: ")";
}
.module-stock-banner_volume {
  display: none;
  margin-bottom: 32px;
}
.module-stock-banner_volume::before {
  content: "Volume ";
  font-weight: bold;
}
.module-stock-banner_description3, .module-stock-banner_date {
  display: block;
  font-size: 1.2rem;
  line-height: 22px;
}
.module-stock-banner_volume-text {
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .module-stock-banner {
    margin-left: -70px;
  }
}

/* ------ Stock Quote Module ------ */
.module-stock_table {
  width: 100%;
  text-align: left;
}
.module-stock_table caption {
  caption-side: bottom;
  padding: 5px 15px;
  font-size: 1.2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #f8f1f3;
}
.module-stock_table th {
  background-color: #f8f1f3;
}
.module-stock_table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.module-stock_table span {
  display: block;
  padding: 20px 15px;
}
@media only screen and (max-width: 480px) {
  .module-stock_table span {
    padding: 15px 8px;
    font-size: 14px;
    text-align: left;
  }
}
@media only screen and (max-width: 768px) {
  .module-stock.module-stock-historical .module-stock_empty {
    display: none;
  }
}
.module-stock_lookup-title {
  display: none;
}
.module-stock_up {
  color: #006613;
}
.module-stock_down {
  color: #b72121;
}
.module-stock_date {
  margin-top: 25px;
  text-align: right;
  font-style: italic;
  font-size: 1.4rem;
}
.module-stock-historical {
  font-size: 1.6rem;
}
@media only screen and (max-width: 768px) {
  .module-stock-historical .module_options-label, .module-stock-historical .module_options-select, .module-stock-historical .module_options-submit {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
}
.module-stock-historical .module_options-legend {
  line-height: 1.55;
  margin: 0 0 17px 0;
}
@media screen and (min-width: 901px) {
  .module-stock-historical .module_options-legend {
    float: left;
    margin: 18px 17px 0 0;
  }
}
.module-stock-historical .module_options-submit {
  margin: 0;
  align-self: flex-end;
}
.module-stock-historical .module_options-legend, .module-stock-historical .module_options-label, .module-stock-historical .module_options-label-date {
  font-size: 1.8rem;
  font-weight: 500;
}
.module-stock-historical .module_options-label-date {
  display: block;
  margin-top: 8px;
}
@media only screen and (min-width: 769px) {
  .module-stock-historical .module_options-fieldset {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .module-stock-historical .module_options-label {
    margin-right: 24px;
    text-align: left;
  }
  .module-stock-historical .module_options-select {
    min-width: 165px;
    margin-right: 0;
  }
}
.module-stock-historical .module_container--content {
  text-align: left;
}
.module-stock .stock-historical-range .module_options > *:not(:last-of-type) {
  margin-bottom: 20px;
}

/* - MailingList Subscribe Module - */
.module-subscribe .module_title {
  text-transform: unset;
}
.module-subscribe_table {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}
.module-subscribe_table label,
.module-subscribe_table span {
  font-size: 1.2rem;
  line-height: 2.2rem;
}
.module-subscribe_table tbody {
  width: 100%;
  display: block;
}
.module-subscribe_table-input .module_input {
  line-height: 2.2rem;
}
.module-subscribe .button {
  width: 215px;
  border-radius: 50px;
  margin-left: 0;
  margin-right: 0;
  padding: 14px 24px;
  font-weight: 600;
  letter-spacing: 1.5px;
  background: #cd173f;
}
.module-subscribe .button:hover {
  background: #9a1130;
}
.module-subscribe_form {
  font-size: 0;
}
.module-subscribe_form tr {
  display: inline-block;
  width: 50%;
  margin-bottom: 20px;
  vertical-align: top;
  font-size: 1.6rem;
}
.module-subscribe_form tr:nth-child(even) {
  padding-left: 10px;
}
.module-subscribe_form tr:nth-child(odd) {
  padding-right: 10px;
}
.module-subscribe_form tr.module-subscribe_notes-text {
  margin: 0;
}
.module-subscribe_form tr.module-subscribe_notes-text, .module-subscribe_form tr.module-subscribe_notes-input {
  display: block;
  width: 100%;
  padding: 0;
}
@media only screen and (max-width: 768px) {
  .module-subscribe_form tr {
    width: 100%;
  }
  .module-subscribe_form tr:nth-child(even) {
    padding-left: 0;
  }
  .module-subscribe_form tr:nth-child(odd) {
    padding-right: 0;
  }
}
.module-subscribe_form td {
  display: block;
}
.module-subscribe_form label {
  display: inline-block;
  margin-bottom: 5px;
}
.module-subscribe_mailing-list {
  font-size: 1.4rem;
  line-height: 1.1;
}
.module-subscribe_mailing-list tr.module-subscribe_list-header td {
  padding-bottom: 15px;
}
.module-subscribe_mailing-list tr table td {
  padding-bottom: 10px;
}
.module-subscribe_mailing-list tr table tr:last-child td {
  padding-bottom: 0;
}
.module-subscribe_unsubscribe {
  font-size: 1rem;
  display: none;
}
.module-subscribe .module_required {
  font-size: 1.4rem;
}
.module-subscribe .module_required-text {
  margin-top: 20px;
}
.module-subscribe .module_introduction {
  margin-bottom: 0;
}

/* MailingList Unsubscribe Module */
.module-unsubscribe .module_title {
  text-transform: capitalize;
}
.module-unsubscribe .button {
  width: 215px;
  border-radius: 50px;
  margin-left: 0;
  margin-right: 0;
  padding: 14px 24px;
  font-weight: 600;
  letter-spacing: 1.5px;
  background: #cd173f;
}
.module-unsubscribe .button:hover {
  background: #9a1130;
}
.module-unsubscribe_table {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .module-unsubscribe_table {
    width: 100%;
  }
}
.module-unsubscribe_table td {
  padding-right: 10px;
}
@media only screen and (max-width: 768px) {
  .module-unsubscribe_table td {
    padding-right: 0;
  }
}
.module-unsubscribe_table label {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 2.2rem;
  margin-bottom: 5px;
}
.module-unsubscribe_table .module_input[type=email] {
  background-color: #fafafa;
  border: 1px solid #c4c4c4;
  font-size: 1.2rem;
  line-height: 2.2rem;
}

.module_our-brands .module_title {
  font-family: Montserrat, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 46px;
  text-align: center;
  color: #333;
  text-transform: capitalize;
}
.module_our-brands .splide .module_item {
  border-top: 0;
  text-align: center;
  padding: 0;
}
.module_our-brands .splide ul.splide__pagination {
  display: none;
}
.module_our-brands .splide .splide__arrow {
  top: 56%;
}
.module_our-brands .splide .splide__arrow--prev {
  left: 0;
}
.module_our-brands .splide .splide__arrow--next {
  right: 0;
}
.module_our-brands .splide__list {
  align-items: center;
}

.pane--content .module.module_our-values {
  padding-bottom: 111px;
}

.module_our-values {
  position: relative;
  background-color: #f8f1f3;
  overflow: hidden;
}
.module_our-values .grid {
  position: relative;
}
.module_our-values-items {
  padding-left: 0;
}
@media only screen and (max-width: 768px) {
  .module_our-values-items {
    padding-left: 10px;
  }
}
.module_our-values-items .splide {
  left: -85px;
  width: 300%;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .module_our-values-items .splide {
    left: 0;
    width: unset;
  }
}
.module_our-values-items .splide__arrows {
  position: absolute;
  bottom: -64px;
  left: 10px;
  display: flex;
  gap: 17px;
}
@media only screen and (max-width: 768px) {
  .module_our-values-items .splide__arrows {
    left: unset;
    right: 0;
  }
}
.module_our-values-items .splide__arrow {
  position: relative;
  top: unset;
  left: unset;
  right: unset;
  transform: unset;
}
.module_our-values-items .splide li {
  max-width: 295px;
  background-color: #fff;
  margin: 0 10px;
}
@media only screen and (max-width: 768px) {
  .module_our-values-items .splide li {
    max-width: 100%;
  }
}
.module_our-values-text {
  padding-top: 35px;
  padding-right: 110px;
}
@media only screen and (max-width: 768px) {
  .module_our-values-text {
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 100px;
  }
}
.module_our-values::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 46%;
  height: 100%;
  z-index: 0;
  background-image: url('../design/banner/careers-our-values.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
}
@media screen and (min-width: 480px) and (max-width: 768px) {
  .module_our-values::after {
    left: 0;
    top: 45%;
    height: 60%;
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .module_our-values::after {
    left: 0;
    top: 50%;
    height: 55%;
    width: 100%;
  }
}
.module_our-values .value-contents {
  padding: 50px 25px;
}
.module_our-values .value-contents :last-child {
  margin-bottom: 0;
}
.module_our-values p:last-child {
  margin-top: 30px;
}

/* ==================================
 ---------- SUSTAINABILITY ---------
================================== */
@media only screen and (max-width: 768px) {
  .page--sustainability .pane--banner .pane_inner {
    display: block;
    text-align: center;
  }
}
.page--sustainability .pane--banner .module-page-title {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .page--sustainability .pane--banner .module-page-title {
    max-width: none;
    text-align: center;
  }
}
.page--sustainability .pane--content .module_sustainability-strategy {
  padding-bottom: 37px;
}
.page--sustainability .pane--content .section-env-commit,
.page--sustainability .pane--content .section-social-commit {
  padding-top: 40px;
  padding-bottom: 40px;
}

@media only screen and (min-width: 1024px) {
  .section-env-commit .section-layout {
    display: flex;
  }
  .section-env-commit .section-layout div {
    flex-basis: 50%;
  }
  .section-env-commit {
    background: url("../images/sustainability-page/sustainable_env-commitment.jpg"), #f3f7f9;
    background-position: left;
    background-repeat: no-repeat;
    background-size: 43% auto, cover;
  }
  .section-social-commit {
    background: url("../images/sustainability-page/sustainable_social-commitment.jpg") no-repeat right center;
    background-size: 43% auto;
  }
  .section-social-commit .section-layout {
    display: flex;
  }
  .section-social-commit .section-layout .content {
    flex-basis: 50%;
  }
  .background_sustainability-social-commit {
    display: none;
  }
}
@media only screen and (max-width: 1023px) {
  .background_sustainability-env-commit {
    background: url("../images/sustainability-page/sustainable_env-commitment.jpg") no-repeat center;
    background-size: cover;
    margin-bottom: 20px;
    height: 400px;
  }
}
.background_sustainability-social-commit {
  background: url("../images/sustainability-page/sustainable_social-commitment.jpg") no-repeat center;
  background-size: cover;
  margin-bottom: 20px;
  height: 400px;
}

.sustainability-report {
  max-width: 250px;
}
.sustainability-report .module_link {
  margin: 25px 0 0 0;
  text-transform: none;
  font-size: 2.1rem;
  position: relative;
  padding-left: 30px;
}
.sustainability-report .q4icons [href$=".pdf"] .q4icons_icon::before,
.sustainability-report .q4icons [href$=".PDF"] .q4icons_icon::before {
  position: absolute;
  left: 0;
  top: 5px;
  content: "\e910";
}
@media only screen and (max-width: 768px) {
  .sustainability-report {
    max-width: none;
    text-align: center;
    margin: 50px auto 0 auto;
  }
}
.sustainability-values {
  background-color: #141c1f;
  color: #fff;
  background-image: url('../design/banner/sustainability-values-banner.jpg');
  background-size: cover;
  background-position: center;
}
.sustainability-values_item:not(:first-child) {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(226, 226, 226, 0.5);
}
.sustainability-values_grid {
  align-items: center;
}
.sustainability-values_icon {
  font-size: 5rem;
}
.sustainability-values_number {
  font-size: 3.6rem;
}
.sustainability-values_slideshow iframe {
  left: 0;
  top: 0;
}
@media only screen and (max-width: 1024px) {
  .sustainability-values_slideshow {
    text-align: center;
  }
}
@media only screen and (max-width: 768px) {
  .sustainability-values_grid {
    text-align: center;
  }
  .sustainability-values_number {
    display: block;
    margin-top: 10px;
  }
}
.sustainability-commitment.module {
  padding: 0 !important;
}
.pane--content .sustainability-commitment .module_container--outer {
  max-width: none;
  padding: 0;
}

.sustainability-commitment_row {
  display: flex;
  align-items: center;
}
.sustainability-commitment_row--reverse {
  flex-direction: row-reverse;
}
.sustainability-commitment_image {
  flex: 0 0 auto;
}
.sustainability-commitment_image img {
  vertical-align: top;
}
.sustainability-commitment_content {
  flex: 1 1 auto;
  padding-left: 8vw;
  padding-right: 8vw;
}
.sustainability-commitment .button--cta {
  padding-right: 0;
}
.sustainability-commitment .button--cta::after {
  position: static;
  margin-left: 5px;
  vertical-align: top;
  transition-property: margin-left;
}
.sustainability-commitment .button--cta:hover::after, .sustainability-commitment .button--cta:focus::after {
  margin-left: 10px;
}
@media screen and (min-width: 1201px) {
  .pane--content .sustainability-commitment--social.module {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 1200px) {
  .pane--content .sustainability-commitment .module_container--outer {
    padding-left: 20px;
    padding-right: 20px;
  }
  .sustainability-commitment_image {
    flex: auto;
    flex-basis: 25%;
  }
  .sustainability-commitment_content {
    flex: auto;
    flex-basis: 75%;
    padding-left: 20px;
    padding-right: 0;
  }
  .sustainability-commitment_row--reverse .sustainability-commitment_content {
    padding-left: 0;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .sustainability-commitment_image {
    flex-basis: 33.33%;
  }
  .sustainability-commitment_content {
    flex-basis: 66.66%;
  }
}
@media only screen and (max-width: 768px) {
  .sustainability-commitment_row {
    display: block;
  }
  .sustainability-commitment_image {
    padding-bottom: 30px;
  }
  .sustainability-commitment_content {
    padding-left: 0;
    padding-right: 0;
  }
}
.sustainability-governance {
  background-color: #141c1f;
  color: #fff;
  background-image: linear-gradient(to bottom, rgba(20, 28, 31, 0.8), rgba(20, 28, 31, 0.8)), url("../images/sustainability-page/sustainable_govern-commitment.jpg");
  background-size: cover;
  background-position: center;
  padding-top: 50px !important;
  padding-bottom: 30px !important;
}
.sustainability-governance .button--cta {
  padding-right: 0;
}
.sustainability-governance .button--cta:hover {
  color: #fff;
}
.sustainability-governance .button--cta::after {
  position: static;
  margin-left: 5px;
  vertical-align: top;
  transition-property: margin-left;
}
.sustainability-governance .button--cta:hover::after, .sustainability-governance .button--cta:focus::after {
  margin-left: 10px;
}
.sustainability-awards .module_title {
  word-break: break-word;
}
.sustainability-awards .module_container--widget {
  margin-bottom: 30px;
  padding: 0;
}
.sustainability-awards_image {
  padding: 20px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  margin-top: 5px;
  transition: transform 0.6s ease;
}
.sustainability-awards_image:hover {
  transform: translateY(-5px);
}
.sustainability-awards_title {
  margin-top: 30px;
}
.sustainability-awards .button--cta {
  padding-right: 0;
}
.sustainability-awards .button--cta::after {
  position: static;
  margin-left: 5px;
  vertical-align: top;
  transition-property: margin-left;
}
.sustainability-awards .button--cta:hover::after, .sustainability-awards .button--cta:focus::after {
  margin-left: 10px;
}
@media only screen and (max-width: 1024px) {
  .sustainability-awards_item {
    margin-bottom: 30px;
  }
  .sustainability-awards_title {
    margin-top: 20px;
  }
}
.sustainability-news .module_container--widget {
  display: flex;
  justify-content: stretch;
  align-items: stretch;
  padding: 0;
  margin-bottom: 20px;
}
.sustainability-news .module_item {
  margin: 0;
  padding: 0 0 0 20px;
  border: none;
  display: flex;
  align-self: stretch;
}
.sustainability-news .module_item-wrap {
  border-bottom: 1px solid rgba(20, 28, 31, 0.5);
  padding-bottom: 40px;
  height: 100%;
}
.sustainability-news .module_date-time {
  color: #2a3035;
}
.sustainability-news .slick-arrow {
  left: 50%;
  right: auto;
  top: auto;
  bottom: 20px;
}
.sustainability-news .slick-prev {
  transform: translateX(-100%);
}
.sustainability-news .slick-next {
  transform: translateX(100%);
}

@supports (outline-offset: -2px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 2px dotted #000;
    outline-offset: -2px;
  }
}
.splide.is-focus-in .splide__arrow:focus {
  outline: 2px dotted #000;
  outline-offset: 2px;
}
.splide__arrow {
  opacity: 1;
  width: 40px;
  height: 40px;
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15);
}
.splide__arrow svg {
  fill: #cd173f;
}
.splide__arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.splide__arrow:disabled:hover {
  background: #fff;
}
.splide__arrow:disabled:hover svg {
  fill: #cd173f;
}
.splide__arrow:hover {
  background: #cd173f;
}
.splide__arrow:hover svg {
  fill: #fff;
}
.splide__arrow:focus {
  outline: 2px solid #cd173f;
}
.splide__pagination__page {
  background: #fff;
  width: 8px;
  height: 7.87px;
  margin: 3px 5px;
  opacity: 0.4;
}
.splide__pagination__page.is-active {
  transform: unset;
  opacity: 1;
}

/* Corporate Overview Banner Slider */
.module-banner-slider .splide__pagination {
  bottom: 28px;
}
.module-banner-slider .splide.banners {
  width: 100vw;
  height: 700px;
  position: relative;
  left: calc(-50vw + 50%);
}
@media only screen and (max-width: 768px) {
  .module-banner-slider .splide.banners {
    height: 550px;
  }
}
.module-banner-slider .splide__track {
  height: 100%;
}
.module-banner-slider .splide__slide .small {
  font-size: 1.8rem;
  line-height: 28px;
  font-weight: 500;
  text-align: center;
}
.module-banner-slider .splide__slide .h1 {
  text-align: center;
  margin-top: 24px;
  margin-bottom: 24px;
}
.module-banner-slider .splide__slide .button {
  background-color: transparent;
  border-radius: 50px;
  border-color: #cd173f;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  line-height: 14px;
}
.module-banner-slider .splide__slide .button:hover {
  background: #cd173f;
}
.module-banner-slider .splide__overlay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.7) 90%, transparent 100%);
  padding: 0 20px;
}
.module-banner-slider .splide__overlay > * {
  max-width: 960px;
}

.page--overview .layout--home .pane--banner {
  padding-top: 0;
}
.page--overview .layout--home .pane--content_inner {
  padding-top: 0;
}

/* Banners */
.layout--one-column .pane--banner {
  height: 500px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .layout--one-column .pane--banner {
    height: 400px;
  }
}
@media only screen and (max-width: 480px) {
  .layout--one-column .pane--banner {
    height: 300px;
  }
}

.Sectionabout-us .pane--banner, .SectionAboutHistory .pane--banner {
  background: url('../design/banner/about-us-banner.jpg') center center black;
  background-size: cover;
}
.projects-banner .pane--banner, .SectionOurProducts .pane--banner, .Sectionour-portfolio .pane--banner {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 100%, transparent 100%), url('../design/banner/ourproduct-banner.jpg') center center black;
  background-size: cover;
}
.PageInvestorRelations .pane--banner {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 100%, transparent 100%), url('../design/banner/investor-hero-banner.jpg') center center black;
  background-size: cover;
}
.PageInvestorRelationsInvestorOverview .pane--banner {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 100%, transparent 100%), url('../design/banner/investor-overview-banner.jpg') center center black;
  background-size: cover;
}
.Sectioninvestor-relations .pane--banner, .Sectionresources .pane--banner, .ParentSection_stock-info .pane--banner, .ParentSection_governance .pane--banner, .ParentSection_financials .pane--banner, .Sectioninvestor-news .pane--banner, .Sectionevents .pane--banner, .Sectionpresentations .pane--banner {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 100%, transparent 100%), url('../design/banner/investor-inner-banner.jpg') center center black;
  background-size: cover;
}
.Sectionnewsroom .pane--banner, .PageContact .pane--banner {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 100%, transparent 100%), url('../design/banner/newsroom-banner.jpg') center center black;
  background-size: cover;
}
.PageCareers .pane--banner {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 100%, transparent 100%), url('../design/banner/careers-banner.jpg') center center black;
  background-size: cover;
}
.PageSustainability .pane--banner {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 100%, transparent 100%), url('../design/banner/sustainability-banner.jpg') center center black;
  background-size: cover;
}
.PageTermsofUse .pane--banner, .PagePrivacyPolicy .pane--banner, .PageCookiesPolicy .pane--banner, .PageSearchResults .pane--banner, .PageSiteMap .pane--banner {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 100%, transparent 100%), url('../design/banner/Big_Spring_Texas_Sept_26-28_2022_-23.jpg') center center black;
  background-size: cover;
}
.about-banner .pane--banner {
  background: url('../design/banner/about-us-hero.jpg') center center black;
  background-size: cover;
}
.PageAboutUsOurValues .pane--banner {
  background: url('../design/banner/banner-our-values.jpg') center center black;
  background-size: cover;
}
.PageAboutUsHistory .pane--banner {
  background: url('../design/banner/banner-history.jpg') center center black;
  background-size: cover;
}
.PageAboutUsManagement .pane--banner {
  background: url('../design/banner/banner-management.jpg') center center black;
  background-size: cover;
}
.PageAboutUsBoardofDirectors .pane--banner {
  background: url('../design/banner/banner-bod.jpg') center center black;
  background-size: cover;
}
.PageBusinessOperationsCrudeOil .pane--banner {
  background: url('../design/banner/banner-crude-oil.jpg') center center black;
  background-size: cover;
}
.PageBusinessOperationsProducedWater .pane--banner {
  background: url('../design/banner/banner-produced-water.jpg') center center black;
  background-size: cover;
}
.PageBusinessOperationsNaturalGas .pane--banner {
  background: url('../design/banner/banner-natural-gas.jpg') center center black;
  background-size: cover;
}
.PageBusinessOperationsRefinedProducts .pane--banner {
  background: url('../design/banner/banner-refined-products.jpg') center center black;
  background-size: cover;
}
.PageAboutUsRE .pane--banner {
  background: url('../design/banner/banner-bod.jpg') center center black;
  background-size: cover;
}
.PageAboutUsGovernance .pane--banner {
  background: url('../design/banner/banner-governance.jpg') center center black;
  background-size: cover;
}
.PageAboutUsNewsroom .pane--banner {
  background: url('../design/banner/banner-newsroom.jpg') center center black;
  background-size: cover;
}
.PageCareersLifeatDelekLogistics .pane--banner {
  background: url('../design/banner/careers-1.jpg') center center black;
  background-size: cover;
}
.PageCareersLocations .pane--banner {
  background: url('../design/banner/careers-2.jpg') center center black;
  background-size: cover;
}
.page--social-commitment .pane--banner {
  background: url('../design/banner/social-commitment-banner.jpg') center center black;
  background-size: cover;
}
.page--public-awareness .pane--banner {
  background: url('../design/banner/banner-public-awareness.jpg') center center black;
  background-size: cover;
}
.PageContactUs .pane--banner {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 100%, transparent 100%), url('../design/banner/hero-about-us.png') center center black;
  background-size: cover;
}

.module_hero-video__wrapper {
  position: relative;
  height: min(100vh, 700px);
  width: 100%;
  overflow: hidden;
}
.module_hero-video__wrapper video {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center 25%;
  width: 100%;
  height: 100%;
}
.module_hero-video__button {
  position: absolute;
  bottom: 40px;
  left: min(10vw, 130px);
  z-index: 10;
  cursor: pointer;
  padding: 0;
  background: unset;
  margin: unset;
  border: unset;
}
.module_hero-video__button svg {
  display: block;
}

.module_link-boxes .module-inner-item {
  background-image: linear-gradient(180deg, rgba(31, 20, 22, 0) 0%, rgba(31, 20, 22, 0) 27.66%, rgba(31, 20, 22, 0.9) 80.06%);
  background-size: cover;
  background-position: center;
  height: 216px;
  position: relative;
  transition: 0.5s ease-in-out;
}
.module_link-boxes .module-inner-item .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: 0.5s ease;
  background-color: #2431d8;
}
.module_link-boxes .module-inner-item:hover, .module_link-boxes .module-inner-item:focus-within {
  -webkit-box-shadow: -1px 7px 15px 0 rgba(0, 0, 0, 0.45);
  box-shadow: -1px 7px 15px 0 rgba(0, 0, 0, 0.45);
  transform: translateY(-20px);
}
.module_link-boxes .module-inner-item:hover .overlay, .module_link-boxes .module-inner-item:focus-within .overlay {
  opacity: 1;
}
.module_link-boxes .module-inner-item:hover .overlay-learn-more, .module_link-boxes .module-inner-item:focus-within .overlay-learn-more {
  opacity: 1;
}
.module_link-boxes .module-inner-item:hover .overlay-learn-more:hover, .module_link-boxes .module-inner-item:focus-within .overlay-learn-more:hover {
  text-decoration: underline;
}
.module_link-boxes .module-inner-item .module-slide-title {
  font-size: 28px;
  line-height: 1.2142857143;
  position: relative;
  top: 145px;
  left: 30px;
  z-index: 1;
  color: #fff;
}
.module_link-boxes .module-inner-item .overlay-learn-more {
  opacity: 0;
  transition: 0.5 ease;
  text-transform: uppercase;
  position: relative;
  top: 180px;
  font-size: 12px;
  left: 30px;
}
.module_link-boxes .module-inner-item .overlay-learn-more a {
  color: #fff;
}
.module_biz-ops, .module-social_commitment {
  padding: 5rem 2rem !important;
}
.module_biz-ops .module-inner-item, .module-social_commitment .module-inner-item {
  position: relative;
  background-image: unset;
  height: unset;
  aspect-ratio: 70/103;
  padding: 3.2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 2.4rem;
  overflow: hidden;
}
.module_biz-ops .module-inner-item::before, .module-social_commitment .module-inner-item::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: var(--image-url);
  background-size: cover;
  background-position: center;
}
.module_biz-ops .module-inner-item::after, .module-social_commitment .module-inner-item::after {
  content: "";
  position: absolute;
  inset: 50% 0 0 0;
  z-index: 0;
  background-image: linear-gradient(to bottom, rgba(20, 28, 31, 0), rgba(20, 28, 31, 0.9));
  transition: all 300ms ease;
}
.module_biz-ops .module-inner-item > *, .module-social_commitment .module-inner-item > * {
  z-index: 1;
}
.module_biz-ops .module-inner-item .module-slide-title, .module-social_commitment .module-inner-item .module-slide-title {
  font-size: 2.8rem;
  line-height: 1.2142857143;
  font-weight: 400;
  top: unset;
  left: unset;
  color: #fff;
  margin-bottom: 2.4rem;
  position: relative;
}
.module_biz-ops .module-inner-item .module-slide-title::after, .module-social_commitment .module-inner-item .module-slide-title::after {
  content: "";
  width: 5rem;
  height: 0.1rem;
  position: absolute;
  bottom: -2.4rem;
  left: 0;
  background-color: #cd173f;
}
.module_biz-ops .module-inner-item .more-info, .module-social_commitment .module-inner-item .more-info {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  opacity: 0;
  transition: grid-template-rows 600ms 200ms ease, opacity 600ms 0ms ease;
}
.module_biz-ops .module-inner-item .more-info__content, .module-social_commitment .module-inner-item .more-info__content {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  overflow: hidden;
}
.module_biz-ops .module-inner-item .more-info__content a, .module-social_commitment .module-inner-item .more-info__content a {
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  line-height: 100%;
  font-size: 1.4rem;
}
.module_biz-ops .module-inner-item .more-info__content p, .module-social_commitment .module-inner-item .more-info__content p {
  line-height: 1.5;
  font-size: 1.6rem;
}
.module_biz-ops .module-inner-item .more-info__content > *, .module-social_commitment .module-inner-item .more-info__content > * {
  margin: 0;
}
.module_biz-ops .module-inner-item:hover, .module-social_commitment .module-inner-item:hover {
  transform: unset;
  box-shadow: unset;
}
.module_biz-ops .module-inner-item:hover::after, .module-social_commitment .module-inner-item:hover::after {
  inset: -50% 0 0 0;
}
.module_biz-ops .module-inner-item:hover .more-info, .module-social_commitment .module-inner-item:hover .more-info {
  grid-template-rows: 1fr;
  opacity: 1;
  transition: grid-template-rows 600ms 0ms ease, opacity 600ms 200ms ease;
}
.module_biz-ops .module-outer-item:nth-of-type(1) {
  --image-url: url('../design/banner/crude-oil.jpg');
}
.module_biz-ops .module-outer-item:nth-of-type(2) {
  --image-url: url('../design/banner/produced-water.jpg');
}
.module_biz-ops .module-outer-item:nth-of-type(3) {
  --image-url: url('../design/banner/natural-gas.jpg');
}
.module_biz-ops .module-outer-item:nth-of-type(4) {
  --image-url: url('../design/banner/refined-products.jpg');
}
.module-overview-social {
  background-image: url('../design/banner/social-commitment.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}
.module-overview-social:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.7);
}
.module-overview-social .module_title {
  text-align: center;
  z-index: 10;
}
.module-overview-social .module_container--outer {
  position: relative;
  z-index: 10;
}
.module-overview-social .module-outer-item:nth-of-type(1) {
  --image-url: url('../design/banner/safety.jpg');
}
.module-overview-social .module-outer-item:nth-of-type(2) {
  --image-url: url('../design/banner/environment.jpg');
}
.module-overview-social .module-outer-item:nth-of-type(3) {
  --image-url: url('../design/banner/sustainability.jpg');
}
.module-overview-social .module-outer-item:nth-of-type(4) {
  --image-url: url('../design/banner/philantropy.jpg');
}
.module-biz_ops--content p {
  font-size: 2rem;
  line-height: 1.5;
}

/* ------------------ Why Invest Page ------------------- */
.module-key_facts {
  background-color: #f8f1f3;
}
.module-key_facts-image-container {
  display: flex;
  justify-content: center;
}
.module-key_facts-image img {
  max-width: 575px;
  width: 100%;
  text-align: center;
}
.module-key_facts-facts {
  width: 100%;
}
.module-key_facts-facts-container {
  padding: 20px;
}
@media only screen and (max-width: 768px) {
  .module-key_facts-facts-container {
    padding: 40px 0;
    text-align: center;
  }
}
.module-key_facts-fact-item {
  display: flex;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid #141c1f;
}
@media only screen and (max-width: 768px) {
  .module-key_facts-fact-item {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
}
.module-key_facts-fact-item img {
  width: 100%;
  max-width: 52px;
}
.module-key_facts-fact_stat {
  width: 40%;
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0;
  padding: 0 20px 0 17px;
}
@media screen and (max-width: 1150px) {
  .module-key_facts-fact_stat {
    width: 55%;
  }
}
@media only screen and (max-width: 768px) {
  .module-key_facts-fact_stat {
    max-width: 150px;
  }
}
.module-key_facts-fact_text {
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .module-key_facts-fact_text {
    text-align: center;
  }
}
.module-why-win_item {
  display: flex;
  padding-bottom: 40px;
}
.module-why-win_icon {
  padding-right: 24px;
  margin-top: -25px;
}
.module-key_figures {
  position: relative;
  background-image: url('../design/banner/key-figures-banner.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #000;
}
.module-key_figures::before {
  content: "";
  background-color: rgba(20, 28, 31, 0.8);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}
.module-key_figures-container {
  color: #fff;
  position: relative;
}
.module-key_figures .module-why-invest_column h3 {
  color: #fff;
  font-size: 48px;
  font-size: 4.8rem;
  font-weight: 500;
  line-height: 5.8rem;
  font-family: "din-2014", sans-serif;
  font-style: normal;
}
.module-key_figures .module-why-invest_figures {
  margin: 20px 0;
}
.module-key_figures .module-why-invest_figures .grid_col:not(:last-of-type) {
  border-right: 1px solid #2431d8;
}
@media only screen and (max-width: 1024px) {
  .module-key_figures .module-why-invest_figures .grid_col:not(:last-of-type) {
    border-right: none;
  }
  .module-key_figures .module-why-invest_figures .grid_col:first-of-type::after {
    position: absolute;
    content: "";
    background-color: #2431d8;
    height: 60%;
    width: 1px;
    margin-left: 25%;
    top: 150px;
  }
}
@media only screen and (max-width: 480px) {
  .module-key_figures .module-why-invest_figures .grid_col:first-of-type::after {
    display: none;
  }
}
.module-world-presence .module_container--inner {
  background-color: #f3f7f9;
}
.module-world-presence-container {
  background-image: url('../design/banner/world-map-bg.svg');
  padding: 80px 50px;
  text-align: center;
  position: relative;
}
@media only screen and (max-width: 480px) {
  .module-world-presence-container {
    padding: 40px 20px;
  }
}
.module-world-presence-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media only screen and (max-width: 768px) {
  .module-world-presence-cards {
    flex-direction: column;
  }
}
.module-world-presence-card {
  max-width: 320px;
  color: #fff;
  padding: 30px;
}
@media only screen and (max-width: 768px) {
  .module-world-presence-card {
    max-width: 100%;
  }
}
.module-world-presence-card:first-child {
  background-color: #151f9f;
}
.module-world-presence-card:last-child {
  background-color: #2431d8;
}
.module-world-presence-figure {
  font-size: 6rem;
  font-weight: 700;
  line-height: 7.2rem;
  color: #fff;
}
.module-tabs-content-toggle-container {
  display: flex;
  list-style: none;
  padding-inline-start: 0;
  justify-content: center;
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .module-tabs-content-toggle-container {
    flex-direction: column;
  }
}
.module-tabs-content-toggle {
  background-color: #fff;
  border: 1px solid #f8f1f3;
  padding: 15px;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2rem;
  position: relative;
  color: #141c1f;
  min-width: 230px;
  cursor: pointer;
  transition: 0.25s ease-in-out;
  z-index: 2;
  font-family: "din-2014", sans-serif;
}
@media only screen and (max-width: 768px) {
  .module-tabs-content-toggle {
    width: 100%;
  }
}
.module-tabs-content-toggle::after {
  transition: 0.25s ease-in-out;
  content: "";
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px);
  z-index: 1;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid transparent;
}
@media only screen and (max-width: 768px) {
  .module-tabs-content-toggle::after {
    content: none;
  }
}
.module-tabs-content-toggle[aria-selected=true], .module-tabs-content-toggle:active, .module-tabs-content-toggle:hover, .module-tabs-content-toggle:focus {
  color: #fff;
  transition: 200ms ease-in-out;
}
.module-tabs-content-toggle[aria-selected=true], .module-tabs-content-toggle:active {
  background-color: #9a1130;
}
.module-tabs-content-toggle[aria-selected=true]::after, .module-tabs-content-toggle:active::after {
  border-top-color: #9a1130;
}
.module-tabs-content-toggle:hover, .module-tabs-content-toggle:focus[aria-selected=false] {
  background-color: #cd173f;
}
.module-tabs-content-toggle:hover::after, .module-tabs-content-toggle:focus[aria-selected=false]::after {
  border-top-color: #cd173f;
}
.module-tabs-content-toggle:focus {
  outline-color: #141c1f;
  outline-offset: 2px;
  z-index: 3;
}
@media only screen and (max-width: 768px) {
  .module-tabs-content-container .grid {
    padding-left: 0;
  }
}
.module-tabs-content-container .image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.module-quote-section .img-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.module-quote-section .img-container img {
  max-width: 592px;
  width: 100%;
}
.module-quote-section .quote-container {
  padding: 50px;
}
@media only screen and (max-width: 768px) {
  .module-quote-section .quote-container {
    margin-top: 40px;
    padding: 20px;
  }
}
.module-quote-section .quote-container .quote {
  font-size: 2.8rem;
  line-height: 3.4rem;
  font-weight: 700;
  font-style: normal;
  border: none;
  background: none;
  margin: 0;
  position: relative;
  vertical-align: center;
  display: block;
}
.module-quote-section .quote-container .quote::before {
  position: absolute;
  top: -20px;
  color: #cd173f;
  content: "";
  background: url('../design/svg/quote-icon.svg') no-repeat center center;
  background-size: cover;
  width: 22px;
  height: 19px;
  display: block;
}
.module-quote-section .quote-container .quote-author-container {
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  font-size: 1.8rem;
  line-height: 2.4rem;
}
.module-what-we-do .module_container--inner {
  display: flex;
}
.module-what-we-do .video_container {
  width: 50%;
  position: relative;
  overflow: hidden;
  padding-top: 28.25%;
}
.module-what-we-do .responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.module-what-we-do_content {
  width: 50%;
  padding: 100px 88px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

/* Footer Quicklinks Module */
@media (min-width: 768px) {
  .pane--footer .module-links.desktop--hidden {
    display: none !important;
  }
}
.pane--footer .module-links_list {
  display: grid;
  grid-template-columns: max-content max-content;
  justify-content: end;
  column-gap: 139px;
}
@media only screen and (max-width: 768px) {
  .pane--footer .module-links_list {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.pane--footer .module-links_list-item-link {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-transform: capitalize;
}
.pane--footer .module-links_list-item-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
/* ==================================
 ----------- LAYOUT CSS -----------
================================== */
/* ------- iframe layout CSS ------ */
.layout--iframe .pane--content .module {
  padding: 2.5rem 0;
}
.layout--iframe .pane--content .module_container--outer {
  max-width: none;
}

/* ==================================
 ------------ BLANK CSS -----------
================================== */
/* -------- Layout Specific ------- */
.layout .layout_inner {
  position: relative;
  overflow-y: clip;
}
.layout .layout_inner[aria-hidden=true] {
  pointer-events: none;
}
.layout .layout_inner[aria-hidden=true] .nav--mobile--toggle {
  pointer-events: auto;
}
@media only screen and (max-width: 1042px) {
  .layout.js--mobile {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
  }
}

/* --------- Pane Specific -------- */
.pane--header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;
  z-index: 201;
  transition: 0.3s ease-in-out;
}
.js--sticky .pane--header {
  background-color: #fff;
}

.js--mobile .pane--header {
  background-color: #000;
}

@media only screen and (max-width: 1042px) {
  .pane--header {
    padding: 0;
  }
}
.pane--header .pane_inner {
  padding: 0 80px;
  margin-inline: auto;
  width: min(100%, 1440px);
}
.pane--header .pane_inner .HeaderPaneDiv {
  display: flex;
  flex-wrap: wrap;
}
.pane--header .pane_inner .HeaderPaneDiv > *:has(> .module-stock-header), .pane--header .pane_inner .HeaderPaneDiv > *:has(> .nav--desktop--container) {
  flex: 100%;
}
.pane--header .pane_inner .HeaderPaneDiv > *:has(> .module-stock-header) {
  background-color: #f3f7f9;
  box-shadow: 50vw 0px 0px #f3f7f9, -50vw 0px 0px #f3f7f9;
}
.pane--header .module-logo a:focus {
  outline: 2px dotted #fff;
}
@media only screen and (max-width: calc(1042px + 158px)) and (min-width: 1042px) {
  .pane--header .module-logo {
    padding-top: 7px;
  }
}
.pane--header .module-logo img {
  vertical-align: top;
  width: min(100%, 120px);
}
.pane--header .module,
.pane--header .nav {
  vertical-align: top;
}
.pane--header .layout_toggle {
  display: none;
  text-align: right;
}
.pane--header .layout_toggle-button {
  font-size: 3.4rem;
  color: #141c1f;
  background: transparent;
  padding: 0;
  border: 0 none;
}
.js--mobile .pane--header .layout_toggle [class^=q4-icon_]::before,
.js--mobile .pane--header .layout_toggle [class*=" q4-icon_"]::before {
  font-size: 2.5rem;
  content: "\ed6d";
}

@media only screen and (max-width: 1042px) {
  .pane--header .pane_inner {
    height: var(--header-height);
    padding: 10px 0;
    margin: 0 0 0 20px;
  }
  .pane--header .module {
    vertical-align: middle;
  }
  .pane--header .module-logo {
    padding-top: 0;
  }
  .pane--header .module-logo img {
    margin-bottom: 0;
  }
  .pane--header .layout_toggle {
    display: inline-block;
  }
  .pane--header .nav,
.pane--header .module-search {
    display: none;
  }
}
.pane--banner {
  color: #fff;
  background-color: #000;
  padding-top: 105px;
  /* IR Home Page  banner */
}
.pane--banner .pane_inner {
  position: relative;
}
.pane--banner .pane_inner:not(:has(> span > .module_hero-video)) {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.pane--banner .module-page-title {
  min-height: 180px;
  height: 1px;
  /* IE11 Fix */
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  text-align: center;
}
.layout--home .pane--banner .module-page-title {
  height: auto;
  min-height: auto;
  text-align: left;
  display: inline-block;
}

@media only screen and (max-width: 1024px) {
  .pane--banner .module-page-title {
    min-height: 105px;
  }
  .layout--home .pane--banner .module-page-title {
    margin-bottom: 50px;
  }
}
.pane--banner h1 {
  margin: 0;
}
@media only screen and (max-width: 1024px) {
  .pane--banner h1 {
    max-width: none;
  }
}
@media only screen and (max-width: 1024px) {
  .pane--banner {
    padding-top: 65px;
  }
}
.ir-home-page .pane--banner.grid {
  margin-left: 0;
  padding-bottom: 85px;
  height: 792px;
}
@media only screen and (max-width: 1200px) {
  .ir-home-page .pane--banner.grid {
    height: auto;
  }
}
@media only screen and (max-width: 768px) {
  .ir-home-page .pane--banner.grid {
    padding-bottom: 0;
  }
}
.ir-home-page .pane--banner .pane_inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .ir-home-page .pane--banner .pane_inner {
    display: block;
  }
}
.ir-home-page .pane--banner .module_title {
  width: 50%;
}

.pane--content {
  background-color: #000;
}
.pane--content .module {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.pane--content .module_container--outer {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (min-width: 769px) {
  .module-container-padding .module_container--outer {
    padding-left: calc(25px + 5%);
    padding-right: calc(25px + 5%);
  }
}
.pane--content .module--thin {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.pane--content .module--thin-top {
  padding-top: 2.5rem;
}
.pane--content .module--thin-bottom {
  padding-bottom: 2.5rem;
}
.pane--content .module--thick {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}
.pane--content .module--thick-top {
  padding-top: 7.5rem;
}
.pane--content .module--thick-bottom {
  padding-bottom: 7.5rem;
}
.pane--content .module--no-padding {
  padding-top: 0;
  padding-bottom: 0;
}
.pane--content .module--no-padding-top {
  padding-top: 0;
}
.pane--content .module--no-padding-bottom {
  padding-bottom: 0;
}
.pane--content .module--landing-page-padding {
  padding: 10rem 0;
}
@media only screen and (max-width: 768px) {
  .pane--content .module--landing-page-padding {
    padding: 6rem 0;
  }
}
.pane--content .module--full-width .module_container--outer {
  max-width: 2560px;
}
.pane--content .module-sitemap {
  padding-bottom: 2.5rem;
}
.pane--content .module-home-esg {
  padding-top: 132px;
  padding-bottom: 132px;
}
.pane--content .ContentPaneDiv > span {
  outline: 1px solid red;
}
.pane--content .ContentPaneDiv > span .module-location_lists {
  padding: 0;
}
.pane--content .ContentPaneDiv > span .module-location_lists .module_container--inner {
  padding: 5rem 0;
}
.pane--content .ContentPaneDiv > span:nth-last-of-type(-n + 2) .module-location_lists .module_container--inner {
  border-top: 1px solid #fff;
}
.pane--footer .social_links, .pane--footer2 .social_links {
  display: inline-block;
}
.pane--footer .social_links .link, .pane--footer2 .social_links .link {
  margin: 0 6px;
  display: inline-block;
}
.pane--footer .social_links .link:last-child, .pane--footer2 .social_links .link:last-child {
  margin-right: 0;
}
@media only screen and (min-width: 1024px) and (max-width: 1028px) {
  .pane--footer .social_links .link, .pane--footer2 .social_links .link {
    margin: 0 3px;
  }
}
.pane--footer .social_links span, .pane--footer2 .social_links span {
  font-size: 16px;
  line-height: 24px;
  color: #1d1d1d;
  border-radius: 50%;
  padding: 5px;
}
.pane--footer {
  padding: 7rem 0 0 0;
}
.pane--footer .FooterPaneDiv {
  display: inline-flex;
  width: 100%;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 38px;
}
@media only screen and (max-width: 768px) {
  .pane--footer .FooterPaneDiv .module-logo .module_container--inner {
    display: grid;
    place-items: center;
  }
  .pane--footer .FooterPaneDiv .module-logo img {
    margin-bottom: 9px;
  }
  .pane--footer .FooterPaneDiv .module-logo h2 {
    text-align: center;
  }
}
.pane--footer .FooterPaneDiv .module-logo--footer_social-links {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
@media only screen and (max-width: 768px) {
  .pane--footer .FooterPaneDiv .module-logo--footer_social-links {
    justify-content: center;
    text-align: center;
    width: 100%;
    margin-bottom: 24px;
  }
}
.pane--footer .FooterPaneDiv .module-logo--footer_social-links h5 {
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .pane--footer .FooterPaneDiv {
    flex-direction: column;
  }
}
.pane--footer.grid {
  margin-left: 0;
}
.pane--footer .grid_col {
  margin-right: 0;
}
.pane--footer .pane_inner {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.pane--footer .social {
  margin: 34px 0 38px;
}
.pane--footer .social_links .link:hover span {
  background-color: white;
}
.pane--footer .social_links span {
  transition: background-color 0.3s ease;
  background-color: rgba(255, 255, 255, 0.7);
}
@media screen and (min-width: 1025px) {
  .pane--footer .social--mobile {
    display: none;
  }
}
.pane--footer .module-logo--footer .module_container--inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.pane--footer .module-logo--footer img {
  margin-bottom: 7px;
}
.pane--footer .module-logo--footer hr {
  margin: 16px 0 40px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15);
  border: none;
}
.pane--footer .module_title {
  margin: 0 0 10px 0;
  color: inherit;
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 34px;
  margin-top: 0;
}
.pane--footer .module_error-container {
  color: #fff;
  margin-bottom: 20px;
}
.pane--footer .module_message--error {
  color: #fff;
}
.pane--footer .module-contact [class^=q4-icon_],
.pane--footer .module-contact [class*=" q4-icon_"] {
  margin-right: 5px;
}
.pane--footer .module-contact_name {
  margin-bottom: 0;
  margin-top: 28px;
}
.pane--footer .module-contact_title {
  font-size: 1.2rem;
  margin-top: 0;
}
.pane--footer .module-contact h2::before {
  display: inline-block;
  position: relative;
  content: "";
  margin-right: 18px;
  vertical-align: middle;
  background-image: url('../design/footer-contact-us-logo.png');
  width: 35px;
  height: 35px;
  background-repeat: no-repeat;
}
.pane--footer .module_introduction {
  display: none;
}
.pane--footer .module-links {
  text-transform: uppercase;
  font-size: 1.4rem;
}
.pane--footer .module-links li:not(:last-child) {
  margin-bottom: 22px;
}
.pane--footer .module-subscribe h3::before {
  display: inline-block;
  position: relative;
  content: "";
  margin-right: 18px;
  vertical-align: middle;
  background-image: url('../design/footer-email-logo.png');
  width: 35px;
  height: 35px;
  background-repeat: no-repeat;
}
.pane--footer .module-subscribe_list-header, .pane--footer .module-subscribe_email .module_required {
  display: none;
}
.pane--footer .module-subscribe_form {
  padding-right: 195px;
}
@media only screen and (max-width: 480px) {
  .pane--footer .module-subscribe_form {
    padding-right: 0;
  }
}
.pane--footer .module-subscribe_form tbody {
  display: block;
}
.pane--footer .module-subscribe_form tr {
  width: 100%;
  margin: 0;
  padding: 0;
}
.pane--footer .module-subscribe_table-wrap {
  position: relative;
}
.pane--footer .module-subscribe_mailing-list {
  margin: 20px 0 10px;
}
.pane--footer .module-subscribe_list > td {
  padding: 0;
}
.pane--footer .module-subscribe_list table {
  display: block;
  width: 100%;
}
.pane--footer .module-subscribe_list table tr {
  display: inline-block;
  vertical-align: top;
  width: 33.3333%;
}
@media only screen and (max-width: 768px) {
  .pane--footer .module-subscribe_list table tr {
    width: auto;
    display: block;
  }
}
.pane--footer .module-subscribe input[type=checkbox] + label::before {
  border-color: #fff;
  background-color: transparent;
  transform: translateY(0%);
}
.pane--footer .module-subscribe .module-subscribe_submit-button {
  margin: 0;
}
.pane--footer .module-subscribe input[type=checkbox]:checked + label::after {
  content: "";
  position: absolute;
  left: 5px;
  width: 8px;
  height: 8px;
  background-color: #fff;
}
.pane--footer .module-subscribe input[type=text],
.pane--footer .module-subscribe input[type=email] {
  border-color: #fff;
}
.pane--footer .module-subscribe input[type=text]:focus,
.pane--footer .module-subscribe input[type=email]:focus {
  outline-offset: 2px;
  outline-color: #fff;
}
.pane--footer .module-subscribe .module_actions {
  margin: 0;
  position: absolute;
  right: 0;
  top: 15%;
  width: 100%;
  max-width: 165px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .pane--footer .module-subscribe .module_actions {
    top: 10%;
  }
}
@media only screen and (max-width: 480px) {
  .pane--footer .module-subscribe .module_actions {
    position: static;
    margin-top: 20px;
  }
}
.pane--footer .module-subscribe .module_actions .button {
  width: 100%;
  border: 2px solid #9a1130;
  border-radius: 35px;
  font-weight: 600;
  line-height: 17px;
  letter-spacing: 1.5px;
}
.pane--footer .module-subscribe .module_actions .button:focus {
  outline-offset: 2px;
  outline-color: #fff !important;
}
.pane--footer .module-subscribe_unsubscribe {
  display: block;
}
@media only screen and (max-width: 768px) {
  .pane--footer .module-subscribe {
    width: 100%;
  }
}
.pane--footer .module-subscribe_message--success {
  color: #00cc25;
}
.pane--footer .module_message--success {
  color: #fff;
}
.pane--footer2 {
  padding: 21px 0 21px 0;
  background-color: rgba(29, 29, 29, 0.2);
  font-size: 1.2rem;
  line-height: 1.83;
}
@media screen and (max-width: 850px) {
  .pane--footer2 {
    text-align: center;
  }
}
.pane--footer2 .pane_inner {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.pane--footer2 .pane_inner .wrapper {
  display: inline-flex;
  width: 100%;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .pane--footer2 .pane_inner .wrapper {
    flex-direction: column;
    row-gap: 10px;
  }
}
.pane--footer2 .module-cta {
  width: 100vw;
  position: relative;
  left: calc(-50vw + 50%);
  margin-left: 10px;
  background-color: #f1af0f;
  margin-bottom: 23px;
}
.pane--footer2 .module-cta .button--meeting {
  display: block;
  font-size: 1.3rem;
  color: #000;
  font-weight: 500;
  padding: 23px 35px;
  height: auto;
  border: none;
  text-align: center;
  margin: auto;
}
.pane--footer2 .module-cta .button--meeting:hover {
  background-color: #dc9e27;
  color: #000;
}
.pane--footer2 .module-cta .button--meeting:focus {
  outline-color: #f1af0f !important;
}
.pane--footer2 .module-links {
  margin-top: unset;
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .pane--footer2 .module-links {
    float: none;
    text-align: center;
  }
}
.pane--footer2 .module-links_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .pane--footer2 .module-links_list {
    justify-content: center;
  }
}
.pane--footer2 .module-links_list li:not(:first-child)::before {
  content: "|";
  margin: 0 10px;
}
.pane--footer2 .module-links_list li a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.pane--footer2 .module-q4-credits {
  display: inline-block;
}
.pane--footer2 .copyright {
  margin-top: 0;
  display: inline-block;
}
.pane--footer2 .social {
  text-align: right;
}
.pane--footer2 .social_links span {
  background-color: rgba(255, 255, 255, 0.7);
}
@media only screen and (max-width: 1024px) {
  .pane--footer2 .social {
    display: none;
  }
}
.pane--credits .pane_inner {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.layout_footer {
  background-color: #1d1d1d;
  color: #fff;
}
.layout_footer a {
  color: inherit;
}

/* --------- Page Specific -------- */
.page--no-alternating .pane--content {
  padding: 35px 0;
}
.page--no-alternating .module {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

/* -------- Module Specific ------- */
.module-overview,
.module-what-we-do {
  text-align: left;
}
.module-overview .button,
.module-what-we-do .button {
  margin: 0;
}
.module-overview_content h2,
.module-what-we-do_content h2 {
  margin: 0;
  text-transform: none;
}
@media only screen and (max-width: 1200px) {
  .module-overview_content h2,
.module-what-we-do_content h2 {
    margin: 0 auto;
  }
}
.module-overview_content p,
.module-what-we-do_content p {
  font-weight: 400;
  margin: 2.4rem 0;
}
@media only screen and (max-width: 1200px) {
  .module-overview,
.module-what-we-do {
    text-align: center;
  }
  .module-overview .button,
.module-what-we-do .button {
    margin: 0 auto;
  }
}

.module-overview .module_container {
  display: flex;
  justify-content: space-between;
}
.module-overview_content, .module-overview_image {
  width: 50%;
}
.module-overview_content {
  padding-right: 2.3rem;
  padding-left: 1.3rem;
}
.module-overview_content p {
  font-size: 2rem;
  line-height: 3rem;
}
.module-overview_image {
  min-height: 29.8rem;
  height: 100%;
  background: url("/design/overview.jpg") center center no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 1200px) {
  .module-overview .module_container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .module-overview_content, .module-overview_image {
    width: 100%;
  }
  .module-overview_content {
    padding-right: 0;
    padding-bottom: 6.6rem;
    margin: 0 auto;
  }
  .module-overview_image {
    margin-left: 1.3rem;
  }
}
@media only screen and (max-width: 768px) {
  .module-overview_image {
    padding-left: 0;
  }
}
@media only screen and (max-width: 480px) {
  .module-overview_image {
    min-height: 18rem;
    background: url("/design/overview_mobile.jpg") center center no-repeat;
    background-size: cover;
  }
}

.module-what-we-do .module_container {
  display: flex;
  justify-content: space-between;
  padding-right: 0 !important;
}
.module-what-we-do .module_container--inner {
  display: flex;
}
.module-what-we-do_content, .module-what-we-do_video {
  width: 50%;
}
@media only screen and (max-width: 1200px) {
  .module-what-we-do .video_container {
    width: 100%;
    padding-top: 56.25%;
  }
}
.module-what-we-do_content {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  padding-right: 2rem;
}
.module-what-we-do_content p {
  font-size: 1.6rem;
  line-height: 2.4rem;
}
@media only screen and (max-width: 1200px) {
  .module-what-we-do_content {
    text-align: center;
  }
}
.module-what-we-do_video {
  position: relative;
  overflow: hidden;
  padding-top: 28.25%;
}
.module-what-we-do_video .responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media only screen and (max-width: 1200px) {
  .module-what-we-do {
    text-align: center;
  }
  .module-what-we-do .module_container {
    flex-direction: column-reverse;
  }
  .module-what-we-do_content, .module-what-we-do_video {
    width: 100%;
  }
  .module-what-we-do_content {
    padding: 6rem 4rem;
    margin: 0 auto;
  }
  .module-what-we-do_video {
    display: flex;
    padding-top: 56.25%;
  }
}
.module-what-we-do .button {
  margin-left: 0;
  margin-right: 0;
}
@media only screen and (max-width: 1200px) {
  .module-what-we-do .button {
    margin-left: auto;
    margin-right: auto;
  }
}

.module-portfolio_wrapper {
  display: grid;
  gap: 2rem 0;
  grid-template-columns: minmax(0, 1fr);
}
@media screen and (min-width: 768px) {
  .module-portfolio_wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (min-width: 1025px) {
  .module-portfolio_wrapper {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.module-portfolio_column {
  padding: 0;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .module-portfolio_column:nth-child(even) {
    border-left: 1px solid #fff;
  }
}
@media screen and (min-width: 1025px) {
  .module-portfolio_column:not(:first-child) {
    border-left: 1px solid #fff;
  }
}
.module-portfolio_column h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-size: 3.6rem;
  line-height: 4.2rem;
  font-weight: 500;
  font-family: "din-2014", sans-serif;
  color: #cd173f !important;
  letter-spacing: -0.7px;
    padding-inline: 4px;
}
.module-portfolio_column h4,
.module-portfolio_column .h4 {
  font-size: 1.6rem;
  text-transform: none;
  font-weight: 400;
  line-height: 1.25;
  margin: 0;
    padding-inline: 18px;
}
.module-portfolio .grid {
  padding-bottom: 2.4rem;
}
.module-portfolio .slick-slide:not(:first-child) .module-portfolio_column,
.module-portfolio .grid_col {
  height: 100%;
}
@media only screen and (min-width: 768px) {
  .module-portfolio .grid_col:not(:first-child) .module-portfolio_column {
    border-left: 1px solid #ddd;
  }
}
.module-portfolio .slick-arrow::before {
  font-size: 20px;
  color: #141c1f;
}
@media only screen and (max-width: 1024px) {
  .module-portfolio .module-portfolio_column {
    padding-bottom: 4.8rem;
  }
  .module-portfolio .grid_col:nth-of-type(3) .module-portfolio_column {
    border-left: 0;
  }
}
@media only screen and (max-width: 768px) {
  .module-portfolio .grid {
    padding-bottom: 0;
  }
  .module-portfolio .grid_col:not(:first-child) .module-portfolio_column::before {
    content: "";
    width: 90%;
    height: 1px;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.1);
    top: 0;
    right: 5%;
  }
  .module-portfolio .module-portfolio_column {
    border-left: 0;
    padding: 2.4rem 0;
  }
}

.module-dividends .table {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
.module-dividends .table th {
  width: 25%;
}
.module-dividends .table th,
.module-dividends .table td {
  font-size: 1.6rem;
  line-height: 2.4rem;
  padding: 20px 30px;
}
@media (max-width: 620px) {
  .module-dividends .table--responsive thead {
    display: none;
  }
  .module-dividends .table--responsive tbody {
    border-top: none;
    border-bottom: none;
  }
  .module-dividends .table--responsive tr {
    display: flex;
    flex-direction: column;
  }
  .module-dividends .table--responsive td::before {
    content: attr(data-heading) ": ";
    font-weight: bold;
  }
}

/* HOME: Latest Presentation & Events */
.module-presentation-events {
  background: -moz-linear-gradient(left, #fff 66.66667%, #f8f1f3 66.66667%);
  background: -webkit-linear-gradient(left, #fff 66.66667%, #f8f1f3 66.66667%);
  background: linear-gradient(to right, #fff 66.66667%, #f8f1f3 66.66667%);
}
@media only screen and (max-width: 1024px) {
  .module-presentation-events {
    background: transparent;
  }
}
.module-presentation-events .module_container--inner > .grid {
  background: -moz-linear-gradient(left, #fff 66.66667%, #f8f1f3 66.66667%);
  background: -webkit-linear-gradient(left, #fff 66.66667%, #f8f1f3 66.66667%);
  background: linear-gradient(to right, #fff 66.66667%, #f8f1f3 66.66667%);
}
@media only screen and (min-width: 1025px) {
  .module-presentation-events .module_container--inner > .grid {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
  }
}
@media only screen and (max-width: 1024px) {
  .module-presentation-events .module_container--inner > .grid {
    background: transparent;
  }
}
.module-presentation-events .module-presentation-latest {
  height: 100%;
  position: relative;
}
@media only screen and (min-width: 1025px) {
  .module-presentation-events .module-presentation-latest .module_container--content {
    padding-right: 25px;
  }
  .module-presentation-events .module-presentation-latest .module_container--content > .grid {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
  }
  .module-presentation-events .module-presentation-latest .module_container--content > .grid > .grid_col {
    position: relative;
  }
}
.module-presentation-events .module-presentation-latest .button--cta {
  position: absolute;
  bottom: 10px;
}
.module-presentation-events .module-slideshow_link-container {
  margin-bottom: 50px;
}
@media only screen and (max-width: 1024px) {
  .module-presentation-events .module-slideshow_link-container {
    margin-bottom: 25px;
  }
}

.module-cta [class*=q4-icon_]::before {
  font-size: 16px;
  margin-right: 10px;
  vertical-align: sub;
}

.module-home-esg {
  background: rgba(20, 28, 31, 0.8) url('../design/banner/banner-home-esg.png') top center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
}
.module-home-esg_title {
  text-transform: none;
  margin-bottom: 24px;
}
.module-home-esg .h4 {
  font-weight: 500;
  text-transform: none;
  margin: 24px 100px;
}
.module-home-esg a {
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  .module-home-esg .h4 {
    margin: 24px 0;
  }
}

[class*=module] :is(h1, h2, h3, h4, h5, h6, p) {
  color: #fff;
  font-weight: 400;
}
[class*=module] .two-column-container {
  display: grid;
  gap: var(--columnGap, 7.2rem);
  grid-template-columns: 533px 575px;
}
@media only screen and (max-width: 1025px) {
  [class*=module] .two-column-container {
    grid-template-columns: 1fr;
  }
  [class*=module] .two-column-container div:nth-child(2) {
    grid-row: 1;
  }
}
[class*=module] .two-column-container div {
  height: 100%;
}
[class*=module] .two-column-container.reverse {
  grid-template-columns: 575px 533px;
}
@media only screen and (max-width: 1025px) {
  [class*=module] .two-column-container.reverse {
    grid-template-columns: 1fr;
  }
  [class*=module] .two-column-container.reverse div:nth-child(2) {
    grid-row: 2;
  }
}
@media only screen and (max-width: 768px) {
  [class*=module] .two-column-container {
    gap: 4rem;
  }
}
[class*=module] .two-column-container.gap-md {
  --columnGap: 7.2rem;
}
[class*=module] .two-column-container.gap-lg {
  --columnGap: 9.6rem;
}
[class*=module] .two-column-container [class*=content] {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
[class*=module] .two-column-container [class*=content] > * {
  margin: 0;
  width: min(100%, 533px);
}
[class*=module] .two-column-container [class*=content] .module_title {
  font-size: 3.6rem;
  line-height: 1.2777777778;
}
[class*=module] .two-column-container :is(p, h1, h2, h3, h4, h5, h6) {
  margin: 0;
}
[class*=module] .two-column-container img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}
[class*=module] .two-column-container img:not[src*=svg] {
  width: 100%;
  max-width: 100%;
}
[class*=module] .two-column-container > * {
  align-self: start;
}
[class*=module] .two-column-container > *:has(> p) {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
[class*=module]:is(.module-social_commitment--safety, .module-social_commitment--environment, .module-social_commitment--sustainability, .module-social_commitment--philantropy) .module_title {
  color: #cd173f;
}
[class*=module]:is(.module-social_commitment--safety, .module-social_commitment--environment, .module-social_commitment--sustainability, .module-social_commitment--philantropy) p {
  font-size: 2rem;
  line-height: 1.5;
}
[class*=module]:is(.module-social_commitment--safety, .module-social_commitment--environment, .module-social_commitment--sustainability, .module-social_commitment--philantropy) p a {
  color: inherit;
  text-decoration: underline;
}
[class*=module]:is(.module-social_commitment--safety, .module-social_commitment--environment, .module-social_commitment--sustainability, .module-social_commitment--philantropy) p a:hover {
  color: #cd173f;
  text-decoration: none;
}

.module-careers--overview .two-column-container {
  align-items: center;
}
.module-careers--overview .button {
  margin: 0;
  width: fit-content;
  background-color: #000;
  border-width: 2px;
  font-weight: 400;
}
.module-careers--overview .button:hover {
  border-color: #cd173f;
  background-color: #cd173f;
}

.module-community_safety .module_container--outer {
  background-image: url('../design/committed-to-community-safety.jpg');
  background-size: cover;
  background-position: center;
  padding: 8.6rem 2rem !important;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.module-community_safety .module_container--outer .module_container--inner {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 4rem 6rem;
  width: min(100%, 60.9rem);
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.module-community_safety .module_container--outer .module_container--inner > * {
  text-align: center;
  color: #fff;
}
.module-community_safety .module_container--outer .module_container--inner .module-title {
  font-weight: 400;
  margin: 0;
  font-size: 3.6rem;
}
.module-community_safety .module_container--outer .module_container--inner p {
  font-weight: 400;
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.5;
}
.module-community_safety .module_container--outer .module_container--inner p strong {
  font-weight: 700;
}
.module-community_safety .module_container--outer .module_container--inner a {
  font-weight: 400;
  font-size: 1.6rem;
}
.module-about_us--detailed_info .detailed_info--content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.module-about_us--detailed_info .detailed_info--content > * {
  margin: 0;
}
.module-about_us--detailed_info ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
.module-about_us--detailed_info ul li {
  display: flex;
  align-items: center;
  gap: 2rem;
  color: #fff;
}
.module-about_us--detailed_info ul img {
  height: 44px !important;
  width: auto !important;
  aspect-ratio: 1;
  object-fit: contain !important;
  filter: brightness(0) saturate(100%) invert(28%) sepia(74%) saturate(5171%) hue-rotate(334deg) brightness(79%) contrast(104%);
}
.module-our_values--panel_container .our-values__panel {
  display: grid;
  gap: 2rem;
  padding-bottom: 3rem;
  grid-template-columns: minmax(0, 1fr);
}
@media only screen and (min-width: 480px) {
  .module-our_values--panel_container .our-values__panel {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .module-our_values--panel_container .our-values__panel > * {
    grid-column: span 2;
  }
  .module-our_values--panel_container .our-values__panel > *:last-child:nth-child(5) {
    grid-column: 2/span 2;
  }
}
@media only screen and (min-width: 1025px) {
  .module-our_values--panel_container .our-values__panel {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .module-our_values--panel_container .our-values__panel > *:last-child:nth-child(5) {
    grid-column: span 2;
  }
}
.module-our_values--panel_container .our-values__panel .our-values__item {
  background-color: #1d1d1d;
  padding: 3rem 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.module-our_values--panel_container .our-values__panel .our-values__item img {
  width: fit-content;
}
.module-our_values--panel_container .our-values__panel .our-values__item .our-values__item-content {
  display: flex;
  gap: 1.8rem;
  flex-direction: column;
}
.module-our_values--panel_container .our-values__panel .our-values__item .our-values__item-content > * {
  margin: 0;
}
.module-governance__intro-text p {
  font-size: 2rem;
  line-height: 1.5;
}
.pane--content .module-public_awareness--intro_text.module {
  padding-bottom: 4rem;
}
.pane--content .module-public_awareness--end_text.module {
  padding-top: 4rem;
}
.module-public_awareness--intro_text .module_container--inner, .module-public_awareness--end_text .module_container--inner {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.module-public_awareness--intro_text p, .module-public_awareness--end_text p {
  font-size: 2rem;
  line-height: 1.5;
  text-align: center;
  margin: 0;
}
.module-public_awareness--intro_text .warning-box, .module-public_awareness--end_text .warning-box {
  display: flex;
  padding: 3rem;
  gap: 2rem;
  background-color: #1d1d1d;
}
.module-public_awareness--intro_text .warning-box p, .module-public_awareness--end_text .warning-box p {
  text-align: left;
  margin: 0;
}
.module-public_awareness--intro_text .warning-box p span, .module-public_awareness--end_text .warning-box p span {
  display: inline-block;
}
.pane--content :is(.module-company-highlights, :has(> * > * > :is(.two-column-container, .module-our-portfolio_map-container, .module_link-boxes-container))) {
  padding: 5rem 0 0;
}
.pane--content :is(.module-company-highlights, :has(> * > * > :is(.two-column-container, .module-our-portfolio_map-container, .module_link-boxes-container))) .module_container--inner {
  padding-bottom: 5rem;
  border-bottom: 1px solid #fff;
}
.pane--content :is(.module-careers--overview, .module-social_commitment, .module-community_safety, .module-about_us--detailed_info, .module-governance__intro-text, .module-history.option-3, .module-history__container, .module-location_lists:not(:has(.careers-locations))), .PageSocialCommitment .pane--content .module, .ParentSection_business-operations .pane--content .module {
  padding: 5rem 0 0;
}
.pane--content :is(.module-careers--overview, .module-social_commitment, .module-community_safety, .module-about_us--detailed_info, .module-governance__intro-text, .module-history.option-3, .module-history__container, .module-location_lists:not(:has(.careers-locations))) .module_container--inner, .PageSocialCommitment .pane--content .module .module_container--inner, .ParentSection_business-operations .pane--content .module .module_container--inner {
  border-bottom: unset;
}
.ParentSection_business-operations .pane--content .module .module_container--inner {
  padding-bottom: 8rem;
}
.pane--content :is(.module-news-latest) .module_container--outer {
  padding: 0;
}
.pane--content :is(.module-news-latest) .module_container--inner {
  padding-top: 5rem;
  border-top: 1px solid #fff;
}
.pane--content :is(.module-news-latest) .button {
  font-weight: 400;
}
.pane--content :is(.module-history__container) .module_container--inner {
  padding-bottom: 8rem;
}
.module-our_values-intro_text {
  padding-bottom: 0 !important;
}
.module-our_values-intro_text .module_container--inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.module-our_values-intro_text p {
  margin: 0;
  text-align: center;
  font-size: 2rem;
  line-height: 1.5;
}
.module-about_us--intro_text {
  padding: 4rem 0 0 !important;
}
.module-about_us--intro_text p {
  margin: 0;
  font-size: 2rem;
  line-height: 1.5;
}
.module-about_us--detailed_info .module_container--outer {
  padding-bottom: 3rem;
}
.module-overview-business .module_container--inner {
  position: relative;
}
.module-overview-business .module_container--inner::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -5rem;
  left: 0;
  background-color: #fff;
}
.module_view-all-link.button {
  background-color: #cd173f;
  color: #fff;
  font-weight: 400;
  padding: 1em 2em;
  margin: 0;
  transition: all 300ms ease;
}
.module_view-all-link.button::after {
  position: unset;
}
.module_view-all-link.button:hover {
  color: #fff;
  background: #9a1130;
  border-color: #9a1130;
  text-decoration: none !important;
}
.module-about_us h6 {
  font-weight: 700;
}
.module-about_us p {
  margin: 0 0 2em;
}

.module-q4-credits-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.headerClock {
    font-size: 1.4rem;
    line-height: 1.6rem;
    color: #000 !important;
    margin: 0;
    display: inline;
}

/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyJmaWxlOi8vL1VzZXJzL3BlZHJvcml2ZXJhL0RvY3VtZW50cy9HaXRIdWIvcTQtYmxhbmtfdGVtcGxhdGUvY3NzL2RlbGVrbG9naXN0aWNzMjAyNWNvcnAvX3ZhcmlhYmxlcy5zY3NzIiwiZmlsZTovLy9Vc2Vycy9wZWRyb3JpdmVyYS9Eb2N1bWVudHMvR2l0SHViL3E0LWJsYW5rX3RlbXBsYXRlL2Nzcy9fZ2xvYmFsL19yZXNldC5zY3NzIiwiZmlsZTovLy9Vc2Vycy9wZWRyb3JpdmVyYS9Eb2N1bWVudHMvR2l0SHViL3E0LWJsYW5rX3RlbXBsYXRlL2Nzcy9fZ2xvYmFsL19hbmltYXRpb25zLnNjc3MiLCJmaWxlOi8vL1VzZXJzL3BlZHJvcml2ZXJhL0RvY3VtZW50cy9HaXRIdWIvcTQtYmxhbmtfdGVtcGxhdGUvY3NzL2RlbGVrbG9naXN0aWNzMjAyNWNvcnAvX2RlZmF1bHQuc2NzcyIsImZpbGU6Ly8vVXNlcnMvcGVkcm9yaXZlcmEvRG9jdW1lbnRzL0dpdEh1Yi9xNC1ibGFua190ZW1wbGF0ZS9jc3MvX2dsb2JhbC9fbWl4aW5zLnNjc3MiLCJmaWxlOi8vL1VzZXJzL3BlZHJvcml2ZXJhL0RvY3VtZW50cy9HaXRIdWIvcTQtYmxhbmtfdGVtcGxhdGUvY3NzL2RlbGVrbG9naXN0aWNzMjAyNWNvcnAvX3E0aWNvbnMuc2NzcyIsImZpbGU6Ly8vVXNlcnMvcGVkcm9yaXZlcmEvRG9jdW1lbnRzL0dpdEh1Yi9xNC1ibGFua190ZW1wbGF0ZS9jc3MvX2dsb2JhbC9wbHVnaW5zL19ncmlkLnNjc3MiLCJmaWxlOi8vL1VzZXJzL3BlZHJvcml2ZXJhL0RvY3VtZW50cy9HaXRIdWIvcTQtYmxhbmtfdGVtcGxhdGUvY3NzL2RlbGVrbG9naXN0aWNzMjAyNWNvcnAvX3V0aWxpdHkuc2NzcyIsImZpbGU6Ly8vVXNlcnMvcGVkcm9yaXZlcmEvRG9jdW1lbnRzL0dpdEh1Yi9xNC1ibGFua190ZW1wbGF0ZS9jc3MvX2dsb2JhbC9fYWNjZXNzaWJpbGl0eS5zY3NzIiwiZmlsZTovLy9Vc2Vycy9wZWRyb3JpdmVyYS9Eb2N1bWVudHMvR2l0SHViL3E0LWJsYW5rX3RlbXBsYXRlL2Nzcy9fZ2xvYmFsL19qYXZhc2NyaXB0LnNjc3MiLCJmaWxlOi8vL1VzZXJzL3BlZHJvcml2ZXJhL0RvY3VtZW50cy9HaXRIdWIvcTQtYmxhbmtfdGVtcGxhdGUvY3NzL2RlbGVrbG9naXN0aWNzMjAyNWNvcnAvbW9kdWxlcy9fYWxsLnNjc3MiLCJmaWxlOi8vL1VzZXJzL3BlZHJvcml2ZXJhL0RvY3VtZW50cy9HaXRIdWIvcTQtYmxhbmtfdGVtcGxhdGUvY3NzL2RlbGVrbG9naXN0aWNzMjAyNWNvcnAvbW9kdWxlcy9fY2FsY3VsYXRvci5zY3NzIiwiZmlsZTovLy9Vc2Vycy9wZWRyb3JpdmVyYS9Eb2N1bWVudHMvR2l0SHViL3E0LWJsYW5rX3RlbXBsYXRlL2Nzcy9kZWxla2xvZ2lzdGljczIwMjVjb3JwL21vZHVsZXMvX2NhcmVlcnMuc2NzcyIsImZpbGU6Ly8vVXNlcnMvcGVkcm9yaXZlcmEvRG9jdW1lbnRzL0dpdEh1Yi9xNC1ibGFua190ZW1wbGF0ZS9jc3MvZGVsZWtsb2dpc3RpY3MyMDI1Y29ycC9tb2R1bGVzL19jb250YWN0LnNjc3MiLCJmaWxlOi8vL1VzZXJzL3BlZHJvcml2ZXJhL0RvY3VtZW50cy9HaXRIdWIvcTQtYmxhbmtfdGVtcGxhdGUvY3NzL2RlbGVrbG9naXN0aWNzMjAyNWNvcnAvbW9kdWxlcy9fY29tbWl0dGVlLnNjc3MiLCJmaWxlOi8vL1VzZXJzL3BlZHJvcml2ZXJhL0RvY3VtZW50cy9HaXRIdWIvcTQtYmxhbmtfdGVtcGxhdGUvY3NzL2RlbGVrbG9naXN0aWNzMjAyNWNvcnAvbW9kdWxlcy9fY29ycG9yYXRlLXByb2ZpbGUuc2NzcyIsImZpbGU6Ly8vVXNlcnMvcGVkcm9yaXZlcmEvRG9jdW1lbnRzL0dpdEh1Yi9xNC1ibGFua190ZW1wbGF0ZS9jc3MvZGVsZWtsb2dpc3RpY3MyMDI1Y29ycC9tb2R1bGVzL19jb3ZlcmFnZS5zY3NzIiwiZmlsZTovLy9Vc2Vycy9wZWRyb3JpdmVyYS9Eb2N1bWVudHMvR2l0SHViL3E0LWJsYW5rX3RlbXBsYXRlL2Nzcy9kZWxla2xvZ2lzdGljczIwMjVjb3JwL21vZHVsZXMvX2RpdmVyc2l0eS1tYXRyaXguc2NzcyIsImZpbGU6Ly8vVXNlcnMvcGVkcm9yaXZlcmEvRG9jdW1lbnRzL0dpdEh1Yi9xNC1ibGFua190ZW1wbGF0ZS9jc3MvZGVsZWtsb2dpc3RpY3MyMDI1Y29ycC9tb2R1bGVzL19kb3dubG9hZHMuc2NzcyIsImZpbGU6Ly8vVXNlcnMvcGVkcm9yaXZlcmEvRG9jdW1lbnRzL0dpdEh1Yi9xNC1ibGFua190ZW1wbGF0ZS9jc3MvZGVsZWtsb2dpc3RpY3MyMDI1Y29ycC9tb2R1bGVzL19ldmVudC5zY3NzIiwiZmlsZTovLy9Vc2Vycy9wZWRyb3JpdmVyYS9Eb2N1bWVudHMvR2l0SHViL3E0LWJsYW5rX3RlbXBsYXRlL2Nzcy9kZWxla2xvZ2lzdGljczIwMjVjb3JwL21vZHVsZXMvX2V2ZXJncmVlbi5zY3NzIiwiZmlsZTovLy9Vc2Vycy9wZWRyb3JpdmVyYS9Eb2N1bWVudHMvR2l0SHViL3E0LWJsYW5rX3RlbXBsYXRlL2Nzcy9kZWxla2xvZ2lzdGljczIwMjVjb3JwL21vZHVsZXMvX2ZhcS5zY3NzIiwiZmlsZTovLy9Vc2Vycy9wZWRyb3JpdmVyYS9Eb2N1bWVudHMvR2l0SHViL3E0LWJsYW5rX3RlbXBsYXRlL2Nzcy9kZWxla2xvZ2lzdGljczIwMjVjb3JwL21vZHVsZXMvX2ZpbmFuY2lhbC5zY3NzIiwiZmlsZTovLy9Vc2Vycy9wZWRyb3JpdmVyYS9Eb2N1bWVudHMvR2l0SHViL3E0LWJsYW5rX3RlbXBsYXRlL2Nzcy9kZWxla2xvZ2lzdGljczIwMjVjb3JwL21vZHVsZXMvX2Zvcm0uc2NzcyIsImZpbGU6Ly8vVXNlcnMvcGVkcm9yaXZlcmEvRG9jdW1lbnRzL0dpdEh1Yi9xNC1ibGFua190ZW1wbGF0ZS9jc3MvX2dsb2JhbC9fZm9ybS1tZWV0aW5nLnNjc3MiLCJmaWxlOi8vL1VzZXJzL3BlZHJvcml2ZXJhL0RvY3VtZW50cy9HaXRIdWIvcTQtYmxhbmtfdGVtcGxhdGUvY3NzL2RlbGVrbG9naXN0aWNzMjAyNWNvcnAvbW9kdWxlcy9fZ2xvc3Nhcnkuc2NzcyIsImZpbGU6Ly8vVXNlcnMvcGVkcm9yaXZlcmEvRG9jdW1lbnRzL0dpdEh1Yi9xNC1ibGFua190ZW1wbGF0ZS9jc3MvZGVsZWtsb2dpc3RpY3MyMDI1Y29ycC9tb2R1bGVzL19oaXN0b3J5LnNjc3MiLCJmaWxlOi8vL1VzZXJzL3BlZHJvcml2ZXJhL0RvY3VtZW50cy9HaXRIdWIvcTQtYmxhbmtfdGVtcGxhdGUvY3NzL2RlbGVrbG9naXN0aWNzMjAyNWNvcnAvbW9kdWxlcy9faXItb3ZlcnZpZXctd2h5LWludmVzdC5zY3NzIiwiZmlsZTovLy9Vc2Vycy9wZWRyb3JpdmVyYS9Eb2N1bWVudHMvR2l0SHViL3E0LWJsYW5rX3RlbXBsYXRlL2Nzcy9kZWxla2xvZ2lzdGljczIwMjVjb3JwL21vZHVsZXMvX2pvYi5zY3NzIiwiZmlsZTovLy9Vc2Vycy9wZWRyb3JpdmVyYS9Eb2N1bWVudHMvR2l0SHViL3E0LWJsYW5rX3RlbXBsYXRlL2Nzcy9kZWxla2xvZ2lzdGljczIwMjVjb3JwL21vZHVsZXMvX21pc2NlbGxhbmVvdXMuc2NzcyIsImZpbGU6Ly8vVXNlcnMvcGVkcm9yaXZlcmEvRG9jdW1lbnRzL0dpdEh1Yi9xNC1ibGFua190ZW1wbGF0ZS9jc3MvZGVsZWtsb2dpc3RpY3MyMDI1Y29ycC9tb2R1bGVzL19uYXZpZ2F0aW9uLnNjc3MiLCJmaWxlOi8vL1VzZXJzL3BlZHJvcml2ZXJhL0RvY3VtZW50cy9HaXRIdWIvcTQtYmxhbmtfdGVtcGxhdGUvY3NzL2RlbGVrbG9naXN0aWNzMjAyNWNvcnAvbW9kdWxlcy9fbmF2LXYyLnNjc3MiLCJmaWxlOi8vL1VzZXJzL3BlZHJvcml2ZXJhL0RvY3VtZW50cy9HaXRIdWIvcTQtYmxhbmtfdGVtcGxhdGUvY3NzL2RlbGVrbG9naXN0aWNzMjAyNWNvcnAvbW9kdWxlcy9fbmV3cy5zY3NzIiwiZmlsZTovLy9Vc2Vycy9wZWRyb3JpdmVyYS9Eb2N1bWVudHMvR2l0SHViL3E0LWJsYW5rX3RlbXBsYXRlL2Nzcy9kZWxla2xvZ2lzdGljczIwMjVjb3JwL21vZHVsZXMvX292ZXJ2aWV3LWNhcmVlcnMuc2NzcyIsImZpbGU6Ly8vVXNlcnMvcGVkcm9yaXZlcmEvRG9jdW1lbnRzL0dpdEh1Yi9xNC1ibGFua190ZW1wbGF0ZS9jc3MvZGVsZWtsb2dpc3RpY3MyMDI1Y29ycC9tb2R1bGVzL19wb3J0Zm9saW8uc2NzcyIsImZpbGU6Ly8vVXNlcnMvcGVkcm9yaXZlcmEvRG9jdW1lbnRzL0dpdEh1Yi9xNC1ibGFua190ZW1wbGF0ZS9jc3MvZGVsZWtsb2dpc3RpY3MyMDI1Y29ycC9tb2R1bGVzL19wb3J0Zm9saW8tb3ZlcnZpZXcuc2NzcyIsImZpbGU6Ly8vVXNlcnMvcGVkcm9yaXZlcmEvRG9jdW1lbnRzL0dpdEh1Yi9xNC1ibGFua190ZW1wbGF0ZS9jc3MvZGVsZWtsb2dpc3RpY3MyMDI1Y29ycC9tb2R1bGVzL19wYWdlci5zY3NzIiwiZmlsZTovLy9Vc2Vycy9wZWRyb3JpdmVyYS9Eb2N1bWVudHMvR2l0SHViL3E0LWJsYW5rX3RlbXBsYXRlL2Nzcy9kZWxla2xvZ2lzdGljczIwMjVjb3JwL21vZHVsZXMvX3BlcnNvbi5zY3NzIiwiZmlsZTovLy9Vc2Vycy9wZWRyb3JpdmVyYS9Eb2N1bWVudHMvR2l0SHViL3E0LWJsYW5rX3RlbXBsYXRlL2Nzcy9kZWxla2xvZ2lzdGljczIwMjVjb3JwL21vZHVsZXMvX3BlcnNvbi1xdW90ZXMtY2Fyb3VzZWwuc2NzcyIsImZpbGU6Ly8vVXNlcnMvcGVkcm9yaXZlcmEvRG9jdW1lbnRzL0dpdEh1Yi9xNC1ibGFua190ZW1wbGF0ZS9jc3MvZGVsZWtsb2dpc3RpY3MyMDI1Y29ycC9tb2R1bGVzL19waXBlbGluZXMuc2NzcyIsImZpbGU6Ly8vVXNlcnMvcGVkcm9yaXZlcmEvRG9jdW1lbnRzL0dpdEh1Yi9xNC1ibGFua190ZW1wbGF0ZS9jc3MvZGVsZWtsb2dpc3RpY3MyMDI1Y29ycC9tb2R1bGVzL19wcmVzZW50YXRpb24uc2NzcyIsImZpbGU6Ly8vVXNlcnMvcGVkcm9yaXZlcmEvRG9jdW1lbnRzL0dpdEh1Yi9xNC1ibGFua190ZW1wbGF0ZS9jc3MvZGVsZWtsb2dpc3RpY3MyMDI1Y29ycC9tb2R1bGVzL19wcmV2aWV3LXRvb2xiYXIuc2NzcyIsImZpbGU6Ly8vVXNlcnMvcGVkcm9yaXZlcmEvRG9jdW1lbnRzL0dpdEh1Yi9xNC1ibGFua190ZW1wbGF0ZS9jc3MvZGVsZWtsb2dpc3RpY3MyMDI1Y29ycC9tb2R1bGVzL19zZWFyY2guc2NzcyIsImZpbGU6Ly8vVXNlcnMvcGVkcm9yaXZlcmEvRG9jdW1lbnRzL0dpdEh1Yi9xNC1ibGFua190ZW1wbGF0ZS9jc3MvZGVsZWtsb2dpc3RpY3MyMDI1Y29ycC9tb2R1bGVzL19zZWMuc2NzcyIsImZpbGU6Ly8vVXNlcnMvcGVkcm9yaXZlcmEvRG9jdW1lbnRzL0dpdEh1Yi9xNC1ibGFua190ZW1wbGF0ZS9jc3MvZGVsZWtsb2dpc3RpY3MyMDI1Y29ycC9tb2R1bGVzL19za2lwLnNjc3MiLCJmaWxlOi8vL1VzZXJzL3BlZHJvcml2ZXJhL0RvY3VtZW50cy9HaXRIdWIvcTQtYmxhbmtfdGVtcGxhdGUvY3NzL2RlbGVrbG9naXN0aWNzMjAyNWNvcnAvbW9kdWxlcy9fc2xpZGVyLnNjc3MiLCJmaWxlOi8vL1VzZXJzL3BlZHJvcml2ZXJhL0RvY3VtZW50cy9HaXRIdWIvcTQtYmxhbmtfdGVtcGxhdGUvY3NzL2RlbGVrbG9naXN0aWNzMjAyNWNvcnAvbW9kdWxlcy9fc3RvY2stY2hhcnQuc2NzcyIsImZpbGU6Ly8vVXNlcnMvcGVkcm9yaXZlcmEvRG9jdW1lbnRzL0dpdEh1Yi9xNC1ibGFua190ZW1wbGF0ZS9jc3MvZGVsZWtsb2dpc3RpY3MyMDI1Y29ycC9tb2R1bGVzL19zdG9jay1oZWFkZXIuc2NzcyIsImZpbGU6Ly8vVXNlcnMvcGVkcm9yaXZlcmEvRG9jdW1lbnRzL0dpdEh1Yi9xNC1ibGFua190ZW1wbGF0ZS9jc3MvZGVsZWtsb2dpc3RpY3MyMDI1Y29ycC9tb2R1bGVzL19zdG9jay1iYW5uZXIuc2NzcyIsImZpbGU6Ly8vVXNlcnMvcGVkcm9yaXZlcmEvRG9jdW1lbnRzL0dpdEh1Yi9xNC1ibGFua190ZW1wbGF0ZS9jc3MvZGVsZWtsb2dpc3RpY3MyMDI1Y29ycC9tb2R1bGVzL19zdG9jay1xdW90ZS5zY3NzIiwiZmlsZTovLy9Vc2Vycy9wZWRyb3JpdmVyYS9Eb2N1bWVudHMvR2l0SHViL3E0LWJsYW5rX3RlbXBsYXRlL2Nzcy9kZWxla2xvZ2lzdGljczIwMjVjb3JwL21vZHVsZXMvX3N1YnNjcmliZS5zY3NzIiwiZmlsZTovLy9Vc2Vycy9wZWRyb3JpdmVyYS9Eb2N1bWVudHMvR2l0SHViL3E0LWJsYW5rX3RlbXBsYXRlL2Nzcy9kZWxla2xvZ2lzdGljczIwMjVjb3JwL21vZHVsZXMvX3Vuc3Vic2NyaWJlLnNjc3MiLCJmaWxlOi8vL1VzZXJzL3BlZHJvcml2ZXJhL0RvY3VtZW50cy9HaXRIdWIvcTQtYmxhbmtfdGVtcGxhdGUvY3NzL2RlbGVrbG9naXN0aWNzMjAyNWNvcnAvbW9kdWxlcy9fb3VyLWJyYW5kcy5zY3NzIiwiZmlsZTovLy9Vc2Vycy9wZWRyb3JpdmVyYS9Eb2N1bWVudHMvR2l0SHViL3E0LWJsYW5rX3RlbXBsYXRlL2Nzcy9kZWxla2xvZ2lzdGljczIwMjVjb3JwL21vZHVsZXMvX291ci12YWx1ZXMuc2NzcyIsImZpbGU6Ly8vVXNlcnMvcGVkcm9yaXZlcmEvRG9jdW1lbnRzL0dpdEh1Yi9xNC1ibGFua190ZW1wbGF0ZS9jc3MvZGVsZWtsb2dpc3RpY3MyMDI1Y29ycC9tb2R1bGVzL19zdXN0YWluYWJpbGl0eS5zY3NzIiwiZmlsZTovLy9Vc2Vycy9wZWRyb3JpdmVyYS9Eb2N1bWVudHMvR2l0SHViL3E0LWJsYW5rX3RlbXBsYXRlL2Nzcy9kZWxla2xvZ2lzdGljczIwMjVjb3JwL21vZHVsZXMvX3NwbGlkZS1nbG9iYWwuc2NzcyIsImZpbGU6Ly8vVXNlcnMvcGVkcm9yaXZlcmEvRG9jdW1lbnRzL0dpdEh1Yi9xNC1ibGFua190ZW1wbGF0ZS9jc3MvZGVsZWtsb2dpc3RpY3MyMDI1Y29ycC9tb2R1bGVzL19zcGxpZGUtYmFubmVyLnNjc3MiLCJmaWxlOi8vL1VzZXJzL3BlZHJvcml2ZXJhL0RvY3VtZW50cy9HaXRIdWIvcTQtYmxhbmtfdGVtcGxhdGUvY3NzL2RlbGVrbG9naXN0aWNzMjAyNWNvcnAvbW9kdWxlcy9fYmFubmVycy5zY3NzIiwiZmlsZTovLy9Vc2Vycy9wZWRyb3JpdmVyYS9Eb2N1bWVudHMvR2l0SHViL3E0LWJsYW5rX3RlbXBsYXRlL2Nzcy9kZWxla2xvZ2lzdGljczIwMjVjb3JwL21vZHVsZXMvX2xpbmstYm94ZXMuc2NzcyIsImZpbGU6Ly8vVXNlcnMvcGVkcm9yaXZlcmEvRG9jdW1lbnRzL0dpdEh1Yi9xNC1ibGFua190ZW1wbGF0ZS9jc3MvZGVsZWtsb2dpc3RpY3MyMDI1Y29ycC9tb2R1bGVzL193aHktaW52ZXN0LnNjc3MiLCJmaWxlOi8vL1VzZXJzL3BlZHJvcml2ZXJhL0RvY3VtZW50cy9HaXRIdWIvcTQtYmxhbmtfdGVtcGxhdGUvY3NzL2RlbGVrbG9naXN0aWNzMjAyNWNvcnAvbW9kdWxlcy9fcXVpY2tsaW5rcy5zY3NzIiwiZmlsZTovLy9Vc2Vycy9wZWRyb3JpdmVyYS9Eb2N1bWVudHMvR2l0SHViL3E0LWJsYW5rX3RlbXBsYXRlL2Nzcy9fZ2xvYmFsL2xheW91dHMvX2lmcmFtZS5zY3NzIiwiZmlsZTovLy9Vc2Vycy9wZWRyb3JpdmVyYS9Eb2N1bWVudHMvR2l0SHViL3E0LWJsYW5rX3RlbXBsYXRlL2Nzcy9kZWxla2xvZ2lzdGljczIwMjVjb3JwL19ibGFuay5zY3NzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFxQkE7RUFDRTtFQUNBO0VBQ0E7O0FBQ0E7RUFKRjtJQUtJO0lBQ0E7QUFBQTtBQUFBOzs7O0FDM0JKO0FBQUE7QUFBQTtBQUlBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0VBc0VFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7O0FBR0Y7QUFDQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0VBV0U7OztBQUdGO0VBQ0U7RUFDQSxXRGpEVTs7O0FDb0RaO0FBQUE7QUFBQTtFQUdFOzs7QUFLQTtBQUFBO0FBQUE7QUFBQTtFQUVFO0VBQ0E7RUFDQTs7O0FBSUo7QUFBQTtFQUVFOzs7QUFHRjtBQUFBO0FBQUE7QUFBQTtFQUlFO0VBQ0E7OztBQUdGO0VBQ0U7RUFDQTs7O0FBR0Y7RUFDRTs7O0FBR0Y7RUFDRTs7O0FBR0Y7QUFBQTtFQUVFO0VBQ0E7OztBQUdGO0VBQ0U7OztBQUdGO0VBQ0U7OztBQUdGO0VBQ0U7RUFDQTs7O0FBR0Y7RUFDRTs7O0FBR0Y7RUFDRTtFQUNBOzs7QUFFRjtFQUNFO0VBQ0E7OztBQUVGO0VBQ0U7RUFDQTs7O0FDakxGO0FBRUE7RUFDRTtJQUNFOztFQUVGO0lBQ0U7OztBQ1BKO0FBQUE7QUFBQTtBQUdBO0VBQ0U7RUFDQTtFQUNBLE9Ia0RXO0VHakRYLGFIb0NVO0VHbkNWO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7O0FBR0Y7RUFDRTs7O0FBR0Y7QUFDQTtBQUFBO0VBRUU7RUFDQTtFQUNBO0VBQ0E7O0FDdUZBO0VENUZGO0FBQUE7SUFPSTs7O0FDMEZGO0VEakdGO0FBQUE7SUFVSTs7OztBQUdKO0FBQUE7RUFFRTtFQUNBO0VBQ0E7RUFDQTs7QUMwRUE7RUQvRUY7QUFBQTtJQU9JOzs7O0FBR0o7RUFDRTs7O0FBRUY7QUFBQTtFQUVFO0VBQ0E7RUFDQTtFQUNBO0VBQ0EsT0hNWTs7O0FHSmQ7QUFBQTtFQUVFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQUVGO0FBQUE7RUFFRTtFQUNBO0VBQ0E7OztBQUVGO0VBQ0U7RUFDQSxPSFRpQjs7QUdVakI7RUFDRSxPSExVO0VHTVY7O0FBQ0E7RUFDRSxPSGRhO0VHZWI7O0FBQ0E7RUFDRSxPSFhNOzs7QUdnQmQ7RUFDRTtFQUNBO0VBQ0E7OztBQUdGO0FBQ0E7RUFDRTs7O0FBR0E7RUFFRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOztBQUNBO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOztBQUVBO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBSUY7RUFDRSxrQkgvRFc7O0FHcUViO0VBQ0U7O0FBSU47RUFDRTs7O0FBR0o7RUFDRTs7O0FBR0Y7QUFFRTtFQUVFO0VBQ0E7O0FBRUY7RUFDRTs7O0FBSUo7QUFDQTtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBQ0E7RUFDRTs7QUFFRjtFQUNFOztBQUVGO0VBQ0U7O0FBRUY7RUFDRTs7O0FBSUo7QUFDQTtFQUNFOzs7QUFFRjtFQUNFOzs7QUFFRjtFQUNFOzs7QUFHRjtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7RUFNRTtFQUNBO0VBRUE7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0EsT0g3SWlCO0VHOElqQjtFQUNBLGFIbEtVO0VHbUtWO0VBQ0E7O0FBQ0E7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0VBQ0U7OztBQUdKO0VBQ0U7RUFFQTtFQUVBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7QUFDQTtFQUNFOzs7QUFHSjtBQUFBO0FBQUE7QUFBQTtFQUlFOzs7QUFFRjtBQUFBO0VBRUU7OztBQUVGO0VBQ0U7RUFDQTtFQUNBOzs7QUFFRjtFQUNFOzs7QUFFRjtFQUNFO0VBQ0EsY0h6TGlCO0VHMExqQixZSDFMaUI7RUcyTGpCLE9IckxZO0VHc0xaO0VBRUE7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7QUFDQTtFQUVFLE9IbE1VO0VHbU1WLFlIeE1nQjtFR3lNaEIsY0h6TWdCO0VHME1oQjs7QUFFRjtFQUNFOztBQUVGO0VBQ0UsWUhwTlU7RUdxTlYsY0hyTlU7O0FHc05WO0VBRUUsY0h4TlE7RUd5TlIsWUh6TlE7O0FHMk5WO0VBQ0U7O0FBRUY7RUFDRSxZSHROUTtFR3VOUixjSGhPUTtFR2lPUixPSGpPUTs7QUdvT1o7RUFDRSxjSGxPZTtFR21PZixrQkg3TlU7RUc4TlYsT0h2T1U7RUd3T1Y7O0FBQ0E7RUFFRSxZSHhPYTtFR3lPYixjSHpPYTtFRzBPYixPSHBPUTs7QUdzT1Y7RUFDRTs7QUFHSjtFQUNFO0VBQ0E7RUFDQTtFQUNBLE9Ick9TO0VHc09UOztBQUNBO0VBRUU7RUFDQTtFQUNBLE9IM09POztBRzZPVDtFQUNFOztBQUdKO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQSxPSHJRZTtFR3NRZjtFQUNBOztBQUNBO0VBRUUsT0g3UVE7RUc4UVI7RUFDQTs7QUFDQTtFQUNFOztBQUdKO0VDblFGLGFKdkJVO0VJd0JWO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUVBO0VBQ0E7RUFDQTtFRDRQSTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7O0FBS047QUFDQTtFQUNFOztBQUNBO0VBRUUsa0JIcFNlOztBR3NTakI7RUFDRTs7O0FBSUo7QUFDQTtFQUNFO0VBQ0E7O0FBQ0E7RUFDRSxrQkgvU2dCO0VHZ1RoQixPSDNTVTtFRzRTVjs7QUFDQTtFQUNFO0VBQ0E7O0FBSUY7RUFDRSxrQkgzU087O0FHNlNUO0VBQ0Usa0JIN1NROztBR2dUWjtBQUFBO0FBQUE7RUFHRTtFQUNBOztBQUVGO0VBQ0UsT0hqVVU7O0FHa1VWO0VBQ0U7O0FBS0E7RUFDRTs7QUFFRjtFQUNFLGtCSHpVSzs7QUcyVVA7RUFDRSxrQkh4Vk07RUd5Vk47O0FBQ0E7RUFDRSxPSGxWSTs7QUd1Vlo7RUFDRTs7QUN0U0Y7RUQwU0k7SUFDRTs7RUFFRjtJQUNFO0lBQ0E7O0VBRUY7SUFDRTs7RUFDQTtJQUNFO0lBQ0E7OztBQU1OO0VBQ0U7RUFDQTs7QUFDQTtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7QUFDQTtFQUNFLGtCSHhYSTs7QUcwWE47RUFDRSxrQkh4WEc7O0FHNlhQO0FBQUE7RUFFRTs7QUFFRjtFQUNFLE9IalpLOztBR21aUDtFQUNFOztBQUNBO0VBQ0Usa0JIMVlJOztBRzRZTjtFQUNFLGtCSDFZRzs7O0FHZ1piO0VBQ0UsT0hoYVc7RUdpYVg7OztBQUdGO0FBQ0E7RUFDRTtFQUNBO0VBQ0EsWUh6Wlc7RUcwWlg7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBQ0E7RUFDRTs7O0FBR0o7RUFDRTtFQUNBO0VBQ0EsWUh4YVc7RUd5YVg7RUFDQTtFQUNBOztBQUNBO0VBQ0U7RUN4YUYsYUp2QlU7RUl3QlY7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBRUE7RUFDQTtFQUNBOztBRGlhQTtFQUNFO0VDNWFGLGFKdkJVO0VJd0JWO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUVBO0VBQ0E7RUFDQTs7O0FEd2FBO0VBQ0UsTUhsYlM7O0FJK0JYO0VEcVpBO0lBRUk7OztBQUdKO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7QUFFRjtFQUNFO0VBQ0E7O0FBR0Y7RUFDRTs7O0FBS0Y7RUFDRTs7QUN4YUY7RUR1YUE7SUFHSTs7OztBQUtOO0FBQUE7RUFFRTs7O0FFbGlCRjtBQUFBO0FBQUE7QUFJRTtFRHdFQSxhSnZCVTtFSXdCVjtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFFQTtFQUNBO0VBQ0E7RUMvRUU7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOztBQUVGO0FBQUE7RUFFRTs7QUFFRjtFQUNFO0VBQ0E7O0FBRUY7QUFBQTtBQUFBO0FBQUE7RUFJRTs7QUFFRjtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7RUFNRTs7QUFFRjtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7RUFNRTs7QUFFRjtBQUFBO0VBRUU7O0FBRUY7QUFBQTtBQUFBO0FBQUE7RUFJRTs7QUFFRjtBQUFBO0VBRUU7O0FBRUY7RUFDRTs7QUFFRjtFQUNFOztBQUVGO0VBQ0U7O0FBRUY7RUFDRTs7QUFFRjtFQUNFOztBQUVGO0VBQ0U7O0FBRUY7RUFDRTs7QUFFRjtFQUNFO0VBQ0E7RURMRixhSnZCVTtFSXdCVjtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFFQTtFQUNBO0VBQ0E7O0FDRkE7RUFDRTtFQUNBO0VEVkYsYUp2QlU7RUl3QlY7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBRUE7RUFDQTtFQUNBOzs7QUV0RkY7QUFBQTtBQUFBO0FBNEJBO0VBQ0U7RUFDQTs7QUFDQTtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7QUFDQTtFQUNFOztBQUVGO0VBQ0U7O0FBRUY7RUFDRTs7QUFFRjtFQUNFO0VBQ0E7O0FBRUY7RUFDRTtFQUNBOztBQUVGO0VBQ0U7RUFDQTs7QUFFRjtFQUNFOztBQUVGO0VBQ0U7O0FBRUY7RUFDRTs7QUFFRjtFQUNFOztBQUVGO0VBQ0U7OztBQUtOO0VBQ0U7RUFDQTtFQUNBOzs7QUFHRjtFQUNFOzs7QUFFRjtFQUNFOzs7QUFFRjtFQUNFOzs7QUFFRjtFQUNFOzs7QUFFRjtFQUNFOzs7QUFLRjtFQUNFOzs7QUFHRjtFQUNFO0VBQ0E7RUFDQTs7O0FBRUY7RUFDRTtFQUNBO0VBQ0E7OztBQUVGO0VBQ0U7RUFDQTtFQUNBOzs7QUFFRjtFQUNFO0VBQ0E7RUFDQTs7O0FBRUY7RUFDRTtFQUNBO0VBQ0E7OztBQU9GO0VBQ0U7RUFDQTtFQUNBOzs7QUFHRjtFQUNFOzs7QUFFRjtFQUNFOzs7QUFFRjtFQUNFOzs7QUFFRjtFQUNFOzs7QUFFRjtFQUNFOzs7QUFLRjtFQUNFOzs7QUFHRjtFQUNFOzs7QUFFRjtFQUNFOzs7QUFFRjtFQUNFOzs7QUFFRjtFQUNFOzs7QUFFRjtFQUNFOzs7QUFLRjtFQUNFOzs7QUFPRTtFQWdCSTs7O0FBR0o7RUFpQkk7RUFDQTtFQUNBOzs7QUFJRjtFQWdCSTs7O0FBS0o7RUFnQkk7OztBQS9FTjtFQWdCSTs7O0FBR0o7RUFpQkk7RUFDQTtFQUNBOzs7QUFJRjtFQWdCSTs7O0FBS0o7RUFnQkk7OztBQS9FTjtFQWdCSTs7O0FBR0o7RUFpQkk7RUFDQTtFQUNBOzs7QUFJRjtFQWdCSTs7O0FBS0o7RUFnQkk7OztBQS9FTjtFQWdCSTs7O0FBR0o7RUFpQkk7RUFDQTtFQUNBOzs7QUFJRjtFQWdCSTs7O0FBS0o7RUFnQkk7OztBQS9FTjtFQWdCSTs7O0FBR0o7RUFpQkk7RUFDQTtFQUNBOzs7QUFJRjtFQWdCSTs7O0FBS0o7RUFnQkk7OztBQS9FTjtFQWdCSTs7O0FBR0o7RUFpQkk7RUFDQTtFQUNBOzs7QUFJRjtFQWdCSTs7O0FBS0o7RUFnQkk7OztBQS9FTjtFQWdCSTs7O0FBR0o7RUFpQkk7RUFDQTtFQUNBOzs7QUFJRjtFQWdCSTs7O0FBS0o7RUFnQkk7OztBQS9FTjtFQWdCSTs7O0FBR0o7RUFpQkk7RUFDQTtFQUNBOzs7QUFJRjtFQWdCSTs7O0FBS0o7RUFnQkk7OztBQS9FTjtFQWdCSTs7O0FBR0o7RUFpQkk7RUFDQTtFQUNBOzs7QUFJRjtFQWdCSTs7O0FBS0o7RUFnQkk7OztBQS9FTjtFQWdCSTs7O0FBR0o7RUFpQkk7RUFDQTtFQUNBOzs7QUFJRjtFQWdCSTs7O0FBS0o7RUFnQkk7OztBQS9FTjtFQWdCSTs7O0FBR0o7RUFpQkk7RUFDQTtFQUNBOzs7QUFJRjtFQWdCSTs7O0FBS0o7RUFnQkk7OztBQS9FTjtFQWdCSTs7O0FBR0o7RUFpQkk7RUFDQTtFQUNBOzs7QUFJRjtFQWdCSTs7O0FBS0o7RUFnQkk7OztBQS9FTjtFQWdCSTs7O0FBR0o7RUFpQkk7RUFDQTtFQUNBOzs7QUFJRjtFQWdCSTs7O0FBS0o7RUFnQkk7OztBQS9FTjtFQWdCSTs7O0FBR0o7RUFpQkk7RUFDQTtFQUNBOzs7QUFJRjtFQWdCSTs7O0FBS0o7RUFnQkk7OztBQS9FTjtFQWdCSTs7O0FBR0o7RUFpQkk7RUFDQTtFQUNBOzs7QUFJRjtFQWdCSTs7O0FBS0o7RUFnQkk7OztBQS9FTjtFQWdCSTs7O0FBR0o7RUFpQkk7RUFDQTtFQUNBOzs7QUFJRjtFQWdCSTs7O0FBS0o7RUFnQkk7OztBQS9FTjtFQWdCSTs7O0FBR0o7RUFpQkk7RUFDQTtFQUNBOzs7QUFJRjtFQWdCSTs7O0FBS0o7RUFnQkk7OztBQS9FTjtFQWdCSTs7O0FBR0o7RUFpQkk7RUFDQTtFQUNBOzs7QUFJRjtFQWdCSTs7O0FBS0o7RUFnQkk7OztBQS9FTjtFQWdCSTs7O0FBR0o7RUFpQkk7RUFDQTtFQUNBOzs7QUFJRjtFQWdCSTs7O0FBS0o7RUFnQkk7OztBQS9FTjtFQWdCSTs7O0FBR0o7RUFpQkk7RUFDQTtFQUNBOzs7QUFJRjtFQWdCSTs7O0FBS0o7RUFnQkk7OztBQS9FTjtFQWdCSTs7O0FBR0o7RUFpQkk7RUFDQTtFQUNBOzs7QUFJRjtFQWdCSTs7O0FBS0o7RUFnQkk7OztBQS9FTjtFQWdCSTs7O0FBR0o7RUFpQkk7RUFDQTtFQUNBOzs7QUFJRjtFQWdCSTs7O0FBS0o7RUFnQkk7OztBQVlWO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQSxjQTdRbUI7RUE4UW5COztBQUNBO0VBUEY7SUFRSTtJQUNBO0lBQ0E7SUFDQTs7O0FBRUY7RUFDRTtJQUNFO0lBQ0E7O0VBQ1M7SUFDUDtJQUNBOztFQUdKO0lBQ0U7O0VBQ1M7SUFDUDtJQUNBO0lBQ0E7O0VBR0o7SUFDRTs7RUFDUztJQUNQO0lBQ0E7SUFDQTs7RUFHSjtJQUNFOztFQUNTO0lBQ1A7SUFDQTtJQUNBOztFQUdKO0lBQ0U7O0VBQ1M7SUFDUDtJQUNBO0lBQ0E7O0VBR0o7SUFDRTs7RUFDUztJQUNQO0lBQ0E7SUFDQTs7RUFNSjtJQUNFOztFQUNTO0lBQ1A7SUFDQTtJQUNBOzs7QUFJTjtFQUNFO0lBQ0U7SUFDQTs7RUFDUztJQUNQO0lBQ0E7O0VBR0o7SUFDRTs7RUFDUztJQUNQO0lBQ0E7SUFDQTs7RUFHSjtJQUNFOztFQUNTO0lBQ1A7SUFDQTtJQUNBOztFQUdKO0lBQ0U7O0VBQ1M7SUFDUDtJQUNBO0lBQ0E7O0VBR0o7SUFDRTs7RUFDUztJQUNQO0lBQ0E7SUFDQTs7RUFHSjtJQUNFOztFQUNTO0lBQ1A7SUFDQTtJQUNBOztFQU1KO0lBQ0U7O0VBQ1M7SUFDUDtJQUNBO0lBQ0E7OztBQUlOO0VBQ0U7SUFDRTtJQUNBOztFQUNTO0lBQ1A7SUFDQTs7RUFHSjtJQUNFOztFQUNTO0lBQ1A7SUFDQTtJQUNBOztFQUdKO0lBQ0U7O0VBQ1M7SUFDUDtJQUNBO0lBQ0E7O0VBR0o7SUFDRTs7RUFDUztJQUNQO0lBQ0E7SUFDQTs7RUFHSjtJQUNFOztFQUNTO0lBQ1A7SUFDQTtJQUNBOztFQUdKO0lBQ0U7O0VBQ1M7SUFDUDtJQUNBO0lBQ0E7O0VBT0o7SUFDRTs7RUFDUztJQUNQO0lBQ0E7SUFDQTs7O0FBSU47RUFDRTtJQUNFO0lBQ0E7O0VBQ1M7SUFDUDtJQUNBOztFQUdKO0lBQ0U7O0VBQ1M7SUFDUDtJQUNBO0lBQ0E7O0VBR0o7SUFDRTs7RUFDUztJQUNQO0lBQ0E7SUFDQTs7RUFHSjtJQUNFOztFQUNTO0lBQ1A7SUFDQTtJQUNBOztFQUdKO0lBQ0U7O0VBQ1M7SUFDUDtJQUNBO0lBQ0E7O0VBTUo7SUFDRTs7RUFDUztJQUNQO0lBQ0E7SUFDQTs7RUFHSztJQUNQO0lBQ0E7SUFDQTs7OztBQU1OO0VBQ0U7RUFDQTtFQUNBOzs7QUFJRjtFQUNFOztBQUNTO0VBQ1A7RUFDQTs7O0FBS0o7RUFDRTs7QUFDUztFQUNQO0VBQ0E7OztBQUtKO0VBQ0U7O0FBRUE7RUFDRTs7QUFHRjtFQUNFO0VBQ0E7OztBQUtKO0VBQ0U7O0FBRUE7RUFDRSxjQXJqQmlCOztBQXdqQm5CO0VBQ0U7O0FBRUE7RUFDRTs7O0FBT0o7RUFDRTs7O0FBS0o7RUFDRTs7O0FBSUY7RUFDRTs7O0FDL2xCRjtBQUFBO0FBQUE7QUFLRTtFQUNFOztBQUVGO0VBQ0U7OztBQUlKO0VBQ0U7RUFDQTtFQUNBOzs7QUFHRjtFQUNFOzs7QUFHRjtFQUNFOzs7QUFHRjtFQUNFOzs7QUFHRjtFQUNFOzs7QUFHRjtFQUNFOzs7QUFHRjtFQUNFOzs7QUFHRjtFQUNFOzs7QUFHRjtFQUNFOzs7QUFHRjtFQUNFOzs7QUFHRjtFQUNFOzs7QUFHRjtFQUNFOzs7QUFHRjtFQUNFOzs7QUFHRjtFQUNFOzs7QUFHRjtFQUNFOzs7QUFHRjtFQUNFOzs7QUFHRjtFQUNFOzs7QUFHRjtFQUNFOzs7QUFHRjtFQUNFOzs7QUFHRjtFQUNFOzs7QUFHRjtFQUNFO0VBQ0E7RUFDQTs7O0FBR0Y7RUFDRSxrQlAzQ1k7OztBTzhDZDtFQUNFLGtCUDVDaUI7OztBTytDbkI7RUFDRSxrQlBqQ1c7RU9rQ1gsT1AzQ1k7OztBTzhDZDtFQUNFLGtCUHJDWTtFT3NDWixPUGhEWTs7O0FPbURkO0VBQ0Usa0JQcERZOzs7QU91RGQ7RUFDRSxrQlByRFc7OztBT3VEYjtFQUNFOzs7QUFHRjtFQUNFLGtCUHpEZ0I7OztBTzREbEI7RUFDRSxrQlBqQ2M7OztBT29DaEI7RUFDRSxrQlB4Q1k7OztBTzJDZDtFQUNFOztBSG5DQTtFR2tDRjtJQUdJOzs7O0FBSUo7RUFDRSxPUDNGWTs7O0FPOEZkO0VBQ0UsT1B0Rlk7OztBT3lGZDtFQUNFLE9QakZXOzs7QU9vRmI7RUFDRSxPUDNGVzs7O0FPOEZiO0VBQ0UsT1BoRWM7OztBT21FaEI7RUFDRSxPUHZFWTs7O0FPMEVkO0VBQ0UsT1AxR1k7RU8yR1osa0JQbEdXOztBT21HWDtFQUNFLE9QN0dVOztBTytHWjtFQUNFOztBQUNBO0VBQ0Usa0JQeEhhOzs7QU82SG5CO0VBQ0U7RUFDQTs7QUhqRkE7RUcrRUY7SUFJSTtJQUNBOzs7QUFHRjtFQUNFOztBSHhGRjtFR3VGQTtJQUdJOzs7O0FBSU47RUFDRTs7QUgvRkE7RUc4RkY7SUFHSTs7O0FINUZGO0VHeUZGO0lBTUk7Ozs7QUFNSjtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0EsT1BoS1k7RU9pS1o7O0FBQ0E7RUFFRSxrQlB6S2dCO0VPMEtoQixjUDFLZ0I7RU8yS2hCLE9QdEtVOzs7QU8wS2Q7RUFHRSxrQlBuTGlCOzs7QU82TG5CO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7O0FBQ0E7RUFDRTtFQUNBOztBQU1KO0VBQ0U7O0FBQ0E7RUFDRTs7O0FBWUo7RUFDRSxPUDFOaUI7RU8yTmpCO0VBQ0E7O0FBQ0E7RUFDRTtFQUNBLE9QOU5nQjs7O0FPa09wQjtFQUNFOztBQUNBO0VBQ0U7OztBQVlKO0VBQ0U7RUFDQTs7O0FBRUY7RUFDRTtFQUNBO0VBQ0E7OztBQUVGO0VBQ0U7RUFDQTtFQUNBOzs7QUFHRjtFQUNFO0VBQ0E7RUFDQTtFQUNBOzs7QUFHRjtFQUNFOztBQUVBO0VBQ0U7O0FBSUE7RUFDRTs7O0FBS047RUFDRTs7O0FBSUE7RUFDRTs7QUFFRjtFQUNFOztBQUdBO0FBQUE7RUFFRTtFQUNBOzs7QUNuV047QUFBQTtBQUFBO0FBSUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0VBWUU7RUFDQTtFQUNBO0VBQ0E7OztBQUdGO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7O0FBRUY7RUFDRTs7O0FBRUY7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOztBQUNBO0VBQ0U7RUFDQTs7QUFFRjtFQUNFOztBQUVGO0VBQ0U7OztBQ3ZESjtBQUlJO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUxvRUosYUp2QlU7RUl3QlY7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBRUE7RUFDQTtFQUNBO0VLM0VJO0VBQ0E7O0FBSUY7RUFDRTs7QUFFRjtFQUNFOztBQUdKO0VBQ0U7O0FBRUY7RUFDRTtFQUNBO0VBQ0E7O0FBR0E7QUFBQTtFQUVFOztBQUVGO0VBQ0U7OztBQ3JDTjtBQUFBO0FBQUE7QUFJQTtBQUdFO0VBTUU7O0FBRUY7RUFRRTs7QUFHQTtFQUNFLE9WbUNhO0VVbENiOztBQUNBO0VBQ0UsT1Y2Qk07O0FVMUJWO0VBQ0U7O0FBQ0E7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBOztBQUVPO0VBQ1A7OztBQUdKO0VBQ0U7RUFDQTs7QUFDQTtFQUNFOztBQUdKO0VBQ0U7O0FBRUY7RUFDRTs7QUFHSjtFQUVFOztBQUVGO0VBQ0U7RUFDQTtFQUNBO0VBQ0EsT1ZUVTs7QVVXWjtFQUNFO0VBQ0E7RUFDQSxPVjBCVTs7QVV6QlY7RUFDRTtFQUNBOztBQUNBO0VBQ0U7O0FBR0o7RUFDRTs7QUFFRjtFQUNFO0VBQ0E7O0FBQ0E7RU5YSixhSnZCVTtFSXdCVjtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFFQTtFQUNBO0VBQ0E7RU1JTTs7QUFJTjtFQUNFOztBQUVFO0VBQ0U7RUFDQSxPVnJDVzs7QVV5Q2pCO0VBQ0U7RUFDQTtFQUNBOztBQUNBO0VBQ0U7RUFDQTs7QUFFRjtFQUNFO0VBQ0E7O0FBR0o7RUFDRTs7QUFFRjtFQUNFO0VBQ0E7O0FBQ0E7RUFDRTs7QUFFRjtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBQ0E7RUFDRTtFQUNBLE9WdEVZOztBVXlFZDtFQUdFOztBQUVGO0VBRUU7O0FBS0o7QUFBQTtBQUFBO0VBR0U7O0FOakNKO0VNOEJFO0FBQUE7QUFBQTtJQUtJOzs7QUFLSTtBQUFBO0FBQUE7RUFDRTs7QUFPUjtBQUFBO0FBQUE7RUFHRTs7QUFJTjtFQUNFO0VBQ0E7RUFDQTtFQUNBOztBQUNBO0VBQ0U7RUFDQSxPVnJIYzs7QVV3SGxCO0VBQ0U7RUFDQTtFQUNBOztBQUVGO0VBQ0U7RUFDQTs7QUFDQTtFQUVFOztBQUVGO0VBQ0UsT1Y5RlU7O0FVK0ZWO0VOekhKLGFKdkJVO0VJd0JWO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUVBO0VBQ0E7RUFDQTtFTWtITTs7QUFHSjtFQUNFLE9WekdROztBVTBHUjtFTmpJSixhSnZCVTtFSXdCVjtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFFQTtFQUNBO0VBQ0E7RU0wSE07O0FBR0o7RUFDRTs7QUFJRjtBQUFBO0FBQUE7RUFJRTtFQUNBO0VBQ0E7RUFDQTtFQUNBLE9WeEtPO0VVeUtQOztBQUNBO0FBQUE7QUFBQTtBQUFBO0FBQUE7RUFFRSxrQlZ6S007RVUwS04sT1ZqS007O0FJa0RaO0VNa0dFO0FBQUE7QUFBQTtJQWdCSTs7O0FBSU47RUFDRTs7QUFDQTtFQUVFOztBTjFISjtFTTZISTtJQUdFO0lBQ0E7SUFDQTs7O0FBS0o7RUFDRSxPVnRNTzs7QVV1TVA7RUFDRSxPVnJNTTs7QVV5TVo7RUFDRTs7QUFDQTtFQUNFOztBQUNBO0VBQ0U7O0FBR0o7RUFDRTs7QUFFRjtFQUNFOztBQUdKO0VBQ0UsT1Y1TlM7O0FVNk5UO0VBQ0U7RUFDQSxPVi9OTzs7QVVrT1g7RUFDRTtFQUNBOztBQUdBO0VBQ0U7O0FBR0o7RUFDRTs7QUFFRjtFQUNFO0VBQ0E7RUFDQTs7QUFFRjtBQUFBO0VBS0U7RUFDQTtFQUNBO0VBQ0E7QUFFQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7QUFFQTtBQUFBO0VBQ0U7O0FBRUY7QUFBQTtFQUNFOztBQUdKO0VBQ0U7RUFDQTs7QUFFRjtFQUVFOztBQUVGO0VBQ0U7O0FBR0E7RUFDRTtFQUNBO0VBQ0E7RUFDQTs7QUFHSjtFQUNFO0VBRUE7O0FBQ0E7RUFDRTs7QUFLQTtFQUNFLE9WalNNO0VVa1NOOzs7QUN0V1I7QUFFRTtFQUNFOztBQUVGO0VBQ0U7RUFDQTs7QVBvSEY7RU9qSEU7SUFDRTtJQUNBO0lBQ0E7SUFDQTs7O0FBR0o7RUFDRTtFQUNBO0VBQ0E7RUFDQTs7QUFDQTtFQUxGO0lBTUk7SUFDQTs7O0FBR0o7RUFDRTtFQUNBOztBQUNBO0VBQ0U7O0FQa0ZKO0VPdEZBO0lBT0k7SUFDQTs7RUFDQTtJQUNFO0lBQ0E7OztBQUlKO0VBQ0U7RUFDQTtFQUNBOztBUG9FSjtFT3ZFRTtJQUtJOzs7QUFHSjtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBRUY7RUFDRTtFQUNBO0VBQ0E7RUFDQSxPWENhO0VXQWI7O0FQbURKO0VPeERFO0lBT0k7OztBQUVGO0VBQ0U7RUFDQTs7QVA2Q047RU8vQ0k7SUFJSTs7O0FBR0o7RUFDRTtFQUNBOztBQUNBO0VBQ0U7O0FBSU47RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0EsT1gvQlE7RVdnQ1I7O0FBRUY7RUFDRTs7QUFFRjtFQUNFO0VBQ0E7RUFDQTs7QUFDQTtFQUNFO0VBQ0E7O0FBS0o7RUFDRTtFQUNBOztBQUVGO0VBTEY7SUFNSTs7O0FBRUY7RUFFSTtJQUNFOztFQUVGO0lBQ0U7SUFDQTs7RUFFRjtJQUNFOztFQUNBO0lBQ0U7SUFDQTs7O0FBT1I7RUFDRTs7QUFHSjtFQUNFO0VBQ0E7O0FBRUY7RUFDRSxPWGpGZTs7O0FZOURuQjtBQUlNO0VBQ0U7RUFDQTs7O0FBS1I7RUFFRTtFQUNBOztBUndHQTtFUTNHRjtJQUtJO0lBQ0E7Ozs7QUFHSjtFQUNFO0VBQ0E7RUFDQTtFQUNBOztBQUNBO0VBQ0U7RUFDQTs7QUFFRjtFQUNFLGtCWjZCVTtFWTVCVjtFQUNBOztBQUNBO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7QVJnRko7RVF6RkE7SUFZSTs7O0FBRUY7QUFBQTtFQUVFOztBQUVGO0VBQ0U7O0FBRUY7RUFDRTtFQUNBO0VBQ0E7OztBQUtOO0VBQ0U7RUFDQTtFQUNBOztBQUNBO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7O0FBS0Y7RUFDRTtFQUNBO0VBQ0E7O0FBRUY7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FSMkJGO0VRcENBO0lBV0k7OztBQUVGO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOzs7QUNoR047QUFJSTtFQUNFO0VBQ0E7O0FBR0E7RUFDRTs7QUFFRjtFQUNFO0VBQ0E7O0FBR0o7RUFDRTtFQUNBO0VBQ0E7O0FBRUY7RUFDRTtFQUNBO0VBQ0E7O0FBS0Y7RUFDRTtFQUNBOztBQUVBO0VBQ0U7RUFDQTs7QUFHSjtFQUNFO0VBQ0E7RUFDQTs7QUFXRjtFQUNFOzs7QUN0RE47QUFDQTtFQUNFOztBQUNBO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBR0E7RUFDRSxPZHNEUTs7QWNyRFI7RUFDRTs7QUFHQTtFQUNFOztBVjZGUjtFVS9GSTtJQUtJOzs7QUFHSjtFQUNFOztBVnNGTjtFVXZGSTtJQUdJOzs7QUFFRjtFQUNFO0VBQ0E7O0FBRUY7RUFDRTtFQUNBO0VBQ0E7O0FBRUY7RUFDRTs7QUFHQTtFQUNFOztBQUtSO0VBQ0U7RUFDQTtFQUNBO0VBQ0EsT2RjUTtFY2JSOztBQUVGO0VBQ0U7O0FBQ0E7RUFDRTs7QUFFRjtFQUNFLFlkZU07O0FjWlY7RUFDRTtFQUNBO0VBQ0EsT2REUTtFY0VSLFlkUVE7O0FjTFY7RUFDRTs7QUFPSjtFQUNFO0VBQ0E7O0FBQ0E7RUFDRTs7QUFHSjtFQUNFOztBQUNBO0VBQ0U7O0FBRUY7RUFDRTs7QUFHQTtFQUNFLE9kOUJNOztBYytCTjtFQUNFOztBQUtSO0VBQ0U7O0FBRUY7RUFDRTtFQUNBOztBQUNBO0VBQ0U7O0FBQ0E7RUFDRTs7QUFJTjtFQUNFOztBQUVGO0VBQ0U7RUFDQTtFQUNBOztBQUNBO0VBQ0U7O0FBSUo7RUFDRTs7QUFFRjtFQUNFOzs7QUNsSUU7QUFBQTtFQUNFO0VBQ0E7O0FBR0o7RUFDRTs7QUFDQTtFQUZGO0lBR0k7OztBWGdHTjtFV25HRTtJQU1JOzs7QUFHSjtFQUNFOztBQUVGO0VBQ0U7O0FBQ0E7RUFGRjtJQUdJOzs7QVhvRk47RVd2RkU7SUFNSTs7O0FBSUY7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBOzs7QUFPSjtFQUNFOztBQUNBO0VBRkY7SUFHSTs7O0FYOEROO0VXakVFO0lBTUk7Ozs7QUFNTjtFQUNFO0VBQ0E7O0FBRUY7RUFDRTtFQUNBO0VBQ0E7RUFDQTs7QUFDQTtFQUNFOztBQUVGO0VBUkY7SUFTSTs7O0FYd0NKO0VXakRBO0lBWUk7OztBWDBDSjtFV3REQTtJQWVJO0lBQ0E7OztBQUdKO0VBQ0U7OztBQy9FSjtBQUlNO0VBQ0U7RUFDQTs7QUFDQTtFQUNFO0VBQ0E7RUFDQTtFQUNBOztBQUVGO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7O0FBSU47RUFDRTtFQUNBO0VBQ0E7O0FBRUY7RUFDRTtFQUNBO0VBQ0E7OztBQzVCSjtFQUNFO0VBQ0E7O0FBRUY7RUFDRTtFQUNBOztBQUVGO0VBQ0U7RUFDQTs7QUFFRjtBQUFBO0VBRUU7O0FBRUY7RUFDRTs7QUFDQTtFQUNFO0VBQ0E7O0FBQ0E7RUFDRSxPakI2Q007O0FpQjNDUjtFQUNFOztBQUdKO0VBQ0UsT2pCMEJPO0VpQnpCUDs7QUFFRjtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBQ0E7RUFDRTs7QUFFRjtFQUNFOztBQUVGO0VBQ0U7O0FBRUY7RUFDRTtFQUNBLE9qQmtCTTs7QWlCaEJSO0VBQ0U7O0FBRUY7RUFDRTs7O0FBTVI7RUFDRTs7O0FBR0Y7RUFDRTs7O0FBR0Y7RUFDRTtFQUNBO0VBQ0E7OztBYndDQTtFYXBDQTtJQUNFOztFQUVGO0lBQ0U7O0VBRUY7SUFDRTtJQUNBO0lBQ0E7SUFDQTs7RUFFRjtJQUNFOztFQUVGO0FBQUE7QUFBQTtJQUdFO0lBQ0E7O0VBRUY7QUFBQTtJQUVFOztFQUVGO0lBQ0U7O0VBRUY7SUFDRTs7O0FDMUdKO0FBR0k7RUFDRTs7QUFFRjtFQUNFOztBQUdKO0VBR0U7O0FBRUY7RUFDRTs7QUFDQTtFQUNFO0VBQ0E7RUFDQTs7QUFHSjtFQUNFO0VBQ0E7RUFDQTtFQUNBOzs7QUFNQTtFQUNFO0VBQ0E7O0FBRUY7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBOztBQUNBO0VBQ0U7O0FBQ0E7RUFDRTs7QUFLUjtFQUNFO0VBQ0E7O0FBQ0E7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBR0o7RUFDRTtFQUNBO0VBQ0E7O0FBRUY7RUFDRTtFQUNBLE9sQmpCZTtFa0JrQmY7RUFDQTtFQUNBOztBQUNBO0VBQ0U7OztBQUtOO0VBQ0U7O0FBRUU7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBOztBQUVGO0VBQ0U7RUFDQTtFQUNBLE9sQnhDYTtFa0J5Q2I7O0FBRUY7RUFDRTtFQUNBO0VBQ0E7O0FBSUY7RUFDRTtFQUNBOztBQUlGO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7O0FBRUY7RUFDRTs7QUFJRjtFQUNFLE9sQmpFa0I7RWtCa0VsQjtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0Esa0JsQjFEUTtFa0IyRFI7RUFDQTtFQUNBO0VBQ0E7O0FBQ0E7RUFDRTtFQUNBO0VBQ0E7O0FBRUY7RUFDRTs7QUFFRjtFQUNFO0VBQ0EsT2xCdEZnQjs7O0FrQjRGeEI7RUFDRTs7O0FDOUpGO0FBSUk7RUFJRTs7QUFFRjtFQUNFO0VBQ0E7O0FBQ0E7RUFDRTs7QUFFRjtFQUNFOztBQUVGO0VBQ0U7O0FBR0o7RUFDRTs7QUFFRTtFQUNFO0VBQ0E7RUFDQTs7QWZ5RlI7RWU1Rk07SUFLSTtJQUNBOzs7QUFHSjtFQUNFO0VBQ0E7RUFDQTs7QWZnRlI7RWVuRk07SUFLSTtJQUNBOzs7QUFLSjtFQUNFO0VBQ0E7RUFDQTs7QWZzRFI7RWV6RE07SUFLSTs7O0FmeURWO0VlOURNO0lBUUk7OztBQUVGO0VBVkY7SUFXSTs7O0FmNkRWO0VleEVNO0lBY0k7SUFDQTs7O0FBR0o7RUFDRTtFQUNBO0VBQ0E7O0Fmb0NSO0VldkNNO0lBS0k7OztBZnVDVjtFZTVDTTtJQVFJOzs7QUFFRjtFQVZGO0lBV0k7OztBZjJDVjtFZXRETTtJQWNJO0lBQ0E7OztBQU1OO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7O0FmNkJOO0VlakNJO0lBTUk7OztBQUdKO0VBQ0U7O0FBRUY7QUFBQTtFQUVFO0VBQ0E7RUFDQTtFQUNBOztBZmdCTjtFZXJCSTtBQUFBO0lBT0k7OztBQU9KO0VBRUU7O0FBRUY7RUFDRTs7QUFFRjtFQUNFOztBQUVFO0VBQ0U7RUFDQTtFQUNBOztBZmhCVjtFZWFRO0lBS0k7SUFDQTs7O0FmVFo7RWVHUTtJQVNJO0lBQ0E7OztBQUdKO0VBQ0U7RUFDQTtFQUNBOztBZjdCVjtFZTBCUTtJQUtJO0lBQ0E7OztBZnRCWjtFZWdCUTtJQVNJO0lBQ0E7OztBQU1OO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7O0FmcENSO0VlZ0NNO0lBTUk7OztBQUdKO0VBQ0U7O0FBRUY7RUFDRTs7QUFFRjtBQUFBO0VBRUU7RUFDQTtFQUNBO0VBQ0E7O0FmcERSO0VlK0NNO0FBQUE7SUFPSTs7O0FBSUo7QUFBQTtFQUVFOztBZmpFUjtFZXdFUTtJQUNFOzs7QUFNVjtFQUNFO0VBNERBOztBZmpKRjtFZW9GQTtJQUdJO0lBQ0E7SUFDQTtJQUNBO0lBQ0E7SUFDQSxZbkJqSU87OztBbUJtSVQ7RUFDRTs7QUFHQTtFQUNFO0VBQ0E7O0FBRUY7RUFDRTs7QUFDQTtFQUNFO0VBQ0E7RUFDQTs7QUFHSjtFZjlLSixXZStLeUI7RWY5S3pCOztBZWdMSTtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RWZ0TE4sV2V1THlCO0VmdEx6Qjs7QWV3TEk7RUFDRTs7QUFDQTtFQUNFOztBQUVGO0VBQ0U7RUFDQTtFQUNBOztBQU1GO0VBQ0Usa0JuQmhMSTs7QW1Cb0xWO0VBQ0U7RUFDQTs7QUFJRjtFQUNFO0VBQ0E7RUFDQTs7QWZySko7RWVrSkU7SUFLSTtJQUNBOzs7QUFNRjtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FmOUpOO0VlZ0tRO0lBQ0U7OztBQUlOO0VBQ0U7RUFDQSxrQm5Cak5LOztBbUJtTlA7RUFDRTs7QUFLQTtFQUNFLGtCbkI3Tkk7O0FtQm9PUjtFQUNFOztBQUVGO0VBQ0U7O0FBRUY7RUFDRTtFQUNBO0VBQ0E7RUFDQTs7QUFHQTtFQUNFO0VBQ0E7RUFDQTs7QUFHSjtFQUNFO0VBQ0E7O0FBSU47RUFDRTs7QUFDQTtFQUNFOztBQUdBO0VBQ0U7RUFDQSxPbkI5UU07O0FtQmdSUjtFQUNFO0VBQ0E7O0FBR0o7RUFDRTtFQUNBLGtCbkJ2UlE7RW1Cd1JSLE9uQi9RUTtFbUJnUlI7RUFDQTs7QUFDQTtFQUNFO0VBQ0E7RUFDQTtFQUNBOztBQUdKO0VBR0U7O0FBRUY7RUFFRTs7QUFFRjtFQUNFOztBQUVGO0VBQ0U7O0FBRUY7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBRUY7RUFDRTtFQUNBLGtCbkIvU087RW1CZ1RQOztBQUVGO0VBQ0U7O0FBQ0E7RUFDRTs7QUFHSjtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOztBZmhSSjtFZXlRRTtJQVNJOzs7QUFFRjtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOztBQUVGO0VBQ0U7RUFDQTs7QWYvUk47RWU2Ukk7SUFJSTs7O0FBSUY7RUFDRSxrQm5COVZTO0VtQitWVCxPbkJ6Vkk7O0FtQjRWUjtFQUNFOztBQUNBO0VBQ0Usa0JuQnhXSTtFbUJ5V0osT25CaFdJOztBbUJtV1I7RUFDRTtFQUNBOztBQUNBO0VBQ0U7O0FmclRSO0VleVFFO0lBZ0RJOzs7QUFJRjtFQUNFOztBQUlGO0VBQ0U7RUFDQTs7QUFFRjtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBQ0E7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBLGtCbkIvWUk7RW1CZ1pKOztBQUVGO0VBQ0Usa0JuQmhaUzs7QUltRGpCO0VlZ05BO0lBa0pJOztFQUNBO0lBRUU7SUFDQTs7RUFFRjtJQUNFOztFQUVGO0lBQ0U7OztBQU1GO0VBQ0U7O0FBQ0E7RUFDRTtFQUNBOztBQUdGO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7O0FBR0Y7RUFDRTs7QUFLRjtFQUNFO0VBQ0EsT25CM2JTO0VtQjRiVDs7QUFDQTtFQUNFLE9uQnhiRTtFbUJ5YkYsa0JuQi9iTzs7O0FvQjVEbkI7QUFDQTtBQUVBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtBQUNBO0FBRUE7QUFFQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtBQUNBO0FBRUE7QUFFQTtFQUNBO0VBQ0E7QUFFQTtBQUVBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7QUFFQTtFQUNBO0VBQ0E7RUFDQTtBQUVBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtBQUVBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0FBRUE7RUFDQTtFQUNBO0VBQ0E7RUFDQTtBQUVBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0FBQ0E7QUFFQTtBQUVBO0VBQ0E7QUFFQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtBQUVBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0FBRUE7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7QUFFQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtBQUVBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0FBRUE7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtBQUVBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7QUFFQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0FBRUE7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0FBRUE7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtBQUVBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0FBRUE7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0FBRUE7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtBQUNBO0FBRUE7QUFFQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7QUFFQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtBQUVBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtBQUVBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtBQUVBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtBQUVBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtBQUVBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtBQUVBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtBQUNBO0FBRUE7QUFFQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtBQUVBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0FBRUE7RUFDQTtFQUNBO0VBQ0E7RUFDQTtBQUVBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtBQUVBO0FBRUE7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0FBQ0E7QUFFQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOzs7QUFFQTtBQUVBO0FBQ0E7QUFDQTtFQUNJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFFQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUVBO0VBQ0E7OztBQUdKO0VBQ0k7OztBQUdKO0VBQ0k7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7O0FBR0o7RUFDSTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7O0FBR0o7QUFDQTtFQUNJO0VBQ0E7RUFDQTtFQUNBOzs7QUFHSjtFQUNJOzs7QUFHSjtFQUNJO0VBQ0E7OztBQUlKO0VBQ0k7RUFDQTtFQUNBOzs7QUFHSjtFQUNJO0VBRUE7RUFDQTs7O0FBR0o7RUFDSTtFQUNBOzs7QUFHSjtFQUNJO0VBQ0E7OztBQUdKO0VBQ0k7RUFDQTs7O0FBR0o7RUFDSTtFQUNBO0VBQ0E7RUFDQTtFQUNBOzs7QUFHSjtBQUVBO0VBQ0k7OztBQUdKO0VBQ0k7OztBQUdKO0FBQUE7RUFFSTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQUdKO0FBQUE7RUFFSTs7O0FBR0o7RUFDSTtFQUNBO0VBQ0E7OztBQUdKO0FBQUE7RUFFSTs7O0FBR0o7RUFDSTtFQUNBOzs7QUFHSjtBQUFBO0FBQUE7QUFBQTtFQUlJOzs7QUFHSjtBQUFBO0VBRUk7RUFDQTs7O0FBS0o7QUFBQTtFQUVJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQUdKO0FBQUE7RUFFSTtFQUNBO0VBQ0E7OztBQUdKO0FBQ0E7RUFDSTtFQUNBO0VBQ0E7RUFDQTs7O0FBR0o7RUFDSTs7O0FBR0o7QUFBQTtFQUVJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOzs7QUFHSjtBQUFBO0VBRUk7RUFDQTs7O0FBR0o7QUFBQTtBQUFBO0FBQUE7RUFJSTtFQUNBOzs7QUFHSjtBQUNBO0VBQ0k7OztBQUdKO0VBQ0k7RUFDQTtFQUNBOzs7QUFHSjtFQUNJOzs7QUFHSjtBQUFBO0VBRUk7OztBQUdKO0FBQUE7RUFFSTs7O0FBR0o7QUFBQTtFQUVJOzs7QUFHSjtBQUFBO0VBRUk7OztBQUdKO0FBQUE7RUFFSTs7O0FBR0o7QUFBQTtFQUVJO0VBQ0E7OztBQUdKO0FBQ0E7QUFDQTtBQUFBO0VBRUk7OztBQUdKO0FBQ0E7RUFDSTs7O0FBR0o7QUFDQTtBQUFBO0FBQUE7RUFHSTs7O0FBR0o7QUFDQTtFQUNJO0VBQ0E7OztBQUdKO0FBQUE7RUFFSTs7O0FBR0o7QUFDQTtBQUFBO0VBRUk7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOzs7QUFHSjtBQUFBO0VBRUk7RUFDQTtFQUNBOzs7QUFHSjtBQUFBO0FBQUE7QUFBQTtFQUlJO0VBQ0E7RUFDQTs7O0FBR0o7QUFBQTtFQUVJO0VBQ0E7RUFDQTs7O0FBR0o7QUFBQTtBQUFBO0FBQUE7RUFJSTtFQUNBO0VBQ0E7RUFDQTs7O0FBR0o7QUFBQTtFQUVJOzs7QUFHSjtFQUNJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOzs7QUFHSjtFQUNJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0FBRUE7RUFDQTtFQUNBOzs7QUFHSjtFQUNJOzs7QUFHSjtFQUNJOzs7QUFHSjtBQUFBO0VBRUk7OztBQUdKO0FBQUE7RUFFSTs7O0FBR0o7RUFDSTs7O0FBR0o7RUFDSTs7O0FBR0o7QUFBQTtFQUVJOzs7QUFHSjtFQUNJOzs7QUFHSjtFQUNJOzs7QUFHSjtFQUNJO0lBRUk7O0VBR0o7SUFDSTtJQUNBO0lBQ0E7O0VBR0o7SUFDSTtJQUNBOztFQUdKO0lBQ0k7SUFDQTtJQUNBO0lBQ0E7SUFDQTtJQUNBOztFQUdKO0lBQ0k7OztBQUlSO0VBQ0k7QUFBQTtJQUVJOztFQUdKO0lBQ0k7OztBQUtSO0FBRUE7QUFDQTtFQUNJO0VBQ0E7RUFDQTs7O0FBR0o7RUFDSTtFQUNBO0VBQ0E7RUFDQTtFQUNBOzs7QUFHSjtFQUNJOzs7QUFHSjtFQUNJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7O0FBR0o7RUFDSTs7O0FBR0o7QUFBQTtBQUFBO0VBR0k7OztBQUdKO0FBQUE7RUFFSTs7O0FBR0o7RUFDSTtFQUNBO0VBQ0E7RUFDQTs7O0FBR0o7QUFBQTtBQUFBO0VBR0k7RUFDQTtFQUNBOzs7QUFHSjtBQUFBO0VBRUk7RUFDQTtFQUNBOzs7QUFJSjtBQUNBO0VBQ0U7RUFDQTtFQUNBOzs7QUFHRjtBQUNBO0VBQ0U7RUFDQTtFQUNBOzs7QUFHRjtFQUNFO0VBQ0E7RUFDQTtFQUNBOztBQUVFO0VBQ0k7O0FBR0o7RUFDSTs7QUFFQTtFQUNJOztBQUlSO0VBQ0k7O0FBRUE7RUFDSTs7O0FBS1o7RUFDSTtFQUNBO0VBQ0E7OztBQUdKO0FBQ0E7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7O0FBR0Y7QUFDQTtFQUNFO0VBQ0E7RUFDQTtFQUNBOzs7QUFHRjtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOzs7QUFHRjtFQUNJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7O0FBR0o7RUFDSTtFQUNBO0VBQ0E7RUFDQTs7O0FBR0o7RUFDSTtFQUNBO0VBQ0E7OztBQUdKO0FBQUE7RUFFSTtFQUNBO0VBQ0E7OztBQUlKO0FBQ0E7RUFDSTtJQUNJOztFQUdKO0lBQ0k7SUFDQTtJQUNBOztFQUdKO0lBQ0k7OztBQUlSO0FBQ0E7RUFDSTs7O0FBSUo7RUFDSTs7O0FBR0o7RUFFSTtFQUNBOzs7QUFHSjtFQUVJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOzs7QUFHSjtBQUFBO0VBR0k7RUFDQTtFQUNBO0VBQ0E7OztBQUdKO0FBQUE7RUFFSTs7O0FBR0o7RUFFSTs7O0FBR0o7QUFBQTtFQUVJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7O0FBR0o7RUFDSTs7O0FBR0o7RUFDSTtFQUNBOzs7QUFHSjtBQUFBO0VBRUk7RUFDQTtFQUNBO0VBQ0E7OztBQUdKO0FBQUE7RUFFSTtFQUNBO0VBQ0E7OztBQUdKO0FBQUE7RUFFSTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0FBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQUdKO0FBQ0E7RUFDSTtJQUVJO0lBQ0E7SUFDQTs7RUFHSjtBQUFBO0lBR0k7OztBQUlSO0FBQ0E7RUFDSTtBQUFBO0lBRUk7O0VBR0o7QUFBQTtJQUVJO0lBQ0E7SUFDQTs7O0FBSVI7QUFDQTtFQUNJO0FBQUE7SUFFSTs7RUFHSjtBQUFBO0lBRUk7O0VBRVA7QUFDRDtFQUNJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUVBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBRUE7RUFDQTtFQUVBO0VBQ0E7RUFDQTs7O0FBR0o7RUFDSTs7O0FBR0o7RUFFSTtFQUNBO0VBQ0E7RUFFQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOzs7QUFHSjtBQUFBO0VBR0k7RUFDQTtFQUNBO0VBRUE7RUFDQTtFQUNBO0VBQ0E7OztBQUtKO0VBQ0U7RUFDQTtFQUNBOzs7QUFHRjtFQUNJO0VBQ0E7OztBQUdKO0VBQ0k7RUFDQTs7O0FBR0o7RUFDSTtFQUNIO0FBQ0Q7QUFBQTtFQUdJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBRUE7RUFDQTtFQUVBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUVBO0VBQ0E7RUFDQTtFQUNBOzs7QUFHSjtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0VBUUk7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7O0FBR0o7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0VBTUk7OztBQUdKO0FBQUE7QUFBQTtFQUdJO0VBQ0E7OztBQUdKO0FBQUE7QUFBQTtFQUdJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUVBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7O0FBR0o7RUFDSTtFQUNBO0VBQ0E7RUFDQTtFQUVBO0VBQ0E7RUFDQTtFQUNBOzs7QUFHSjtFQUNJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQUdKO0FBQUE7RUFFSTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBRUE7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBRUE7RUFDQTs7O0FBR0o7QUFBQTtFQUdJO0VBQ0E7RUFDQTtFQUVBO0VBQ0E7RUFDQTs7O0FBSUo7QUFBQTtBQUFBO0FBQUE7RUFLSTtFQUNBO0VBQ0E7RUFFQTtFQUNBO0VBQ0E7OztBQUlKO0FBQ0E7RUFFSTtBQUFBO0FBQUE7SUFHSTs7RUFHSjtJQUNJOztFQUdKO0FBQUE7QUFBQTtBQUFBO0lBSUk7OztBQUlSO0FBQ0E7RUFFSTtBQUFBO0FBQUE7QUFBQTtBQUFBO0lBS0k7SUFDQTs7RUFHSjtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7SUFNSTtJQUNBOztFQUlKO0lBQ0k7O0VBRVA7QUFDRDtFQUNJO0VBRUE7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBRUE7RUFDQTtFQUVBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFFQTtFQUNBO0VBQ0E7OztBQUdKO0VBQ0k7RUFDQTs7O0FBR0o7QUFBQTtBQUFBO0VBR0k7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBRUE7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOzs7QUFHSjtBQUFBO0VBRUk7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7O0FBVUo7QUFBQTtBQUFBO0FBQUE7RUFJSTtFQUNBO0VBQ0E7OztBQUdKO0FBQUE7RUFFSTtFQUNBO0VBQ0E7RUFDQTtFQUNBOzs7QUFHSjtBQUFBO0FBQUE7QUFBQTtFQUlJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQUdKO0FBQUE7RUFFSTtFQUNBO0VBQ0E7OztBQUdKO0VBQ0k7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOzs7QUFHSjtFQUNJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQUdKO0VBQ0k7RUFDQTs7O0FBR0o7RUFDSTtFQUNBOzs7QUFHSjtFQUNJO0VBQ0E7OztBQUdKO0VBQ0k7RUFDQTs7O0FBR0o7RUFDSTtFQUNBOzs7QUFHSjtFQUNJO0VBQ0E7OztBQUdKO0VBQ0k7RUFDQTs7O0FBR0o7QUFDQTtFQUNJOzs7QUFJQTtFQUNJOzs7QUFJUjtFQUNJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOzs7QUFHSjtBQUFBO0VBRUk7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7O0FBR0o7RUFDSTtFQUNBO0VBQ0E7OztBQUdKO0VBQ0k7OztBQUdKO0VBQ0k7RUFDQTs7O0FBR0o7RUFDSTs7O0FBR0o7RUFDSTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOzs7QUFHSjtFQUNJO0VBQ0E7OztBQUdKO0VBQ0k7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQUdKO0FBQ0E7RUFDSTtBQUFBO0lBR0k7O0VBR0o7SUFDSTs7O0FBSVI7QUFDQTtFQUNJO0FBQUE7QUFBQTtBQUFBO0lBSUk7OztBQUdSO0VBQ0k7SUFDSTs7RUFHSjtJQUNJOzs7QUFJUjtFQUNJO0FBQUE7SUFHSTs7RUFHSjtJQUNJOztFQUdKO0FBQUE7QUFBQTtBQUFBO0lBSUk7O0VBR0o7QUFBQTtBQUFBO0lBR0k7O0VBR0o7QUFBQTtBQUFBO0FBQUE7SUFJSTs7O0FBSVI7QUFDQTtFQUNJO0FBQUE7SUFHSTs7RUFHSjtJQUNJOztFQUdKO0FBQUE7QUFBQTtBQUFBO0FBQUE7SUFLSTs7RUFHSjtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7SUFNSTs7O0FBSVI7RUFDSTtJQUNJO0lBQ0E7OztBQUlSO0VBQ0k7RUFDQTs7O0FBQ0g7RUFDRztBQUVBO0FBaUtBO0FBa0NBOztBQWxNQTtFQUNJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7QUFHSjtFQUNJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBR0o7RUFDSTtFQUNBO0VBQ0E7RUFDQTs7QUFHSjtFQUNJO0VBQ0E7RUFDQTs7QUFHSjtFQUNJO0VBQ0E7RUFDQTs7QUFHSjtFQUNJO0VBQ0E7RUFDQTtFQUNBOztBQUVBO0VBQ0k7O0FBSVI7RUFDSTtFQUNBO0VBQ0E7RUFDQTtFQUVBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7QUFJSjtFQUNJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBR0o7RUFDSTtFQUNBO0VBQ0E7RUFDQTtFQUNBOztBQUdKO0VBQ0k7RUFDQTtFQUNBO0VBQ0E7RUFFQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBRUE7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBSUo7RUFDSTtFQUNBO0VBQ0E7RUFDQTtFQUNBOztBQUdKO0VBQ0k7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7QUFHSjtFQUNJO0VBQ0E7RUFDQTtFQUNBO0VBRUE7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUVBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOztBQUlKO0VBQ0k7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7QUFHSjtFQUNJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBSUw7RUFDSztFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFFQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7QUFHSjtFQUNJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBR0o7RUFDSTtFQUNBO0VBQ0E7RUFDQTtFQUNBOztBQUlKO0VBQ0k7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBRUE7RUFDSTtFQUNBO0VBQ0E7RUFDQTs7QUFHSjtFQUNHO0VBQ0M7RUFDQTs7QUFHSjtFQUNJO0VBQ0E7RUFDQTs7QUFHSjtFQUNJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBR0o7RUFDSTtFQUNBO0VBQ0E7RUFDQTtFQUNBOztBQUdKO0VBQ0k7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBR0o7RUFDSTtFQUNBO0VBQ0E7RUFDQTtFQUNBOztBQUdKO0VBQ0k7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7QUFJQTtFQUNJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOztBQUdKO0VBQ0k7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBR0o7RUFDSTtFQUNBO0VBQ0E7RUFDQTtFQUNBOztBQUdKO0VBQ0k7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7QUFHSjtFQUNJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBR0o7RUFDSTtFQUNBO0VBQ0E7RUFDQTtFQUNBOztBQUlSO0VBQ0k7O0FBRUE7RUFDSTs7QUFJUjtFQUNJO0VBQ0E7O0FBRUE7RUFDSTs7QUFLSjtFQUNJOztBQUdKO0VBQ0k7O0FBR0o7RUFDSTs7QUFJUjtFQUNJOztBQUlBO0VBQ0k7O0FBRUo7RUFDRzs7QUFLSDtFQUNJOztBQUVKO0VBQ0c7OztBQU1mO0FBQ0E7RUFFUTtJQUNJOztFQUVKO0lBQ0k7O0VBRUo7SUFDSTs7RUFHQTtJQUNJOztFQUdSO0lBQ0k7O0VBRUo7SUFDSTs7RUFFSjtJQUNJOztFQUdKO0lBQ0k7O0VBRUE7SUFDSTs7RUFHSjtJQUNHOztFQUdIO0lBQ0k7O0VBR0o7SUFDSTs7RUFJQTtJQUNJOztFQUdKO0lBQ0k7OztBQU9wQjtBQUNBO0VBRVE7SUFDSTs7RUFFSjtJQUNJOztFQUVKO0lBQ0k7O0VBR0E7SUFDSTs7RUFHUjtJQUNJOztFQUVKO0lBQ0k7O0VBRUo7SUFDSTs7RUFJSjtJQUNJOztFQUVBO0lBQ0k7O0VBR0o7SUFDRzs7RUFHSDtJQUNJOztFQUdKO0lBQ0k7O0VBSUE7SUFDSTs7RUFFSjtJQUNJOzs7QUFPcEI7QUFDQTtFQUVRO0lBQ0k7O0VBRUo7SUFDSTs7RUFFSjtJQUNJOztFQUdBO0lBQ0k7O0VBR1I7SUFDSTs7RUFFSjtJQUNJOztFQUVKO0lBQ0k7O0VBR0o7SUFDSTs7RUFFQTtJQUNJOztFQUdKO0lBQ0c7O0VBR0g7SUFDSTs7RUFHSjtJQUNJOztFQUlBO0lBQ0k7O0VBRUo7SUFDSTs7RUFLbkI7QUFDRDtFQUNJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUVBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7O0FBR0o7QUFBQTtFQUVJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUVBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7O0FBR0o7RUFDSTs7O0FBR0o7RUFDSTs7O0FBR0o7RUFDSTtFQUNBO0VBQ0E7OztBQUdKO0VBQ0k7OztBQUdKO0VBQ0k7OztBQUdKO0VBQ0k7OztBQUdKO0FBQ0E7RUFDSTtFQUNBO0VBQ0E7RUFDQTtFQUNBOzs7QUFHSjtBQUFBO0VBRUk7OztBQUdKO0VBQ0k7OztBQUdKO0VBQ0k7RUFDQTtFQUNBOzs7QUFHSjtBQUNBO0VBQ0k7RUFDQTtFQUNBO0VBQ0E7OztBQUdKO0VBQ0k7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7O0FBR0o7RUFDSTtFQUNBOzs7QUFHSjtFQUNJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQUdKO0VBQ0k7RUFDQTs7O0FBR0o7QUFDQTtBQUFBO0VBRUk7RUFDQTtFQUNBOzs7QUFHSjtBQUFBO0VBRUk7OztBQUdKO0VBQ0k7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOzs7QUFHSjtFQUNJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQUdKO0VBQ0k7OztBQUdKO0FBQ0E7RUFDSTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7O0FBR0o7RUFDSTtFQUNBO0VBQ0E7RUFDQTs7O0FBR0o7RUFDSTtFQUNBO0VBQ0E7OztBQUdKO0VBQ0k7RUFDQTs7O0FBR0o7RUFDSTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQUdKO0VBQ0k7RUFDQTs7O0FBR0o7RUFDSTtFQUNBO0VBQ0E7RUFDQTs7O0FBR0o7QUFDQTtFQUNJO0lBQ0k7O0VBR0o7QUFBQTtJQUVJOzs7QUFJUjtBQUNBO0VBQ0k7SUFDSTs7RUFHSjtBQUFBO0lBRUk7O0FBR0o7RUFDQTtJQUNJO0lBQ0E7SUFDQTtJQUNBO0lBQ0E7SUFDQSxxQkFDSTtJQUdKO0lBQ0E7SUFDQTs7RUFHSjtJQUNJO0lBQ0E7O0VBR0o7SUFDSTtJQUNBOztFQUdKO0lBQ0k7SUFDQTs7RUFHSjtJQUNJO0lBQ0E7O0VBR0o7SUFDSTtJQUNBOztFQUdKO0FBQUE7QUFBQTtJQUdJOzs7QUFJUjtBQUNJO0VBQ0E7SUFDSTs7RUFHSjtJQUNJOzs7QUFJUjtBQUNJO0VBQ0E7SUFDSTs7O0FBSVI7QUFDQTtFQUNJO0lBQ0k7O0VBR0o7QUFBQTtJQUVJOztBQUdKO0VBQ0E7SUFDSTs7RUFHSjtBQUFBO0lBRUk7O0VBR0o7SUFDSTs7QUFHSjtFQUNBO0lBQ0k7O0VBR0o7SUFDSTtJQUNBOztFQUdKO0lBQ0k7SUFDQTs7QUFHSjtFQUNBO0lBQ0k7O0VBR0o7SUFDSTs7RUFHSjtJQUNJO0lBQ0E7SUFDQTs7RUFHSjtJQUNJO0lBQ0E7O0VBR0o7SUFDSTs7RUFHSjtJQUNJOztFQUdKO0lBQ0k7O0FBSUo7RUFDQTtJQUNJO0lBQ0E7SUFDQTs7RUFHSjtJQUNJO0lBQ0E7O0VBSUo7SUFDSTs7RUFHSjtJQUNJOztBQUlKO0VBQ0E7SUFDSTtJQUNBO0lBQ0E7O0VBR0o7SUFDSTs7RUFFUDtBQUNEO0VBQ0k7OztBQUlBO0VBQ0k7O0FBR0o7RUFDSTtFQUNBOztBQUdKO0VBQ0k7OztBQUlSO0VBQ0k7RUFDQTtFQUNBO0VBQ0E7RUFDQSxxQkFDSTs7QUFHSjtFQUNJO0VBQ0E7O0FBR0o7RUFDSTs7O0FBSVI7RUFDSTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0EscUJBQ0k7O0FBR0o7RUFDSTs7QUFHSjtFQUVJLHFCQUNJO0VBRUo7O0FBRUE7QUFBQTtBQUFBO0VBRUk7RUFDQTtFQUNBOztBQUlSO0VBQ0k7O0FBRUE7RUFDSTtFQUNBOztBQUdKO0VBQ0k7RUFDQTs7QUFLQTtBQUFBO0FBQUE7RUFFSTs7O0FBTWhCO0VBQ0k7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBRUE7RUFDSTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBR0o7RUFDSTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7QUFLSjtFQUNJOztBQUlKO0VBQ0k7O0FBR0o7RUFDSTs7QUFHSjtFQUNJOztBQUdKO0VBQ0k7RUFDQTs7QUFHSjtFQUNJOztBQUVBO0VBQ0k7RUFDQTtFQUNBOztBQUlSO0VBQ0k7O0FBR0o7RUFDSTs7QUFHSjtFQUNJOztBQUdKO0VBQ0k7O0FBSUE7RUFDSTtFQUNBOztBQUlSO0VBQ0k7RUFDQTtFQUNBOztBQUVBO0VBQ0k7O0FBR0o7RUFDSTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBRUE7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQUtaO0FBQ0E7RUFDSTtJQUNJOztFQUVBO0lBQ0k7OztBQUtaO0VBQ0k7SUFDSTs7RUFFQTtJQUNJOztFQUdKO0lBQ0k7OztBQUtaO0VBQ0k7SUFDSTtJQUNBO0lBQ0E7SUFDQTs7RUFFQTtJQUNJO0lBQ0E7SUFDQTtJQUNBO0lBQ0E7SUFDQTs7RUFHSjtJQUNJO0lBQ0E7SUFDQTs7RUFFQTtJQUNJO0lBQ0E7OztBQU1oQjtFQUNJO0lBQ0k7O0VBRUE7SUFDSTs7RUFHSjtJQUNJOzs7QUFLWjtFQUNJO0lBQ0k7O0VBR0o7SUFDSTtJQUNBOztFQUVBO0lBQ0k7SUFDQTtJQUNBOztFQUdKO0lBQ0k7SUFDQTs7RUFFQTtJQUNJO0lBQ0E7O0VBSVI7SUFDSTtJQUNBO0lBQ0E7SUFDQSxxQkFDSTs7RUFHSjtJQUNJOztFQUdKO0lBQ0k7O0VBR0o7SUFDSTs7RUFHSjtJQUNJOzs7QUFPaEI7QUFDQTtFQUNJO0VBQ0E7RUFDQTtFQUNBOzs7QUFHSjtFQUNJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7O0FBR0o7RUFDSTs7O0FBR0o7QUFDQTtFQUNJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUVBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7O0FBSUo7QUFDQTtFQUNJO0lBQ0c7O0VBR0g7SUFDSTs7O0FBSVI7QUFDQTtFQUNJO0lBQ0k7O0VBR0o7SUFDSTs7O0FBRVA7RUFDRzs7O0FBR0o7RUFDSTs7O0FBRUo7RUFDSTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7O0FBRUo7RUFDSTs7O0FBRUo7RUFDSTs7O0FBR0o7RUFDSTs7O0FBRUo7RUFDSTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7O0FBRUo7RUFDSTs7O0FBRUo7RUFDSTs7O0FBR0o7RUFDSTs7O0FBRUo7RUFDSTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7O0FBRUo7RUFDSTs7O0FBRUo7RUFDSTs7O0FBR0o7RUFDSTs7O0FBRUo7RUFDSTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7O0FBR0o7RUFDSTs7O0FBR0o7RUFDSTs7O0FBR0o7RUFDSTs7O0FBSUo7RUFDSTtJQUNJOztFQUdKO0lBQ0k7O0VBR0o7SUFDSTs7RUFHSjtJQUNJOztFQUdKO0lBQ0k7OztBQUlSO0VBQ0k7SUFDSTs7RUFHSjtJQUNJOztFQUdKO0lBQ0k7O0VBR0o7SUFDSTs7RUFHSjtJQUNJOzs7QUFHSjtFQUNJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBRUo7RUFDSTtFQUNBO0VBQ0E7RUFDQTtFQUNBOztBQUVKO0VBQ0k7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7QUFFSjtFQUNJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQUdSO0VBQ0k7RUFDQTs7O0FBRUo7RUFDSTs7O0FBRUo7QUFBQTtFQUVJOzs7QUFHSjtFQUNJO0lBQ0k7O0VBRUo7SUFDSTs7RUFFSjtJQUNJOztFQUVKO0lBQ0k7O0VBRUo7SUFDSTs7O0FBR1I7RUFDSTtJQUNJOztFQUVKO0lBQ0k7O0VBRUo7SUFDSTs7RUFFSjtJQUNJOztFQUVKO0lBQ0k7OztBQUdSO0VBQ0k7SUFDSTs7RUFFSjtJQUNJOztFQUVKO0lBQ0k7O0VBRUo7SUFDSTs7RUFFSjtJQUNJOzs7QUFHUjtFQUNJO0VBQ0E7OztBQUdKO0VBQ0k7RUFDQTs7O0FBR0o7RUFDSTs7O0FBR0o7RUFDSTs7O0FBR0o7RUFDSTtJQUNJO0lBQ0E7O0VBR0o7SUFDSTs7RUFHSjtJQUNJOzs7QUFJUjtFQUNJO0lBQ0k7SUFDQTs7RUFHSjtJQUNJOztFQUdKO0lBQ0k7OztBQUVQO0VBQ0c7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFFQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUVBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFFQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQUdKO0FBQUE7RUFFSTtFQUNBO0VBQ0E7OztBQUdKO0FBQUE7RUFFSTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQUdKO0VBQ0k7OztBQUdKO0VBQ0k7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOzs7QUFHSjtBQUFBO0VBRUk7RUFDQTtFQUNBOzs7QUFHSjtFQUNJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQUdKO0VBQ0k7RUFDQTs7O0FBR0o7RUFDSTs7O0FBR0o7RUFDSTs7O0FBR0o7RUFDSTtFQUNBOzs7QUFHSjtBQUFBO0VBRUk7OztBQUdKO0FBQUE7RUFFSTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQUdKO0FBQUE7RUFFSTs7O0FBRUo7QUFBQTtFQUVJOzs7QUFHSjtFQUVJO0FBQUE7SUFFSTs7RUFFSjtJQUNJOztFQUVKO0lBQ0k7O0VBRUo7SUFDSTs7O0FBSVI7RUFFSTtBQUFBO0lBRUk7O0VBRUo7SUFDSTs7RUFFSjtJQUNJOztFQUVKO0lBQ0k7OztBQUlSO0FBQUE7RUFFSTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFFQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQUdKO0VBQ0k7RUFDQTs7O0FBR0o7RUFDSTs7O0FBR0o7RUFDSTs7O0FBR0o7RUFDSTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQUdKO0VBQ0k7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQUdKO0VBQ0k7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOzs7QUFHSjtFQUNJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7O0FBR0o7RUFDSTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQUdKO0VBQ0k7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOzs7QUFHSjtFQUNJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7O0FBR0o7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7RUFPSTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQUdKO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtFQU1JOzs7QUFHSjtFQUNJO0VBRUE7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQUdKO0FBQUE7RUFFSTtFQUNBO0VBQ0E7RUFDQTs7O0FBR0o7RUFDSTtFQUVBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQUdKO0FBQ0E7RUFDSTtFQUVBOzs7QUFHSjtFQUNJO0VBRUE7OztBQUdKO0FBQUE7RUFFSTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFFQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQUdKO0VBQ0k7RUFDQTtFQUNBO0VBRUE7RUFDQTtFQUNBOzs7QUFHSjtFQUNJO0VBQ0E7RUFDQTtFQUVBO0VBQ0E7RUFDQTs7O0FBR0o7RUFDSTtFQUVBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7O0FBR0o7RUFDSTtFQUVBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOzs7QUFHSjtBQUFBO0VBRUk7RUFDQTtFQUVBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7O0FBR0o7RUFDSTtFQUNBO0VBRUE7RUFDQTs7O0FBR0o7RUFDSTtFQUVBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQUdKO0FBQ0E7QUFBQTtBQUFBO0VBR0k7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBRUE7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFFQTtFQUNBO0VBRUE7RUFDQTtFQUNBOzs7QUFHSjtFQUNJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQUdKO0FBQUE7QUFBQTtFQUdJO0VBQ0E7RUFDQTtFQUVBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQUdKO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtFQU1JO0VBQ0E7RUFDQTtFQUVBO0VBQ0E7RUFDQTtFQUNBOzs7QUFJSjtBQUNBO0FBQUE7QUFBQTtFQUdJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUVBO0VBQ0E7RUFDQTtFQUVBO0VBQ0E7RUFFQTtFQUVBOzs7QUFHSjtBQUFBO0FBQUE7RUFHSTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBRUE7OztBQUdKO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtFQU1JO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFFQTs7O0FBR0o7QUFDQTtBQUFBO0FBQUE7QUFBQTtFQUlJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUVBO0VBQ0E7RUFDQTtFQUVBO0VBQ0E7RUFFQTtFQUVBOzs7QUFHSjtBQUFBO0FBQUE7QUFBQTtFQUlJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFFQTs7O0FBR0o7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtFQVFJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFFQTs7O0FBR0o7QUFDQTtBQUFBO0FBQUE7RUFHSTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFFQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFFQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7O0FBR0o7RUFDSTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7O0FBR0o7RUFDSTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7O0FBR0o7QUFDQTtBQUFBO0FBQUE7RUFHSTtFQUNBOzs7QUFHSjtFQUNJO0VBQ0E7RUFDQTs7O0FBR0o7RUFDSTtFQUNBO0VBQ0E7OztBQUdKO0FBQ0E7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0VBTUk7RUFDQTtFQUNBOzs7QUFHSjtFQUNJO0VBQ0E7RUFDQTs7O0FBR0o7QUFBQTtFQUVJO0VBQ0E7RUFDQTs7O0FBR0o7QUFDQTtFQUNJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOzs7QUFHSjtFQUNJO0VBQ0E7RUFDQTtFQUVBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUVBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQUdKO0FBQUE7RUFFSTtFQUNBO0VBQ0E7RUFFQTs7O0FBR0o7RUFDSTs7O0FBSUo7QUFDQTtFQUNJO0VBRUE7RUFDQTtFQUVBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFFQTtFQUVBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBRUE7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUVBO0VBQ0E7RUFDQTtFQUVBO0VBQ0E7RUFDQTs7O0FBR0o7RUFDSTtFQUVBOzs7QUFHSjtFQUNJO0VBRUE7OztBQUdKO0VBQ0k7OztBQUdKO0VBQ0k7RUFDQTs7O0FBR0o7RUFDSTs7O0FBR0o7RUFDSTs7O0FBR0o7RUFDSTtFQUNBOzs7QUFHSjtBQUFBO0VBRUk7OztBQUdKO0VBQ0k7OztBQUdKO0VBQ0k7OztBQUdKO0FBQUE7RUFFSTtFQUNBO0VBRUE7RUFDQTs7O0FBR0o7QUFBQTtFQUVJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBRUE7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7O0FBR0o7RUFDSTtFQUNBOzs7QUFHSjtBQUFBO0VBRUk7RUFDQTtFQUVBO0VBQ0E7RUFDQTs7O0FBR0o7QUFBQTtFQUVJO0VBQ0E7OztBQUdKO0FBQUE7RUFFSTtFQUNBO0VBQ0E7RUFDQTs7O0FBR0o7RUFDSTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFFQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7O0FBR0o7RUFDSTtFQUNBOzs7QUFHSjtFQUNJO0VBQ0E7RUFDQTtFQUNBO0VBRUE7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBRUE7RUFDQTs7O0FBR0o7QUFBQTtFQUVJO0VBQ0E7OztBQUdKO0FBQUE7RUFFSTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBRUE7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUVBO0VBQ0E7RUFDQTs7O0FBR0o7QUFBQTtFQUVJO0VBQ0E7RUFDQTtFQUVBO0VBQ0E7RUFDQTs7O0FBR0o7QUFBQTtFQUVJO0VBQ0E7RUFDQTtFQUVBO0VBQ0E7RUFDQTs7O0FBR0o7QUFDQTtFQUNJO0VBQ0E7RUFFQTtFQUNBOzs7QUFHSjtFQUNJO0VBQ0E7RUFFQTtFQUNBOzs7QUFHSjtBQUFBO0FBQUE7RUFHSTtFQUNBO0VBRUE7RUFDQTs7O0FBR0o7QUFBQTtBQUFBO0VBR0k7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUVBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQUdKO0FBQUE7QUFBQTtFQUdJO0VBQ0E7RUFDQTtFQUVBO0VBQ0E7RUFDQTs7O0FBR0o7QUFBQTtBQUFBO0VBR0k7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOzs7QUFJSjtBQUNBO0VBQ0k7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFFQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7O0FBR0o7RUFDSTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOzs7QUFHSjtFQUNJO0VBQ0E7RUFDQTtFQUNBOzs7QUFHSjtFQUNJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUVBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7O0FBR0o7RUFDSTtFQUNBO0VBRUE7RUFDQTs7O0FBR0o7QUFBQTtFQUVJO0VBQ0E7RUFDQTtFQUNBO0VBRUE7RUFDQTs7O0FBR0o7QUFDQTtBQUFBO0VBRUk7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7O0FBR0o7QUFBQTtFQUVJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBRUE7RUFDQTs7O0FBR0o7RUFDSTs7O0FBR0o7QUFBQTtFQUVJOzs7QUFHSjtBQUNBO0FBQUE7QUFBQTtFQUdFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQUdGO0VBQ0k7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7O0FBR0o7QUFBQTtFQUVJO0VBQ0E7RUFDQTs7O0FBR0o7QUFBQTtFQUVJO0VBQ0E7RUFDQTs7O0FBR0o7QUFBQTtBQUFBO0FBQUE7RUFJSTs7O0FBR0o7QUFDQTtBQUFBO0VBRUU7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUVBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUVBOzs7QUFJRjtBQUFBO0VBRUU7RUFDQTs7O0FBR0Y7QUFBQTtFQUVFO0VBQ0E7OztBQUdGO0FBQ0E7QUFBQTtBQUFBO0VBR0U7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBRUE7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOzs7QUFLRjtBQUNBO0VBQ0k7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOzs7QUFHSjtBQUFBO0VBRUk7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQUdKO0VBQ0k7RUFDQTtFQUVBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOzs7QUFHSjtFQUNJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUVBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7O0FBR0o7QUFBQTtFQUdJO0VBQ0E7RUFFQTtFQUNBOzs7QUFHSjtFQUNJOzs7QUFHSjtFQUNJO0VBQ0E7OztBQUdKO0FBQUE7QUFBQTtFQUdJO0VBRUE7RUFDQTtFQUNBOzs7QUFHSjtBQUFBO0VBRUk7RUFDQTtFQUNBO0VBRUE7RUFDQTtFQUNBOzs7QUFHSjtFQUNJO0VBQ0E7RUFDQTs7O0FBR0o7RUFDSTtFQUNBOzs7QUFHSjtBQUFBO0FBQUE7RUFHSTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBRUE7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOzs7QUFHSjtFQUNJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUVBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7O0FBR0o7QUFBQTtBQUFBO0VBR0k7RUFFQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQUdKO0VBQ0k7RUFFQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQUdKO0FBQUE7RUFFSTtFQUNBOzs7QUFHSjtFQUNJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUVBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7O0FBSUo7QUFDQTtFQUNJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQUdKO0VBQ0k7RUFDQTtFQUNBOzs7QUFHSjtBQUNBO0VBQ0k7SUFDSTs7RUFHSjtJQUNJOzs7QUFJUjtBQUNBO0VBQ0k7SUFDSTs7RUFHSjtJQUNJOzs7QUFJUjtBQUNBO0VBQ0k7SUFDSTtJQUNBO0lBQ0E7O0FBR0o7RUFDQTtJQUNJO0lBQ0E7O0VBR0o7SUFDSTtJQUNBOztFQUdKO0lBQ0k7SUFDQTs7RUFHSjtJQUNJOztFQUdKO0lBQ0k7SUFDQTs7RUFHSjtJQUNJO0lBQ0E7O0VBR0o7SUFDSTs7QUFHUjtBQUVJO0VBQ0E7QUFBQTtJQUVJO0lBQ0E7O0FBR0o7RUFDQTtJQUNJO0lBQ0E7O0VBR0o7SUFDSTs7QUFHSjtFQUNBO0lBQ0k7SUFDQTs7RUFHSjtJQUNJOztBQUdKO0VBQ0E7SUFDSTtJQUNBOztBQUdKO0VBQ0E7QUFBQTtBQUFBO0FBQUE7SUFJSTs7RUFHSjtJQUNJOztFQUdKO0lBQ0k7O0VBR0o7QUFBQTtJQUVJOztBQUdKO0VBQ0E7QUFBQTtBQUFBO0lBR0k7O0VBR0o7SUFDSTs7QUFHSjtFQUNBO0lBQ0k7O0FBR0o7RUFDQTtJQUNJOztFQUdKO0FBQUE7QUFBQTtJQUdJO0lBQ0E7O0VBR0o7SUFDSTtJQUNBOztFQUlKO0lBQ0k7O0FBR0o7RUFDQTtBQUFBO0FBQUE7SUFHSTtJQUNBOztBQUdKO0VBQ0E7QUFBQTtJQUVJOztBQUdKO0VBQ0E7QUFBQTtJQUVFO0lBQ0E7O0FBR0Y7RUFDQTtBQUFBO0FBQUE7SUFHRTtJQUNBOzs7QUFJTjtBQUNBO0VBQ0k7SUFDSTtJQUNBO0lBQ0E7O0FBR0o7RUFDQTtJQUNJO0lBQ0E7O0VBR0o7SUFDSTtJQUNBOztFQUdKO0lBQ0k7SUFDQTs7RUFHSjtJQUNJOztFQUdKO0lBQ0k7SUFDQTs7RUFHSjtJQUNJO0lBQ0E7O0VBR0o7SUFDSTs7QUFHSjtFQUNBO0FBQUE7SUFFSTtJQUNBOztBQUdKO0VBQ0E7QUFBQTtJQUVJO0lBQ0E7O0VBR0o7SUFDSTs7QUFHSjtFQUNBO0FBQUE7SUFFSTtJQUNBOztFQUdKO0lBQ0k7O0FBR0o7RUFDQTtJQUNJO0lBQ0E7O0FBR0o7RUFDQTtBQUFBO0FBQUE7QUFBQTtJQUlJOztFQUdKO0lBQ0k7O0VBR0o7SUFDSTs7RUFHSjtBQUFBO0lBRUk7O0FBR0o7RUFDQTtBQUFBO0FBQUE7SUFHSTs7RUFHSjtJQUNJOztBQUdKO0VBQ0E7SUFDSTs7QUFHSjtFQUNBO0FBQUE7SUFF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O0VBQ0U7RUFDQTs7QUFDQTtFQUNFOztBQU1WO0VBQ0U7O0FBQ0E7RUFDRTtFQUNBOztBQUlKO0VBQ0U7O0FBQ0E7RUFDRTs7QUFLRjtFQUNFOztBQUtGO0VBQ0U7O0FBRUY7RUFDRTtFQUNBOztBQUVGO0VBQ0U7O0FBS0Y7RUFDRTs7QUFJSjtFQUNFOztBQUNBO0VBQ0U7RUFDQTtFQUNBOztBQUVGO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7O0FBS0Y7RUFDRTs7QUFDQTtFQUNFO0VBQ0E7RUFDQTs7QUFJRjtFQUNFOztBQUtKO0VBQ0U7O0FBQ0E7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQSxrQjlEN2hETTs7QThEa2lEVjtFQUNFLGtCOUR6aURhO0U4RDBpRGIsTzlEcGlEUTtFOERxaURSO0VBQ0E7RUFDQTtFQUNBOztBQUNBO0VBQ0U7O0FBR0Y7RUFDRSxPOUQ5aURNO0U4RCtpRE4sWTlEcGpEWTtFOERxakRaLGM5RHJqRFk7RThEc2pEWjs7QUFNSjtFQUNFOztBQUVGO0VBQ0U7OztBQUtOO0VBQ0U7RUFDQSIsImZpbGUiOiJmaWxlOi8vL1VzZXJzL3BlZHJvcml2ZXJhL0RvY3VtZW50cy9HaXRIdWIvcTQtYmxhbmtfdGVtcGxhdGUvY3NzL2RlbGVrbG9naXN0aWNzMjAyNWNvcnAvZ2xvYmFsX21hc3Rlci5jc3MifQ== */