/*================== FONTS =========================*/

@font-face {
    font-family: CiscoSans;
    src: url(../fonts/CiscoSansTTExtraLight.woff) format("woff");
    font-style: normal;
    font-weight: 100;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000
  }
  
  @font-face {
    font-family: CiscoSans;
    src: url(../fonts/CiscoSansTTExtraLightOblique.woff) format("woff");
    font-style: oblique;
    font-weight: 100;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000
  }
  
  @font-face {
    font-family: CiscoSans;
    src: url(../fonts/CiscoSansTTLight.woff) format("woff");
    font-style: normal;
    font-weight: 300;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000
  }
  
  @font-face {
    font-family: CiscoSans;
    src: url(../fonts/CiscoSansTTLightOblique.woff) format("woff");
    font-style: oblique;
    font-weight: 300;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000
  }
  
  @font-face {
    font-family: CiscoSans;
    src: url(../fonts/CiscoSansTTRegular.woff) format("woff");
    font-style: normal;
    font-weight: 400;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000
  }
  
  @font-face {
    font-family: CiscoSans;
    src: url(../fonts/CiscoSansTTBold.woff) format("woff");
    font-style: normal;
    font-weight: 700;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000
  }
  
  
  /*===============END FONTS =========================*/
  
  
  /*==================================
  ------------ RESET CSS -----------
  ==================================*/
  
  html,
  body,
  applet,
  object,
  iframe,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  blockquote,
  pre,
  abbr,
  acronym,
  address,
  big,
  cite,
  code,
  del,
  dfn,
  em,
  img,
  ins,
  kbd,
  q,
  s,
  samp,
  small,
  strike,
  strong,
  sub,
  sup,
  tt,
  var,
  b,
  u,
  i,
  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;
  }
  
  *,
  *:before,
  *:after {
    box-sizing: inherit;
  }
  
  html {
    font-size: 10px;
  }
  
  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: bold;
  }
  
  em {
    font-style: italic;
  }
  
  small {
    font-size: 14px;
    font-size: 1.4rem;
  }
  
  sup {
    vertical-align: super;
    font-size: smaller;
  }
  
  sub {
    vertical-align: sub;
    font-size: smaller;
  }
  
  
  /*---------- Animations ----------*/
  
  @keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
  }
  
  
  /*==================================
  --------- DEFAULT STYLES ---------
  ==================================*/
  
  body {
    overflow-x: hidden;
    color: #4d4c4c;
    font-family: "CiscoSans", sans-serif;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.45;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: none;
  }
  
  @media (max-width: 767px) {
    body {
        font-size: 16px;
        font-size: 1.6rem;
    }
  }
  
  
  /*---------- TYPOGRAPHY ----------*/
  
  h1,
  h2,
  h3,
  h4 {
    font-weight: 100;
  }
  
  h1 {
    font-size: 64px;
    font-size: 6.4rem;
    margin-bottom: 25px;
    line-height: 1.2;
  }
  
  h2 {
    font-size: 46px;
    font-size: 4.6rem;
    margin-bottom: 15px;
    line-height: 1.22;
  }
  
  h3 {
    font-size: 38px;
    font-size: 3.8rem;
    margin: 24px 0 10px 0;
    color: #00bceb;
    line-height: 1.22;
  }
  
  h4 {
    font-size: 28px;
    font-size: 2.8rem;
    margin-top: 24px;
    margin-bottom: 5px;
    line-height: 1.29;
  }
  
  h5 {
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 2;
    margin-bottom: 0;
  }
  
  a {
    text-decoration: none;
    color: #1ba0d7;
    transition: color 0.3s ease-in-out;
  }
  
  p {
    margin-top: 0;
    margin-bottom: 15px;
  }
  
  i {
    display: inline-block;
  }
  
  em {
    font-style: italic;
  }
  
  .font-normal {
    font-weight: 400;
  }
  
  @media (max-width: 767px) {
    h1 {
        font-size: 36px;
        font-size: 3.6rem;
    }
    h2 {
        font-size: 23px;
        font-size: 2.3rem;
    }
    h3 {
        font-size: 19px;
        font-size: 1.9rem;
    }
    h4 {
        font-size: 14px;
        font-size: 1.4rem;
    }
    p {
        margin-bottom: 8px;
    }
  }
  
  
  /*------------ 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;
    padding-left: 26px;
    padding-right: 4px;
    position: relative;
    line-height: 2;
    display: inline-block;
    color: #4d4c4c;
    font-size: 16px;
    font-size: 1.6rem;
  }
  
  input[type="checkbox"]+label:before,
  input[type="radio"]+label:before {
    content: "";
    display: inline-block;
    width: 19px;
    height: 19px;
    border-radius: 100%;
    border: 1px solid #cdcdcd;
    margin-right: 8px;
    line-height: 1;
    position: absolute;
    left: 0;
    background: #fff;
    top: 5px;
  }
  
  input[type="checkbox"]:checked+label:after,
  input[type="radio"]:checked+label:after {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 100%;
    background: #1ba0d7;
    position: absolute;
    top: 10px;
    left: 5px;
  }
  
  input[type="radio"]+label:before {
    border-radius: 100%;
  }
  
  input::-ms-clear {
    display: none;
  }
  
  iframe {
    width: 100%;
  }
  
  @media (max-width: 767px) {
    input[type="checkbox"]+label,
    input[type="radio"]+label {
        font-size: 10.5px;
        font-size: 1.05rem;
        padding-left: 20px;
        line-height: 2.5;
    }
    input[type="checkbox"]+label:before,
    input[type="radio"]+label:before {
        width: 14px;
        height: 14px;
        left: 0;
        top: 4px;
    }
    input[type="checkbox"]:checked+label:after,
    input[type="radio"]:checked+label:after {
        width: 6px;
        height: 6px;
        top: 8px;
        left: 4px;
    }
  }
  
  
  /*------- 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--square {
    list-style-type: square;
  }
  
  .list--inside {
    list-style-position: inside;
  }
  
  
  /*------- BUTTONS / INPUTS -------*/
  
  .input,
  .textarea,
  .dropdown,
  .upload,
  .submit,
  .button {
    display: inline-block;
    max-width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 15px 20px;
    background: transparent;
    border: 1px solid #cccccc;
    color: #cccccc;
    border-radius: 50px;
    font-family: "CiscoSans", sans-serif;
    font-size: 14px;
    font-size: 1.4rem;
  }
  
  .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 {
    background: #1ba0d7;
    color: #fff;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 2.135;
    padding: 3px 50px 1px;
    border: none;
    font-weight: 300;
  }
  
  .textarea {
    width: 100%;
    resize: vertical;
  }
  
  .upload {
    line-height: 0;
  }
  
  .button {
    transition: 0.3s ease-in-out;
  }
  
  .button:hover {
    background: #108abe;
    color: #fff;
  }
  
  .button--inverted {
    background: #108abe;
    color: #fff;
  }
  
  .button--inverted:hover {
    background: transparent;
    color: #1ba0d7;
  }
  
  .button--inverted.js--disabled {
    background: #fff;
    border-color: #00bceb;
    color: #00bceb;
  }
  
  .button--dark {
    border: 1px solid #fff;
    color: #fff;
  }
  
  .button--dark:hover {
    background: #fff;
    color: #00bceb;
  }
  
  .button--link {
    padding: 0;
    margin-right: 20px;
    position: relative;
    background: none;
    border-bottom: 1px dotted #fff;
    border-radius: 0;
    color: #4d4c4c;
  }
  
  .dark .button--link {
    color: #fff;
  }
  
  .button--link:after {
    content: "\e90c";
    position: absolute;
    font-family: "q4-icons";
    font-size: 10px;
    font-size: 1rem;
    top: 9px;
    right: -18px;
  }
  
  .button--link:hover {
    border-bottom: 1px solid #fff;
    background: none;
  }
  
  .dropdown {
    padding: 11px 35px 9px 25px;
    background: transparent url("../design/svg/q4-icon_chevron-down-blue.svg") no-repeat right 15px center;
    background-size: 16px 16px;
    min-width: 150px;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 300;
    color: #4d4c4c;
    border-color: #4d4c4c;
  }
  
  .dropdown::-ms-expand {
    display: none;
  }
  
  @media (max-width: 768px) {
    .button--link:after {
        top: 2px;
    }
  }
  
  @media (max-width: 767px) {
    .submit,
    .button {
        font-size: 12px;
        font-size: 1.2rem;
        line-height: 2.4;
        padding: 3px 20px 1px;
    }
    .button--link {
        padding: 0;
    }
  }
  
  
  /*------------ TABLES ------------*/
  
  .table-wrapper {
    overflow-x: auto;
  }
  
  .table {
    width: 100%;
    margin: 16px 0;
  }
  
  .table thead th {
    text-align: left;
    border-bottom: 1px solid #b7b7b7;
  }
  
  .table tbody tr {
    border-bottom: 1px solid #b7b7b7;
  }
  
  .table--no-border tbody tr {
    border-bottom: none;
  }
  
  .table th,
  .table td,
  .table tr>.grid_col {
    margin: 0;
    padding: 8.5px 8px 8.5px 0;
  }
  
  .table td {
    font-size: 14px;
    font-size: 1.4rem;
  }
  
  .table th {
    color: #006fa0;
  }
  
  .table--headless tr:nth-child(even) {
    background-color: transparent;
  }
  
  .table--headless tr:nth-child(odd) {
    background-color: #f6f6f6;
  }
  
  .table--headless tr:first-child {
    background-color: #00bceb;
    text-align: left;
  }
  
  .table--headless tr:first-child td {
    color: #fff;
  }
  
  @media only screen and (max-width: 767px) {
    .table--responsive thead {
        display: none;
    }
    .table--responsive tbody {
        border-top: 2px solid #00bceb;
        border-bottom: 2px solid #00bceb;
    }
    .table--responsive td {
        display: flex;
    }
    .table--responsive td:before {
        content: attr(data-heading) ": ";
        font-weight: bold;
        width: 50%;
        text-align: left;
    }
    .table--responsive td span {
        width: 50%;
        padding-left: 5px;
    }
  }
  
  
  /*--------- SPECIAL BOXES --------*/
  
  .code {
    margin: 32px 0;
    padding: 20px 15px;
    background: #f6f6f6;
    border-left: 3px solid rgba(0, 111, 186, 0.5);
    font-family: monospace, serif;
    font-size: 14px;
    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: #f6f6f6;
    border-left: 3px solid rgba(241, 175, 15, 0.5);
    font-size: 14px;
    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";
  }
  
  
  /*==================================
  -------- Q4 Modules Icons ---------
  ==================================*/
  
  .module_q4-icon-links .module_link:before,
  .module_q4-icon-links .module_rss-link: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: "\eecd";
    font-size: 23px;
    font-size: 2.3rem;
    vertical-align: middle;
    display: inline-block;
    padding-right: 5px;
  }
  
  .module_q4-icon-links .module_rss-link:before,
  .module_q4-icon-links .module_link.module_link-rss:before {
    content: "\eefa";
    font-size: 16px;
    font-size: 1.6rem;
    vertical-align: baseline;
  }
  
  .module_q4-icon-links .module_add-to-calendar-reveal:before {
    content: "\ea5f";
    padding-right: 5px;
  }
  
  .module_q4-icon-links .module_link[href$=".mp3"]:before,
  .module_q4-icon-links .module_link[href$=".wmv"]:before,
  .module_q4-icon-links .module_link[href$=".MP3"]:before,
  .module_q4-icon-links .module_link[href$=".WMV"]:before {
    content: "\e952";
  }
  
  .module_q4-icon-links .module_link[href$=".xls"]:before,
  .module_q4-icon-links .module_link[href$=".xlsx"]:before,
  .module_q4-icon-links .module_link[href$=".XLS"]:before,
  .module_q4-icon-links .module_link[href$=".XLSX"]:before,
  .module_q4-icon-links .module_link[href$=".csv"]:before,
  .module_q4-icon-links .module_link[href$=".XLS"]:before,
  .module_q4-icon-links .module_link[href$=".CSV"]:before {
    content: "\e914";
  }
  
  .module_q4-icon-links .module_link[href$=".mp4"]:before,
  .module_q4-icon-links .module_link[href$=".flv"]:before,
  .module_q4-icon-links .module_link[href$=".avi"]:before,
  .module_q4-icon-links .module_link[href$=".MP4"]:before,
  .module_q4-icon-links .module_link[href$=".FLV"]:before,
  .module_q4-icon-links .module_link[href$=".AVI"]:before {
    content: "\e95e";
  }
  
  .module_q4-icon-links .module_link[href$=".pdf"]:before,
  .module_q4-icon-links .module_link[href$=".PDF"]:before {
    content: "\e915";
  }
  
  .module_q4-icon-links .module_link.module_link-webcast:before,
  .module_q4-icon-links .module_webcast-link:before {
    content: "\e919";
  }
  
  .module_q4-icon-links .module_link.module_link-news:before,
  .module_q4-icon-links .module_link.module_link-transcript:before {
    content: "\e913";
  }
  
  .module_q4-icon-links .module_link.module_link-presentation:before {
    content: "\e95c";
  }
  
  .module_q4-icon-links .module_link.module_link-file:before {
    content: "\e913";
  }

  .module_q4-icon-links .module_link.module_link-video:before {
    content: "\e95e";
  }
  
  .module_q4-icon-links .module_link.module_link-sec:before {
    content: "\e912";
  }
  
  .module_q4-icon-links .module_link.module_link-sec[href$=".pdf"]:before {
    content: "\e915";
  }
  
  .module_q4-icon-links .module_link.module_link-sec[href$=".rtf"]:before {
    content: "\e916";
  }
  
  .module_q4-icon-links .module_link.module_link-sec[href$=".xls"]:before {
    content: "\e910";
  }
  
  .module_q4-icon-links .module_link.module_link-sec[href$=".zip"]:before {
    content: "\e91c";
  }
  
  
  /*==================================
  ----------- TOAST GRID -----------
  ==================================*/
  
  .grid {
    list-style: none;
    margin-left: -20px;
  }
  
  .grid_col--1-of-1,
  .grid_col--2-of-2,
  .grid_col--3-of-3,
  .grid_col--4-of-4,
  .grid_col--5-of-5,
  .grid_col--6-of-6,
  .grid_col--7-of-7,
  .grid_col--8-of-8,
  .grid_col--12-of-12 {
    width: 100%;
  }
  
  .grid_col--1-of-2,
  .grid_col--2-of-4,
  .grid_col--3-of-6,
  .grid_col--4-of-8,
  .grid_col--6-of-12 {
    width: 50%;
  }
  
  .grid_col--1-of-3,
  .grid_col--2-of-6,
  .grid_col--4-of-12 {
    width: 33.3333333333%;
  }
  
  .grid_col--2-of-3,
  .grid_col--4-of-6,
  .grid_col--8-of-12 {
    width: 66.6666666667%;
  }
  
  .grid_col--1-of-4,
  .grid_col--2-of-8,
  .grid_col--3-of-12 {
    width: 25%;
  }
  
  .grid_col--3-of-4,
  .grid_col--6-of-8,
  .grid_col--9-of-12 {
    width: 75%;
  }
  
  .grid_col--push-1-of-1,
  .grid_col--push-2-of-2,
  .grid_col--push-3-of-3,
  .grid_col--push-4-of-4,
  .grid_col--push-5-of-5,
  .grid_col--push-6-of-6,
  .grid_col--push-7-of-7,
  .grid_col--push-8-of-8,
  .grid_col--push-12-of-12 {
    margin-left: 100%;
  }
  
  .grid_col--push-1-of-2,
  .grid_col--push-2-of-4,
  .grid_col--push-3-of-6,
  .grid_col--push-4-of-8,
  .grid_col--push-6-of-12 {
    margin-left: 50%;
  }
  
  .grid_col--push-1-of-3,
  .grid_col--push-2-of-6,
  .grid_col--push-4-of-12 {
    margin-left: 33.3333333333%;
  }
  
  .grid_col--push-2-of-3,
  .grid_col--push-4-of-6,
  .grid_col--push-8-of-12 {
    margin-left: 66.6666666667%;
  }
  
  .grid_col--push-1-of-4,
  .grid_col--push-2-of-8,
  .grid_col--push-3-of-12 {
    margin-left: 25%;
  }
  
  .grid_col--push-3-of-4,
  .grid_col--push-6-of-8,
  .grid_col--push-9-of-12 {
    margin-left: 75%;
  }
  
  .grid_col--pull-1-of-1,
  .grid_col--pull-2-of-2,
  .grid_col--pull-3-of-3,
  .grid_col--pull-4-of-4,
  .grid_col--pull-5-of-5,
  .grid_col--pull-6-of-6,
  .grid_col--pull-7-of-7,
  .grid_col--pull-8-of-8,
  .grid_col--pull-12-of-12 {
    margin-left: -100%;
  }
  
  .grid_col--pull-1-of-2,
  .grid_col--pull-2-of-4,
  .grid_col--pull-3-of-6,
  .grid_col--pull-4-of-8,
  .grid_col--pull-6-of-12 {
    margin-left: -50%;
  }
  
  .grid_col--pull-1-of-3,
  .grid_col--pull-2-of-6,
  .grid_col--pull-4-of-12 {
    margin-left: -33.3333333333%;
  }
  
  .grid_col--pull-2-of-3,
  .grid_col--pull-4-of-6,
  .grid_col--pull-8-of-12 {
    margin-left: -66.6666666667%;
  }
  
  .grid_col--pull-1-of-4,
  .grid_col--pull-2-of-8,
  .grid_col--pull-3-of-12 {
    margin-left: -25%;
  }
  
  .grid_col--pull-3-of-4,
  .grid_col--pull-6-of-8,
  .grid_col--pull-9-of-12 {
    margin-left: -75%;
  }
  
  .grid_col--1-of-5 {
    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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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: -.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: -.24em;
    }
    .grid_col.grid_col--lg-1-of-1 {
        width: 100%;
    }
    .grid_col.grid_col--lg-1-of-2,
    .grid_col.grid_col--lg-2-of-4 {
        width: 50%;
    }
    .grid_col.grid_col--lg-1-of-3 {
        width: 33.3333333333%;
    }
    .grid_col.grid_col--lg-2-of-3 {
        width: 66.6666666667%;
    }
    .grid_col.grid_col--lg-1-of-4 {
        width: 25%;
    }
    .grid_col.grid_col--lg-3-of-4 {
        width: 75%;
    }
  }
  
  @media (max-width: 1024px) and (min-width: 769px) {
    .grid_col[class*="grid_col--lc-"] {
        display: inline-block;
        margin-right: -.24em;
    }
    .grid_col.grid_col--lc-1-of-1 {
        width: 100%;
    }
    .grid_col.grid_col--lc-1-of-2,
    .grid_col.grid_col--lc-2-of-4 {
        width: 50%;
    }
    .grid_col.grid_col--lc-1-of-3 {
        width: 33.3333333333%;
    }
    .grid_col.grid_col--lc-2-of-3 {
        width: 66.6666666667%;
    }
    .grid_col.grid_col--lc-1-of-4 {
        width: 25%;
    }
    .grid_col.grid_col--lc-3-of-4 {
        width: 75%;
    }
  }
  
  @media (max-width: 768px) and (min-width: 481px) {
    .grid_col[class*="grid_col--md-"] {
        display: inline-block;
        margin-right: -.24em;
    }
    .grid_col.grid_col--md-1-of-1 {
        width: 100%;
    }
    .grid_col.grid_col--md-1-of-2,
    .grid_col.grid_col--md-2-of-4 {
        width: 50%;
    }
    .grid_col.grid_col--md-1-of-3 {
        width: 33.3333333333%;
    }
    .grid_col.grid_col--md-2-of-3 {
        width: 66.6666666667%;
    }
    .grid_col.grid_col--md-1-of-4 {
        width: 25%;
    }
    .grid_col.grid_col--md-3-of-4 {
        width: 75%;
    }
  }
  
  @media (max-width: 480px) {
    .grid_col[class*="grid_col--sm-"] {
        display: inline-block;
        margin-right: -.24em;
    }
    .grid_col.grid_col--sm-1-of-2,
    .grid_col.grid_col--sm-2-of-4 {
        width: 50%;
    }
    .grid_col.grid_col--sm-1-of-3 {
        width: 33.3333333333%;
    }
    .grid_col.grid_col--sm-2-of-3 {
        width: 66.6666666667%;
    }
    .grid_col.grid_col--sm-1-of-4 {
        width: 25%;
    }
    .grid_col.grid_col--sm-3-of-4 {
        width: 75%;
    }
  }
  
  .grid_col--centered {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  
  .grid_col--d-first {
    float: left;
  }
  
  .grid_col--d-last {
    float: right;
  }
  
  .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--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.1;
    border-color: #333333;
    color: #333333;
    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;
  }
  
  .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: #00bceb;
  }
  
  .background--alt-brand {
    background-color: #f1af0f;
  }
  
  .background--dark {
    background-color: #222;
  }
  
  .background--light {
    background-color: #fff;
  }
  
  .background--grey {
    background-color: #f6f6f6;
  }
  
  .background--success {
    background-color: #23a217;
  }
  
  .background--error {
    background-color: #b72121;
  }
  
  .color--brand {
    color: #00bceb;
  }
  
  .color--dark {
    color: #222;
  }
  
  .color--grey {
    color: #f6f6f6;
  }
  
  .color--success {
    color: #23a217;
  }
  
  .color--error {
    color: #b72121;
  }
  
  .dark {
    color: #fff;
  }
  
  .dark a {
    color: #fff;
  }
  
  
  /*==================================
  --------- ACCESSIBILITY ----------
  ==================================*/
  
  *:focus {
    outline: none;
  }
  
  a:focus {
    text-decoration: underline !important;
  }
  
  .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: 0px;
  }
  
  
  /*---------- 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: 50px;
    font-size: 5rem;
    animation: spin 0.8s infinite linear;
  }
  
  .js--hidden:not([role=tabpanel]) {
    display: none !important;
  }
  
  .js--hidden[role=tabpanel] {
    display: none;
  }
  
  .js--visible {
    display: block;
  }
  
  .js--disabled {
    opacity: 0.1;
    border-color: #333333;
    color: #333333;
    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_error-container:not(:empty) {
    margin-bottom: 30px;
    color: #b72121;
  }
  
  .module_add-to-calendar-reveal {
    color: #00739d;
    cursor: pointer;
  }
  
  .module_add-to-calendar-reveal:hover,
  .module_add-to-calendar-reveal:focus {
    text-decoration: underline;
  }
  
  .dark .module_add-to-calendar-reveal {
    color: #fff;
  }
  
  .module_add-to-calendar-list {
    display: none;
  }
  
  .module_add-to-calendar-list:after {
    content: "Select your Calendar";
    display: block;
    margin-top: 15px;
    font-size: 14px;
    font-size: 1.4rem;
    text-align: center;
  }
  
  .fancybox-container .module_add-to-calendar-list {
    padding: 70px;
  }
  
  .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: 24px;
    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: 14px;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.72;
  }
  
  @media (max-width: 768px) {
    .module_date-time {
        font-size: 12px;
        font-size: 1.2rem;
    }
  }
  
  .module_error-container {
    display: block;
  }
  
  .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: normal;
  }
  
  .module_headline-link {
    color: #4d4c4c;
    font-weight: 700;
    line-height: 1.35;
  }
  
  .module_image {
    display: inline-block;
    max-width: 30%;
    margin-bottom: 16px;
  }
  
  .module_image--right {
    float: right;
    margin-left: 32px;
  }
  
  .module_image--left {
    float: left;
    margin-right: 32px;
  }
  
  .module_introduction {
    margin-bottom: 35px;
  }
  
  .module_item {
    padding: 30px 0 10px;
  }
  
  .module_item~.module_item {
    border-top: 1px solid #b7b7b7;
  }
  
  .module_label {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  
  .module_label+.module_required {
    font-size: 14px;
    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 5px 0;
    font-size: 14px;
    font-size: 1.4rem;
    color: #00739d;
    line-height: 1.72;
  }
  
  .module_link:hover {
    text-decoration: underline;
  }
  
  .module_link>.module_link-text,
  .module_link>i,
  .module_link>span {
    vertical-align: middle;
  }
  
  .module_link>i:before {
    display: block;
  }
  
  .module_link[style="DISPLAY:block;"],
  .module_link[style="display: block;"] {
    display: inline-block !important;
  }
  
  .module_links--separator>*:not(:first-child):not(:empty):not(div.module_attachment)::before {
    content: '|';
    margin: 2px 10px 0;
    display: inline-block;
    font-size: 14px;
    font-size: 1.4rem;
    vertical-align: top;
    color: #4195b4;
  }
  
  .module_links--separator .module_link {
    margin-right: 0;
  }
  
  .module_links--separator .module_attachments li:not(:first-child):before,
  .module_links--separator .module_attachment a:not(:first-child):before,
  .module_links--separator .module_attachment > span:not(:first-child):before,
  .module_links--separator .module_financials li:not(:first-child):before {
    content: '|';
    margin: 2px 10px 0;
    display: inline-block;
    font-size: 14px;
    font-size: 1.4rem;
    vertical-align: top;
    color: #4195b4;
  }
  
  .dark .module_links--separator>*:not(:first-child):not(:empty):before,
  .dark .module_links--separator .module_attachments li:not(:first-child):before,
  .dark .module_links--separator .module_attachment a:not(:first-child):before,
  .dark .module_links--separator .module_financials li:not(:first-child):before {
    color: #fff;
  }
  
  .module_links--separator .js--hidden+div:before {
    display: none !important;
  }
  
  @media only screen and (max-width:767px) {
    .module_links--separator .module_link {
        margin-right: 0;
    }
    .module_links--separator .module_attachments li:not(:first-child):before,
    .module_links--separator .module_attachment a:not(:first-child):before,
    .module_links--separator .module_attachment > span:not(:first-child):before,
    .module_links--separator .module_financials li:not(:first-child):before,
    .module_links--separator>*:not(:first-child):not(:empty):before {
        content: none;
    }
    .module_links--separator.module_links>*,
    .module_links--separator.module_links li,
    .module_links--separator.module_links .module_presentation,
    .module_links--separator .module_attachment > span {
        display: block;
    }
  }
  
  .module_loader {
    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: #23a217;
  }
  
  .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_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 #00bceb;
    color: #333333;
    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: #00bceb;
    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-label,
  .module_options-select {
    margin-right: 10px;
  }
  
  @media only screen and (max-width: 480px) {
    .module_options-label,
    .module_options-select,
    .module_options-submit {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
  }
  
  .module_pager a {
    color: #333333;
  }
  
  .module_pager a[href] {
    color: #00bceb;
  }
  
  .module_reminder .module_input.module_reminder-period,
  .module_reminder .module_input.module_reminder-email {
    margin-right: 10px;
  }
  
  .module_reminder.js--reminded {
    display: none;
  }
  
  .module_required {
    color: #333333;
  }
  
  .module_required-text {
    font-size: 13px;
    font-size: 1.3rem;
    color: #333333;
  }
  
  .module_rss {
    float: right;
    margin-bottom: 8px;
  }
  
  .module_speakers li {
    margin-bottom: 5px;
  }
  
  .module_title {
    font-size: 38px;
    font-size: 3.8rem;
    font-weight: 100;
    line-height: 1.45;
  }
  
  .module_view-all-link {
    font-size: 14px;
    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: 2px 25px;
    border: 1px solid #ccc;
    border-radius: 50px;
    background-color: #fff;
    font-family: inherit;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 2.27;
    color: #757575;
    min-height: 42px;
  }
  
  .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 textarea.module_input {
    resize: vertical;
    min-height: 120px;
    padding: 10px 25px;
  }
  
  .module_input[type="file"],
  .module_dropdown {
    cursor: pointer;
  }
  
  .module_input[type="file"] {
    line-height: 1;
  }
  
  .module_input--brand[type="text"] {
    display: inline-block;
    width: auto;
    padding: 2px 20px;
    border: 2px solid #00bceb;
    background: transparent;
  }
  
  .module_dropdown {
    background: #f6f6f6 url("../design/svg/q4-icon_chevron-down-black.svg") no-repeat right 20px center;
    background-size: 14px 14px;
  }
  
  .module_dropdown::-ms-expand {
    display: none;
  }
  
  .module-details .module_date-time {
    margin-bottom: 15px;
  }
  
  @media (max-width: 767px) {
    .module_title {
        font-size: 28px;
        font-size: 2.8rem;
    }
    .module_reminder-period,
    .module_input--brand[type="text"],
    .module_reminder-email {
        display: block;
        margin-bottom: 10px;
    }
    .module_input[type="text"],
    .module_input[type="email"],
    .module_input[type="file"],
    .module_dropdown,
    .module textarea.module_input {
        padding: 2.5px 25px 0.5px;
        font-size: 12px;
        font-size: 1.2rem;
        line-height: 2.27;
        min-height: 32px;
    }
  }
  
  
  /*------- Captcha Component ------*/
  
  .CaptchaContainer {
    display: none;
  }
  
  .CaptchaContainer table tr:nth-child(1) {
    display: none;
  }
  
  .CaptchaContainer table tr:nth-child(2) td {
    padding-bottom: 20px;
  }
  
  .CaptchaContainer table tr:nth-child(3) td {
    padding-bottom: 5px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  
  .CaptchaContainer table tr:nth-child(3) td span {
    display: none !important;
  }
  
  .CaptchaContainer table tr:nth-child(4) span {
    display: none !important;
  }
  
  .CaptchaContainer table tr td {
    padding-right: 10px;
  }
  
  @media only screen and (max-width: 768px) {
    .CaptchaContainer table tr td {
        padding-right: 0;
    }
  }
  
  .CaptchaContainer input[type="text"] {
    appearance: none;
    -webkit-appearance: none;
    display: block;
    max-width: none;
    padding: 15px 20px;
    border: 1px solid #ccc;
    border-radius: 50px;
    background-color: #fff;
    font-family: inherit;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 300;
  }
  
  .fancybox-container .CaptchaContainer table tr:nth-child(4) td {
    padding-bottom: 20px;
  }
  
  .fancybox-container .CaptchaContainer table tr td {
    padding-right: 0;
  }
  
  @media (max-width: 767px) {
    .CaptchaContainer input[type="text"] {
        padding: 2.5px 25px 0.5px;
        line-height: 1.77;
    }
  }
  
  
  /*- Investment Calculator Widget -*/
  
  .module-calculator_input:not(:last-of-type) {
    margin-bottom: 20px;
  }
  
  .module-calculator_input h4 {
    margin-bottom: 12px;
  }
  
  .module-calculator_input label {
    display: inline-block;
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 5px;
  }
  
  .module-calculator_input input[type="checkbox"]+label {
    margin: 0;
  }
  
  .module-calculator_input-row {
    padding-bottom: 3px;
  }
  
  .module-calculator_input-row input[type="text"] {
    margin-top: 10px;
    max-width: 300px;
  }
  
  .module-calculator_input-row--other input[type="text"] {
    display: none;
  }
  
  .module-calculator_input-row--other input[type="text"].js--revealed {
    display: block;
  }
  
  @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 #00bceb;
        border-bottom: 2px solid #00bceb;
    }
    .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--tablet {
    display: none;
    border: 1px solid #abb9c5;
    border-radius: 7px;
  }
  
  .module-committee .module_header {
    display: block;
    border-bottom: 1px solid #b7b7b7;
  }
  
  .module-committee .module_item {
    padding: 0;
  }
  
  .module_header-text {
    font-size: 18px;
    font-size: 1.8rem;
    color: #006fa0;
  }
  
  .module-committee .grid_col {
    padding: 8.5px 10px;
    text-align: center;
    vertical-align: middle;
  }
  
  .module-committee .grid_col:first-child {
    text-align: left;
    font-size: 14px;
    font-size: 1.4rem;
  }
  
  .module-committee_category .module_header i {
    color: #00bceb;
  }
  
  .module-committee_category.js--active .module_header i {
    transform: rotate(180deg);
  }
  
  .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: 15px 15px;
    margin: 5px 0;
    font-size: 14px;
    font-size: 1.4rem;
  }
  
  .module-committee_legend {
    display: inline-block;
    margin-right: 30px;
    margin-bottom: 5px;
  }
  
  .module-committee_legend i {
    margin-right: 5px;
  }
  
  .module-committee .module_item .grid_col:nth-child(2),
  .module-committee .module_header .grid_col:nth-child(2) {
    display: none;
  }
  
  .module-committee .module_header-text a {
    color: #006fa0;
  }
  
  @media (max-width: 1024px) {
    .module_header-text {
        font-size: 14px;
        font-size: 1.4rem;
    }
  }
  
  @media only screen and (max-width: 768px) {
    .module-committee .module_container--desktop {
        display: none;
    }
    .module-committee .module_container--tablet {
        display: block;
    }
    .module-committee_category:last-child .module_header {
        border-bottom: none;
    }
    .module-committee_category:last-child .module_items-container {
        border-top: 1px solid #b7b7b7;
    }
    .module-committee .module_header {
        padding: 8.5px 0 8.5px 15px;
    }
    .module-committee .js--active .module_header {
        color: #00bceb;
    }
    .module-committee .grid_col:first-child {
        font-size: 18px;
        font-size: 1.8rem;
        padding-left: 0;
        padding-right: 0;
    }
    .module-committee .module_item .grid_col:first-child {
        padding: 11.5px 15px;
    }
    .module-committee .module_item .grid_col:nth-child(2),
    .module-committee .module_header .grid_col:nth-child(2) {
        display: inline-block;
    }
    .module-committee_legend-container {
        padding-left: 2px;
    }
    .module-committee_legend {
        display: block;
        width: 100%
    }
  }
  
  
  /*----- 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;
    margin-bottom: 0;
  }
  
  .module-downloads_title-link {
    margin: 0 20px 0 0;
  }
  
  .module-downloads_title-link:before {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
  }
  
  .module-downloads--thumbnail .module-downloads_thumbnail {
    display: block;
  }
  
  .module-downloads--with-description .module-downloads_description,
  .module-downloads--with-description .module_file-type {
    display: block;
    font-size: 12px;
    font-size: 1.2rem;
    font-style: italic;
  }
  
  
  /*--------- Event Module ---------*/
  
  .module-event .module_location,
  .module-event .module_speakers h4,
  .module-event .module_body {
    display: none;
  }
  
  .module-event .module_options {
    margin-bottom: 0;
  }
  
  .module-event-details .module_speakers h4 {
    display: none;
  }
  
  .module-event-latest .module_container--content {
    margin-bottom: 20px;
  }
  
  .module-event-latest .module_item {
    margin: 10px 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.grid_col {
    padding-left: 20px;
  }
  
  .module-event-latest .module_item-wrap {
    padding: 30px;
    background-color: #f6f6f6;
  }
  
  .module-event-latest .module_date-time {
    margin-bottom: 15px;
    font-weight: normal;
  }
  
  .module-event-latest .module_headline {
    line-height: 150%;
    font-weight: 200;
  }
  
  .module-event-latest .module_links {
    margin: 0;
  }
  
  .module-event-latest.background--grey .module_item-wrap {
    background-color: #fff;
  }
  
  .module-event-latest.module-event-list .module_item {
    padding-left: 0;
    padding-top: 20px;
  }
  
  .module-event-latest.module-event-list .module_item+.module_item {
    border-top: 1px solid #dddddd;
  }
  
  .module-event-upcoming .module_rss {
    margin-top: 5px;
  }
  
  .module-event-upcoming .module_nav {
    display: none;
  }
  
  .module-event-upcoming .module_item {
    padding: 0 10px 10px 20px;
  }
  
  .module-event-upcoming .module_item:nth-child(even) {
    padding-right: 0;
  }
  
  .module-event-upcoming .module_item~.module_item {
    border: none;
  }
  
  .module-event-upcoming .module_item-wrap {
    background: #f2f2f2;
    padding: 35px 30px;
  }
  
  .module-event-upcoming .module_title {
    margin-bottom: 35px;
  }
  
  .module-event-upcoming .module_links {
    margin-bottom: 0;
  }
  
  .module--columns .module_item {
    padding: 0 10px 10px 20px;
  }
  
  .module--columns .module_item:nth-child(even) {
    padding-right: 0;
  }
  
  .module--columns .module_item~.module_item {
    border: none;
  }
  
  .module--columns .module_item-wrap {
    border-bottom: 1px solid #b7b7b7;
    height: 100%;
  }
  
  .module--columns .module_item:first-child .module_item-wrap,
  .module--columns .module_item:nth-child(2) .module_item-wrap,
  .module--columns .module_item:nth-child(6n+1) .module_item-wrap,
  .module--columns .module_item:nth-child(6n+2) .module_item-wrap {
    border-top: 1px solid #b7b7b7;
    padding-top: 15px;
  }
  
  .module--columns .module_options-wrap {
    display: flex;
    justify-content: space-between;
    padding-bottom: 40px;
  }
  
  .module-event-calendar {
    display: table;
    width: 100%;
  }
  
  .module-event-calendar_calendar-container,
  .module-event-calendar_event-container {
    display: table-cell;
    width: 50%;
    text-align: center;
    vertical-align: middle;
  }
  
  .module-event-calendar_calendar-container {
    padding-right: 20px;
  }
  
  .module-event-calendar_event-container {
    padding: 50px;
    background-color: #f6f6f6;
  }
  
  .module-event-calendar_splash i {
    font-size: 40px;
    font-size: 4rem;
    color: #00bceb;
  }
  
  .module-event-calendar_splash p {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.2;
  }
  
  .module-event-calendar_controls {
    padding: 20px 15px;
    background-color: #00bceb;
    font-weight: bold;
    color: #fff;
  }
  
  .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 {
    border-bottom: 1px solid rgba(0, 111, 186, 0.2);
  }
  
  .module-event-calendar_day {
    position: relative;
    width: 14.285%;
    margin: 0;
    padding: 8px 0 25px;
    border-top: 1px solid rgba(0, 111, 186, 0.2);
    border-left: 1px solid rgba(0, 111, 186, 0.2);
  }
  
  .module-event-calendar_day.calendar-dow-6 {
    border-right: 1px solid rgba(0, 111, 186, 0.2);
  }
  
  .module-event-calendar_day--name {
    padding: 15px 0 10px;
    border: none;
  }
  
  .module-event-calendar_day--today {
    background: #f6f6f6;
  }
  
  .module-event-calendar_day--event {
    cursor: pointer;
  }
  
  .module-event-calendar_day--event:after {
    content: "";
    position: absolute;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: block;
    height: 4px;
    background-color: #00bceb;
  }
  
  .module-event-calendar_day--selected {
    background-color: #00bceb;
    color: #fff;
  }
  
  .module-event-calendar_day--selected:after {
    background-color: #fff;
  }
  
  .module-event-calendar_day--adjacent-month {
    color: rgba(51, 51, 51, 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_item {
    padding: 0;
  }
  
  .module-event-calendar .module_date-time,
  .module-event-calendar .module_headline {
    margin-bottom: 20px;
  }
  
  .module-event-calendar .module_add-to-calendar {
    margin: 0;
  }
  
  @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-upcoming .module_item {
        padding-right: 0;
        padding-bottom: 20px;
    }
    .module-event-calendar_calendar-container {
        padding-right: 0;
    }
    .module-event-calendar_event-container {
        margin-top: 20px;
    }
    .module-event-upcoming .module_item-wrap {
        padding: 15px 20px;
    }
    .module--columns .module_item {
        padding-right: 0;
    }
    .module--columns .module_item:nth-child(2) .module_item-wrap,
    .module--columns .module_item:nth-child(6n+2) .module_item-wrap {
        border-top: none;
        padding-top: 0;
    }
  }
  
  
  /*---------- FAQ Module ----------*/
  
  .module_toggle-item,
  .module-faq .module_item {
    padding: 15px 20px 12px;
  }
  
  .module_toggle-items,
  .module-faq .module_container--content {
    border: 1px solid #abb9c5;
    border-radius: 7px;
  }
  
  .module_toggle-title,
  h4.module-faq_question {
    margin-top: 0;
    margin-bottom: 0;
    padding-right: 35px;
    cursor: pointer;
    font-weight: 500;
    font-size: 18px;
    font-size: 1.8rem;
    text-transform: none;
    color: #22272b;
    position: relative;
  }
  
  .js--active .module_toggle-title,
  .js--active .module-faq_question {
    color: #1ba0d7;
  }
  
  .module_toggle-title:before,
  .module-faq .module_item>h4:before {
    font-family: "q4-icons";
    content: "\e903";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #1ca0d7;
  }
  
  .js--active .module_toggle-title:before,
  .module-faq .module_item.js--active>h4:before {
    transform: translateY(-50%) rotate(180deg);
  }
  
  .module_toggle-panel,
  .module-faq_answer {
    padding-top: 10px;
    padding-right: 35px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  
  .module-faq_answer p {
    margin: 0;
    padding: 0 0 10px;
  }
  
  .module-faq .toggle-all a:before {
    content: "Show all";
  }
  
  .module-faq .toggle-all.js--active a:before {
    content: "Hide all";
  }
  
  
  /*--- Financial Report Modules ---*/
  
  .module-financial-year .module_cover {
    margin-bottom: 15px;
  }
  
  .module-financial-year .module_cover img {
    display: inline-block;
    border: 1px solid #00bceb;
  }
  
  .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-financial_year {
    text-align: center;
  }
  
  .module-financial-quarter .module_item {
    padding: 0;
  }
  
  .module-financial-quarter .module_item~.module_item {
    border: none;
  }
  
  .module-financial-quarter .module_item.js--active h3:after {
    content: "\ed5e";
  }
  
  .module-financial-quarter .module_links {
    margin: 0;
    padding: 15px;
  }
  
  .module-financial-quarter .module_links>div {
    display: block;
  }
  
  .module-financial-quarter .module_link {
    margin-bottom: 10px;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: normal;
    text-transform: none;
  }
  
  .module-financial-quarter .module-financial_year-text {
    padding: 20px 15px;
    margin-bottom: 10px;
    background-color: #00bceb;
    color: #fff;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
    cursor: pointer;
  }
  
  .module-financial-quarter .module-financial_year-text:after {
    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: "\ed5d";
  }
  
  .module-financial-annual .module_title,
  .module-financial-annual .module_options {
    text-align: center;
  }
  
  .module-financial-annual .module_container--content {
    padding-top: 20px;
  }
  
  .module-financial-annual .module_item {
    padding: 0;
    border: none;
    margin: 0;
  }
  
  .module-financial-annual_item {
    padding: 19px 65px 19px 0;
    border-bottom: 1px solid #b7b7b7;
    position: relative;
  }
  
  .module-financial-annual_item .module_link {
    font-size: 18px;
    font-size: 1.8rem;
    color: #4d4c4c;
    margin-bottom: 0;
  }
  
  .module-financial-annual_item .module_link:hover {
    color: #00739d;
  }
  
  .module-financial-annual_item .module_link:before {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    content: "\e912";
    color: #00739d;
  }
  
  .module-financial-annual .module_link[href$=".pdf"]:before,
  .module-financial-annual .module_link[href$=".PDF"]:before {
    content: "\e915";
  }
  
  .module-financial-annual .module_link[href$=".XLS"]:before,
  .module-financial-annual .module_link[href$=".XLSX"]:before,
  .module-financial-annual .module_link[href$=".xls"]:before,
  .module-financial-annual .module_link[href$=".xlsx"]:before {
    content: "\e910";
  }
  
  @media (max-width: 768px) {
    .module-financial-annual_item {
        padding: 10px 45px 10px 0;
    }
  }
  
  .module-financial-table_header {
    color: #006fa0;
    border-bottom: 1px solid #b7b7b7;
    font-size: 18px;
    font-size: 1.8rem;
    display: none;
  }
  
  .module-financial-table_header-year-container {
    text-align: center;
  }
  
  .module-financial-table_header-year,
  .module-financial-table_header-category.grid_col {
    padding: 20px 5px 20px 0;
  }
  
  .module-financial-table_header-year {
    text-align: right;
  }
  
  .module-financial-table_body-row {
    border-bottom: 1px solid #b7b7b7;
  }
  
  .module-financial-table_body-year-container {
    text-align: center;
  }
  
  .module-financial-table_body-year,
  .module-financial-table_body-category.grid_col {
    padding: 18px 5px 18px 0;
    font-size: 18px;
    font-size: 1.8rem;
  }
  
  .module-financial-table_body-year {
    padding: 5px 5px 5px 0;
    text-align: right;
  }
  
  .module-financial-table_item {
    display: inline-block;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1;
  }
  
  .module-financial-table_item+.module-financial-table_item {
    margin-left: 15px;
  }
  
  .module-financial-table_item~.module_item {
    margin-right: 5px;
  }
  
  .module-financial-table_item--empty {
    opacity: 0.1;
  }
  
  .module-financial-table_link {
    display: inline-block;
  }
  
  @media only screen and (max-width: 768px) {
    .module-financial-table_item {
        margin-right: 10px;
    }
    .module-financial-table_header-year,
    .module-financial-table_header-category.grid_col,
    .module-financial-table_body-year,
    .module-financial-table_body-category.grid_col {
        padding: 10px 5px 10px 0;
        font-size: 14px;
        font-size: 1.4rem;
    }
    .module-financial-table_item {
        font-size: 14px;
        font-size: 1.4rem;
    }
  }
  
  @media only screen and (max-width: 480px) {
    .module-financial-table_item {
        margin: 5px;
    }
  }
  
  .module-financial-table .slick-slider {
    display: inline-block;
    padding: 0;
  }
  
  .module-financial-table .slick-slide:focus {
    outline: none;
  }
  
  .module-financial-table .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    cursor: pointer;
    z-index: 10;
  }
  
  .module-financial-table .slick-prev {
    left: 10px;
  }
  
  .module-financial-table .slick-next {
    right: 10px;
  }
  
  .module-financial-table .slick-disabled {
    opacity: 0.1;
    cursor: default;
  }
  
  .module-financial-mashup .module_body {
    max-height: 300px;
    overflow: hidden;
    position: relative;
  }
  
  .module-financial-mashup .module_body>*:first-child,
  .module-financial-mashup .module_body>style+p {
    margin-top: 0;
  }
  
  .module-financial-mashup .module_body:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50px;
    z-index: 1;
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0.5) 0%, white 70%, white 100%);
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.5) 0%, white 70%, white 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, white 70%, white 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#70ffffff', endColorstr='#ffffff', GradientType=0);
  }
  
  .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: #f6f6f6;
    padding: 15px;
    margin-bottom: 1px;
  }
  
  .module-financial-mashup .module-financial-mashup_documents .module_links .module_link {
    margin: 0;
  }
  
  .module-financial-mashup .q4-icon_chevron-right {
    font-size: 10px;
    font-size: 1rem;
    margin-left: 5px;
  }
  
  .module-fiscal-results .module_link {
    font-size: 0;
    display: inline-block;
    margin: 0;
  }
  
  .module-fiscal-results .module_item {
    padding: 18px 20px 18px 0;
  }
  
  .module-fiscal-results .module_item:last-child {
    border-bottom: 1px solid #b7b7b7;
  }
  
  .module-fiscal-results .module_links {
    text-align: right;
    margin-bottom: 0;
  }
  
  .module-fiscal-results .module_link:hover {
    text-decoration: none;
  }
  
  .module-fiscal-results .module_link:before {
    font-family: "q4-icons";
    font-size: 23px;
    font-size: 2.3rem;
    display: block;
    content: "\eecd";
  }
  
  .module-fiscal-results .module_link[href*=".PDF"]:before,
  .module-fiscal-results .module_link[href*=".pdf"]:before {
    content: "\e915";
  }
  
  .module-fiscal-results .module_link[href*=".XLSX"]:before,
  .module-fiscal-results .module_link[href*=".XLS"]:before,
  .module-fiscal-results .module_link[href*=".xlsx"]:before,
  .module-fiscal-results .module_link[href*=".xls"]:before {
    content: "\e910";
  }
  
  @media only screen and (max-width: 768px) {
    .module-fiscal-results .module_item {
        padding: 10px 18px 10px 0;
    }
  }
  
  @media (max-width: 767px) {
    .module-fiscal-results .module_subtitle {
        font-size: 20px;
        font-size: 2rem;
    }
  }
  
  
  /* Latest Quarterly Result Widget */
  
  .module-latest-quarter {
    background: url("../design/banner/background-results.jpg") no-repeat center center;
    background-size: cover;
  }
  
  .module-latest-quarter .module_container--outer {
    position: relative;
  }
  
  .module-latest-quarter .module_title {
    border-bottom: 1px solid #fff;
    padding-bottom: 20px;
    padding-right: 300px;
  }
  
  .module-latest-quarter .button--link {
    position: absolute;
    top: 8px;
    right: 10px;
  }
  
  .module-latest-quarter .module_item {
    margin: 40px 0;
    padding: 0;
  }
  
  .module-latest-quarter .module_item~.module_item {
    border: none;
  }
  
  .module-latest-quarter_type {
    display: inline-block;
    background: #00bceb;
    padding: 20px;
    text-align: center;
  }
  
  .module-latest-quarter .module_links {
    margin: 0;
    text-align: left;
  }
  
  .module-latest-quarter .module_links>div {
    display: inline-block;
    padding-right: 10px;
    padding: 0 36px;
  }
  
  .module-latest-quarter .module_link {
    margin: 0;
  }
  
  .module-latest-quarter .module_link:before {
    display: inline-block;
    font-size: 40px;
    font-size: 4rem;
    padding: 16px;
    border: 1px solid #fff;
    margin-bottom: 5px;
  }
  
  .module-latest-quarter .module_link[href$=".pdf"]:before,
  .module-latest-quarter .module_link[href$=".PDF"]:before {
    content: "\e913";
  }
  
  .module-latest-quarter .module_link:hover {
    text-decoration: none;
  }
  
  .module-latest-quarter .module_link:hover:before {
    background: #fff;
    color: #00bceb;
  }
  
  .module-latest-quarter .module_link-text {
    display: block;
    margin: 15px 0 0;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.45;
    text-transform: none;
  }
  
  .module-latest-quarter .module_link-text span {
    border-bottom: 1px dotted #fff;
  }
  
  .module-latest-quarter .module_link:hover .module_link-text span {
    border-bottom: 1px solid #fff;
  }
  
  .module-latest-quarter .module-financial_type-text,
  .module-latest-quarter .module-financial_year-text {
    display: inline-block;
    width: 100%;
  }
  
  .module-latest-quarter .module-financial_type-text {
    font-size: 66px;
    font-size: 6.6rem;
    line-height: 1.2;
  }
  
  .module-latest-quarter .module-financial_type-text sup {
    font-size: 22px;
    font-size: 2.2rem;
    text-transform: uppercase;
  }
  
  .module-latest-quarter .module-financial_quarter {
    text-transform: uppercase;
  }
  
  .module-latest-quarter .grid_col {
    vertical-align: top;
  }
  
  @media only screen and (max-width: 1024px) {
    .module-latest-quarter .module_links {
        border-left: 0;
    }
  }
  
  @media only screen and (max-width: 768px) {
    .pane--content .module-latest-quarter .module_container--outer {
        padding: 0 30px;
    }
    .module-latest-quarter_type-wrap {
        position: absolute;
        top: -9px;
        right: 10px;
        max-width: 76px;
    }
    .module-latest-quarter .button--link {
        position: relative;
        top: 0;
        right: 0;
    }
    .module-latest-quarter .module_link {
        margin: 0 0 30px;
    }
    .module-latest-quarter .module_title {
        padding-right: 0;
        width: calc(100% - 115px);
    }
    .module-latest-quarter .module-financial_type-text {
        font-size: 40px;
        font-size: 4rem;
    }
    .module-latest-quarter .module-financial_type-text sup {
        font-size: 13px;
        font-size: 1.rem;
    }
    .module-latest-quarter .module-financial_quarter {
        font-size: 10px;
        font-size: 1rem;
    }
    .module-latest-quarter_type {
        padding: 12px 10px;
    }
    .module-latest-quarter .module_link:before {
        font-size: 30px;
        font-size: 3rem;
        padding: 11px;
    }
    .module-latest-quarter .module_link-text {
        font-size: 16px;
        font-size: 1.6rem;
    }
    .module-latest-quarter .module_item {
        margin: 45px 0 0;
    }
  }
  
  @media (max-width: 480px) {
    .module-latest-quarter .module_title {
        width: calc(100% - 71px);
    }
  }
  
  
  /*------ Formbuilder Module ------*/
  
  .module-form--custom .module_container--content {
    display: none;
  }
  
  .module-form--custom h5 {
    margin-bottom: 10px;
  }
  
  .module-form--custom p {
    margin-bottom: 5px;
  }
  
  .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: 14px;
    font-size: 1.4rem;
    color: #b72121;
  }
  
  .module-form--custom .module_container--inner {
    max-width: 50%;
  }
  
  .module-form .module_container--captcha>div .ErrorMessage[style="visibility: hidden;"] {
    display: none;
  }
  
  .module-form_item {
    display: inline-block;
    width: 100%;
    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: 14px;
    font-size: 1.4rem;
  }
  
  .module-form_item legend {
    float: left;
    margin-bottom: 15px;
    font-size: 16px;
    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 {
        padding-left: 0;
    }
    .module-form--custom .module_container--inner {
        max-width: 100%;
    }
  }
  
  .module-form_error-text {
    color: #b72121;
  }
  
  .module-form_error-text[style="visibility:hidden;"] {
    display: none;
  }
  
  .module-form .CaptchaContainer {
    display: block;
  }
  
  .module-form .CaptchaContainer input[type="text"] {
    width: 100%;
  }
  
  .module-glossary .module_header {
    display: block;
  }
  
  .module-glossary .module_header table {
    width: 100%;
    table-layout: fixed;
  }
  
  .module-glossary .module_header table a {
    color: #333333;
    font-weight: normal;
  }
  
  .module-glossary .module_header table a[href] {
    color: #00bceb;
  }
  
  
  /*---------- 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: "CiscoSans", sans-serif;
    font-size: 16px;
    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: 16px;
    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: 14px;
    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: 14px;
    font-size: 1.4rem;
  }
  
  
  /*----- Miscellaneous Modules ----*/
  
  .module-script {
    display: none;
  }
  
  .module-slideshow_ratio {
    padding-bottom: 56.25%;
    /* this should be changed with aspecRatio option in widget */
    position: relative;
  }
  
  .module-slideshow_viewer:not(.grid_col) {
    display: inline-block;
    width: 100%;
    max-width: 640px;
  }
  
  .module-slideshow_viewer:not(.grid_col):not(:last-child) {
    margin-bottom: 20px;
  }
  
  .module-slideshow_title {
    margin-bottom: 10px;
    display: none;
  }
  
  .module-slideshow .module_links>*+* {
    margin-top: 15px;
  }
  
  .module-slideshow_link {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.76;
    font-weight: 100;
  }
  
  .module-slideshow_link-size {
    font-size: 14px;
    font-size: 1.4rem;
  }
  
  .module-slideshow_link i {
    vertical-align: middle;
    padding-right: 10px;
  }
  
  .module-slideshow_link i:before {
    font-size: 23px;
    font-size: 2.3rem;
    display: inline-block;
    margin-top: 6px;
  }
  
  .module-slideshow_link-text {
    vertical-align: middle;
    border-bottom: 1px dotted #fff;
  }
  
  .module-slideshow_link:hover .module-slideshow_link-text {
    border-bottom: 1px solid #fff;
  }
  
  .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 ------*/
  
  
  /*---------------  Main NAv ----------------*/
  
  .nav_close {
    display: none;
  }
  
  .nav--main {
    width: 100%;
    position: absolute;
    left: 0;
    top: 100%;
    height: 600px;
    display: none;
  }
  
  .js--mobile .nav--main {
    display: block;
  }
  
  .nav--main .level1 {
    max-width: 275px;
    padding-top: 16px;
    background: #006fa0;
    height: 100%;
  }
  
  .nav--main .level1>li {
    padding-left: 20px;
  }
  
  .nav--main li a {
    display: block;
    color: #fff;
    padding: 0 15px;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 3.15;
    font-weight: 400;
    transition: background 0.3s ease-in-out 0s, color 0.3s ease-in-out 0s;
  }
  
  .nav--main .js--expanded>a {
    background: #fff;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    color: #006fa0;
  }
  
  .nav_title {
    padding-left: 13px;
    font-weight: 400;
  }
  
  .nav--main .level2 {
    display: none;
    position: absolute;
    top: 0;
    left: 275px;
    padding-top: 5px;
    padding-left: 40px;
    background: #fff;
    width: 100%;
    border-top: 1px solid #ccc;
    height: 100%;
  }
  
  .nav--main .level2 li {
    max-width: 600px;
  }
  
  .nav--main .js--expanded .level2 {
    display: block;
  }
  
  .nav--main .level2 li {
    padding-bottom: 14px;
  }
  
  .nav--main .level2 a {
    line-height: 2.13;
    color: #006fa0;
    padding: 0 15px;
  }
  
  .nav--main .level2 a:hover {
    color: #005073;
    background: #e8f5fb;
    border-radius: 5px;
  }
  
  .nav--main .button--back {
    display: none;
    border: none;
    background: transparent;
    padding: 0;
    margin: 0;
    color: #007493;
    text-transform: none;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 400;
    margin-left: 15px;
  }
  
  .nav--main .button--back:hover {
    background: transparent;
    color: #007493;
  }
  
  .nav--main .button--back i {
    font-size: 12px;
    font-size: 1.2rem;
    margin-right: 5px;
  }
  
  .nav--main br {
    display: none;
  }
  
  @media (max-width: 1024px) {
    .nav--main {
        height: calc(100vh - 83px);
    }
    .nav--main .button--back {
        display: block;
    }
    .nav--main .level1 {
        max-width: 100%;
        overflow-x: hidden;
        overflow-y: auto;
        padding-bottom: 60px;
    }
    .nav--main .level1>li {
        padding-left: 0;
    }
    .nav--main .level2 {
        max-width: 100%;
        left: 0;
        top: -1px;
        padding: 30px 5px 83px 5px;
        height: calc(100% + 1px);
        display: block;
        background: #fff;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 2;
    }
    .nav--main .js--expanded .level2,
    .nav--main .level1>li.has-children.js--expanded:before {
        transform: translateX(0);
        overflow-y: auto;
    }
    .nav--main .js--expanded>a,
    .nav--main li.expanded>a {
        background: #2685ae;
        color: #fff;
    }
    .nav--main li.has-children>a {
        position: relative;
        padding-right: 56px;
    }
    .nav--main li.has-children>a:after {
        font-family: "q4-icons";
        content: "\e90c";
        position: absolute;
        right: 25px;
        top: 50%;
        transform: translateY(-50%);
    }
    .nav--main .level2 a:hover {
        background: transparent;
        color: #006fa0;
    }
  }
  
  @media (max-width: 768px) {
    .nav--main {
        height: calc(100vh - 64px);
    }
    .nav--main .level2 {
        padding-bottom: 64px;
    }
  }
  
  @media (max-width: 767px) {
    h4.nav_title {
        font-size: 28px;
        font-size: 2.8rem;
    }
  }
  
  
  /*--------------- End Main NAv ----------------*/
  
  .nav--secondary {
    letter-spacing: 1.6px;
  }
  
  .nav--secondary a {
    color: #4d4c4c;
    line-height: 1.35;
    display: inline-block;
    padding: 13px 0 8px;
  }
  
  .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 {
    display: flex;
    width: 100%;
  }
  
  .nav--secondary .level2>li {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    padding-right: 40px;
  }
  
  .nav--secondary .level2>li:last-child {
    padding-right: 0;
  }
  
  .nav--secondary .level2 a {
    border-bottom: 4px solid transparent;
    height: 100%;
    display: flex;
    align-items: center;
  }
  
  .nav--secondary .level2>li:hover>a,
  .nav--secondary .level2>li.selected>a,
  .nav--secondary .level2>li.expanded>a {
    border-bottom: 4px solid #005073;
    font-weight: bold;
  }
  
  .nav--secondary .level2>li a:focus {
    outline: none;
  }
  
  .nav--secondary .level3 {
    position: absolute;
    z-index: 100;
    top: 100%;
    left: 0;
    display: none;
    width: 100%;
    min-width: 200px;
    border-top: 2px solid #fff;
  }
  
  .nav--secondary .level3>li {
    text-align: left;
  }
  
  .nav--secondary .level3>li a {
    background: #005894;
  }
  
  .nav--secondary .level3>li a:hover,
  .nav--secondary .level3>li a:focus {
    outline: none;
    background: #00bceb;
  }
  
  .nav--secondary .level3>li.selected a {
    background: #00bceb;
  }
  
  @media only screen and (max-width: 1024px) {
    .nav--secondary {
        text-align: left;
        display: none;
    }
    .nav--secondary li {
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }
    .nav--secondary li.has-children>a: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: "\edbe";
    }
    .nav--secondary li.js--expanded>a:before {
        content: "\edc2";
    }
    .nav--secondary a {
        display: block;
        text-transform: uppercase;
        font-weight: normal;
    }
    .nav--secondary .level1>li {
        display: block;
    }
    .nav--secondary .level1>li.selected a,
    .nav--secondary .level1>li.expanded a {
        display: block;
    }
    .nav--secondary .level1>li.js--expanded {
        background: #005894;
    }
    .nav--secondary .level1>li.js--expanded a {
        display: block;
    }
    .nav--secondary .level1>li.js--expanded .level2 {
        display: block;
    }
    .nav--secondary .level1>li>a {
        padding: 20px;
    }
    .nav--secondary .level2 {
        display: none;
    }
    .nav--secondary .level2>li {
        display: block;
    }
    .nav--secondary .level2>li.js--expanded .level3 {
        display: block;
    }
    .nav--secondary .level2>li>a {
        padding: 20px 20px 20px 48px;
        font-size: 16px;
        font-size: 1.6rem;
    }
    .nav--secondary .level3 {
        position: static;
        border: none;
    }
    .nav--secondary .level3>li {
        display: block;
    }
    .nav--secondary .level3>li>a {
        padding: 20px 20px 20px 72px;
        font-size: 16px;
        font-size: 1.6rem;
    }
  }
  
  @media screen and (max-width: 765px) and (orientation: landscape) {
    .nav--secondary {
        padding-bottom: 85px;
    }
  }
  
  .nav--sitemap {
    max-width: 1260px;
    padding: 0 10px;
    margin: 0 auto;
    padding-bottom: 70px;
  }
  
  .nav--sitemap br {
    display: none;
  }
  
  .nav--sitemap a {
    display: inline-block;
  }
  
  .nav--sitemap .level1>li:not(:last-of-type) {
    margin-bottom: 15px;
  }
  
  .nav--sitemap .level1>li>a,
  .nav--sitemap .level1>li>a:visited {
    font-size: 24px;
    font-size: 2.4rem;
    color: #222;
    text-transform: uppercase;
  }
  
  .nav--sitemap .level2>li,
  .nav--sitemap .level3>li {
    padding: 5px 0;
  }
  
  .nav--sitemap .level2>li>a,
  .nav--sitemap .level3>li>a {
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  .nav--sitemap .level2>li>a {
    margin-bottom: 5px;
  }
  
  .nav--sitemap .level3>li {
    padding-left: 15px;
  }
  
  
  /*-------- News Module CSS -------*/
  
  .module-news .module_loader {
    margin-left: 10px;
  }
  
  .module-news .module_nav {
    display: none;
  }
  
  .module-news .module_options-wrap {
    padding-right: 30px;
  }
  
  .module-news-latest .module_container--content {
    margin-bottom: 20px;
  }
  
  .module-news-latest .module_item {
    margin: 10px 0 20px;
    padding: 0 0 0 20px;
    border: none;
    text-align: left;
  }
  
  @media only screen and (max-width: 768px) {
    .module-news-latest .module_item:first-child {
        width: 100%;
    }
  }
  
  .module-news-latest .module_item-wrap {
    padding: 30px;
    background: #fff;
  }
  
  .module-news-latest .module_date-time {
    margin-bottom: 15px;
    font-weight: normal;
    color: #333333;
  }
  
  .module-news-latest .module_headline {
    line-height: 1.5;
    font-weight: 200;
  }
  
  .module-news-latest .module_headline-link,
  .module-news-latest .module_headline-link:visited {
    color: #333333 !important;
  }
  
  .module-news-latest .module_links {
    margin: 0;
  }
  
  .module-news-latest .module_link {
    color: #00bceb;
  }
  
  .module-news-list .module_item {
    padding-left: 0;
    padding-top: 20px;
  }
  
  .module-news-list .module_item+.module_item {
    border-top: 1px solid #dddddd;
  }
  
  .module-news-details .module_view-all-link {
    display: block;
    margin-bottom: 25px;
  }
  
  .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;
  }
  
  
  /*------ 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 15px 0;
    border: none;
    border-bottom: 1px solid #b7b7b7;
  }
  
  .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 h3 {
    margin: 0 0 5px;
  }
  
  .module-person .module-person_name-container a {
    display: inline-block;
  }
  
  .module-person .module-person_name {
    display: block;
    font-size: 18px;
    font-size: 1.8rem;
  }
  
  .module-person .module-person_suffix,
  .module-person_title {
    font-size: 13px;
    font-size: 1.3rem;
  }
  
  .fancybox-container .module-person .module_item {
    max-width: 940px;
    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: #333333;
  }
  
  .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 (max-width: 767px) {
    .module-person .module-person_name-container h3 {
        padding-top: 15px;
    }
  }
  
  @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: 36px;
    font-size: 3.6rem;
    line-height: 1.45;
    color: #00bceb;
  }
  
  @media only screen and (max-width: 480px) {
    .fancybox-container .module-person_name {
        font-size: 24px;
        font-size: 2.4rem;
        line-height: 1.2;
    }
  }
  
  .fancybox-container .module-person_title {
    font-size: 24px;
    font-size: 2.4rem;
    color: #00bceb;
  }
  
  @media only screen and (max-width: 480px) {
    .fancybox-container .module-person_title {
        font-size: 18px;
        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_container--inner {
    border: 1px solid #abb9c5;
    border-radius: 7px;
  }
  
  .module-person-accordion .module-person_name-container {
    margin-top: 0;
    margin-bottom: 0;
    padding-right: 35px;
    cursor: pointer;
    font-weight: 500;
    text-transform: none;
    color: #22272b;
    position: relative;
  }
  
  .module-person-accordion .js--active .module-person_name-container {
    color: #1ba0d7;
  }
  
  .module-person-accordion .module-person_name-container h3 {
    color: inherit;
    margin: 0;
    font-size: 18px;
    font-size: 1.8rem;
  }
  
  .module-person-accordion .module-person_name-container h3:before {
    font-family: "q4-icons";
    content: "\e903";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #1ca0d7;
  }
  
  .module-person-accordion .module-person_description {
    font-size: 14px;
    font-size: 1.4rem;
    padding-right: 35px;
    display: block;
  }
  
  .module-person-accordion .module-person_res-photo-container {
    display: none;
  }
  
  .module-person-accordion .module_item {
    padding: 15px 20px 12px;
  }
  
  .module-person-accordion .module_item.js--active h3:before {
    transform: translateY(-50%) rotate(180deg);
  }
  
  .module-person-accordion .module-person_name {
    margin-right: 10px;
  }
  
  .module-person-accordion .module-person_title {
    font-size: 14px;
    font-size: 1.4rem;
  }
  
  .module-person-accordion .module_comma {
    display: none;
  }
  
  .module-person-accordion .module-person_description-container {
    padding: 15px 0;
  }
  
  .module-person-accordion .module-person_photo-container {
    float: left;
    margin: 0 25px 15px 0;
  }
  
  @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;
    max-width: 150px;
  }
  
  .module-person-accordion .module-person_description>*:first-child {
    margin-top: 0;
  }
  
  .module-person-accordion .module-person_res-photo-container>span {
    margin-right: 10px;
  }
  
  @media only screen and (max-width: 768px) {
    .module-person-accordion .module-person_res-photo-container>span {
        display: block;
        margin: 0 0 10px 0;
    }
  }
  
  .module-person-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: 36px;
    font-size: 3.6rem;
    color: #00bceb;
  }
  
  .module-person-details_title {
    display: block;
    font-size: 24px;
    font-size: 2.4rem;
  }
  
  .module-person-details_description-container {
    margin-top: 40px;
  }
  
  .module-presentation .module_body {
    display: none;
  }
  
  
  /*------ 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: #222;
    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: #222;
    transform: translate(0, -100%);
    font-size: 24px;
    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: 16px;
    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: "CiscoSans", sans-serif !important;
    font-weight: 300;
    font-size: 14px;
    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: #00bceb;
    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 Modules --------*/
  
  .module-search {
    text-align: right;
  }
  
  .module-search h2 {
    font-size: 25px;
    font-size: 2.5rem;
    margin-bottom: 0;
    display: inline-block;
    cursor: pointer;
  }
  
  .module-search span.q4-icon_search {
    display: inline-block;
    cursor: pointer;
    margin-top: 10px;
  }
  
  .module-search h2:after {
    opacity: 0;
    transition: opacity .5s ease-in-out;
    content: "\e90e";
    font-family: "q4-icons";
    color: #fff;
    top: 100%;
    right: 36px;
    position: absolute;
    display: block;
    z-index: 2;
    margin-top: 15px;
    cursor: pointer;
    font-size: 20px;
    font-size: 2rem;
  }
  
  .module-search h2.js--active:after {
    opacity: 1;
  }
  
  .module-search_input[type="text"] {
    display: inline-block;
    width: 100%;
    padding: 7px 100px 7px 40px;
    border: none;
    background: #fff;
    font-size: 28px;
    font-size: 2.8rem;
    line-height: 1.8;
    border-radius: 50px;
    height: 0;
    transition: height 0.5s ease-in-out;
  }
  
  .module-search .module_container--inner {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #1f4862;
    padding: 0 70px;
    display: flex;
    width: 100%;
    align-items: center;
    color: #757575;
    height: 0;
    overflow: hidden;
    transition: height 0.5s ease-in-out;
  }
  
  .module-search_input-wrap {
    position: relative;
    width: 100%;
  }
  
  .module-search .module_container--inner.js--revealed {
    height: 180px;
    overflow: visible;
  }
  
  .module-search .module_container--inner.js--revealed .module-search_input[type="text"] {
    height: 64px;
  }
  
  .module-search .module_container--inner:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 100%;
    right: 27px;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid #1f4862;
    opacity: 0;
    transition: opacity 0.5s ease-in-out
  }
  
  .module-search .module_container--inner.js--revealed:after {
    opacity: 1;
  }
  
  .module-search_button {
    position: absolute;
    top: 2px;
    right: 3px;
    width: 60px;
    padding: 0;
    border: 0;
    background: #1aa0d7 no-repeat center center;
    background-color: #1aa0d7;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 100%;
    font-size: 0;
    cursor: pointer;
    transition: background 0.5s ease-in-out 0s, height 0.5s ease-in-out;
    height: 0;
    overflow: hidden;
  }
  
  .module-search .module_container--inner.js--revealed .module-search_button {
    height: 60px;
    background-image: url("../design/ciscosearch.png");
  }
  
  .module-search_button:hover {
    background-color: #026089;
  }
  
  .module-search-result_link {
    margin-bottom: 15px;
  }
  
  .module-search-result_description {
    display: block;
    margin-bottom: 15px;
  }
  
  .module-search-result_description:after {
    content: "...";
  }
  
  .module-search-result_url {
    display: none;
  }
  
  @media (max-width: 767px) {
    .module-search .module_container--inner {
        padding: 0 20px;
    }
    .module-search .module_container--inner.js--revealed {
        height: 100px;
    }
    .module-search_input[type="text"] {
        font-size: 15.57px;
        font-size: 1.557rem;
    }
    .module-search .module_container--inner.js--revealed .module-search_input[type="text"] {
        height: 43px;
    }
    .module-search_button {
        top: 4px;
        right: 5px;
    }
    .module-search .module_container--inner .module-search_button {
        width: 35px;
    }
    .module-search .module_container--inner.js--revealed .module-search_button {
        height: 35px;
        background-size: 50%;
    }
    .module-search h2:after {
        font-size: 12px;
        font-size: 1.2rem;
        right: 8px;
    }
    .module-search .module_container--inner:after {
        right: 14px;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid #1f4862;
    }
    .module-search span.q4-icon_search {
        margin-right: -10px;
    }
  }
  
  
  /*-------- SEC Module CSS --------*/
  
  .module-sec .module_header {
    display: block;
    font-size: 0;
    border-bottom: 1px solid #b7b7b7;
  }
  
  .module-sec .module_options {
    padding-bottom: 20px;
  }
  
  .module-sec .module_options-select {
    margin-bottom: 10px;
  }
  
  .module-sec .module_header-text {
    padding: 15px 8px 15px 0;
    color: #006fa0;
  }
  
  .module-sec .module_item {
    padding: 0;
    border-bottom: 1px solid #b7b7b7;
  }
  
  .module-sec .module_item~.module_item {
    border-top: none;
  }
  
  .module-sec .module_item .grid_col {
    vertical-align: middle;
    padding: 8.5px 8px 8.5px 0;
    font-size: 14px;
    font-size: 1.4rem;
  }
  
  .module-sec .module_item .module-sec_filing {
    font-weight: bold;
  }
  
  .module-sec_download-list ul {
    padding: 0;
    margin: 0;
  }
  
  @media only screen and (max-width: 768px) {
    .module-sec .module_header {
        display: none;
    }
    .module-sec .module_header+.module_item {
        border-top: 2px solid #00bceb;
    }
    .module-sec .module_item {
        padding: 15px 0;
    }
    .module-sec .module_item:first-child {
        border-top: 2px solid #00bceb;
    }
    .module-sec .module_item:last-child {
        border-bottom: 2px solid #00bceb;
    }
    .module-sec .module_item .grid_col {
        padding: 0 5px;
    }
    .module-sec .module_item+.module_footer {
        border-bottom: 2px solid #00bceb;
    }
    .module-sec .module_item>div:before {
        content: attr(data-before);
        display: inline-block;
        vertical-align: top;
        width: 45%;
        font-weight: 700;
    }
    .module-sec .module_item>div span,
    .module-sec .module_item>div ul {
        display: inline-block;
        vertical-align: top;
        width: 55%;
    }
  }
  
  .module-sec_download-list-item {
    display: inline-block;
  }
  
  .module-sec_download-list .module_link {
    margin: 0;
  }
  
  .module-sec_download-list .module_link:before {
    font-size: 24px;
    font-size: 2.4rem;
  }
  
  @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 .module_link:before {
    font-size: 24px;
    font-size: 2.4rem;
  }
  
  
  /*---- Accessibility Skip Link ---*/
  
  .module-skip_link {
    position: absolute;
    top: -100px;
    left: 50%;
    padding: 15px 20px;
    background: transparent;
    color: white;
    transform: translate(-50%, 0);
    transition: 0.5s ease-in-out;
    z-index: 100;
  }
  
  .module-skip_link:focus,
  .module-skip_link:active,
  .module-skip_link:hover {
    top: 0;
    background: #00bceb;
    outline: 0;
  }
  
  .module-skip_link:visited {
    color: #fff;
  }
  
  .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: 24px;
    font-size: 2.4rem;
    margin-top: 10px;
  }
  
  .module-slider_description .module_date-time {
    font-size: inherit;
  }
  
  .module-slider_description p {
    margin: 10px 0;
  }
  
  .module-slider_description p:first-child {
    margin-top: 0;
    margin-bottom: 10px;
  }
  
  .module-slider_description .module_links {
    margin-top: 10px;
    margin-bottom: 0;
  }
  
  
  /*------ Stock Chart Widget ------*/
  
  .module-stock-chart .highcharts-range-selector[style*="1px"] {
    opacity: 0
  }
  
  .module-stock-chart .highcharts-legend-item:first-child path {
    stroke: #00bceb;
  }
  
  .module-stock-chart .highcharts-legend-item:first-child text {
    cursor: default !important;
  }
  
  .module-stock-chart .highcharts-series-0 {
    stroke: #00bceb;
  }
  
  .module-stock-chart .highcharts-series-0 path:first-child {
    stroke: #00bceb;
  }
  
  .module-stock-chart .highcharts-series-group .highcharts-series-2 path {
    stroke: #00bceb;
  }
  
  .module-stock-chart .highcharts-series-1 rect {
    fill: #005073;
  }
  
  .module-stock-chart .highcharts-navigator rect {
    fill: rgba(0, 111, 186, 0.6);
  }
  
  .module-stock-chart .highcharts-navigator-handle {
    stroke: rgba(0, 0, 0, 0.05);
    fill: #f2f2f2;
    cursor: ew-resize;
  }
  
  .module-stock-chart .highcharts-navigator-handle-right rect,
  .module-stock-chart .highcharts-navigator-handle-left rect {
    stroke-width: 0;
    fill: #00bceb;
  }
  
  .module-stock-chart .highcharts-navigator-handle-right path,
  .module-stock-chart .highcharts-navigator-handle-left path {
    stroke: #fff;
  }
  
  .module-stock-chart .highcharts-highcharts-scrollbar g:first-of-type rect {
    fill: #00bceb;
    stroke: #00bceb;
  }
  
  .module-stock-chart .highcharts-range-selector {
    box-sizing: content-box;
  }
  
  .module-stock-chart .highcharts-range-input rect {
    stroke: #cccccc;
    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: #333333;
  }
  
  .module-stock-chart .highcharts-container>svg>.highcharts-button {
    display: none;
  }
  
  
  /*------ Stock Header Module -----*/
  
  .module-stock-header {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 188, 235, 0.9);
    min-width: 233px;
  }
  
  .module-stock-header_description1 {
    display: block;
    font-size: 20px;
    font-size: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: space-between;
  }
  
  .module-stock-header_exchange {
    padding: 12px 5px 8px 15px;
    width: calc(100% - 49px)
  }
  
  .module-stock-header_more {
    padding: 5px 13px;
    display: flex;
    align-items: center;
    border-left: 1px solid rgba(255, 255, 255, 0.7);
    color: #fff;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
  }
  
  .module-stock-header_more:hover {
    background: #fff;
    color: #1ba0d7;
  }
  
  .module-stock-header_more i {
    font-size: 0;
  }
  
  .module-stock-header_more i:before {
    font-size: 22px;
    font-size: 2.2rem;
  }
  
  .module-stock-header_price-wrap {
    padding: 20px 20px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  }
  
  .module-stock-header_stock-price {
    display: block;
    margin-bottom: 10px;
    font-size: 46px;
    font-size: 4.6rem;
    line-height: 1;
    color: #fff;
  }
  
  .module-stock-header_price-value {
    padding-right: 30px;
    display: inline-block;
    position: relative;
  }
  
  .module-stock-header_price-value:before {
    content: "\e917";
    font-family: "q4-icons";
    position: absolute;
    right: 0px;
    top: 7px;
    font-size: 28px;
    font-size: 2.8rem;
  }
  
  .module-stock-header_price-value.module-stock-header_down:before {
    transform: rotate(180deg);
  }
  
  .module-stock-header_stock-price:before {
    content: '$';
    font-size: 30px;
    font-size: 3rem;
    vertical-align: top;
  }
  
  .module-stock-header_change,
  .module-stock-header_percent-change {
    display: inline-block;
    font-size: 21.25px;
    font-size: 2.125rem;
  }
  
  .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_description3,
  .module-stock-header_date {
    display: block;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.7;
  }
  
  .module-stock-header_delay-wrap {
    padding: 13px 20px;
  }
  
  .module-stock-header_volume-text {
    display: none;
  }
  
  .module-stock-header_time {
    display: inline-block;
    border-left: 1px solid #fff;
    line-height: 1;
    padding-left: 5px;
    margin-left: 5px;
    padding-top: 1px;
  }
  
  @media(max-width: 767px) {
    .module-stock-header {
        position: static;
        transform: none;
        margin: 55px 0 30px
    }
    .module-stock-header_more {
        display: none;
    }
    .module-stock-header_price-wrap,
    .module-stock-header_mobile-wrap {
        display: flex;
        align-items: flex-end;
    }
    .module-stock-header_price-wrap {
        padding: 12px 5px 8px 0;
        width: calc(100% - 84px);
        justify-content: center;
    }
    .module-stock-header_exchange {
        width: 100%;
        padding: 11px 5px 7px 10px;
        max-width: 84px;
    }
    .module-stock-header_description1 {
        font-size: 15px;
        font-size: 1.5rem;
    }
    .module-stock-header_stock-price {
        font-size: 34px;
        font-size: 3.4rem;
        margin-bottom: 0;
    }
    .module-stock-header_change {
        padding-left: 5px;
    }
    .module-stock-header_change-value {
        padding-right: 3px;
    }
    .module-stock-header_change,
    .module-stock-header_percent-change {
        font-size: 16px;
        font-size: 1.6rem;
    }
    .module-stock-header_price-value {
        padding-right: 16px;
    }
    .module-stock-header_stock-price:before,
    .module-stock-header_price-value:before {
        font-size: 17px;
        font-size: 1.7rem;
    }
    .module-stock-header_price-value:before {
        right: -1px;
    }
    .module-stock-header_delay-wrap {
        padding: 7px 10px;
        display: flex;
        align-items: center;
    }
    .module-stock-header_description3,
    .module-stock-header_date {
        font-size: 11.38px;
        font-size: 1.138rem;
    }
    .module-stock-header_date-text {
        border-left: 1px solid #fff;
        line-height: 1;
        padding-left: 5px;
        margin-left: 5px;
        padding-top: 1px;
    }
  }
  
  
  /*------ Stock Quote Module ------*/
  
  .module-stock .module_options {
    margin-bottom: 30px;
  }
  
  .module-stock_time-text {
    display: inline-block;
    border-left: 1px solid #4d4c4c;
    line-height: 1;
    padding-left: 5px;
    margin-left: 5px;
  }
  
  .module-stock .module_container--content {
    border-top: 1px solid rgba(34, 34, 34, 0.2);
  }
  
  @media only screen and (max-width: 768px) {
    .module-stock.module-stock-historical .module-stock_empty {
        display: none;
    }
  }
  
  @media only screen and (max-width: 768px) {
    .module-stock-historical .module_options-label,
    .module-stock-historical .module_options-select,
    .module-stock-historical .module_options-submit {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
  }
  
  .module-stock .stock-historical-range .module_options>*:not(:last-of-type) {
    margin-bottom: 20px;
  }
  
  .module-stock_lookup-title {
    padding-left: 20px;
  }
  
  @media only screen and (max-width: 768px) {
    .module-stock_lookup-title {
        padding-left: 10px;
    }
  }
  
  @media only screen and (max-width: 480px) {
    .module-stock_lookup-title {
        padding-left: 5px;
    }
  }
  
  .module-stock_label,
  .module-stock_value {
    border-bottom: 1px solid rgba(34, 34, 34, 0.2);
  }
  
  .module-stock_label>span,
  .module-stock_value>span {
    display: block;
    padding: 15px 20px;
  }
  
  @media only screen and (max-width: 768px) {
    .module-stock_label>span,
    .module-stock_value>span {
        padding: 15px 10px;
    }
  }
  
  @media only screen and (max-width: 480px) {
    .module-stock_label>span,
    .module-stock_value>span {
        padding: 15px 0 15px 5px;
    }
  }
  
  .module-stock_up {
    color: #23a217;
  }
  
  .module-stock_down {
    color: #b72121;
  }
  
  .module-stock_label {
    font-weight: normal;
  }
  
  .module-stock_value .module-stock_price:before,
  .module-stock_value .module-stock_high:before,
  .module-stock_value .module-stock_low:before,
  .module-stock_value .module-stock_open:before,
  .module-stock_value .module-stock_close:before,
  .module-stock_value .module-stock_week-low:before,
  .module-stock_value .module-stock_week-high:before,
  .module-stock_value .module-stock_previous-close:before {
    content: "$";
  }
  
  .module-stock_date {
    margin-top: 25px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  
  .module-stock_delay {
    margin-top: 25px;
    font-size: 14px;
    font-size: 1.4rem;
    text-align: right;
  }
  
  .module-stock_date-text {
    margin-left: 20px;
  }
  
  .module-stock_delay-text {
    margin-right: 20px;
  }
  
  @media (max-width: 840px) {
    .module-stock-historical .module_options-label {
        display: block
    }
  }
  
  @media (max-width: 768px) {
    .module-stock_delay,
    .module-stock_date {
        margin-top: 15px;
    }
    .module-stock_date-text {
        margin-left: 10px;
    }
    .module-stock_delay-text {
        margin-right: 10px;
    }
  }
  
  @media (max-width: 480px) {
    .module-stock_date-text {
        margin-left: 5px;
    }
    .module-stock_delay-text {
        margin-right: 5px;
    }
  }
  
  @media (max-width: 464px) {
    .module-stock-quote .grid_col--1-of-2.grid_col--sm-1-of-2 {
        width: 100% !important;
    }
    .module-stock_delay {
        text-align: left;
        margin-top: 5px;
        margin-left: 5px;
    }
  }
  
  
  /*- MailingList Subscribe Module -*/
  
  .module-subscribe_table {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
  
  .module-subscribe_table tbody {
    width: 100%;
    display: block;
  }
  
  .module-subscribe_form {
    font-size: 0;
  }
  
  .module-subscribe_form tr {
    display: inline-block;
    width: 50%;
    margin-bottom: 20px;
    vertical-align: top;
    font-size: 16px;
    font-size: 1.6rem;
  }
  
  .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-size: 14px;
    font-size: 1.4rem;
  }
  
  .module-subscribe_mailing-list tr.module-subscribe_list-header td {
    padding-bottom: 15px;
  }
  
  .module-subscribe_mailing-list tr table tr:last-child td {
    padding-bottom: 0;
  }
  
  .module-subscribe .module_required {
    font-size: 14px;
    font-size: 1.4rem;
  }
  
  .module-subscribe .CaptchaContainer {
    width: 50%;
  }
  
  @media only screen and (max-width: 768px) {
    .module-subscribe .CaptchaContainer {
        width: 100%;
    }
  }
  
  
  /* MailingList Unsubscribe Module */
  
  .module-unsubscribe_table {
    width: 50%;
  }
  
  @media only screen and (max-width: 768px) {
    .module-unsubscribe_table {
        width: 100%;
    }
  }
  
  @media only screen and (max-width: 768px) {
    .module-unsubscribe_table td {
        padding-right: 0;
    }
  }
  
  .module-unsubscribe_table label {
    display: inline-block;
    font-size: 14px;
    font-size: 1.4rem;
    margin-bottom: 5px;
  }
  
  .module-unsubscribe_table .module_input[type="text"] {
    background-color: #fff;
  }
  
  
  /*==================================
  ----------- LAYOUT CSS -----------
  ==================================*/
  
  
  /*------- iframe layout CSS ------*/
  
  .layout--iframe .pane--content .module {
    padding: 35px 0;
  }
  
  .layout--iframe .pane--content .module_container--outer {
    max-width: none;
  }
  
  
  /*==================================
  ------------ BLANK CSS -----------
  ==================================*/
  
  
  /*-------- Layout Specific -------*/
  
  .layout_inner {
    overflow-x: hidden;
  }
  
  .layout_footer {
    background: #f2f2f2;
  }
  
  @media only screen and (max-width: 1024px) {
    .layout.js--mobile {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        overflow: hidden;
    }
  }
  
  
  /*--------- Pane Specific --------*/
  
  .pane--header {
    position: relative;
    background-color: #fff;
    z-index: 10;
    padding: 9px 0;
  }
  
  .pane--header .pane_inner {
    padding: 0 30px;
  }
  
  .pane--header .module,
  .pane--header .nav {
    vertical-align: middle;
  }
  
  .pane--banner {
    background-color: rgba(255, 255, 255, 0.05);
    background-image: url("../design/banner/banner-inner-pages.jpg");
    background-position: center center;
    background-size: cover;
    color: #fff;
    height: 300px;
  }
  
  .layout--home .pane--banner {
    // background-image: url("../design/banner/banner-home.jpg");
    // height: 480px;
      height: 300px;
  }
  
  .pane--banner .pane_inner {
    position: relative;
    max-width: 1260px;
    padding: 0 10px;
    margin: 0 auto;
    display: flex;
    height: 100%;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .pane--banner .pane_inner>span:first-child {
    width: 100%;
    align-self: flex-end;
  }
  
  .pane--banner .pane_inner>span {
    width: 100%;
  }
  
  .pane--navigation {
    border-bottom: 1px solid #ebebeb;
  }
  
  .pane--navigation .pane_inner {
    max-width: 1260px;
    padding: 0 10px;
    margin: 0 auto;
  }
  
  .pane--content .module {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  .pane--content .module_container--outer {
    max-width: 1260px;
    padding: 0 10px;
    margin: 0 auto;
  }
  
  .pane--content .module--thin {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  
  .pane--content .module--thin-top {
    padding-top: 30px;
  }
  
  .pane--content .module--thin-bottom {
    padding-bottom: 30px;
  }
  
  .pane--content .module--thick {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  
  .pane--content .module--thick-top {
    padding-top: 90px;
  }
  
  .pane--content .module--thick-bottom {
    padding-bottom: 90px;
  }
  
  .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: 35px;
  }
  
  .pane--footer {
    padding-top: 60px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  
  .pane--footer .pane_inner {
    max-width: 1260px;
    padding: 0 10px;
    margin: 0 auto;
  }
  
  .pane--footer .module:not(.module-embed) {
    padding-bottom: 60px;
  }
  
  .pane--credits {
    padding-bottom: 10px;
    text-align: center;
    color: #f6f6f6;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.5;
    background: #173f5a;
  }
  
  .pane--credits a {
    color: #f6f6f6;
  }
  
  .pane--credits .pane_inner {
    max-width: 1260px;
    padding: 0 10px;
    margin: 0 auto;
  }
  
  @media only screen and (max-width: 768px) {
    .pane--header {
        padding: 0;
    }
    .pane--content .module {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .pane--content .module_container--outer {
        max-width: 1260px;
        padding: 0 10px;
        margin: 0 auto;
    }
    .pane--content .module--thin {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .pane--content .module--thin-top {
        padding-top: 20px;
    }
    .pane--content .module--thin-bottom {
        padding-bottom: 20px;
    }
    .pane--content .module--thick {
        padding-top: 60px;
        padding-bottom: 90px;
    }
    .pane--content .module--thick-top {
        padding-top: 60px;
    }
    .pane--content .module--thick-bottom {
        padding-bottom: 60px;
    }
    .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--credits .pane_inner,
    .pane--footer .pane_inner {
        padding: 0 20px;
    }
  }
  
  @media (max-width: 767px) {
    .pane--footer {
        padding-top: 30px;
        font-size: 12px;
        font-size: 1.2rem;
    }
    .pane--banner {
        height: auto;
        padding-top: 80px;
    }
    .layout--home .pane--banner {
        padding-top: 121px;
        height: auto;
    }
    .pane--banner .pane_inner {
        flex-wrap: wrap;
    }
    .pane--banner .pane_inner>span:first-child {
        width: 100%;
        position: static;
    }
  }
  
  
  /*--------- Page Specific --------*/
  
  .page--no-alternating .pane--content {
    padding: 35px 0;
  }
  
  .page--no-alternating .module {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  
  
  /*-------- Module Specific -------*/
  
  .module-overview p {
    margin-bottom: 40px;
  }
  
  .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 h3 {
    color: #333333;
  }
  
  .module-why-invest h4 {
    font-size: 60px;
    font-size: 6rem;
    color: #00bceb;
    font-weight: 300;
    margin-top: 0;
  }
  
  .module-why-invest .grid {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  
  .module-why-invest .grid_col {
    padding-bottom: 15px;
    padding-right: 20px;
  }
  
  @media (min-width: 480px) {
    .module-why-invest .grid_col+.grid_col {
        border-left: 1px solid #dddddd;
    }
  }
  
  .module-why-invest .grid_col p {
    margin-bottom: 0;
  }
  
  .module-social .module_container--content {
    padding: 0;
    display: flex;
    justify-content: stretch;
    align-items: stretch;
    flex-wrap: wrap;
  }
  
  .module-social .module_item {
    height: auto;
  }
  
  .module-social .module_title {
    margin-bottom: 5px;
  }
  
  .module-social .grid {
    margin-left: -10px;
  }
  
  .module-social .module_item.grid_col {
    padding: 0 0 0 10px;
    margin: 5px 0;
  }
  
  .module-social .module_item-wrap {
    display: flex;
    background-color: #f2f2f2;
    height: 100%;
    box-shadow: 0;
    transition: all 0.3s ease-in-out;
  }
  
  .module-social .module_item-wrap:hover {
    transform: translateY(-5px);
    box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, 0.11);
  }
  
  .module-social .module_item+.module_item {
    border-top: none;
  }
  
  .module-social .module_date-wrap {
    max-width: 120px;
    width: 100%;
    padding: 14px 25px;
  }
  
  .module-social .module_date {
    text-align: left;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.14;
    text-transform: uppercase;
  }
  
  .module-social .module_date:after {
    content: "";
    display: block;
    width: 40px;
    border-bottom: 1px solid #10c0eb;
    margin-top: 5px;
  }
  
  .module-social .module_headline {
    text-align: left;
    margin: 0;
    line-height: 1.5;
    padding: 30px 10px 30px 0;
    background-size: cover;
    width: calc(100% - 120px);
  }
  
  .module-social .module_headline a {
    word-break: break-all;
  }
  
  .module-social .module_headline-link {
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 300;
  }
  
  .module-social .module_item-youtube .module_headline {
    display: flex;
    align-items: center;
    padding: 24px 34px;
    position: relative;
  }
  
  .module-social .module_item-youtube .module_headline:after {
    content: "";
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    z-index: 1;
    width: 100%;
    bottom: 0;
  }
  
  .module-social .module_item-youtube .module_headline-link {
    color: #fff;
    position: relative;
    z-index: 2;
  }
  
  .module-social .module_icon {
    margin-left: 5px;
    margin-bottom: 10px;
    font-size: 20px;
    font-size: 2rem;
  }
  
  .module-social .module_icon .q4-icon_twitter {
    color: #1da1f2;
  }
  
  .module-social .module_icon .q4-icon_facebook {
    color: #365899;
  }
  
  .module-social .module_icon .q4-icon_youtube {
    color: #cc181e;
  }
  
  @media (max-width: 767px) {
    .module-social .module_item.grid_col {
        padding-left: 0;
        width: 100% !important
    }
    .module-social .module_container--content {
        margin: 0;
    }
  }
  
  
  /*======================= HEADER ============================*/
  
  .module-logo {
    text-align: center;
  }
  
  .module-logo img {
    height: 57px;
  }
  
  .module-nav-toggle_button {
    padding: 0;
    margin: 0;
    border: none;
    appearance: none;
    display: flex;
    background: none;
    align-items: center;
    cursor: pointer;
  }
  
  .module-nav-toggle_button div {
    margin-left: 22px;
    align-items: center;
  }
  
  .module-nav-toggle_open {
    display: flex;
    font-size: 18px;
    line-height: 2.56;
  }
  
  div.module-nav-toggle_button-lines {
    position: relative;
    height: 32px;
    width: 39px;
    margin-left: 0;
  }
  
  .module-nav-toggle_button span:nth-of-type(2) {
    top: 13px;
    width: 31.2px;
  }
  
  .module-nav-toggle_button span:last-of-type {
    top: 26px;
    width: 23.4px;
  }
  
  .module-nav-toggle_button span {
    background-color: #4d4c4c;
    border-radius: 10px;
    box-sizing: inherit;
    display: block;
    height: 5px;
    margin: 0;
    opacity: 1;
    position: absolute;
    top: 0;
    -webkit-transition: background-color .3s ease-out .1s, margin-top .001s ease-out .25s, opacity .2s ease-out, top .15s ease-out, transform .25s ease-out .15s, width .3s ease-out .1s;
    -moz-transition: background-color .3s ease-out .1s, margin-top .001s ease-out .25s, opacity .2s ease-out, top .15s ease-out, transform .25s ease-out .15s, width .3s ease-out .1s;
    -o-transition: background-color .3s ease-out .1s, margin-top .001s ease-out .25s, opacity .2s ease-out, top .15s ease-out, transform .25s ease-out .15s, width .3s ease-out .1s;
    transition: background-color .3s ease-out .1s, margin-top .001s ease-out .25s, opacity .2s ease-out, top .15s ease-out, transform .25s ease-out .15s, width .3s ease-out .1s;
    width: inherit;
  }
  
  .module-nav-toggle_button:hover span {
    width: 39px;
    background-color: #1ba0d7;
  }
  
  .js--mobile .module-nav-toggle_button span {
    margin-top: -2.5px;
    top: 50% !important;
    transform: rotate(45deg);
    width: 32px;
  }
  
  .js--mobile .module-nav-toggle_button span:nth-of-type(2) {
    opacity: 0;
  }
  
  .js--mobile .module-nav-toggle_button span:last-of-type {
    transform: rotate(-45deg);
  }
  
  @media (max-width: 1024px) {
    .module-nav-toggle_close,
    .module-nav-toggle_open {
        display: none;
    }
  }
  
  @media (max-width: 768px) {
    .module-logo img {
        max-width: 70px;
        margin-left: 15px;
        padding-top: 8px;
    }
  }
  
  
  /*====================END HEADER ============================*/
  
  
  /*==================== FOOTER ============================*/
  
  .module-subscribe--footer .module_error-container {
    margin-bottom: 12px;
  }
  
  .module-subscribe--footer input[type="checkbox"]+label,
  .module-subscribe--footer input[type="radio"]+label {
    font-size: 14px;
    font-size: 1.4rem;
  }
  
  .module-subscribe--footer input[type="checkbox"]+label:before,
  .module-subscribe--footer input[type="radio"]+label:before {
    top: 3px;
  }
  
  .module-subscribe--footer input[type="checkbox"]:checked+label:after,
  .module-unsubscribe--footerinput[type="radio"]:checked+label:after {
    top: 8px;
  }
  
  .module-subscribe--footer .module_error-container p {
    display: none;
  }
  
  .module-subscribe--footer .module_error-container li {
    margin-bottom: 5px;
    color: #b72121;
  }
  
  .module-subscribe--footer .module-subscribe_email label,
  .module-subscribe--footer .module-subscribe_list-header,
  .module-subscribe--footer .module-subscribe_email .module_required,
  .module-subscribe--footer.module-subscribe .CaptchaContainer {
    display: none;
  }
  
  .module-subscribe--footer .module-subscribe_form tbody {
    display: block;
  }
  
  .module-subscribe--footer .module-subscribe_form tr {
    width: 100%;
    margin: 0;
  }
  
  .module-subscribe--footer .module-subscribe_list tr {
    width: 33%;
    float: left;
  }
  
  .module-subscribe--footer .module-subscribe_table tbody {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 557px;
  }
  
  .module-subscribe--footer .module-subscribe_list tr:nth-child(3n+2) {
    width: 23%;
  }
  
  .module-subscribe--footer .module-subscribe_list tr:nth-child(3n+3) {
    width: 37%;
  }
  
  .module-subscribe--footer .module-subscribe_list>td {
    padding: 0;
  }
  
  .module-subscribe--footer p {
    padding-right: 35px;
  }
  
  .module-subscribe_footer-introduction {
    display: none;
  }
  
  .module-subscribe--footer .module-subscribe_footer-introduction {
    display: block;
    order: 1;
  }
  
  .module-subscribe--footer .module-subscribe_table-wrap,
  .module-subscribe--footer .module_container--inner {
    display: flex;
    flex-wrap: wrap;
  }
  
  .module-subscribe--footer .module-subscribe_mailing-list {
    order: 4;
    margin: 5px 0 30px;
  }
  
  .module-subscribe--footer .module-subscribe_form {
    order: 5;
    margin-bottom: 0;
    width: calc(100% - 163px);
    padding-right: 15px;
  }
  
  .module-subscribe--footer .module_error-container {
    order: 3;
  }
  
  .module-subscribe--footer .module-subscribe_table-wrap {
    order: 3;
  }
  
  .module-subscribe--footer .module_introduction {
    order: 2;
  }
  
  .pane--footer .module.module-subscribe--footer {
    padding-bottom: 32px;
  }
  
  .module-subscribe--footer .module_actions {
    order: 6;
    margin-top: 0;
    padding-top: 0;
  }
  
  .pane--footer .module_introduction {
    display: none;
  }
  
  .module-unsubscribe--footer .module_title {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 400;
  }
  
  .module-unsubscribe--footer label.module-unsubscribe_email,
  .module-unsubscribe--footer .module-unsubscribe_email+span {
    display: none;
  }
  
  .module-unsubscribe--footer .module_container--inner {
    display: flex;
    flex-wrap: wrap;
  }
  
  .module-unsubscribe--footer .module_introduction {
    order: 1;
  }
  
  .module-unsubscribe--footer .module-unsubscribe_table {
    order: 2;
    width: calc(100% - 163px);
    padding-right: 15px;
    display: block;
  }
  
  .module-unsubscribe--footer .module-unsubscribe_table tbody {
    display: table;
    width: 100%;
  }
  
  .module-unsubscribe--footer .module_actions {
    order: 3;
    margin-top: 0;
  }
  
  .pane--footer .module-subscribe.module-subscribe--fancy,
  .module-unsubscribe--footer,
  .module-subscribe--footer {
    border-right: 1px solid #ccc;
    padding-right: 60px;
  }
  
  .module-unsubscribe--footer .module_error-container:not(:empty) {
    margin-bottom: 0;
  }
  
  .page-mail-alerts .module-unsubscribe--footer,
  .page-mail-alerts .module-subscribe--footer {
    display: none;
  }
  
  .pane--footer .module.module-unsubscribe--footer {
    padding-bottom: 0;
    margin-bottom: 70px;
  }
  
  .module-contact {
    float: right;
  }
  
  .module-contact .module_container--outer {
    padding-left: 40px;
  }
  
  .module-contact .grid_col {
    padding-right: 55px;
  }
  
  .module-contact h5 {
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 400;
  }
  
  .page-mail-alerts .module-contact {
    float: none;
  }
  
  .page-mail-alerts .module-contact .module_container--outer {
    padding-left: 0;
  }
  
  @media (max-width: 1024px) {
    .module-contact .grid_col {
        padding-right: 10px;
    }
    .module-subscribe--footer .module-subscribe_list tr:nth-child(3n+2),
    .module-subscribe--footer .module-subscribe_list tr:nth-child(3n+3),
    .module-subscribe--footer .module-subscribe_list tr {
        width: 49%;
        float: left;
    }
    .pane--footer .module-subscribe.module-subscribe--fancy,
    .module-subscribe--footer,
    .pane--footer .module.module-unsubscribe--footer {
        padding-right: 25px;
    }
  }
  
  @media (max-width: 768px) {
    .FooterPaneDiv {
        display: flex;
        flex-wrap: wrap;
    }
    .FooterPaneDiv>span {
        width: 100%;
    }
    .FooterPaneDiv>span:first-child {
        order: 3;
        display: block;
    }
    .FooterPaneDiv>span:nth-child(2) {
        order: 1;
        display: block;
    }
    .FooterPaneDiv>span:last-child {
        order: 2;
        display: block;
    }
    .module-contact {
        float: none;
    }
    .module-contact .module_container--outer {
        padding-left: 0;
    }
    .module-unsubscribe--footer,
    .module-subscribe--footer {
        padding-right: 0 !important;
        border-right: none !important;
    }
    .pane--footer .module.module-unsubscribe--footer {
        padding-bottom: 0;
        margin-bottom: 30px;
        padding-right: 0;
    }
    .module-subscribe--footer .module-subscribe_table tbody {
        max-width: 100%;
    }
  }
  
  @media (max-width: 767px) {
    .module-unsubscribe--footer .module-unsubscribe_table,
    .module-subscribe--footer .module-subscribe_form {
        width: calc(100% - 85px);
    }
    .module-unsubscribe--footer .module_title {
        font-size: 12px;
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    .pane--footer .module.module-subscribe--footer {
        padding-bottom: 20px;
        padding-right: 0;
        border-right: none;
    }
    .module-subscribe--footer .module-subscribe_mailing-list {
        margin-bottom: 15px;
    }
    .module-subscribe--footer input[type="checkbox"]+label,
    .module-subscribe--footer input[type="radio"]+label {
        line-height: 1.7;
    }
    .module-subscribe--footer .module-subscribe_list tr:nth-child(3n+2),
    .module-subscribe--footer .module-subscribe_list tr:nth-child(3n+3),
    .module-subscribe--footer .module-subscribe_list tr {
        padding-bottom: 8px;
    }
    .module-subscribe--footer input[type="checkbox"]+label:before,
    .module-subscribe--footer input[type="radio"]+label:before {
        top: 3px;
    }
    .module-subscribe--footer input[type="checkbox"]:checked+label:after,
    .module-unsubscribe--footerinput[type="radio"]:checked+label:after {
        top: 7px;
    }
  }
  
  
  /*-------------- Links ----------------*/
  
  .module-links {
    padding: 13.5px 0;
  }
  
  .module-links li {
    display: inline-block;
    vertical-align: middle;
    padding-right: 20px;
  }
  
  .module-links li:last-child {
    padding-right: 0;
  }
  
  .module-links a {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 2;
  }
  
  .module-links a:hover {
    text-decoration: underline;
  }
  
  @media (max-width: 1024px) {
    .module-links {
        text-align: left;
    }
  }
  
  @media (max-width: 767px) {
    .module-links li {
        display: block;
    }
  }
  
  
  /*------------End Links ----------------*/
  
  
  /*================ END FOOTER ============================*/
  
  
  /*================ GLOBAL STYLES ============================*/
  
  .module-page-title {
    padding-right: 270px;
    padding-top: 66px;
  }
  
  .module-page-title br {
    display: none;
  }
  
  .module-page-title h1 {
    margin: 0;
  }
  
  .module-investor-relations {
    padding-right: 270px;
    padding-top: 66px;
  }
  
  .module-investor-relations_title {
    margin-bottom: 5px;
  }
  
  .module-investor-relations .module_container--inner {
    max-width: 550px;
  }
  
  .module-investor-relations_text {
    line-height: 1.56;
  }
  
  .module-investor-relations_text p:last-child {
    margin-bottom: 0;
  }
  
  @media (max-width: 767px) {
    .module-page-title,
    .module-investor-relations {
        padding-right: 0;
        padding-top: 0;
    }
  }
  
  
  /*==============END GLOBAL STYLES ============================*/
  
  
  /*============== LANDING PAGE ============================*/
  
  
  /*---------------- News & Events Section -------------*/
  
  .grid--flex {
    display: flex;
    flex-wrap: wrap;
  }
  
  .module-news-events .module_title {
    padding-right: 200px;
    margin-bottom: 35px;
  }
  
  .module-news-events .module_container--inner {
    position: relative;
  }
  
  .module-news-events_view-all {
    position: absolute;
    top: 7px;
    right: 0;
  }
  
  .module-news-events .grid {
    margin-left: -25px;
  }
  
  .module-news-events .module_item {
    padding: 0 0 0 25px;
    min-height: 274px;
  }
  
  .module-news-events .module_item~.module_item {
    border-top: none;
  }
  
  .module-news-events_label {
    position: absolute;
    top: 15px;
    left: 20px;
    background: #2a2c2c;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    font-size: 1.4rem;
    font-style: italic;
    padding: 1.5px 10px;
    z-index: 2
  }
  
  .module-news-events .module_item-wrap {
    height: 100%;
    background-color: #e9e9e9;
    display: flex;
    align-items: flex-end;
    position: relative;
    padding: 15px 20px 35px;
  }
  
  .module-news-events .module-news-events_image-box {
    background-image: url("../design/AM54881.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
  }
  
  .module-news-events .module_item:nth-child(2) .module-news-events_image-box {
    background-image: url("../design/AP17373.jpg");
  }
  
  .module-news-events .module_item:nth-child(3) .module-news-events_image-box {
    background-image: url("../design/AR11088.jpg");
  }
  
  .module-news-events .module_headline-link {
    font-weight: 300;
    color: #fff;
  }
  
  .module-news-events .module_date-time {
    color: #fff;
  }
  
  .module-news-events .module_headline-link:hover {
    text-decoration: underline;
  }
  
  .module-news-events .module_links {
    margin-bottom: 0;
  }
  
  .module-news-events_description {
    padding-top: 45px;
    z-index: 2;
    position: relative;
  }
  
  @media (max-width: 768px) {
    .module-news-events .module_item {
        margin-bottom: 30px;
        min-height: auto;
    }
    .module-news-events .module-news-events_image-box {
        height: 160px;
        bottom: auto;
    }
    .module-news-events .module_item-wrap {
        padding-bottom: 20px;
        align-items: flex-start;
    }
    .module-news-events_description {
        padding-top: 159px;
    }
    .module-news-events .module_date-time {
        color: #58585b;
    }
    .module-news-events .module_headline-link {
        color: #007fab;
    }
    .module-news-events .module_link {
        color: #007fab;
    }
    .module-news-events .module_title {
        padding-right: 0;
        text-align: center;
    }
    .module-news-events_view-all {
        position: static;
        text-align: center;
    }
    .module-news-events .module_container--outer {
        padding: 0;
    }
  }
  
  @media (max-width: 480px) {
    .module-news-events_label {
        font-size: 12px;
        font-size: 1.2rem;
        padding: 1.6px 10px 0;
    }
  }
  
  
  /*-------------End News & Events Section -------------*/
  
  
  /*-------------Annual & Presentations Section -------------*/
  
  .module-annual-presentation img {
    max-width: 240px;
    width: 100%;
  }
  
  .module-financial-annual-latest_text {
    width: calc(100% - 240px);
    padding-left: 40px;
  }
  
  .module-annual-presentation .module_item {
    padding-right: 10px;
    position: relative;
    color: #fff;
  }
  
  module-downloads-csr .module_item {
    background-repeat: no-repeat;
    background-size: 240px 100%;
    padding-left: 240px;
  }
  
  .module-annual-presentation .module_item-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    height: 100%;
    align-content: center;
  }
  
  .module_subtitle {
    font-size: 28px;
    font-size: 2.8rem;
    line-height: 1;
    margin-top: 0;
    width: 100%;
  }
  
  .module-annual-presentation .module_links {
    width: 100%;
    padding-top: 20px;
  }
  
  .module_links--dotted .module_link {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 2;
    position: relative;
    padding-left: 35px
  }
  
  .module_links--dotted .module_link:before {
    position: absolute;
    left: 0;
    top: 8px;
  }
  
  .module_links--dotted .module_link-text {
    border-bottom: 1px dotted #fff;
  }
  
  .module_links--dotted .module_link:hover .module_link-text {
    border-bottom: 1px solid #fff;
  }
  
  .module_links--dotted .module_link:hover {
    text-decoration: none;
  }
  
  .module-annual-presentation .module_link:before {
    padding-right: 15px;
  }
  
  .module-annual-presentation .module_link[href$=".pdf"]:before,
  .module-annual-presentation .module_link[href$=".PDF"]:before {
    content: "\e913";
  }
  
  .module-annual-presentation .module_subtitle {
    color: #fff;
  }
  
  .module_container--downloads .module_subtitle {
    font-weight: 100;
  }
  
  .module_container--downloads .module_item {
    background-color: #58585b;
  }
  
  .module_container--annual .module_item {
    background-color: #00405c;
    /*border: 1px solid #00405c;*/
  }
  
  .module-downloads-csr {
 /* 00382636*/
    height: 46%;
   /* margin-bottom:24px;*/
  }
  
  .module-annual-presentation .module_container,
  .module-annual-presentation .module_item {
    height: 100%;
  }
  
/*  .module-annual-presentation .grid_col {
    display: flex;
    flex-direction: column;
  }*/
  
  /*.module-financial-annual-latest {
    margin-bottom: 24px;
  }*/
  
  .module-financial-annual-latest .module_item {
    /*padding-top: 15px;
    padding-bottom:15px;*/
      padding-top: 23px;
  }
  
  .module-annual-presentation .module-slideshow {
    background: url("../design/AM41036.jpg") no-repeat center center;
    background-size: cover;
    padding: 50px 40px 60px;
    height: 100%;
  }
  
  .module-annual-presentation .module-slideshow .module_subtitle {
    margin-bottom: 40px;
  }
  
  .module-annual-presentation .button--link {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.9;
  }
  
  .module-annual-presentation .button--link:after {
    font-size: 8px;
    font-size: 0.8rem;
    top: 5px;
  }
  
  @media (max-width: 1168px) {
    .module-annual-presentation .module_subtitle {
        font-size: 24px;
        font-size: 2.4rem;
    }
    /*.module-downloads-csr .module_item {
        padding-left: 220px;
    }*/
    .module-annual-presentation .module_link:before {
        font-size: 18px;
        font-size: 1.8rem;
    }
    .module_links--dotted .module_link {
        font-size: 14px;
        font-size: 1.4rem;
        padding-left: 28px;
    }
  }
  
  @media (max-width: 1024px) {
    .module-annual-presentation .module-slideshow {
        margin-top: 30px;
    }
    .module-financial-annual-latest,
    .module-downloads-csr {
        height: 100%;
    }
    .module-annual-presentation .grid--flex {
        display: block;
    }
    .module-annual-presentation .module_item {
        padding-top: 25px;
        padding-bottom: 25px;
    }
    .module-downloads-csr .module_item-inner {
        max-width: 50%;
    }
    .module-financial-annual-latest .module_item {
        background-image: none !important;
        background-position: 0 0;
        padding-left: 20px;
    }
    .module-financial-annual-latest_text {
        width: calc(100% - 100px);
        padding-left: 30px;
    }
    .module-financial-annual-latest .module_item-inner {
        align-items: flex-start;
    }
    .module-financial-annual-latest img {
        display: block;
        max-width: 100px;
        width: 100%;
    }
    .module-downloads-csr .module_item {
        background-size: 138px 100%;
        /*padding-left: 170px;*/
        padding-left:20px
    }
  }
  
  @media (max-width: 767px) {
    .module-downloads-csr .module_item-inner {
        max-width: 70%;
    }
    .module-annual-presentation .module_subtitle {
        font-size: 20px;
        font-size: 2rem;
        margin-bottom: 5px;
    }
    .module-annual-presentation .button--link {
        font-size: 11.5px;
        font-size: 1.15rem;
    }
    .module_links--dotted .module_link {
        line-height: 1.4;
    }
    .module_links--dotted .module_link:before {
        top: 2px;
    }
    .module-downloads-csr .module_item {
        /*padding-left: 156px;*/
    }
    .module-financial-annual-latest_text {
        padding-left: 18px;
    }
    .module-annual-presentation .module-slideshow {
        padding: 27px 10px;
    }
  }
  
  @media (max-width: 520px) {
    .module-downloads-csr .module_item-inner {
        max-width: 100%;
    }
  }
  
  
  /*---------- End Annual & Presentations Section -------------*/
  
  
  /*---------- Landing Blocks Section -------------*/
  
  .module-landing-blocks .grid {
    margin-left: -25px;
  }
  
  .module-landing-blocks .module_item {
    padding: 0 0 0 25px;
    height: 100%;
  }
  
  .module-landing-blocks .module_item~.module_item {
    border: none;
  }
  
  .module-landing-blocks_container {
    display: block;
    padding: 10px 25px;
    min-height: 320px;
    height: calc(100% - 55px);
    background-size: cover;
    position: relative;
    cursor: pointer;
    overflow: hidden;
  }
  
  .module-landing-blocks_container:after {
    z-index: 1;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.5s ease-in-out;
  }
  
  .module-landing-blocks_container:hover:after {
    background: rgba(0, 0, 0, 0.6);
  }
  
  .module-landing-block_desc {
    padding-top: 200px;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 100%;
    font-size: 22px;
    font-size: 2.2rem;
    font-weight: 300;
    line-height: 1.1;
    transition: padding 0.5s ease-in-out;
  }
  
  .module-landing-block_desc-text {
    position: relative;
    z-index: 2;
  }
  
  .module-landing-blocks_container:hover .module-landing-block_desc {
    padding-top: 150px;
    padding-bottom: 50px;
  }
  
  .module-landing-block_desc .button--link {
    position: absolute;
    bottom: -40px;
    color: #fff;
    transition: bottom 0.5s ease-in-out;
    z-index: 2;
  }
  
  .module-landing-blocks_container:hover .button--link {
    bottom: 20px;
  }
  
  @media (max-width: 1266px) {
    .module-landing-block_desc {
        font-size: 18px;
        font-size: 1.8rem;
    }
    .module-landing-blocks .module_item {
        padding-right: 0;
    }
  }
  
  @media (max-width: 1024px) {
    .module-landing-blocks .module_item {
        margin-bottom: 30px;
    }
  }
  
  @media (max-width: 768px) {
    .module-landing-blocks_container {
        min-height: 160px;
        padding: 10px 15px 20px;
    }
    .module-landing-block_desc {
        padding-top: 54px;
        font-size: 16px;
        font-size: 1.6rem;
    }
    .module-landing-blocks_container:hover .module-landing-block_desc {
        padding-top: 20px;
        padding-bottom: 30px;
    }
  }
  
  
  /*----------End Landing Blocks Section -------------*/
  
  
  /*==============END LANDING PAGE ============================*/
  
  .q4-icon_warning-line {
    margin-top: 10px;
  }
  
  
  /*--------------------Module Pager------------------*/
  
  ul.module_pager {
    margin-top: 0;
    font-size: 0;
    text-align: center;
    padding: 0;
  }
  
  .module_pager li:not(:empty) {
    display: inline-block;
    vertical-align: top;
    margin-right: 3px;
    font-weight: normal;
    color: #052951;
    line-height: 1;
  }
  
  .pager-prev,
  .pager-next {
    font-size: 0;
    cursor: pointer;
  }
  
  .pager-prev:before,
  .pager-next:before {
    font-family: "q4-icons";
    content: "\e903";
    font-size: 25px;
    font-size: 2.5rem;
    color: #1ba0d7;
    display: inline-block;
    vertical-align: middle;
  }
  
  .pager-prev:before {
    transform: rotate(90deg);
  }
  
  .pager-next:before {
    transform: rotate(-90deg);
  }
  
  .pager-disabled {
    opacity: 0.5;
    cursor: default;
  }
  
  .pager-page {
    display: none !important;
    visibility: hidden;
  }
  
  
  /*------------------End Module Pager----------------*/
  
  
  /*------------------Interactive Analyst ----------------*/
  
  .l-container * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  #statements.cashflow {
    padding: 0;
  }
  
  .helper-header {
    margin: 0;
    border-bottom: 1px solid #ccc;
    *zoom: 1;
  }
  
  .helper-header:before,
  .helper-header:after {
    content: "";
    display: table;
  }
  
  .helper-header:after {
    clear: both;
  }
  
  #helper-sheets-menu {
    float: right;
    margin-top: 10px;
  }
  
  #helper-sheets-menu ul {
    margin: 0;
    padding: 0;
    position: relative;
    margin-bottom: -1px !important;
  }
  
  #helper-sheets-menu li {
    float: left;
    list-style-type: none;
  }
  
  #helper-sheets-menu a {
    display: block;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px 5px 0 0;
    color: #777;
    position: relative;
    font-size: 14px;
  }
  
  #helper-sheets-menu a.active:before {
    top: auto;
    bottom: 0;
    left: 50%;
    position: absolute;
    margin-right: 0;
    margin-left: -5px;
    border-bottom: 5px solid #666666;
    border-top: 5px solid transparent;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    content: " ";
    display: inline-block;
    width: 0;
    height: 0;
  }
  
  #helper-sheets-menu .annualOnly {
    display: none;
  }
  
  #main-container .nav ul {
    padding: 0;
    margin: 0;
  }
  
  #main-container tr td,
  #main-container tr th {
    text-align: left;
  }
  
  h1#legend {
    padding: 8px 0;
    font-size: 21px;
  }
  
  h1#legend span {
    margin-left: 6px;
    font-weight: normal;
    font-size: 14px;
    font-style: italic;
  }
  
  h1#legend span.iac {
    display: block;
  }
  
  h1#legend span.iac a {
    display: inline-block;
    font-style: normal;
    border: 1px solid #666666;
    margin: 0;
    padding: 5px 20px;
    background-color: #666666;
    color: #ffffff;
    border-radius: 3px;
    cursor: pointer;
    margin-top: 8px;
  }
  
  h1#legend span.iac a:hover {
    background-color: #0075b4;
    color: #fff;
    border-color: #0075b4;
  }
  
  #main-container {
    margin: 0 auto;
    text-align: left;
  }
  
  .helper-main-nav {
    margin: 1px 0 20px;
  }
  
  .helper-main-nav ul {
    display: table;
    width: 100%;
    min-height: 65px;
  }
  
  .helper-main-nav li {
    display: table-cell;
    border-right: 1px solid #cccccc;
    background-color: #f5f5f5;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    padding: 20px 0;
  }
  
  .helper-main-nav li.active {
    width: 50%;
    font-size: 21px;
  }
  
  .helper-main-nav li:last-child {
    border-right: none;
  }
  
  .helper-secondary-nav {
    display: none;
    margin: 20px 0;
  }
  
  .helper-secondary-nav ul {
    *zoom: 1;
  }
  
  .helper-secondary-nav ul:before,
  .helper-secondary-nav ul:after {
    content: "";
    display: table;
  }
  
  .helper-secondary-nav ul:after {
    clear: both;
  }
  
  .helper-secondary-nav li {
    display: inline-block;
    padding: 2px 10px;
    margin-right: 5px;
    -webkit-border-radius: 15px;
    border-radius: 15px;
  }
  
  .helper-secondary-nav li.active {
    background-color: #476a92;
    color: #fff;
  }
  
  .helper-secondary-nav li:last-child {
    border-right: none;
  }
  
  @media only screen and (max-width: 639px) {
    #main-container {}
    .helper-secondary-nav {
        display: none;
    }
    .helper-main-nav li {
        font-size: 90%;
    }
    .helper-main-nav li.active {
        width: 40%;
        font-size: 18px;
    }
  }
  
  #interactive-table {
    min-height: 100px;
  }
  
  #table-progress {
    position: relative;
    text-align: center;
    display: none;
  }
  
  .spinner {
    height: 40px;
    width: 40px;
    margin: 100px auto;
    position: relative;
    -webkit-animation: rotation .6s infinite linear;
    -moz-animation: rotation .6s infinite linear;
    -o-animation: rotation .6s infinite linear;
    animation: rotation .6s infinite linear;
    border-left: 4px solid rgba(125, 125, 125, 0.15);
    border-right: 4px solid rgba(125, 125, 125, 0.15);
    border-bottom: 4px solid rgba(125, 174, 125, 0.15);
    border-top: 4px solid rgba(125, 125, 125, 0.8);
    border-radius: 100%;
  }
  
  @-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
    }
  }
  
  @-moz-keyframes rotation {
    from {
        -moz-transform: rotate(0deg);
    }
    to {
        -moz-transform: rotate(359deg);
    }
  }
  
  @-o-keyframes rotation {
    from {
        -o-transform: rotate(0deg);
    }
    to {
        -o-transform: rotate(359deg);
    }
  }
  
  @keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }
  }
  
  @media only screen and (min-width: 640px) {
    .phone-view {
        display: none;
    }
    #interactive-table {
        font-size: 12px;
    }
    #interactive-table table {
        width: 100%;
    }
    #interactive-table th {
        max-width: 230px;
        font-weight: normal;
    }
    #interactive-table td,
    #interactive-table th {
        padding: 5px 8px;
        line-height: 18px;
    }
    #interactive-table th.space-above,
    #interactive-table td.space-above {
        padding-top: 15px;
    }
    #interactive-table th.space-below,
    #interactive-table td.space-below {
        padding-bottom: 15px;
    }
    #interactive-table td.indent-1,
    #interactive-table th.indent-1 {
        padding-left: 20px;
    }
    #interactive-table td.indent-2,
    #interactive-table th.indent-2 {
        padding-left: 30px;
    }
    #interactive-table .total td:nth-child(even),
    #interactive-table td:nth-child(even),
    #interactive-table .total th:nth-child(even),
    #interactive-table th:nth-child(even) {
        background-color: #f5f5f5;
    }
    #interactive-table thead th {
        text-align: center;
        font-weight: 700;
        font-size: 110%;
    }
    #interactive-table thead th:nth-child(n+2) {
        border-bottom: 1px solid #ddd;
    }
    #interactive-table tbody td {
        text-align: right;
    }
    #interactive-table tr.total td,
    #interactive-table tr.total th {
        border-top: 2px solid #eee;
        background-color: rgba(0, 0, 0, 0.01);
        padding-bottom: 10px;
        padding-top: 10px;
        font-weight: 700;
    }
    #interactive-table tr.row-bold td,
    #interactive-table tr.row-bold th {
        font-weight: 700;
        font-size: 110%;
    }
  }
  
  @media only screen and (max-width: 639px) {
    .desktop-view {
        display: none;
    }
    #interactive-table .parent-container {
        border: 1px solid #ccc;
        margin-bottom: 10px;
        background-color: #f4f4f4;
    }
    #interactive-table .parent-container .parent-title {
        background-color: #fff;
        padding: 10px 30px 10px 10px;
        font-size: 18px;
        position: relative;
    }
    #interactive-table .parent-container .child-toggle {
        display: none;
    }
    #interactive-table .parent-container .toggle-title {
        position: absolute;
        display: block;
        right: 5px;
        padding: 0 10px;
        color: #999;
        font-size: 21px;
        line-height: 24px;
        top: 50%;
        margin-top: -12px;
        cursor: default;
    }
    #interactive-table .child-container .child-title {
        padding: 5px 10px;
        background-color: #666;
        color: #fff;
    }
    #interactive-table .child-container .reports-container>div:last-of-type {
        border-bottom: none;
    }
    #interactive-table .child-container .reports-container>div:nth-child(even) {
        background-color: rgba(255, 255, 255, 0.6);
    }
    #interactive-table .child-container .report-row {
        display: table;
        width: 100%;
        padding: 10px 15px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    #interactive-table .child-container .report-col {
        display: table-cell;
    }
    #interactive-table .child-container .col-1 {
        width: 30%;
        color: #777;
    }
    #interactive-table .child-container .col-2 {
        width: 70%;
        text-align: right;
    }
  }
  
  @font-face {
    font-family: 'fontello';
    src: url("../fonts/fontello.eot?14307221");
    src: url("../fonts/fontello.eot?14307221#iefix") format("embedded-opentype"), url("../fonts/fontello.woff?14307221") format("woff"), url("../fonts/fontello.ttf?14307221") format("truetype"), url("../fonts/fontello.svg?14307221#fontello") format("svg");
    font-weight: normal;
    font-style: normal;
  }
  
  [class^="fontello-"]:before,
  [class*=" fontello-"]:before {
    font-family: "fontello";
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    margin-left: .2em;
  }
  
  .fontello-pin:before {
    content: '\e800';
  }
  
  .fontello-full:before {
    content: '\e801';
  }
  
  #interactive-charts .chart-box {
    position: relative;
    background-color: #f0f0f0;
    margin-bottom: 10px;
  }
  
  #interactive-charts .chart-box .chart-box-wrapper {
    border: 1px solid #dcdcdc;
  }
  
  #interactive-charts .box-header .heading {
    padding: 5px 28px 5px 10px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
  }
  
  #interactive-charts .box-header .tabs {
    background-color: #7e7e7e;
    color: #fff;
  }
  
  #interactive-charts .box-header .tabs .tab {
    display: inline-block;
    padding: 0 20px;
    cursor: pointer;
  }
  
  #interactive-charts .box-header .tabs .tab.active {
    background-color: #fff;
    color: #666;
  }
  
  #interactive-charts .box-header .box-header-wrapper {
    background-color: #f0f0f0;
    line-height: 25px;
    overflow: hidden;
  }
  
  #interactive-charts .chart-wrapper .chart {
    background-color: #fbfbfb;
    height: 180px;
  }
  
  #interactive-charts .highcharts-data-labels {
    visibility: hidden;
  }
  
  #interactive-charts .highcharts-data-labels[visibility="hidden"] {
    visibility: hidden !important;
  }
  
  #type-selector ul {
    display: table;
    width: 100%;
    padding: 0;
    margin: 0px;
    border-bottom: 1px solid #cccccc;
  }
  
  #type-selector ul li {
    display: table-cell;
    width: 30%;
    background-color: #f5f5f5;
    cursor: pointer;
    padding: 10px 0;
    text-align: center;
    vertical-align: middle;
  }
  
  #type-selector ul li:first-child {
    border-right: 1px solid #cccccc;
  }
  
  #type-selector ul li.active {
    width: 70%;
  }
  
  #fancyChart {
    position: relative;
  }
  
  #fancyChart h1 {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 60px;
    margin: 0;
    font-size: 18px;
    background: rgba(255, 255, 255, 0.9);
    color: #777;
    z-index: 999;
  }
  
  @media only screen and (min-width: 1025px) {
    #interactive-charts .chart-box {
        height: 162px;
    }
    #interactive-charts .chart-box .chart-box-wrapper {
        position: absolute;
        border: none;
    }
    #interactive-charts .box-header {
        height: 25px;
    }
    #interactive-charts .box-header .heading {
        padding-top: 0;
        padding-bottom: 0;
    }
    #interactive-charts .box-header .box-header-wrapper {
        position: absolute;
        border-top: 1px solid #dcdcdc;
        border-right: 1px solid #dcdcdc;
        border-left: 1px solid #dcdcdc;
        width: 180px;
        top: 0;
        right: 0;
        height: 25px;
    }
    #interactive-charts .lock {
        color: #999;
        padding-left: 3px;
        padding-right: 3px;
        cursor: pointer;
        position: absolute;
        right: 0;
        line-height: 18px;
        top: 50%;
        margin-top: -9px;
    }
    #interactive-charts .locked {
        color: #666;
    }
    #interactive-charts .chart-wrapper {
        position: relative;
        width: 180px;
        height: 140px;
    }
    #interactive-charts .chart-wrapper .chart {
        position: absolute;
        border-right: 1px solid #dcdcdc;
        border-bottom: 1px solid #dcdcdc;
        border-left: 1px solid #dcdcdc;
        width: 180px;
        height: 140px;
        top: 0;
        right: 0;
    }
    #interactive-charts .chart-wrapper .chart.chart-1 {
        z-index: 4;
    }
    #interactive-charts .chart-wrapper .chart.chart-2 {
        z-index: 3;
    }
    #interactive-charts .chart-wrapper .chart.chart-3 {
        z-index: 2;
    }
    #interactive-charts .chart-wrapper .chart.chart-4 {
        z-index: 1;
    }
    #interactive-charts .fullscreen {
        display: none;
    }
  }
  
  @media only screen and (max-width: 639px) {
    #interactive-charts {
        margin-top: 30px;
    }
    .fullscreen {
        display: none;
    }
  }
  
  @media only screen and (max-width: 1024px) {
    #interactive-charts .lock {
        display: none;
    }
    #interactive-charts .fullscreen {
        color: #999;
        padding-left: 3px;
        padding-right: 3px;
        cursor: pointer;
        position: absolute;
        right: 0;
        line-height: 18px;
        top: 50%;
        margin-top: -9px;
    }
  }
  
  @media only screen and (min-width: 640px) and (max-width: 1024px) {
    #interactive-charts {
        margin: 20px 0;
        padding: 5px 0;
        background-color: #f5f5f5;
        border: 1px solid #cccccc;
        *zoom: 1;
    }
    #interactive-charts:before,
    #interactive-charts:after {
        content: "";
        display: table;
    }
    #interactive-charts:after {
        clear: both;
    }
    #interactive-charts .chart-box {
        width: 25%;
        margin: 0;
        float: left;
        padding: 0 5px;
        background: none;
    }
    #interactive-charts .chart-wrapper .chart {
        height: 140px;
    }
  }
  
  @media only screen and (min-width: 640px) and (max-width: 767px) {
    #interactive-charts .chart-box {
        width: 50%;
        margin-bottom: 5px;
    }
  }
  
  @media only screen and (max-width: 480px) {
    #main-container {
        padding: 2px;
    }
  }
  
  @media only screen and (min-width: 1025px) {
    #statements {
        padding-right: 200px;
        font-size: 14px;
        margin: 20px 0;
        *zoom: 1;
    }
    #statements:before,
    #statements:after {
        content: "";
        display: table;
    }
    #statements:after {
        clear: both;
    }
    #interactive-table {
        position: relative;
        float: left;
        width: 100%;
    }
    #interactive-charts {
        float: right;
        width: 180px;
        margin-right: -200px;
        font-size: 14px;
    }
  }
  
  
  /*=====================================
    END OF STATEMENT TABLE & CHARTS
  =====================================*/
  
  .phone-view ul {
    cursor: pointer;
    padding: 0;
    margin: 0;
    list-style-type: none;
  }
  
  .phone-view ul li {
    padding: 5px;
    border: 1px solid #ccc;
    border-top: 0;
    background-color: #f5f5f5;
  }
  
  .phone-view ul li.toggle {
    margin-bottom: 10px;
  }
  
  .phone-view ul > ul {
    display: none;
    margin-bottom: 10px;
  }
  
  .phone-view ul li:nth-child(2n) {
    background-color: #F8F7F7;
  }
  
  .phone-view ul li:first-child {
    border: 1px solid #ccc;
    background-color: #fff;
    font-size: 18px;
    padding: 10px 30px 10px 10px;
    position: relative;
  }
  
  .phone-view h2 {
    margin-top: 15px;
    padding: 0 10px;
    font-size: 14px;
    text-transform: uppercase;
  }
  
  .phone-view ul li.title {
    background-color: #666;
    color: #fff;
    padding: 5px 10px;
  }
  
  .phone-view .quarter {
    display: inline-block;
    color: #777;
    width: 30%;
  }
  
  .phone-view .data {
    display: inline-block;
    text-align: right;
    width: 70%;
  }
  
  .phone-view .toggle-title {
    color: #999;
    cursor: default;
    display: block;
    font-size: 21px;
    line-height: 24px;
    margin-top: -12px;
    padding: 0 10px;
    position: absolute;
    right: 5px;
    top: 50%;
  }
  
  .phone-view .toggle-title.closed:before {
    content: "-";
  }
  
  .phone-view .toggle-title.opened:before {
    content: "+";
  }
  
  
  /**Interactive Analyst**/
  
  .l-container {
    *zoom: 1;
    max-width: 64em;
    _width: 64em;
    padding-left: 0.625em;
    padding-right: 0.625em;
    margin-left: auto;
    margin-right: auto;
  }
  
  .l-container:after {
    content: "";
    display: table;
    clear: both;
  }
  
  .l-container .l-col.bleed-until-small {
    margin-left: -0.625em;
    margin-right: -0.625em;
  }
  
  @media (min-width: 37.5em) {
    .l-container .l-col.bleed-until-small {
        margin-left: 0;
        margin-right: 0;
    }
  }
  
  .l-container .l-col.bleed-until-medium {
    margin-left: -0.625em;
    margin-right: -0.625em;
  }
  
  @media (min-width: 48em) {
    .l-container .l-col.bleed-until-medium {
        margin-left: 0;
        margin-right: 0;
    }
  }
  
  @media (min-width: 37.5em) {
    .l-container {
        max-width: 64em;
    }
    .l-container .l-col {
        width: 100%;
        float: left;
        margin-right: 2.12766%;
    }
    .l-container .l-col.l-small {
        width: 31.91489%;
        float: left;
        margin-right: 2.12766%;
    }
    .l-container .l-col.l-large {
        width: 65.95745%;
        float: left;
    }
    .l-container .l-col.l-third {
        width: 31.91489%;
        float: left;
        margin-right: 2.12766%;
    }
    .l-container .l-col.l-two-thirds {
        width: 65.95745%;
        float: left;
        margin-right: 2.12766%;
    }
    .l-container .l-col.l-even {
        width: 48.93617%;
        float: left;
        margin-right: 2.12766%;
    }
    .l-container .l-col.l-right {
        float: right;
        margin-right: 0;
    }
  }
  
  @media (min-width: 48em) {
    .l-container {
        max-width: 64em;
    }
    .l-container .l-col.l-medium {
        width: 48.93617%;
        float: left;
        margin-right: 2.12766%;
    }
    .l-container .l-col.l-quarter {
        width: 23.40426%;
        float: left;
        margin-right: 2.12766%;
    }
    .l-container .l-col.l-right {
        float: right;
        margin-right: 0;
    }
  }
  
  @media (min-width: 60em) {
    .l-container {
        max-width: 65.25em;
        padding-left: 0;
        padding-right: 0;
        margin-left: auto;
        margin-right: auto;
        padding: 0 10px;
    }
    .l-container:after {
        content: "";
        display: table;
        clear: both;
    }
    .l-container .l-col {
        width: 100%;
        float: left;
        margin-right: 2.12766%;
    }
    .l-container .l-col.l-small {
        width: 23.40426%;
        float: left;
        margin-right: 2.12766%;
    }
    .l-container .l-col.l-large {
        width: 74.46809%;
        float: left;
        margin-right: 2.12766%;
    }
    .l-container .l-col.l-nest-large-even {
        width: 48.71795%;
        float: left;
        margin-right: 2.5641%;
    }
    .l-container .l-col.l-nest-large-quarter {
        width: 31.42857%;
        float: left;
        margin-right: 2.85714%;
    }
    .l-container .l-col.l-nest-medium-quarter {
        width: 47.82609%;
        float: left;
        margin-right: 4.34783%;
    }
    .l-container .l-col.l-nest-third {
        width: 48.3871%;
        float: left;
        margin-right: 3.22581%;
    }
    .l-container .l-col.l-right {
        float: right;
        margin-right: 0;
    }
  }
  
  
  /*-----------------End Interactive Analyst ----------------*/
  
  
  /*# sourceMappingURL=global.css.map */
  /*@media screen and (min-width: 769px) {
    .module-annual-presentation div.js--no-presentation {
        flex-direction: row;
        justify-content: space-between;
    }
    .module-annual-presentation div.js--no-presentation > div {
        width: 48%;
        margin-bottom: 0;
    }
  }*/
  /*          #218893         */
  .module-downloads-csr .module_csr-image {
    display: none;
  }

  /*00382636*/
  /*.js--no-presentation  .module-downloads-csr .module_item {
    padding-left: 55%;
  }*/

  .js--no-presentation .module-downloads-csr .module_item {
    background-image: none !important;
    position: relative;
  }
  .js--no-presentation .module-downloads-csr .module_csr-image {
    display: block;
    position: absolute;
    height: calc(100% - 25px);
  /*     width: 220px; */
    width: 52%;
  /*    background-size: cover;*/
    background-repeat: no-repeat;
    left: 5px;
    background-position: center right;
  }
