/*==================================
 ------------ RESET CSS -----------
==================================*/

html,body,applet,object,iframe,h1,h2,h3,h4,h5,h6,blockquote,pre,
abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,
small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,
fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,
article,aside,canvas,details,embed,figure,figcaption,footer,
header,hgroup,menu,nav,output,ruby,section,summary,time,
mark,audio,video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}


/* HTML5 display-role reset for older browsers */

article,aside,details,figcaption,
figure,footer,header,hgroup,
menu,nav,section {
    display: block;
}

html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

html {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    -webkit-text-size-adjust: 100%;
}

ol,
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

strong {
    font-weight: bold;
}

em {
    font-style: italic;
}
sup {
    vertical-align: super;
    font-size: smaller;
}
sub {
    vertical-align: sub;
    font-size: smaller;
}

/*---------- Animations ----------*/

@keyframes spin {
    from {
        transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/*==================================
 --------- DEFAULT STYLES ---------
==================================*/

body {
    overflow-x: hidden;
    color: #2c262d;
}

.layout {
    overflow: hidden;
}


/*---------- TYPOGRAPHY ----------*/

h1 {
    font-size: 60px;
    margin-bottom: 48px;
    line-height: 66px;
    font-weight: 300;
}

h2 {
    font-size: 50px;
    margin-bottom: 45px;
    font-weight: 400;
}

.layout--home h2 {
    margin-bottom: 25px;
}

h2.module_title {
    text-align: center;
}

@media only screen and (max-width: 767px) {
    h1 {
        font-size: 37.5px;
        line-height: 40px;
    }
    h2 {
        margin-bottom: 25px;
    }
}

h3 {
    font-size: 30px;
    margin: 24px 0 16px;
    color: #322b33;
}

h4 {
    font-size: 16px;
    margin-top: 24px;
    margin-bottom: 16px;
    font-weight: bold;
    text-transform: uppercase;
}

h5 {
    font-size: 12.8px;
    margin-bottom: 12.8px;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: #322b33;
}

a:hover {
    text-decoration: underline;
    color: #95258a;
}

p {
    line-height: 24px;
}

i {
    display: inline-block;
}

strong {
    font-weight: bold;
}

em {
    font-style: italic;
}

small {
    font-size: 14px;
    line-height: normal;
    display: inline-block;
}


/*------------ COMMON ------------*/

img {
    max-width: 100%;
}

input[type="checkbox"] {
    display: inline-block;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 10px;
    width: 10px;
    margin: 0 5px 0 0;
    border: 1px solid;
    border-color: #333333;
    vertical-align: baseline;
    cursor: pointer;
}

input[type="checkbox"]:checked {
    border: 3px solid;
}

input[type="checkbox"]:focus {
    outline: none;
}

input[type="radio"] {
    margin: 0 5px 0 0;
}

input[type="checkbox"]+label,
input[type="radio"]+label {
    display: inline-block;
    font-size: 16px;
    vertical-align: baseline;
    cursor: pointer;
}

input::-ms-clear {
    display: none;
}

iframe {
    width: 100%;
}


/*-----------------Custom Checkboxes----------------*/

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: 25px;
}


/*active state styles general*/

input[type="checkbox"]+label:before,
input[type="radio"]+label:before {
    content: "";
    width: 18px;
    height: 18px;
    background: #fff;
    margin-right: 20px;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    border: 1px solid #d7d7d7;
    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: 5px;
    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%;
}

input[type="checkbox"]:not(:checked)+label:after,
input[type="checkbox"]:checked+label:after,
input[type="radio"]:checked+label:after {
    width: 8px;
    height: 8px;
    background: #322b33;
}


/*active state activation*/

input[type="checkbox"]:not(:checked)+label:after {
    opacity: 0;
}

input[type="checkbox"]:checked+label:after {
    opacity: 1;
}


/*-----------------END Custom Checkboxes----------------*/


/*------- HACKS AND FIXES -------*/

.clearfix {
    *zoom: 1;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}


/*------------ LISTS ------------*/

.list {
    margin: 16px 0;
    padding-left: 32px;
    padding-left: 2rem;
    list-style-type: disc;
}

.list li {
    line-height: 24px;
    line-height: 1.5rem;
}

.list--ordered {
    list-style-type: decimal;
}

.list--alpha {
    list-style-type: lower-alpha;
}

.list--roman {
    list-style-type: lower-roman;
}

.list--inside {
    list-style-position: inside;
}


/*------- BUTTONS / INPUTS -------*/

.input,
.textarea,
.dropdown,
.upload {
    display: inline-block;
    max-width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 15px 20px;
    background: transparent;
    border: 1px solid #322b33;
    border-radius: 3px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: normal;
}

.submit,
.button {
    font-family: "Montserrat", sans-serif;
    border-radius: 3px;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 46px;
    overflow: hidden;
    padding: 0 30px;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    z-index: 0;
    border: 1px solid #666666;
    color: #666666;
    transition: all 0.45s ease;
    -webkit-transition: all 0.45s ease;
    -moz-transition: all 0.45s ease;
    -o-transition: all 0.45s ease;
    -ms-transition: all 0.45s ease;
    /* background: url('../design/button-bg.svg'); */
    background-color: #fff;
    background-image: linear-gradient(to right, #f2f2f2 0%, #666666 100%);
    background-position: 0 70px;
    background-repeat: no-repeat;
    background-size: 105% 105%;
}

.input::-ms-clear,
.textarea::-ms-clear,
.dropdown::-ms-clear,
.upload::-ms-clear,
.submit::-ms-clear,
.button::-ms-clear {
    display: none;
}

.submit,
.button,
.upload,
.dropdown {
    cursor: pointer;
}

.submit,
.button {
    text-transform: uppercase;
}

.textarea {
    width: 100%;
    resize: vertical;
}

.upload {
    line-height: 0;
}

.button:hover,
.submit:hover {
    color: #ffffff;
    text-decoration: none;
    background-position: 0 0;
    background-color: #fff;
}


.button--inverted,
.button--dark {
    color: #fff;
    background-position: 0 0;
    border: none;
    background-color: #666;
    background-image: linear-gradient(to right, #ffffff 0%, #666666 100%);
}

.button--inverted:hover,
.button--dark:hover {
    color: #fff;
    background-position: -400px 0;
    border: none;
    background-color: #666666;
}


.dropdown {
    padding: 13px 35px 13px 20px;
    background: transparent url('../design/q4-icon_chevron-down-white.png') no-repeat right 10px center;
    background-size: 14px;
    color: #322b33;
    font-weight: bold;
    height: 48px;
}

.dropdown::-ms-expand {
    display: none;
}


/*------------ TABLES ------------*/

.table {
    width: 100%;
    margin: 16px 0;
}

.table thead {
    background: #322b33;
    background: url('../design/button-bg.svg');
    background: linear-gradient(to right, #6b6b6b 0%, #322b33 100%);
    background: -webkit-linear-gradient(#6b6b6b, #322b33);
    background: -moz-linear-gradient(left, #6b6b6b 0%, #322b33 100%);
    background-image: -ms-linear-gradient(top, #6b6b6b 0%, #322b33 100%);
}

.table thead th {
    text-align: left;
}

.table tr {
    border-bottom: 1px solid #cccccc;
    font-size: 18px;
    font-weight: 300;
    color: #2c262d;
}

.table th,
.table td,
.table tr>.grid_col {
    margin: 0;
    padding: 15px 20px;
}

.table th {
    color: #fff;
    font-weight: 600;
}

.table--headless tr:nth-child(even) {
    background-color: transparent;
}

.table--headless tr:nth-child(odd) {
    background-color: #f6f6f6;
}

.table--headless tr:first-child {
    background: #322b33;
    background: linear-gradient(to right, #6b6b6b 0%, #322b33 100%);
    text-align: left;
}

.table--headless tr:first-child td {
    color: #fff;
}

@media only screen and (max-width: 480px) {
    .table--responsive thead {
        display: none;       
    }
    .table--responsive tbody {
        border-top: 2px solid #971e8c;
        border-bottom: 2px solid #971e8c;
    }
    .table--responsive td {
        display: block;
    }
    .table--responsive td:before {
        content: attr(data-heading) ": ";
        font-weight: bold;
    }
    .table tr {
        font-size: 16px;
    }
}


/*--------- SPECIAL BOXES --------*/

.code {
    margin: 32px 0;
    padding: 20px 15px;
    background: #f6f6f6;
    border-left: 3px solid rgba(0, 111, 186, 0.5);
    font-family: monospace, serif;
    font-size: 14px;
    font-size: 0.875rem;
    word-break: break-all;
    word-wrap: break-word;
    white-space: pre;
    overflow: hidden;
}

.code_comment {
    opacity: 0.5;
}

.quote {
    margin: 32px 0;
    padding: 20px 15px;
    background: #f6f6f6;
    border-left: 3px solid rgba(241, 175, 15, 0.5);
    font-size: 14px;
    font-size: 0.875rem;
    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";
}


/*==================================
 ----------- 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--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.33333%;
}

.grid_col--2-of-3,
.grid_col--4-of-6,
.grid_col--8-of-12 {
    width: 66.66667%;
}

.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-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.33333%;
}

.grid_col--push-2-of-3,
.grid_col--push-4-of-6,
.grid_col--push-8-of-12 {
    margin-left: 66.66667%;
}

.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-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.33333%;
}

.grid_col--pull-2-of-3,
.grid_col--pull-4-of-6,
.grid_col--pull-8-of-12 {
    margin-left: -66.66667%;
}

.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.66667%;
}

.grid_col--push-1-of-6 {
    margin-left: 16.66667%;
}

.grid_col--pull-1-of-6 {
    margin-left: -16.66667%;
}

.grid_col--5-of-6 {
    width: 83.33333%;
}

.grid_col--push-5-of-6 {
    margin-left: 83.33333%;
}

.grid_col--pull-5-of-6 {
    margin-left: -83.33333%;
}

.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.33333%;
}

.grid_col--push-1-of-12 {
    margin-left: 8.33333%;
}

.grid_col--pull-1-of-12 {
    margin-left: -8.33333%;
}

.grid_col--2-of-12 {
    width: 16.66667%;
}

.grid_col--push-2-of-12 {
    margin-left: 16.66667%;
}

.grid_col--pull-2-of-12 {
    margin-left: -16.66667%;
}

.grid_col--5-of-12 {
    width: 41.66667%;
}

.grid_col--push-5-of-12 {
    margin-left: 41.66667%;
}

.grid_col--pull-5-of-12 {
    margin-left: -41.66667%;
}

.grid_col--7-of-12 {
    width: 58.33333%;
}

.grid_col--push-7-of-12 {
    margin-left: 58.33333%;
}

.grid_col--pull-7-of-12 {
    margin-left: -58.33333%;
}

.grid_col--10-of-12 {
    width: 83.33333%;
}

.grid_col--push-10-of-12 {
    margin-left: 83.33333%;
}

.grid_col--pull-10-of-12 {
    margin-left: -83.33333%;
}

.grid_col--11-of-12 {
    width: 91.66667%;
}

.grid_col--push-11-of-12 {
    margin-left: 91.66667%;
}

.grid_col--pull-11-of-12 {
    margin-left: -91.66667%;
}

.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: 1024px) {
    .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.33333%;
    }
    .grid_col.grid_col--lg-2-of-3 {
        width: 66.66667%;
    }
    .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: 768px) {
    .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.33333%;
    }
    .grid_col.grid_col--lc-2-of-3 {
        width: 66.66667%;
    }
    .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: 480px) {
    .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.33333%;
    }
    .grid_col.grid_col--md-2-of-3 {
        width: 66.66667%;
    }
    .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.33333%;
    }
    .grid_col.grid_col--sm-2-of-3 {
        width: 66.66667%;
    }
    .grid_col.grid_col--sm-1-of-4 {
        width: 25%;
    }
    .grid_col.grid_col--sm-3-of-4 {
        width: 75%;
    }
}

.grid_col--centered {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.grid_col--d-first {
    float: left;
}

.grid_col--d-last {
    float: right;
}

.grid--no-gutter {
    margin-left: 0;
}

.grid--no-gutter .grid_col {
    padding-left: 0;
}

.grid--no-gutter .grid_col--span-all {
    margin-left: 0;
    width: 100%;
}

.grid--no-space .grid_col {
    margin-right: 0;
}

.grid_col--ab {
    vertical-align: bottom;
}

.grid_col--am {
    vertical-align: middle;
}


/*==================================
 --------- UTILITY CLASSES --------
==================================*/

.hidden {
    display: none !important;
}
.module-committee .hidden-custom {
    display: none;
}

.disabled {
    opacity: 0.1;
    border-color: #333333;
    color: #333333;
    transition: none;
    pointer-events: none;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.inline {
    display: inline;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.vtop {
    vertical-align: top;
}

.vmiddle {
    vertical-align: middle;
}

.vbottom {
    vertical-align: bottom;
}

.right {
    float: right;
}

.left {
    float: left;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-justify {
    text-align: justify;
}

.uppercase {
    text-transform: uppercase;
}

.lowercase {
    text-transform: lowercase;
}

.background--cover {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.background--brand {
    background: #322b33;
    background: linear-gradient(to right, #6b6b6b 0%, #322b33 100%)
}

.background--alt-brand {
    background-color: #95258a;
}

.background--dark {
    background-color: #2c262d;
}

.background--light {
    background-color: #fff;
}

.background--grey {
    background-color: #f6f6f6;
}

.background--success {
    background-color: #23a217;
}

.background--error {
    background-color: #b72121;
}

.color--brand {
    color: #652e88;
}

.color--dark {
    color: #2c262d;
}

.color--grey {
    color: #f6f6f6;
}

.color--success {
    color: #23a217;
}

.color--error {
    color: #b72121;
}

.dark {
    color: #fff;
}

.dark a {
    color: #fff;
}

.module--thin {
    padding-top: 35px;
    padding-bottom: 35px;
}

.module--thick {
    padding-top: 105px;
    padding-bottom: 105px;
}

.pane--content .module--partial-width .module_container--outer {
    max-width: 820px;
}

.pane--content .module.module--no-padding {
    padding-top: 0;
    padding-bottom: 0;
}

.pane--content .module.module--no-padding-bottom {
    padding-bottom: 0;
}

.pane--content .module.module--no-padding-top {
    padding-top: 0;
}


/*==================================
 --------- ACCESSIBILITY ----------
==================================*/

*:focus {
    outline: none;
}

a:focus {
    text-decoration: underline !important;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

#maincontent:focus {
    outline: 0px;
}


/*---------- Javascript ----------*/

.js--loading:after {
    position: relative;
    left: 50%;
    display: inline-block;
    margin: 16px 0 16px -25px;
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\eb27";
    font-size: 50px;
    font-size: 3.125rem;
    animation: spin 0.8s infinite linear;
    color: #322b33;
}

.js--hidden {
    display: none;
}

.js--visible {
    display: block;
}

.js--disabled {
    opacity: 0.1;
    border-color: #333333;
    color: #333333;
    transition: none;
    pointer-events: none;
}

.js--invalid input[type="text"],
.js--invalid select {
    border: 1px solid #b72121 !important;
}

.js--invalid input[type="checkbox"] {
    border-color: #b72121 !important;
}


/*==================================
 ----------- MODULE CSS -----------
==================================*/


/*-------- All Module CSS --------*/

.module_header,
.module_back-to-top,
.module_anchor-target,
.module_file-size,
.module_file-type,
.module_file-text,
.module_view-all-link,
.module_more {
    display: none;
}

.module_nav,
.module_headline,
.module_location,
.module_speakers,
.module_links,
.module_body,
.module_add-to-calendar,
.module_options,
.module_not-found {
    margin-bottom: 15px;
}
.module_location{
    line-height: 20px;
}
.module_error-container {
    margin-bottom: 30px;
    color: #b72121;
}

.module_add-to-calendar-reveal {
    color: #322b33;
    cursor: pointer;
}

.dark .module_add-to-calendar-reveal,
.dark .module_add-to-calendar-reveal:hover {
    color: #ffffff;
}

.module_add-to-calendar-reveal:hover {
    color: #662e88;
    text-decoration: none;
}

.module_add-to-calendar-reveal:hover .module_link-text {
    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;
    font-size: 0.875rem;
    text-align: center;
}

.fancybox-container .module_add-to-calendar-list {
    padding: 70px;
}

.module_add-to-calendar-item {
    display: inline-block;
    margin: 0 10px;
}

.module_add-to-calendar-item--ics {
    display: none;
}

.module_add-to-calendar-link {
    font-size: 24px;
    font-size: 1.5rem;
}

.module_add-to-calendar.js--hidden {
    display: none;
}

.module_actions,
.module_pager {
    margin-top: 20px;
    display: inline-block;
}

.module_actions.js--hidden {
    display: none;
}

.module_date-time {
    margin-bottom: 5px;
    font-size: 14px;
}

.module_error-container {
    display: block;
}

.module_error-container ul {
    padding-left: 18px;
    padding-left: 1.125rem;
    list-style-type: disc;
    text-align: left;
}

.module_error-container ul>li {
    line-height: 24px;
    line-height: 1.5rem;
}

.module_error-container>br {
    display: none;
}

.module_error-container>span {
    display: block;
    line-height: 24px;
    line-height: 1.5rem;
}

.module_error-container>span:before {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ec6b";
    margin-right: 5px;
}

.module_headline {
    font-size: 24px;
    font-weight: 400;
    line-height: 25px;
}

.module_headline a:hover {
    color: #652e88;
}

.dark .module_headline a:hover {
    color: #ffffff;
}

.module_image {
    display: inline-block;
    max-width: 30%;
    margin-bottom: 16px;
    margin-bottom: 1rem;
}

.module_image--right {
    float: right;
    margin-left: 32px;
    margin-left: 2rem;
}

.module_image--left {
    float: left;
    margin-right: 32px;
    margin-right: 2rem;
}

.module_introduction {
    margin-bottom: 35px;
}

.module_item {
    padding: 30px 0 10px;
}

.module_item~.module_item {
    border-top: 1px solid #d7d7d7;
}

.module_label {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 14px;
    font-size: 0.875rem;
}

.module_label+.module_required {
    font-size: 14px;
    font-size: 0.875rem;
}

.module_links>*,
.module_links li,
.module_links .module_presentation {
    display: inline;
}

.module_link {
    display: inline-block;
    margin: 0 15px 5px 0;
    font-size: 14px;
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.75px;
}

.module-mashup-sl .module_link {
    font-size: 18px;
    font-weight: 400;
    font-family: "Source Sans Pro", sans-serif;
    text-transform: capitalize;
    letter-spacing: normal;
    margin-bottom: 10px;
}

a.module_link:hover,
a.module_link:focus {
    color: #662e88;
    text-decoration: none !important;
}

a.module_link:hover .module_link-text,
a.module_link:focus .module_link-text {
    text-decoration: underline !important;
}

.dark a.module_link:hover {
    color: #ffffff;
}

.module_link i,
.module_link:before {
    display: none;
    padding-right: 2px;
}

.module_link:after{
    content: "\edbe";
    vertical-align: middle;
    font-family: 'q4-icons';
    padding-left: 8px;
    padding-top: 0px;
    font-size: 11px;
    font-weight: bold;
}
.module_link>i:before {
    display: block;
}

.module_link[style="DISPLAY:block;"],
.module_link[style="display: block;"] {
    display: inline-block !important;
}

.module_loader {
    display: inline-block;
    animation: spin 1s linear infinite;
}

.module_message {
    display: block;
    margin: 16px 0;
}

.module_message[style$="hidden;"],
.module_message:empty {
    display: none;
}

.module_message--success {
    color: #23a217;
}

.module_message--success:before {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ed71";
    margin-right: 8px;
    margin-right: 0.5rem;
}

.module_message--error {
    color: #b72121;
}

.module_message--error:before {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ed4f";
    margin-right: 8px;
    margin-right: 0.5rem;
}

.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 #006fba;
    color: #333333;
    font-weight: normal;
}

.module_nav-link.selected,
.module_nav-link.selected:visited,
.module_nav .ModuleYearLink.selected,
.module_nav .ModuleYearLink.selected:visited,
.module_nav-link:visited.selected,
.module_nav-link:visited.selected:visited,
.module_nav .ModuleYearLink:visited.selected,
.module_nav .ModuleYearLink:visited.selected:visited {
    background-color: #006fba;
    color: #fff;
}

@media only screen and (max-width: 480px) {
    .module_nav-link,
    .module_nav .ModuleYearLink,
    .module_nav-link:visited,
    .module_nav .ModuleYearLink:visited {
        margin-bottom: 10px;
    }
}

.module_options-label,
.module_options-select {
    margin-right: 10px;
}

@media only screen and (max-width: 767px) {
    .module_options-label,
    .module_options-select {
        display: block;
        margin-bottom: 10px;
    }
    .module_link:after {
        padding-left: 5px;
    }
}

@media only screen and (max-width: 480px) {
    .module_options-select,
    .module_options-submit {
        display: block;
        margin-bottom: 10px;
    }
}

.module_pager a {
    color: #333333;
    font-weight: 600;
    padding-left: 5px;
}

.module_pager a[href] {
    color: #95258a;
}

.module_reminder .module_input.module_reminder-period,
.module_reminder .module_input.module_reminder-email {
    margin-right: 10px;
}

.module_reminder.js--reminded {
    display: none;
}

.module_required,
.module_required--custom {
    color: #b72121;
}

.module_required-text {
    color: #333333;
}

.module_rss {
    float: right;
    margin-top: 12px;
}

.module_speakers li {
    margin-bottom: 5px;
}

.module_view-all-link {
    font-size: 14px;
    font-size: 0.875rem;
    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: 15px 20px;
    border: none;
    border-radius: 0;
    background-color: #ffffff;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 400;
    border: 1px solid #cccccc;
    border-radius: 3px;
}

.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: 16px;
    line-height: 1rem;
}

.module_input--brand[type="text"] {
    display: inline-block;
    width: auto;
    padding: 15px 20px;
    border: 2px solid #006fba;
    background: transparent;
}

.module_dropdown {
    background: #ffffff url('../design/svg/q4-icon_chevron-down-black.svg') no-repeat right 20px center;
    background-size: 14px 14px;
}

.module_dropdown::-ms-expand {
    display: none;
}

.module-details .module_date-time {
    margin-bottom: 15px;
}

.module-details .module_location label:not(:empty)::before {
    content: '\ea3c';
    font-family: 'q4-icons' !important;
    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;
    padding-right: 5px;
    color: #322b33;
}

.module-details .module_body iframe {
    max-width: 800px;
}


/*------- Captcha Component ------*/

.CaptchaContainer {
    display: none;
}

.CaptchaContainer table tr:nth-child(1) {
    display: none;
}

.CaptchaContainer table tr:nth-child(2) td {
    padding-bottom: 20px;
}

.CaptchaContainer table tr:nth-child(3) td {
    padding-bottom: 5px;
    font-size: 14px;
    font-size: 0.875rem;
}

.CaptchaContainer table tr:nth-child(3) td span {
    display: none !important;
}

.CaptchaContainer table tr:nth-child(4) span {
    display: none !important;
}

.CaptchaContainer table tr td {
    padding-right: 10px;
}

@media only screen and (max-width: 768px) {
    .CaptchaContainer table tr td {
        padding-right: 0;
    }
}

.CaptchaContainer input[type="text"] {
    appearance: none;
    -webkit-appearance: none;
    display: block;
    max-width: none;
    padding: 15px 20px;
    border: none;
    border-radius: 3px;
    border: 1px solid #cccccc;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 300;
}

.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;
    margin-bottom: 0.75rem;
}

.module-calculator_input label {
    display: inline-block;
    font-size: 14px;
    font-size: 0.875rem;
    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 #006fba;
        border-bottom: 2px solid #006fba;
    }
    .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;
    font-weight: 600;
    background: #322b33;
    background: linear-gradient(to right, #6b6b6b 0%, #322b33 100%);
    color: #ffffff;
}

.module-committee .module_item {
    padding: 0;
}

.module-committee .module_item~.module_item {
    border-bottom: 1px solid #cccccc;
}

.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: "\edba";
}

.module-committee_custom-role {
    margin-left: 5px;
}

.module-committee_bio {
    padding: 0 15px 20px;
    text-align: left;
}

.module-committee_bio i {
    position: relative;
    padding-left: 20px;
    margin: 5px 0;
}

.module-committee_bio i::before {
    position: absolute;
    left: 0;
    top: -1px;
}

.module-committee_bio p {
    margin: 0;
}
.module-committee .module-committee_custom-title {
    margin-top: 3px;
}
.module-committee_bio p:not(:last-of-type) {
    margin-bottom: 16px;
    margin-bottom: 1rem;
}

.module-committee_legend-container {
    padding: 20px 15px;
}

.module-committee_legend {
    display: inline-block;
    margin-right: 30px;
}

.module-committee_legend i {
    margin-right: 5px;
}

.module_container--tablet .grid-no-gutter>.grid_col:first-child+.grid_col {
    text-align: right;
}

.module_container--tablet .module_header i:before {
    font-weight: bold;
}

.module_container--tablet>div~div {
    margin-top: 20px;
}

.module-committee .module_container--tablet .module_item {
    border: 1px solid #cccccc;
    border-top: 0;
}


/*----- Download List Module -----*/

.module-downloads_title {
    padding-right: 30px;
    position: relative;
}

.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-link {
    display: inline-block;
    margin: 0;
}

.module_link.module-downloads_title-link:after {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e903";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    right: 0;
    font-size: 25px;
}


/*--------- Event Module ---------*/

.module-event .module_location,
.module-event .module_speakers h4,
.module-event .module_body {
    display: none;
}

.module-event-latest,
.PageOverview .module-slideshow,
.module-event-latest h2,
.PageOverview .module-slideshow h2 {
    text-align: left;
}

.module-event-latest .module_item {
    margin: 10px 0 30px;
    padding: 0;
    border: none;
    text-align: left;
}

.module_speaker > i {
    padding-right: 5px;
    color: #322b33;
}

.pane--content .module.module-presentation {
    padding-top: 0;
}

.module-presentation .module_nav {
    display: none;
}
.module_item-wrap {
    padding: 10px 0 30px 0;
}

@media screen and (min-width: 769px) {
    .module_item-wrap {
        width: 100% !important;
    }
    .module-event-and-presentation {
        position: relative;
    }

    .module-event-and-presentation .module-slideshow .button {
        position: absolute;
        bottom: 0;
    }
}

@media only screen and (max-width: 768px) {
    .module-event-latest .module_item:first-child {
        width: 100%;
    }
}

.module-event-latest .module_date-time,
.module-event .module_date-time {
    margin-bottom: 15px;
    font-weight: normal;
}

.module-event-latest .module_date-text {
    padding-right: 5px;
}

.module-event-latest .module_links {
    margin: 0;
}

.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-calendar {
    display: table;
    width: 100%;
}

.module-event-calendar_calendar-container,
.module-event-calendar_event-container {
    display: table-cell;
    width: 50%;
    text-align: center;
    vertical-align: middle;
}

.module-event-calendar_calendar-container {
    padding-right: 20px;
}

.module-event-calendar_event-container {
    padding: 50px;
    background-color: #f6f6f6;
    text-align: left;
}

.module-event-calendar_splash {
    text-align: center;
}

.module-event-calendar_splash i {
    font-size: 40px;
    font-size: 2.5rem;
    color: #322b33;
}

.module-event-calendar_splash p {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 19.2px;
    line-height: 1.2rem;
}

.module-event-calendar_controls {
    padding: 20px 15px;
    background: #322b33;
    background: linear-gradient(to right, #6b6b6b 0%, #322b33 100%);
    font-weight: 600;
    color: #fff;
    font-size: 20px;
}

.module-event-calendar_previous-month,
.module-event-calendar_month,
.module-event-calendar_next-month {
    display: inline-block;
}

.module-event-calendar_previous-month,
.module-event-calendar_next-month {
    cursor: pointer;
}

.module-event-calendar_previous-month {
    float: left;
}

.module-event-calendar_next-month {
    float: right;
}

.module-event-calendar_day-container {
    border-bottom: 1px solid #322b33;
}

.module-event-calendar_day {
    position: relative;
    width: 14.285%;
    margin: 0;
    padding: 8px 0 25px;
    border-top: 1px solid #322b33;
    border-left: 1px solid #322b33;
}

.module-event-calendar_day.calendar-dow-6 {
    border-right: 1px solid #322b33;
}

.module-event-calendar_day--name {
    padding: 15px 0 10px;
    border: none;
}

.module-event-calendar_day--adjacent-month {
    color: rgba(51, 51, 51, 0.3);
}

.module-event-calendar_day--today {
    background: #f6f6f6;
}

.module-event-calendar_day--event {
    cursor: pointer;
}

.module-event-calendar_day--event:after {
    content: "";
    position: absolute;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: block;
    height: 4px;
    background-color: #322b33;
}

.module-event-calendar_day--selected {
    background-color: #322b33;
    color: #fff;
}

.module-event-calendar_day--selected:after {
    background-color: #fff;
}

.module-event-calendar .module_add-to-calendar {
    float: left;
}

@media only screen and (max-width: 480px) {
    .module-event-calendar_day {
        display: inline-block;
    }
    .module-event-calendar_event-container {
        padding: 15px;
    }
}

.module-event-calendar .module_item {
    padding: 20px 0 0 0;
}

.module-event-calendar .module_date-time,
.module-event-calendar .module_headline {
    margin-bottom: 20px;
}

.module-event-calendar .module_add-to-calendar {
    margin: 0;
}

@media only screen and (max-width: 768px) {
    .module-event-calendar {
        display: block;
    }
    .module-event-calendar_calendar-container,
    .module-event-calendar_event-container {
        display: block;
        width: 100%;
    }
    .module-event-calendar_calendar-container {
        padding-right: 0;
    }
    .module-event-calendar_event-container {
        margin-top: 20px;
    }
}

.module-event .module_link[href$=".mp3"] i:before,
.module-event .module_link[href$=".wmv"] i:before,
.module-event-details .module_link[href$=".mp3"] i:before,
.module-event-details .module_link[href$=".wmv"] i:before,
.module-event-latest .module_link[href$=".mp3"] i:before,
.module-event-latest .module_link[href$=".wmv"] i:before,
.module-event-upcoming .module_link[href$=".mp3"] i:before,
.module-event-upcoming .module_link[href$=".wmv"] i:before,
.module-event-archive .module_link[href$=".mp3"] i:before,
.module-event-archive .module_link[href$=".wmv"] i:before,
.module-event-calendar .module_link[href$=".mp3"] i:before,
.module-event-calendar .module_link[href$=".wmv"] i:before {
    content: "\e952";
}

.module-event .module_link[href$=".xls"] i:before,
.module-event .module_link[href$=".csv"] i:before,
.module-event-details .module_link[href$=".xls"] i:before,
.module-event-details .module_link[href$=".csv"] i:before,
.module-event-latest .module_link[href$=".xls"] i:before,
.module-event-latest .module_link[href$=".csv"] i:before,
.module-event-upcoming .module_link[href$=".xls"] i:before,
.module-event-upcoming .module_link[href$=".csv"] i:before,
.module-event-archive .module_link[href$=".xls"] i:before,
.module-event-archive .module_link[href$=".csv"] i:before,
.module-event-calendar .module_link[href$=".xls"] i:before,
.module-event-calendar .module_link[href$=".csv"] i:before {
    content: "\eeae";
}

.module-event .module_link[href$=".mp4"] i:before,
.module-event .module_link[href$=".flv"] i:before,
.module-event .module_link[href$=".avi"] i:before,
.module-event-details .module_link[href$=".mp4"] i:before,
.module-event-details .module_link[href$=".flv"] i:before,
.module-event-details .module_link[href$=".avi"] i:before,
.module-event-latest .module_link[href$=".mp4"] i:before,
.module-event-latest .module_link[href$=".flv"] i:before,
.module-event-latest .module_link[href$=".avi"] i:before,
.module-event-upcoming .module_link[href$=".mp4"] i:before,
.module-event-upcoming .module_link[href$=".flv"] i:before,
.module-event-upcoming .module_link[href$=".avi"] i:before,
.module-event-archive .module_link[href$=".mp4"] i:before,
.module-event-archive .module_link[href$=".flv"] i:before,
.module-event-archive .module_link[href$=".avi"] i:before,
.module-event-calendar .module_link[href$=".mp4"] i:before,
.module-event-calendar .module_link[href$=".flv"] i:before,
.module-event-calendar .module_link[href$=".avi"] i:before {
    content: "\e95e";
}

.module-event .module_link[href$=".html"]:not(.module_webcast-link) i:before,
.module-event .module_link[href$=".aspx"]:not(.module_webcast-link) i:before,
.module-event .module_link[href$=".htm"]:not(.module_webcast-link) i:before,
.module-event .module_link[href$=".com"]:not(.module_webcast-link) i:before,
.module-event-details .module_link[href$=".html"]:not(.module_webcast-link) i:before,
.module-event-details .module_link[href$=".aspx"]:not(.module_webcast-link) i:before,
.module-event-details .module_link[href$=".htm"]:not(.module_webcast-link) i:before,
.module-event-details .module_link[href$=".com"]:not(.module_webcast-link) i:before,
.module-event-latest .module_link[href$=".html"]:not(.module_webcast-link) i:before,
.module-event-latest .module_link[href$=".aspx"]:not(.module_webcast-link) i:before,
.module-event-latest .module_link[href$=".htm"]:not(.module_webcast-link) i:before,
.module-event-latest .module_link[href$=".com"]:not(.module_webcast-link) i:before,
.module-event-upcoming .module_link[href$=".html"]:not(.module_webcast-link) i:before,
.module-event-upcoming .module_link[href$=".aspx"]:not(.module_webcast-link) i:before,
.module-event-upcoming .module_link[href$=".htm"]:not(.module_webcast-link) i:before,
.module-event-upcoming .module_link[href$=".com"]:not(.module_webcast-link) i:before,
.module-event-archive .module_link[href$=".html"]:not(.module_webcast-link) i:before,
.module-event-archive .module_link[href$=".aspx"]:not(.module_webcast-link) i:before,
.module-event-archive .module_link[href$=".htm"]:not(.module_webcast-link) i:before,
.module-event-archive .module_link[href$=".com"]:not(.module_webcast-link) i:before,
.module-event-calendar .module_link[href$=".html"]:not(.module_webcast-link) i:before,
.module-event-calendar .module_link[href$=".aspx"]:not(.module_webcast-link) i:before,
.module-event-calendar .module_link[href$=".htm"]:not(.module_webcast-link) i:before,
.module-event-calendar .module_link[href$=".com"]:not(.module_webcast-link) i:before {
    content: "\eecd";
}

.module-event-archive .module_financials .module_link.module_financial-link:before {
    font-family: 'q4-icons' !important;
    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;
}

.module-event-archive .module_financials .module_link.module_financial-link:before {
    content: "\eecd";
}

.module-event-archive .module_financials a[href*=".pdf"].module_link.module_financial-link:before,
.module-event-archive .module_financials a[href*=".PDF"].module_link.module_financial-link:before {
    content: "\e900";
}

.module-event-archive .module_financials .module_link.module_financial-link.webcast:before {
    content: "\e989";
}


/*---------- FAQ Module ----------*/

.module-faq_question {
    margin-top: 0;
    cursor: pointer;
    background: #322b33;
    background: linear-gradient(to right, #6b6b6b 0%, #322b33 100%);
    color: #ffffff;
    cursor: pointer;
    font-size: 20px;
    margin: 0;
    padding: 20px 40px 20px 20px;
    position: relative;
}

.js--active .module-faq_question {
    background: #6b6b6b;
    background: linear-gradient(to left, #6b6b6b 0%, #322b33 100%);
}

.module-faq_question:after {
    content: "\edc2";
    font-family: "q4-icons";
    font-size: 15px;
    position: absolute;
    right: 20px;
    top: 23px;
}

.js--active .module-faq_question:after {
    content: "\edba";
    font-family: "q4-icons";
}

.module-faq_answer {
    border: 1px solid #cccccc;
    padding: 20px;
    border-top: 0;
}

.module-faq .module_item~.module_item {
    border: 0;
    padding-top: 20px;
}

.module-faq_answer p {
    margin: 0;
    padding: 0 0 16px;
}

.module-faq .toggle-all a:after {
    content: "Show all";
}

.module-faq .toggle-all.js--active a:after {
    content: "Hide all";
}

@media only screen and (max-width: 767px) {
    .module-faq_question {
        font-size: 14px;
    }
    .module-faq_question::after {
        font-size: 11px;
        top: 21px;
    }
}


/*--- Financial Report Modules ---*/

.module-financial-year .module_cover {
    margin-bottom: 15px;
}

.module-financial-year .module_cover img {
    display: inline-block;
    border: 1px solid #006fba;
}

.module-financial-year .module_item {
    padding: 0;
}

.module-financial-year .module_item~.module_item {
    border: none;
}

.module-financial-year .module_links {
    margin: 0;
}

.module-financial-year .module-financial_year {
    text-align: center;
}

.module-financial-quarter .module_item {
    padding: 0;
}

.module-financial-quarter .module_item~.module_item {
    border: none;
}

.module-financial-quarter .module_item.js--active h3:after {
    content: "\ed5e";
}

.module-financial-quarter .module_links {
    margin: 0;
    padding: 15px;
}

.module-financial-quarter .module_links>div {
    display: block;
}

.module-financial-quarter .module_link {
    margin-bottom: 10px;
    font-size: 16px;
    font-size: 1rem;
    font-weight: normal;
    text-transform: none;
}

.module-financial-quarter .module-financial_year-text {
    padding: 20px 15px;
    margin-bottom: 10px;
    background: #322b33;
    background: linear-gradient(to right, #6b6b6b 0%, #322b33 100%);
    color: #fff;
    font-size: 16px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
}

.module-financial-quarter .module-financial_year-text:after {
    float: right;
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ed5d";
}

.module-financial-table_header {
    background: #322b33;
    background: linear-gradient(to right, #6b6b6b 0%, #322b33 100%);
    color: #fff;
}

.module-financial-table_header-year-container {
    text-align: center;
    font-weight: 600;
    font-size: 20px;
}

.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-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: 8px;
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: normal;
}

.module-financial-table_item~.module_item {
    margin-right: 5px;
}

.module-financial-table_item--empty {
    opacity: 0.2;
}

.module-financial-table_body-category,
.module-financial-table_body-year a,
.module-financial-table_body-year span {
    font-size: 20px;
    font-weight: 300;
    color: #2c262d;
}

.module-financial-table_body-year a:hover {
    text-decoration: none;
    font-weight: bold;
    color: #8f2689;
}

.module-financial-table h2 {
    margin-bottom: 50px;
}

.pane--content .module-financial-table .module_container--outer {
    max-width: 930px;
}

.module-financial-table .module_bottom-links {
    padding-top: 50px;
}

.module-financial-table .module_bottom-links>div:first-child {
    padding-bottom: 15px;
}

.module-financial-table .module_bottom-links .module_link {
    margin-right: 0;
}

@media only screen and (max-width: 768px) {
    .module-financial-table_item {
        margin-right: 10px;
    }
}

@media only screen and (max-width: 767px) {
    .module-financial-table_item {
        margin: 0 4px;
    }
    .module-financial-table .slick-arrow {
        font-size: 14px;
    }
    .module-financial-table_header-year-container {
        font-size: 16px;
    }
    .module-financial-table_body-category,
    .module-financial-table_body-year a,
    .module-financial-table_body-year span {
        font-size: 14px;
        font-weight: 400;
    }
    .module-financial-table_body-year,
    .module-financial-table_body-category.grid_col {
        padding: 12px 10px;
    }
}

@media only screen and (max-width: 480px) {
    .module-financial-table_item {
        margin: 0 4px;
    }
}

.module-financial-table .slick-slider {
    display: inline-block;
    padding: 0;
}

.module-financial-table .slick-slide:focus {
    outline: none;
}

.module-financial-table .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    cursor: pointer;
    z-index: 10;
    font-size: 18px;
}

.module-financial-table .slick-arrow:before {
    font-weight: bold;
}

.module-financial-table .slick-prev {
    left: 10px;
}

.module-financial-table .slick-next {
    right: 10px;
}

.module-financial-table .slick-disabled {
    opacity: 0.1;
    cursor: default;
}


/* Latest Quarterly Result Widget */

.module-latest-quarter .module_item {
    margin: 50px 0;
    padding: 0;
}

.module-latest-quarter .module_item~.module_item {
    border: none;
}

.module-latest-quarter .module_links {
    margin: 0;
    border-left: 2px solid rgba(255, 255, 255, 0.5);
    text-align: left;
}

.module-latest-quarter .module_links>div {
    display: inline-block;
    text-align: center;
}

.module-latest-quarter .module_link {
    margin: 0;
}

.module-latest-quarter .module_link i {
    display: block;
    font-size: 55px;
    font-size: 3.4375rem;
}

.module-latest-quarter .module_link-text {
    display: inline-block;
    margin: 15px 0 0;
    font-size: 16px;
    font-size: 1rem;
    text-transform: none;
    font-weight: normal;
}

.module-latest-quarter .module-financial_type-text,
.module-latest-quarter .module-financial_year-text {
    display: inline-block;
    width: 100%;
}

.module-latest-quarter .module-financial_type-text {
    font-size: 55px;
    font-size: 3.4375rem;
    font-weight: normal;
}

.module-latest-quarter .module-financial_year-text {
    margin-top: 15px;
    font-size: 24px;
    font-size: 1.5rem;
}

.module-latest-quarter .grid_col {
    vertical-align: bottom;
}

@media only screen and (max-width: 1024px) {
    .module-latest-quarter .module_links {
        border-left: 0;
    }
    .module-latest-quarter .module_link {
        margin: 0 0 15px;
    }
    .module-latest-quarter .grid_col {
        vertical-align: middle;
    }
}

@media only screen and (max-width: 768px) {
    .module-latest-quarter .module_item>div:first-child {
        margin-bottom: 30px;
    }
}


/*------ Formbuilder Module ------*/

.module-form--custom .module_container--content {
    display: none;
}

.module-form--custom .module_container--content.js--visible {
    display: block;
}

.module-form .module_container--content {
    margin-left: -20px;
}

@media only screen and (max-width: 768px) {
    .module-form .module_container--content {
        margin-left: 0;
    }
}

.module-form .module_error-container li[style="visibility: hidden;"] {
    display: none;
}

.module-form .module_required {
    margin-left: 3px;
}

.module-form .module_container--captcha>div {
    margin: 0;
    padding: 0;
}

.MessageSent .module_container.module_container--inner 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: 8px;
    margin-right: 0.5rem;
}

.MessageSent .module_container.module_container--inner p {
    color: #23a217;
}

.module-form .module_container--captcha>div .ErrorMessage {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    font-size: 0.875rem;
    color: #b72121;
}

.module-form .module_container--captcha>div .ErrorMessage[style="visibility: hidden;"] {
    display: none;
}

.module-form_item {
    display: inline-block;
    width: 50%;
    margin-bottom: 20px;
    padding-left: 20px;
    vertical-align: top;
}

.module-form_item>label,
.module-form_item legend {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 14px;
    font-size: 0.875rem;
}

.module-form_item legend {
    float: left;
    margin-bottom: 15px;
    font-size: 16px;
    font-size: 1rem;
}

.module-form_item legend~ul {
    clear: both;
}

.module-form_item ul li:not(:last-of-type) {
    padding-bottom: 5px;
}

.module-form_item--document-request,
.module-form_item--are-you-an-investor {
    width: 100%;
}

@media only screen and (max-width: 768px) {
    .module-form_item {
        width: 100%;
        padding-left: 0;
    }
}

.module-form_error-text {
    color: #b72121;
}

.module-form_error-text[style="visibility:hidden;"] {
    display: none;
}

.module-form .CaptchaContainer {
    display: block;
}

.module-form .CaptchaContainer input[type="text"] {
    width: 100%;
}

.module-glossary .module_header {
    display: block;
}

.module-glossary .module_header table {
    width: 100%;
    table-layout: fixed;
}

.module-glossary .module_header table a {
    color: #333333;
    font-weight: normal;
}

.module-glossary .module_header table a[href] {
    color: #006fba;
}


/*---------- 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: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    font-size: 1rem;
    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: 8px;
    }
}

.module-job-details .grid_col {
    padding: 15px 20px;
}

.module-job-application_table {
    display: block;
    width: 100%;
    margin-left: -20px;
    font-size: 0;
}

.module-job-application_table tr {
    display: inline-block;
    width: 50%;
    margin-bottom: 20px;
    padding-left: 20px;
    vertical-align: top;
    font-size: 16px;
    font-size: 1rem;
}

.module-job-application_table tr:last-child {
    margin-bottom: 0;
}

.module-job-application_table tr.module-job-application_cover-letter-text,
.module-job-application_table tr.module-job-application_resume-text {
    width: 100%;
}

.module-job-application_table tr td {
    display: block;
    position: relative;
}

.module-job-application_table tr label {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 14px;
    font-size: 0.875rem;
}

@media only screen and (max-width: 768px) {
    .module-job-application_table {
        margin-left: 0;
    }
    .module-job-application_table tr {
        width: 100%;
        padding-left: 0;
    }
}

.module-job-application .module_required {
    font-size: 14px;
    font-size: 0.875rem;
}


/*----- Miscellaneous Modules ----*/

.module-script {
    display: none;
}

.module-slideshow_viewer {
    display: inline-block;
    width: 100%;
    max-width: 640px;
    position: relative;
    margin-top: 12px;
}

.module-slideshow_ratio iframe {
    position: absolute;
    height: 100%;
}

@media only screen and (max-width: 480px) {
    .module-slideshow_viewer {
        max-width: 100%;
        overflow: hidden;
    }
}

.module-slideshow_link-container {
    margin-bottom: 30px;
}

.module-slideshow_link {
    font-size: 24px;
    font-weight: 400;
    font-family: "Source Sans Pro", sans-serif;
    position: relative;
    padding-left: 35px;
}

.module-slideshow_link i {
    vertical-align: sub;
    position: absolute;
    left: 0;
    bottom: 0;
}

.module-slideshow iframe {
    width: 100%;
    max-width: 100%;
}

.module-rss p+h2 {
    margin: 40px 0 30px;
}

.module-rss .module_link i {
    display: inline-block;
}

.module-rss .module_link:after {
    display: none;
}


/*------ Navigation Modules ------*/

.nav_close {
    display: none;
}

.nav--main {
    text-align: right;
}

.nav--main li {
    display: inline-block;
}

.nav--main li a {
    display: block;
    padding: 50px 15px 30px;
    color: #333;
    font-weight: normal;
}

.nav--main li.selected a,
.nav--main li.expanded a,
.nav--main li a:hover,
.nav--main li a:focus {
    padding: 50px 15px 28px;
    border-bottom: 2px solid #0F5CA3;
    color: #0F5CA3;
    outline: none;
}

.nav--secondary {
    text-align: center;
    position: relative;
}

.nav--secondary .level1 {
    display: table;
    width: 100%;
    background: #ffffff;
}

.nav--secondary .level1>li {
    display: table-cell;
}

.nav--secondary a:hover {
    text-decoration: none;
}

.nav--secondary .level1>li:hover>a,
.nav--secondary .level1>li.selected>a,
.nav--secondary .level1>li.expanded>a {
    color: #95258a;
}

.nav--secondary .level1>li:hover>a:before,
.nav--secondary .level1>li.selected>a:before,
.nav--secondary .level1>li.expanded>a:before {
    background: #95258a none repeat scroll 0 0;
    bottom: -1px;
    content: "";
    height: 3px;
    left: 20px;
    position: absolute;
    right: 20px;
}

.nav--secondary .level1>li a {
    display: block;
    padding: 20px 10px;
    text-transform: uppercase;
    font-weight: 600;
    color: #2c262d;
    position: relative;
    letter-spacing: 0.6px;
}

.nav--secondary .level1>li a:focus {
    outline: none;
}

.nav--secondary .level2 {
    position: absolute;
    top: 100%;
    left: 10px;
    display: none;
    width: 100%;
    min-width: 200px;
    background: #ffffff;
    border-top: 1px solid #cccccc;
}

.nav--secondary .level2:after {
    background: #cccccc;
    bottom: 0px;
    content: "";
    height: 1px;
    position: absolute;
    left: -1000px;
    right: -1000px;
}

.nav--secondary .level2:before {
    background: #ffffff;
    bottom: 0;
    content: "";
    left: -1000px;
    position: absolute;
    right: -1000px;
    top: 0;
}

.nav--secondary .level2>li {
    text-align: center;
    display: inline-block;
}

.nav--secondary .level2>li a {
    padding: 20px;
    position: relative;
}

.nav--secondary .level2>li a:hover:before,
.nav--secondary .level2>li.selected>a:before {
    background: #95258a none repeat scroll 0 0;
    bottom: 1px;
    content: "";
    height: 3px;
    left: 20px;
    position: absolute;
    right: 20px;
}

.nav--secondary .level2>li a:hover,
.nav--secondary .level2>li a:focus {
    outline: none;
    color: #95258a;
}

.nav--secondary .level1>li:last-of-type ul li:nth-child(2) a {
    text-transform: none;
}
.nav--secondary .level1 > li.sfHover .level2,
.nav--secondary .level2 > li.sfHover .level3{
    display: block;
}
@media only screen and (max-width: 1024px) {
    .nav--secondary .level1>li:hover>a:before,
    .nav--secondary .level2>li a:hover:before{
        display: none;
    }
    .nav--secondary {
        text-align: left;
    }
    .nav--secondary li {
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }
    .nav--secondary li.has-children>a:after {
        float: right;
        font-family: "q4-icons";
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: "\edc2";
    }
    .nav--secondary li.js--expanded>a:after,
    .nav--secondary li.sfHover>a:after {
        /*content: "\edba";*/
    }
    .nav--secondary a {
        display: block;
        text-transform: uppercase;
        font-weight: normal;
    }
    .nav--secondary .level1>li {
        display: block;
    }
    .nav--secondary .level1>li.selected a,
    .nav--secondary .level1>li.expanded a {
        display: block;
    }
    .nav--secondary .level1>li.js--expanded a {
        display: inline-block;
    }
    .nav--secondary .level1>li.js--expanded .level2 {
        display: block;
    }
    .nav--secondary .level1>li>a {
        padding: 20px;
    }
    .nav--secondary .level2 {
        display: none;
        position: static;
    }
    .nav--secondary .level2>li {
        display: block;
    }
    .nav--secondary .level2>li.js--expanded .level3 {
        display: block;
    }
    .nav--secondary .level2>li>a {
        padding: 20px 20px 20px 48px;
        font-size: 16px;
        font-size: 1rem;
    }
    .nav--secondary .level3 {
        position: static;
        border: none;
    }
    .nav--secondary .level3>li {
        display: block;
    }
    .nav--secondary .level3>li>a {
        padding: 20px 20px 20px 72px;
        font-size: 16px;
        font-size: 1rem;
    }
    .nav--secondary .level1>li.selected a,
    .nav--secondary .level1>li.expanded a {
        display: inline-block;
    }
    .nav--secondary .level2>li a:hover:before,
    .nav--secondary .level2>li.selected>a:before {
        left: 10px;
        right: 10px;
    }
}

@media screen and (max-width: 765px) and (orientation: landscape) {
    .nav--secondary {
        padding-bottom: 85px;
    }
}

.nav--sitemap {
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 70px;
}

@media only screen and (max-width: 1024px) {
    .nav--sitemap {
        max-width: none;
        padding-left: 20px;
        padding-right: 20px;
    }
}

.nav--sitemap a {
    display: inline-block;
}

.nav--sitemap .level1>li:not(:last-of-type) {
    margin-bottom: 35px;
}

.nav--sitemap .level1>li>a,
.nav--sitemap .level1>li>a:visited {
    margin-bottom: 15px;
    font-size: 24px;
    font-size: 1.5rem;
    color: #222;
    text-transform: uppercase;
}

.nav--sitemap .level2>li,
.nav--sitemap .level3>li {
    padding: 5px 0;
}

.nav--sitemap .level2>li>a,
.nav--sitemap .level3>li>a {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    text-transform: uppercase;
}

.nav--sitemap .level2>li>a {
    margin-bottom: 5px;
}

.nav--sitemap .level3>li {
    padding-left: 15px;
}


/*-------- News Module CSS -------*/

.module-news-latest .module_item {
    margin: 10px 0 20px;
    padding: 0 0 0 20px;
    border: none;
    text-align: left;
}

@media only screen and (max-width: 768px) {
    .module-news-latest .module_item {
        width: 100%;
    }
}

.module-news-latest .module_date-time {
    margin-bottom: 15px;
    font-weight: normal;
    color: #333333;
}

.module-news-latest .module_headline-link:visited {
    display: inline-block;
}

.module-news-latest .module_links {
    margin: 0;
}

.module-news-latest .module_link {
    color: #322b33;
}

.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;
    padding-left: 2rem;
    list-style-type: disc;
}

.module-news-details ul li {
    line-height: 24px;
    line-height: 1.5rem;
}
.module-news-details img{
    float: none !important; 
}
.module-news .module_nav {
    display: none;
}

.module-news .module_date-time {
    margin-bottom: 15px;
}

.module-news-details h3 {
    font-size: 24px;
}

@media only screen and (max-width: 480px) {
    .module-news-details table {
        display: inline-block;
        overflow-y: hidden;
        overflow-x: scroll;
    }
}


/*------ Person List Module ------*/

.module-person_description,
.module-person_res-photo-container,
.module-person .module_comma {
    display: none;
}

.module-person .module_item {
    position: relative;
    padding: 0 0 20px 20px;
    border: none;
}

.module-person .module_item:hover .module-person_name-container {
    opacity: 1;
}

.module-person_photo-container img {
    width: 100%;
}

.module-person_name-container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 100%;
    opacity: 0;
    text-align: center;
}

.module-person_name-container h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    margin: 0;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.module-person_name-container a {
    color: #fff;
}

.module-person_name {
    display: block;
    font-size: 18px;
    font-size: 1.125rem;
    text-transform: uppercase;
}

.module-person_suffix,
.module-person_title {
    font-size: 14px;
}

.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;
}

.fancybox-container .module-person_name-container h3 {
    position: static;
    transform: none;
    -webkit-transform: none;
    -ms-transform: none;
    -o-transform: none;
}

.fancybox-container .module-person_name-container a {
    color: #333333;
}

.fancybox-container .module-person_photo-container {
    max-width: 30%;
    margin-right: 40px;
}

@media only screen and (max-width: 768px) {
    .fancybox-container .module-person_photo-container {
        margin-right: 15px;
        margin-bottom: 35px;
    }
}

@media only screen and (max-width: 480px) {
    .fancybox-container .module-person_photo-container {
        margin-right: 0;
        max-width: none;
    }
}

.fancybox-container .module-person_name {
    display: block;
    margin-bottom: 10px;
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 52px;
    line-height: 3.25rem;
    color: #006fba;
}

@media only screen and (max-width: 480px) {
    .fancybox-container .module-person_name {
        font-size: 24px;
        font-size: 1.5rem;
        line-height: 28px;
        line-height: 1.75rem;
    }
}

.fancybox-container .module-person_title {
    font-size: 24px;
    font-size: 1.5rem;
}

@media only screen and (max-width: 480px) {
    .fancybox-container .module-person_title {
        font-size: 18px;
        font-size: 1.125rem;
        line-height: 20px;
        line-height: 1.25rem;
    }
}

.fancybox-container .module-person_description-container {
    margin-top: 40px;
}

.fancybox-container .module-person_description {
    display: block;
}

.module-person-details .module_title {
    display: none;
}

.module-person-details .module_comma {
    display: none;
}

.module-person-details_photo-container,
.module-person-details_name-container {
    display: inline-block;
    vertical-align: middle;
}

.module-person-details_photo-container {
    max-width: 30%;
    margin-right: 40px;
}

@media only screen and (max-width: 768px) {
    .module-person-details_photo-container {
        margin-right: 15px;
        margin-bottom: 35px;
    }
}

@media only screen and (max-width: 480px) {
    .module-person-details_photo-container {
        margin-right: 0;
        max-width: none;
    }
}

.module-person-details_name {
    display: block;
    margin-bottom: 10px;
    font-size: 36px;
    font-size: 2.25rem;
    color: #006fba;
}

.module-person-details_title {
    display: block;
    font-size: 24px;
    font-size: 1.5rem;
}

.module-person-details_description-container {
    margin-top: 40px;
}

.module-presentation .module_body {
    display: none;
}


/*..........Module Person Acordion..........*/

.module-person.module-person--accordion .module-person_name-container {
    position: static;
    background: #322b33;
    background: linear-gradient(to right, #6b6b6b 0%, #322b33 100%);
    border-radius: 0;
    padding: 15px 45px 15px 20px;
    position: relative;
}

.module-person.module-person--accordion .js--active .module-person_name-container {
    background: #6b6b6b;
    background: linear-gradient(to left, #6b6b6b 0%, #322b33 100%);
}

.module-person.module-person--accordion .module-person_name-container {
    opacity: 1;
}

.module-person.module-person--accordion .module-person_name-container h3 {
    position: static;
    text-align: left;
    transform: none;
    -webkit-transform: none;
    -ms-transform: none;
    -o-transform: none;
    font-size: 20px;
}

.module-person.module-person--accordion .module-person_description {
    display: block;
}

.module-person.module-person--accordion .module-person_name-container .module-person_name,
.module-person.module-person--accordion .module-person_name-container h3 {
    color: #ffffff;
    padding: 0;
    cursor: pointer;
}

.module-person.module-person--accordion .module-person_name-container .module-person_name {
    display: block;
    font-weight: 600;
}

.module-person.module-person--accordion .module-person_name {
    display: inline-block;
    vertical-align: middle;
}

.module-person.module-person--accordion .module-person_name:after {
    font-family: "q4-icons";
    content: "\edc2";
    display: inline-block;
    vertical-align: top;
    padding-left: 10px;
    font-size: 15px;
    position: absolute;
    right: 20px;
    top: 38px;
}

.module-person.module-person--accordion .js--active .module-person_name:after {
    content: "\edba";
}

.module-person.module-person--accordion .module_item {
    padding: 13px 0;
}

.module-person.module-person--accordion .module-person_photo-container {
    float: left;
    padding: 16px 20px 0 0;
}

.module-person.module-person--accordion .module-person_photo-container img {
    max-width: 160px;
}

.module-person.module-person--accordion [role="tab"] {
    position: static;
}

.module-person.module-person--accordion .module-person_description-container {
    padding: 20px;
    border: 1px solid #cccccc;
    border-top: 0;
}

.module-person.module-person--accordion .module-person_description i::before {
    position: absolute;
    left: 0;
    top: 6px;
}

.module-person.module-person--accordion .module-person_description i {
    position: relative;
    padding-left: 25px;
    line-height: normal;
    padding: 5px 0px 5px 25px;
}

@media only screen and (max-width: 480px) {
    .module-person.module-person--accordion .module-person_photo-container img {
        margin-bottom: 5px;
    }
}

@media screen and (max-width: 400px) {
    .module-person.module-person--accordion .module-person_photo-container img {
        max-width: 100%;
    }
}


/*------ Q4 Preview Toolbar ------*/

body.PreviewBody {
    margin: 0;
    background-position: 0;
}

body.PreviewBody .PreviewToolBar {
    position: fixed;
    top: 100%;
    bottom: auto;
    width: 100%;
    margin: 0;
    padding: 35px 20px;
    border: 0;
    background: #222;
    font-size: 0;
    text-align: left;
    color: #fff;
    z-index: 100;
}

body.PreviewBody .PreviewToolBar.js--open {
    top: auto;
    bottom: 0;
}

body.PreviewBody .PreviewToolBar .PreviewTrigger {
    position: absolute;
    top: 0;
    left: 10px;
    padding: 20px;
    background: #222;
    transform: translate(0, -100%);
    -webkit-transform: translate(0, -100%);
    -ms-transform: translate(0, -100%);
    -o-transform: translate(0, -100%);
    font-size: 24px;
    font-size: 1.5rem;
    cursor: pointer;
}

body.PreviewBody .PreviewToolBar .PreviewTrigger.js--active i:before {
    content: "\ed6d";
}

body.PreviewBody .PreviewToolBar .PreviewFloatLeft,
body.PreviewBody .PreviewToolBar .PreviewDateControls {
    display: inline-block;
    vertical-align: middle;
}

body.PreviewBody .PreviewToolBar .PreviewFloatLeft:before,
body.PreviewBody .PreviewToolBar .PreviewDateControls:before {
    font-size: 16px;
    font-size: 1rem;
    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: "Open Sans", sans-serif !important;
    font-weight: 300;
    font-size: 14px;
    font-size: 0.875rem;
    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: #006fba;
    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: relative;
    text-align: right;
}

.module-search_input[type="text"] {
    display: inline-block;
    max-width: 275px;
    background-color: #f1f4f5;
    border: 0 none;
    font-size: 12px;
    height: 36px;
    line-height: 20px;
    outline: 0 none;
    padding: 0 20px;
    font-family: "Montserrat", sans-serif;
    color: #262626;
    border-radius: 0;
}

.module-search_button {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 15px;
    height: 15px;
    padding: 0;
    border: 0;
    cursor: pointer;
    font-family: "q4-icons";
    background: transparent;
}

.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;
}

.module-search-result_description p {
    display: inline-block;
}


/*-------- SEC Module CSS --------*/

.module-sec .module_header {
    display: block;
    background: #322b33;
    background: linear-gradient(to right, #6b6b6b 0%, #322b33 100%);
}

.module-sec .module_header-text {
    padding: 20px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

.module-sec .module_item {
    padding: 0;
}

.module-sec .module_item .grid_col {
    vertical-align: middle;
    padding: 15px 20px;
    font-weight: 300;
    font-size: 18px;
}

.module-sec .module_item .module-sec_filing {
    font-weight: bold;
}

@media only screen and (max-width: 768px) {
    .module-sec .module_header {
        display: none;
    }
    .module-sec .module_header+.module_item {
        border-top: 2px solid #662e88;
    }
    .module-sec .module_item {
        padding: 15px 0;
    }
    .module-sec .module_item:first-child {
        border-top: 2px solid #662e88;
    }
    .module-sec .module_item:last-child {
        border-bottom: 2px solid #662e88;
    }
    .module-sec .module_item .grid_col {
        padding: 0 5px;
    }
    .module-sec .module_item+.module_footer {
        border-bottom: 2px solid #662e88;
    }
}

@media only screen and (max-width: 767px) {
    .module_options-label,
    .module_options-select,
    .module-sec .module_item .grid_col {
        font-size: 16px;
    }
    .module-sec_date,
    .module-sec_filer,
    .module-sec_filing,
    .module-sec_description {
        margin-bottom: 10px;
    }
}

.module-sec_download-list-item {
    display: inline-block;
    font-size: 24px;
    font-size: 1.5rem;
}

.module-sec_download-list-item:not(:last-of-type) {
    margin-right: 5px;
}

@media only screen and (max-width: 768px) {
    .module-sec_date,
    .module-sec_filer,
    .module-sec_filing,
    .module-sec_description {
        margin-bottom: 15px;
    }
}

.module-sec-details_date,
.module-sec-details_description {
    margin-bottom: 15px;
}

.module-sec-details_download-list-item {
    display: inline-block;
    font-size: 24px;
    font-size: 1.5rem;
}

.module-sec-details_download-list-item:not(:last-of-type) {
    margin-right: 5px;
}

.module-sec-details .module-details_title {
    font-weight: bold;
    font-size: 18px;
}

.module-sec-details_date,
.module-sec-details_description {
    font-size: 18px;
    font-weight: 300;
}


/*---- Accessibility Skip Link ---*/

.module-skip_link {
    position: absolute;
    top: -100px;
    left: 50%;
    padding: 15px 20px;
    background: transparent;
    color: white;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-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: -30px;
    background: #0F5CA3;
    outline: 0;
}

.module-skip_link:visited {
    color: #fff;
}


/*------ Stock Chart Widget ------*/

.module-stock-chart .highcharts-legend-item:first-child text {
    cursor: default !important;
}

.module-stock-chart .highcharts-navigator-handle {
    stroke: rgba(0, 0, 0, 0.05);
    fill: #f2f2f2;
    cursor: ew-resize;
}

.module-stock-chart .highcharts-range-input rect {
    stroke: #cccccc;
    fill: #f2f2f2;
}

.module-stock-chart .highcharts-button rect,
.module-stock-chart .highcharts-input-group rect {
    stroke-width: 0;
    fill: rgba(0, 0, 0, 0.05);
}

.module-stock-chart .highcharts-button text,
.module-stock-chart .highcharts-input-group text {
    fill: #333333;
}

.module-stock-chart .highcharts-navigator-handle-right rect,
.module-stock-chart .highcharts-navigator-handle-left rect {
    stroke-width: 0;
}

.module-stock-chart .highcharts-navigator-handle-right path,
.module-stock-chart .highcharts-navigator-handle-left path {
    stroke: #fff;
}

.module-stock-chart .highcharts-container>svg>.highcharts-button {
    display: none;
}


/*------ Stock Header Module -----*/

.module.module-stock-header {
    position: absolute;
    right: 20px;
    top: -20px;
    font-size: 12px;
    font-weight: 400;
    color: #585858;
}

.module-stock-header_stock-price:before {
    content: '$';
}

.module-stock-header_percent-change:before {
    content: '(';
}

.module-stock-header_percent-change .module-stock-header_indicator {
    display: none;
}

.module-stock-header_percent-change:after {
    content: ')';
}

.module-stock-header_volume {
    display: none;
}

.module-stock-header_volume:before {
    content: 'Volume ';
    font-weight: bold;
}

.module-stock-header_volume-text,
.module-stock-header_date {
    display: none;
}

.module-stock-header_description3 {
    display: none;
}

.module-stock-header_percent-change {
    display: none;
}

.module-stock-header_description1,
.module-stock-header_stock-price {
    padding-right: 10px;
}


/*------ Stock Quote Module ------*/

.module-stock .module_options {
    margin-bottom: 30px;
}

.module-stock_lookup-title {
    padding: 20px;
    font-size: 20px;
    color: #ffffff;
    background: #322b33;
    background: linear-gradient(to right, #6b6b6b 0%, #322b33 100%);
    margin: 0;
}

.module-stock_lookup-title .module-stock_indice {
    display: none;
}

.module-stock_label,
.module-stock_value {
    border-bottom: 1px solid rgba(34, 34, 34, 0.2);
}

.module-stock_label>span,
.module-stock_value>span {
    display: block;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 300;
}

.module-stock_label {
    font-weight: normal;
}

.module-stock_value .module-stock_price:before,
.module-stock_value .module-stock_high:before,
.module-stock_value .module-stock_low:before,
.module-stock_value .module-stock_open:before,
.module-stock_value .module-stock_close:before,
.module-stock_value .module-stock_week-low:before,
.module-stock_value .module-stock_week-high:before,
.module-stock_value .module-stock_previous-close:before {
    content: "$";
}

.module-stock_date {
    margin-top: 25px;
    font-size: 14px;
    font-style: italic;
    text-align: right;
    font-weight: 300;
}

.module-stock-historical .module_container--content>.grid_col:last-child {
    width: 75%;
}

.pane--content .module.module-stock-historical {
    padding-bottom: 0;
}

@media only screen and (max-width: 767px) {
    .module-stock_label>span,
    .module-stock_value>span {
        font-size: 16px;
    }
    .module-stock-historical .module_container--content>.grid_col:last-child {
        width: 50%;
    }
    .module-stock-historical .module_options-select,
    .module-stock-historical .module_options-submit,
    .module-stock-historical .button {
        width: 100%;
    }
}

.module-stock_date-text {
    margin-right: 15px;
}

.module-analyst-coverage table {
    margin-bottom: 30px;
}


/*- MailingList Subscribe Module -*/

.module-subscribe_table {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.module-subscribe_table tbody {
    width: 100%;
    display: block;
}

.module-subscribe_form {
    font-size: 0;
}

.module-subscribe_form tr {
    display: inline-block;
    width: 50%;
    margin-bottom: 20px;
    vertical-align: top;
    font-size: 16px;
    font-size: 1rem;
}

.module-subscribe_form tr:nth-child(even) {
    padding-left: 10px;
}

.module-subscribe_form tr:nth-child(odd) {
    padding-right: 10px;
}

.module-subscribe_form tr.module-subscribe_notes-text {
    margin: 0;
}

.module-subscribe_form tr.module-subscribe_notes-text,
.module-subscribe_form tr.module-subscribe_notes-input {
    display: block;
    width: 100%;
    padding: 0;
}

@media only screen and (max-width: 768px) {
    .module-subscribe_form tr {
        width: 100%;
    }
    .module-subscribe_form tr:nth-child(even) {
        padding-left: 0;
    }
    .module-subscribe_form tr:nth-child(odd) {
        padding-right: 0;
    }
}

.module-subscribe_form td {
    display: block;
}

.module-subscribe_form label {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 14px;
    font-size: 0.875rem;
}

.module-subscribe_mailing-list tr.module-subscribe_list-header td {
    padding-bottom: 15px;
}

.module-subscribe_mailing-list tr table td {
    padding-bottom: 10px;
}

.module-subscribe_mailing-list tr table tr:last-child td {
    padding-bottom: 0;
}

.module-subscribe .module_required {
    font-size: 14px;
    font-size: 0.875rem;
}

.module-subscribe .CaptchaContainer {
    width: 50%;
}

@media only screen and (max-width: 768px) {
    .module-subscribe .CaptchaContainer {
        width: 100%;
    }
}


/* MailingList Unsubscribe Module */

.module-unsubscribe_table {
    width: 50%;
}

@media only screen and (max-width: 768px) {
    .module-unsubscribe_table {
        width: 100%;
    }
}

.module-unsubscribe_table td {
    padding-right: 10px;
}

@media only screen and (max-width: 768px) {
    .module-unsubscribe_table td {
        padding-right: 0;
    }
}

.module-unsubscribe_table label {
    display: inline-block;
    font-size: 14px;
    font-size: 0.875rem;
    margin-bottom: 5px;
}

.module-unsubscribe_table .module_input[type="text"] {
    background-color: #fff;
}


/*==================================
 ----------- LAYOUT CSS -----------
==================================*/


/*------- iframe layout CSS ------*/

.layout--iframe .pane--content .module {
    padding: 35px 0;
}

.layout--iframe .pane--content .module_container--outer {
    max-width: none;
}


/*==================================
 ------------ BLANK CSS -----------
==================================*/


/*-------- Layout Specific -------*/

.layout--home .pane--content {
    text-align: center;
}


/*-------- Module Specific -------*/

.module-overview p {
    margin-bottom: 40px;
    font-size: 20px;
    line-height: 25px;
    font-weight: 300;
}

.module-overview_hidden {
    display: none;
}

.module-overview_hidden.js--revealed {
    display: block;
}

.module-overview_button:after {
    content: "Read More";
}

.module-overview_button.js--active:after {
    content: "Show Less";
}


/*--------- Pane Specific --------*/

.pane--header {
    position: relative;
    background-color: #fff;
    z-index: 10;
    padding-top: 30px;
    padding-bottom: 20px;
}

.pane--header .pane_inner,
.pane--banner .pane_inner {
    max-width: 1260px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
}

.layout--home .pane--banner .pane_inner {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    position: static;
}

.pane--banner {
    background-image: url('../design/banner/default-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 66% top;
    margin: 0;
    outline: medium none;
    position: relative;
    z-index: 1;
    height: 280px;
}

.PageReleases .pane--banner,
.Sectionreleases .pane--banner {
    background-image: url('../design/banner/IR_page_image_1.jpg');
}
.PageStockInfo .pane--banner,
.Sectionstock-info .pane--banner {
    background-image: url('../design/banner/IR_page_image_4.jpg');
    background-position: center top;
}
.PageFinancials .pane--banner,
.Sectionfinancials .pane--banner,
.Sectionsec-filings .pane--banner {
    background-image: url('../design/banner/IR_page_image_5.jpg');
    background-position: 75% 95%;
}
.PageEventsampPresentations .pane--banner,
.Sectionevents-and-presentations .pane--banner,
.Sectionevents-calendar .pane--banner {
    /* background-image: url('../design/banner/2-RBK752-16.9.jpg'); */
    background-position: 60% 40%;
}
.PageGovernance .pane--banner,
.Sectiongovernance .pane--banner,
.Sectionboard-of-directors .pane--banner {
    background-image: url('../design/banner/IR_page_image_7.jpg');
    background-position: center 80%;
}
.PageResources .pane--banner,
.Sectionresources .pane--banner,
.Sectionemail-alerts .pane--banner {
    /* background-image: url('../design/banner/1-RBK752-16.9.jpg'); */
    background-position: 75% 20%;
}

.pane--banner:before {
    background-color: #000000;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.38;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

.layout--home .pane--banner {
    height: inherit;
    height: auto;
}

.layout--home .pane--banner {
    background: #ffffff;
}

.layout--home .pane--banner:before {
    display: none;
}

@media only screen and (max-width: 1024px) {
    .pane--header .pane_inner {
        max-width: none;
        padding-left: 20px;
        padding-right: 20px;
    }
}

.pane--header .module,
.pane--header .nav {
    vertical-align: baseline;
}

.layout_toggle {
    display: none;
    font-size: 30px;
    position: relative;
    color: #971e8c;
}

.search_toggle {
    font-size: 30px;
    position: absolute;
    top: 0;
    right: 20px;
}

.js--search-mobile .search_toggle i:before {
    content: "\ed6d";
    color: #971e8c;
}

.layout_toggle i:focus {
    outline: none;
}

.js--mobile .layout_toggle i:before {
    content: "\ed6d";
}

.layout_toggle i {
    position: absolute;
    top: 15px;
    right: 20px;
}

.search_toggle {
    display: none;
}

@media only screen and (max-width: 1024px) {
    .pane--header {
        padding-top: 17px;
        padding-bottom: 17px;
    }
    .module.module-stock-header {
        background: #fff;
        border-top: 1px solid;
        left: 0;
        padding: 20px;
        position: absolute;
        right: 0;
        text-align: center;
        top: 43px;
        width: 100%;
        font-size: 14px;
    }
    .module-search {
        background: #fff;
        left: 0;
        padding-bottom: 60px;
        padding-top: 5px;
        position: absolute;
        right: 0;
        top: 95px;
        width: 100%;
        text-align: center;
    }
    .module-search .module_container--inner {
        display: inline-block;
        vertical-align: top;
        min-width: 230px;
        position: relative;
    }
    .module-stock-header,
    .module-search {
        display: none;
    }
    .search_toggle,
    .js--search-mobile .module-stock-header,
    .js--search-mobile .module-search {
        display: block;
    }
    .pane--header .module {
        vertical-align: middle;
    }
    .pane--header .module-logo img {
        margin-bottom: 0;
    }
    .layout_toggle {
        display: block;
    }
    .pane--header .nav {
        display: none;
    }
}

.pane--banner .pane_inner {
    position: relative;
}

@media only screen and (max-width: 1024px) {
    .pane--banner .pane_inner {
        max-width: none;
    }
}

.pane--banner h1 {
    margin: 0;
}

@media only screen and (max-width: 768px) {
    .pane--banner h1 {
        margin-bottom: 32px;
        margin-bottom: 2rem;
    }
}

@media only screen and (max-width: 767px) {
    .pane--header .module-logo img {
        max-width: 90px;
    }
    .search_toggle {
        top: -5px;
    }
    .module-logo * {
        vertical-align: middle;
    }
    .module.module-stock-header {
        top: 35px;
    }
    .module-search {
        top: 89px;
    }
}

.pane--navigation {
    border-bottom: 1px solid #cccccc;
}

.pane--navigation .pane_inner {
    max-width: 1000px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
}

.js_fixed-nav .pane--navigation {
    background: #ffffff;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 11;
}

.js_fixed-nav .layout_header {
    padding-bottom: 54px;
}

@media only screen and (max-width: 1024px) {
    .pane--navigation .pane_inner {
        max-width: none;
        padding-left: 20px;
        padding-right: 20px;
    }
    .js_fixed-nav .pane--navigation {
        position: static;
        display: block;
    }
    .js_fixed-nav .layout_header {
        padding-bottom: 0;
    }
    .pane--navigation,
    .js_fixed-nav .pane--navigation {
        display: none;
    }
    .js--mobile .pane--navigation,
    .js--mobile .js_fixed-nav .pane--navigation {
        display: block;
        height: 100% !important;
    }
}

@media only screen and (max-width: 1024px) {
    .pane--navigation .pane_inner {
        max-width: none;
    }
}

.pane--navigation .module-search {
    display: none;
}

.pane--content .module {
    padding-top: 70px;
    padding-bottom: 70px;
}

.pane--content .module_container--outer {
    max-width: 1260px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (max-width: 1024px) {
    .pane--content .module_container--outer {
        max-width: none;
        padding-left: 20px;
        padding-right: 20px;
    }
}

.pane--content .module-sitemap {
    padding-bottom: 35px;
}

.pane--footer2 {
    font-size: 14px;
}

.pane--footer .pane_inner,
.pane--footer2 .pane_inner {
    max-width: 1260px;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (max-width: 1024px) {
    .pane--footer .pane_inner {
        max-width: none;
        padding-left: 20px;
        padding-right: 20px;
    }
}

.pane--footer .module_title {
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 400;
}

.pane--footer .module_error-container {
    margin-bottom: 20px;
}

.pane--footer .module_error-container p {
    display: none;
}

.pane--footer .module_error-container li {
    line-height: 16px;
    line-height: 1rem;
}

.pane--footer .module_introduction {
    display: none;
}

.pane--footer .module-links {
    text-transform: uppercase;
}

.pane--footer .module-links li {
    line-height: 19.2px;
    line-height: 1.2rem;
}

.pane--footer .module-subscribe_email label,
.pane--footer .module-subscribe_list-header,
.pane--footer .module-subscribe_email .module_required,
.pane--footer .module-subscribe .CaptchaContainer {
    display: none;
}

.pane--footer .module-subscribe_form tbody {
    display: block;
}

.pane--footer .module-subscribe_form tr {
    width: 100%;
    margin: 0;
}

.pane--footer .module-subscribe_mailing-list {
    margin: 20px 0 10px;
}

.pane--footer .module-subscribe_list>td {
    padding: 0;
}

.pane--footer .module-subscribe p {
    padding-right: 35px;
    line-height: 19.2px;
    line-height: 1.2rem;
}

.pane--footer .module-subscribe input[type="checkbox"] {
    border-color: #fff;
}

.pane--footer .module-subscribe_mailing-list.js--revealed,
.pane--footer .module-subscribe .module_actions.js--revealed {
    display: block;
}

.pane--footer .module-contact li {
    line-height: 19.2px;
    line-height: 1.2rem;
}

.pane--credits {
    padding-bottom: 20px;
    text-align: center;
    color: #707070;
    font-size: 12px;
    font-size: 0.75rem;
}

.pane--credits a {
    color: #707070;
}
.pane--credits a:hover {
    text-decoration: underline;
    color: #95258a;
}
.pane--credits .pane_inner {
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (max-width: 1024px) {
    .pane--credits .pane_inner {
        max-width: none;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .pane--footer .module_title {
        font-size: 25px;
    }
}

.pane--credits .module {
    margin-bottom: 10px;
}


/*--------- Page Specific --------*/

.page--no-alternating .pane--content {
    padding: 35px 0;
}

.page--no-alternating .module {
    padding-top: 35px;
    padding-bottom: 35px;
}


/*..................Start Global Changes.....................*/

.q4-icon_spinner {
    color: #322b33;
}

.module-html-footer .footer_navigation a {
    color: #262626;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 25px;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
}

.module-html-footer .footer_navigation a:hover {
    text-decoration: underline;
    color: #95258a;
}

.module-html-footer .footer_navigation {
    padding-top: 40px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e2e2e2;
    text-align: left;
}

.module-html-footer .footer_navigation ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.module-html-footer .footer_navigation ul li {
    display: inline-block;
    margin-left: 30px;
}

.module-html-footer .footer_navigation ul li:first-child {
    margin: 0;
}

.module-html-footer .copy {
    float: right;
    position: static;
    color: #b9b9b9;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 20px;
    margin: 0;
    font-family: "Source Sans Pro", sans-serif;
}

@media only screen and (max-width: 380px) {
    .module-html-footer .copy {
        width: 100%;
        margin-top: 20px;
    }
}

.module-html-footer .footer_bottom {
    padding: 28px 0 20px;
}

.pane--footer {
    border-bottom: 1px solid #cccccc;
}

.pane--footer .pane_inner {
    padding-top: 70px;
    padding-bottom: 70px;
    border-top: 1px solid #cccccc;
}

.pane--footer .pane_inner {
    max-width: 1220px;
}

.module-footer-financial {
    text-align: center;
}

@media screen and (min-width: 621px) {
    .pane--footer .pane_inner > .grid {
        position: relative;
    }

    .module-footer-financial_button {
/*        width: 33.33333%;
        text-align: center;
        position: absolute;
        left: 0;
        padding-left: 20px;
        bottom: 0;*/
    }
}

.module-footer-financial .button {
    min-width: 142px;
}

.module-footer-financial i {
    font-size: 80px;
    color: #322b33;
    display: block;
    padding: 30px 0 40px;
}

.module-ir-contact {
    text-align: center;
}

.module-ir-contact p {
    margin: 0;
}

.module-ir-contact .module_container--inner>div:first-child {
    margin-bottom: 30px;
}

.module-subscribe--footer {
    position: relative;
    text-align: center;
}

.module-subscribe--footer .module_container--outer {
    border-left: 1px solid #cccccc;
    border-right: 1px solid #cccccc;
    margin: 0 auto;
    max-width: 540px;
    padding: 0 60px;
}

.module-subscribe--footer .module-subscribe_list table tr {
    display: inline-block;
    padding-right: 15px;
    vertical-align: top;
}

.pane--breadcrumb {
    display: none;
}

.module-subscribe--footer .module-subscribe_form tr:nth-child(2n+1) {
    padding-right: 0;
}

.module-subscribe--footer .module-subscribe_list {
    text-align: left;
}

.module-html-footer .footer_social {
    float: left;
    margin: 0;
}

.module-html-footer .footer_social li {
    padding-right: 10px;
    display: inline-block;
}

.module-html-footer .footer_social a {
    background-color: #b9b9b9;
    border-radius: 50%;
    color: #fff;
    display: block;
    height: 20px;
    position: relative;
    width: 20px;
}
.module-html-footer .footer_social a:hover {
    background-color: #95258a;
}
.module-html-footer .footer_social a:before {
    display: block;
    font-size: 12px;
    height: 20px;
    line-height: 20px;
    position: absolute;
    text-align: center;
    width: 20px;
}

@media only screen and (max-width: 1024px) {
    .pane--navigation .pane_inner {
        padding-left: 0;
        padding-right: 0;
    }
    .pane--breadcrumb {
        display: block;
        border-bottom: 1px solid #cccccc;
    }
    .pane--breadcrumb .module.module-page-title {
        position: static;
        color: #971e8c;
        text-align: center;
    }
    .pane--breadcrumb .module.module-page-title h1 {
        font-size: 16px;
        text-transform: uppercase;
        font-weight: bold;
        margin: 0;
        line-height: 18px;
        padding: 20px 0;
        display: inline-block;
        border-bottom: 2px solid;
    }
    .nav--secondary .level2:after,
    .nav--secondary .level2:before {
        display: none;
    }
    .nav--secondary .level2 {
        position: static;
    }
    .nav--secondary .level1 {
        text-align: center;
        display: block;
    }
    .nav--secondary .level1>li a {
        font-weight: 600;
    }
    .nav--secondary li.has-children>a:after {
        float: none;
        vertical-align: middle;
        font-weight: bold;
        font-size: 8px;
        padding-left: 4px;
        position: absolute;
        top: 14px;
    }
    .nav--secondary .level1>li:hover>a::before,
    .nav--secondary .level1>li.selected>a::before,
    .nav--secondary .level1>li.expanded>a::before {
        display: none;
    }
    .nav--secondary .level1 {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .nav--secondary li {
        border-top: none;
    }
    .nav--secondary .level1>li>a {
        padding: 10px;
    }
    .nav--secondary .level2 {
        border-top: none;
        background: #f5f5f5;
    }
    .nav--secondary .level2>li>a {
        font-size: 14px;
        padding: 12px 10px;
        display: inline-block;
    }
    .module-html-footer .footer_navigation ul {
        text-align: center;
    }
    .module-subscribe--footer .module_container--outer {
        padding: 0 20px;
    }
    .module-html-footer .footer_navigation ul li {
        margin-left: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .pane--content .module {
        padding-bottom: 40px;
        padding-top: 40px;
    }
    .submit,
    .button {
        font-size: 12px;
        padding: 0 30px;
        line-height: 40px;
    }
    .dropdown {
        padding: 10px 35px 10px 20px;
        height: 45px;
    }
    .module_options-select,
    .module_options-submit {
        font-size: 14px;
    }
    h2 {
        font-size: 37.5px;
        line-height: 32px;
    }
    .module_headline,
    .module-news-details h3 {
        font-size: 18px;
        line-height: 20px;
    }
    .module_link {
        font-size: 12px;
    }
    .module_headline {
        margin-bottom: 10px;
    }
    .module-html-footer .footer_navigation ul li {
        display: block;
        margin-left: 0;
    }
    .module-html-footer .footer_navigation ul {
        text-align: left;
    }
    .module-subscribe--footer .module_container--outer {
        padding: 0;
        border: 0;
        position: relative;
    }
    .module-subscribe--footer .module_container--outer:before {
        background: #cccccc;
        content: "";
        display: block;
        left: -20px;
        position: absolute;
        bottom: 0px;
        top: 0;
        width: 1px;
    }
    .module-subscribe--footer .module_container--outer:after {
        background: #cccccc;
        content: "";
        display: block;
        right: -20px;
        position: absolute;
        top: 0px;
        bottom: 0;
        width: 1px;
    }
    .pane--footer .pane_inner {
        padding-left: 0;
        padding-right: 0;
    }
}

@media only screen and (max-width: 620px) {
    .pane--footer .pane_inner {
        padding-left: 20px;
        padding-right: 20px;
    }
    .module-subscribe--footer .module_container--outer {
        padding: 35px 0 45px 0;
        border-left: 0;
        border-right: 0;
        position: relative;
        margin: 35px 0;
    }
    .module-subscribe--footer .module_container--outer:before {
        background: #cccccc;
        content: "";
        display: block;
        height: 1px;
        left: 50px;
        position: absolute;
        right: 50px;
        top: 0;
        bottom: auto;
        width: auto;
    }
    .module-subscribe--footer .module_container--outer:after {
        background: #cccccc;
        content: "";
        display: block;
        height: 1px;
        left: 50px;
        position: absolute;
        right: 50px;
        bottom: 0;
        top: auto;
        width: auto;
    }
    .module-footer-financial i {
        padding: 20px 0 30px;
    }
    .module-footer-financial.grid_col,
    .module-subscribe--footer.grid_col,
    .module-ir-contact.grid_col {
        width: 100%;
    }
    .module-subscribe--footer .module_actions {
        min-width: 205px;
    }
}


/*..................End Global Changes.....................*/


/*--------- Page Specific/Overview Changes--------*/


/*...Start Slider...*/

.module-overview-slider {
    height: 620px;
}

.pane--banner .module-mashup-sl .module_item {
    background-image: url("../design/images/default-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 620px;
    margin: 0;
    outline: medium none;
    position: relative;
}
.pane--banner .module-mashup-sl .module_item[data-slick-index="1"] {
    background-image: url("../design/banner/banner1-1106-web.jpg");
}
.pane--banner .module-mashup-sl .module_item[data-slick-index="2"] {
    /* background-image: url("../design/banner/banner2-1106-web.jpg"); */
    /* background-image: url('../design/banner/Pro-AV-3400-52G-40-cables.jpg'); */
    background-image: url('../design/banner/7-AX12-Office-2000.jpg');
}
.pane--banner .module-mashup-sl .module_item[data-slick-index="0"] {
    /*background-image: url("../design/banner/banner3-1106-web.jpg");*/
    /* background-image: url('../design/banner/Hero6.jpg'); */
    background-image: url('../design/banner/Orbi-WiFi-6-lifestyle-2.jpg');
}

.module-mashup-sl .module_item-wrapper {
    max-width: 1260px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 200px;
}

.PageOverview .pane--banner h1 {
    margin: 0 auto;
    max-width: 1260px;
    padding: 0 20px;
}

.pane--banner .module-page-title {
    display: none;
}

.PageOverview .pane--banner .module-page-title {
    display: block;
}

.module-learn-more-button .button-wrapper {
    margin: 0 auto;
    max-width: 1261px;
    padding: 0 20px;
}

.pane--banner .module.module-page-title {
    color: #ffffff;
    padding-top: 100px;
}

.PageOverview .pane--banner .module.module-page-title {
    position: absolute;
    top: 150px;
    width: 100%;
    z-index: 1;
    color: #ffffff;
    padding-top: 0;
}

.module-learn-more-button {
    position: absolute;
    top: 375px;
    width: 100%;
    z-index: 1;
}
.module-overview-slider .module_date-time,
.module-overview-slider .module-slider_description {
    font-size: 18px;
}
.module-overview-slider .button {
    color: #666;
}
.module-overview-slider .button:hover{
    color: #ffffff;
}
.module-mashup-sl.module-overview-slider .slick-slide {
    position: relative;
    z-index: 1;
}

.module-mashup-sl .slick-slide:before {
    background-color: #000000;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.38;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

.module-mashup-sl .module-financial_type-text,
.module-mashup-sl .module-financial_year-text {
    color: #ffffff;
    font-size: 33px;
    font-weight: 300;
    padding-bottom: 10px;
    display: inline-block;
}

.module-mashup-sl .module-financial_type-text {
    padding-right: 10px;
}

.module-mashup-sl .slick-dots {
    bottom: 30px;
    position: absolute;
    text-align: center;
    width: 100%;
}

.module-mashup-sl .slick-dots li {
    display: inline-block;
    cursor: pointer;
    margin: 0 2px;
}

.module-mashup-sl .slick-dots li button {
    background: transparent;
    border: 0 none;
    color: transparent;
    cursor: pointer;
    display: block;
    font-size: 0;
    height: 20px;
    line-height: 0;
    outline: medium none;
    padding: 5px;
    width: 20px;
}

.module-mashup-sl .slick-dots li button:before {
    background: #ffffff;
    border-radius: 100%;
    content: "";
    display: block;
    height: 12px;
    width: 12px;
}

.module-mashup-sl .slick-dots li.slick-active button:before {
    background: #95258a;
}
.module-mashup-sl .module_item-events h2{
    color: #ffffff;
    display: block;
    font-size: 33px;
    font-weight: 300;
    padding-bottom: 10px;
    margin: 0;
}
.module-mashup-sl .module_item-events .module_location{
    margin-bottom: 10px;
}
.module-mashup-sl .module_item-events .module_date-text{
    padding-right: 5px;
}
.module-overview-slider .slick-slide:before {
    opacity: 0.2;
}
@media only screen and (max-width: 767px) {
    .module-mashup-sl .module-financial_type-text,
    .module-mashup-sl .module-financial_year-text,
    .module-mashup-sl .module_item-events h2 {
        font-size: 24.8px;
    }
    .module-mashup-sl .module_link {
        font-size: 13.5px;
    }
    .module-overview-slider {
        height: 310px;
    }
    .pane--banner .module-mashup-sl .module_item {
        height: 310px;
    }
    .PageOverview .pane--banner .module.module-page-title {
        top: 20px;
    }
    .module-mashup-sl .module_item-wrapper {
        padding-top: 35px;
    }
    .module-learn-more-button {
        top: 195px;
    }
    .module-mashup-sl .slick-dots {
        bottom: 3px;
    }
    .module-overview p {
        font-size: 15px;
        line-height: 22px;
    }
}


/*...End Slider...*/

.pane--content .module.module-home-numbers {
    padding-bottom: 30px;
    padding-top: 45px;
}

.pane--content .module.module-home-numbers h1 {
    line-height: 50px;
    margin-bottom: 20px;
}

.pane--content .module.module-home-numbers p {
    font-size: 20px;
    text-transform: uppercase;
    line-height: 24px;
    letter-spacing: 0.75px;
    font-weight: 700;
}

.module-home-numbers .grid>div:first-child+div>div {
    border-left: 3px solid #fff;
    border-right: 3px solid #fff;
}

.module-event-latest .module_container--content {
    max-width: 360px;
    padding-right: 20px;
}

.module-slideshow .module_headline {
    margin-top: 15px;
}

.module-event-latest .button,
.module-slideshow .button,
.module-subscribe--footer .button {
    min-width: 280px;
}

.module-event-latest .button {
    margin-top: 37px;
}

.module-event-latest .module_item {
    min-width: 100%;
    float: none;
}

.module-news-latest .module_container--inner>.module_link {
    margin-bottom: 30px;
    padding-left: 22px;
}

.module-news-latest h2.module_title {
    margin-bottom: 10px;
}

.module-event-latest .slick-dots li button {
    background: transparent;
    border: 0 none;
    color: transparent;
    cursor: pointer;
    display: block;
    font-size: 0;
    height: 20px;
    line-height: 0;
    outline: medium none;
    padding: 5px;
    width: 20px;
}

.module-event-latest .slick-dots li button:before {
    background: transparent;
    border-radius: 100%;
    content: "";
    display: block;
    height: 12px;
    width: 12px;
    border: 1px solid #ffffff;
}

.module-event-latest .slick-dots li {
    cursor: pointer;
    display: inline-block;
    margin: 0 2px;
}

.module-event-latest .slick-dots li.slick-active button:before {
    background: #ffffff;
}

@media only screen and (max-width: 768px) {
    .module-event-latest .module_item {
        float: left;
        min-width: auto;
    }
    .module-event-latest .module_container--content {
        max-width: 100%;
    }
    .module-event-latest {
        margin-bottom: 35px;
    }
    .module-subscribe--footer .button {
        min-width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .pane--content .module.module-home-numbers h1 {
        font-size: 45px;
        line-height: 45px;
    }
    .pane--content .module.module-home-numbers p {
        font-size: 15px;
        line-height: 18px;
    }
    .module-event-latest .module_date-time,
    .module-news-latest .module_date-time {
        margin-bottom: 10px;
    }
    .module-event-latest .button,
    .module-slideshow .button,
    .module-subscribe--footer .button {
        min-width: 205px;
    }
    .module-subscribe--footer .button {
        min-width: 100%;
    }
    .module-slideshow_link {
        font-size: 18px;
    }
}

@media only screen and (max-width: 480px) {
    .module-home-numbers .grid>div:first-child+div>div {
        border-left: none;
        border-right: none;
        padding-top: 40px;
        padding-bottom: 40px;
        position: relative;
    }
    .module-home-numbers .grid>div:first-child+div>div::before {
        background: #ffffff;
        content: "";
        height: 3px;
        left: 50%;
        margin-left: -50px;
        position: absolute;
        top: 15px;
        width: 100px;
    }
    .module-home-numbers .grid>div:first-child+div>div:after {
        background: #ffffff;
        content: "";
        height: 3px;
        left: 50%;
        margin-left: -50px;
        position: absolute;
        bottom: 15px;
        width: 100px;
    }
}


/*---------END Page Specific/Overview Changes--------*/


/*---------START Page Specific/Financial Changes--------*/

.module-sec--widget .q4-icon_file-html-line:before {
    content: "\e9bb";
}


/*---------END Page Specific/Financial Changes--------*/


/********Start Breadcrumb********/

.PageOverview .module-breadcrumb,
.module-breadcrumb .module_container--inner {
    display: none;
}

.module-breadcrumb .module_title {
    color: #fff;
    text-align: left;
    margin: 0;
    font-size: 60px;
    line-height: 66px;
    font-weight: 300;
    padding-top: 100px;
}

@media only screen and (max-width: 768px) {
    .module-breadcrumb .module_title {
        font-size: 37.5px;
        line-height: 40px;
    }
}


/********End Breadcrumb**********/