:root {
  --header-height: 65px;
  --secondary-nav-height: 70px;
  --sticky-header-height: var(--header-height);
}
@media screen and (min-width: 1040px) {
  :root {
    --sticky-header-height: calc(
      var(--header-height) + var(--secondary-nav-height)
    );
  }
}
@media screen and (min-width: 1179px) {
  :root {
    --secondary-nav-height: 50px;
  }
}
@media screen and (min-width: 1231px) {
  :root {
    --header-height: 51px;
  }
}

/* ==================================
 ------------ 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: #585555;
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1;
  -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;
  margin-bottom: 60px;
  line-height: 1;
}
@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: 36px;
  font-weight: 700;
  line-height: 46px;
  margin-bottom: 30px;
  color: #001753;
}
@media only screen and (max-width: 768px) {
  h2,
.h2 {
    font-size: 27px;
  }
}

.module-first-heading h2.module_title {
  font-size: 4.4rem;
}

h3,
.h3 {
  font-weight: 700;
  font-size: 28px;
  line-height: 34px;
  margin: 24px 0 16px 0;
  color: #001753;
}

h4,
.h4 {
  font-size: 1.6rem;
  margin-top: 24px;
  margin-bottom: 16px;
  font-weight: bold;
  text-transform: uppercase;
}

h5,
.h5 {
  font-size: 1.28rem;
  margin-bottom: 12.8px;
  text-transform: uppercase;
}

a {
  text-decoration: none;
  color: #0567e8;
}
a:hover {
  color: #002c98;
}

p {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #001753;
}

/* ------------ 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;
  padding-left: 30px;
  display: inline-block;
  color: #001753;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
input[type=checkbox] + label::before, input[type=radio] + label::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid #0567e8;
  margin-right: 8px;
  line-height: 1;
  position: absolute;
  left: 0;
  top: 3px;
  border-radius: 2px;
}
input[type=checkbox]:checked + label::before, input[type=radio]:checked + label::before {
  background-color: #0567e8;
  background-image: url("../design/svg/checked-white.svg");
  background-size: 9px 7px;
  background-repeat: no-repeat;
  background-position: center center;
}
input[type=radio] + label::before {
  border-radius: 100%;
  background-image: url("../design/svg/checked-radio.svg") !important;
  background-size: 8px 8px !important;
  background-position: center left 4px !important;
}
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: 10px 20px;
  background: transparent;
  border: 1px solid #404655;
  color: #001753;
  border-radius: 5px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.input::-ms-clear,
.textarea::-ms-clear,
.dropdown::-ms-clear,
.upload::-ms-clear,
.submit::-ms-clear,
.button::-ms-clear {
  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: #0045d0;
  background: #0045d0;
  color: #fff;
  min-width: 165px;
  text-align: center;
  text-transform: capitalize;
  font-weight: 700;
  font-size: 14px;
  line-height: 16.41px;
  border-radius: 5px;
  padding: 13px 28px;
  box-sizing: border-box;
}
.button:hover, .button:focus {
  color: #fff;
  background: #002c98;
  border-color: #002c98;
}
.button:focus {
  outline-color: #0567e8 !important;
}
.button--inverted {
  background: #0567e8;
  border-color: #0567e8;
}
.button--inverted:hover, .button--inverted:focus {
  border-color: #0045d0;
  background: #0045d0;
}
.button--inverted:focus {
  outline-color: #0045d0 !important;
}
.button--inverted.js--disabled {
  background: #fff;
  border-color: #0045d0;
  color: #0045d0;
}
.button--dark {
  border-color: #fff;
  background-color: #fff;
  color: #0045d0;
}
.button--dark:hover, .button--dark:focus {
  background: #0567e8;
  border-color: #0567e8;
  color: #fff;
}
.button--dark:focus {
  outline-color: #0567e8 !important;
}
.button--meeting {
  font-size: 14px;
  background-color: #effcf9;
  border-color: #f1af0f;
  color: #0045d0;
  font-weight: 700;
  text-transform: capitalize;
}
.button--meeting:hover, .button--meeting:focus {
  background-color: #effcf9;
  border-color: #dc9e27;
  color: #283033;
}
.button--meeting:focus {
  outline-color: #dc9e27 !important;
}
.button--cta {
  border: 0 none;
  padding: 0 25px 0 0;
  font-size: 1.4rem;
  background: transparent;
  color: #0567e8;
  position: relative;
  min-width: auto;
}
.button--cta:hover, .button--cta:focus {
  color: #0045d0;
  background: transparent;
  outline-color: #0045d0 !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;
}

.dropdown {
  background: transparent url("../design/svg/dropdown_pets.svg") no-repeat right 20px center;
  background-size: 12px 6.5px;
  padding-right: 44px;
  min-width: 120px;
}
.dropdown::-ms-expand {
  display: none;
}

/* ------------ TABLES ------------ */
.table {
  width: 100%;
  margin: 16px 0;
}
.table caption {
  caption-side: bottom;
  font-size: 1.2rem;
  border-top: 1px solid #effcf9;
  border-bottom: 1px solid #effcf9;
  padding: 5px;
}
.table thead {
  background-color: #0567e8;
  color: #fff;
}
.table thead th {
  text-align: left;
  text-transform: capitalize;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}
.table tbody td {
  color: #001753;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.table tbody tr:nth-child(odd) {
  background-color: #fff;
}
.table tbody tr:nth-child(even) {
  background-color: #effcf9;
}
.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: #effcf9;
}
.table--headless tr:first-child {
  background-color: #0045d0;
  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 #0045d0;
    border-bottom: 2px solid #0045d0;
  }
  .table--responsive td {
    display: block;
  }
  .table--responsive td::before {
    content: attr(data-heading) ": ";
    font-weight: bold;
  }
}
.table--analyst thead {
  background-color: transparent;
  color: #001753;
}
.table--analyst thead th {
  color: inherit;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  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: #effcf9;
}
.table--analyst tbody tr:nth-child(odd),
.table--analyst tbody tr:nth-child(even) {
  background-color: transparent;
}
.table--analyst tbody th {
  color: #585555;
}
.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: #effcf9;
}

.highcharts-data-table .table tbody th {
  color: #001753;
  text-align: left;
}

.highcharts-data-table .table tbody td {
  text-transform: capitalize;
  color: #001753;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

/* --------- SPECIAL BOXES -------- */
.code {
  margin: 32px 0;
  padding: 20px 15px;
  background: #effcf9;
  border-left: 3px solid rgba(0, 69, 208, 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: #effcf9;
  border-left: 3px solid rgba(5, 103, 232, 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";
}

/* --------- MODAL WINDOWS -------- */
.definition-popup.fancybox-content,
.disclaimer-popup.fancybox-content {
  max-width: 800px;
}
.definition-popup_title,
.disclaimer-popup_title {
  font-size: 2.4rem;
}
.definition-popup_heading,
.disclaimer-popup_heading {
  font-weight: 600;
}
.definition-popup_content,
.disclaimer-popup_content {
  margin-top: 25px;
  line-height: 1.3;
}

/* ==================================
 -------- 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: "\ef3e";
}
.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: url("../design/svg/archieved/presentation-pets.svg");
}
.q4icons .module_presentation-link .q4icons_icon::before {
  content: url("../design/svg/archieved/presentation-pets.svg");
}
.q4icons .module_presentation-link:hover .q4icons_icon::before {
  content: url("../design/svg/archieved/presentation-pets-hover.svg");
}
.q4icons .module_link-download .q4icons_icon::before {
  content: "\e910";
}
.q4icons .module_link-sec .q4icons_icon::before {
  content: url("../design/svg/sec_icons/xbrl_icon.svg");
}
.q4icons .module_link-sec:hover .q4icons_icon::before {
  content: url("../design/svg/sec_icons/xbrl_icon_hover.svg");
}
.q4icons .module_link-sec[href$=".pdf"] .q4icons_icon::before {
  content: url("../design/svg/sec_icons/pdf_icon.svg");
}
.q4icons .module_link-sec[href$=".pdf"]:hover .q4icons_icon::before {
  content: url("../design/svg/sec_icons/pdf_icon_hover.svg");
}
.q4icons .module_link-sec[href$=".rtf"] .q4icons_icon::before {
  content: url("../design/svg/sec_icons/rtf_icon.svg");
}
.q4icons .module_link-sec[href$=".rtf"]:hover .q4icons_icon::before {
  content: url("../design/svg/sec_icons/rtf_icon_hover.svg");
}
.q4icons .module_link-sec[href$=".rtf"]:hover .q4icons_icon::before {
  content: url("../design/svg/sec_icons/rtf_icon.svg");
}
.q4icons .module_link-sec[href$=".xls"] .q4icons_icon::before {
  content: url("../design/svg/sec_icons/xls_icon.svg");
}
.q4icons .module_link-sec[href$=".xls"]:hover .q4icons_icon::before {
  content: url("../design/svg/sec_icons/xls_icon_hover.svg");
}
.q4icons .module_link-sec[href$=".zip"] .q4icons_icon::before {
  content: url("../design/svg/sec_icons/zip_icon.svg");
}
.q4icons .module_link-sec[href$=".zip"]:hover .q4icons_icon::before {
  content: url("../design/svg/sec_icons/zip_icon_hover.svg");
}
.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: #0045d0;
}

.background--alt-brand {
  background-color: #0567e8;
}

.background--dark {
  background-color: #283033;
}

.background--light {
  background-color: #fff;
}

.background--grey {
  background-color: #effcf9;
}

.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: #0045d0;
}

.color--dark {
  color: #283033;
}

.color--grey {
  color: #effcf9;
}

.color--success {
  color: #006613;
}

.color--error {
  color: #b72121;
}

.dark {
  color: #fff;
}
.dark a {
  color: #fff;
}

/* ==================================
 --------- 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(-100%, -50%);
  margin-left: -5px;
}
.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: #0567e8;
  cursor: pointer;
}
.module_add-to-calendar-reveal:hover {
  color: #0045d0;
}
.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: 12px;
  line-height: 14.06px;
  font-weight: 400;
  color: #001753;
}
.module_error-container {
  color: #b72121;
  display: block;
  margin-bottom: 30px;
}
.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 {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #001753;
}
.module_headline-link {
  color: #001753;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
}
.module_headline-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
  color: #001753;
}
.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_introduction p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.module_introduction p.module_required-text {
  color: #001753;
  font-size: 12px;
  line-height: 14.06px;
}
.module_item {
  padding-top: 30px;
  padding-bottom: 10px;
}
.module_item ~ .module_item {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.module_label {
  display: inline-block;
  margin-bottom: 5px;
  font-size: 1.4rem;
}
.module_label + .module_required {
  font-size: 1.4rem;
}
.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.module_links--stack > *,
.module_links.module_links--stack li,
.module_links.module_links--stack .module_presentation {
  display: block;
}
.module_link {
  display: inline-block;
  vertical-align: middle;
  margin: 0 15px 10px 0;
  font-weight: 700;
  font-size: 14px;
  line-height: 16.41px;
  text-transform: capitalize;
}
.module_link:hover {
  text-decoration: none;
}
.module_link > .module_link-text, .module_link > i, .module_link > span {
  vertical-align: middle;
}
.module_link[style="DISPLAY:block;"], .module_link[style="display: block;"] {
  display: inline-block !important;
}
.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 #0045d0;
  color: #585555;
  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: #0045d0;
  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;
}
.module_options-label {
  text-transform: capitalize;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #001753;
}
@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: #585555;
}
.module_pager a[href] {
  color: #0045d0;
}
.module_reminder .module_label {
  margin-right: 10px;
}
.module_reminder.js--reminded {
  display: none;
}
.module_required {
  color: #585555;
}
.module_required-text {
  font-size: 1.3rem;
  color: #585555;
}
.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: 19px 14px;
  border: 1px solid #404655;
  border-radius: 5px;
  background-color: transparent;
  font-family: inherit;
  font-size: 12px;
  line-height: 14.06px;
  font-weight: 400;
  color: #404655;
}
.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: #283033 !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 #0567e8;
  background: transparent;
}
.module_dropdown {
  background: transparent 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_body h1 {
  display: none;
}
.module-details .module_date-time {
  color: #001753;
  margin-bottom: 15px;
}
.module-disclaimer {
  padding: 20px 0;
}
.module-disclaimer_link {
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 0;
}

/* ------ As Reported ------ */
.module-as-reported_table-subheading-row {
  background-color: #effcf9;
  text-align: left;
}
.module-as-reported_table-subheading-row th::before {
  display: none !important;
}
.module-as-reported_table tbody th {
  color: #000;
  text-align: left;
}
.module-as-reported_table tbody td {
  text-align: right;
}
.module-as-reported_table tbody td.child {
  text-align: left;
}
.module-as-reported_table tbody td.child span.dtr-title {
  display: block;
}
.module-as-reported_table tbody td.child span.dtr-title span:not(:last-of-type) {
  display: block;
  padding: 0 0 4px 0;
}
.module-as-reported_table tbody td.child span.dtr-data {
  display: block;
}
.module-as-reported_table tbody tr td :nth-child(1) {
  max-width: 470px;
}
.module-as-reported_table thead th:not(:first-of-type) {
  text-align: right;
}
.module-as-reported_table .dtr-details .dtr-title {
  padding: 5px 5px 5px 0;
}
.module-as-reported_table .dtr-details .dtr-title::after {
  content: ": ";
}
.module-as-reported_table .dtr-details .dtr-data {
  padding: 5px 0;
}
.module-as-reported_table-header span {
  display: block;
  padding: 5px 0;
}
.module-as-reported-chart .form-group {
  margin-top: 20px;
}
.module-as-reported-chart_content > div:first-of-type {
  padding-left: 0;
}
@media only screen and (max-width: 768px) {
  .module-as-reported-chart_content > div:not(:first-of-type) {
    padding-left: 0;
    margin-top: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .module-as-reported-chart_radio-group {
    margin-bottom: 10px;
  }
}
.module-as-reported-chart_chart-controls.form-group {
  margin: 20px 0 20px -20px;
}
@media only screen and (max-width: 768px) {
  .module-as-reported-chart_chart-controls.form-group {
    margin-top: 30px;
  }
}
.module-as-reported-chart_chart-controls.form-group button,
.module-as-reported-chart_chart-controls.form-group input {
  width: 50%;
  min-width: 50px;
  padding: 13px 0;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .module-as-reported-chart_chart-controls.form-group button,
.module-as-reported-chart_chart-controls.form-group input {
    width: 100%;
  }
}
.module-as-reported-chart_chart-controls.form-group input[type=radio] + label {
  padding-right: 20px;
  margin-bottom: 10px;
}
.module-as-reported-chart_form-controls button {
  margin: 0 10px 10px 0;
}
.module-as-reported-chart_period-list {
  width: 100%;
}
.module-as-reported-chart_period-list td {
  padding: 0;
}
@media only screen and (max-width: 480px) {
  .module-as-reported-chart_period-list td {
    width: 100%;
    display: block;
  }
}
.module-as-reported-chart_period-list select {
  width: 100%;
  margin-bottom: 0;
}
.module-as-reported-chart_period-list-periods {
  vertical-align: top;
}
@media screen and (min-width: 480px) {
  .module-as-reported-chart_period-list-periods > div:nth-child(2) {
    margin-bottom: 10px;
  }
}
.module-as-reported-chart_period-list-arrows {
  vertical-align: middle;
  text-align: center;
}
@media only screen and (max-width: 480px) {
  .module-as-reported-chart_period-list-arrows > div {
    display: inline-block;
  }
}
.module-as-reported-chart_period-list-arrows button {
  font-family: "q4-icons" !important; /* 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;
  text-align: center;
  font-size: 2rem;
  display: block;
  margin: 0 auto;
}
.module-as-reported-chart_period-list-arrows .move::before {
  content: "\edc8";
}
@media only screen and (max-width: 480px) {
  .module-as-reported-chart_period-list-arrows .move::before {
    content: "\edc9";
  }
}
.module-as-reported-chart_period-list-arrows .remove::before {
  content: "\edca";
}
@media only screen and (max-width: 480px) {
  .module-as-reported-chart_period-list-arrows .remove::before {
    content: "\edc7";
  }
}
.module-as-reported-chart_chart {
  border: 1px solid #e1e1e1;
  min-height: 500px;
  border-radius: 6px;
  padding: 19px;
  position: relative;
  -webkit-box-shadow: inset 0 1px 1px #666;
  box-shadow: inset 0 1px 1px #666;
}
@media screen and (min-width: 480px) {
  .module-as-reported-chart_chart {
    padding-left: 20px;
  }
}
.module-as-reported-chart_chart table tbody th {
  color: #000;
  text-align: left;
}
.module-as-reported-chart_chart table tbody td {
  text-align: right;
}
.module-as-reported-chart_chart table tbody td.child {
  text-align: left;
}
.module-as-reported-chart_chart table tbody td.child span.dtr-title {
  display: block;
}
.module-as-reported-chart_chart table tbody td.child span.dtr-title span:not(:last-of-type) {
  display: block;
  padding: 0 0 4px 0;
}
.module-as-reported-chart_chart table tbody td.child span.dtr-data {
  display: block;
}
.module-as-reported-chart_chart table tbody tr td :nth-child(1) {
  max-width: 470px;
}
.module-as-reported-chart_chart table thead th:not(:first-of-type) {
  text-align: right;
}
.module-as-reported-chart_chart table .dtr-details .dtr-title {
  padding: 5px 5px 5px 0;
}
.module-as-reported-chart_chart table .dtr-details .dtr-title::after {
  content: ": ";
}
.module-as-reported-chart_chart table .dtr-details .dtr-data {
  padding: 5px 0;
}
.module-as-reported-chart_chart table-header span {
  display: block;
  padding: 5px 0;
}
.module-as-reported-chart_chart-print {
  position: absolute;
  top: 10px;
  right: 10px;
}
.module-as-reported-chart_chart-print > div {
  padding: 5px;
  margin: 10px 2px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.module-as-reported-chart_chart-legend {
  width: 100%;
  border: none;
  float: none;
  height: auto;
  margin: 10px 5px;
}
.module-as-reported-chart_chart-legend-square {
  width: 9px;
  height: 9px;
  float: left;
  border: 1px solid #ccc;
  margin: 7px 17px 0 5px;
}
.module-as-reported-chart_chart-legend-title {
  margin-top: 5px;
}
.module-as-reported-chart select {
  width: 100%;
  margin-bottom: 10px;
}
.module-as-reported-chart label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}
.module-as-reported-chart button.button.active {
  background: #0567e8;
  border-color: #0567e8;
  color: #fff;
}
.module-as-reported-chart button.button[disabled] {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.65;
}

/* - Investment Calculator Widget - */
.module-calculator p {
  font-size: 2rem;
}
.module-calculator .js--loading::after {
  left: auto;
  margin: 10px 0;
}
.module-calculator_input {
  display: inline-block;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .module-calculator_input {
    display: block;
    text-align: left;
  }
}
.module-calculator_input:not(:last-of-type) {
  margin-right: 20px;
  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: inline-block;
  text-transform: capitalize;
  margin-right: 5px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #001753;
}
@media only screen and (max-width: 768px) {
  .module-calculator_input label {
    display: block;
  }
}
.module-calculator_input input[type=text] {
  border: 1px solid #404655;
  display: inline-block;
  max-width: 160px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  padding: 10px 19px;
  color: #001753;
}
@media only screen and (max-width: 768px) {
  .module-calculator_input input[type=text] {
    max-width: 100%;
  }
}
.module-calculator_input input[type=text]#calculatorAmount {
  max-width: 120px;
}
@media only screen and (max-width: 768px) {
  .module-calculator_input input[type=text]#calculatorAmount {
    max-width: 100%;
  }
}
.module-calculator_input input[type=text].hasDatepicker {
  width: 160px;
  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: #0045d0;
  cursor: pointer;
  padding-right: 10px;
}
.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 #0045d0;
    border-bottom: 2px solid #0045d0;
  }
  .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;
}

/* - Committee Composition Widget - */
.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 #ccc;
  font-weight: normal;
  color: #001753;
}
.module-committee .module_item {
  padding: 0;
  border-bottom: 1px solid #ccc;
}
@media only screen and (max-width: 768px) {
  .module-committee .module_item {
    border-bottom: none;
  }
}
.module-committee .module_item ~ .module_item {
  border: 0;
  border-bottom: 1px solid #ccc;
}
@media only screen and (max-width: 768px) {
  .module-committee .module_item ~ .module_item {
    border-bottom: none;
  }
}
.module-committee .module_items-container {
  padding: 15px;
  margin: 0 0 15px 0;
  background: transparent;
}
.module-committee .grid_col {
  padding: 20px 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);
}
@media only screen and (max-width: 768px) {
  .module-committee_category:first-child .module_item:nth-child(2) {
    display: none;
  }
  .module-committee_category:first-child .module_item:nth-child(6) {
    display: none;
  }
}
.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: #0045d0;
}
.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;
}

