/*===================FONTS====================*/

@font-face {
    font-family: "TDASansScreen-Light";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/TDASansScreen-Light.eot") format("embedded-opentype"), url("../fonts/TDASansScreen-Light.woff") format("woff"), url("../fonts/TDASansScreen-Light.woff2") format("woff2"), url("../fonts/TDASansScreen-Light.ttf") format("truetype"), url("../fonts/TDASansScreen-Light.svg") format("svg");
}

@font-face {
    font-family: "TDASansScreen-Medium";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/TDASansScreen-Medium.eot") format("embedded-opentype"), url("../fonts/TDASansScreen-Medium.woff") format("woff"), url("../fonts/TDASansScreen-Medium.woff2") format("woff2"), url("../fonts/TDASansScreen-Medium.ttf") format("truetype"), url("../fonts/TDASansScreen-Medium.svg") format("svg");
}

@font-face {
    font-family: "TDASansScreen-Roman";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/TDASansScreen-Roman.eot") format("embedded-opentype"), url("../fonts/TDASansScreen-Roman.woff") format("woff"), url("../fonts/TDASansScreen-Roman.woff2") format("woff2"), url("../fonts/TDASansScreen-Roman.ttf") format("truetype"), url("../fonts/TDASansScreen-Roman.svg") format("svg");
}

@font-face {
    font-family: "TDASansScreen-Bold";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/TDASansScreen-Bold.eot") format("embedded-opentype"), url("../fonts/TDASansScreen-Bold.woff") format("woff"), url("../fonts/TDASansScreen-Bold.woff2") format("woff2"), url("../fonts/TDASansScreen-Bold.ttf") format("truetype"), url("../fonts/TDASansScreen-Bold.svg") format("svg");
}

@font-face {
    font-family: "TDASans-Light";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/TDAmeritradeSans-Light_v1-1.otf") format("opentype"), url("../fonts/TDAmeritradeSans-Light_v1-1.woff") format("woff"), url("../fonts/TDAmeritradeSans-Light_v1-1.woff2") format("woff2");
}

@font-face {
    font-family: "TDASans-Thin";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/TDAmeritradeSans-Thin_v1-1.otf") format("opentype"), url("../fonts/TDAmeritradeSans-Thin_v1-1.woff") format("woff"), url("../fonts/TDAmeritradeSans-Thin_v1-1.woff2") format("woff2");
}

@font-face {
    font-family: "TDASans-Regular";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/TDAmeritradeSans-Regular_v1-1.otf") format("opentype"), url("../fonts/TDAmeritradeSans-Regular_v1-1.woff") format("woff"), url("../fonts/TDAmeritradeSans-Regular_v1-1.woff2") format("woff2");
}

@font-face {
    font-family: "TDASans-Medium";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/TDAmeritradeSans-Medium_v1-1.otf") format("opentype"), url("../fonts/TDAmeritradeSans-Medium_v1-1.woff") format("woff"), url("../fonts/TDAmeritradeSans-Medium_v1-1.woff2") format("woff2");
}

@font-face {
    font-family: "TDASans-Bold";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/TDAmeritradeSans-Bold_v1-1.otf") format("opentype"), url("../fonts/TDAmeritradeSans-Bold_v1-1.woff") format("woff"), url("../fonts/TDAmeritradeSans-Bold_v1-1.woff2") format("woff2");
}


/*================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;
}

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;
}

b,
strong {
    font-family: "TDASansScreen-Bold", sans-serif;
}

em {
    font-style: italic;
}

sup {
    vertical-align: super;
    font-size: 75%;
    line-height: 1;
}

sub {
    vertical-align: sub;
    font-size: 75%;
    line-height: 1;
}

small {
    font-size: small;
}


/*---------- Animations ----------*/

@keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/*==================================
 --------- DEFAULT STYLES ---------
==================================*/

body {
    overflow-x: hidden;
    color: #000;
    font-family: "TDASansScreen-Roman", sans-serif;
    font-size: 18px;
    line-height: 1;
    letter-spacing: -0.020em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: none;
}


/*---------- TYPOGRAPHY ----------*/

h1 {
    font-family: "TDASans-Bold", sans-serif;
    font-size: 90px;
    margin-top: 40px;
    margin-bottom: 40px;
}

h2 {
    font-family: "TDASans-Bold", sans-serif;
    font-size: 50px;
    margin-top: 30px;
    margin-bottom: 30px;
}

h3 {
    font-family: "TDASansScreen-Bold", sans-serif;
    font-size: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
}

p + h3 {
    margin-top: 50px;
}

h4 {
    font-family: "TDASansScreen-Bold", sans-serif;
    font-size: 24px;
    margin-top: 16px;
    margin-bottom: 16px;
}

h5 {
    font-family: "TDASansScreen-Bold", sans-serif;
    font-size: 18px;
    margin-top: 12px;
    margin-bottom: 12px;
}

h6 {
    font-family: "TDASansScreen-Bold", sans-serif;
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 10px;
}

a {
    text-decoration: none;
    color: #087900;
}

a:hover:not(.button) {
    color: #43b02a;
}

p {
    line-height: 1.67;
    margin-top: 1.5em;
    margin-bottom: 1.5em;
}

i {
    display: inline-block;
}

@media only screen and (max-width: 767px) {
    h1 {
        font-size: 45px;
    }
    h2 {
        font-size: 35px;
    }
}


/*------------ COMMON ------------*/

img {
    max-width: 100%;
}

input[type="checkbox"],
input[type="radio"] {
    cursor: pointer;
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

input[type="checkbox"]:focus + label,
input[type="radio"]:focus + label {
    text-decoration: underline;
}

input[type="checkbox"] + label,
input[type="radio"] + label {
    cursor: pointer;
    position: relative;
    padding-left: 30px;
    display: inline-block;
}


/*active state styles general*/

input[type="checkbox"] + label:before,
input[type="radio"] + label:before {
    content: "";
    width: 12px;
    height: 12px;
    background: #40a829;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    border: none;
    border-radius: 2px;
}

input[type="radio"] + label:before {
    border-radius: 100%;
}

input[type="checkbox"]:not(:checked) + label:after,
input[type="checkbox"]:checked + label:after,
input[type="radio"]:checked + label:after {
    content: "";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    top: 50%;
    left: 3px;
    font-size: 11px;
    font-weight: bold;
    line-height: 1;
    transition: all .1s;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

input[type="radio"]:not(:checked) + label:after,
input[type="radio"]:checked + label:after {
    border-radius: 100%;
}


/*active state styles with check sign*/

input[type="checkbox"]:not(:checked) + label:after,
input[type="checkbox"]:checked + label:after,
input[type="radio"]:checked + label:after {
    font-family: 'q4-icons' !important;
    content: "\ed71";
    font-size: 7px;
    top: calc(50% + 2px);
    left: 3px;
    width: 12px;
    height: 12px;
    color: #fff;
}


/*active state styles with middle square*/


/*input[type="checkbox"]:not(:checked) + label:after,
input[type="checkbox"]:checked + label:after,
input[type="radio"]:checked + label:after {
    width: 8px;
    height: 8px;
    background: #93a533;
}*/


/*active state activation*/

input[type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
}

input[type="checkbox"]:checked + label:after {
    opacity: 1;
}

input::-ms-clear {
    display: none;
}

iframe {
    width: 100%;
}


/*------- HACKS AND FIXES -------*/

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}


/*------------ LISTS ------------*/

.list {
    list-style-type: disc;
    padding-left: 30px;
    margin-top: 15px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.list--ordered {
    list-style-type: decimal;
}

.list--alpha {
    list-style-type: lower-alpha;
}

.list--upper-alpha {
    list-style-type: upper-alpha;
}

.list--roman {
    list-style-type: lower-roman;
}

.list--upper-roman {
    list-style-type: upper-roman;
}

.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: 20px 30px;
    background: transparent;
    border: 1px solid #7f7f7f;
    color: #000;
    border-radius: 30px;
    font-family: "TDASansScreen-Roman", sans-serif;
    font-size: 18px;
    line-height: 1;
}

.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;
}

.textarea {
    width: 100%;
    resize: vertical;
}

.upload {
    line-height: 0;
}

.button {
    font-family: "TDASans-Bold", sans-serif;
    background: #40A829;
    border-color: #40A829;
    color: #fff;
    text-align: center;
    transition: 0.3s ease-in-out;
}

.button:hover {
    background: #087900;
    border-color: #087900;
}

.button--inverted {
    background: #c11312;
    border-color: #c11312;
}

.button--inverted:hover {
    background: #087900;
    border-color: #087900;
}

.button--inverted.js--disabled {
    background: #fff;
    border-color: #087900;
    color: #087900;
}

.button--dark {
    background: transparent;
    border-color: #fff;
    color: #fff;
}

.button--dark:hover {
    background: #fff;
    border-color: #fff;
    color: #087900;
}

.button--transparent {
    background: transparent;
    border-color: #7f7f7f;
    color: #000;
}

.button--transparent:hover {
    background: #40A829;
    border-color: #40A829;
    color: #fff;
}

.dropdown {
    padding: 13.5px 35px 13.5px 20px;
    background: #fff url("../design/svg/q4-icon_chevron-down-green.svg") no-repeat right 15px center;
    background-size: 14px 14px;
    min-width: 130px;
    font-size: 16px;
    line-height: 1.2;
}

.dropdown::-ms-expand {
    display: none;
}


/*------------ TABLES ------------*/

.table {
    font-size: 16px;
    width: 100%;
    margin: 16px 0;
}

.table thead {
    background-color: #d7d7d7;
}

.table thead th {
    font-family: "TDASansScreen-Bold", sans-serif;
    text-align: left;
}

.table thead th + th {
    border-left: 2px solid #f7f7f7;
}

.table tbody {
    background-color: #fff;
}

.table tbody tr:not(:last-child) {
    border-bottom: 2px solid #f7f7f7;
}

.table tbody td + td {
    border-left: 2px solid #f7f7f7;
}

.table th,
.table td,
.table tr > .grid_col {
    margin: 0;
    padding: 11px 10px;
}

.table th {
    padding-top: 22px;
    padding-bottom: 22px;
}

.table th {
    color: #fff;
}

.table--headless tr:nth-child(even) {
    background-color: transparent;
}

.table--headless tr:nth-child(odd) {
    background-color: #f7f7f7;
}

.table--headless tr:first-child {
    background-color: #087900;
    text-align: left;
}

.table--headless tr:first-child td {
    color: #fff;
}

.table-wrapper {
    overflow-x: auto;
}

@media only screen and (max-width: 480px) {
    .table--responsive thead {
        display: none;
    }
    .table--responsive tbody {
        border-top: 2px solid #087900;
        border-bottom: 2px solid #087900;
    }
    .table--responsive td {
        display: block;
    }
    .table--responsive td[data-heading]:before {
        content: attr(data-heading) ": ";
        font-family: "TDASansScreen-Bold", sans-serif;
        display: inline-block;
        vertical-align: top;
        min-height: 1px;
        box-sizing: border-box;
        margin-right: -.25em;
        width: 50%;
    }
    .table--responsive td[data-heading] span {
        display: inline-block;
        vertical-align: top;
        min-height: 1px;
        box-sizing: border-box;
        margin-right: -.25em;
        width: 50%;
    }
}


/*--------- SPECIAL BOXES --------*/

.code {
    margin: 32px 0;
    padding: 20px 15px;
    background: #f7f7f7;
    border-left: 3px solid rgba(0, 111, 186, 0.5);
    font-family: monospace, serif;
    font-size: 14px;
    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: #f7f7f7;
    border-left: 3px solid rgba(241, 175, 15, 0.5);
    font-size: 14px;
    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: "\e9bb";
    font-size: 16px;
    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";
}

.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$=".csv"]:before,
.module_q4-icon-links .module_link[href$=".XLS"]:before,
.module_q4-icon-links .module_link[href$=".CSV"]:before {
    content: "\ef41";
}

.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: "\e9b3";
}

.module_q4-icon-links .module_link[href$=".pdf"]:before,
.module_q4-icon-links .module_link[href$=".PDF"]:before {
    content: "\ef3e";
}

.module_q4-icon-links .module_link.module_link-webcast:before,
.module_q4-icon-links .module_webcast-link:before {
    content: "\e989";
}

.module_q4-icon-links .module_link.module_link-news:before,
.module_q4-icon-links .module_link.module_link-transcript:before {
    content: "\e99b";
}

.module_q4-icon-links .module_link.module_link-presentation:before {
    content: "\e95c";
}

.module_q4-icon-links .module_link.module_link-file:before {
    content: "\eb81";
}

.module_q4-icon-links .module_link.module_link-sec:before {
    content: "\e9bb";
}

.module_q4-icon-links .module_link.module_link-sec[href$=".pdf"]:before {
    content: "\ef3e";
}

.module_q4-icon-links .module_link.module_link-sec[href$=".rtf"]:before {
    content: "\ef40";
}

.module_q4-icon-links .module_link.module_link-sec[href$=".xls"]:before {
    content: "\ef41";
}

.module_q4-icon-links .module_link.module_link-sec[href$=".zip"]:before {
    content: "\e9b9";
}


/*==================================
 ----------- 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 .grid_col {
    padding-left: 20px;
}

.grid .grid--no-gutter .grid_col {
    padding-left: 0;
}

.grid--gutter-60 {
    margin-left: -60px;
}

.grid--gutter-60 .grid_col {
    padding-left: 60px;
}

.grid--gutter-60 .grid .grid_col {
    padding-left: 20px;
}

.grid .grid--gutter-60 .grid_col {
    padding-left: 60px;
}

.grid--gutter-60 .grid--no-gutter .grid_col {
    padding-left: 0;
}

.grid--no-gutter .grid--gutter-60 .grid_col {
    padding-left: 60px;
}

.grid--gutter-35 {
    margin-left: -35px;
}

.grid--gutter-35 .grid_col {
    padding-left: 35px;
}

.grid--gutter-35 .grid .grid_col {
    padding-left: 20px;
}

.grid .grid--gutter-35 .grid_col {
    padding-left: 35px;
}

.grid--gutter-35 .grid--no-gutter .grid_col {
    padding-left: 0;
}

.grid--no-gutter .grid--gutter-35 .grid_col {
    padding-left: 35px;
}

.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;
}

.grid--flex {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
}

.grid--flex .module-boxes_item-inner {
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.module-boxes_item-inner--top {
    justify-content: flex-start;
}

.module-boxes_item-inner--center {
    justify-content: center;
}

.module-boxes_item-inner--bottom {
    justify-content: flex-end;
}


/*==================================
 --------- UTILITY CLASSES --------
==================================*/

.hidden:not([role=tabpanel]) {
    display: none !important;
}

.hidden[role=tabpanel] {
    display: none;
}

.disabled {
    opacity: 0.1;
    border-color: #000;
    color: #000;
    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;
}

.text-underline {
    text-decoration: underline;
}

.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: #087900;
}

.background--alt-brand {
    background-color: #f1af0f;
}

.background--dark {
    background-color: #000;
}

.background--light {
    background-color: #fff;
}

.background--grey {
    background-color: #f7f7f7;
}

.background--success {
    background-color: #23a217;
}

.background--error {
    background-color: #c11312;
}

.background--color-1 {
    background-color: #43b02a;
}

.background--color-2 {
    background-color: #183028;
}

.background--color-3 {
    background-color: #38635a;
}

.background--color-4 {
    background-color: #f5f1eb;
}

.background--color-5 {
    background-color: #6dc4bc;
}

.background--color-6 {
    background-color: #bee7d3;
}

.background--color-7 {
    background-color: #fdf3cb;
}

.background--color-8 {
    background-color: #2a5673;
}

.background--color-9 {
    background-color: #64a1c6;
}

.background--color-10 {
    background-color: #b2d7ed;
}

.background--color-11 {
    background-color: #e1eef9;
}

.background--color-12 {
    background-color: #d8d8d8;
}

.background--color-13 {
    background-color: #999999;
}

.background--color-14 {
    background-color: #666666;
}

.background--color-15 {
    background-color: #f5f0eb;
}

.background--color-16 {
    background-color: #b1d6ec;
}

.background--color-17 {
    background-color: #d7d7d7;
}

.background--color-18 {
    background-color: #38625a;
}

.background--color-19 {
    background-color: #2a5573;
}

.background--color-20 {
    background-color: #f5f0ec;
}

.color--brand {
    color: #087900;
}

.color--dark {
    color: #000;
}

.color--grey {
    color: #f7f7f7;
}

.color--success {
    color: #23a217;
}

.color--error {
    color: #c11312;
}

.color--1 {
    color: #43b02a;
}

.color--2 {
    color: #183028;
}

.color--3 {
    color: #38635a;
}

.color--4 {
    color: #f5f1eb;
}

.color--5 {
    color: #6dc4bc;
}

.color--6 {
    color: #bee7d3;
}

.color--7 {
    color: #fdf3cb;
}

.color--8 {
    color: #2a5673;
}

.color--9 {
    color: #64a1c6;
}