.module-downloads-csr .module_item {
    background-repeat: no-repeat;
    background-size: 240px 100%;
    /*padding-left: 240px;*/
}
   @media screen and (max-width: 1170px) {
 /*  .js--no-presentation .module-downloads-csr .module_csr-image {
        width: 33%;
    }*/
    .js--no-presentation .module-downloads-csr {
        height: 43%;
    }
  }

  @media screen and (max-width: 768px) {
    .js--no-presentation .module-downloads-csr .module_csr-image {
        height: calc(100% - 50px);   
        width: 140px;
    }
  }
  /*          /218893         */
  
  .module-news-details  img.js--move {
    margin: 0 auto 20px auto;
    display: block;    
  }
  
  /* 236133 */
  .module-downloads-csr .module_container.module_container--downloads {
    height: 100%;
  }
  @media screen and (min-width: 1170px) and (max-width: 1250px) {
     /*.js--no-presentation .module-downloads-csr .module_container.module_container--downloads {
        height: 95%;
    }*/
}
.module--shareholder-materials {
text-align: center;
}

.module--shareholder-materials .module_item {
padding: 60px 0;
color: white;
border: solid 1px black;
background-color: #00405c;
margin-bottom:20px;
}

h3.annual-meeting-title {
font-size: 2.8rem;
}