table.dataTable.dtr-inline.collapsed > tbody .dtr-details .dtr-title {
  padding: 5px 5px 5px 0;
}
table.dataTable.dtr-inline.collapsed > tbody .dtr-details .dtr-title::after {
  padding: 5px 5px 5px 0;
}
table.dataTable.dtr-inline.collapsed > tbody .dtr-details .dtr-data {
  padding: 5px 0;
}
table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control::before,
table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control::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: "\ed5d";
  font-size: 80%;
  border: 0;
  box-shadow: unset;
  background-color: unset;
  color: #0045d0;
  left: 8px;
  transform: translateY(-50%);
  margin-top: 0;
}
table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td.dtr-control::before,
table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th.dtr-control::before {
  content: "\ed5e";
  background-color: unset;
}
table.dataTable.dtr-inline.collapsed > tbody > tr.child ul.dtr-details {
  display: block;
}
table.dataTable.dtr-inline.collapsed > tbody > tr > td.child {
  padding-left: 30px;
  padding-right: 30px;
}

/* - Deposit Loan Widget - */
.module-loan .disclaimer_link {
  display: block;
}
.module-loan_table .dtr-title::after {
  content: ":";
}
.module-loan_table a {
  text-decoration: underline;
}
.module-loan_table-subheading-row {
  background-color: #effcf9;
}
.module-loan_table-row-label {
  text-align: left;
}

.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: #585555;
  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;
}
.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: #0045d0 !important;
  color: #fff;
}
.diversity-matrix table tr .bod-light {
  background-color: #effcf9 !important;
}

.mobile-total {
  display: none;
}

.diversity-matrix .table--responsive td::before {
  display: none !important;
}

@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;
  }
  .gender td {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .mobile-hide {
    display: none !important;
  }
}
@media only screen and (max-width: 480px) {
  .diversity-matrix .table--responsive thead {
    display: block;
  }
}
/* ----- 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-weight: 400;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  column-gap: 20px;
}
.module-downloads .q4icons_icon {
  position: static;
  top: 50%;
  right: 0;
}

/* --------- 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 > ul li.module_attachment.Presentation a .q4icons_icon::before {
  content: url("../design/svg/archieved/presentation-pets.svg");
}
.module-event .module_links.module_links--columns > ul li.module_attachment.Presentation a:hover .q4icons_icon::before {
  content: url("../design/svg/archieved/presentation-pets-hover.svg");
}
.module-event .module_links.module_links--columns > ul li.module_attachment.Video a .q4icons_icon::before {
  content: url("../design/svg/archieved/video-pets.svg");
}
.module-event .module_links.module_links--columns > ul li.module_attachment.Video a:hover .q4icons_icon::before {
  content: url("../design/svg/archieved/video-pets-hover.svg");
}
.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: #effcf9;
  }
}
.module-event-home .module_container--content {
  margin-bottom: 50px;
}
.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: 30px;
  margin-top: 20px;
}
.module-event-home.background--grey .module_item-wrap {
  background-color: #fff;
}
@media only screen and (max-width: 1024px) {
  .module-event-home .center-button-events {
    padding-top: 20px;
    display: flex;
    justify-content: center;
  }
}
.module-event-home .button {
  position: absolute;
  bottom: 60px;
}
.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: #effcf9;
}
.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 ~ .module_item {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 30px;
  margin-top: 20px;
}
.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: #0045d0;
}
.module-event-calendar_splash p {
  font-size: 1.4rem;
  line-height: 1.2;
}
.module-event-calendar_controls {
  padding: 20px 15px;
  background-color: #0045d0;
  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 #effcf9;
  padding-bottom: 10px;
  display: table;
  table-layout: fixed;
  width: 100%;
}
.module-event-calendar_week {
  display: table-row;
  background-color: #effcf9;
  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: #0567e8;
  color: #fff;
}
.module-event-calendar_day--event {
  cursor: pointer;
}
.module-event-calendar_day--event > span {
  background-color: #0045d0;
  color: #fff;
}
.module-event-calendar_day--adjacent-month {
  color: rgba(88, 85, 85, 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: #0045d0;
  border-radius: 3px;
}
.module-event-calendar_legend li.module-event-calendar_legend-item--current::before {
  background-color: #0567e8;
}
@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;
  }
}

/* ---------- FAQ Module ---------- */
.module-faq_question {
  margin-top: 0;
  cursor: pointer;
}
.module-faq_answer {
  padding: 15px;
  margin: 0 0 15px 0;
  background-color: transparent;
}
.module-faq_answer p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.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 rgba(0, 0, 0, 0.1);
}
.module-faq .module_item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.module-faq .module_item > h4, .module-faq .module_item > .h4 {
  margin: 0;
  padding: 0;
  color: #0567e8;
}
.module-faq .module_item > h4 button, .module-faq .module_item > .h4 button {
  all: inherit;
  width: 100%;
  padding: 20px 0;
  text-transform: none;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #001753;
}
.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;
}
.module-faq .module_item > h4 button:focus, .module-faq .module_item > .h4 button:focus {
  outline: 2px dotted grey !important;
}
.module-faq .module_item.js--active > h4, .module-faq .module_item.js--active > .h4 {
  color: #0045d0;
}
.module-faq .module_item.js--active > h4 button, .module-faq .module_item.js--active > .h4 button {
  all: inherit;
  width: 100%;
  padding: 20px 0;
  text-transform: none;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #0567e8;
}
.module-faq .module_item.js--active > h4 button::before, .module-faq .module_item.js--active > .h4 button::before {
  content: "\edba";
}
.module-faq .toggle-all {
  margin-bottom: 30px;
}
.module-faq .toggle-all .button:hover {
  color: #fff;
}

/* --- 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;
  border: 1px solid #0567e8;
}
.module-financial-year .module-financial_annual-archive .module_cover img {
  max-width: 180px;
}
@media only screen and (max-width: 1024px) {
  .module-financial-year .module-financial_annual-archive .module_cover img {
    max-width: none;
  }
}

.module-financial-year .module_item {
  padding: 0;
}
.module-financial-year .module_item ~ .module_item {
  border: none;
}
.module-financial-year .module_links {
  margin: 0;
}
.module-financial-year .module_links .module_link-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.module-financial-year .module-financial_year {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .module-financial-year .module-financial_annual-archive {
    margin-top: 25px;
  }
}
.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 h3 button:focus {
  outline: 2px dotted grey;
}
.module-financial-quarter .module_item h3 {
  text-transform: capitalize;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #001753;
}
.module-financial-quarter .module_item.js--active h3 {
  color: #0567e8;
}
.module-financial-quarter .module_item.js--active h3 button::before {
  content: "\edba";
}
.module-financial-quarter .module_links {
  background-color: transparent;
  margin: 0 0 15px 0;
  padding: 15px;
}
.module-financial-quarter .module_links > .grid_col {
  display: inline-block;
  padding-right: 20px;
}
.module-financial-quarter .module_link {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 14px;
  line-height: 16.04px;
  text-transform: none;
  color: #0045d0;
}
.module-financial-quarter .module-financial_year-text {
  padding: 0;
  margin: 0;
  color: #0567e8;
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: bold;
  cursor: pointer;
}
.module-financial-quarter .module-financial_year-text button {
  all: 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";
}
.module-financial-table .module_container--content {
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.module-financial-table table {
  width: 100%;
}
.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;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
@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 td.module-financial-table_item.visible-track[aria-label="Annual Reports"] span:last-child {
  display: none;
}
.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: 24px 15px;
  width: 25%;
}
.module-financial-table_column-year {
  text-align: center;
  user-select: none;
}
.module-financial-table_column-report {
  display: inline-block;
  position: relative;
  z-index: 2;
  background: #fff;
  text-align: left;
  color: #000;
  padding-left: 32px;
}
.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: #0567e8;
  cursor: not-allowed;
}
.module-financial-table .doc-missing {
  opacity: 0.3;
}
.module-financial-table_header {
  display: flex;
  background-color: #0567e8;
  color: #fff;
}
.module-financial-table_header-year {
  padding: 20px 15px;
  flex: 0 0 auto;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
}
.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: 18px;
  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-mashup .grid_col {
  margin-right: 0;
}
.module-financial-mashup_item {
  margin-left: 0;
  padding: 20px 20px 20px 0;
  border: 1px solid #585555;
}
.module-financial-mashup_item .grid_col .h4 {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  text-transform: capitalize;
}
.module-financial-mashup_item .grid_col > :first-child {
  margin-top: 0;
}
@media screen and (min-width: calc(768px + 1px)) {
  .module-financial-mashup .module_options {
    margin-bottom: 0;
  }
}
.module-financial-mashup .module_body {
  max-height: 300px;
  overflow: hidden;
  position: relative;
}
.module-financial-mashup .module_body h1 {
  display: none;
}
.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 .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: #effcf9;
  padding: 15px;
  margin-bottom: 1px;
}
.module-financial-mashup .module-financial-mashup_documents .module_links .module_link {
  margin: 0;
}
.module-financial-mashup .button {
  width: 100%;
  min-width: auto;
  border-bottom: 0;
  outline-offset: 2px;
  outline-color: #0045d0;
}
.module-financial-mashup .button--cta {
  width: auto;
  padding-right: 15px;
}
.module-financial-mashup .button--cta::after {
  content: "\edbe";
  font-weight: 700;
  font-size: 7px;
  line-height: 16px;
}
.module-financial-mashup .button.js--selected {
  background: #002c98;
  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 {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../design/banner/financial-bg-pets.jpeg") top -88px center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #001753;
}
@media only screen and (max-width: 768px) {
  .module-financial-latest {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../design/banner/financial-bg-pets.jpeg") center center;
    background-size: cover;
  }
}
.module-financial-latest .grid_col {
  margin-bottom: 45px;
}
.module-financial-latest .module_title {
  color: #fff;
}
.module-financial-latest .module_link {
  margin: 0;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
}
.module-financial-latest .module_link[href$=".pdf"] .q4icons_icon::before {
  content: "\e911";
}
.module-financial-latest .module_link-presentation .q4icons_icon::before {
  content: url("../design/svg/presentation-financial.svg") !important;
}
.module-financial-latest .module_link-presentation:hover .q4icons_icon::before {
  content: url("../design/svg/presentation-financial-white.svg") !important;
}
.module-financial-latest .module_link .q4icons_icon::before {
  color: #0567e8;
  display: inline-block;
  font-size: 4.5rem;
  padding: 0;
  width: 92px;
  height: 92px;
  line-height: 92px;
  text-align: center;
  background-color: #fff;
  border-radius: 100%;
  transition: background-color 0.25s ease-in-out;
}
.module-financial-latest .module_link:hover .q4icons_icon::before {
  background-color: #0567e8;
  color: #fff;
}
.module-financial-latest .module_link-text {
  display: block;
  margin: 15px 0 0;
  font-size: 1.8rem;
  text-transform: none;
}
.module-financial-latest .module-financial_type-text {
  margin-top: 20px;
  font-weight: 700;
  font-size: 48px;
  line-height: 56.25px;
}
.module-financial-latest .module-financial_year-text {
  margin-top: 3px;
  font-weight: 700;
  font-size: 26px;
  line-height: 34px;
}
@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 {
  background-color: #83ebd0;
  color: #001753;
}
.module-financial-latest .button:hover {
  background-color: #6ec3a4;
}
.module-financial-latest .button--cta:hover {
  color: #fff;
  text-decoration: underline;
}
@media only screen and (max-width: 768px) {
  .module-financial-latest .module_item > div:first-child {
    margin-bottom: 30px;
  }
}

/* ------ Formbuilder Module ------ */
.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: 12px;
  line-height: 14.06px;
  font-weight: 400;
  color: #001753;
}
.module-form_item legend {
  float: left;
  margin-bottom: 15px;
  font-size: 1.6rem;
}
.module-form_item legend ~ ul {
  clear: both;
  padding-left: 10px;
}
.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--meeting {
  padding: 0 20px !important;
  background-color: #fff;
}
.module-form--meeting .module_input[type=text],
.module-form--meeting .module_input[type=email],
.module-form--meeting textarea.module_input {
  background-color: #fff !important;
}
.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;
  width: 100% !important;
}
@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: 24px;
  font-weight: 400;
  line-height: 30px;
}
.module-form--meeting_header-intro p {
  margin: 0;
  font-size: 12px;
  line-height: 14.06px;
  color: #fff;
}
.module-form--meeting_header-logo {
  display: none !important;
}
@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: #0045d0;
  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 {
  font-size: 12px;
  line-height: 14.06px;
  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;
  font-size: 12px;
  line-height: 14.06px;
}
@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: #585555;
}
.module-form--meeting .module_dropdown {
  color: #585555;
  background-color: #fff;
}
.module-form--meeting .module_input {
  color: #585555;
}
.module-form--meeting .module_required {
  display: none;
}
.module-form--meeting .module_actions {
  margin: 0 -20px;
  padding: 20px;
  background-color: #fff;
  text-align: right;
  color: #001753;
}
.module-form--meeting .module_actions .module_link {
  color: #001753;
  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_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: #283033;
  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: #585555;
  font-weight: normal;
}
.module-glossary .module_header table a[href] {
  color: #0045d0;
}