.color--10 {
    color: #b2d7ed;
}

.color--11 {
    color: #e1eef9;
}

.color--12 {
    color: #d8d8d8;
}

.color--13 {
    color: #999999;
}

.color--14 {
    color: #666666;
}

.color--15 {
    color: #f5f0eb;
}

.color--16 {
    color: #b1d6ec;
}

.color--17 {
    color: #d7d7d7;
}

.color--18 {
    color: #38625a;
}

.color--19 {
    color: #2a5573;
}

.color--20 {
    color: #f5f0ec;
}

.dark {
    color: #fff;
}

.dark a:not(.button) {
    color: #fff;
}

.dark a:hover:not(.button) {
    color: #43b02a;
}

.ltr {
    direction: ltr;
}

.rtl {
    direction: rtl;
}

.font-light {
    font-family: "TDASansScreen-Light", sans-serif;
}

.font-normal {
    font-family: "TDASansScreen-Roman", sans-serif;
}

.font-medium {
    font-family: "TDASansScreen-Medium", sans-serif;
}

.font-bold {
    font-family: "TDASansScreen-Bold", sans-serif;
}

.no-margin-top {
    margin-top: 0;
}

.no-margin-bottom {
    margin-bottom: 0;
}

.margin-left-65 {
    margin-left: 65px;
}

.margin-right-65 {
    margin-right: 65px;
}

@media only screen and (max-width: 767px) {
    .margin-left-65--mobile-none {
        margin-left: 0;
    }
    .margin-right-65--mobile-none {
        margin-right: 0;
    }
}


/*==================================
 --------- 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;
    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: #000;
    color: #000;
    transition: none;
    pointer-events: none;
}

.js--invalid input[type="text"],
.js--invalid textarea,
.js--invalid select {
    border: 1px solid #c11312 !important;
}

.js--invalid input[type="checkbox"] {
    border-color: #c11312 !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:not(:empty),
.module_headline:not(:empty),
.module_location:not(:empty),
.module_speakers:not(:empty),
.module_links:not(:empty),
.module_body:not(:empty),
.module_options:not(:empty),
.module_not-found:not(:empty) {
    margin-bottom: 15px;
}

.module_error-container {
    margin-bottom: 30px;
    color: #c11312;
}

.module_add-to-calendar-reveal {
    color: #087900;
    cursor: pointer;
}

.module_add-to-calendar-reveal:focus {
    text-decoration: underline;
}

.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;
    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;
}

.module_add-to-calendar.js--hidden {
    display: none;
}

.module_actions {
    margin-top: 20px;
}

.module_pager {
    margin-top: 50px;
}

.module_date-time {
    font-family: "TDASansScreen-Bold", sans-serif;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 24px;
}

.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-link,
.module_headline-text {
    font-size: 24px;
    line-height: 30px;
    color: #000;
}

a.module_headline-link:hover {
    color: #087900;
}

.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 dotted #d7d7d7;
}

.module_label {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 14px;
}

.module_label + .module_required {
    font-size: 14px;
}

.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: 18px;
    line-height: 24px;
}

.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_link--underlined {
    transition: 0.2s ease-in-out;
}

.module_link--underlined .module_link-text {
    border-bottom: 1px solid;
    transition: 0.2s ease-in-out;
}

a.module_link--underlined:hover {
    color: #087900;
}

.module_link--underlined:hover .module_link-text {
    border-color: transparent;
}

.dark a.module_link--underlined:hover {
    color: #fff;
}

.module_link--underlined:focus {
    text-decoration: none !important;
}

.module_link--download i {
    padding-right: 7px;
}

.module_link--more {
    color: #000;
    margin: 0;
    border-bottom: 1px solid;
    transition: 0.2s ease-in-out;
}

a.module_link--more:hover {
    color: initial;
    border-color: transparent;
}

.dark a.module_link--more:hover {
    color: #fff;
}

.module_link--more:focus {
    text-decoration: none !important;
}

.module_link--brand {
    color: #087900;
}

a.module_link--brand:hover {
    color: #087900;
}

.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,
.MessageSent p: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: #c11312;
}

.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 #087900;
    color: #000;
    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: #087900;
    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: 2px;
}

@media only screen and (max-width: 480px) {
    .module_options-label,
    .module_options-select,
    .module_options-submit {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
}

.module_options-sort {
    display: inline-block;
    vertical-align: middle;
    margin-left: 15px;
}

.module_options-sort-item {
    font-size: 14px;
    color: #188800;
    cursor: pointer;
}

@supports (-ms-ime-align: auto) {
    .module_options-sort-item {
        font-size: 13.5px;
    }
}

.module_options-sort-item i {
    font-size: 16px;
    vertical-align: middle;
    margin-right: 7px;
}

.module_options-sort-item--descending,
.module_options-sort.js--active .module_options-sort-item--ascending {
    display: none;
}

.module_options-sort.js--active .module_options-sort-item--descending {
    display: block;
}

.module_pager a {
    color: #000;
}

.module_pager a[href] {
    color: #087900;
}

.module_reminder {
    background-color: #f7f7f7;
    padding: 40px 30px;
}

.module_reminder .module_input.module_reminder-period {
    background-color: #fff;
    min-width: 175px;
    text-transform: lowercase;
}

.module_reminder .module_input.module_reminder-email {
    width: 100%;
    margin-bottom: 30px;
}

.module_reminder.js--reminded {
    display: none;
}

.module_reminder .module_label {
    font-family: "TDASansScreen-Bold", sans-serif;
    font-size: 18px;
    display: block;
    margin-bottom: 30px;
}

.module_reminder .module_label.module_reminder-email {
    font-size: 0;
    border-bottom: 1px dotted #999999;
    padding-top: 35px;
}

.module_required,
.red-star {
    color: #c11312;
}

.module_required-text {
    font-size: 13px;
    color: #000;
}

.module_rss {
    float: right;
}

.module_rss--top {
    margin-top: 12px;
}

@media only screen and (max-width: 1023px) {
    .module_rss--top {
        margin-top: 0;
        margin-bottom: 10px;
    }
}

.module_speakers li {
    margin-bottom: 5px;
}

.module_title {
    margin-top: 0;
}

.module-title-smaller .module_title,
.module_title--smaller {
    font-size: 40px;
}

@media only screen and (max-width: 767px) {
    .module-title-smaller .module_title,
    .module_title--smaller {
        font-size: 35px;
    }
}

.module-title-small .module_title,
.module_title--small {
    font-size: 24px;
}

.module_view-all-link {
    font-size: 14px;
    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: 7px 10px;
    border: 1px solid #999999;
    border-radius: 0;
    background-color: #fff;
    font-family: inherit;
    font-size: 18px;
}

.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;
}

.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;
}

.module_dropdown {
    background: #fff url("../design/svg/q4-icon_chevron-down-green.svg") no-repeat right 15px center;
    background-size: 14px 14px;
}

.module_dropdown::-ms-expand {
    display: none;
}

.module-details .module_date-time {
    margin-bottom: 15px;
}


/*------- 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;
}

.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: 7px 10px;
    border: 1px solid #999999;
    border-radius: 0;
    background-color: #fff;
    font-family: inherit;
    font-size: 18px;
}

.fancybox-container .CaptchaContainer table tr:nth-child(4) td {
    padding-bottom: 20px;
}

.fancybox-container .CaptchaContainer table tr td {
    padding-right: 0;
}


/*- 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;
    margin-bottom: 5px;
}

.module-calculator_input input[type="checkbox"] + label {
    margin: 0;
}

.module-calculator_input-row {
    padding-bottom: 10px;
}

.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 #087900;
        border-bottom: 2px solid #087900;
    }
    .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 -*/

@media only screen and (max-width: 768px) {
    .module-committee .module_container--desktop {
        display: none;
    }
}

.module-committee .module_container--tablet {
    display: none;
}

@media only screen and (max-width: 768px) {
    .module-committee .module_container--tablet {
        display: block;
    }
}

.module-committee .module_header {
    display: block;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    font-weight: normal;
}

.module-committee .module_item {
    padding: 0;
}

.module-committee .module_item ~ .module_item {
    border: 0;
}

.module-committee .module_item:nth-child(even) {
    background: rgba(0, 0, 0, 0.05);
}

.module-committee .grid_col {
    padding: 20px 15px;
    text-align: center;
}

.module-committee .grid_col:first-child {
    text-align: left;
}

.module-committee_category.js--active .module_header i:before {
    content: "\edc2";
}

.module-committee_custom-role {
    margin-left: 5px;
}

.module-committee_bio {
    padding: 0 15px 20px;
    text-align: left;
}

.module-committee_bio p {
    margin: 0;
}

.module-committee_bio p:not(:last-of-type) {
    margin-bottom: 16px;
}

.module-committee_legend-container {
    padding: 20px 15px;
}

.module-committee_legend {
    display: inline-block;
    margin-right: 30px;
}

.module-committee_legend i {
    margin-right: 5px;
}


/*----- Download List Module -----*/

.module-downloads .module_nav {
    display: none;
}

.module-downloads .module_item {
    padding: 15px 0;
}

.module-downloads_thumbnail,
.module-downloads_description,
.module-downloads_date {
    display: none;
}

.module-downloads_title {
    position: relative;
}

.module-downloads_title-link {
    margin: 0 20px 0 0;
}

.module-downloads_title-link:before {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}


/*--------- Event Module ---------*/

.module-event .module_location,
.module-event .module_speakers h4,
.module-event .module_body {
    display: none;
}

.module-event .module_options {
    margin-bottom: 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #dddddd;
}

.module-event-details .module_container--content > .grid_col:first-child {
    padding-left: 85px;
    padding-right: 175px;
}

.module-event-details .module_title {
    font-family: "TDASansScreen-Bold", sans-serif;
    font-size: 30px;
}

.module-event-details .module_speakers h4 {
    font-size: 18px;
    display: inline;
    margin-top: 0;
}

.module-event-details .module_speakers ul,
.module-event-details .module_speakers li {
    display: inline;
}

.module-event-details .module_speakers li + li:before {
    content: "";
    display: block;
}

.module-event-details .module_details-title:not(.js--cloned-append) {
    font-family: "TDASansScreen-Roman", sans-serif;
    font-size: 18px;
    margin: 0;
}

.module-event-details .module_details-title:not(.js--cloned-append):before {
    font-family: "TDASansScreen-Bold", sans-serif;
    content: "Title: ";
}

.module-event-details .module_date-time {
    font-family: "TDASansScreen-Roman", sans-serif;
    font-size: 18px;
    margin-bottom: 0;
}

.module-event-details .module_date-time > span {
    display: block;
}

.module-event-details .module_date-text:not(:empty):before {
    font-family: "TDASansScreen-Bold", sans-serif;
    content: "Date: ";
}

.module-event-details .module_time-text:not(:empty):before {
    font-family: "TDASansScreen-Bold", sans-serif;
    content: "Time: ";
}

.module-event-details .module_details-title-date {
    padding-top: 70px;
    padding-bottom: 70px;
    position: relative;
    margin-bottom: 90px;
}

.module-event-details .module_details-title-date > * {
    position: relative;
}

.module-event-details .module_details-title-date:before {
    content: "";
    background-color: #f5f0eb;
    position: absolute;
    top: 0;
    left: -100%;
    width: 100000%;
    height: 100%;
}

.module-event-details .module_details-title-date .module_details-title {
    font-family: "TDASans-Bold", sans-serif;
    font-size: 50px;
    margin-top: 0;
    margin-bottom: 30px;
}

.module-event-details .module_details-title-date .module_date-time {
    font-size: 24px;
}

.module-event-details .module_details-title-date .module_time-text {
    display: none;
}

.module-event-details .module_details-title-date .module_date-text:before,
.module-event-details .module_details-title-date .module_time-text:before {
    display: none;
}

.module-event-details .module_location {
    margin-bottom: 0;
}

.module-event-details .ModuleLocation:not(:empty):before {
    font-family: "TDASansScreen-Bold", sans-serif;
    content: "Location:";
}

.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;
}

.module-event-latest .module_item.grid_col {
    padding-left: 20px;
}

.module-event-latest .module_item-wrap {
    padding: 30px;
    background-color: #f7f7f7;
}

.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_nav {
    display: none;
}

.module-event-upcoming .module_item {
    padding: 0 0 10px;
}

.module-event-upcoming .module_item ~ .module_item {
    padding: 30px 0 10px;
}

.module-event-boxes h4 {
    font-family: "TDASansScreen-Roman", sans-serif;
    margin-top: 0;
}

.module-event-boxes .module_container--widget {
    padding-top: 30px;
}

.module-event-boxes .module_item {
    border: none;
}

.module-event-boxes .module_item-inner {
    position: relative;
    padding: 100px 20px 30px;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-end;
}

.module-event-boxes .module_date-time {
    font-family: "TDASansScreen-Medium", sans-serif;
    font-size: 14px;
    line-height: 1;
    color: #fff;
    text-transform: capitalize;
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    top: 20px;
    left: 20px;
    padding: 8px 20px;
    border-radius: 30px;
    z-index: 2;
    margin: 0;
}

.module-event-boxes .module_headline-link,
.module-event-boxes .module_headline-text {
    font-family: "TDASans-Medium", sans-serif;
}

.module-event-boxes .module_links {
    margin-bottom: 0;
}

.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: #f7f7f7;
}

.module-event-calendar_splash i {
    font-size: 40px;
    color: #087900;
}

.module-event-calendar_splash p {
    font-size: 14px;
    line-height: 1.2;
}

.module-event-calendar_controls {
    padding: 20px 15px;
    background-color: #087900;
    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 dotted #d7d7d7;
}

.module-event-calendar_day {
    position: relative;
    width: 14.285%;
    margin: 0;
    padding: 8px 0 25px;
    border-top: 1px dotted #d7d7d7;
    border-left: 1px dotted #d7d7d7;
}

.module-event-calendar_day.calendar-dow-6 {
    border-right: 1px dotted #d7d7d7;
}

.module-event-calendar_day--name {
    padding: 15px 0 10px;
    border: none;
}

.module-event-calendar_day--today {
    background: #f7f7f7;
}

.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: #087900;
}

.module-event-calendar_day--selected {
    background-color: #087900;
    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;
}