/*274524*/
.youtube-home .grid_col--1-of-2 {
width: 48% !important;
}

.youtube-home .module_headline a {
word-break: break-word !important;
}

/* 286875 */
.module-latest-quarter .grid_col {
display: inline-flex;
}

/* 00204830 */
.agenda-table {
    width: 100%;
    max-width: 900px;
}

.agenda-table th, .agenda-table td {
    padding: 10px 15px;
    border: 2px solid white;
}

.agenda-table th {
    background-color: #1ba0d7;
    color: white;
    font-weight: bold;
    text-align: left;
}

.agenda-table td {
    background-color: #f2f2f2;
    /* text-align: center; */
}

.agenda-table tr:nth-child(even) td {
    background-color: white;
}

.agenda-table .module_link {
    margin: 0;
}
/* end 00204830 */

/* 00272004 start */
.module-downloads-csr .module_item-inner {
    /*padding-left: 40px;*/
}
/* 00272004 end */

.js--no-presentation .module-downloads-csr .module_csr-image {
    left: 2px;
}
@media only screen and (max-width: 1024px) {
    .js--no-presentation .module-downloads-csr .module_csr-image {
        left: 20px;
        width: 100px; 
        top:10px;
    }
    .module-downloads-csr .module_item-inner {
    padding-left: 0px;
    }
    .module-downloads-csr .module_item-inner {
    max-width: 100%;
    }
}
@media only screen and (max-width: 426px) {
    .js--no-presentation .module-downloads-csr .module_csr-image {
        left: 0px;
     width:28%
    }
}
@media only screen and (max-width: 426px) {
    .js--no-presentation .module-downloads-csr .module_csr-image {
        left: 0px;
     width:40%
    }
}