/* ------ Financial Highlights ------ */
.module-highlights .text-warning {
  color: #b72121;
}
.module-highlights_custom-periods #sectionCustomPeriods {
  margin: 20px 0;
  background-color: #effcf9;
  border: 1px solid #ddd;
}
.module-highlights_custom-periods #sectionCustomPeriods > .grid {
  margin-left: 0;
  display: flex;
  flex-wrap: wrap;
}
.module-highlights_custom-periods #sectionCustomPeriods > .grid > .grid_col {
  padding: 20px;
  margin-right: 0;
}
.module-highlights_custom-periods #sectionCustomPeriods > .grid > .grid_col:not(:last-child) {
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .module-highlights_custom-periods #sectionCustomPeriods > .grid > .grid_col:not(:last-child) {
    border-bottom: 0;
    margin-bottom: 0;
  }
  .module-highlights_custom-periods #sectionCustomPeriods > .grid > .grid_col:first-child {
    border-right: 1px solid #ddd;
  }
  .module-highlights_custom-periods #sectionCustomPeriods > .grid > .grid_col:last-child {
    border-top: 1px solid #ddd;
  }
}
@media screen and (min-width: 1025px) {
  .module-highlights_custom-periods #sectionCustomPeriods > .grid > .grid_col:not(:last-child) {
    border-right: 1px solid #ddd;
  }
  .module-highlights_custom-periods #sectionCustomPeriods > .grid > .grid_col:last-child {
    border-top: 0;
  }
}
.module-highlights_custom-periods #sectionCustomPeriods label {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: bold;
}
.module-highlights_custom-periods-link {
  text-align: right;
}
.module-highlights_custom-periods-periods,
.module-highlights_custom-periods #columnOrderButtonsInnerPanel {
  margin-top: 1em;
}
.module-highlights_custom-periods-table {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .module-highlights_custom-periods-table .grid_col {
    margin-top: 20px;
  }
}
.module-highlights_custom-periods-arrows {
  text-align: center;
}
.module-highlights_custom-periods-heading {
  font-size: 1.7rem;
  font-weight: 700;
  display: block;
  margin-bottom: 20px;
}
.module-highlights_custom-periods ul {
  list-style: none;
  padding-inline-start: 0;
}
.module-highlights_custom-periods ul li + li {
  margin-top: 4px;
}
.module-highlights_custom-periods ul button {
  font: inherit;
  background: none;
  padding: 6px 0;
  border: 0;
  border-radius: 0;
  color: #0567e8;
  cursor: pointer;
  width: 100%;
  text-align: left;
}
.module-highlights_custom-periods select {
  padding: 5px 10px;
  width: 100%;
  min-width: 120px;
  font-size: 1.6rem;
  text-transform: unset;
}
.module-highlights_custom-periods .financial-highlights_selected-periods {
  display: block;
  min-height: 92.75px;
}
.module-highlights_custom-periods .move,
.module-highlights_custom-periods .remove {
  display: block;
  width: 100%;
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  margin-top: 5px;
  font-size: 1.4rem;
  text-transform: uppercase;
  font-weight: bold;
  color: #0045d0;
}
.module-highlights_custom-periods .move::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: "\edc8";
}
.module-highlights_custom-periods .remove::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: "\edca";
}
.module-highlights_custom-periods-button {
  text-align: right;
}
.module-highlights_custom-periods-button button {
  margin-top: 20px;
}
.module-highlights_custom-periods-button button:focus {
  outline-offset: 2px;
}
.module-highlights_custom-periods #columnOrderButtonsInnerPanel {
  display: flex;
  max-width: 300px;
}
.module-highlights_custom-periods #columnOrderButtonsInnerPanel button {
  min-width: 50%;
}
.module-highlights_custom-periods #columnOrderButtonsInnerPanel button:focus {
  outline-offset: 2px;
}
.module-highlights_custom-periods #columnOrderButtonsInnerPanel button.active {
  background-color: #0567e8;
  border-color: #0567e8;
  color: #fff;
}
.module-highlights_custom-periods #columnOrderButtonsInnerPanel button.active:focus {
  outline-color: #0045d0;
}
.module-highlights_custom-periods #columnOrderButtonsInnerPanel button.active:hover {
  background-color: transparent;
  color: #0567e8;
}
.module-highlights_table th,
.module-highlights_table td {
  text-align: left;
}
.module-highlights_table-heading-period span {
  display: block;
  white-space: nowrap;
}
.module-highlights_table-subheading-row th {
  color: #283033;
  font-weight: 600;
}
.module-highlights_table_row-label a {
  text-decoration: underline;
}
.module-highlights-charting .form-group {
  margin-top: 20px;
}
.module-highlights-charting_content > div:first-of-type {
  padding-left: 0;
}
@media only screen and (max-width: 768px) {
  .module-highlights-charting_content > div:not(:first-of-type) {
    padding-left: 0;
    margin-top: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .module-highlights-charting_radio-group {
    margin-bottom: 10px;
  }
}
.module-highlights-charting_chart-controls.form-group {
  margin: 20px 0 20px -20px;
}
@media only screen and (max-width: 768px) {
  .module-highlights-charting_chart-controls.form-group {
    margin-top: 20px;
  }
}
.module-highlights-charting_chart-controls.form-group button,
.module-highlights-charting_chart-controls.form-group input {
  width: 50%;
  min-width: 50px;
  padding: 13px 0;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .module-highlights-charting_chart-controls.form-group button,
.module-highlights-charting_chart-controls.form-group input {
    width: 100%;
  }
}
.module-highlights-charting_chart-controls.form-group input[type=radio] + label {
  padding-right: 20px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .module-highlights-charting_chart-controls > div:not(:first-of-type) {
    margin-top: 20px;
  }
}
.module-highlights-charting_form-controls button {
  margin: 0 10px 10px 0;
}
.module-highlights-charting_period-list {
  width: 100%;
}
.module-highlights-charting_period-list td {
  padding: 0;
}
@media screen and (min-width: 480px) {
  .module-highlights-charting_period-list td:first-of-type {
    width: 42%;
  }
}
@media only screen and (max-width: 480px) {
  .module-highlights-charting_period-list td {
    width: 100%;
    display: block;
  }
}
.module-highlights-charting_period-list select {
  width: 100%;
  margin-bottom: 0;
}
.module-highlights-charting_period-list-periods {
  vertical-align: top;
}
@media screen and (min-width: 480px) {
  .module-highlights-charting_period-list-periods > div:nth-child(2) {
    margin-bottom: 10px;
  }
}
.module-highlights-charting_period-list-arrows {
  vertical-align: middle;
  text-align: center;
}
@media only screen and (max-width: 480px) {
  .module-highlights-charting_period-list-arrows > div {
    display: inline-block;
  }
}
.module-highlights-charting_period-list-arrows button {
  font-family: "q4-icons" !important; /* 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;
  text-align: center;
  font-size: 2rem;
  display: block;
  margin: 0 auto;
}
.module-highlights-charting_period-list-arrows .move::before {
  content: "\edc8";
}
@media only screen and (max-width: 480px) {
  .module-highlights-charting_period-list-arrows .move::before {
    content: "\edc9";
  }
}
.module-highlights-charting_period-list-arrows .remove::before {
  content: "\edca";
}
@media only screen and (max-width: 480px) {
  .module-highlights-charting_period-list-arrows .remove::before {
    content: "\edc7";
  }
}
.module-highlights-charting_chart {
  border: 1px solid #e1e1e1;
  min-height: 500px;
  border-radius: 6px;
  padding: 19px;
  position: relative;
  -webkit-box-shadow: inset 0 1px 1px #666;
  box-shadow: inset 0 1px 1px #666;
}
@media screen and (min-width: 480px) {
  .module-highlights-charting_chart {
    padding-left: 20px;
  }
}
.module-highlights-charting_chart table tbody th {
  color: #000;
  text-align: left;
}
.module-highlights-charting_chart table tbody td {
  text-align: right;
}
.module-highlights-charting_chart table tbody td.child {
  text-align: left;
}
.module-highlights-charting_chart table tbody td.child span.dtr-title {
  display: block;
}
.module-highlights-charting_chart table tbody td.child span.dtr-title span:not(:last-of-type) {
  display: block;
  padding: 0 0 4px 0;
}
.module-highlights-charting_chart table tbody td.child span.dtr-data {
  display: block;
}
.module-highlights-charting_chart table tbody tr td :nth-child(1) {
  max-width: 470px;
}
.module-highlights-charting_chart table thead th:not(:first-of-type) {
  text-align: right;
}
.module-highlights-charting_chart table .dtr-details .dtr-title {
  padding: 5px 5px 5px 0;
}
.module-highlights-charting_chart table .dtr-details .dtr-title::after {
  content: ": ";
}
.module-highlights-charting_chart table .dtr-details .dtr-data {
  padding: 5px 0;
}
.module-highlights-charting_chart table-header span {
  display: block;
  padding: 5px 0;
}
.module-highlights-charting_chart-print {
  position: absolute;
  top: 10px;
  right: 10px;
}
.module-highlights-charting_chart-print > div {
  padding: 5px;
  margin: 10px 2px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.module-highlights-charting_chart-legend {
  width: 100%;
  border: none;
  float: none;
  height: auto;
  margin: 10px 5px;
}
.module-highlights-charting_chart-legend-square {
  width: 9px;
  height: 9px;
  float: left;
  border: 1px solid #ccc;
  margin: 7px 17px 0 5px;
}
.module-highlights-charting_chart-legend-title {
  margin-top: 5px;
}
.module-highlights-charting select {
  width: 100%;
  margin-bottom: 10px;
}
.module-highlights-charting label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}
.module-highlights-charting button.button.active {
  background: #0567e8;
  border-color: #0567e8;
  color: #fff;
}
.module-highlights-charting button.button:focus {
  border-color: #0567e8;
}
.module-highlights-charting button.button[disabled] {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.65;
}

/* ------ Insider Ownership ------ */
.module-insider-ownership_note {
  margin-bottom: 40px;
}
.module-insider-ownership_title {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
.module-insider-ownership_table,
.module-insider-ownership table {
  margin-bottom: 40px;
}
.module-insider-ownership_table a,
.module-insider-ownership table a {
  text-decoration: underline;
}
.module-insider-ownership_table thead th.text-center,
.module-insider-ownership table thead th.text-center {
  text-align: center;
}
.module-insider-ownership_table > tbody > tr.child ul.dtr-details span.dtr-title,
.module-insider-ownership table > tbody > tr.child ul.dtr-details span.dtr-title {
  min-width: 5px;
  padding: 5px 5px 5px 0;
}
.module-insider-ownership_table > tbody > tr.child ul.dtr-details span.dtr-title::after,
.module-insider-ownership table > tbody > tr.child ul.dtr-details span.dtr-title::after {
  content: ": ";
}
.module-insider-ownership_table > tbody > tr.child ul.dtr-details span.dtr-data,
.module-insider-ownership table > tbody > tr.child ul.dtr-details span.dtr-data {
  padding: 5px 0;
}
.module-insider-ownership .pagination_prev,
.module-insider-ownership .pagination_page,
.module-insider-ownership .pagination_next {
  display: inline-block;
  vertical-align: top;
  margin: 5px 0;
}
.module-insider-ownership .pagination_prev button,
.module-insider-ownership .pagination_page button,
.module-insider-ownership .pagination_next button {
  appearance: none;
  border: 1px solid #0045d0;
  color: #0045d0;
  background-color: #effcf9;
  border-radius: 3px;
  width: 35px;
  height: 35px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  cursor: pointer;
}
.module-insider-ownership .pagination_prev button:not(.js--disabled):hover,
.module-insider-ownership .pagination_page button:not(.js--disabled):hover,
.module-insider-ownership .pagination_next button:not(.js--disabled):hover {
  color: #fff;
  background-color: #0045d0;
}
.module-insider-ownership .pagination_prev button:not(.js--disabled):focus,
.module-insider-ownership .pagination_page button:not(.js--disabled):focus,
.module-insider-ownership .pagination_next button:not(.js--disabled):focus {
  color: #fff;
  background-color: #0045d0;
  outline-color: #0045d0;
}
.module-insider-ownership .pagination_prev button.btn-primary,
.module-insider-ownership .pagination_page button.btn-primary,
.module-insider-ownership .pagination_next button.btn-primary {
  color: #fff;
  background-color: #0045d0;
}
.module-insider-ownership .pagination_prev button.js--disabled,
.module-insider-ownership .pagination_page button.js--disabled,
.module-insider-ownership .pagination_next button.js--disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
.module-insider-ownership .pagination_prev button [class^=q4-icon_],
.module-insider-ownership .pagination_prev button [class*=" q4-icon_"],
.module-insider-ownership .pagination_page button [class^=q4-icon_],
.module-insider-ownership .pagination_page button [class*=" q4-icon_"],
.module-insider-ownership .pagination_next button [class^=q4-icon_],
.module-insider-ownership .pagination_next button [class*=" q4-icon_"] {
  color: inherit;
  font-size: 1rem;
  pointer-events: none;
}

.institutional-ownership_modal {
  background: none;
  border: 0;
  font: inherit;
  color: #0567e8;
  cursor: pointer;
}
.institutional-ownership_modal:hover {
  text-decoration: underline;
}
.institutional-ownership-popup .fancybox-button:focus {
  outline: 2px dotted !important;
}
.institutional-ownership_title-bar {
  padding: 20px 15px;
  background-color: #0045d0;
  color: #fff;
}
.institutional-ownership_title-bar h2 {
  margin-bottom: 0;
  font-size: 1.7rem;
  font-weight: bold;
}
.institutional-ownership-info_row {
  padding: 10px 15px;
  border-bottom: 1px solid #effcf9;
}
.institutional-ownership-activity {
  margin: 40px 0;
}
.institutional-ownership-activity_category {
  margin: 20px 0;
}
@media only screen and (max-width: 768px) {
  .institutional-ownership-activity_category label {
    display: block;
    margin-bottom: 5px;
  }
}
@media only screen and (max-width: 480px) {
  .institutional-ownership-activity_select {
    width: 100%;
  }
}
.institutional-ownership-activity_positions-tabs {
  margin-right: 0;
  padding-right: 10px;
}
@media only screen and (max-width: 1200px) {
  .institutional-ownership-activity_positions-tabs {
    display: none;
  }
}
.institutional-ownership-activity_positions-tabs button {
  font-family: inherit;
  margin: 10px 0;
  padding: 10px;
  border: 1px solid #ccc;
  border-left: 0;
  border-right: 0;
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  color: #0567e8;
  background: none;
}
.institutional-ownership-activity_positions-tabs button:hover, .institutional-ownership-activity_positions-tabs button:focus {
  color: #0045d0;
  cursor: pointer;
}
.institutional-ownership-activity_positions-tabs button[aria-selected=true] {
  background-color: #e6e6e6;
}
.institutional-ownership-activity_positions-tabs button[aria-selected=true] .institutional-ownership-activity_positions-name {
  font-weight: bold;
}
.institutional-ownership-activity_positions-tabs button[disabled],
.institutional-ownership-activity_positions-tabs button button {
  color: inherit;
  padding: 10px;
  display: block;
}
.institutional-ownership-activity_positions-tabs button[disabled] {
  background: #0567e8;
  border-color: transparent;
  color: #fff;
  padding-left: 10px;
}
.institutional-ownership-activity_positions-connector {
  width: 11px;
  background-color: #fff;
  position: absolute;
  height: calc(100% + 2px);
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  right: 0;
  z-index: 888;
  top: -1px;
  display: none;
}
.institutional-ownership-activity_positions-name {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1200px) {
  .institutional-ownership-activity_positions-name {
    margin-bottom: 10px;
  }
}
.institutional-ownership-activity_positions-details {
  font-size: 1.2rem;
}
.institutional-ownership-activity_positions-details:not(:last-child) {
  margin-bottom: 5px;
}
.institutional-ownership-activity_table {
  margin: 0;
}
.institutional-ownership-activity_table th {
  pointer-events: none;
}
.institutional-ownership-activity_positions-dropdown {
  position: relative;
  display: inline-block;
}
@media screen and (min-width: calc(1200px + 1px)) {
  .institutional-ownership-activity_positions-dropdown {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .institutional-ownership-activity_positions-dropdown #positions-select-mobile-label {
    display: block;
    margin-bottom: 0;
  }
}
.institutional-ownership-activity_positions-dropdown.open .institutional-ownership-activity_positions-btns {
  display: block;
}
.institutional-ownership-activity_positions-toggle {
  margin: 5px 0 15px;
  text-align: left;
}
@media only screen and (max-width: 480px) {
  .institutional-ownership-activity_positions-toggle {
    width: 100%;
  }
}
.institutional-ownership-activity_positions-btns {
  position: absolute;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  top: 48px;
  right: 0;
  width: 265px;
  margin: 2px 0 0;
  list-style: none;
  border: 1px solid;
  background: #fff;
  background-clip: padding-box;
}
@media only screen and (max-width: 768px) {
  .institutional-ownership-activity_positions-btns {
    top: 64px;
    right: auto;
  }
}
.institutional-ownership-activity_positions-btns button {
  display: block;
  width: 100%;
  background: none;
  border: 0;
  padding: 10px;
  font: inherit;
  color: #0567e8;
  text-align: left;
  cursor: pointer;
}
.institutional-ownership-activity_positions-btns button:hover, .institutional-ownership-activity_positions-btns button:focus {
  color: #0045d0;
}
.institutional-ownership-activity_details.grid_col {
  margin: 10px 0 0;
}
.institutional-ownership .pager .pagination .pagination_prev .pagination_button::before, .institutional-ownership .pager .pagination .pagination_next .pagination_button::before {
  content: "";
}

/* ---------- 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: "Roboto", 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;
}

/* ------ Mergers and Acquisitions ------ */
.module-mna_categories--mobile {
  display: none;
}
@media screen and (max-width: 480px) {
  .module-mna_categories--mobile {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .module-mna_categories--desktop {
    display: none;
  }
}
.module-mna_dropdown, .module-mna_listmenu {
  margin-top: 5px;
}
.module-mna_dropdown button.dropdown, .module-mna_listmenu button.dropdown {
  width: 100%;
  background: transparent;
  text-align: left;
}
.module-mna_dropdown button.dropdown span:first-of-type, .module-mna_listmenu button.dropdown span:first-of-type {
  width: 100%;
  display: inline-block;
}
.module-mna_dropdown button.dropdown span.caretContainer, .module-mna_listmenu button.dropdown span.caretContainer {
  position: absolute;
}
.module-mna_dropdown button.dropdown .caretContainer::before, .module-mna_listmenu button.dropdown .caretContainer::before {
  font-family: "q4-icons" !important; /* 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;
  margin-left: 5px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\edc2";
}
.module-mna_dropdown ul, .module-mna_listmenu ul {
  padding: 10px 20px;
  margin: 2.5px 0 0 0;
  list-style: none;
  border: 1px solid #0045d0;
  display: none;
}
.module-mna_dropdown ul li + li, .module-mna_listmenu ul li + li {
  margin-top: 10px;
}
.module-mna_dropdown.open ul, .module-mna_listmenu.open ul {
  display: block;
}
.module-mna_tabs {
  background-color: #0045d0;
  list-style: none;
  padding: 5px 5px 0 5px;
}
.module-mna_tabs li {
  display: inline-block;
}
.module-mna_tabs li > a {
  padding: 15px;
  display: inline-block;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: 700;
  color: #fafafa;
}
.module-mna_tabs li > a:hover {
  color: #fff;
}
.module-mna_tabs li.active a {
  color: #232323;
  background-color: #fff;
}
.module-mna_tabs [tabindex="-1"]:focus:focus-visible {
  outline: 2px dotted !important;
  outline-color: inherit;
}
.module-mna table a {
  text-decoration: underline;
}
.module-mna table thead th:nth-child(4), .module-mna table thead th:nth-child(5), .module-mna table thead th:nth-child(6), .module-mna table thead th:nth-child(7) {
  text-align: right;
}
.module-mna table ul.dtr-details span.dtr-title {
  min-width: 5px;
}
.module-mna table ul.dtr-details span.dtr-title::after {
  content: ": ";
}
.module-mna table.dataTable > tbody > tr.child span.dtr-title {
  min-width: 5px;
}
.module-mna-details_content {
  margin-top: 40px;
}
.module-mna-details_content table,
.module-mna-details_content th,
.module-mna-details_content td {
  border: 1px solid #ccc;
}
.module-mna-details_content table {
  margin-bottom: 20px;
}
.module-mna-details_content h2 {
  margin: 30px 0 10px 0;
}
.module-mna-details_link {
  margin-bottom: 20px;
  text-align: right;
}
@media screen and (max-width: 480px) {
  .module-mna-details_link {
    text-align: left;
  }
}

/* ----- 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_title {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #001753;
  margin-bottom: 15px;
}
.module-slideshow_date {
  color: #2a3035;
  margin-bottom: 5px;
  font-size: 12px;
  line-height: 14.06px;
  font-weight: 400;
}
.module-slideshow .module_links > * + * {
  margin-top: 15px;
}
.module-slideshow_link {
  font-size: 1.4rem;
  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;
}

/* ------ 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: #585555;
  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: #0045d0;
}
.nav--main .level2 {
  display: inline-block;
  vertical-align: top;
}
.nav--main .level2 > li {
  padding: 10px 0;
}
.nav--main .level3 {
  display: none;
  background-color: #0045d0;
  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 #0045d0;
  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: #0567e8;
  text-align: center;
  line-height: 1.25;
  letter-spacing: 1px;
}
.js--sticky .nav--secondary {
  position: fixed;
  width: 100%;
  z-index: 200;
  box-shadow: rgba(40, 48, 51, 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 {
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15px 25px;
  font-weight: 700;
  font-size: 16px;
  line-height: 18.75px;
}
.nav--secondary .level3 > li a:hover, .nav--secondary .level3 > li a:focus {
  background: #fff;
  color: #001753;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.nav--secondary .level3 > li.selected a {
  background: #fff;
  color: #001753;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.nav--sitemap {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 50px;
  padding-bottom: 50px;
}
.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 > a, .nav--sitemap .level1 > li > a:visited,
.nav--sitemap .level2 > li > a,
.nav--sitemap .level2 > li > a:visited {
  margin-bottom: 40px;
  font-size: 2.4rem;
  color: #283033;
  text-transform: uppercase;
}
.nav--sitemap .level3 > li {
  padding: 5px 0 5px 15px;
}
.nav--sitemap .level3 > li > a {
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
}
.nav--sitemap .level2 > li > a {
  margin-bottom: 5px;
}

/* ==================================
 ---------- NEW NAV START ----------
================================== */
.nav--mobile {
  display: none;
  max-width: 380px;
  width: 75%;
  padding: 20px 20px 60px 20px;
  background-color: #fff;
  border-top: 2px solid #effcf9;
  overflow-y: auto;
  position: fixed;
  z-index: 2000;
  will-change: transform;
  top: 0;
  height: 100%;
  box-shadow: rgba(0, 0, 0, 0.2) 0 8px 24px;
}
.nav--mobile.right {
  right: 0;
  transform: translateX(100%);
}
.nav--mobile.left {
  left: 0;
  transform: translateX(-100%);
}
.js--mobile .nav--mobile {
  transform: translateX(0);
}

@media only screen and (min-width: 1230px) {
  .nav--mobile {
    display: none;
  }
}
.nav--mobile--toggle {
  display: none;
  font-size: 3.4rem;
  color: #283033;
  background: transparent;
  border: 0 none;
  margin: 0;
  padding: 0;
  outline-color: #283033;
  position: absolute;
  top: 54px;
}
.nav--mobile--toggle [class^=q4-icon_]:focus,
.nav--mobile--toggle [class*=" q4-icon_"]:focus {
  outline: none;
}
.js--header-small .nav--mobile--toggle {
  color: #283033;
}

@media only screen and (max-width: 1230px) {
  .nav--mobile--toggle {
    display: block;
    right: 20px;
  }
}
.nav--mobile--toggle.right {
  right: 20px;
}
.nav--mobile--inner_toggle_container .nav--mobile--toggle {
  position: static;
  color: #585555;
  float: none;
}
.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;
  position: relative;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: #fff;
  font-size: 1.4rem;
  margin: 20px 0 20px 0;
  padding: 0;
  min-height: 36px;
  background-color: #0045d0;
}
.nav--mobile--search_container--input {
  -webkit-box-shadow: 0 0 0 30px #0045d0 inset !important;
  -webkit-text-fill-color: #fff !important;
  border: none;
  position: absolute;
  left: 0;
  padding: 10px 35px 10px 15px;
  width: 100%;
  color: #fff !important;
  text-transform: uppercase;
  font-size: 14px;
  -webkit-appearance: none;
}
.nav--mobile--search_container--btn {
  position: absolute;
  right: 0;
  font-size: 15px;
  color: #fff;
  background-color: transparent;
  border: none;
  padding: 10px 15px;
}
.nav--mobile--expand--topMenu--menuItem, .nav--mobile--panel--topMenu--menuItem {
  display: block;
  position: relative;
  vertical-align: middle;
}
.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: 10px 0;
  margin: 0 10px;
  width: calc(100% - 20px);
  font-weight: normal;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  background-color: transparent;
  color: #283033;
}
.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: #0045d0;
}
.nav--mobile--expand--topMenu--menuItem .button, .nav--mobile--panel--topMenu--menuItem .button {
  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--innerMenu, .nav--mobile--panel--innerMenu {
  margin-left: 25px !important;
}
.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 30px 60px 20px !important;
  background-color: #fff;
  border-top: 2px solid #effcf9;
  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.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;
  color: #0045d0;
}
.nav--mobile--panel--innerMenu .panel-control .button {
  justify-content: end;
}
.nav--mobile--panel--innerMenu .panel-control .button .icon {
  margin-left: 0;
  margin-right: 5px;
}
.nav--desktop {
  font-size: 1.4rem;
}
@media only screen and (max-width: 1230px) {
  .nav--desktop {
    display: none !important;
  }
}
.nav--desktop.hoz {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  margin: 6.66px 0;
}
.nav--desktop--search_container {
  position: relative;
  font-size: 1.4rem;
  font-family: "Old Standard TT", serif;
  font-style: italic;
  color: #0567e8;
}
.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: #0567e8 !important;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  padding: 10px 35px 10px 15px;
  font-family: "Old Standard TT", serif;
  font-style: italic;
}
.nav--desktop--search_container--input:focus {
  outline-color: #0567e8;
}
.nav--desktop--search_container--btn {
  position: relative;
  top: 0;
  font-size: 15px;
  color: #585555;
  background-color: transparent;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
}
.nav--desktop .level0 > li.selected,
.nav--desktop .level0 > li.expanded {
  background-image: linear-gradient(to right, #585555 33%, rgba(255, 255, 255, 0) 0%);
  background-position: bottom;
  background-size: 7px 2px;
  background-repeat: repeat-x;
}
.js--header-small .nav--desktop .level0 > li.selected,
.js--header-small .nav--desktop .level0 > li.expanded {
  background-image: linear-gradient(to right, #585555 33%, rgba(255, 255, 255, 0) 0%);
  background-position: bottom;
  background-size: 7px 2px;
  background-repeat: repeat-x;
}

.nav--desktop .level1 > li.selected a.link,
.nav--desktop .level1 > li.expanded a.link {
  color: #001753;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.nav--desktop--list--topMenu {
  margin: 0 15px !important;
}
.nav--desktop--list--topMenu--menuItem {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  margin: 0 10px;
}
.nav--desktop--list--topMenu--menuItem.selected > a.link {
  color: #001753;
}
.nav--desktop--list--topMenu--menuItem.selected > .button {
  color: #001753 !important;
}
.nav--desktop--list--topMenu--menuItem.expanded .button {
  color: #001753;
}
.nav--desktop--list--topMenu--menuItem .link,
.nav--desktop--list--topMenu--menuItem .button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  padding-bottom: 5px;
  margin: 0 0;
  width: 100%;
  color: #0567e8;
  font-weight: 700;
  font-size: 16px;
  line-height: 18.75px;
  letter-spacing: 0.5px;
  font-family: "Roboto", sans-serif;
  background: transparent;
  text-transform: capitalize;
}
.js--header-small .nav--desktop--list--topMenu--menuItem .link,
.js--header-small .nav--desktop--list--topMenu--menuItem .button {
  color: #0567e8;
}

@media only screen and (max-width: 1200px) {
  .nav--desktop--list--topMenu--menuItem .link,
.nav--desktop--list--topMenu--menuItem .button {
    text-align: center;
    padding: 10px 5px;
    margin: 0;
    letter-spacing: 0;
  }
}
.nav--desktop--list--topMenu--menuItem > .link:hover {
  color: #001753;
}
.nav--desktop--list--topMenu--menuItem .button {
  border: none;
  font-family: inherit;
  font-style: inherit;
  min-width: auto;
}
.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: 1.5rem;
}
.nav--desktop--list--topMenu--menuItem .button .icon.q4-icon_chevron-down::before {
  content: "\edc9";
}
.nav--desktop--list--topMenu--menuItem .button:hover .text {
  color: #001753;
}
.nav--desktop--list--topMenu--menuItem .button:hover .icon {
  margin-left: 5px;
  display: inline-block;
  font-size: 1.5rem;
  color: #001753;
}
.nav--desktop--list--topMenu--menuItem .button:hover .icon.q4-icon_chevron-down::before {
  content: "\edc7";
}
.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;
  outline-color: #fff;
  position: absolute;
}
.nav--desktop--list--innerMenu.level1 {
  padding: 10px 0;
  top: 25px !important;
  min-width: 250px !important;
}
.nav--desktop--list--innerMenu .link,
.nav--desktop--list--innerMenu .button {
  padding: 10px 10px;
  padding-right: 0;
  width: auto;
  margin: 0 10px;
  color: #0567e8;
  text-transform: none;
}
.js--header-small .nav--desktop--list--innerMenu .link,
.js--header-small .nav--desktop--list--innerMenu .button {
  color: #0045d0;
}