.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: 1023px) {
    .module-event-details .module_container--content > .grid_col {
        width: 100%;
    }
    .module-event-details .module_container--content > .grid_col:first-child {
        padding-left: 20px;
        padding-right: 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-calendar_calendar-container {
        padding-right: 0;
    }
    .module-event-calendar_event-container {
        margin-top: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .module-event-details .module_details-title-date .module_details-title {
        font-size: 35px;
    }
}

@media only screen and (max-width: 480px) {
    .module-event-calendar_day {
        display: inline-block;
    }
}


/*---------- FAQ Module ----------*/

.module-faq .module_item {
    background-color: #f7f7f7;
    padding: 0;
}

.module-faq .module_item ~ .module_item {
    border-top: none;
    margin-top: 5px;
}

.module-faq_question {
    font-size: 18px;
    padding: 20px 55px 20px 20px;
    margin: 0;
    cursor: pointer;
    position: relative;
}

.module-faq_question:after {
    font-family: 'q4-icons';
    content: "\e92e";
    font-size: 18px;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #fff;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.module-faq .module_item.js--active .module-faq_question:after {
    content: "\ed5e";
}

.module-faq .module_item.js--active .module-faq_question {
    border-bottom: 1px dotted #999999;
}

.module-faq_answer {
    font-size: 16px;
    line-height: 1.5;
    padding: 35px 60px 60px;
}

.module-faq_answer .list {
    margin-top: 0;
}

.module-faq_answer a {
    text-decoration: underline;
}

.module-faq_answer p {
    line-height: 1.5;
    margin: 0;
    padding: 0 0 18px;
}

.module-faq_answer > *:first-child {
    margin-top: 0;
    padding-top: 0;
}

.module-faq_answer > *:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.module-faq .toggle-all {
    margin-bottom: 30px;
}

.module-faq .toggle-all a:before {
    content: "Show all";
}

.module-faq .toggle-all.js--active a:before {
    content: "Hide all";
}

@media only screen and (max-width: 1023px) {
    .module-faq_answer {
        padding: 25px 20px;
    }
}

@media only screen and (max-width: 767px) {
    .module-faq_question {
        padding-right: 45px;
    }
    .module-faq_question:after {
        font-size: 14px;
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
}


/*--- Financial Report Modules ---*/

.module-financial-year .module_cover {
    margin-bottom: 20px;
}

.module-financial-year .module_cover img {
    display: block;
    border: 1px solid #a0a0a0;
    width: 100%;
}

.module-financial-year--latest .module_cover img {
    border: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    width: auto;
}

.module-financial-year .module_item {
    padding: 0;
}

.module-financial-year .module_item ~ .module_item {
    border: none;
}

.module-financial-year--archive .module_item {
    padding-left: 35px;
    padding-bottom: 50px;
}

.module-financial-year .module_links {
    margin: 0;
}

.module-financial-year .module_link {
    margin: 0;
}

.module-financial-year .module-financial_year {
    font-family: "TDASans-Bold", sans-serif;
    margin-bottom: 5px;
}

.module-financial-year--latest.module-financial-year--latest {
    background-image: url('../design/latest-annual-bg2.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.module-financial_annual-latest {
    max-width: 650px;
}

.module-financial_annual-latest h1 {
    line-height: 1.1;
    margin-top: 0;
    margin-bottom: 90px;
}

.module-financial_annual-latest .module_links > div + div {
    margin-top: 15px;
}

.module-financial_annual-latest-title {
    margin-top: 0;
}

.module-financial_annual-latest .module_link:before {
    font-family: 'q4-icons';
    content: "\e918";
    font-size: 20px;
    display: inline-block;
    vertical-align: middle;
    padding-right: 12px;
}

.module-financial_annual-archive {
    padding-top: 60px;
}

.module-financial-quarter .module_intro {
    font-size: 24px;
    line-height: 36px;
    padding-bottom: 10px;
}

.module-financial-quarter .module_options {
    margin-bottom: 50px;
}

.module-financial-quarter .dropdown {
    min-width: 220px;
}

.module-financial-quarter .module_item {
    padding: 0;
}

.module-financial-quarter .module_item ~ .module_item {
    border-top: none;
}

.module-financial-quarter .module_item-box {
    padding-bottom: 35px;
}

.module-financial-quarter .module_item-box-inner {
    display: -webkit-flex;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    height: 100%;
    padding: 80px 25px 40px;
    min-height: 240px;
    position: relative;
}

.module-financial-quarter_type-year {
    display: inline-block;
    font-family: "TDASans-Medium", sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 24px;
    padding: 2px 15px;
    padding: 5px 15px;
    position: absolute;
    top: 25px;
    left: 25px;
}

.module-financial-quarter_title {
    font-family: "TDASansScreen-Roman", sans-serif;
    font-size: 23px;
    line-height: 30px;
    margin-top: 0;
}

.module-financial-quarter .module_link {
    margin: 0;
    color: #000;
    border-bottom: 1px solid;
    transition: 0.2s ease-in-out;
}

.module-financial-quarter .module_link:hover {
    color: #000;
    border-color: transparent;
}

.module-financial-quarter--archive .module_item--Q4 .module_link,
.module-financial-quarter--archive .module_item--Q3 .module_link {
    color: #fff;
}

.module-financial-quarter_icon {
    position: absolute;
    top: 25px;
    right: 15px;
}

.module-financial-quarter_icon:before {
    font-family: 'q4-icons';
    content: "\e918";
    font-size: 20px;
}

.module-financial-quarter--latest .module-financial-quarter_icon:before {
    color: #38635a;
}

.module-financial-quarter--archive .module_item--Q4 .module-financial-quarter_icon:before,
.module-financial-quarter--archive .module_item--Q3 .module-financial-quarter_icon:before {
    color: #fff;
}

.module-financial-quarter_icon--news:before {
    display: none;
}

.module-financial-quarter_icon--remarks:before,
.module-financial-quarter_icon--webcast:before,
.module-financial-quarter_icon--audio:before {
    content: "\e913";
}

.module-financial-quarter--archive .module_item--Q4 .module_item-box-inner {
    background-color: #38635a;
    color: #fff;
}

.module-financial-quarter--archive .module_item--Q3 .module_item-box-inner {
    background-color: #2a5673;
    color: #fff;
}

.module-financial-quarter--archive .module_item--Q2 .module_item-box-inner {
    background-color: #fdf3cb;
}

.module-financial-quarter--archive .module_item--Q1 .module_item-box-inner {
    background-color: #b2d7ed;
}

.module-financial-quarter--archive .module_item-quarter {
    position: relative;
    margin-top: 5px;
    margin-bottom: 40px;
}

.module-financial-quarter--archive .module_item-quarter:before {
    content: "";
    border-top: 1px solid #bdb9b5;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.module-financial-quarter--archive .module_item-quarter span {
    padding-right: 15px;
    background-color: #f7f7f7;
    position: relative;
}

.module-financial-table_header {
    background-color: #087900;
    color: #fff;
}

.module-financial-table_header-year-container {
    text-align: center;
}

.module-financial-table_header-year,
.module-financial-table_header-category.grid_col {
    padding: 20px 15px;
}

.module-financial-table_body-row {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.module-financial-table_body-row:nth-child(even) {
    background-color: #f7f7f7;
}

.module-financial-table_body-year-container {
    text-align: center;
}

.module-financial-table_body-year,
.module-financial-table_body-category.grid_col {
    padding: 20px 15px;
}

.module-financial-table_item {
    display: inline-block;
    margin-right: 15px;
    font-size: 18px;
    font-weight: normal;
}

.module-financial-table_item ~ .module_item {
    margin-right: 5px;
}

.module-financial-table_item--empty {
    opacity: 0.3;
}

.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%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -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: #f7f7f7;
    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;
    margin-left: 5px;
}

@media only screen and (max-width: 768px) {
    .module-financial-table_item {
        margin-right: 10px;
    }
}

@media only screen and (max-width: 767px) {
    .module-financial-quarter--latest .module_item-intro {
        font-size: 20px;
        line-height: 32px;
    }
    .module-financial-quarter .module_intro {
        font-size: 20px;
        line-height: 32px;
    }
}

@media only screen and (max-width: 480px) {
    .module-financial-table_item {
        margin: 5px;
    }
}


/* Latest Quarterly Result Widget */

.module-financial-quarter--latest .module_item {
    padding: 0;
    border: none;
}

.module-financial-quarter--latest .module_item-intro {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 70px;
}

.module-financial-quarter--latest .module-financial-quarter_type-year {
    background-color: #38635a;
}


/*------ Formbuilder Module ------*/

.module-form--custom .module_container--content {
    display: none;
}

.module-form--custom .module_container--content.js--visible {
    display: block;
}

.module-form .module_container--content {
    margin-left: -20px;
}

@media only screen and (max-width: 768px) {
    .module-form .module_container--content {
        margin-left: 0;
    }
}

.module-form .module_error-container li[style="visibility: hidden;"] {
    display: none;
}

.module-form .module_required {
    margin-left: 3px;
}

.module-form .module_container--captcha > div {
    margin: 0;
    padding: 0;
}

.module-form .module_container--captcha > div .ErrorMessage {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: #c11312;
}

.module-form .module_container--captcha > div .ErrorMessage[style="visibility: hidden;"] {
    display: none;
}

.module-form_item {
    display: inline-block;
    width: 50%;
    margin-bottom: 20px;
    padding-left: 20px;
    vertical-align: top;
}

.module-form--iframe .module-form_item {
    width: 100%;
}

.module-form_item--questions--comments textarea {
    min-height: 120px;
}

.module-form_item > label,
.module-form_item legend {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 14px;
}

.module-form_item legend {
    float: left;
    margin-bottom: 15px;
    font-size: 16px;
}

.module-form_item legend ~ ul {
    clear: both;
    padding-left: 10px;
}

.module-form_item ul li:not(:last-of-type) {
    padding-bottom: 5px;
}

.module-form_item--document-request,
.module-form_item--are-you-an-investor {
    width: 100%;
}

@media only screen and (max-width: 768px) {
    .module-form_item {
        width: 100%;
        padding-left: 0;
    }
}

.module-form_error-text {
    color: #c11312;
}

.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: #000;
    font-weight: normal;
}

.module-glossary .module_header table a[href] {
    color: #087900;
}


/*---------- 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: "TDASansScreen-Roman", sans-serif;
    font-size: 16px;
    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;
}

.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;
}

@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;
}


/*----- Miscellaneous Modules ----*/

.module-script {
    display: none;
}

.module-slideshow_ratio {
    padding-bottom: 56.25%;
    /* this should be changed with aspecRatio option in widget */
    position: relative;
}

.module-slideshow_viewer:not(.grid_col) {
    display: inline-block;
    width: 100%;
    max-width: 640px;
}

.module-slideshow_viewer:not(.grid_col):not(:last-child) {
    margin-bottom: 25px;
}

.module-slideshow_title {
    margin-bottom: 10px;
    display: none;
}

.module-slideshow .module_links > * + * {
    margin-top: 15px;
}

.module-slideshow_link {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}

.module-slideshow iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
}

.module-rss p + h2 {
    margin: 40px 0 30px;
}

.module_pager > span {
    display: inline-block;
    vertical-align: top;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border: 1px solid #666;
    border-radius: 100%;
    cursor: pointer;
    text-align: center;
    margin-bottom: 7px;
}

.module_pager > span:not(:last-child) {
    margin-right: 7px;
}

.module_pager > span:not(.pager-active):hover {
    background: #F7F7F7;
}

.pager-active {
    color: #fff;
    background: #666666;
    cursor: text;
    pointer-events: none;
}

.pager-prev,
.pager-next {
    font-size: 0;
}

.pager-prev:before,
.pager-next:before {
    font-family: 'q4-icons';
    content: '';
    font-size: 14px;
}

.pager-prev:before {
    content: "\e90d";
}

.pager-next:before {
    content: "\e90e";
}

.pager-disabled.pager-disabled {
    display: none;
}

@media only screen and (max-width: 767px) {
    .module_pager > span {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }
    .pager-prev:before,
    .pager-next:before {
        font-size: 10px;
    }
}


/*------ Navigation Modules ------*/

.nav_close {
    display: none;
}

.nav--sitemap {
    width: 100%;
    max-width: 1215px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 70px;
}

.nav--sitemap a {
    display: inline-block;
}

.nav--sitemap .level1 > li:not(:last-of-type) {
    margin-bottom: 25px;
}

.nav--sitemap .level1 > li > a,
.nav--sitemap .level1 > li > a:visited {
    font-size: 24px;
    color: #000;
    text-transform: uppercase;
}

.nav--sitemap .level2 {
    padding-top: 25px;
    padding-left: 20px;
}

.nav--sitemap .level2 > li,
.nav--sitemap .level3 > li {
    padding: 5px 0;
}

.nav--sitemap .level2 > li > a,
.nav--sitemap .level3 > li > a {
    font-size: 18px;
    text-transform: uppercase;
}

.nav--sitemap .level2 > li > a {
    margin-bottom: 5px;
}

.nav--sitemap .level3 > li {
    padding-left: 15px;
}


/*-------- News Module CSS -------*/

.module-news .module_nav {
    display: none;
}

.module-news .module_options-sort {
    margin-left: 10px;
}

.module-news--research .module_options-sort {
    margin-top: 10px;
    margin-left: 0;
}

.module-news .module_item {
    padding-top: 50px;
    padding-bottom: 45px;
}

.module-news .module_item.js--selected {
    display: block !important;
}

.module-news:not(.module-news--stories) .module_item:nth-child(8n + 9) {
    border-top: none;
}

.module-news .module_date-time {
    font-size: 14px;
    color: #666666;
    margin-bottom: 0;
}

.module-news .module_headline:not(:empty) {
    margin-bottom: 10px;
}

.module-news .module_headline-link,
.module-news .module_headline-text {
    font-family: "TDASans-Bold", sans-serif;
}

.module-news .module_body:not(:empty) {
    margin-bottom: 10px;
    line-height: 1.35;
}

.module-news--stories .module_body:not(:empty):after {
    content: "...";
}

.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;
}

.module-news-latest .module_item-wrap {
    padding: 30px;
    background: #fff;
}

.module-news-latest .module_date-time {
    margin-bottom: 15px;
    font-weight: normal;
    color: #000;
}

.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: #000 !important;
}

.module-news-latest .module_links {
    margin: 0;
}

.module-news-latest .module_link {
    color: #087900;
}

.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: inline-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;
}

.module-news-details a {
    word-wrap: break-word;
}

.module-news-details .module-details_title,
.module-news-details .module_date-time,
.module-news-details .module_view-all-link {
    display: none;
}

.module-press-release-details-banner {
    padding-top: 90px;
    padding-bottom: 90px;
}

.module-press-release-details-banner .module_date-time.js--cloned-prepend {
    font-family: "TDASansScreen-Roman", sans-serif;
    margin-bottom: 20px;
}

.module-press-release-details-banner .module-details_title.js--cloned-append {
    font-family: "TDASans-Bold", sans-serif;
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 0;
}

.module-details-contacts {
    font-size: 14px;
}

.pane--right .module-details-contacts.module-details-contacts.module-details-contacts {
    margin-bottom: 40px;
}

.module-details-contacts_item + .module-details-contacts_item {
    padding-top: 10px;
}

.module-details-contacts p {
    line-height: 1.6;
}

.module-details-contacts .q4-icon_twitter {
    color: #1ea2f2;
}

.module-news--related {
    padding: 40px 30px;
}

.pane--right .module-news--related.module-news--related.module-news--related {
    margin-top: 0;
}

.module-news--related .module_title {
    font-family: "TDASansScreen-Bold", sans-serif;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 0;
}

.module-news--related .module_item {
    padding-top: 30px;
    padding-bottom: 20px;
}

.module-news--related .module_item:first-child {
    padding-top: 25px;
}

.module-news--related .module_item:last-child {
    padding-bottom: 0;
}

.module-news--related .module_date-time {
    color: #000;
    margin-bottom: 10px;
}

.module-news--related .module_headline-link,
.module-news--related .module_headline-text {
    font-family: "TDASansScreen-Roman", sans-serif;
    font-size: 18px;
    line-height: 24px;
}