/* 00382636 */
.module-annual-presentation .module_item-inner .module-downloads-csr_text {
    /*flex-direction: column;
    align-items: baseline;*/
    max-width: calc(100% - 240px);
    padding-left: 40px;
}

@media only screen and (max-width: 1024px) {
    .module-annual-presentation .module-downloads-csr img {
        max-width: 100px;
    }
    .module-annual-presentation .module_item-inner .module-downloads-csr_text {
        padding-left: 30px;
    }
}
/* end 00382636 */

/* 00425186 */
.module-person-accordion .module_container--inner {
    border: none;
}
.module-person-accordion .module_container--widget {
    border: 1px solid #abb9c5;
    border-radius: 7px;
}
.module-person-accordion .module_container--widget p, .module-person-accordion .module_container--widget ul {
    font-size: 14px;
    font-size: 1.4rem;
}
.module-person-accordion .module_container--widget small {
    font-size: 12px;
    font-size: 1.2rem;
}
.module-person-accordion .module-person_details-container {
    max-width: 300px;
    padding-right: 30px;
}
.module-person-accordion .module-person_details-container img {
    max-width: 200px;
}
.module-person-accordion .module-person_details-container p {
    margin-bottom: 8px;
}
.module-person-accordion .module-person_details-container ul.list {
    margin: 0 0 8px -18px;
}
.module-person-accordion h4 {
    color: #00bceb;
    font-size: 18px;
    font-size: 1.8rem;
}
.module-person-accordion .module-person_details-container h4 {
    margin-top: 5px;
}
/* end 00425186 */