.nav--desktop--list--innerMenu .link:focus,
.nav--desktop--list--innerMenu .button:focus {
  outline-color: #001753;
}
.nav--desktop--list--innerMenu .link:hover,
.nav--desktop--list--innerMenu .button:hover {
  color: #001753;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.nav--desktop--list--innerMenu::before {
  content: "";
  border-bottom: 11px solid #fff;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  position: absolute;
  top: -10px;
  left: 15px;
  z-index: -10;
}

/* ==================================
 ----------- NEW NAV END -----------
================================== */
/* -------- News Module CSS ------- */
.module-news .module_nav,
.module-news .module_thumbnail-link,
.module-news .module_more-link {
  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-latest {
  padding-top: 55px !important;
  padding-bottom: 55px !important;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../design/banner/latest-news-bg.jpeg") top -242px center;
  background-color: #001753;
}
@media only screen and (max-width: 768px) {
  .module-news-latest {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../design/banner/latest-news-bg.jpeg") top -322px right -578px;
  }
}
.module-news-latest .button {
  background-color: #83ebd0;
  color: #001753;
}
.module-news-latest .button:hover {
  background-color: #6ec3a4;
}
.module-news-latest .module_title {
  color: #fff;
}
.module-news-latest .module_container--content {
  display: flex;
  justify-content: stretch;
  align-items: stretch;
  padding: 0;
  margin-bottom: 51px;
}
.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_item {
  margin: 0;
  padding: 0 0 0 20px;
  border: none;
  display: flex;
  align-self: stretch;
}
.module-news-latest .module_item-wrap {
  border-bottom: 1px solid #ddd;
  height: 100%;
}
.module-news-latest .module_headline {
  margin-bottom: 5px;
}
.module-news-latest .module_headline-link:hover {
  color: #fff;
}
.module-news-latest .module_date-time {
  color: #fff;
  font-weight: 400;
  font-size: 12px;
  line-height: 14.06px;
}
.module-news-latest .slick-slide {
  float: none;
  height: auto;
}
.module-news-latest.dark .button--cta:hover {
  color: #fff;
  text-decoration: underline;
}
.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-details_category {
  display: none;
}
.module-news-details ul {
  margin: 16px 0;
  padding-left: 32px;
  list-style-type: disc;
}
.module-news-details ul li {
  line-height: 1.5;
}
.module-news-details .module_multimedia .module_link {
  margin: 0;
  display: block;
}
.module-news-details .module_multimedia-caption {
  margin-bottom: 16px;
}
.module-news-details .module_multimedia-caption .module_file-text {
  display: block;
}
.module-news-details .module_multimedia-caption .module_file-resolution {
  display: none;
}
.module-news-details .module_multimedia-image {
  width: 100%;
  float: none;
}
.module-news-details .module_multimedia-size {
  margin-top: 10px;
}
.module-news-details .module_multimedia-size .module_file-size {
  display: inline;
}
.module-news-details .module_multimedia-size .module_file-resolution::before {
  content: "(";
}
.module-news-details .module_multimedia-size .module_file-resolution::after {
  content: ")";
}
@media only screen and (max-width: 1024px) {
  .module-news-details .module_multimedia-item {
    margin-bottom: 30px;
  }
}

/* ---------- Pager ---------- */
.pager {
  font-family: "Roboto", sans-serif !important;
  margin: 15px 0;
}
.pager_list-item {
  display: inline-block;
  vertical-align: top;
  margin: 5px 0;
  font-family: "Roboto", sans-serif;
}
.pager_list-item:not(:last-child) button {
  margin-right: 5px;
  font-family: "Roboto", sans-serif;
}
.pager_dots {
  margin-right: 5px;
  appearance: none;
  border: 1px solid #0045d0;
  color: #0045d0;
  background-color: #effcf9;
  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: 1px solid #404655;
  color: #2a3035;
  background-color: transparent;
  border-radius: 3px;
  width: 35px;
  height: 35px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 14.06px;
}
.pager_button:not(.js--disabled):hover {
  color: #fff;
  background-color: #0045d0;
  font-family: "Roboto", sans-serif;
}
.pager_button:not(.js--disabled):focus {
  color: #fff;
  background-color: #0045d0;
  outline-color: #0045d0;
  font-family: "Roboto", sans-serif;
}
.pager_button.js--active {
  color: #fff;
  background-color: #0045d0;
  font-family: "Roboto", sans-serif;
}
.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;
}

/* ------ Person List Module ------ */
.module-person .module-person_description,
.module-person .module-person_res-photo-container,
.module-person .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-person_photo-container {
  border-radius: 100%;
  overflow: hidden;
}
.module-person .module-person_photo-container img {
  width: 100%;
}
.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_suffix, .module-person_title {
  font-size: 1.3rem;
}
.fancybox-container .module-person .module_item {
  max-width: 1220px;
  padding: 70px;
}
.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;
  text-align: left;
  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: #585555;
}
.fancybox-container .module-person_photo-container {
  max-width: 30%;
  margin-right: 40px;
}
@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: 480px) {
  .fancybox-container .module-person_photo-container {
    margin-right: 0;
    max-width: none;
  }
}
.fancybox-container .module-person_name {
  display: block;
  margin-bottom: 10px;
  font-size: 3.6rem;
  line-height: 1.45;
  color: #0045d0;
}
@media only screen and (max-width: 480px) {
  .fancybox-container .module-person_name {
    font-size: 2.4rem;
    line-height: 1.2;
  }
}
.fancybox-container .module-person_title {
  font-size: 2.4rem;
  color: #0045d0;
}
@media only screen and (max-width: 480px) {
  .fancybox-container .module-person_title {
    font-size: 1.8rem;
    line-height: 1.125;
  }
}
.fancybox-container .module-person_description-container {
  margin-top: 40px;
}
.fancybox-container .module-person_description {
  display: block;
}

.module-person-accordion .module-person_name-container {
  padding: 0;
  color: #0567e8;
  cursor: pointer;
}
.module-person-accordion .module-person_name-container h3,
.module-person-accordion .module-person_name-container .h3 {
  font-size: 1.8rem;
  font-weight: bold;
  color: inherit;
  margin: 0;
}
.module-person-accordion .module-person_name-container h3 button,
.module-person-accordion .module-person_name-container .h3 button {
  all: inherit;
  width: 100%;
  padding: 20px 0;
  color: #001753;
}
.module-person-accordion .module-person_name-container h3 button .module-person_name,
.module-person-accordion .module-person_name-container .h3 button .module-person_name {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
}
.module-person-accordion .module-person_name-container h3 button .module-person_title,
.module-person-accordion .module-person_name-container .h3 button .module-person_title {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.module-person-accordion .module-person_name-container h3 button::before,
.module-person-accordion .module-person_name-container .h3 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";
}
.module-person-accordion .module-person_name-container h3 button:focus,
.module-person-accordion .module-person_name-container .h3 button:focus {
  outline: 2px dotted grey;
}
.module-person-accordion .module_item {
  padding: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.module-person-accordion .module_item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.module-person-accordion .module_item.js--active h3, .module-person-accordion .module_item.js--active .h3 {
  color: #0045d0;
}
.module-person-accordion .module_item.js--active h3 button, .module-person-accordion .module_item.js--active .h3 button {
  color: #0567e8;
}
.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_item.js--active .module-person_description-container {
  padding: 15px;
  margin: 0 0 15px 0;
  background-color: transparent;
  display: flex !important;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .module-person-accordion .module_item.js--active .module-person_description-container {
    flex-direction: column;
  }
}
.module-person-accordion .module-person_name {
  margin-right: 10px;
}
.module-person-accordion .module-person_title {
  font-size: 1.4rem;
}
.module-person-accordion .module_comma {
  display: none;
}
.module-person-accordion .module-person_description-container {
  padding: 15px;
  margin: 0 0 15px 0;
  background-color: transparent;
}
.module-person-accordion .module-person_photo-container {
  float: left;
  margin: 0 25px 15px 0;
  flex-basis: 198px;
  flex-grow: 1;
}
@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;
  width: 198px;
}
.module-person-accordion .module-person_description > *:first-child {
  margin-top: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.module-person-accordion .module-person_description {
  display: block;
  flex-shrink: 1;
  width: 80%;
}
.module-person-accordion .module-person_description p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.module-person-accordion .module-person_description br {
  display: none;
}
@media only screen and (max-width: 768px) {
  .module-person-accordion .module-person_description {
    width: unset;
  }
}
.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: #0045d0;
  border: 1px solid #0045d0;
  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: #0045d0;
}
.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: #0045d0;
}
.module-person-details_title {
  display: block;
  font-size: 2.4rem;
}
.module-person-details_description-container {
  margin-top: 40px;
}