@media only screen and (max-width: 1279px) {
    .module-news .module_options-label,
    .module-news .module_options-select,
    .module-news .module_options-submit,
    .module-news .module_options-sort {
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 1023px) {
    .module-news .module_options-label,
    .module-news .module_options-select,
    .module-news .module_options-submit,
    .module-news .module_options-sort {
        display: block;
        width: 100%;
    }
}

@media only screen and (max-width: 768px) {
    .module-news-latest .module_item:first-child {
        width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .module-press-release-details-banner .module-details_title.js--cloned-append {
        font-size: 35px;
        line-height: 45px;
    }
}


/*------ 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 35px 35px;
    border: none;
}

.module-person .module-person_photo-container img {
    display: block;
    width: 100%;
}

.module-person h3 {
    margin-top: 10px;
    margin-bottom: 0;
}

.module-person .module-person_link {
    color: #000;
}

.module-person .module-person_link:hover {
    color: #087900;
}

.module-person .module-person_name {
    font-size: 18px;
    display: inline-block;
    margin-bottom: 5px;
}

.module-person .module-person_suffix,
.module-person_title {
    display: block;
    font-family: "TDASansScreen-Roman", sans-serif;
    font-size: 18px;
    line-height: 24px;
}

.module-person-details-banner--experts {
    padding-top: 70px;
    padding-bottom: 70px;
}

.module-person-details-banner.module-person-details-banner .module_container--outer {
    max-width: none;
    padding: 0;
}

.module-person-details-banner_container {
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    height: 600px;
    position: relative;
}

.module-person-details-banner--experts .module-person-details-banner_container {
    height: auto;
}

.module-person-details-banner_container-content {
    width: 100%;
    max-width: 1215px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    position: relative;
}

.module-person-details_name-container.js--cloned-prepend {
    max-width: 700px;
}

.module-person-details-banner--experts .module-person-details_name-container.js--cloned-prepend {
    max-width: none;
}

.module-person-details-banner .module-person-details_name {
    font-family: "TDASansScreen-Bold", sans-serif;
    font-size: 70px;
    margin-bottom: 15px;
}

.module-person-details-banner--experts .module-person-details_name {
    font-size: 50px;
}

.module-person-details-banner .module-person-details_suffix,
.module-person-details-banner .module-person-details_title {
    font-size: 30px;
    max-width: 480px;
}

.module-person-details-banner--experts .module-person-details_suffix,
.module-person-details-banner--experts .module-person-details_title {
    font-size: 24px;
    max-width: none;
}

.module-person-details-banner .module_comma {
    display: none;
}

.module-person-details-banner_download-photo {
    margin-top: 50px;
}

.module-person-details-banner_download-photo .module_link i {
    padding-right: 7px;
}

.module-see-all .module_link i {
    font-size: 14px;
    padding-right: 7px;
}

.module-person-navigation {
    padding: 35px 25px;
}

.module-person-navigation .module_title {
    font-family: "TDASansScreen-Bold", sans-serif;
    font-size: 18px;
    margin-bottom: 20px;
}

.module-person-navigation .grid--gutter-35 {
    margin-left: 0;
}

.module-person-navigation .module_item.module_item {
    width: 100%;
    padding-left: 0;
    padding-top: 7px;
    padding-bottom: 7px;
}

.module-person-navigation .module_item ~ .module_item {
    border-top: 1px dotted #d7d7d7;
}

.module-person-navigation .module-person_photo-container,
.module-person-navigation .module-person_suffix,
.module-person-navigation .module-person_title {
    display: none;
}

.module-person-navigation h3 {
    font-size: 100%;
}

.module-person-navigation h3,
.module-person-navigation .module-person_name {
    margin: 0;
}

.module-person-navigation .module-person_name {
    font-family: "TDASansScreen-Light", sans-serif;
    font-size: 14px;
}

.module-person-navigation .module_item.selected .module-person_name {
    font-family: "TDASansScreen-Bold", sans-serif;
}

.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;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

.fancybox-container .module-person_name-container a {
    color: #000;
}

.fancybox-container .module-person_photo-container {
    max-width: 30%;
    margin-right: 40px;
}

.fancybox-container .module-person_name {
    display: block;
    margin-bottom: 10px;
    font-size: 36px;
    line-height: 1.45;
    color: #087900;
}

.fancybox-container .module-person_title {
    font-size: 24px;
    color: #087900;
}

.fancybox-container .module-person_description-container {
    margin-top: 40px;
}

.fancybox-container .module-person_description {
    display: block;
}

.module-person-accordion .module-person_name-container {
    padding: 20px 15px;
    margin-bottom: 10px;
    background-color: #087900;
    color: #fff;
    cursor: pointer;
}

.module-person-accordion .module-person_name-container h3 {
    font-size: 18px;
    font-weight: bold;
    color: inherit;
    margin: 0;
}

.module-person-accordion .module-person_name-container h3: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: "\ed5d";
}

.module-person-accordion .module_item {
    padding: 0;
    border: 0 none;
}

.module-person-accordion .module_item.js--active h3:before {
    content: "\ed5e";
}

.module-person-accordion .module-person_name {
    margin-right: 10px;
}

.module-person-accordion .module-person_title {
    font-size: 14px;
}

.module-person-accordion .module_comma {
    display: none;
}

.module-person-accordion .module-person_description-container {
    padding: 15px;
}

.module-person-accordion .module-person_photo-container {
    float: left;
    margin: 0 25px 15px 0;
}

.module-person-accordion .module-person_photo-container img {
    display: block;
    margin: auto;
}

.module-person-accordion .module-person_description > *:first-child {
    margin-top: 0;
}

.module-person-accordion .module-person_res-photo-container > span {
    margin-right: 10px;
}

.module-person-details .module_title {
    display: none;
}

.module-person-details .module_comma {
    display: none;
}

.module-person-details .module-person-details_photo-container,
.module-person-details .module-person-details_name-container {
    display: none;
}

.module-person-details_photo-container {
    max-width: 30%;
    margin-right: 40px;
}

.module-person-details_name {
    display: block;
    margin-bottom: 10px;
    font-size: 36px;
}

.module-person-details_title {
    display: block;
    font-size: 24px;
}

.module-person-details_description > *:first-child {
    margin-top: 0;
}

.module-person-details_description > p:first-child,
.module-person-details_description > .module-person-social-links + p {
    font-size: 24px;
    line-height: 1.5;
}

.module-person-details-experts .module_container--inner {
    margin-left: -20px;
    direction: rtl;
}

.module-person-details-experts .module-person-details_photo-container,
.module-person-details-experts .module-person-details_description-container {
    box-sizing: border-box;
    display: inline-block;
    margin-right: -.25em;
    min-height: 1px;
    padding-left: 20px;
    vertical-align: top;
}

.module-person-details-experts .module-person-details_photo-container {
    width: 25%;
}

.module-person-details-experts .module-person-details_photo-container img {
    width: 100%;
}

.module-person-details-experts .module-person-details_description-container {
    direction: ltr;
    width: 75%;
    padding-right: 100px;
}

.module-person-details_photo-download {
    display: none;
    direction: ltr;
}

.module-person-details-experts .module-person-details_photo-download {
    display: block;
    margin-top: 35px;
}

.module-person-details_photo-download .module_link i {
    padding-right: 7px;
}

.module-person-social-links {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.module-person-social-links:before,
.module-person-social-links:after {
    content: "";
    display: table;
}

.module-person-social-links:after {
    clear: both;
}

.module-person-social-links li {
    float: left;
    padding-right: 40px;
    margin-top: 10px;
}

.module-person-social-links li:last-child {
    padding-right: 0;
}

.module-person-social-links a {
    font-size: 14px;
    color: #000;
}

.module-person-social-links i:before {
    display: inline-block;
    vertical-align: middle;
    background: #1da0f1;
    border-radius: 100%;
    color: #fff;
    font-size: 16px;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    margin-right: 5px;
}

.module-presentation .module_body {
    display: none;
}

@media only screen and (max-width: 1023px) {
    .module-person-details-banner_container {
        height: 500px;
    }
    .module-person-details_name-container.js--cloned-prepend {
        max-width: 500px;
    }
    .module-person-details-experts .module_container--inner {
        direction: ltr;
    }
    .module-person-details-experts .module-person-details_photo-container,
    .module-person-details-experts .module-person-details_description-container {
        width: 100%;
    }
    .module-person-details-experts .module-person-details_description-container {
        padding-top: 40px;
        padding-right: 0;
    }
}

@media only screen and (max-width: 768px) {
    .fancybox-container .module-person_photo-container {
        margin-right: 15px;
        margin-bottom: 35px;
    }
    .module-person-accordion .module-person_photo-container {
        float: none;
        margin: 0 auto 15px auto;
        text-align: center;
    }
    .module-person-accordion .module-person_res-photo-container > span {
        display: block;
        margin: 0 0 10px 0;
    }
    .module-person-details_photo-container {
        margin-right: 15px;
        margin-bottom: 35px;
    }
}

@media only screen and (max-width: 767px) {
    .module-person-details-banner_container {
        display: -webkit-flex;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: auto;
        min-height: 245px;
    }
    .module-person-details-banner--experts .module-person-details-banner_container {
        min-height: auto;
    }
    .module-person-details-banner_container-content {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .module-person-details-banner--experts .module-person-details-banner_container-content {
        padding-top: 0;
        padding-bottom: 0;
    }
    .module-person-details_name-container.js--cloned-prepend {
        max-width: 230px;
    }
    .module-person-details-banner .module-person-details_name {
        font-size: 35px;
    }
    .module-person-details-banner .module-person-details_suffix,
    .module-person-details-banner .module-person-details_title {
        font-size: 20px;
    }
    .module-person-details-banner_download-photo {
        margin-top: 30px;
    }
    .module-person-social-links li {
        float: none;
        width: 100%;
        padding-right: 0;
    }
}

@media only screen and (max-width: 480px) {
    .fancybox-container .module-person_photo-container {
        margin-right: 0;
        max-width: none;
    }
    .fancybox-container .module-person_name {
        font-size: 24px;
        line-height: 1.2;
    }
    .fancybox-container .module-person_title {
        font-size: 18px;
        line-height: 1.125;
    }
    .module-person-details_photo-container {
        margin-right: 0;
        max-width: 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: #000;
    font-size: 0;
    text-align: left;
    color: #fff;
    z-index: 100;
}

body.PreviewBody .PreviewToolBar.js--open {
    top: auto;
    bottom: 0;
}

body.PreviewBody .PreviewToolBar .PreviewTrigger {
    position: absolute;
    top: 0;
    left: 10px;
    padding: 20px;
    background: #000;
    -webkit-transform: translate(0, -100%);
    -ms-transform: translate(0, -100%);
    transform: translate(0, -100%);
    font-size: 24px;
    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;
    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: "TDASansScreen-Roman", sans-serif !important;
    font-weight: 300;
    font-size: 14px;
    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: #087900;
    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 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    text-align: right;
    display: none;
    padding: 112px 80px 80px;
    overflow-y: auto;
}

.module-search > .module_container--outer > .module_container--inner {
    padding-bottom: 60px;
    border-bottom: 1px dotted rgba(216, 216, 216, 0.4);
}

.module-search .module_container--inner {
    position: relative;
}

.js--search-active .module-search {
    display: block;
}

.module-search_input[type="text"] {
    font-family: "TDASansScreen-Light", sans-serif;
    display: inline-block;
    width: 100%;
    max-width: 715px;
    padding: 2px 60px 2px 30px;
    border: 1px solid #f5f1eb;
    border-radius: 30px;
    background: #f5f1eb;
    font-size: 40px;
    color: #000;
    text-align: right;
    height: 60px;
    margin-right: -10px;
}

.module-search_button {
    position: absolute;
    top: 8px;
    right: 0;
    width: 45px;
    height: 45px;
    padding: 0;
    border: 0;
    border-radius: 100%;
    background: rgba(0, 0, 0, 0.25) url("../design/svg/icon-search.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 23px 23px;
    font-size: 0;
    cursor: pointer;
}

.module-search_input[type="text"]:focus + .module-search_button,
.module-search_input.js--has-value + .module-search_button {
    background-color: #40A829;
}

.module-search_input::-webkit-input-placeholder {
    color: #ada7a3;
    opacity: 1;
}

.module-search_input::-moz-placeholder {
    color: #ada7a3;
    opacity: 1;
}

.module-search_input::-ms-input-placeholder {
    color: #ada7a3;
    opacity: 1;
}

.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 only screen and (max-width: 1023px) {
    .module-search {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .module-search .module_container--outer {
        margin: 0 -20px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .module-search_input[type="text"] {
        font-size: 30px;
        margin-right: 0;
    }
    .module-search_input::-webkit-input-placeholder {
        font-size: 20px;
    }
    .module-search_input::-moz-placeholder {
        font-size: 20px;
    }
    .module-search_input::-ms-input-placeholder {
        font-size: 20px;
    }
    .module-search_button {
        right: 10px;
    }
}


/*-------- SEC Module CSS --------*/

.module-sec .module_header,
.module-sec .module_container--content {
    font-size: 16px;
}

.module-sec .module_header {
    font-family: "TDASansScreen-Bold", sans-serif;
    display: block;
    margin-bottom: 20px;
}

.module-sec .module_header-text.grid_col {
    padding: 15px 8px;
}

.module-sec .module_item {
    padding: 0;
}

.module-sec .module_item .grid_col {
    vertical-align: middle;
    padding: 20px 8px;
}

.module-sec .module-sec_date.grid_col {
    padding-left: 0;
}

.module-sec .module-sec_date-text {
    letter-spacing: -0.11em;
}

.module-sec .module_item .module-sec_filing-link {
    color: #000;
}

.module-sec .module_item .module-sec_filing-link:hover {
    color: #43b02a;
}

.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;
}

.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;
}

.module-sec .module_link.module_link-sec:before,
.module-sec-details .module_link.module_link-sec:before {
    content: "web";
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: underline;
    color: #2a5673;
    padding-right: 5px;
}

.module-sec .module_link.module_link-sec:hover:before,
.module-sec-details .module_link.module_link-sec:hover:before {
    color: #43b02a;
}

.module-sec .module_link.module_link-sec[href$=".pdf"]:before,
.module-sec-details .module_link.module_link-sec[href$=".pdf"]:before {
    content: "pdf";
}

.module-sec .module_link.module_link-sec[href$=".rtf"]:before,
.module-sec-details .module_link.module_link-sec[href$=".rtf"]:before {
    content: "doc";
}

.module-sec .module_link.module_link-sec[href$=".xls"]:before,
.module-sec-details .module_link.module_link-sec[href$=".xls"]:before {
    content: "xls";
}

.module-sec .module_link.module_link-sec[href$=".zip"]:before,
.module-sec-details .module_link.module_link-sec[href$=".zip"]:before {
    content: "zip";
}

@media only screen and (max-width: 1279px) {
    .module-sec .module_header,
    .module-sec .module_container--content {
        font-size: 15px;
    }
    .module-sec .module_link.module_link-sec:before {
        letter-spacing: -0.10em;
    }
}

@media only screen and (max-width: 768px) {
    .module-sec .module_options-label,
    .module-sec .module_options-select,
    .module-sec .module_options-submit,
    .module-sec .module_options-sort {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    .module-sec .module_header {
        display: none;
    }
    .module-sec .module_header + .module_item {
        border-top: 2px solid #087900;
    }
    .module-sec .module_item {
        padding: 15px 0;
    }
    .module-sec .module_item:first-child {
        border-top: 2px solid #087900;
    }
    .module-sec .module_item:last-child {
        border-bottom: 2px solid #087900;
    }
    .module-sec .module_item .grid_col {
        padding: 0 5px;
    }
    .module-sec .module_item > div:before {
        content: attr(data-before);
        font-family: "TDASansScreen-Bold", sans-serif;
        box-sizing: border-box;
        display: inline-block;
        margin-right: -.25em;
        min-height: 1px;
        vertical-align: top;
        width: 50%;
    }
    .module-sec .module_item > div > span,
    .module-sec .module_item > div > ul {
        box-sizing: border-box;
        display: inline-block;
        margin-right: -.25em;
        min-height: 1px;
        vertical-align: top;
        width: 50%;
    }
    .module-sec .module_item + .module_footer {
        border-bottom: 2px solid #087900;
    }
    .module-sec_date,
    .module-sec_filer,
    .module-sec_filing,
    .module-sec_description {
        margin-bottom: 15px;
    }
}


/*---- Accessibility Skip Link ---*/

.module-skip_link {
    position: absolute;
    top: -100px;
    left: 50%;
    padding: 15px 20px;
    background: transparent;
    color: white;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    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: #087900;
    outline: 0;
}

.module-skip_link:visited {
    color: #fff;
}


/*------ Stock Chart Widget ------*/

.module-stock-chart .highcharts-legend > rect {
    fill: transparent;
}

.module-stock-chart .highcharts-legend-item:first-child path {
    stroke: #087900;
}

.module-stock-chart .highcharts-legend-item:first-child text {
    cursor: default !important;
}

.module-stock-chart .highcharts-series-0 {
    stroke: #087900;
}

.module-stock-chart .highcharts-series-0 path:first-child {
    stroke: #087900;
}

.module-stock-chart .highcharts-series-group .highcharts-series-2 path {
    stroke: #5880ae;
}

.module-stock-chart .highcharts-navigator rect {
    fill: rgba(211, 227, 246, 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: #bfc8d0;
}

.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: #bfc8d0;
    stroke: #bbbbbb;
}

.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-range-selector-buttons .highcharts-button text {
    text-transform: uppercase;
}

.module-stock-chart .highcharts-button text,
.module-stock-chart .highcharts-input-group text {
    fill: #000;
}

.module-stock-chart .highcharts-container > svg > .highcharts-button {
    display: none;
}


/*------ Stock Header Module -----*/

.module-stock-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: none;
    font-size: 16px;
    color: #d8d8d8;
}

.js--stock-active .module-stock-header {
    display: block;
}

.module-stock-header .module_container--outer {
    padding: 80px;
    background: rgba(0, 0, 0, 0.9);
}

.module-stock-header .module_container--widget {
    border-bottom: 1px dotted rgba(216, 216, 216, 0.4);
    padding-top: 50px;
    padding-bottom: 70px;
    margin-bottom: 60px;
}

.module-stock-header .module_container--content {
    max-width: 1000px;
}

.module-stock-header_description1 {
    font-size: 24px;
    color: rgba(254, 254, 254, 0.37);
    display: block;
    margin-bottom: 10px;
}

.module-stock-header_stock-price,
.module-stock-header_change {
    display: inline-block;
    vertical-align: middle;
}

.module-stock-header_stock-price {
    font-size: 60px;
    font-family: "TDASansScreen-Light", sans-serif;
}

.module-stock-header_change {
    font-size: 18px;
    color: #43b02a;
    position: relative;
    padding-left: 30px;
}

.module-stock-header_change.module-stock-header_down {
    color: #c11312;
}