.PageCorporateGovernanceAuditCommittee .module-faq .module_container--content > .module_item.js--active:first-child::before {
    display: block;
    font-size: 14px;
    margin-bottom: 20px;
    content: 'The Board of Directors (the “Board”) of Cisco Systems, Inc. (the “Company”) has approved and adopted the following Charter to define the Audit Committee’s (the “Committee”) composition, responsibilities, and operation.'
}
.SectionCorporateGovernanceGovernanceDocuments   .module-faq .module_container--content > .module_item.js--active:first-child::before {
    display: block;
    font-size: 14px;
    margin-bottom: 20px;
    content: 'The Board of Directors (the “Board”) of Cisco Systems, Inc. (“the Company”) has developed the following corporate governance guidelines to help it fulfill its responsibilities to its stockholders. The Board may refine or change these guidelines, as necessary or advisable, to achieve this objective.'
}
.PageCorporateGovernanceNominationandGovernanceCommitteeCharter .module-faq .module_container--content > .module_item.js--active:first-child::before {
    display: block;
    font-size: 14px;
    margin-bottom: 20px;
    content: 'The Board of Directors (the “Board”) of Cisco Systems, Inc. (the “Company”) has approved and adopted the following Charter to define the Nomination and Governance Committee’s (the “Committee”) composition, responsibilities, and operation.'
}
.PageCorporateGovernanceEnvironmentalSocialandPublicPolicyCommittee  .module-faq .module_container--content > .module_item.js--active:first-child::before {
    display: block;
    font-size: 14px;
    margin-bottom: 20px;
    content: 'The Board of Directors (the “Board”) of Cisco Systems, Inc. (the “Company”) has approved and adopted the following Charter to define the Environmental, Social, and Public Policy Committee’s (the “Committee”) composition, responsibilities, and operation.'
}
.PageCorporateGovernanceAcquisitionCommittee   .module-faq .module_container--content > .module_item.js--active:first-child::before {
    display: block;
    font-size: 14px;
    margin-bottom: 20px;
    content: 'The Board of Directors (the “Board”) of Cisco Systems, Inc. (the “Company”) has approved and adopted the following Charter to define the Acquisition Committee’s (the “Committee”) composition, responsibilities, and operation.'
}
.PageCorporateGovernanceCompensationandManagementDevelopmentCommittee    .module-faq .module_container--content > .module_item.js--active:first-child::before {
    display: block;
    font-size: 14px;
    margin-bottom: 20px;
    content: 'The Board of Directors (the “Board”) of Cisco Systems, Inc. (the “Company”) has approved and adopted the following Charter to define the Compensation and Management Development Committee’s (the “Committee”) composition, responsibilities, and operation.'
}