/* ------ Peer Analysis ------ */
.module-peer-analysis_table,
.module-peer-analysis table {
  margin-bottom: 40px;
}
.module-peer-analysis_table a,
.module-peer-analysis table a {
  text-decoration: underline;
}
.module-peer-analysis_table thead th.text-center,
.module-peer-analysis table thead th.text-center {
  text-align: center;
}
@media screen and (min-width: 480px) {
  .module-peer-analysis_table thead th:first-child,
.module-peer-analysis table thead th:first-child {
    width: 40%;
  }
}
@media screen and (min-width: 480px) {
  .module-peer-analysis_table thead th:not(:first-child),
.module-peer-analysis table thead th:not(:first-child) {
    width: 20%;
    text-align: center;
  }
}
@media screen and (min-width: 480px) {
  .module-peer-analysis_table tr td:not(:first-child),
.module-peer-analysis table tr td:not(:first-child) {
    text-align: center;
  }
}
.module-peer-analysis_table > tbody > tr.child ul.dtr-details span.dtr-title,
.module-peer-analysis table > tbody > tr.child ul.dtr-details span.dtr-title {
  min-width: 5px;
  padding: 5px 5px 5px 0;
}
.module-peer-analysis_table > tbody > tr.child ul.dtr-details span.dtr-title::after,
.module-peer-analysis table > tbody > tr.child ul.dtr-details span.dtr-title::after {
  content: ": ";
}
.module-peer-analysis_table > tbody > tr.child ul.dtr-details span.dtr-data,
.module-peer-analysis table > tbody > tr.child ul.dtr-details span.dtr-data {
  padding: 5px 0;
}

/* ------ 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;
}

/* ------ 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: #283033;
  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: #283033;
  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: "Roboto", 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: #0045d0;
  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: #fff;
  border: 1px solid #404655;
  border-left: none;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
_::-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: "\ea5f";
  font-size: 16px;
  color: #0045d0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.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: #0045d0;
  outline-color: #0045d0;
  color: #fff;
  min-width: auto;
  font-family: "Roboto", sans-serif;
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-close {
  background-color: #374448;
  outline-color: #374448;
  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 {
  background-color: #0045d0;
}

/* -------- Search Modules -------- */
.module-search_toggle {
  margin: 0;
  font-size: 1.6rem;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #0567e8;
  cursor: pointer;
}
.module-search_toggle.js--active {
  color: #0045d0;
}
.module-search_input[type=text] {
  opacity: 0;
  visibility: hidden;
  border-color: #0045d0;
  background-color: #0045d0;
  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: #001753;
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 400;
  line-height: 24px;
  display: block;
  margin-bottom: 7px;
}
.module-search-results .form_select {
  color: #001753;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  width: 100%;
  min-width: auto;
  border-color: #404655;
  display: block !important;
}
.module-search-results .form_select + .sbHolder {
  display: none;
}
.module-search-results .form_input {
  width: 100%;
  border: 1px solid #404655;
  color: #001753;
  padding: 10px 20px;
  display: block;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  border-radius: 5px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.module-search-results .form_input.hasDatepicker {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.module-search-results_link {
  text-transform: uppercase;
  color: #105ca3;
  font-size: 14px;
  text-shadow: 0 1px 0 #fff;
  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: #545b62;
  font-size: 14px;
  text-shadow: 0 1px 0 #fff;
  line-height: 1.5;
  font-weight: 400;
}
.module-search-results_summary {
  color: #545b62;
  font-size: 20px;
  line-height: 21px;
  text-shadow: 1px 1px #fff;
  font-weight: 400;
  margin: 0 0 30px;
}
.module-search-results_summary span {
  color: #105ca3;
}
.module-search-results_pager {
  float: right;
}
.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 {
  display: block;
  background-color: #0567e8;
}
.module-sec .module_header-text {
  padding: 15px 8px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
}
.module-sec .module_item {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #001753;
  padding: 0;
}
.module-sec .module_item ~ .module_item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.module-sec .module_item .grid_col {
  vertical-align: middle;
  padding: 15px 8px;
}
.module-sec .module_item .module-sec_filing {
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .module-sec .module_header {
    display: none;
  }
  .module-sec .module_header + .module_item {
    border-top: 2px solid #0045d0;
  }
  .module-sec .module_item {
    padding: 15px 0;
  }
  .module-sec .module_item:first-child {
    border-top: 2px solid #0045d0;
  }
  .module-sec .module_item:last-child {
    border-bottom: 2px solid #0045d0;
  }
  .module-sec .module_item .grid_col {
    padding: 0 5px;
  }
  .module-sec .module_item + .module_footer {
    border-bottom: 2px solid #0045d0;
  }
}
.module-sec_download-list-item {
  display: inline-block;
}
.module-sec_download-list .module_link {
  margin: 0;
}
.module-sec_download-list .q4icons_icon::before {
  font-size: 32px;
}
@media only screen and (max-width: 768px) {
  .module-sec_date, .module-sec_filer, .module-sec_filing, .module-sec_description {
    margin-bottom: 15px;
  }
}
.module-sec-details_date, .module-sec-details_description {
  margin-bottom: 15px;
}
.module-sec-details_download-list-item {
  display: inline-block;
}
.module-sec-details_download-list .module_link {
  margin: 0;
}
.module-sec-details_download-list .q4icons_icon::before {
  font-size: 2.4rem;
}

/* ---- Accessibility Skip Link --- */
.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: #0045d0;
  outline-color: #0045d0;
}
.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 ------ */
@media only screen and (max-width: 1230px) {
  .module-stock-chart #highcharts-screen-reader-region-before-0 {
    display: flex;
    justify-content: center;
  }
}
.module-stock-chart .z text {
  color: #001753 !important;
  fill: #001753 !important;
  font-weight: 400 !important;
  font-size: 13px !important;
  line-height: 24px !important;
  font-family: "Roboto", sans-serif !important;
}
.module-stock-chart [data-highcharts-chart].js--hidden {
  display: block !important;
  max-height: 0;
  overflow: hidden;
}
.module-stock-chart .highcharts-header {
  padding: 0 !important;
}
.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 rect[fill="#CCC"] {
  fill: #767676 !important;
}
.module-stock-chart .highcharts-legend-item:first-child path {
  stroke: #000;
}
.module-stock-chart .highcharts-legend-item:first-child text {
  cursor: default !important;
  color: #000 !important;
  fill: #000 !important;
}
.module-stock-chart .highcharts-legend-item.highcharts-spline-series.highcharts-series-0 {
  stroke: none !important;
}
.module-stock-chart .highcharts-legend-item.highcharts-spline-series text {
  color: #001753 !important;
  fill: #001753 !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 24px !important;
  font-family: "Roboto", sans-serif !important;
}
.module-stock-chart .highcharts-legend-item.highcharts-flags-series text {
  color: #001753 !important;
  fill: #001753 !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 24px !important;
  font-family: "Roboto", sans-serif !important;
  text-decoration: none !important;
}
.module-stock-chart .highcharts-legend-item.highcharts-flags-series rect {
  fill: #0567e8 !important;
}
.module-stock-chart .highcharts-series-0 {
  stroke: #000;
}
.module-stock-chart .highcharts-series-0 path:first-child {
  stroke: #000;
}
.module-stock-chart .highcharts-axis-labels.highcharts-xaxis-labels text, .module-stock-chart .highcharts-axis-labels.highcharts-yaxis-labels text {
  color: #001753 !important;
  fill: #001753 !important;
  font-weight: 400 !important;
  font-size: 13px !important;
  line-height: 24px !important;
  font-family: "Roboto", sans-serif !important;
}
.module-stock-chart .highcharts-series-group .highcharts-column-series path {
  fill: #0567e8 !important;
}
.module-stock-chart .highcharts-series-group .highcharts-column-series rect {
  fill: #0567e8 !important;
}
.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(0, 69, 208, 0.6);
}
.module-stock-chart .highcharts-navigator-handle {
  stroke: rgba(0, 0, 0, 0.05);
  fill: #0567e8;
  cursor: ew-resize;
}
.module-stock-chart .highcharts-navigator-handle-right rect, .module-stock-chart .highcharts-navigator-handle-left rect {
  stroke-width: 0;
  fill: #0045d0;
}
.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: #0567e8;
  stroke: #0567e8;
}
.module-stock-chart .highcharts-range-selector {
  box-sizing: content-box;
}
.module-stock-chart .highcharts-range-selector-group .highcharts-range-selector-buttons .highcharts-label text,
.module-stock-chart .highcharts-range-selector-group .highcharts-range-selector-buttons .highcharts-no-tooltip text {
  color: #001753 !important;
  fill: #001753 !important;
  font-weight: 400 !important;
  font-size: 12px !important;
  line-height: 14.06px !important;
  font-family: "Roboto", sans-serif !important;
}
.module-stock-chart .highcharts-range-selector-group .highcharts-range-selector-buttons .highcharts-no-tooltip rect {
  height: 15px !important;
  y: 5px !important;
}
.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: #585555;
}
.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 {
  background: none;
  border: none;
  color: inherit;
  font-family: inherit;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  text-transform: capitalize;
  padding: 15px;
  width: 100%;
  text-align: left;
  cursor: pointer;
}
.module-stock-chart .highcharts-table-caption {
  display: none;
}
.module-stock-chart_accessible-datepickers .module-stock-chart_from-label,
.module-stock-chart_accessible-datepickers .module-stock-chart_to-label {
  color: #001753 !important;
  fill: #001753 !important;
  font-weight: 400 !important;
  font-size: 12px !important;
  line-height: 14.06px !important;
  font-family: "Roboto", sans-serif !important;
}
.module-stock-chart_accessible-datepickers .module-stock-chart_accessible-input {
  height: 17px !important;
  text-align: center;
  padding-left: 10px;
  background-color: #e2e2e2 !important;
  border: none !important;
  color: #001753 !important;
  fill: #001753 !important;
  font-weight: 500 !important;
  font-size: 12px !important;
  line-height: 14.06px !important;
  font-family: "Roboto", sans-serif !important;
  margin-right: 0 !important;
  padding-bottom: 0 !important;
  width: 120px !important;
}
.module-stock-chart_accessible-datepickers .ui-datepicker-trigger {
  border: none !important;
  background-color: #e2e2e2;
  padding-right: 12px;
}
@media screen and (max-width: 768px) {
  .module-stock-chart_accessible-datepickers {
    display: none;
  }
}
.module-stock-datatable_accessible-datepicker label {
  color: #001753 !important;
  fill: #001753 !important;
  font-weight: 400 !important;
  font-size: 12px !important;
  line-height: 14.06px !important;
  font-family: "Roboto", sans-serif !important;
}
.module-stock-datatable_accessible-datepicker .module-stock-datatable_accessible-input {
  height: 17px !important;
  text-align: center;
  padding-left: 10px;
  background-color: #e2e2e2 !important;
  border: none !important;
  color: #001753 !important;
  fill: #001753 !important;
  font-weight: 500 !important;
  font-size: 12px !important;
  line-height: 14.06px !important;
  font-family: "Roboto", sans-serif !important;
  margin-right: 0 !important;
  padding-bottom: 0 !important;
}
.module-stock-datatable_accessible-datepicker .ui-datepicker-trigger {
  border: none !important;
  background-color: #e2e2e2;
  padding-right: 12px;
}
.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 {
  text-align: right;
  margin: 50px 0;
}
@media only screen and (max-width: 768px) {
  .module-stock-header {
    text-align: left;
    margin: 0;
  }
}
.module-stock-header .module_container--outer {
  display: inline-block;
  padding: 40px 20px;
  background: rgba(0, 69, 208, 0.7);
  text-align: center;
  width: 100%;
  max-width: 260px;
  min-height: 260px;
  position: relative;
  border-radius: 5px;
}
@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;
  }
}
@media only screen and (max-width: 480px) {
  .module-stock-header .module_container--outer {
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .module-stock-header .module_container--outer .module-stock-header_description1 {
    text-align: center;
  }
  .module-stock-header .module_container--outer .module-stock-header_stock-price {
    text-align: center;
  }
}
.module-stock-header_link {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.module-stock-header_description1 {
  display: block;
  font-weight: 700;
  font-size: 26px;
  line-height: 34px;
  margin-bottom: 14px;
}
@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-weight: 700;
  font-size: 40px;
  line-height: 46.88px;
  display: block;
  margin-bottom: 8px;
  font-size: 4.5rem;
  color: #fff;
}
.module-stock-header_stock-price::before {
  content: "$";
}
@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_change, .module-stock-header_percent-change {
  display: inline-block;
  margin: 10px 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  margin: 0;
}
@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 {
  display: block;
  font-size: 12px;
  font-weight: 400;
  line-height: 14.06px;
  margin-top: 14px;
  margin-bottom: 0;
}
.module-stock-header_date {
  display: block;
  font-size: 12px;
  font-weight: 400;
  line-height: 14.06px;
  margin-top: 0;
  margin-bottom: 0;
}
.module-stock-header_volume-text {
  display: none;
}

/* ------ 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: #effcf9;
  font-weight: 400;
  font-size: 12px;
  line-height: 14.06px;
  color: #001753;
}
.module-stock_table th {
  background-color: #effcf9;
  color: #001753;
}
.module-stock_table td {
  color: #001753;
}
.module-stock_table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.module-stock_table span {
  display: block;
  padding: 20px 15px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
@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.4rem;
}
@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;
    margin-right: 0;
  }
}
.module-stock-historical .module_options-select {
  margin-right: 0;
}
.module-stock-historical .module_options-legend {
  margin-right: 10px;
  line-height: 1.55;
  float: left;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #001753;
}
@media only screen and (max-width: 768px) {
  .module-stock-historical .module_options-legend {
    margin-bottom: 10px;
    margin-right: 0;
  }
}
.module-stock-historical .module_options-fieldset {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.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_table {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}
.module-subscribe_table tbody {
  width: 100%;
  display: block;
}
.module-subscribe_table tbody .module-subscribe_list-header {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #001753;
}
.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;
  font-weight: 400;
  font-size: 12px;
  line-height: 14.06px;
  color: #001753;
}
.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-weight: 400;
  font-size: 12px;
  line-height: 14.06px;
  color: #001753;
}

/* MailingList Unsubscribe Module */
.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;
  margin-bottom: 5px;
  font-weight: 400;
  font-size: 12px;
  line-height: 14, 6px;
  color: #001753;
}
.module-unsubscribe_table .module_required {
  font-weight: 400;
  font-size: 12px;
  line-height: 14, 6px;
  color: #001753;
}
.module-unsubscribe_table .module_input[type=email] {
  background-color: #fff;
}

/* ==================================
 ---------- SUSTAINABILITY ---------
================================== */
.page--sustainability .pane--banner {
  background-image: url("../design/banner/sustainability-banner.jpg");
}
.page--sustainability .pane--banner .pane_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@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 {
  max-width: calc(1220px / 2);
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .page--sustainability .pane--banner .module-page-title {
    max-width: none;
    text-align: center;
  }
}