.module-stock-header_change:before {
    font-family: 'q4-icons';
    content: "\edc7";
    font-size: 26px;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.module-stock-header_change.module-stock-header_down:before {
    content: "\edc9";
}

.module-stock-header_change > span {
    display: block;
}

.module-stock-header_change > span + span {
    margin-top: 10px;
}

.module-stock-header_row {
    display: block;
    padding: 9px 0;
}

.module-stock-header_row + .module-stock-header_row {
    border-top: 1px solid rgba(216, 216, 216, 0.4);
}

.module-stock-header_label {
    font-family: "TDASansScreen-Bold", sans-serif;
}

.module-stock-header_date,
.module-stock-header_description3 {
    display: block;
    font-size: 14px;
    color: rgba(254, 254, 254, 0.37);
}

.module-stock-header_date {
    margin-top: 10px;
}

.module-stock-header_description3 {
    margin-top: 5px;
    margin-bottom: 10px;
}

@media only screen and (max-width: 1279px) {
    .module-stock-header_stock-price {
        font-size: 50px;
    }
}

@media only screen and (max-width: 1023px) {
    .module-stock-header .grid_col:first-child {
        width: 100%;
        padding-bottom: 35px;
    }
    .module-stock-header .grid_col + .grid_col {
        width: 50%;
    }
}

@media only screen and (max-width: 767px) {
    .module-stock-header {
        font-size: 14px;
    }
    .module-stock-header .module_container--outer {
        padding: 65px 20px;
    }
    .module-stock-header .module_container--widget {
        padding-bottom: 50px;
        margin-bottom: 50px;
    }
    .module-stock-header .grid_col + .grid_col {
        width: 100%;
    }
    .module-stock-header_row + .module-stock-header_row {
        border-top: none;
    }
    .module-stock-header_row {
        border-bottom: 1px solid rgba(216, 216, 216, 0.4);
    }
    .module-stock-header .grid_col:last-child .module-stock-header_row:last-child {
        border-bottom: none;
    }
    .module-stock-header_description1 {
        font-size: 16px;
    }
    .module-stock-header_stock-price {
        font-size: 35px;
    }
    .module-stock-header_change {
        font-size: 16px;
    }
}


/*------ Stock Quote Module ------*/

.module-stock .module_options {
    margin-bottom: 30px;
}

.module-stock .module_options-label {
    display: block;
    margin-bottom: 25px;
}

.module-stock .stock-historical-range .module_options > *:not(:last-of-type) {
    margin-bottom: 20px;
}

.module-stock_lookup-title {
    padding-left: 20px;
}

.module-stock_label,
.module-stock_value {
    font-size: 16px;
    border-bottom: 1px dotted #d7d7d7;
}

.module-stock_label > span,
.module-stock_value > span {
    display: block;
    padding: 12px 0;
}

.module-stock_up {
    color: #23a217;
}

.module-stock_down {
    color: #c11312;
}

.module-stock_label {
    font-family: "TDASansScreen-Bold", sans-serif;
}

.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-delay {
    margin-top: 20px;
    font-size: 12px;
}

.module-stock_date-delay > span {
    display: inline-block;
}

.module-stock_date-delay-separator {
    margin-left: 7px;
    margin-right: 7px;
}

@media only screen and (max-width: 768px) {
    .module-stock.module-stock-historical .module-stock_empty {
        display: none;
    }
    .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_lookup-title {
        padding-left: 10px;
    }
    .module-stock_label > span,
    .module-stock_value > span {
        padding: 15px 10px;
    }
}

@media only screen and (max-width: 480px) {
    .module-stock_lookup-title {
        padding-left: 5px;
    }
    .module-stock_label > span,
    .module-stock_value > span {
        padding: 15px 0 15px 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;
}

.pane--content .module-subscribe_form tr {
    display: block;
    padding-right: 10px;
    position: relative;
}

.module-subscribe_form tr:nth-child(even) {
    padding-left: 10px;
}

.pane--content .module-subscribe_form tr:nth-child(even) {
    padding-left: 0;
}

.module-subscribe_form tr:nth-child(odd) {
    padding-right: 10px;
}

.module-subscribe_form tr.module-subscribe_notes-text {
    margin: 0;
}

.module-subscribe_form tr.module-subscribe_notes-text,
.module-subscribe_form tr.module-subscribe_notes-input {
    display: block;
    width: 100%;
    padding: 0;
}

.module-subscribe_form tr.module-subscribe_notes-text,
.module-subscribe_form tr.module-subscribe_notes-input {
    width: 50%;
    padding-right: 10px;
}

.module-subscribe_form td {
    display: block;
}

.module-subscribe_form label {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 14px;
}

.pane--content .module-subscribe_form label {
    display: none;
}

.pane--content .module-subscribe_mailing-list {
    width: 50%;
    margin-top: 50px;
}

.module-subscribe_mailing-list tr.module-subscribe_list-header td {
    padding-bottom: 15px;
}

.pane--content .module-subscribe_mailing-list tr.module-subscribe_list-header td {
    padding-bottom: 45px;
}

.pane--content .module-subscribe_list-header label {
    font-family: "TDASansScreen-Bold", sans-serif;
}

.pane--content .module-subscribe_mailing-list table,
.pane--content .module-subscribe_mailing-list tr,
.pane--content .module-subscribe_mailing-list td {
    width: 100%;
    display: block;
}

.pane--content .module-subscribe_list table tr {
    display: inline-block;
    width: 50%;
    vertical-align: top;
}

.module-subscribe_mailing-list tr table td {
    padding-bottom: 10px;
}

.module-subscribe_mailing-list tr table tr:last-child td {
    padding-bottom: 0;
}

.module-subscribe .module_required {
    font-size: 14px;
}

.pane--content .module-subscribe .module_title {
    font-size: 24px;
}

.pane--content .module-subscribe .module_required {
    position: absolute;
    top: 2px;
    right: 0;
}

.pane--content .module-subscribe .module-subscribe_list-header .module_required {
    position: static;
}

.pane--content .module-subscribe .module_actions {
    margin-top: 30px;
}

.module-subscribe .CaptchaContainer {
    width: 50%;
}

@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.module-subscribe_notes-text,
    .module-subscribe_form tr.module-subscribe_notes-input {
        width: 100%;
    }
    .pane--content .module-subscribe_mailing-list {
        width: 100%;
    }
    .module-subscribe .CaptchaContainer {
        width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .module-subscribe-privacy {
        margin-left: 0;
    }
}


/* MailingList Unsubscribe Module */

.pane--content .module-unsubscribe {
    border-top: 1px dotted #999999;
}

.pane--content .module-unsubscribe.js--no-border {
    padding-top: 70px;
    border-top: none;
}

.module-unsubscribe_table {
    width: 50%;
}

.module-unsubscribe_table td {
    padding-right: 10px;
    position: relative;
}

.module-unsubscribe_table label {
    display: inline-block;
    font-size: 14px;
    margin-bottom: 5px;
}

.pane--content .module-unsubscribe_table label {
    display: none;
}

.module-unsubscribe_table .module_input[type="text"] {
    background-color: #fff;
}

.pane--content .module-unsubscribe .module_required {
    position: absolute;
    top: 2px;
    right: 0;
}

@media only screen and (max-width: 768px) {
    .module-unsubscribe_table {
        width: 100%;
    }
}


/*==================================
 ----------- 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 {
    position: relative;
}

.layout,
.layout_inner {
    overflow-x: hidden;
}

.layout.js--mobile,
.layout.js--search-active {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
}

.layout--two-column .pane--content .pane_inner {
    padding-right: 100px;
}

.layout--two-column .pane--right .module {
    margin-top: 70px;
    margin-bottom: 70px;
}

.layout--two-column .pane--right .pane_inner {
    max-width: none;
    padding: 0;
}

@media only screen and (max-width: 1023px) {
    .layout--two-column .pane--content .pane_inner {
        padding-right: 0;
    }
    .layout--two-column .pane.grid_col {
        width: 100%;
    }
    .layout--two-column .pane--right .RightPaneDiv > span:first-child .module {
        margin-top: 0;
    }
    .layout--two-column .margin-left-65 {
        margin-left: 0;
    }
    .layout--two-column .ContentPaneDiv {
        display: block;
        padding-left: 65px;
        padding-right: 65px;
    }
}

@media only screen and (max-width: 768px) {
    .layout--two-column .ContentPaneDiv {
        padding-left: 0;
        padding-right: 0;
    }
}


/*--------- Pane Specific --------*/

.pane_inner,
.container {
    width: 100%;
    max-width: 1215px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}

.pane--breadcrumb .pane_inner {
    max-width: none;
    padding: 0;
}

.pane--content .pane_inner {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

.pane--content .module {
    padding-top: 70px;
    padding-bottom: 70px;
}

.pane--content .module_container--outer,
.pane--breadcrumb .module_container--outer {
    width: 100%;
    max-width: 1215px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}

.pane--content .module-container-smaller .module_container--outer {
    padding-left: 85px;
    padding-right: 85px;
}

.layout--two-column .pane--content .module_container--outer {
    max-width: none;
    padding: 0;
}

.pane--content .module-no-container .module_container--outer {
    max-width: 1767px;
}

.pane--content .module--thin {
    padding-top: 35px;
    padding-bottom: 35px;
}

.pane--content .module--thin-top {
    padding-top: 35px;
}

.pane--content .module--thin-bottom {
    padding-bottom: 35px;
}

.pane--content .module--thick {
    padding-top: 105px;
    padding-bottom: 105px;
}

.pane--content .module--thick-top {
    padding-top: 105px;
}

.pane--content .module--thick-bottom {
    padding-bottom: 105px;
}

.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;
}

@media only screen and (max-width: 767px) {
    .pane--content .module-container-smaller .module_container--outer {
        padding-left: 20px;
        padding-right: 20px;
    }
    .pane--content .ContentPaneDiv > span:first-child > .module-boxes {
        padding-top: 10px;
    }
    .pane--content .module-boxes .module_container--outer {
        padding-left: 10px;
        padding-right: 10px;
    }
}


/*--------- 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: #000;
}

.module-why-invest h4 {
    font-size: 60px;
    color: #087900;
    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_tabs {
    margin-bottom: 10px;
}

.module-social .module_tabs .button {
    display: block;
}

.module-social .module_tabs .button.js--selected {
    background: #c11312;
    border-color: #c11312;
    color: #fff;
}

.module-social .module_tab {
    display: inline-block;
    padding-right: 5px;
    padding-bottom: 5px;
}

@media (max-width: 640px) {
    .module-social .module_tab {
        width: 50%;
    }
}

.module-social .module_container--content {
    padding: 0;
    display: flex;
    justify-content: stretch;
    align-items: stretch;
}

@media (max-width: 767px) {
    .module-social .module_container--content {
        padding: 0 20px;
        margin: 0;
    }
}

.module-social .module_container--content .slick-track {
    display: flex;
    justify-content: stretch;
    align-items: stretch;
}

.module-social .module_container--content .slick-list {
    width: 100%;
}

.module-social .module_container--content .slick-arrow {
    color: #087900;
}

.module-social .module_headline-link {
    color: #087900;
}

.module-social .module_item {
    height: auto;
}

.module-social .module_item.grid_col {
    padding: 0 0 0 20px;
    margin: 15px 0;
}

@media (max-width: 767px) {
    .module-social .module_item.grid_col {
        padding-left: 0;
    }
}

.module-social .module_item-wrap {
    padding: 30px;
    background-color: #f7f7f7;
    height: 100%;
}

.module-social .module_item + .module_item {
    border-top: none;
}

.module-social .module_date {
    text-align: left;
    margin-bottom: 15px;
}

.module-social .module_headline {
    text-align: left;
    margin: 0;
    line-height: 1.5;
}

.module-social .module_icon {
    float: right;
    margin-left: 5px;
    margin-bottom: 5px;
    font-size: 20px;
}

.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;
}


/*# sourceMappingURL=global.css.map */


/*===========================HEADER===========================*/

.pane--header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 130;
    background: rgba(0, 0, 0, 0.5);
    transition: top 0.2s ease-in-out;
}

.js--stock-active .pane--header {
    top: 0 !important;
}

.page-no-banner .pane--header,
.PagePageNotFound .pane--header {
    background: #333;
}

.pane--header .pane_inner {
    max-width: none;
    padding-top: 22px;
    padding-bottom: 22px;
    padding-left: 80px;
    padding-right: 80px;
    position: relative;
}

.pane--header .pane_inner:before {
    content: "";
    background: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
    opacity: 0;
    visibility: hidden;
}

.js--mobile .pane--header .pane_inner:before {
    opacity: 1;
    visibility: visible;
}

.module-logo {
    float: left;
    padding-top: 4px;
}

.module-stock-header-mini {
    float: left;
    font-size: 18px;
    margin-left: 40px;
    position: relative;
}

.module-stock-header-mini .module_container--inner {
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 20px 16px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
}

.module-stock-header-mini .module_container--inner:hover {
    background: rgba(0, 0, 0, 1);
}

.module-stock-header-mini .module_loader {
    margin: 0;
    padding: 0;
}

.module-stock-header-mini .module_container--inner > span {
    display: inline-block;
    vertical-align: middle;
    line-height: 0;
}

.module-stock-header-mini .module_container--inner > span + span {
    margin-left: 12px;
}

.module-stock-header-mini_bar {
    display: inline-block;
    vertical-align: bottom;
    width: 3px;
    height: 14px;
    background: #fff;
    opacity: 0.25;
}

.module-stock-header-mini_bar + .module-stock-header-mini_bar {
    margin-left: 2px;
}

.module-stock-header-mini_bar--first {
    height: 6px;
}

.module-stock-header-mini_bar--second {
    height: 10px;
}

.module-stock-header-mini_stock-price {
    font-family: "TDASansScreen-Roman", sans-serif;
    color: #fff;
}

.module-stock-header-mini_change {
    color: #50b847;
}

.module-stock-header-mini_change:before {
    font-family: 'q4-icons';
    content: "\edc7";
    display: inline-block;
    vertical-align: middle;
}

.module-stock-header-mini_change.module-stock-header-mini_down:before {
    content: "\edc9";
}

.module-stock-header-mini_change.module-stock-header-mini_down {
    color: #c11312;
}

.module-stock-header-mini_description1 {
    color: #999999;
}

.module-header-social-buttons {
    float: right;
}

.module-header-social-buttons_item {
    display: inline-block;
    vertical-align: middle;
}

.module-header-social-buttons_item--social {
    margin-right: 20px;
}

.module-header-social-buttons_item--social li {
    display: inline-block;
    vertical-align: top;
    margin: 0 3px;
}

.module-header-social-buttons_item--social a {
    display: inline-block;
    font-size: 16px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    background: #43b02a;
    border-radius: 100%;
    text-align: center;
    color: #fff;
}

.module-header-social-buttons_item--social a:hover {
    background: #087900;
    color: #fff;
}

.module-header-social-buttons_item--social i {
    vertical-align: middle;
}

.module-header-social-buttons_item--buttons {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 30px;
    transition: background 0.2s ease-in-out;
}

.module-header-social-buttons_item--buttons:hover {
    background: rgba(0, 0, 0, 1);
}

.module-header-social-buttons_item--buttons:hover .module-header-social-button_toggle-layout-text {
    opacity: 1;
}

.module-header-social-buttons_item--buttons button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0 10px;
    height: 44px;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
}

.module-header-social-button_search {
    font-size: 23px;
    margin-left: 20px;
    margin-right: 10px;
}

.module-header-social-button_toggle-layout.module-header-social-button_toggle-layout {
    border-left: 1px solid #000;
    padding-left: 15px;
}

.module-header-social-button_toggle-layout-text,
.module-header-social-button_toggle-layout i {
    display: inline-block;
    vertical-align: middle;
}

.module-header-social-button_toggle-layout-text {
    font-family: "TDASansScreen-Medium", sans-serif;
    font-size: 14px;
    opacity: 0.5;
    text-transform: uppercase;
    margin-right: 10px;
    transition: opacity 0.2s ease-in-out;
}

.module-header-social-button_toggle-layout i {
    font-size: 26px;
    line-height: 1;
    padding: 0px 0px 0 6.5px;
}

.module-header-close {
    position: absolute;
    top: 22px;
    right: 80px;
    z-index: 2;
    display: none;
}

.js--mobile .module-header-close,
.js--stock-active .module-header-close,
.js--search-active .module-header-close {
    display: block;
}

.module-header-close_button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.module-header-close_button i {
    font-size: 20px;
    background: rgba(255, 255, 255, 0.4);
    width: 44px;
    height: 44px;
    border-radius: 100%;
    color: #fff;
}

.module-header-close_button i:before {
    line-height: 44px;
}

.module-header-close_button:before {
    content: "";
    display: inline-block;
    font-family: "TDASansScreen-Medium", sans-serif;
    font-size: 14px;
    opacity: 0.5;
    color: #fff;
    padding-right: 12px;
    text-transform: uppercase;
    position: relative;
    top: -4px;
}

.js--search-active .module-header-close_button:before {
    content: "Search";
}

.js--mobile .module-header-close_button:before {
    content: "Menu";
}

.module-header-close .button {
    font-family: "TDASansScreen-Medium", sans-serif;
    font-size: 14px;
    margin-right: 40px;
    text-transform: uppercase;
    letter-spacing: 0.020em;
    padding-top: 14px;
    padding-bottom: 14px;
    color: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.6);
    display: none;
    position: relative;
    top: -4px;
}

.module-header-close .button:focus {
    text-decoration: none !important;
}

.module-header-close .button:hover {
    background-color: transparent;
    color: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 1);
}

.js--mobile .module-header-close .button {
    display: inline-block;
}

.module-links-searches {
    padding-top: 50px;
    padding-right: 10px;
    max-width: 620px;
    display: none;
}

.module-links-searches.js--module-append {
    display: inline-block;
}

.module-links-searches .module_title {
    font-family: "TDASansScreen-Light", sans-serif;
    font-size: 40px;
    color: #fff;
}

.module-links-searches .module_title i {
    color: rgba(255, 255, 255, 0.4);
    vertical-align: middle;
    font-size: 25px;
    padding-left: 22px;
}

.module-links-searches a {
    font-family: "TDASansScreen-Light", sans-serif;
    font-size: 16px;
    line-height: 18px;
    color: #d8d8d8;
}

.module-links-searches.module-links-searches ul {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    padding-right: 10px;
}

.module-links-searches .js--module-links_list-item {
    width: 33.3333333333%;
    border-right: 2px solid rgba(255, 255, 255, 0.4);
}