.module-downloads-csr .module_item {
    /*margin-bottom: 150px;*/
}

/* 00459559 */
.module-link-boxes h3 {
    color: #4d4c4c;
    font-size: 26px;
    font-size: 2.6rem;
    text-align: center;
}
.module-link-boxes .company-purpose-content {
    background-color: #fbab18;
    margin-bottom: 30px;
}
.module-link-boxes .grid_col {
    margin-bottom: 30px;
}
.module-link-boxes .company-purpose-content,
.module-link-boxes .grid_col > div {
    padding: 20px;
}
.module-link-boxes .grid_col:nth-of-type(odd) > div {
    background-color: #12b7ff;
}
.module-link-boxes .grid_col:nth-of-type(even) > div {
    background-color: #6ebe4a;
}
@media (min-width: 769px) {
    .module-link-boxes .grid_col {
        margin-bottom: 0;
    }
    .module-link-boxes .grid_col:first-of-type {
        padding-right: 20px;
    }
    .module-link-boxes .grid_col:not(:first-of-type):not(:last-of-type) {
        padding-inline: 10px;
    }
    .module-link-boxes .grid_col:last-of-type {
        padding-left: 20px;
    }
}
/* 00459559 end */
/*00469552*/
@media (max-width: 1024px) {
    .module-annual-presentation .grid_col.grid_col--lc-1-of-2 {
    	    width: 100%;
}
}