.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-message {
  background-color: #effcf9;
}
.sustainability-report-message div {
  display: flex;
  flex-direction: column;
}
.sustainability-report-message .module_container--inner {
  align-items: flex-start;
  display: inline-flex;
  flex-direction: row;
  justify-content: space-around;
}
@media only screen and (max-width: 768px) {
  .sustainability-report-message .module_container--inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.sustainability-report-message .module_container--inner div {
  display: inline-flex;
}
.sustainability-report-message .module_container--inner div .module-person_name-container,
.sustainability-report-message .module_container--inner div .module-person_photo-container {
  max-width: 100%;
}
.sustainability-report-message .module_container--inner div .module-person_name-container img,
.sustainability-report-message .module_container--inner div .module-person_photo-container img {
  margin: 0 auto;
  max-width: 236px;
  max-height: 236px;
}
.sustainability-report-message .module_container--inner .photo {
  max-width: 35%;
}
@media only screen and (max-width: 768px) {
  .sustainability-report-message .module_container--inner .photo {
    max-width: 100%;
    position: relative;
    top: 50px;
  }
}
@media (max-width: calc(480px - 109px)) {
  .sustainability-report-message .module_container--inner .photo {
    top: 75px;
  }
}
.sustainability-report-message .module_container--inner .photo .module-person_name-container h3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sustainability-report-message .module_container--inner .photo .module-person_name-container h3 .module-person_name {
  text-transform: uppercase;
  color: #585555;
  margin-bottom: 15px;
}
.sustainability-report-message .module_container--inner .photo .module-person_name-container h3 .module-person_title {
  font-size: 15px;
}
.sustainability-report-message .module_container--inner .message {
  max-width: 65%;
}
@media only screen and (max-width: 1024px) {
  .sustainability-report-message .module_container--inner .message {
    padding-left: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .sustainability-report-message .module_container--inner .message {
    max-width: 100%;
    padding-left: 0;
    text-align: center;
  }
  .sustainability-report-message .module_container--inner .message .module_title {
    position: relative;
    bottom: 340px;
  }
}
@media (max-width: calc(480px - 194px)) {
  .sustainability-report-message .module_container--inner .message .module_title {
    position: relative;
    bottom: 365px;
  }
}
.sustainability-report-values {
  background-color: #0045d0;
  color: #fff;
}
.sustainability-report::after {
  position: static;
  margin-left: 5px;
  vertical-align: top;
  transition-property: margin-left;
}
.sustainability-report:hover::after, .sustainability-report:focus::after {
  margin-left: 10px;
}
.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-disclosure h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 40px;
  color: #585555;
  text-transform: uppercase;
}
.sustainability-disclosure a {
  margin: 35px auto 5px auto;
  display: block;
  text-transform: uppercase;
  position: relative;
  left: 0;
}
.sustainability-disclosure .q4icons div {
  position: relative;
  right: 28px;
  font-size: 14px;
}
.sustainability-disclosure .q4icons_icon::before {
  position: relative;
  left: -10px;
  top: -11px;
  font-size: 25px;
}
.sustainability-governance {
  background-color: #0045d0;
  color: #fff;
  background-image: url("../design/banner/sustainability-commitment-banner.jpg");
  background-size: cover;
  background-position: center;
}
.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 .slick-list {
  padding: 0 20px;
  margin: 0 -20px;
  width: auto;
}
.sustainability .slick-arrow {
  left: 50%;
  right: auto;
  top: auto;
  bottom: -15px;
}
.sustainability-resources .grid_col {
  text-align: left;
  padding: 0 10px;
}
.sustainability-resources iframe {
  max-height: 156px;
  margin-bottom: 20px;
}
.sustainability-resources a {
  text-align: left;
  font-size: 16px;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .sustainability-resources .module_container--inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .sustainability-resources .grid_col {
    width: 100%;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .sustainability-resources iframe {
    max-height: 100%;
  }
}

/* ==================================
 ----------- LAYOUT CSS -----------
================================== */
/* ------- iframe layout CSS ------ */
.layout--iframe .pane--content .module {
  padding: 25px 0;
}
.layout--iframe .pane--content .module_container--outer {
  max-width: none;
}

/* ==================================
 ------------ BLANK CSS -----------
================================== */
/* -------- Layout Specific ------- */
.layout--home .pane--content {
  text-align: center;
}
.layout--home .pane--banner {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), #001753 url("../design/banner/banner-pets-overview.jpeg") center center;
  background-size: cover;
  background-repeat: repeat no-repeat;
}
@media only screen and (max-width: 1440px) {
  .layout--home .pane--banner .module_title {
    max-width: 300px;
  }
}
@media only screen and (max-width: 768px) {
  .layout--home .pane--banner .module_title {
    max-width: none;
  }
}
@media only screen and (max-width: 480px) {
  .layout--home .pane--banner .module_title {
    padding-top: 20px;
    text-align: center;
  }
}
.layout .layout_inner {
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
}
.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: 1230px) {
  .layout {
    position: relative;
  }
  .layout::before {
    content: "";
    display: block;
    position: fixed;
    width: 100%;
    top: 0;
    bottom: 0;
    background: #000;
    background: linear-gradient(180deg, #000, #434343);
    transition: 0.2s ease-out 0.1s;
    opacity: 0;
    z-index: 1999;
    visibility: hidden;
  }
  .layout.js--mobile {
    height: 100%;
  }
  body.nav--mobile-active {
    overflow: hidden;
  }
  .layout.js--mobile::before {
    opacity: 0.9;
    visibility: visible;
    transition: 0.4s cubic-bezier(0.22, 0.61, 0.36, 1) 0.1s;
  }
}

/* --------- Pane Specific -------- */
.pane--header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: rgba(40, 48, 51, 0.2) 0 2px 20px;
  z-index: 201;
  padding: 25px 0;
  padding-top: 0;
  transition: 0.3s ease-in-out;
}
@media only screen and (max-width: 1230px) {
  .pane--header {
    padding: 0;
  }
}
.pane--header .pane_inner {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (min-width: calc(1230px + 1px)) {
  .pane--header .pane_inner {
    padding-right: 35px;
  }
}
.pane--header .module-logo img {
  vertical-align: top;
}
@media only screen and (max-width: 1230px) {
  .pane--header .module-logo img {
    min-width: 216px;
  }
}
@media only screen and (max-width: 450px) {
  .pane--header .module-logo img {
    min-width: auto;
  }
}
.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: #0045d0;
  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: 1230px) {
  .pane--header .pane_inner {
    height: var(--header-height);
    padding-top: 0px;
    margin-bottom: 55px;
  }
  .pane--header .module {
    vertical-align: middle;
  }
  .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--header .module-logo {
  padding-top: 25px;
}
@media only screen and (max-width: 1230px) {
  .pane--header .module-logo {
    padding-top: 18px;
  }
}
.pane--header .nav--desktop--container {
  padding-top: 25px;
}
.pane--header .module-corporate-nav {
  height: 30px;
  background-color: #035dd3;
  margin-right: calc(50% - 51vw);
  margin-left: calc(50% - 50vw);
  padding-left: calc((100vw - 100%) / 2);
}
.pane--header .module-corporate-nav .module_container--inner {
  padding-top: 3px;
}
.pane--header .module-corporate-nav .link-corp {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}
.pane--header .module-corporate-nav .link-corp .icon.q4-icon_chevron-left {
  font-size: 10px;
  padding-right: 5px;
}
.pane--header .module-corporate-nav .link-corp .icon.q4-icon_chevron-left::before {
  content: "\edca";
}
.pane--banner {
  background: #001753 url("../design/banner/banner-hero-inner.png") top 120px center;
  background-size: cover;
  color: #fff;
  padding-top: 105px;
}
@media only screen and (max-width: 1440px) {
  .pane--banner {
    background-size: auto 320px;
    background-position: top 129px center;
  }
}
@media only screen and (max-width: 1230px) {
  .pane--banner {
    background-size: auto 300px;
    background-position: top 117px center;
  }
}
@media only screen and (max-width: 535px) {
  .pane--banner {
    background-size: cover;
  }
}
@media only screen and (max-width: 450px) {
  .pane--banner {
    background-position: top 68px left -362px;
  }
}
.pane--banner .pane_inner {
  position: relative;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 65px;
  padding-bottom: 65px;
}
.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;
  font-weight: 700;
}
@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;
  }
}
.pane--content .module {
  padding-top: 50px;
  padding-bottom: 50px;
}
.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: 25px;
  padding-bottom: 25px;
}
.pane--content .module--thin-top {
  padding-top: 25px;
}
.pane--content .module--thin-bottom {
  padding-bottom: 25px;
}
.pane--content .module--thick {
  padding-top: 75px;
  padding-bottom: 75px;
}
.pane--content .module--thick-top {
  padding-top: 75px;
}
.pane--content .module--thick-bottom {
  padding-bottom: 75px;
}
.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-sitemap {
  padding-bottom: 25px;
}
.pane--footer {
  padding: 40px 0 20px 0;
  background-color: #0045d0;
  color: #fff;
}
.pane--footer .pane_inner {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.pane--footer p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 10px;
  color: #fff;
}
.pane--footer .uppercase {
  text-transform: capitalize;
}
.pane--footer .q4icons_icon::before {
  padding-right: 15px;
}
.pane--footer .module_title {
  margin: 0 0 20px 0;
  color: inherit;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  text-transform: capitalize;
  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 br {
  display: none;
}
.pane--footer .module-contact a {
  display: block;
  padding-bottom: 8px;
  width: max-content;
}
.pane--footer .module-contact .accessibility-img {
  margin-top: 22px;
}
.pane--footer .module-contact .accessibility-img img {
  width: 64px;
}
.pane--footer .module_introduction {
  display: none;
}
.pane--footer .module-links {
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.pane--footer .module-links li:not(:last-child) {
  margin-bottom: 10px;
}
.pane--footer .module-subscribe input[type=checkbox] + label {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}
.pane--footer .module-subscribe_email 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;
}
.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: 50%;
}
@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-radius: 2px;
  border-color: #fff;
  background-color: transparent;
  width: 18px;
  height: 18px;
  top: 3px;
}
.pane--footer .module-subscribe input[type=checkbox]:checked + label::before {
  border-radius: 2px;
  border-color: #0567e8;
  background-color: #fff;
  width: 18px;
  height: 18px;
  top: 3px;
  background-image: url("../design/svg/checked.svg");
  background-size: 9px 7px;
  background-repeat: no-repeat;
  background-position: center center;
}
.pane--footer .module-subscribe input[type=text],
.pane--footer .module-subscribe input[type=email] {
  border-color: #fff;
  color: #001753;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  background-color: #fff;
}
.pane--footer .module-subscribe .module_actions {
  margin: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  max-width: 165px;
  text-align: center;
}
@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%;
  background-color: #83ebd0;
  color: #001753;
}
.pane--footer .module-subscribe .module_actions .button:hover {
  background-color: #6ec3a4;
}
.pane--footer .module-subscribe_unsubscribe {
  display: block;
  margin-top: 20px;
}
.pane--footer .module-subscribe_unsubscribe a {
  font-weight: 400;
  font-size: 12px;
  line-height: 14.06px;
}
@media only screen and (max-width: 768px) {
  .pane--footer .module-subscribe {
    width: 100%;
  }
}
.pane--footer .module_message--success {
  color: #7ae68e;
}
.pane--footer .module:not(.module-embed) {
  padding-bottom: 40px;
}
.pane--footer2 {
  padding: 0px 0 15px 0;
  background-color: #0045d0;
  color: #fff;
  font-size: 1.2rem;
}
.pane--footer2 .pane_inner {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.pane--footer2 .module-links--footer {
  position: relative;
  bottom: -9px;
}
@media only screen and (max-width: 840px) {
  .pane--footer2 .module-links--footer {
    position: static;
  }
}
.pane--footer2 .module-cta {
  width: 100vw;
  position: relative;
  left: calc(-50vw + 50%);
  margin-left: 10px;
  background-color: #effcf9;
  margin-bottom: 23px;
}
.pane--footer2 .module-cta .button--meeting {
  display: block;
  font-size: 1.3rem;
  color: #0045d0;
  font-weight: 700;
  padding: 23px 35px;
  height: auto;
  border: none;
  text-align: center;
  margin: auto;
  text-transform: capitalize;
}
.pane--footer2 .module-cta .button--meeting:hover {
  background-color: #effcf9;
  color: #001753;
}
.pane--footer2 .module-cta .button--meeting:focus {
  outline-color: #001753 !important;
}
.pane--footer2 .module-logo--footer img {
  vertical-align: top;
}
.pane--footer2 .module-logo--footer a {
  padding-right: 14px;
}
.pane--footer2 .module-logo--footer a:last-child {
  padding-right: none;
}
@media only screen and (max-width: 768px) {
  .pane--footer2 .module-logo--footer {
    float: none;
    text-align: center;
    padding-bottom: 15px;
  }
}
@media only screen and (max-width: 840px) {
  .pane--footer2 .module-logo--footer {
    float: none;
    text-align: center;
    padding-bottom: 15px;
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .pane--footer2 .module-links {
    float: none;
    text-align: center;
  }
}
@media only screen and (max-width: 840px) {
  .pane--footer2 .module-links {
    float: none;
    text-align: center;
    width: 100%;
  }
}
.pane--footer2 .module-links_list {
  font-size: 1.2rem;
}
.pane--footer2 .module-links_list li {
  display: inline;
}
.pane--footer2 .module-links_list li:not(:first-child)::before {
  content: "|";
  margin: 0 10px;
}
.pane--footer2 .module-links_list a {
  font-weight: 400;
  font-size: 12px;
  line-height: 14.06px;
}
.pane--footer2 .module-q4-credits {
  font-weight: 400;
  font-size: 12px;
  line-height: 14.06px;
  position: relative;
  bottom: 5px;
}
@media only screen and (max-width: 840px) {
  .pane--footer2 .module-q4-credits {
    position: static;
    padding-top: 5px;
    width: 100%;
  }
  .pane--footer2 .module-q4-credits .edit-footer {
    display: block;
  }
  .pane--footer2 .module-q4-credits .module-q4-credits_powered-text {
    display: inline-block;
  }
}
.pane--footer2 .module-q4-credits a {
  font-weight: 400;
  font-size: 12px;
  line-height: 14.06px;
  color: inherit;
}
.pane--footer2 .copyright {
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.2;
}
.pane--credits .pane_inner {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* --------- Page Specific -------- */
.page--no-alternating .pane--content {
  padding: 35px 0;
}
.page--no-alternating .module {
  padding-top: 25px;
  padding-bottom: 25px;
}

/* -------- Module Specific ------- */
.module-overview {
  font-size: 2rem;
}
.module-overview_hidden {
  display: none;
}
.module-overview_hidden.js--revealed {
  display: block;
}
.module-overview_button::before {
  content: "Read More";
}
.module-overview_button.js--active::before {
  content: "Show Less";
}

.module-why-invest h2 {
  margin-bottom: 45px;
}
.module-why-invest h3 {
  font-weight: 700;
  font-size: 48px;
  line-height: 56.25px;
  color: #0567e8;
  margin-top: 0;
  margin-bottom: 24px;
}
.module-why-invest p {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  margin-top: 0;
}
.module-why-invest p.first-el {
  margin-bottom: 0;
}
.module-why-invest_column {
  padding: 0 20px;
  margin-bottom: 30px;
}
.module-why-invest .slick-slide:not(:first-child) .module-why-invest_column,
.module-why-invest .grid_col {
  height: 100%;
}
@media only screen and (min-width: 768px) {
  .module-why-invest .grid_col:not(:first-child) .module-why-invest_column {
    border-left: 1px solid #ddd;
  }
}
.module-why-invest .slick-arrow::before {
  font-size: 20px;
  color: #0045d0;
}

/* HOME: Latest Presentation & Events */
.module-presentation-events {
  background: -moz-linear-gradient(left, #fff 66.66667%, #effcf9 66.66667%);
  background: -webkit-linear-gradient(left, #fff 66.66667%, #effcf9 66.66667%);
  background: linear-gradient(to right, #fff 66.66667%, #effcf9 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%, #effcf9 66.66667%);
  background: -webkit-linear-gradient(left, #fff 66.66667%, #effcf9 66.66667%);
  background: linear-gradient(to right, #fff 66.66667%, #effcf9 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-container {
  display: flex;
  justify-content: center;
}
.module-presentation-events .module-presentation-latest .button {
  position: absolute;
  bottom: 10px;
}
.module-presentation-events .module-presentation-latest .button.responsive-btn {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .module-presentation-events .module-presentation-latest .button.desktop {
    display: none;
  }
  .module-presentation-events .module-presentation-latest .button.responsive-btn {
    display: block;
  }
}
.module-presentation-events .module-presentation-latest .q4icons .module_link-download .q4icons_icon::before {
  content: "\ef3e";
}
.module-presentation-events .module-presentation-latest .module_link:hover {
  text-decoration: none;
}
.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;
}

.why-invest-module p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.module-subscribe-privacy p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.module-subscribe-privacy p a {
  color: #001753;
}

.module-investor-contacts-resources p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.module-investor-contacts-resources .q4icons_icon {
  padding-right: 10px;
}

/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyJmaWxlOi8vL1VzZXJzL21hcmNvc2hlcnJlcmEvRG9jdW1lbnRzL0dpdEh1Yi9xNC1ibGFua190ZW1wbGF0ZV9wZXRtZWQyMDIzaXIvY3NzL3BldG1lZDIwMjNpci9fdmFyaWFibGVzLnNjc3MiLCJmaWxlOi8vL1VzZXJzL21hcmNvc2hlcnJlcmEvRG9jdW1lbnRzL0dpdEh1Yi9xNC1ibGFua190ZW1wbGF0ZV9wZXRtZWQyMDIzaXIvY3NzL19nbG9iYWwvX3Jlc2V0LnNjc3MiLCJmaWxlOi8vL1VzZXJzL21hcmNvc2hlcnJlcmEvRG9jdW1lbnRzL0dpdEh1Yi9xNC1ibGFua190ZW1wbGF0ZV9wZXRtZWQyMDIzaXIvY3NzL19nbG9iYWwvX2FuaW1hdGlvbnMuc2NzcyIsImZpbGU6Ly8vVXNlcnMvbWFyY29zaGVycmVyYS9Eb2N1bWVudHMvR2l0SHViL3E0LWJsYW5rX3RlbXBsYXRlX3BldG1lZDIwMjNpci9jc3MvcGV0bWVkMjAyM2lyL19kZWZhdWx0LnNjc3MiLCJmaWxlOi8vL1VzZXJzL21hcmNvc2hlcnJlcmEvRG9jdW1lbnRzL0dpdEh1Yi9xNC1ibGFua190ZW1wbGF0ZV9wZXRtZWQyMDIzaXIvY3NzL19nbG9iYWwvX21peGlucy5zY3NzIiwiZmlsZTovLy9Vc2Vycy9tYXJjb3NoZXJyZXJhL0RvY3VtZW50cy9HaXRIdWIvcTQtYmxhbmtfdGVtcGxhdGVfcGV0bWVkMjAyM2lyL2Nzcy9wZXRtZWQyMDIzaXIvX3E0aWNvbnMuc2NzcyIsImZpbGU6Ly8vVXNlcnMvbWFyY29zaGVycmVyYS9Eb2N1bWVudHMvR2l0SHViL3E0LWJsYW5rX3RlbXBsYXRlX3BldG1lZDIwMjNpci9jc3MvX2dsb2JhbC9wbHVnaW5zL19ncmlkLnNjc3MiLCJmaWxlOi8vL1VzZXJzL21hcmNvc2hlcnJlcmEvRG9jdW1lbnRzL0dpdEh1Yi9xNC1ibGFua190ZW1wbGF0ZV9wZXRtZWQyMDIzaXIvY3NzL3BldG1lZDIwMjNpci9fdXRpbGl0eS5zY3NzIiwiZmlsZTovLy9Vc2Vycy9tYXJjb3NoZXJyZXJhL0RvY3VtZW50cy9HaXRIdWIvcTQtYmxhbmtfdGVtcGxhdGVfcGV0bWVkMjAyM2lyL2Nzcy9fZ2xvYmFsL19hY2Nlc3NpYmlsaXR5LnNjc3MiLCJmaWxlOi8vL1VzZXJzL21hcmNvc2hlcnJlcmEvRG9jdW1lbnRzL0dpdEh1Yi9xNC1ibGFua190ZW1wbGF0ZV9wZXRtZWQyMDIzaXIvY3NzL19nbG9iYWwvX2phdmFzY3JpcHQuc2NzcyIsImZpbGU6Ly8vVXNlcnMvbWFyY29zaGVycmVyYS9Eb2N1bWVudHMvR2l0SHViL3E0LWJsYW5rX3RlbXBsYXRlX3BldG1lZDIwMjNpci9jc3MvcGV0bWVkMjAyM2lyL21vZHVsZXMvX2FsbC5zY3NzIiwiZmlsZTovLy9Vc2Vycy9tYXJjb3NoZXJyZXJhL0RvY3VtZW50cy9HaXRIdWIvcTQtYmxhbmtfdGVtcGxhdGVfcGV0bWVkMjAyM2lyL2Nzcy9wZXRtZWQyMDIzaXIvbW9kdWxlcy9fYXMtcmVwb3J0ZWQuc2NzcyIsImZpbGU6Ly8vVXNlcnMvbWFyY29zaGVycmVyYS9Eb2N1bWVudHMvR2l0SHViL3E0LWJsYW5rX3RlbXBsYXRlX3BldG1lZDIwMjNpci9jc3MvcGV0bWVkMjAyM2lyL21vZHVsZXMvX2NhbGN1bGF0b3Iuc2NzcyIsImZpbGU6Ly8vVXNlcnMvbWFyY29zaGVycmVyYS9Eb2N1bWVudHMvR2l0SHViL3E0LWJsYW5rX3RlbXBsYXRlX3BldG1lZDIwMjNpci9jc3MvcGV0bWVkMjAyM2lyL21vZHVsZXMvX2NvbW1pdHRlZS5zY3NzIiwiZmlsZTovLy9Vc2Vycy9tYXJjb3NoZXJyZXJhL0RvY3VtZW50cy9HaXRIdWIvcTQtYmxhbmtfdGVtcGxhdGVfcGV0bWVkMjAyM2lyL2Nzcy9wZXRtZWQyMDIzaXIvbW9kdWxlcy9fZGF0YVRhYmxlcy5zY3NzIiwiZmlsZTovLy9Vc2Vycy9tYXJjb3NoZXJyZXJhL0RvY3VtZW50cy9HaXRIdWIvcTQtYmxhbmtfdGVtcGxhdGVfcGV0bWVkMjAyM2lyL2Nzcy9wZXRtZWQyMDIzaXIvbW9kdWxlcy9fZGVwb3NpdC1sb2FuLnNjc3MiLCJmaWxlOi8vL1VzZXJzL21hcmNvc2hlcnJlcmEvRG9jdW1lbnRzL0dpdEh1Yi9xNC1ibGFua190ZW1wbGF0ZV9wZXRtZWQyMDIzaXIvY3NzL3BldG1lZDIwMjNpci9tb2R1bGVzL19kaXZlcnNpdHktbWF0cml4LnNjc3MiLCJmaWxlOi8vL1VzZXJzL21hcmNvc2hlcnJlcmEvRG9jdW1lbnRzL0dpdEh1Yi9xNC1ibGFua190ZW1wbGF0ZV9wZXRtZWQyMDIzaXIvY3NzL3BldG1lZDIwMjNpci9tb2R1bGVzL19kb3dubG9hZHMuc2NzcyIsImZpbGU6Ly8vVXNlcnMvbWFyY29zaGVycmVyYS9Eb2N1bWVudHMvR2l0SHViL3E0LWJsYW5rX3RlbXBsYXRlX3BldG1lZDIwMjNpci9jc3MvcGV0bWVkMjAyM2lyL21vZHVsZXMvX2V2ZW50LnNjc3MiLCJmaWxlOi8vL1VzZXJzL21hcmNvc2hlcnJlcmEvRG9jdW1lbnRzL0dpdEh1Yi9xNC1ibGFua190ZW1wbGF0ZV9wZXRtZWQyMDIzaXIvY3NzL3BldG1lZDIwMjNpci9tb2R1bGVzL19mYXEuc2NzcyIsImZpbGU6Ly8vVXNlcnMvbWFyY29zaGVycmVyYS9Eb2N1bWVudHMvR2l0SHViL3E0LWJsYW5rX3RlbXBsYXRlX3BldG1lZDIwMjNpci9jc3MvcGV0bWVkMjAyM2lyL21vZHVsZXMvX2ZpbmFuY2lhbC5zY3NzIiwiZmlsZTovLy9Vc2Vycy9tYXJjb3NoZXJyZXJhL0RvY3VtZW50cy9HaXRIdWIvcTQtYmxhbmtfdGVtcGxhdGVfcGV0bWVkMjAyM2lyL2Nzcy9wZXRtZWQyMDIzaXIvbW9kdWxlcy9fZm9ybS5zY3NzIiwiZmlsZTovLy9Vc2Vycy9tYXJjb3NoZXJyZXJhL0RvY3VtZW50cy9HaXRIdWIvcTQtYmxhbmtfdGVtcGxhdGVfcGV0bWVkMjAyM2lyL2Nzcy9fZ2xvYmFsL19mb3JtLW1lZXRpbmcuc2NzcyIsImZpbGU6Ly8vVXNlcnMvbWFyY29zaGVycmVyYS9Eb2N1bWVudHMvR2l0SHViL3E0LWJsYW5rX3RlbXBsYXRlX3BldG1lZDIwMjNpci9jc3MvcGV0bWVkMjAyM2lyL21vZHVsZXMvX2dsb3NzYXJ5LnNjc3MiLCJmaWxlOi8vL1VzZXJzL21hcmNvc2hlcnJlcmEvRG9jdW1lbnRzL0dpdEh1Yi9xNC1ibGFua190ZW1wbGF0ZV9wZXRtZWQyMDIzaXIvY3NzL3BldG1lZDIwMjNpci9tb2R1bGVzL19oaWdobGlnaHRzLnNjc3MiLCJmaWxlOi8vL1VzZXJzL21hcmNvc2hlcnJlcmEvRG9jdW1lbnRzL0dpdEh1Yi9xNC1ibGFua190ZW1wbGF0ZV9wZXRtZWQyMDIzaXIvY3NzL3BldG1lZDIwMjNpci9tb2R1bGVzL19pbnNpZGVyLW93bmVyc2hpcC5zY3NzIiwiZmlsZTovLy9Vc2Vycy9tYXJjb3NoZXJyZXJhL0RvY3VtZW50cy9HaXRIdWIvcTQtYmxhbmtfdGVtcGxhdGVfcGV0bWVkMjAyM2lyL2Nzcy9wZXRtZWQyMDIzaXIvbW9kdWxlcy9faW5zdGl0dXRpb25hbC1vd25lcnNoaXAuc2NzcyIsImZpbGU6Ly8vVXNlcnMvbWFyY29zaGVycmVyYS9Eb2N1bWVudHMvR2l0SHViL3E0LWJsYW5rX3RlbXBsYXRlX3BldG1lZDIwMjNpci9jc3MvcGV0bWVkMjAyM2lyL21vZHVsZXMvX2pvYi5zY3NzIiwiZmlsZTovLy9Vc2Vycy9tYXJjb3NoZXJyZXJhL0RvY3VtZW50cy9HaXRIdWIvcTQtYmxhbmtfdGVtcGxhdGVfcGV0bWVkMjAyM2lyL2Nzcy9wZXRtZWQyMDIzaXIvbW9kdWxlcy9fbWVyZ2Vycy1hY3F1aXNpdGlvbnMuc2NzcyIsImZpbGU6Ly8vVXNlcnMvbWFyY29zaGVycmVyYS9Eb2N1bWVudHMvR2l0SHViL3E0LWJsYW5rX3RlbXBsYXRlX3BldG1lZDIwMjNpci9jc3MvcGV0bWVkMjAyM2lyL21vZHVsZXMvX21pc2NlbGxhbmVvdXMuc2NzcyIsImZpbGU6Ly8vVXNlcnMvbWFyY29zaGVycmVyYS9Eb2N1bWVudHMvR2l0SHViL3E0LWJsYW5rX3RlbXBsYXRlX3BldG1lZDIwMjNpci9jc3MvcGV0bWVkMjAyM2lyL21vZHVsZXMvX25hdmlnYXRpb24uc2NzcyIsImZpbGU6Ly8vVXNlcnMvbWFyY29zaGVycmVyYS9Eb2N1bWVudHMvR2l0SHViL3E0LWJsYW5rX3RlbXBsYXRlX3BldG1lZDIwMjNpci9jc3MvcGV0bWVkMjAyM2lyL21vZHVsZXMvX25hdi12Mi5zY3NzIiwiZmlsZTovLy9Vc2Vycy9tYXJjb3NoZXJyZXJhL0RvY3VtZW50cy9HaXRIdWIvcTQtYmxhbmtfdGVtcGxhdGVfcGV0bWVkMjAyM2lyL2Nzcy9wZXRtZWQyMDIzaXIvbW9kdWxlcy9fbmV3cy5zY3NzIiwiZmlsZTovLy9Vc2Vycy9tYXJjb3NoZXJyZXJhL0RvY3VtZW50cy9HaXRIdWIvcTQtYmxhbmtfdGVtcGxhdGVfcGV0bWVkMjAyM2lyL2Nzcy9wZXRtZWQyMDIzaXIvbW9kdWxlcy9fcGFnZXIuc2NzcyIsImZpbGU6Ly8vVXNlcnMvbWFyY29zaGVycmVyYS9Eb2N1bWVudHMvR2l0SHViL3E0LWJsYW5rX3RlbXBsYXRlX3BldG1lZDIwMjNpci9jc3MvcGV0bWVkMjAyM2lyL21vZHVsZXMvX3BlcnNvbi5zY3NzIiwiZmlsZTovLy9Vc2Vycy9tYXJjb3NoZXJyZXJhL0RvY3VtZW50cy9HaXRIdWIvcTQtYmxhbmtfdGVtcGxhdGVfcGV0bWVkMjAyM2lyL2Nzcy9wZXRtZWQyMDIzaXIvbW9kdWxlcy9fcGVlci1hbmFseXNpcy5zY3NzIiwiZmlsZTovLy9Vc2Vycy9tYXJjb3NoZXJyZXJhL0RvY3VtZW50cy9HaXRIdWIvcTQtYmxhbmtfdGVtcGxhdGVfcGV0bWVkMjAyM2lyL2Nzcy9wZXRtZWQyMDIzaXIvbW9kdWxlcy9fcHJlc2VudGF0aW9uLnNjc3MiLCJmaWxlOi8vL1VzZXJzL21hcmNvc2hlcnJlcmEvRG9jdW1lbnRzL0dpdEh1Yi9xNC1ibGFua190ZW1wbGF0ZV9wZXRtZWQyMDIzaXIvY3NzL3BldG1lZDIwMjNpci9tb2R1bGVzL19wcmV2aWV3LXRvb2xiYXIuc2NzcyIsImZpbGU6Ly8vVXNlcnMvbWFyY29zaGVycmVyYS9Eb2N1bWVudHMvR2l0SHViL3E0LWJsYW5rX3RlbXBsYXRlX3BldG1lZDIwMjNpci9jc3MvcGV0bWVkMjAyM2lyL21vZHVsZXMvX3NlYXJjaC5zY3NzIiwiZmlsZTovLy9Vc2Vycy9tYXJjb3NoZXJyZXJhL0RvY3VtZW50cy9HaXRIdWIvcTQtYmxhbmtfdGVtcGxhdGVfcGV0bWVkMjAyM2lyL2Nzcy9wZXRtZWQyMDIzaXIvbW9kdWxlcy9fc2VjLnNjc3MiLCJmaWxlOi8vL1VzZXJzL21hcmNvc2hlcnJlcmEvRG9jdW1lbnRzL0dpdEh1Yi9xNC1ibGFua190ZW1wbGF0ZV9wZXRtZWQyMDIzaXIvY3NzL3BldG1lZDIwMjNpci9tb2R1bGVzL19za2lwLnNjc3MiLCJmaWxlOi8vL1VzZXJzL21hcmNvc2hlcnJlcmEvRG9jdW1lbnRzL0dpdEh1Yi9xNC1ibGFua190ZW1wbGF0ZV9wZXRtZWQyMDIzaXIvY3NzL3BldG1lZDIwMjNpci9tb2R1bGVzL19zbGlkZXIuc2NzcyIsImZpbGU6Ly8vVXNlcnMvbWFyY29zaGVycmVyYS9Eb2N1bWVudHMvR2l0SHViL3E0LWJsYW5rX3RlbXBsYXRlX3BldG1lZDIwMjNpci9jc3MvcGV0bWVkMjAyM2lyL21vZHVsZXMvX3N0b2NrLWNoYXJ0LnNjc3MiLCJmaWxlOi8vL1VzZXJzL21hcmNvc2hlcnJlcmEvRG9jdW1lbnRzL0dpdEh1Yi9xNC1ibGFua190ZW1wbGF0ZV9wZXRtZWQyMDIzaXIvY3NzL3BldG1lZDIwMjNpci9tb2R1bGVzL19zdG9jay1oZWFkZXIuc2NzcyIsImZpbGU6Ly8vVXNlcnMvbWFyY29zaGVycmVyYS9Eb2N1bWVudHMvR2l0SHViL3E0LWJsYW5rX3RlbXBsYXRlX3BldG1lZDIwMjNpci9jc3MvcGV0bWVkMjAyM2lyL21vZHVsZXMvX3N0b2NrLXF1b3RlLnNjc3MiLCJmaWxlOi8vL1VzZXJzL21hcmNvc2hlcnJlcmEvRG9jdW1lbnRzL0dpdEh1Yi9xNC1ibGFua190ZW1wbGF0ZV9wZXRtZWQyMDIzaXIvY3NzL3BldG1lZDIwMjNpci9tb2R1bGVzL19zdWJzY3JpYmUuc2NzcyIsImZpbGU6Ly8vVXNlcnMvbWFyY29zaGVycmVyYS9Eb2N1bWVudHMvR2l0SHViL3E0LWJsYW5rX3RlbXBsYXRlX3BldG1lZDIwMjNpci9jc3MvcGV0bWVkMjAyM2lyL21vZHVsZXMvX3Vuc3Vic2NyaWJlLnNjc3MiLCJmaWxlOi8vL1VzZXJzL21hcmNvc2hlcnJlcmEvRG9jdW1lbnRzL0dpdEh1Yi9xNC1ibGFua190ZW1wbGF0ZV9wZXRtZWQyMDIzaXIvY3NzL3BldG1lZDIwMjNpci9fc3VzdGFpbmFiaWxpdHkuc2NzcyIsImZpbGU6Ly8vVXNlcnMvbWFyY29zaGVycmVyYS9Eb2N1bWVudHMvR2l0SHViL3E0LWJsYW5rX3RlbXBsYXRlX3BldG1lZDIwMjNpci9jc3MvX2dsb2JhbC9sYXlvdXRzL19pZnJhbWUuc2NzcyIsImZpbGU6Ly8vVXNlcnMvbWFyY29zaGVycmVyYS9Eb2N1bWVudHMvR2l0SHViL3E0LWJsYW5rX3RlbXBsYXRlX3BldG1lZDIwMjNpci9jc3MvcGV0bWVkMjAyM2lyL19ibGFuay5zY3NzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQW1CQTtFQUNFO0VBQ0E7RUFDQTs7QUFDQTtFQUpGO0lBS0k7QUFBQTtBQUFBOzs7QUFJRjtFQVRGO0lBVUk7OztBQUVGO0VBWkY7SUFhSTs7OztBQ2hDSjtBQUFBO0FBQUE7QUFJQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtFQXNFRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQUdGO0FBQ0E7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtFQVdFOzs7QUFHRjtFQUNFO0VBQ0EsV0QvQ1U7OztBQ2tEWjtBQUFBO0FBQUE7RUFHRTs7O0FBS0E7QUFBQTtBQUFBO0FBQUE7RUFFRTtFQUNBO0VBQ0E7OztBQUlKO0FBQUE7RUFFRTs7O0FBR0Y7QUFBQTtBQUFBO0FBQUE7RUFJRTtFQUNBOzs7QUFHRjtFQUNFO0VBQ0E7OztBQUdGO0VBQ0U7OztBQUdGO0VBQ0U7OztBQUdGO0FBQUE7RUFFRTtFQUNBOzs7QUFHRjtFQUNFOzs7QUFHRjtFQUNFOzs7QUFHRjtFQUNFO0VBQ0E7OztBQUdGO0VBQ0U7OztBQUdGO0VBQ0U7RUFDQTs7O0FBRUY7RUFDRTtFQUNBOzs7QUFFRjtFQUNFO0VBQ0E7OztBQ2pMRjtBQUVBO0VBQ0U7SUFDRTs7RUFFRjtJQUNFOzs7QUNQSjtBQUFBO0FBQUE7QUFHQTtFQUNFO0VBQ0E7RUFDQSxPSG9EVztFR25EWCxhSHVDVTtFR3RDVjtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQUdGO0VBQ0U7OztBQUdGO0FBQ0E7QUFBQTtFQUVFO0VBQ0E7RUFDQTs7QUN3RkE7RUQ1RkY7QUFBQTtJQU1JOzs7QUMyRkY7RURqR0Y7QUFBQTtJQVNJOzs7O0FBR0o7QUFBQTtFQUVFO0VBQ0E7RUFDQTtFQUNBO0VBQ0EsT0grQndCOztBSTJDeEI7RURoRkY7QUFBQTtJQVFJOzs7O0FBR0o7RUFDRTs7O0FBRUY7QUFBQTtFQUVFO0VBQ0E7RUFDQTtFQUNBO0VBQ0EsT0hpQndCOzs7QUdmMUI7QUFBQTtFQUVFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQUVGO0FBQUE7RUFFRTtFQUNBO0VBQ0E7OztBQUVGO0VBQ0U7RUFDQSxPSEppQjs7QUdLakI7RUFDRSxPSEpvQjs7O0FHT3hCO0VBQ0U7RUFDQTtFQUNBO0VBQ0EsT0hWd0I7OztBR2ExQjtBQUNBO0VBQ0U7OztBQUdBO0VBRUU7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7QUFDQTtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQSxPSGxDb0I7RUdtQ3BCO0VBQ0E7RUFDQTs7QUFDQTtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBSUY7RUFDRSxrQkh6RFc7RUcwRFg7RUFDQTtFQUNBO0VBQ0E7O0FBTUY7RUFDRTtFQUNBO0VBQ0E7RUFDQTs7QUFJTjtFQUNFOzs7QUFHSjtFQUNFOzs7QUFHRjtBQUVFO0VBRUU7RUFDQTs7QUFFRjtFQUNFOzs7QUFJSjtBQUNBO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7QUFDQTtFQUNFOztBQUVGO0VBQ0U7O0FBRUY7RUFDRTs7QUFFRjtFQUNFOzs7QUFJSjtBQUNBO0VBQ0U7OztBQUVGO0VBQ0U7OztBQUVGO0VBQ0U7OztBQUdGO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtFQU1FO0VBQ0E7RUFFQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQSxPSDNJd0I7RUc0SXhCO0VBQ0EsYUhyS1U7RUdzS1Y7RUFDQTtFQUNBOztBQUNBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtFQUNFOzs7QUFHSjtBQUFBO0FBQUE7QUFBQTtFQUlFOzs7QUFFRjtBQUFBO0VBRUU7OztBQUVGO0VBQ0U7RUFDQTtFQUNBOzs7QUFFRjtFQUNFOzs7QUFFRjtFQUNFO0VBQ0EsY0gvS1k7RUdnTFosWUhoTFk7RUdpTFosT0h2S1k7RUd3S1o7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOztBQUNBO0VBRUUsT0huTFU7RUdvTFYsWUh6TG9CO0VHMExwQixjSDFMb0I7O0FHNEx0QjtFQUNFOztBQUVGO0VBQ0UsWUhsTWU7RUdtTWYsY0huTWU7O0FHb01mO0VBRUUsY0h6TVE7RUcwTVIsWUgxTVE7O0FHNE1WO0VBQ0U7O0FBRUY7RUFDRSxZSHRNUTtFR3VNUixjSGpOUTtFR2tOUixPSGxOUTs7QUdxTlo7RUFDRSxjSDVNVTtFRzZNVixrQkg3TVU7RUc4TVYsT0h4TlU7O0FHeU5WO0VBRUUsWUh4TmE7RUd5TmIsY0h6TmE7RUcwTmIsT0huTlE7O0FHcU5WO0VBQ0U7O0FBR0o7RUFDRTtFQUNBLGtCSHZOUztFR3dOVDtFQUNBLE9Idk9VO0VHd09WO0VBQ0E7O0FBQ0E7RUFFRSxrQkg5Tk87RUcrTlA7RUFDQSxPSDFOTzs7QUc0TlQ7RUFDRTs7QUFHSjtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0EsT0h0UGU7RUd1UGY7RUFDQTs7QUFDQTtFQUVFLE9IOVBRO0VHK1BSO0VBQ0E7O0FBQ0E7RUFDRTs7QUFHSjtFQ3pQRixhSnJCVTtFSXNCVjtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFFQTtFQUNBO0VBQ0E7RURrUEk7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQUlOO0VBRUU7RUFFQTtFQUNBO0VBQ0E7O0FBQ0E7RUFDRTs7O0FBSUo7QUFDQTtFQUNFO0VBQ0E7O0FBQ0E7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBOztBQUVGO0VBQ0Usa0JIdlNlO0VHd1NmLE9IalNVOztBR2tTVjtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBSUY7RUFDRSxPSGhUb0I7RUdpVHBCO0VBQ0E7RUFDQTs7QUFFRjtFQUNFLGtCSGxUUTs7QUdvVFY7RUFDRSxrQkhsVE87O0FHcVRYO0FBQUE7QUFBQTtFQUdFO0VBQ0E7O0FBRUY7RUFDRSxPSC9UVTs7QUdnVVY7RUFDRTs7QUFLQTtFQUNFOztBQUVGO0VBQ0Usa0JIdlVLOztBR3lVUDtFQUNFLGtCSHZWTTtFR3dWTjs7QUFDQTtFQUNFLE9IaFZJOztBR3FWWjtFQUNFOztBQzFTRjtFRDhTSTtJQUNFOztFQUVGO0lBQ0U7SUFDQTs7RUFFRjtJQUNFOztFQUNBO0lBQ0U7SUFDQTs7O0FBTU47RUFDRTtFQUNBLE9IalhvQjs7QUdrWHBCO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOztBQUNBO0VBQ0Usa0JIdFhJOztBR3dYTjtFQUNFLGtCSHRYRzs7QUcyWFA7QUFBQTtFQUVFOztBQUVGO0VBQ0UsT0huWks7O0FHcVpQO0VBQ0U7O0FBQ0E7RUFDRSxrQkh4WUk7O0FHMFlOO0VBQ0Usa0JIeFlHOzs7QUc4WWI7RUFDRSxPSHRad0I7RUd1WnhCOzs7QUFHRjtFQUNFO0VBQ0EsT0g1WndCO0VHNlp4QjtFQUNBO0VBQ0E7OztBQUdGO0FBQ0E7RUFDRTtFQUNBO0VBQ0EsWUgvWlc7RUdnYVg7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBQ0E7RUFDRTs7O0FBR0o7RUFDRTtFQUNBO0VBQ0EsWUg5YVc7RUcrYVg7RUFDQTtFQUNBOztBQUNBO0VBQ0U7RUNwYkYsYUpyQlU7RUlzQlY7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBRUE7RUFDQTtFQUNBOztBRDZhQTtFQUNFO0VDeGJGLGFKckJVO0VJc0JWO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUVBO0VBQ0E7RUFDQTs7O0FEbWJGO0FBR0U7QUFBQTtFQUNFOztBQUVGO0FBQUE7RUFDRTs7QUFFRjtBQUFBO0VBQ0U7O0FBRUY7QUFBQTtFQUNFO0VBQ0E7OztBRXZoQko7QUFBQTtBQUFBO0FBSUU7RUR3RUEsYUpyQlU7RUlzQlY7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBRUE7RUFDQTtFQUNBO0VDL0VFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7QUFFRjtBQUFBO0VBRUU7O0FBRUY7RUFDRTtFQUNBOztBQUVGO0FBQUE7QUFBQTtBQUFBO0VBSUU7O0FBRUY7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0VBTUU7O0FBRUY7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0VBTUU7O0FBRUY7QUFBQTtFQUVFOztBQUVGO0FBQUE7QUFBQTtBQUFBO0VBSUU7O0FBRUY7QUFBQTtFQUVFOztBQUVGO0VBRUU7O0FBRUY7RUFFRTs7QUFFRjtFQUVFOztBQUVGO0VBQ0U7O0FBRUY7RUFFRTs7QUFFRjtFQUVFOztBQUVGO0VBRUU7O0FBRUY7RUFFRTs7QUFFRjtFQUVFOztBQUVGO0VBRUU7O0FBRUY7RUFFRTs7QUFFRjtFQUVFOztBQUVGO0VBRUU7O0FBRUY7RUFFRTs7QUFFRjtFQUVFOztBQUVGO0VBQ0U7RUFDQTtFRDNDRixhSnJCVTtFSXNCVjtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFFQTtFQUNBO0VBQ0E7O0FDb0NBO0VBQ0U7RUFDQTtFRGhERixhSnJCVTtFSXNCVjtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFFQTtFQUNBO0VBQ0E7OztBRXRGRjtBQUFBO0FBQUE7QUE0QkE7RUFDRTtFQUNBOztBQUNBO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOztBQUNBO0VBQ0U7O0FBRUY7RUFDRTs7QUFFRjtFQUNFOztBQUVGO0VBQ0U7RUFDQTs7QUFFRjtFQUNFO0VBQ0E7O0FBRUY7RUFDRTtFQUNBOztBQUVGO0VBQ0U7O0FBRUY7RUFDRTs7QUFFRjtFQUNFOztBQUVGO0VBQ0U7O0FBRUY7RUFDRTs7O0FBS047RUFDRTtFQUNBO0VBQ0E7OztBQUdGO0VBQ0U7OztBQUVGO0VBQ0U7OztBQUVGO0VBQ0U7OztBQUVGO0VBQ0U7OztBQUVGO0VBQ0U7OztBQUtGO0VBQ0U7OztBQUdGO0VBQ0U7RUFDQTtFQUNBOzs7QUFFRjtFQUNFO0VBQ0E7RUFDQTs7O0FBRUY7RUFDRTtFQUNBO0VBQ0E7OztBQUVGO0VBQ0U7RUFDQTtFQUNBOzs7QUFFRjtFQUNFO0VBQ0E7RUFDQTs7O0FBT0Y7RUFDRTtFQUNBO0VBQ0E7OztBQUdGO0VBQ0U7OztBQUVGO0VBQ0U7OztBQUVGO0VBQ0U7OztBQUVGO0VBQ0U7OztBQUVGO0VBQ0U7OztBQUtGO0VBQ0U7OztBQUdGO0VBQ0U7OztBQUVGO0VBQ0U7OztBQUVGO0VBQ0U7OztBQUVGO0VBQ0U7OztBQUVGO0VBQ0U7OztBQUtGO0VBQ0U7OztBQU9FO0VBZ0JJOzs7QUFHSjtFQWlCSTtFQUNBO0VBQ0E7OztBQUlGO0VBZ0JJOzs7QUFLSjtFQWdCSTs7O0FBL0VOO0VBZ0JJOzs7QUFHSjtFQWlCSTtFQUNBO0VBQ0E7OztBQUlGO0VBZ0JJOzs7QUFLSjtFQWdCSTs7O0FBL0VOO0VBZ0JJOzs7QUFHSjtFQWlCSTtFQUNBO0VBQ0E7OztBQUlGO0VBZ0JJOzs7QUFLSjtFQWdCSTs7O0FBL0VOO0VBZ0JJOzs7QUFHSjtFQWlCSTtFQUNBO0VBQ0E7OztBQUlGO0VBZ0JJOzs7QUFLSjtFQWdCSTs7O0FBL0VOO0VBZ0JJOzs7QUFHSjtFQWlCSTtFQUNBO0VBQ0E7OztBQUlGO0VBZ0JJOzs7QUFLSjtFQWdCSTs7O0FBL0VOO0VBZ0JJOzs7QUFHSjtFQWlCSTtFQUNBO0VBQ0E7OztBQUlGO0VBZ0JJOzs7QUFLSjtFQWdCSTs7O0FBL0VOO0VBZ0JJOzs7QUFHSjtFQWlCSTtFQUNBO0VBQ0E7OztBQUlGO0VBZ0JJOzs7QUFLSjtFQWdCSTs7O0FBL0VOO0VBZ0JJOzs7QUFHSjtFQWlCSTtFQUNBO0VBQ0E7OztBQUlGO0VBZ0JJOzs7QUFLSjtFQWdCSTs7O0FBL0VOO0VBZ0JJOzs7QUFHSjtFQWlCSTtFQUNBO0VBQ0E7OztBQUlGO0VBZ0JJOzs7QUFLSjtFQWdCSTs7O0FBL0VOO0VBZ0JJOzs7QUFHSjtFQWlCSTtFQUNBO0VBQ0E7OztBQUlGO0VBZ0JJOzs7QUFLSjtFQWdCSTs7O0FBL0VOO0VBZ0JJOzs7QUFHSjtFQWlCSTtFQUNBO0VBQ0E7OztBQUlGO0VBZ0JJOzs7QUFLSjtFQWdCSTs7O0FBL0VOO0VBZ0JJOzs7QUFHSjtFQWlCSTtFQUNBO0VBQ0E7OztBQUlGO0VBZ0JJOzs7QUFLSjtFQWdCSTs7O0FBL0VOO0VBZ0JJOzs7QUFHSjtFQWlCSTtFQUNBO0VBQ0E7OztBQUlGO0VBZ0JJOzs7QUFLSjtFQWdCSTs7O0FBL0VOO0VBZ0JJOzs7QUFHSjtFQWlCSTtFQUNBO0VBQ0E7OztBQUlGO0VBZ0JJOzs7QUFLSjtFQWdCSTs7O0FBL0VOO0VBZ0JJOzs7QUFHSjtFQWlCSTtFQUNBO0VBQ0E7OztBQUlGO0VBZ0JJOzs7QUFLSjtFQWdCSTs7O0FBL0VOO0VBZ0JJOzs7QUFHSjtFQWlCSTtFQUNBO0VBQ0E7OztBQUlGO0VBZ0JJOzs7QUFLSjtFQWdCSTs7O0FBL0VOO0VBZ0JJOzs7QUFHSjtFQWlCSTtFQUNBO0VBQ0E7OztBQUlGO0VBZ0JJOzs7QUFLSjtFQWdCSTs7O0FBL0VOO0VBZ0JJOzs7QUFHSjtFQWlCSTtFQUNBO0VBQ0E7OztBQUlGO0VBZ0JJOzs7QUFLSjtFQWdCSTs7O0FBL0VOO0VBZ0JJOzs7QUFHSjtFQWlCSTtFQUNBO0VBQ0E7OztBQUlGO0VBZ0JJOzs7QUFLSjtFQWdCSTs7O0FBL0VOO0VBZ0JJOzs7QUFHSjtFQWlCSTtFQUNBO0VBQ0E7OztBQUlGO0VBZ0JJOzs7QUFLSjtFQWdCSTs7O0FBL0VOO0VBZ0JJOzs7QUFHSjtFQWlCSTtFQUNBO0VBQ0E7OztBQUlGO0VBZ0JJOzs7QUFLSjtFQWdCSTs7O0FBL0VOO0VBZ0JJOzs7QUFHSjtFQWlCSTtFQUNBO0VBQ0E7OztBQUlGO0VBZ0JJOzs7QUFLSjtFQWdCSTs7O0FBWVY7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBLGNBN1FtQjtFQThRbkI7O0FBQ0E7RUFQRjtJQVFJO0lBQ0E7SUFDQTtJQUNBOzs7QUFFRjtFQUNFO0lBQ0U7SUFDQTs7RUFDUztJQUNQO0lBQ0E7O0VBR0o7SUFDRTs7RUFDUztJQUNQO0lBQ0E7SUFDQTs7RUFHSjtJQUNFOztFQUNTO0lBQ1A7SUFDQTtJQUNBOztFQUdKO0lBQ0U7O0VBQ1M7SUFDUDtJQUNBO0lBQ0E7O0VBR0o7SUFDRTs7RUFDUztJQUNQO0lBQ0E7SUFDQTs7RUFHSjtJQUNFOztFQUNTO0lBQ1A7SUFDQTtJQUNBOztFQU1KO0lBQ0U7O0VBQ1M7SUFDUDtJQUNBO0lBQ0E7OztBQUlOO0VBQ0U7SUFDRTtJQUNBOztFQUNTO0lBQ1A7SUFDQTs7RUFHSjtJQUNFOztFQUNTO0lBQ1A7SUFDQTtJQUNBOztFQUdKO0lBQ0U7O0VBQ1M7SUFDUDtJQUNBO0lBQ0E7O0VBR0o7SUFDRTs7RUFDUztJQUNQO0lBQ0E7SUFDQTs7RUFHSjtJQUNFOztFQUNTO0lBQ1A7SUFDQTtJQUNBOztFQUdKO0lBQ0U7O0VBQ1M7SUFDUDtJQUNB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ZUY7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBQ0E7RUFDRSxrQmpEeGVEO0VpRHllQyxPakRqZlk7O0FpRG1mZDtFQUNFOztBQU1OO0VBQ0U7O0FBRUY7RUFDRTs7QUFFRjtFQUNFOztBN0N0ZFI7RTZDOGNJO0lBV0k7SUFDQTtJQUNBOzs7QUFFRjtFQWZGO0lBZ0JJO0lBQ0E7SUFDQTtJQUNBOzs7QTdDamVSO0U2Q29lSTtJQUdJO0lBQ0E7OztBQUVGO0VBTkY7SUFPSTtJQUNBO0lBQ0E7OztBQUVGO0VBQ0U7O0FBQ0E7RUFDRTs7QUFDQTtFQUNFO0VBQ0E7O0FBR0o7RUFDRTtFQUNBO0VBQ0E7O0FBSU47RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBOztBQUNBO0VBTkY7SUFPSTtJQUNBO0lBQ0E7O0VBQ0E7SUFDRTs7RUFFRjtJQUNFOzs7QUFHSjtFQUNFO0VBQ0E7RUFDQTtFQUNBOztBQUlOO0VBQ0U7RUFDQTtFQUNBOztBQUlGO0U3Q2xnQkYsV0pwSWE7RUlxSWI7RUFDQTtFQUNBLGNFakltQjtFRmtJbkIsZUVsSW1COzs7QTJDc29CckI7QUFPSTtFQUNFOztBQUdKO0VBQ0UsYWpEMW5Ca0I7RWlEMm5CbEIsZ0JqRDNuQmtCOzs7QWlEK25CdEI7QUFFQTtFQUNFOztBQUNBO0VBQ0U7O0FBQ0E7RUFDRTs7QUFJRjtFQUNFOztBQUVGO0VBQ0U7OztBQU1KO0VBQ0U7O0FBRUY7RUFDRTtFQUNBO0VBQ0E7RUFDQSxPakRob0JlO0VpRGlvQmY7RUFDQTs7QUFFRjtFQUNFO0VBQ0E7RUFDQTtFQUNBOztBQUNBO0VBQ0U7O0FBSUo7RUFDRTtFQUNBOztBQUVGO0FBQUE7RUFFRTs7QUFHQTtFQURGO0lBRUk7OztBQUdKO0VBQ0U7RUFDQSxPakRocUJVOzs7QWlEb3FCZDtBQUNBO0VBQ0U7RUFLQTtFQUtBOztBN0Nwb0JBO0U2Q3luQkY7SUFpQkk7OztBQUVGO0VBQ0U7RUFLQTtFQUtBOztBQUtBO0VBaEJGO0lBaUJJO0lBQ0E7SUFDQTs7O0E3Qy9wQko7RTZDNG9CQTtJQXNCSTs7O0FBR0o7RUFDRTtFQUNBOztBQUVFO0VBREY7SUFFSTs7RUFDQTtJQUNFO0lBQ0E7SUFDQTs7RUFDQTtJQUNFOzs7QUFLUjtFQUNFO0VBQ0E7O0FBRUY7RUFDRTtFQUNBOztBQUNBO0VBQ0U7O0FBRUY7RUFDRTtJQUNFOztFQUVGO0lBQ0U7OztBQUlOO0VBQ0U7O0FBR0E7RUFDRTs7QUFJTjtFQUNFOztBN0NsdEJGO0U2Q2l0QkE7SUFHSTs7OztBQU1KO0VBQ0U7RUFDQTtFQUNBOzs7QUFLRjtFQUNFO0VBQ0E7RUFDQTs7O0FBSUo7RUFDRTtFQUNBO0VBQ0E7O0FBQ0E7RUFDRSxPakRweEJzQjs7O0FpRHl4QnhCO0VBQ0U7RUFDQTtFQUNBOztBQUVGO0VBQ0UiLCJmaWxlIjoiZmlsZTovLy9Vc2Vycy9tYXJjb3NoZXJyZXJhL0RvY3VtZW50cy9HaXRIdWIvcTQtYmxhbmtfdGVtcGxhdGVfcGV0bWVkMjAyM2lyL2Nzcy9wZXRtZWQyMDIzaXIvZ2xvYmFsX21hc3Rlci5jc3MifQ== */