.module-links-searches li {
    padding: 7px 30px 7px 10px;
}

.pane--banner {
    background-image: url("../design/banner/q4-tall-banner.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: #fff;
    padding-top: 88px;
    height: 690px;
}

.page-about .pane--banner {
    background-image: url("../design/banner/about-banner.jpg");
}

.page-responsibility .pane--banner {
    background-image: url("../design/banner/responsibility-banner.jpg");
}

.page-investor .pane--banner {
    background-image: url("../design/banner/investor-banner.jpg");
}

.page-news-stories .pane--banner {
    background-image: url("../design/banner/news-and-stories.jpg");
}

.page-governance .pane--banner {
    background-image: url("../design/banner/governance-banner.jpg");
}

.page-no-banner .pane--banner,
.PagePageNotFound .pane--banner {
    background: none;
    height: auto;
    min-height: auto;
    padding-bottom: 0;
}

.pane--banner .pane_inner {
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.pane--banner h1 {
    margin: 0;
}

.module-page-title h1 {
    font-family: "TDASansScreen-Roman", sans-serif;
    font-size: 24px;
    line-height: 36px;
}

.module-banner-text h2 {
    font-family: "TDASans-Bold", sans-serif;
    font-size: 90px;
    line-height: 96px;
    margin-top: 12px;
    margin-bottom: 0;
}

.pane--navigation {
    position: fixed;
    top: 88px;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(0, 0, 0, 0.9);
    z-index: 130;
    overflow-y: auto;
}

.pane--navigation .pane_inner {
    max-width: none;
    padding-top: 30px;
    padding-bottom: 120px;
    padding-left: 80px;
    padding-right: 92px;
}

.js--mobile .pane--navigation {
    display: block;
}

.nav--main {
    text-align: right;
}

.nav--main .level1 {
    display: inline-block;
    padding-bottom: 45px;
    border-bottom: 1px dotted rgba(216, 216, 216, 0.4);
}

.nav--main .level1 > li {
    padding-right: 40px;
    position: relative;
}

.nav--main .level1 > li + li {
    margin-top: 20px
}

.nav--main a {
    font-family: "TDASansScreen-Light", sans-serif;
    display: inline-block;
    font-size: 20px;
    color: #fff;
    padding: 10px 0;
    position: relative;
}

.nav--main a:focus {
    text-decoration: none !important;
}

.nav--main a:hover,
.nav--main li.selected > a {
    color: #43b02a;
}

.nav--main .level1 > li > a {
    font-size: 40px;
}

.nav--main_toggle {
    position: absolute;
    top: 24px;
    right: 0;
    font-size: 12px;
    color: #fff;
    opacity: 0.4;
    cursor: pointer;
}

.nav--main li.has-children:hover > .nav--main_toggle {
    opacity: 1;
}

.nav--main li.has-children.js--expanded > .nav--main_toggle {
    display: none;
}

.nav--main .level1 > li.has-children .nav--main_border {
    background: rgba(255, 255, 255, 0.4);
    width: 2px;
    position: absolute;
    right: 8px;
    top: 10px;
    bottom: 10px;
    display: none;
    cursor: pointer;
}

.nav--main .level1 > li.has-children.js--expanded .nav--main_border {
    display: block;
}

.nav--main .level2 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.nav--main .js--expanded > .level2 {
    max-height: 100vh;
}

.pane--navigation .module-links {
    text-align: right;
    margin-top: 40px;
}

.pane--navigation .module-links li + li {
    margin-top: 35px;
}

.pane--navigation .module-links a {
    font-family: "TDASansScreen-Light", sans-serif;
    font-size: 24px;
    color: #d8d8d8;
}

.pane--navigation .module-links a:hover {
    color: #43b02a;
}

.pane--navigation .module-links i {
    font-size: 16px;
    padding-left: 20px;
    opacity: 0.4;
    color: #d8d8d8;
    vertical-align: middle;
}

.pane--navigation .module-links i.q4-icon_comment {
    font-size: 20px;
    padding-left: 21px;
}

.nav--secondary {
    background: #38635a;
}

.nav--secondary .level1 {
    width: 100%;
    max-width: 1215px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}

.nav--secondary .level1 > li {
    display: none;
}

.nav--secondary .level1 > li.selected,
.nav--secondary .level1 > li.expanded {
    display: block;
    padding: 26px 0;
}

.nav--secondary a {
    display: inline-block;
    font-size: 14px;
    color: #fff;
    padding: 7px 10px;
    position: relative;
    border-radius: 14px;
    background-color: transparent;
}

.nav--secondary a:focus {
    text-decoration: none !important;
}

.nav--secondary a:after {
    content: "";
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 10px;
}

.nav--secondary a:hover:after {
    display: none;
}

.nav--secondary li.selected > a:after {
    display: none;
}

.nav--secondary .level2,
.nav--secondary .level2 > li {
    display: inline-block;
}

.nav--secondary .level2 > li {
    margin-left: 5px;
}

.nav--secondary .level1 > li > a {
    font-family: "TDASansScreen-Bold", sans-serif;
}

.nav--secondary a:hover,
.nav--secondary .level1 > li.selected > a,
.nav--secondary .level2 > li.selected > a,
.nav--secondary .level2 > li.expanded > a {
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
}

@media only screen and (max-width: 1279px) {
    .nav--secondary a {
        font-size: 12px;
        padding-left: 8px;
        padding-right: 8px;
    }
    .nav--secondary a:after {
        left: 8px;
        right: 8px;
    }
}

@media only screen and (max-width: 1023px) {
    .pane--header .pane_inner {
        padding-left: 20px;
        padding-right: 20px;
    }
    .module-stock-header-mini {
        margin-left: 20px;
    }
    .module-stock-header-mini .module-stock-header-mini_stock-price.module-stock-header-mini_stock-price,
    .module-stock-header-mini .module-stock-header-mini_change.module-stock-header-mini_change {
        display: none;
    }
    .module-header-close {
        right: 20px;
    }
    .page-about .pane--banner {
        background-image: url("../design/banner/about-banner-mobile.jpg");
    }
    .pane--navigation .pane_inner {
        padding-left: 20px;
        padding-right: 32px;
    }
    .nav--secondary {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .pane--header .pane_inner {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .module-logo {
        padding-top: 7px;
    }
    .module-logo img {
        width: 130px;
    }
    .module-stock-header-mini {
        margin-top: 7px;
    }
    .module-stock-header-mini .module_container--inner {
        background: none;
        padding: 0;
    }
    .module-stock-header-mini .module_container--inner:hover {
        background: none;
    }
    .module-stock-header-mini .module-stock-header-mini_description1.module-stock-header-mini_description1 {
        display: none;
    }
    .module-header-social-buttons_item--social {
        display: none;
    }
    .module-header-social-buttons_item--buttons {
        background: none;
        border-radius: 0;
    }
    .module-header-social-buttons_item--buttons:hover {
        background: none;
    }
    .module-header-social-buttons_item--buttons:hover .module-header-social-button_toggle-layout-text {
        opacity: 0.5;
    }
    .module-header-social-buttons_item--buttons button {
        height: 40px;
    }
    .module-header-social-button_toggle-layout i {
        font-size: 20px;
        padding: 0;
    }
    .module-header-social-button_search {
        margin-left: 0;
        margin-right: 0;
    }
    .module-header-social-button_toggle-layout.module-header-social-button_toggle-layout {
        border-left: 1px solid rgba(255, 255, 255, 0.14);
    }
    .module-header-close_button i {
        font-size: 100%;
    }
    .module-header-close_button:before {
        top: 0;
    }
    .module-links-searches .module_title {
        font-size: 30px;
    }
    .module-links-searches .js--module-links_list-item {
        width: 50%;
    }
    .module-links-searches li {
        padding-right: 15px;
    }
    .module-links-searches a {
        font-size: 14px;
    }
    .pane--banner {
        height: 450px;
        padding-top: 70px;
    }
    .module-page-title h1 {
        font-size: 22px;
        line-height: 32px;
    }
    .module-banner-text h2 {
        font-size: 40px;
        line-height: 46px;
    }
    .pane--navigation {
        top: 70px;
    }
    .nav--main .level1 {
        display: block;
        margin-left: -20px;
        margin-right: -32px;
        padding-left: 20px;
        padding-right: 32px;
        padding-bottom: 35px;
    }
    .nav--main .level1 > li {
        padding-right: 35px;
    }
    .nav--main .level1 > li + li {
        margin-top: 10px;
    }
    .nav--main_toggle {
        top: 19px;
    }
    .nav--main .level1 > li > a {
        font-size: 30px;
    }
    .pane--navigation .module-links {
        margin-top: 35px;
    }
    .pane--navigation .module-links li + li {
        margin-top: 20px;
    }
}


/*=========================END HEADER=========================*/


/*===========================FOOTER===========================*/

.pane--footer .pane_inner {
    max-width: none;
    padding: 0;
}

.pane--footer .module_container--outer {
    width: 100%;
    max-width: 1215px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}

.pane--footer2 {
    padding-top: 25px;
    font-size: 14px;
    background: #d8d8d8;
}

.pane--footer2 .module:not(.module-embed) {
    padding-bottom: 25px;
}

.module-footer-html_item--address-social > * {
    display: inline-block;
    vertical-align: middle;
}

.module-footer-html_item-address-text {
    font-family: "TDASansScreen-Light", sans-serif;
    padding-right: 30px;
}

.module-social-links li {
    display: inline-block;
    vertical-align: middle;
}

.module-social-links li + li {
    margin-left: 5px;
}

.module-social-links a {
    display: inline-block;
    font-size: 16px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: #999999;
    border-radius: 100%;
    text-align: center;
    color: #d8d8d8;
}

.module-social-links a:hover {
    background: #43b02a;
    color: #d8d8d8;
}

.pane--credits {
    background: #f7f7f7;
    font-size: 14px;
    padding-top: 40px;
}

.pane--credits a {
    color: #000;
}

.pane--credits a:hover {
    color: #087900;
}

.pane--credits .module:not(.module-embed) {
    padding-bottom: 60px;
}

.nav--footer {
    padding-bottom: 60px;
}

.nav--footer .level1 {
    display: block;
    width: 100%;
    margin-left: -35px;
}

.nav--footer .level1 > li {
    box-sizing: border-box;
    display: inline-block;
    margin-right: -.25em;
    min-height: 1px;
    padding-left: 35px;
    padding-top: 20px;
    vertical-align: top;
    width: calc(100% / 6);
}

.nav--footer a {
    display: inline-block;
}

.nav--footer .level1 > li > a {
    font-size: 18px;
    margin-bottom: 20px;
}

.nav--footer .level2 > li {
    padding: 8px 0;
}

.nav--footer .level2 > li + li {
    border-top: 1px dotted #d7d7d7;
}

.nav--footer .level2 > li > a {
    font-family: "TDASansScreen-Light", sans-serif;
}

.module.module-links-footer-top.js--module-append {
    padding-bottom: 0;
}

.module-links-footer-top li + li {
    margin-top: 15px;
}

.module-links-footer-top a {
    font-size: 18px;
}

.module-links-footer-top a i {
    display: none;
}

.module-links-footer-bottom {
    padding-top: 30px;
    border-top: 1px dotted #d7d7d7;
}

.module-links-footer-bottom li {
    display: inline-block;
    vertical-align: top;
    margin-bottom: 12px;
}

.module-links-footer-bottom li:not(:last-child) {
    margin-right: 25px;
}

.module-links-footer-bottom a {
    font-family: "TDASansScreen-Light", sans-serif;
}

.copyright.copyright.copyright {
    font-family: "TDASansScreen-Light", sans-serif;
    font-size: 12px;
    line-height: 24px;
    padding-bottom: 30px;
}

.copyright .module_container--inner > *:first-child {
    margin-top: 0;
    margin-bottom: 30px;
}

.copyright p {
    line-height: 24px;
}

.module-q4-credits {
    font-family: "TDASansScreen-Light", sans-serif;
    font-size: 12px;
}

.module-boxes--footer {
    padding-top: 80px;
    padding-bottom: 45px;
}

.page-footer-boxes-background-white .module-boxes--footer {
    background-color: #fff;
}

@media only screen and (max-width: 1023px) {
    .nav--footer .level1 > li {
        width: calc(100% / 4);
    }
    .module-boxes--footer {
        padding-bottom: 70px;
    }
    .module-boxes--footer .module-boxes_item {
        width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .pane--footer2 {
        padding-top: 40px;
    }
    .pane--footer2 .module:not(.module-embed) {
        padding-bottom: 40px;
    }
    .module-footer-html_item.module-footer-html_item {
        width: 100%;
        text-align: center;
    }
    .module-footer-html_item--logo {
        padding-bottom: 20px;
    }
    .module-footer-html_item--address-social > * {
        display: block;
    }
    .module-footer-html_item-address-text {
        text-align: center;
        padding-right: 0;
        padding-bottom: 20px;
    }
    .nav--footer {
        padding-bottom: 20px;
    }
    .nav--footer .level1 {
        margin-left: 0;
    }
    .nav--footer .level1 > li {
        width: 100%;
        padding-left: 0;
        padding-top: 0;
        position: relative;
    }
    .nav--footer .level1 > li.has-children:after {
        content: "";
        background: #d8d8d8;
        width: 2px;
        position: absolute;
        right: 8px;
        top: 15px;
        bottom: 15px;
        display: none;
    }
    .nav--footer .level1 > li.js--expanded:after {
        display: block;
    }
    .nav--footer a {
        display: block;
        position: relative;
    }
    .nav--footer li.has-children > a:after {
        font-family: 'q4-icons';
        content: "\e91a";
        position: absolute;
        top: 50%;
        right: 0;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        font-size: 9px;
        color: #3e3e3e;
    }
    .nav--footer li.has-children.js--expanded > a:after {
        display: none;
    }
    .nav--footer .level1 > li > a {
        padding: 15px 20px 15px 0;
    }
    .nav--footer .level1 > li + li {
        border-top: 1px dotted #d7d7d7;
    }
    .nav--footer .level1 > li > a {
        margin-bottom: 0;
    }
    .nav--footer .level2 {
        display: none;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 20px;
    }
    .nav--footer li.js--expanded > .level2 {
        display: block;
    }
    .nav--footer .level2 > li + li {
        border-top: none;
    }
    .module-links-footer-top li + li {
        border-top: 1px dotted #d7d7d7;
    }
    .module-links-footer-top li + li {
        margin-top: 0;
    }
    .module-links-footer-top li > a {
        display: block;
        padding: 15px 0;
    }
    .module-links-footer-bottom.module-links-footer-bottom.module-links-footer-bottom {
        border-bottom: 1px dotted #d7d7d7;
        padding-bottom: 20px;
    }
    .module-links-footer-bottom li {
        display: block;
    }
    .module-links-footer-bottom li:not(:last-child) {
        margin-right: 0;
    }
    .copyright.copyright.copyright {
        padding-top: 30px;
    }
}


/*=========================END FOOTER=========================*/


/*=========================INNER PAGES========================*/


/*==================GLOBAL MODULES====================*/

.module-boxes_item {
    padding-bottom: 35px;
}

.module-boxes_item-inner {
    position: relative;
    padding: 40px 30px;
}

.module-boxes--all .module-boxes_item-inner {
    min-height: 600px;
}

.module-boxes--small .module-boxes_item-inner {
    padding-top: 90px;
}

.module-boxes_item-tag {
    font-family: "TDASansScreen-Medium", sans-serif;
    font-size: 14px;
}

.module-boxes_item-tag--box {
    position: absolute;
    background: rgba(0, 0, 0, 0.4);
    top: 20px;
    left: 20px;
    padding: 8px 20px;
    border-radius: 30px;
    z-index: 2;
    color: #fff;
}

.module-boxes_item-title {
    font-size: 40px;
    line-height: 1.2;
    margin-top: 30px;
    margin-bottom: 30px;
}

.module-boxes_item-title--smaller {
    font-size: 30px;
}

.module-boxes--small .module-boxes_item-title {
    font-size: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.module-boxes .button,
.module-boxes .module_link--more {
    margin-top: 10px;
}

.module-boxes .module-boxes_item .button:before,
.module-boxes .module-boxes_item .module_link--more:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.module-boxes--small .button,
.module-boxes--small .module_link--more {
    margin-top: 5px;
}

.module-boxes--crosssell .module-boxes_item-inner {
    min-height: 500px;
}

.module-boxes--crosssell .module-boxes_item-inner {
    padding-top: 100px;
}

.module-boxes_item-inner {
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.module-boxes_item--investor .module-boxes_item-inner {
    background-image: url('../design/crosssell-image3.png');
}

.module-boxes_item--investor2 .module-boxes_item-inner {
    background-image: url('../design/crosssell-image11.png');
}

.module-boxes_item--investor3 .module-boxes_item-inner {
    background-image: url('../design/crosssell-image28.png');
}

.module-boxes_item--investor4 .module-boxes_item-inner {
    background-image: url('../design/crosssell-image29.png');
}
.module-boxes_item--quarterly2 .module-boxes_item-inner {
    background-image: url('../design/earnings.jpg') !important;
}
.module-boxes_item--news-stories .module-boxes_item-inner {
    background-image: url('../design/crosssell-image4.png');
}

.module-boxes_item--news-stories2 .module-boxes_item-inner {
    background-image: url('../design/crosssell-image15.png');
}

.module-boxes_item--responsibility .module-boxes_item-inner {
    background-image: url('../design/crosssell-image5.jpg');
}

.module-boxes_item--governance .module-boxes_item-inner {
    background-image: url('../design/crosssell-image6.png');
}

.module-boxes_item--governance2 .module-boxes_item-inner {
    background-image: url('../design/crosssell-image20.png');
    background-position: top right;
    background-size: auto 100%;
}

.module-boxes_item--governance3 .module-boxes_item-inner {
    background-image: url('../design/crosssell-image21.png');
    background-position: top left;
    background-size: auto 100%;
}

.module-boxes_item--governance4 .module-boxes_item-inner {
    background-image: url('../design/crosssell-image23.jpg');
}

.module-boxes_item--governance5 .module-boxes_item-inner {
    background-image: url('../design/crosssell-image24.jpg');
}

.module-boxes_item--governance6 .module-boxes_item-inner {
    background-image: url('../design/crosssell-image26.jpg');
}

.module-boxes_item--governance7 .module-boxes_item-inner {
    background-image: url('../design/crosssell-image27.jpg');
}

.module-boxes_item--about .module-boxes_item-inner {
    background-image: url('../design/crosssell-image7.jpg');
}

.module-boxes_item--about2 .module-boxes_item-inner {
    background-image: url('../design/crosssell-image8_v2.jpg');
}

.module-boxes_item--about3 .module-boxes_item-inner {
    background-image: url('../design/crosssell-image9.jpg');
}

.module-boxes_item--about4 .module-boxes_item-inner {
    background-image: url('../design/crosssell-image10_v2.jpg');
}

.module-boxes_item--about5 .module-boxes_item-inner {
    background-image: url(../design/dna.png);
    background-position: calc(100% - 40px) center;
    background-size: auto;
}

.module-boxes_item--about6 .module-boxes_item-inner {
    background-image: url(../design/driven.jpg);
    background-size: auto 350px;
    background-position-x: 0;
    padding-top: 350px;
}

.module-boxes_item--about7 .module-boxes_item-inner {
    background-image: url('../design/dna.png');
    background-position: 70px center;
    background-size: auto;
}

.module-boxes_item--about8 .module-boxes_item-inner {
    background-image: url('../design/crosssell-image13.jpg');
}

.module-boxes_item--about9 .module-boxes_item-inner {
    background-image: url('../design/crosssell-image14.jpg');
}

.module-boxes_item--about10 .module-boxes_item-inner {
    background-image: url('../design/crosssell-image18.jpg');
}

.module-boxes_item--about11 .module-boxes_item-inner {
    background-image: url('../design/crosssell-image19.jpg');
}

.module-boxes_item--about12 .module-boxes_item-inner {
    background-image: url(../design/dna.png);
    background-position: calc(100% - 140px) center;
    background-size: auto;
}

.module-boxes_item--about13 .module-boxes_item-inner {
    background-image: url('../design/crosssell-image31.jpg');
}

.module-boxes_item--about14 .module-boxes_item-inner {
    background-image: url('../design/crosssell-image32.jpg');
}

.module-boxes_item--history .module-boxes_item-inner {
    background-image: url('../design/crosssell-image12.png');
}

.module-boxes_item--marketplace .module-boxes_item-inner {
    background-image: url('../design/marketplace-module.jpg');
}

.module-boxes_item--workplace .module-boxes_item-inner {
    background-image: url(../design/workplace.jpg);
    background-size: auto 300px;
    padding-top: 300px;
}

.module-boxes_item--diversity-inclusion .module-boxes_item-inner {
    background-image: url('../design/diversity-inclusion.png');
}

.module-boxes_item--community .module-boxes_item-inner {
    background-image: url('../design/community.png');
}

.module-boxes_item--environment .module-boxes_item-inner {
    background-image: url('../design/environment.png');
    background-position: calc(100% + 45px) calc(-100% + 102px);
    background-size: auto;
}

.module-boxes_item--quarterly .module-boxes_item-inner {
    background-image: url('../design/earnings.jpg');
}

.module-boxes_item--stock .module-boxes_item-inner {
    background-image: url('../design/ilustration.png');
    background-position: center center;
}

.module-boxes_item--responsibility2 .module-boxes_item-inner {
    background-image: url('../design/responsibility2.png');
}

.module-boxes_item--responsibility3 .module-boxes_item-inner {
    background-image: url('../design/responsibility3.png');
}

.module-intro {
    padding-top: 80px;
    padding-bottom: 90px;
    font-size: 24px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.module-intro--our-story {
    background-image: url(../design/about-us-story.jpg);
}

.module-intro--purpose-values {
    background-image: url(../design/about-us-purpose.jpg);
    background-position: center 30%;
}

.module-intro .module_container--inner > *:first-child {
    margin-top: 0;
}

.module-intro .module_container--inner > *:last-child {
    margin-bottom: 0;
}

.module-intro h2 {
    line-height: 1.2;
}

.module-accordion_item {
    background-color: #f7f7f7;
}

.module-accordion_item ~ .module-accordion_item {
    margin-top: 5px;
}

.module-accordion_toggle {
    font-family: "TDASansScreen-Bold", sans-serif;
    font-size: 18px;
    padding: 20px 55px 20px 20px;
    margin: 0;
    cursor: pointer;
    position: relative;
}

.module-accordion_toggle:after {
    font-family: 'q4-icons';
    content: "\e92e";
    font-size: 18px;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #fff;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.module-accordion_item.js--active .module-accordion_toggle:after {
    content: "\ed5e";
}

.module-accordion_item.js--active .module-accordion_toggle {
    border-bottom: 1px dotted #999999;
}

.module-accordion_panel {
    font-size: 16px;
    line-height: 1.5;
    padding: 35px 60px 60px;
}

.module-accordion_panel .list {
    margin-top: 0;
}

.module-accordion_panel p {
    line-height: 1.5;
    margin: 0;
    padding: 0 0 18px;
}

.module-accordion_panel > *:first-child {
    margin-top: 0;
    padding-top: 0;
}

.module-accordion_panel > *:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.module_box.module_box {
    padding: 40px 30px;
}

.module_box > *:first-child {
    margin-top: 0;
    padding-top: 0;
}

.module_box > *:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.module_box--larger.module_box--larger {
    padding: 50px 65px;
}

.module-side-boxes_item {
    padding: 40px 30px;
}

.module-side-boxes_item + .module-side-boxes_item {
    margin-top: 40px;
}

.module-side-boxes_item-title {
    line-height: 24px;
    margin-top: 0;
    margin-bottom: 22px;
}

.module-side-boxes_item-content {
    font-family: "TDASansScreen-Light", sans-serif;
}

.module-side-boxes_item-more {
    margin-top: 22px;
}

.module-add-to-any .a2a_default_style a {
    padding-left: 0;
    padding-right: 5px;
}

.module-add-to-any a span {
    display: none;
}

.module-add-to-any a:before {
    display: inline-block;
    color: #000;
    border: 1px solid;
    border-radius: 100%;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
}

.module-add-to-any a:hover:before {
    color: #43b02a;
}

.icon-social.icon-social:before {
    display: inline-block;
    vertical-align: middle;
    background: #1da0f1;
    border-radius: 100%;
    color: #fff;
    font-size: 16px;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    margin-right: 5px;
}

@media only screen and (max-width: 1023px) {
    .module-boxes.module-boxes .module_container--outer {
        max-width: 610px;
        margin: 0 auto;
    }
     .module-boxes .grid--gutter-35 {
        margin-left: -10px;
    }
    .module-boxes--small .grid--gutter-35 {
        margin-left: -10px;
    }
    .module-boxes--ir .grid--gutter-35 {
        margin-left: -26px!important;
        margin-right: -10px!important;
    }
    .module-boxes .grid_col {
        padding-left: 10px;
    }
    .module-boxes_items-container {
        justify-content: center;
    }
    .module-boxes_item {
        width: 100%;
        padding-bottom: 10px;
    }
    .module-boxes_item.grid_col {
        width: 100%;
    }
    .module-boxes--large .module-boxes_item {
        width: 100%;
    }
    .module-accordion_panel {
        padding: 25px 20px;
    }
}

@media only screen and (max-width: 767px) {
    .module-boxes_item.module-boxes_item {
        width: 100%;
    }
    .module-boxes--all .module-boxes_item-inner {
        min-height: 500px;
    }
    .module-boxes_item--about6 .module-boxes_item-inner {
        background-size: auto 250px;
        padding-top: 250px;
    }
    .module-boxes_item-title {
        font-size: 30px;
    }
    .module-intro {
        font-size: 20px;
    }
    .module-accordion_toggle {
        padding-right: 45px;
    }
    .module-accordion_toggle:after {
        font-size: 14px;
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
    .module_box--larger.module_box--larger {
        padding: 40px 30px;
    }
}


/*================END GLOBAL MODULES==================*/


/*=======================HOME=========================*/

.layout--home .pane--banner {
    background: none;
    min-height: auto;
    height: auto;
    padding-top: 0;
    padding-bottom: 0;
}

.layout--home .pane--banner .pane_inner {
    max-width: none;
    padding: 0;
}

.module-video-home {
    position: relative;
}

.module-video-home:before {
    content: "";
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.module-video-home .module_container--inner {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    /*--00067415---*/
    height: 800px;
    padding-top: 70px;
    padding-bottom: 70px;
}

.module-video-home video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.module-video-home_content {
    position: relative;
    width: 100%;
    max-width: 1215px;
    padding-left: 20px;
    padding-right: 20px;
    z-index: 2;
}

.module-video-home_content-inner {
    max-width: 1000px;
}

.module-video-home h1 {
    font-size: 110px;
}

.module-video-home .button {
    margin-top: 75px;
}

.module-video-home_dots {
    list-style-type: none;
    margin: 0;
    padding: 0;
    position: absolute;
    bottom: 30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.module-video-home_dots li {
    background: #fff;
    width: 4px;
    height: 6px;
    margin-top: 3px;
    margin-bottom: 3px;
    font-size: 0;
}

.module-slider {
    display: none;
}

.module-slider .slick-slider {
    padding: 0;
}

.module-slider .module_item.module_item {
    background-repeat: no-repeat;
    background-position: center 25%;
    background-size: cover;
    display: table;
    height: 600px;
    padding: 0;
}

.module-slider .module_item-inner {
    display: table-cell;
    vertical-align: middle;
    padding: 70px 20px;
}

.module-alerts .module_container--outer {
    width: 100%;
    max-width: 1215px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.module-alerts .module_container--content {
    font-family: "TDASansScreen-Light", sans-serif;
    padding: 50px 35px 50px 70px;
    position: relative;
}

.module-alerts .module_container--content:before {
    font-family: 'q4-icons';
    content: "\e90c";
    display: inline-block;
    border: 2px solid #fff;
    border-radius: 100%;
    color: #fff;
    font-size: 30px;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
}

.module-alerts .module_container--content > *:first-child {
    margin-top: 0;
}

.module-alerts .module_container--content > *:last-child {
    margin-bottom: 0;
}

.module-alerts h4 {
    line-height: 1.2;
    margin-bottom: 0;
}

.module-alerts h4 + p {
    margin-top: 10px;
}

.module-alerts_button {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: none;
    border-radius: 100%;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    font-size: 12px;
    line-height: 0;
    color: #fff;
    text-align: center;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.module-alerts_button:hover {
    transition: background-color 0.2s ease-in-out;
    background-color: rgba(0, 0, 0, 1);
}

.module-boxes--home .module-boxes_item-inner {
    min-height: 700px;
}

.module-boxes--home .module-boxes_item-content {
    max-width: 475px;
    direction: ltr;
}

.module-boxes--home .module-boxes_item-tag--box {
    top: 30px;
    left: 30px;
}

.module-boxes--home .module-boxes_item.rtl .module-boxes_item-tag--box {
    left: auto;
}

.module-boxes--news .module-boxes_item-inner {
    min-height: 370px;
}

.module-boxes--news .module-boxes_item-inner {
    background-color: #2a5573;
    justify-content: flex-end;
    padding-top: 100px;
}

.module-boxes--news .module-boxes_item:first-child .module-boxes_item-inner {
    /*background: url('../design/crosssell-image1.jpg') no-repeat top center;*/
    background-color:#38635a;
    background-size: cover;
}

.module-boxes--news .module-boxes_item:last-child .module-boxes_item-inner {
    background: url('../design/crosssell-image2.jpg') no-repeat top center;
    background-size: cover;
}

.module-boxes--news .module-boxes_item-tag {
    text-transform: capitalize;
}

.module-boxes--news a.module_headline-link:hover {
    color: #fff;
}

@media only screen and (max-width: 1023px) {
    .module-video-home .module_container--inner {
        height: 800px;
    }
    .module-video-home video {
        left: auto;
    }
    .module-video-home h1 {
        font-size: 80px;
    }
    .module-boxes--home.module-boxes--home {
        padding-top: 10px;
    }
    .module-boxes--home .module-boxes_item {
        width: 100%;
        min-height: 600px;
    }
    .module-boxes--home .module-boxes_item--first .module-boxes_item-inner {
        direction: initial;
    }
    .module-boxes--news .button {
        margin-top: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .module-video-home:before {
        display: none;
    }
    .module-video-home .module_container--inner {
        height: auto;
        display: block;
        padding: 0;
    }
    .module-video-home video,
    .module-video-home_content,
    .module-video-home_dots {
        display: none;
    }
    .module-slider {
        display: block;
    }
    .module-video-home h1 {
        font-size: 42px;
    }
    .module-video-home .button {
        margin-top: 45px;
    }
    .module-alerts .module_container--content {
        font-size: 16px;
        padding-left: 50px;
    }
    .module-alerts .module_container--content:before {
        font-size: 20px;
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
    .module-alerts h4 {
        font-size: 20px;
    }
    .module-boxes--home.module-no-container .module_container--outer {
        padding-left: 0;
        padding-right: 0;
    }
    .module-boxes--home .module-boxes_item-inner {
        min-height: 500px;
    }
    .module-boxes--news .module-boxes_item {
        width: 100%;
    }
}


/*=====================END HOME=======================*/


/*=======================ABOUT========================*/

.page-about .module-boxes--footer {
    background-color: #fff;
}

.module-boxes--all-about .module-boxes_item--about6 .module-boxes_item-inner {
    background-image: url(../design/driven2.jpg);
    background-size: auto 300px;
    padding-top: 300px;
}

.module-boxes--crosssell-about.module-boxes--crosssell-about {
    padding-top: 0;
}

.module-callouts.module-callouts {
    position: relative;
    padding-bottom: 220px;
}

.module-callouts:before {
    content: "";
    background-color: #f5f1eb;
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
}

.module-callouts:after {
    content: "";
    background-image: url('../design/graph.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 194px;
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
}

.module-callouts .module_container--outer {
    position: relative;
    z-index: 1;
}

.module-callouts_line {
    background-color: #c7c5c2;
    height: 2px;
    position: absolute;
    top: 175px;
    z-index: 3;
    width: 25%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.module-callouts_line:before,
.module-callouts_line:after {
    content: "";
    background-color: #c7c5c2;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.module-callouts_line:before {
    left: 0;
}

.module-callouts_line:after {
    right: 0;
}

.module-callouts_item-inner {
    max-width: 430px;
    margin: 0 auto;
}

.module-callouts_item-image {
    margin-top: 80px;
    margin-bottom: 70px;
    position: relative;
}

.module-callouts_item-description {
    font-family: "TDASansScreen-Light", sans-serif;
    font-size: 24px;
}

.module-callouts_disclaimer {
    font-family: "TDASansScreen-Light", sans-serif;
    font-size: 12px;
}

@media only screen and (max-width: 1023px) {
    .module-boxes--all-about .module-boxes_item {
        width: 100%;
    }
    .module-boxes--crosssell-about .module-boxes_item {
        width: 100%;
    }
    .module-callouts.module-callouts {
        padding-top: 0;
        padding-bottom: 150px;
    }
    .module-callouts:before {
        display: none;
    }
    .module-callouts_line {
        display: none;
    }
    .module-callouts_item {
        width: 100%;
    }
    .module-callouts_item-inner {
        max-width: none;
        margin: 0 -20px;
        padding: 70px 20px;
    }
}

@media only screen and (max-width: 767px) {
    .module-callouts_item-image {
        margin-top: 50px;
        margin-bottom: 40px;
    }
    .module-callouts_item-description {
        font-size: 20px;
    }
}


/*=====================END ABOUT======================*/


/*==================PURPOSE & VALUES==================*/

.module-purpose-values h5 {
    margin-top: 30px;
    margin-bottom: 30px;
}


/*================END PURPOSE & VALUES================*/


/*====================LEADERSHIP======================*/

.module-meet-board .module_title {
    margin-bottom: 45px;
}

.module-meet-board_item {
    position: relative;
    padding-top: 110px;
    padding-bottom: 60px;
}

.module-meet-board_item--image img {
    display: none;
}

.module-meet-board_item--image:before {
    content: "";
    background-image: url('../design/promo-joe2.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    position: absolute;
    top: -30px;
    left: -10px;
    right: 0;
    bottom: 0;
}

.module-key-leaders {
    background-image: url('../design/td-ameritrade-leadership-team.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding-top: 43%;
}

.module-meet-board_link:focus {
    text-decoration: none !important;
}

.module-meet-board_link.color--3:hover {
    color: #38635a;
}

.module-meet-board_link {
    border-bottom: 4px solid;
    transition: 0.2s ease-in-out;
}

.module-meet-board_link:hover {
    border-color: transparent;
}

@media only screen and (max-width: 1023px) {
    .module-meet-board .module_title {
        margin-bottom: 30px;
    }
    .module-meet-board_item {
        width: 100%;
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .module-meet-board_item + .module-meet-board_item {
        padding-top: 0;
    }
    .module-meet-board_item--image {
        text-align: center;
    }
    .module-meet-board_item--image img {
        display: inline-block;
    }
    .module-meet-board_item--image:before {
        display: none;
    }
}


/*==================END LEADERSHIP====================*/


/*====================OUR HISTORY=====================*/

.module-history_year {
    margin-top: 0;
}

.module-history_logo {
    width: 100%;
    max-width: 300px;
    background: #f7f7f7;
    padding: 20px 30px 30px;
    margin-top: 20px;
}


/*==================END OUR HISTORY===================*/


/*===================OUR BUSINESS=====================*/

.module-business-videos .module_item {
    padding: 0;
}

.module-business-videos .module_item ~ .module_item {
    padding-top: 70px;
    border-top: none;
}

.module-business-videos_link {
    display: inline-block;
    position: relative;
}

.module-business-videos_thumb {
    display: block;
}

.module-business-videos_title-container {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: block;
    width: 100%;
    text-align: center;
    padding: 0 20px;
}

.module-business-videos_title {
    font-size: 24px;
    line-height: 36px;
    color: #fff;
    display: block;
    margin-top: 20px;
}

@media only screen and (max-width: 767px) {
    .module-business-videos_play-button {
        width: 40px;
    }
    .module-business-videos_title {
        font-size: 18px;
        line-height: 24px;
        margin-top: 15px;
    }
}


/*=================END OUR BUSINESS===================*/


/*==================RESPONSIBILITY====================*/

.page-responsibility .module-boxes--footer {
    background-color: #fff;
    padding-top: 0;
}

.module-boxes--crosssell-responsibility.module-boxes--crosssell-responsibility {
    padding-top: 0;
}

.module-csr-report {
    font-size: 24px;
}

@media only screen and (max-width: 1023px) {
    .module-boxes--crosssell-responsibility .module-boxes_item {
        width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .module-csr-report {
        font-size: 20px;
    }
}


/*================END RESPONSIBILITY==================*/


/*===================MARKET PLACE=====================*/

.module-comments-letters_item {
    margin-bottom: 20px;
}

.module-market-place_item + .module-market-place_item {
    margin-top: 90px;
}

.module-market-place_item .module-accordion {
    margin-top: 35px;
}

.module-market-place_item .module_box {
    margin-top: 30px;
}

.module-market-place_item--disclaimer {
    border-top: 1px dotted #d7d7d7;
    padding-top: 30px;
}

@media only screen and (max-width: 767px) {
    .module-market-place_item + .module-market-place_item {
        margin-top: 50px;
    }
    .module-market-place_item--disclaimer {
        padding-top: 20px;
    }
}


/*=================END MARKET PLACE===================*/


/*====================WORKPLACE=======================*/

.module-workplace .module_box {
    margin-top: 50px;
}


/*==================END WORKPLACE=====================*/


/*====================COMMUNITY=======================*/

.module-community_callouts {
    margin-top: 45px;
    padding: 40px 20px;
}

.module-community_callouts h4 {
    margin-bottom: 40px;
}

.module-community_callouts-circles {
    margin-bottom: -90px;
}

.module-community_callouts-circles-item {
    padding-bottom: 20px;
}

.module-community_callouts-circles-item-inner {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: #2a5573;
    border: 10px solid #b1d6ec;
    border-radius: 100%;
    width: 220px;
    height: 220px;
}

.module-community_callouts-value {
    font-family: "TDASansScreen-Bold", sans-serif;
    font-size: 60px;
    letter-spacing: -0.020em;
}

.module-community_callouts-description {
    margin-top: 10px;
    line-height: 22px;
}

.module-community_disclaimer {
    font-size: 14px;
    margin-top: 60px;
    margin-bottom: 70px;
}

.module-community_programs {
    padding-top: 20px;
}

.module-community_programs-item + .module-community_programs-item {
    padding-top: 40px;
}


/*==================END COMMUNITY=====================*/


/*=================INVESTOR RELATIONS=================*/

.page-investor .module-boxes--footer {
    background-color: #fff;
}

.module-boxes--ir .module-boxes_item-inner {
    min-height: 500px;
}

.module-promo.module-promo {
    background-image: url('../design/investor-education-conference.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    font-size: 24px;
    padding-top: 210px;
    padding-bottom: 210px;
}

.module-promo .module_title {
    margin-bottom: 15px;
}

.module-promo .module_container--content > *:first-child {
    margin-top: 0;
}

.module-promo .button {
    margin-top: 10px;
}


/*===============END INVESTOR RELATIONS===============*/


/*==================SHAREHOLDER INFO==================*/

.module-shareholder-info-contacts a {
    word-break: break-all;
}

.module-shareholder-info-contacts,
.module-shareholder-info-contacts .module_link {
    font-size: 16px;
}


/*================END SHAREHOLDER INFO================*/


/*===================NEWS & STORIES===================*/

.page-news-stories .module-boxes--footer {
    background-color: #fff;
}

.module-news-featured .module_item {
    padding-top: 20px;
}

.module-news-featured .module_headline-link,
.module-news-featured .module_headline-text {
    font-family: "TDASans-Bold", sans-serif;
    font-size: 50px;
    line-height: 1.2;
    transition: 0.2s ease-in-out;
    border-bottom: 1px solid rgba(255, 255, 255, 0);
}

.module-news-featured .module_headline-link:focus {
    text-decoration: none !important;
}

.module-news-featured a.module_headline-link:hover {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 1);
}

.module-news-featured .module_headline:not(:empty) {
    margin-bottom: 25px;
}

.module-news-featured .module_date-time {
    font-family: "TDASansScreen-Roman", sans-serif;
    font-size: 18px;
    line-height: 1;
    color: #fdf3cb;
    margin-bottom: 40px;
}

.module-news-featured .module_date-time > span {
    display: inline-block;
}

.module-news-featured .module_date-time > span + span {
    border-left: 2px solid;
    margin-left: 20px;
    padding-left: 20px;
}

.module-boxes--blog .module-boxes_item:first-child,
.module-boxes--blog .module-boxes_item:nth-child(4) {
    width: 66.6666666667%;
}

.module-boxes--blog .module-boxes_item:nth-child(2),
.module-boxes--blog .module-boxes_item:nth-child(3) {
    width: 33.3333333333%;
}

.module-boxes--blog .module-boxes_item-inner {
    padding-top: 100px;
    min-height: 370px;
}

.module-boxes--blog .module-boxes_item:nth-child(4) .module-boxes_item-inner {
    background-color: #2a5673;
    color: #fff;
}

.module-boxes--blog .module-boxes_item:nth-child(6) .module-boxes_item-inner {
    background-color: #fdf3cb;
}

.module-boxes--blog .module_headline-link,
.module-boxes--blog .module_headline-text {
    font-family: "TDASansScreen-Bold", sans-serif;
    font-size: 30px;
    line-height: 36px;
    transition: 0.2s ease-in-out;
    border-bottom: 1px solid rgba(0, 0, 0, 0);
}

.module-boxes--blog .module_headline-link:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.module-boxes--blog .module_headline-link:focus {
    text-decoration: none !important;
}

.module-boxes--blog a.module_headline-link:hover {
    color: #000;
    border-bottom: 1px solid rgba(0, 0, 0, 1);
}

.module-boxes--blog .module-boxes_item-inner[style*="background-image: url(http"],
.module-boxes--blog .module-boxes_item-inner[style*='background-image: url("http'],
.module-boxes--blog .module-boxes_item-inner[style*="background-image: url(http"] .module_headline-link,
.module-boxes--blog .module-boxes_item-inner[style*='background-image: url("http'] .module_headline-link {
    color: #fff;
}

.module-boxes--blog .module-boxes_item:nth-child(4) .module-boxes_item-inner .module_headline-link {
    color: #fff;
}

.module-boxes--blog .module-boxes_item-inner[style*="background-image: url(http"] .module_headline-link:hover,
.module-boxes--blog .module-boxes_item-inner[style*='background-image: url("http'] .module_headline-link:hover,
.module-boxes--blog .module-boxes_item:nth-child(4) .module-boxes_item-inner .module_headline-link:hover {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 1);
}

.module-boxes--blog .module_body {
    line-height: 24px;
    margin-bottom: 0;
}

.module-news-more h5 {
    margin-top: 0;
    margin-bottom: 20px;
}

.module-news-more .module_item {
    padding-top: 10px;
}

.module-news-more .module_headline {
    margin-bottom: 0;
}

.module-news-more .module_headline-link,
.module-news-more .module_headline-text {
    font-size: 14px;
    line-height: 24px;
}

.module-news-more .module_container--widget .module {
    position: relative;
}

.module-news-more .module_container--widget .module:before {
    content: "";
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 16px solid rgba(106, 105, 104, 0.17);
    position: absolute;
    top: -8px;
    left: calc(50% + 17.5px);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media only screen and (max-width: 1023px) {
    .module-boxes--blog .module-boxes_item.module-boxes_item {
        width: 100%;
    }
    .module-news-more .module_container--widget .module {
        width: 100%;
    }
    .module-news-more .module_container--widget .module + .module {
        padding-top: 0;
    }
    .module-news-more .module_container--widget .module:before {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .module-news-featured .module_headline-link,
    .module-news-featured .module_headline-text {
        font-size: 25px;
    }
    .module-news-featured .module_date-time {
        font-size: 15px;
    }
    .module-news-featured .module_date-time > span + span {
        margin-left: 10px;
        padding-left: 10px;
    }
    .module-boxes--blog .module_headline-link,
    .module-boxes--blog .module_headline-text {
        font-size: 24px;
        line-height: 30px;
    }
}


/*=================END NEWS & STORIES=================*/


/*=====================GOVERNANCE=====================*/

.page-governance .module-boxes--footer {
    background: #fff;
}

.module-boxes--governance .module-boxes_item-inner {
    min-height: 500px;
}

.module-boxes--governance .module-boxes_item-inner--bottom {
    padding-top: 100px;
}

.module-boxes--governance .module-boxes_item--annual .module-boxes_item-inner {
    background-image: url('../design/governance-annual.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.module-boxes--governance .module-boxes_item--second .module-boxes_item-inner {
    background-image: url('../design/governance-board.jpg');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.module-boxes--governance .module-boxes_item--third .module-boxes_item-inner {
    background-image: url('../design/governance-policies.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.module-boxes--governance .module-boxes_item--fourth .module-boxes_item-inner {
    background-image: url('../design/governance-accountable.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.module-quote .module_container--inner {
    max-width: 850px;
    margin: 0 auto;
}

.module-quote.module-quote {
    font-size: 24px;
    padding-top: 170px;
    padding-bottom: 140px;
    position: relative;
}

.module-quote:before {
    content: "";
    width: 0;
    height: 0;
    border-left: 22px solid transparent;
    border-right: 22px solid transparent;
    border-top: 20px solid #fff;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.module-quote .module_title {
    line-height: 1.35;
    position: relative;
    padding-bottom: 45px;
}

.module-quote .module_title:after {
    content: "";
    background: #bbbbbb;
    height: 1px;
    width: 66px;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media only screen and (max-width: 767px) {
    .module-quote {
        font-size: 20px;
    }
}


/*===================END GOVERNANCE===================*/


/*=================BOARD OF DIRECTORS=================*/

.page-board .container {
    position: relative;
}

.page-board .container:before {
    content: "";
    display: block;
    border-top: 1px dotted #d7d7d7;
    margin-top: 35px;
}

.module-intro--board a {
    font-size: 24px;
}

.module-committees .module-accordion {
    padding-top: 30px;
}

.module-committee-person {
    padding-top: 10px;
    padding-bottom: 20px;
}

.module-committee-person .module_item {
    padding: 0;
}

.module-committee-person .module_item ~ .module_item {
    border-top: none;
    padding-top: 10px;
}

.module-committee-person_name-link {
    border-bottom: 1px solid;
}

.module-committee-person--governance .module_item--governance-chair .module-committee-person_name-link:after,
.module-committee-person--risk .module_item--risk-chair .module-committee-person_name-link:after,
.module-committee-person--compensation .module_item--compensation-chair .module-committee-person_name-link:after,
.module-committee-person--audit .module_item--audit-chair .module-committee-person_name-link:after,
.module-committee-person--independent .module_item--independent-chair .module-committee-person_name-link:after,
.module-committee-person--nontd .module_item--nontd-chair .module-committee-person_name-link:after {
    content: "(Chair)";
    display: inline;
    margin-left: 3px;
}

.module-contact-board:before {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    border-top: 1px dotted #d7d7d7;
    margin-top: -70px;
}


/*===============END BOARD OF DIRECTORS===============*/


/*===============POLICIES AND GUIDELINES==============*/

.module-page-navigation {
    padding: 40px 30px;
}

.module-page-navigation h5 {
    font-family: "TDASansScreen-Roman", sans-serif;
    margin-top: 0;
    margin-bottom: 20px;
}

.module-page-navigation a {
    font-family: "TDASansScreen-Light", sans-serif;
    font-size: 14px;
    color: #000;
}

.module-page-navigation li {
    padding: 5px 0;
}

.module-page-navigation li + li {
    border-top: 1px dotted #d7d7d7;
}

.module-page-navigation li:last-child {
    padding-bottom: 0;
}

@media only screen and (max-width: 1023px) {
    .page-policies-guidelines .layout_content .container .grid {
        display: -webkit-flex;
        display: flex;
        flex-direction: column-reverse;
    }
    .layout--two-column .pane--right .RightPaneDiv .module-page-navigation.module-page-navigation.module-page-navigation.module-page-navigation {
        margin-top: 70px;
        margin-bottom: 0;
    }
}


/*=============END POLICIES AND GUIDELINES============*/


/*===============SUBJECT MATTER EXPERTS===============*/

.module-subject-matter-expert_items-container {
    padding-top: 20px;
}

.module-subject-matter-expert_item:not(:last-child) {
    padding-bottom: 65px;
}

.module-subject-matter-experts .module_item {
    padding: 0;
}

.module-subject-matter-experts .module_item ~ .module_item {
    border-top: none;
    padding-top: 40px;
}

.module-subject-matter-experts .module_item:first-child {
    padding-top: 20px;
}

.module-subject-matter-experts_title {
    margin-top: 10px;
}

.page-subject-matter-experts-details .pane--content .module_container--outer {
    padding-left: 85px;
}

@media only screen and (max-width: 767px) {
    .module-subject-matter-experts .module_item ~ .module_item {
        padding-top: 30px;
    }
    .module-subject-matter-expert_item:not(:last-child) {
        padding-bottom: 35px;
    }
    .page-subject-matter-experts-details .pane--content .module_container--outer {
        padding-left: 20px;
    }
}


/*=============END SUBJECT MATTER EXPERTS=============*/


/*======================CONTACT=======================*/

.module-contact i:not(.icon-social) {
    padding-right: 12px;
}

.module-contact_item + .module-contact_item {
    margin-top: 70px;
}

.module-contact_item .module-accordion_panel {
    font-size: 18px;
}


/*====================END CONTACT=====================*/


/*===================IFRAME FORM======================*/

.fancybox-slide--form .fancybox-content {
    margin: 10px auto;
    max-width: 1000px;
    width: 90% !important;
    overflow: visible;
}


/*=================END IFRAME FORM====================*/


/*=======================END INNER PAGES======================*/

/* https://q4websystems.zendesk.com/agent/tickets/264110 */
.PageGovernance .module-boxes--footer{
    padding-top:0px !important;
}

.PageGovernance .pane--content .module--thin-bottom{
    padding-bottom:0px !important;
}

.ticker-shareholder-img {
    width: 100px;
    vertical-align: middle;
  margin: 0 -14px;
    padding-bottom: 4px;
}

.ticker-img {
    width: 100px;
    vertical-align: middle;
  margin-left: -14px;
    margin-right: -10px;
    padding-bottom: 4px;
}