@media (max-width: 768px) {
    .module-annual-presentation .grid_col.grid_col--lc-1-of-2 {
    	    flex-direction: column;
}
}
/*00469552*/

/*00490124*/
.PageHome .module--home_box .module_container--inner {
    display: flex;
}
.PageHome .module--home_box .module_container--inner .video_container_outer {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.PageHome .home-box-container {
    display: flex;
    justify-content: space-between;
    margin: 0 3px 3px 3px;
}

.PageHome .home-box {
    padding: 0 2%;
    color: #005073;
}

.PageHome .home-box a {
    color: #005073;
    text-decoration: underline;
}

.PageHome .home-box-container-center {
    display: flex;
    justify-content: center;
    margin: 3px;
}

.PageHome .home-box-container-center .home-box {
    border-radius: 10px;
}

.PageHome .home-box-container-center h4 {
    margin-bottom: 24px;
}

.PageHome .bottom-box p {
  margin-top: 15px;
}

.PageHome .module--home_box .module-container__content {
    padding-left: 0px;
}

.border-orange {
    border-width: 7px;
    border-style: solid;
    border-color: orange;
}

.background-cisco_blue {
    background-color: #00405c;
}

.border-homebox_blue {
    border-width: 7px;
    border-style: solid;
    border-color: #12b6fe;
}

.border-homebox_green {
    border-width: 7px;
    border-style: solid;
    border-color: #6ebe4a;
}

.background-white {
    background-color: white;
}

.text-color-white {
    color: white;
}

.text-left {
    text-align: left;
}
/*00490124*/