/*==================================
 ------------ RESET CSS -----------
==================================*/

html,
body,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
pre,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}


/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

html {
    font-size: 10px;
}

nav ol,
nav ul:not(.list),
.list--reset ol,
.list--reset ul:not(.list) {
    margin: 0;
    padding: 0;
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

strong {
    font-weight: bold;
}

em {
    font-style: italic;
}


/*---------- Animations ----------*/

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


/*==================================
 --------- DEFAULT STYLES ---------
==================================*/

body {
    overflow-x: hidden;
    color: #454554;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: none;
}


/*---------- TYPOGRAPHY ----------*/

h1 {
    font-size: 35px;
    font-size: 3.5rem;
    margin-bottom: 48px;
    line-height: 1.2;
    font-family: "PT Serif", sans-serif;
    font-weight: 700;
}

@media only screen and (max-width: 767px) {
    h1 {
        font-size: 28px;
        font-size: 2.8rem;
    }
}

h2 {
    font-size: 22px;
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-family: "PT Serif", sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h3 {
    font-size: 20px;
    font-size: 2rem;
    margin: 24px 0 16px 0;
    color: #30522B;
    font-family: "PT Serif", sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h4 {
    font-size: 18px;
    font-size: 1.8rem;
    margin-top: 24px;
    margin-bottom: 16px;
    font-weight: bold;
    line-height: 1.4;
}

h5 {
    font-size: 12.8px;
    font-size: 1.28rem;
    margin-bottom: 12.8px;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: #5A7C6B;
}

a:hover {
    color: #AD966E;
}

p {
    line-height: 1.5;
}

i {
    display: inline-block;
}

strong,
b {
    font-weight: bold;
}

em {
    font-style: italic;
}

sup {
    vertical-align: super;
    font-size: smaller;
    line-height: 1;
}

sub {
    vertical-align: sub;
    font-size: smaller;
    line-height: 1;
}

small {
    font-size: smaller;
}


/*------------ COMMON ------------*/

img {
    max-width: 100%;
}

input[type="checkbox"],
input[type="radio"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

input[type="checkbox"]+label,
input[type="radio"]+label {
    user-select: none;
    cursor: pointer;
    position: relative;
    padding-left: 27px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1;
}

input[type="checkbox"]+label:before,
input[type="radio"]+label:before {
    content: "";
    width: 15px;
    height: 15px;
    border: 1px solid #c3c6c8;
    margin-right: 8px;
    line-height: 1;
    position: absolute;
    left: 0;
    border-radius: 0;
    top: 50%;
    transform: translateY(-50%);
}

input[type="checkbox"]:checked+label:after {
    font-family: "q4-icons";
    content: "\ed71";
    color: #ffffff;
    font-size: 10px;
    position: absolute;
    left: 3px;
    top: 50%;
    transform: translateY(-50%);
}

input[type="checkbox"]:checked+label:before,
input[type="radio"]:checked+label:before {
    width: 15px;
    height: 15px;
    background-color: #AD966E;
    border: 1px solid #AD966E;
}

input[type="radio"]+label:before {
    border-radius: 100%;
}

input::-ms-clear {
    display: none;
}

iframe {
    width: 100%;
}


/*------- HACKS AND FIXES -------*/

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}


/*------------ LISTS ------------*/

.list {
    list-style-type: disc;
    padding-left: 30px;
    margin-top: 15px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.list--ordered {
    list-style-type: decimal;
}

.list--alpha-upper{
    list-style-type: upper-alpha;
}

.list--alpha {
    list-style-type: lower-alpha;
}

.list--roman {
    list-style-type: lower-roman;
}

.list--inside {
    list-style-position: inside;
}

.list--arrow {
    list-style: none;
    padding: 0;
}

.list--arrow li {
    position: relative;
    padding-left: 30px;
}

.list--arrow li+li {
    margin-top: 13px;
}

.list--arrow li: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;
    font-weight: bold;
    content: "\edbe";
    color: #5A7C6B;
    font-size: 18px;
    font-size: 1.8rem;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}


/*------- BUTTONS / INPUTS -------*/

.input,
.textarea,
.dropdown,
.upload,
.submit,
.button {
    display: inline-block;
    max-width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 12.5px 33px;
    background: transparent;
    border: 1px solid #30522B;
    color: #30522B;
    border-radius: 0;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: normal;
}

.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;
}

a.button:focus {
    text-decoration: none !important;
}

.textarea {
    width: 100%;
    resize: vertical;
}

.upload {
    line-height: 0;
}

.button {
    transition: 0.3s ease-in-out;
    font-size: 18px;
    font-size: 1.8rem;
}

.button:hover {
    background: #30522B;
    color: #fff;
}

.button--inverted {
    background: #30522B;
    color: #fff;
}

.button--inverted:hover {
    background: transparent;
    color: #30522B;
}

.button--inverted.js--disabled {
    background: #fff;
    border-color: #30522B;
    color: #30522B;
}

.button--dark {
    border: 1px solid #AD966E;
    color: #ffffff;
}

.button--dark:hover {
    background: #AD966E;
    color: #ffffff;
}

.dropdown {
    padding: 11px 35px 11px 20px;
    background: transparent url("../design/svg/q4-icon_chevron-down-black.svg") no-repeat right 10px center;
    background-size: 14px 14px;
    min-width: 130px;
}

.dropdown::-ms-expand {
    display: none;
}


/*------------ TABLES ------------*/

.table {
    width: 100%;
    margin: 16px 0;
}

.table thead {
    background-color: #454554;
}

.table thead th {
    text-align: left;
}

.table tbody tr {
    border-bottom: 1px solid #dddddd;
}
.table tbody tr:nth-child(even){
    background-color: #EFEEED;
}
.table td,
.table tr>.grid_col {
    margin: 0;
    padding: 20px 20px;
}

.table th {
    margin: 0;
    padding: 12px 20px;
}

.table th {
    color: #fff;
}

.table--headless tr:nth-child(even) {
    background-color: transparent;
}

.table--headless tr:nth-child(odd) {
    background-color: #f6f6f6;
}

.table--headless tr:first-child {
    background-color: #30522B;
    text-align: left;
}

.table--headless tr:first-child td {
    color: #fff;
}

.table-wrapper {
    overflow-x: auto;
}
@media only screen and (max-width: 767px){
    .table--no-responsive {
        display: block;
        width: 100%;
        overflow-x: auto;
    }
}
@media only screen and (max-width: 480px) {
    .table--responsive thead {
        display: none;
    }
    .table--responsive tbody {
        border-top: 2px solid #30522B;
        border-bottom: 2px solid #30522B;
    }
    .table--responsive td {
        display: block;
    }
    .table--responsive td:before {
        content: attr(data-heading) ": ";
        font-weight: bold;
    }
}


/*--------- SPECIAL BOXES --------*/

.code {
    margin: 32px 0;
    padding: 20px 15px;
    background: #f6f6f6;
    border-left: 3px solid rgba(0, 111, 186, 0.5);
    font-family: monospace, serif;
    font-size: 14px;
    font-size: 1.4rem;
    word-break: break-all;
    word-wrap: break-word;
    white-space: pre;
    overflow: hidden;
}

.code_comment {
    opacity: 0.5;
}

.quote {
    margin: 32px 0;
    padding: 20px 15px;
    background: #f6f6f6;
    border-left: 3px solid rgba(241, 175, 15, 0.5);
    font-size: 14px;
    font-size: 1.4rem;
    font-style: italic;
}

.quote p:before {
    margin-right: 5px;
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\eb1b";
}

.quote p:after {
    margin-left: 5px;
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\eb1c";
}


/*==================================
 -------- Q4 Modules Icons ---------
==================================*/

.module_q4-icon-links .module_link:before,
.module_q4-icon-links .module_rss-link:before {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e9bb";
    font-size: 20px;
    vertical-align: bottom;
    display: inline-block;
    padding-right: 10px;
    color: #AD966E;
}

.module_q4-icon-links .module_rss-link:before,
.module_q4-icon-links .module_link.module_link-rss:before {
    content: "\eefa";
}

.module_q4-icon-links .module_add-to-calendar-reveal:before {
    content: "\e90f";
    padding-right: 10px;
    vertical-align: baseline;
}

.module_q4-icon-links .module_link[href$=".mp3"]:before,
.module_q4-icon-links .module_link[href$=".wmv"]:before,
.module_q4-icon-links .module_link[href$=".MP3"]:before,
.module_q4-icon-links .module_link[href$=".WMV"]:before{
    content: "\e952";
}

/* 00536039*/

.module_q4-icon-links .module_link[href$="https://players.brightcove.net/4508222207001/default_default/index.html?videoId=6330146384112"]:before{
    content: "\e915"
}
/*00536039*/

.module_q4-icon-links .module_link[href$=".xls"]:before,
.module_q4-icon-links .module_link[href$=".csv"]:before,
.module_q4-icon-links .module_link[href$=".XLS"]:before,
.module_q4-icon-links .module_link[href$=".CSV"]:before {
    content: "\eeae";
}

.module_q4-icon-links .module_link[href$=".mp4"]:before,
.module_q4-icon-links .module_link[href$=".flv"]:before,
.module_q4-icon-links .module_link[href$=".avi"]:before,
.module_q4-icon-links .module_link[href$=".MP4"]:before,
.module_q4-icon-links .module_link[href$=".FLV"]:before,
.module_q4-icon-links .module_link[href$=".AVI"]:before {
    content: "\e95e";
}

.module_q4-icon-links .module_link[href$=".pdf"]:before,
.module_q4-icon-links .module_link[href$=".PDF"]:before {
    content: "\ef3e";
}

.module_q4-icon-links .module_link.module_link-webcast:before,
.module_q4-icon-links .module_webcast-link:before {
    content: "\e915";
}

.module_q4-icon-links .module_link.module_link-presentation:before {
    content: "\e914";
}

.module_q4-icon-links .module_link.module_link-file:before {
    content: "\eb81";
}

.module_q4-icon-links .module_link.module_link-sec:before {
    content: "\e9bb";
}

.module_q4-icon-links .module_link.module_link-sec[href$=".pdf"]:before {
    content: "\ef3e";
}

.module_q4-icon-links .module_link.module_link-sec[href$=".rtf"]:before {
    content: "\ef40";
}

.module_q4-icon-links .module_link.module_link-sec[href$=".xls"]:before {
    content: "\ef41";
}

.module_q4-icon-links .module_link.module_link-sec[href$=".zip"]:before {
    content: "\e9b9";
}


/*==================================
 ----------- TOAST GRID -----------
==================================*/

.grid {
    list-style: none;
    margin-left: -20px;
}
.grid--flex {
    margin-left: -20px;
    box-sizing: border-box;
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
}
.grid--flex_column {
    flex-direction: column;
}
.grid--flex_row-reverse {
    flex-direction: row-reverse;
}
.grid--flex_column-reverse {
    flex-direction: column-reverse;
}
.grid--flex_justify-start {
    justify-content: flex-start;
    text-align: start;
}
.grid--flex_justify-center {
    justify-content: center;
    text-align: center;
}
.grid--flex_justify-end {
    justify-content: flex-end;
    text-align: end;
}
.grid--flex_align-top {
    align-items: flex-start;
}
.grid--flex_align-middle {
    align-items: center;
}
.grid--flex_align-bottom {
    align-items: flex-end;
}
.grid--flex_space-around {
    justify-content: space-around;
}
.grid--flex_space-between {
    justify-content: space-between;
}

.grid--flex .grid_col {
    display: block;
    margin-right: 0;
    flex: 0 0 auto;
}

.grid_col--1-of-1, .grid_col--2-of-2, .grid_col--3-of-3, .grid_col--4-of-4, .grid_col--5-of-5, .grid_col--6-of-6, .grid_col--7-of-7, .grid_col--8-of-8, .grid_col--12-of-12 {
    width: 100%;
}

.grid_col--1-of-2, .grid_col--2-of-4, .grid_col--3-of-6, .grid_col--4-of-8, .grid_col--6-of-12 {
    width: 50%;
}

.grid_col--1-of-3, .grid_col--2-of-6, .grid_col--4-of-12 {
    width: 33.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--flex .grid_col--1-of-1, .grid--flex .grid_col--2-of-2, .grid--flex .grid_col--3-of-3, .grid--flex .grid_col--4-of-4, .grid--flex .grid_col--5-of-5, .grid--flex .grid_col--6-of-6, .grid--flex .grid_col--7-of-7, .grid--flex .grid_col--8-of-8, .grid--flex .grid_col--12-of-12 {
    width: auto;
    flex-basis: 100%;
    max-width: 100%;
}

.grid--flex .grid_col--1-of-2, .grid--flex .grid_col--2-of-4, .grid--flex .grid_col--3-of-6, .grid--flex .grid_col--4-of-8, .grid--flex .grid_col--6-of-12 {
    width: auto;
    flex-basis: 50%;
    max-width: 50%;
}

.grid--flex .grid_col--1-of-3, .grid--flex .grid_col--2-of-6, .grid--flex .grid_col--4-of-12 {
    width: auto;
    flex-basis: 33.33333%;
    max-width: 33.33333%;
}

.grid--flex .grid_col--2-of-3, .grid--flex .grid_col--4-of-6, .grid--flex .grid_col--8-of-12 {
    width: auto;
    flex-basis: 66.66667%;
    max-width: 66.66667%;
}

.grid--flex .grid_col--1-of-4, .grid--flex .grid_col--2-of-8, .grid--flex .grid_col--3-of-12 {
    width: auto;
    flex-basis: 25%;
    max-width: 25%;
}

.grid--flex .grid_col--3-of-4, .grid--flex .grid_col--6-of-8, .grid--flex .grid_col--9-of-12 {
    width: auto;
    flex-basis: 75%;
    max-width: 75%;
}

.grid_col--push-1-of-1, .grid_col--push-2-of-2, .grid_col--push-3-of-3, .grid_col--push-4-of-4, .grid_col--push-5-of-5, .grid_col--push-6-of-6, .grid_col--push-7-of-7, .grid_col--push-8-of-8, .grid_col--push-12-of-12 {
    margin-left: 100%;
}

.grid_col--push-1-of-2, .grid_col--push-2-of-4, .grid_col--push-3-of-6, .grid_col--push-4-of-8, .grid_col--push-6-of-12 {
    margin-left: 50%;
}

.grid_col--push-1-of-3, .grid_col--push-2-of-6, .grid_col--push-4-of-12 {
    margin-left: 33.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-7-of-7, .grid_col--pull-8-of-8, .grid_col--pull-12-of-12 {
    margin-left: -100%;
}

.grid_col--pull-1-of-2, .grid_col--pull-2-of-4, .grid_col--pull-3-of-6, .grid_col--pull-4-of-8, .grid_col--pull-6-of-12 {
    margin-left: -50%;
}

.grid_col--pull-1-of-3, .grid_col--pull-2-of-6, .grid_col--pull-4-of-12 {
    margin-left: -33.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--flex .grid_col--1-of-5 {
    width: auto;
    flex-basis: 20%;
    max-width: 20%;
}

.grid_col--push-1-of-5 {
    margin-left: 20%;
}

.grid_col--pull-1-of-5 {
    margin-left: -20%;
}

.grid_col--2-of-5 {
    width: 40%;
}

.grid--flex .grid_col--2-of-5 {
    width: auto;
    flex-basis: 40%;
    max-width: 40%;
}

.grid_col--push-2-of-5 {
    margin-left: 40%;
}

.grid_col--pull-2-of-5 {
    margin-left: -40%;
}

.grid_col--3-of-5 {
    width: 60%;
}

.grid--flex .grid_col--3-of-5 {
    width: auto;
    flex-basis: 60%;
    max-width: 60%;
}

.grid_col--push-3-of-5 {
    margin-left: 60%;
}

.grid_col--pull-3-of-5 {
    margin-left: -60%;
}

.grid_col--4-of-5 {
    width: 80%;
}

.grid--flex .grid_col--4-of-5 {
    width: auto;
    flex-basis: 80%;
    max-width: 80%;
}

.grid_col--push-4-of-5 {
    margin-left: 80%;
}

.grid_col--pull-4-of-5 {
    margin-left: -80%;
}

.grid_col--1-of-6 {
    width: 16.66667%;
}

.grid--flex .grid_col--1-of-6 {
    width: auto;
    flex-basis: 16.66667%;
    max-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--flex .grid_col--5-of-6 {
    width: auto;
    flex-basis: 83.33333%;
    max-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-7 {
    width: 14.28571%;
}

.grid--flex .grid_col--1-of-7 {
    width: auto;
    flex-basis: 14.28571%;
    max-width: 14.28571%;
}

.grid_col--push-1-of-7 {
    margin-left: 14.28571%;
}

.grid_col--pull-1-of-7 {
    margin-left: -14.28571%;
}

.grid_col--2-of-7 {
    width: 28.57143%;
}

.grid--flex .grid_col--2-of-7 {
    width: auto;
    flex-basis: 28.57143%;
    max-width: 28.57143%;
}

.grid_col--push-2-of-7 {
    margin-left: 28.57143%;
}

.grid_col--pull-2-of-7 {
    margin-left: -28.57143%;
}

.grid_col--3-of-7 {
    width: 42.85714%;
}

.grid--flex .grid_col--3-of-7 {
    width: auto;
    flex-basis: 42.85714%;
    max-width: 42.85714%;
}

.grid_col--push-3-of-7 {
    margin-left: 42.85714%;
}

.grid_col--pull-3-of-7 {
    margin-left: -42.85714%;
}

.grid_col--4-of-7 {
    width: 57.14286%;
}

.grid--flex .grid_col--4-of-7 {
    width: auto;
    flex-basis: 57.14286%;
    max-width: 57.14286%;
}

.grid_col--push-4-of-7 {
    margin-left: 57.14286%;
}

.grid_col--pull-4-of-7 {
    margin-left: -57.14286%;
}

.grid_col--5-of-7 {
    width: 71.42857%;
}

.grid--flex .grid_col--5-of-7 {
    width: auto;
    flex-basis: 71.42857%;
    max-width: 71.42857%;
}

.grid_col--push-5-of-7 {
    margin-left: 71.42857%;
}

.grid_col--pull-5-of-7 {
    margin-left: -71.42857%;
}

.grid_col--6-of-7 {
    width: 85.71429%;
}

.grid--flex .grid_col--6-of-7 {
    width: auto;
    flex-basis: 85.71429%;
    max-width: 85.71429%;
}

.grid_col--push-6-of-7 {
    margin-left: 85.71429%;
}

.grid_col--pull-6-of-7 {
    margin-left: -85.71429%;
}

.grid_col--1-of-8 {
    width: 12.5%;
}

.grid--flex .grid_col--1-of-8 {
    width: auto;
    flex-basis: 12.5%;
    max-width: 12.5%;
}

.grid_col--push-1-of-8 {
    margin-left: 12.5%;
}

.grid_col--pull-1-of-8 {
    margin-left: -12.5%;
}

.grid_col--3-of-8 {
    width: 37.5%;
}

.grid--flex .grid_col--3-of-8 {
    width: auto;
    flex-basis: 37.5%;
    max-width: 37.5%;
}

.grid_col--push-3-of-8 {
    margin-left: 37.5%;
}

.grid_col--pull-3-of-8 {
    margin-left: -37.5%;
}

.grid_col--5-of-8 {
    width: 62.5%;
}

.grid--flex .grid_col--5-of-8 {
    width: auto;
    flex-basis: 62.5%;
    max-width: 62.5%;
}

.grid_col--push-5-of-8 {
    margin-left: 62.5%;
}

.grid_col--pull-5-of-8 {
    margin-left: -62.5%;
}

.grid_col--7-of-8 {
    width: 87.5%;
}

.grid--flex .grid_col--7-of-8 {
    width: auto;
    flex-basis: 87.5%;
    max-width: 87.5%;
}

.grid_col--push-7-of-8 {
    margin-left: 87.5%;
}

.grid_col--pull-7-of-8 {
    margin-left: -87.5%;
}

.grid_col--1-of-12 {
    width: 8.33333%;
}

.grid--flex .grid_col--1-of-12 {
    width: auto;
    flex-basis: 8.33333%;
    max-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--flex .grid_col--2-of-12 {
    width: auto;
    flex-basis: 16.66667%;
    max-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--flex .grid_col--5-of-12 {
    width: auto;
    flex-basis: 41.66667%;
    max-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--flex .grid_col--7-of-12 {
    width: auto;
    flex-basis: 58.33333%;
    max-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--flex .grid_col--10-of-12 {
    width: auto;
    flex-basis: 83.33333%;
    max-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--flex .grid_col--11-of-12 {
    width: auto;
    flex-basis: 91.66667%;
    max-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: 1025px) {
    .grid_col[class*="grid_col--lg-"] {
        display: inline-block;
        margin-right: -.24em;
    }
    .grid--flex .grid_col[class*="grid_col--lg-"] {
        display: block;
        margin-right: 0;
    }
    .grid_col.grid_col--lg-1-of-1 {
        width: 100%;
    }
    .grid--flex .grid_col.grid_col--lg-1-of-1 {
        width: auto;
        flex-basis: 100%;
        max-width: 100%;
    }
    .grid_col.grid_col--lg-1-of-2, .grid_col.grid_col--lg-2-of-4 {
        width: 50%;
    }
    .grid--flex .grid_col.grid_col--lg-1-of-2, .grid--flex .grid_col.grid_col--lg-2-of-4 {
        width: auto;
        flex-basis: 50%;
        max-width: 50%;
    }
    .grid_col.grid_col--lg-1-of-3 {
        width: 33.33333%;
    }
    .grid--flex .grid_col.grid_col--lg-1-of-3 {
        width: auto;
        flex-basis: 33.33333%;
        max-width: 33.33333%;
    }
    .grid_col.grid_col--lg-2-of-3 {
        width: 66.66667%;
    }
    .grid--flex .grid_col.grid_col--lg-2-of-3 {
        width: auto;
        flex-basis: 66.66667%;
        max-width: 66.66667%;
    }
    .grid_col.grid_col--lg-1-of-4 {
        width: 25%;
    }
    .grid--flex .grid_col.grid_col--lg-1-of-4 {
        width: auto;
        flex-basis: 25%;
        max-width: 25%;
    }
    .grid_col.grid_col--lg-3-of-4 {
        width: 75%;
    }
    .grid--flex .grid_col.grid_col--lg-3-of-4 {
        width: auto;
        flex-basis: 75%;
        max-width: 75%;
    }
}
@media (max-width: 1024px) and (min-width: 769px) {
    .grid_col[class*="grid_col--lc-"] {
        display: inline-block;
        margin-right: -.24em;
    }
    .grid--flex .grid_col[class*="grid_col--lc-"] {
        display: block;
        margin-right: 0;
    }
    .grid_col.grid_col--lc-1-of-1 {
        width: 100%;
    }
    .grid--flex .grid_col.grid_col--lc-1-of-1 {
        width: auto;
        flex-basis: 100%;
        max-width: 100%;
    }
    .grid_col.grid_col--lc-1-of-2, .grid_col.grid_col--lc-2-of-4 {
        width: 50%;
    }
    .grid--flex .grid_col.grid_col--lc-1-of-2, .grid--flex .grid_col.grid_col--lc-2-of-4 {
        width: auto;
        flex-basis: 50%;
        max-width: 50%;
    }
    .grid_col.grid_col--lc-1-of-3 {
        width: 33.33333%;
    }
    .grid--flex .grid_col.grid_col--lc-1-of-3 {
        width: auto;
        flex-basis: 33.33333%;
        max-width: 33.33333%;
    }
    .grid_col.grid_col--lc-2-of-3 {
        width: 66.66667%;
    }
    .grid--flex .grid_col.grid_col--lc-2-of-3 {
        width: auto;
        flex-basis: 66.66667%;
        max-width: 66.66667%;
    }
    .grid_col.grid_col--lc-1-of-4 {
        width: 25%;
    }
    .grid--flex .grid_col.grid_col--lc-1-of-4 {
        width: auto;
        flex-basis: 25%;
        max-width: 25%;
    }
    .grid_col.grid_col--lc-3-of-4 {
        width: 75%;
    }
    .grid--flex .grid_col.grid_col--lc-3-of-4 {
        width: auto;
        flex-basis: 75%;
        max-width: 75%;
    }
}
@media (max-width: 768px) and (min-width: 481px) {
    .grid_col[class*="grid_col--md-"] {
        display: inline-block;
        margin-right: -.24em;
    }
    .grid--flex .grid_col[class*="grid_col--md-"] {
        display: block;
        margin-right: 0;
    }
    .grid_col.grid_col--md-1-of-1 {
        width: 100%;
    }
    .grid--flex .grid_col.grid_col--md-1-of-1 {
        width: auto;
        flex-basis: 100%;
        max-width: 100%;
    }
    .grid_col.grid_col--md-1-of-2, .grid_col.grid_col--md-2-of-4 {
        width: 50%;
    }
    .grid--flex .grid_col.grid_col--md-1-of-2, .grid--flex .grid_col.grid_col--md-2-of-4 {
        width: auto;
        flex-basis: 50%;
        max-width: 50%;
    }
    .grid_col.grid_col--md-1-of-3 {
        width: 33.33333%;
    }
    .grid--flex .grid_col.grid_col--md-1-of-3 {
        width: auto;
        flex-basis: 33.33333%;
        max-width: 33.33333%;
    }
    .grid_col.grid_col--md-2-of-3 {
        width: 66.66667%;
    }
    .grid--flex .grid_col.grid_col--md-2-of-3 {
        width: auto;
        flex-basis: 66.66667%;
        max-width: 66.66667%;
    }
    .grid_col.grid_col--md-1-of-4 {
        width: 25%;
    }
    .grid--flex .grid_col.grid_col--md-1-of-4 {
        width: auto;
        flex-basis: 25%;
        max-width: 25%;
    }
    .grid_col.grid_col--md-3-of-4 {
        width: 75%;
    }
    .grid--flex .grid_col.grid_col--md-3-of-4 {
        width: auto;
        flex-basis: 75%;
        max-width: 75%;
    }
}
@media (max-width: 480px) {
    .grid_col[class*="grid_col--sm-"] {
        display: inline-block;
        margin-right: -.24em;
    }
    .grid--flex .grid_col[class*="grid_col--sm-"] {
        display: block;
        margin-right: 0;
    }
    .grid_col.grid_col--sm-1-of-2, .grid_col.grid_col--sm-2-of-4 {
        width: 50%;
    }
    .grid--flex .grid_col.grid_col--sm-1-of-2, .grid--flex .grid_col.grid_col--sm-2-of-4 {
        width: auto;
        flex-basis: 50%;
        max-width: 50%;
    }
    .grid_col.grid_col--sm-1-of-3 {
        width: 33.33333%;
    }
    .grid--flex .grid_col.grid_col--sm-1-of-3 {
        width: auto;
        flex-basis: 33.33333%;
        max-width: 33.33333%;
    }
    .grid_col.grid_col--sm-2-of-3 {
        width: 66.66667%;
    }
    .grid--flex .grid_col.grid_col--sm-2-of-3 {
        width: auto;
        flex-basis: 66.66667%;
        max-width: 66.66667%;
    }
    .grid_col.grid_col--sm-1-of-4 {
        width: 25%;
    }
    .grid--flex .grid_col.grid_col--sm-1-of-4 {
        width: auto;
        flex-basis: 25%;
        max-width: 25%;
    }
    .grid_col.grid_col--sm-3-of-4 {
        width: 75%;
    }
    .grid--flex .grid_col.grid_col--sm-3-of-4 {
        width: auto;
        flex-basis: 75%;
        max-width: 75%;
    }
    .grid--flex .grid_col {
        width: auto;
        flex-basis: 100%;
        max-width: 100%;
    }
}

.grid_col--centered {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.grid_col--d-first {
    float: left;
}
.grid--flex .grid_col--d-first {
    float: none;
    order: -1;
}

.grid_col--d-last {
    float: right;
}
.grid--flex .grid_col--d-last {
    float: none;
    order: 1;
}

.grid--no-gutter {
    margin-left: 0;
}
.grid--no-gutter .grid_col {
    padding-left: 0;
}
.grid--no-gutter .grid_col--span-all {
    margin-left: 0;
    width: 100%;
}

.grid--gutter {
    margin-left: -20px;
}
.grid--gutter .grid_col {
    padding-left: 20px;
}
.grid--gutter-40 {
    margin-left: -40px;
}
.grid--gutter-40 .grid_col {
    padding-left: 40px;
}

.grid--no-space .grid_col {
    margin-right: 0;
}

.grid_col--ab {
    vertical-align: bottom;
}

.grid_col--am {
    vertical-align: middle;
}


/*==================================
 --------- UTILITY CLASSES --------
==================================*/

.hidden:not([role=tabpanel]) {
    display: none !important;
}

.hidden[role=tabpanel] {
    display: none;
}

.disabled {
    opacity: 0.1;
    border-color: #454554;
    color: #454554;
    transition: none;
    pointer-events: none;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.inline {
    display: inline;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.vtop {
    vertical-align: top;
}

.vmiddle {
    vertical-align: middle;
}

.vbottom {
    vertical-align: bottom;
}

.right {
    float: right;
}

.left {
    float: left;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-justify {
    text-align: justify;
}

.uppercase {
    text-transform: uppercase;
}

.lowercase {
    text-transform: lowercase;
}

.background--cover {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.background--brand {
    background-color: #30522B;
}

.background--alt-brand {
    background-color: #AD966E;
}

.background--blue {
    background: #3E6D91
}

.background--dark {
    background-color: #454554;
}

.background--light {
    background-color: #fff;
}

.background--grey {
    background-color: #EFEEED;
}

.background--alt-grey {
    background: #F0EFEE;
}

.background--success {
    background-color: #23a217;
}

.background--error {
    background-color: #b72121;
}

.color--brand {
    color: #30522B;
}
.color--alt-brand{
    color: #AD966E;
}
.color--dark {
    color: #222;
}

.color--grey {
    color: #f6f6f6;
}

.color--success {
    color: #23a217;
}

.color--error {
    color: #b72121;
}

.dark {
    color: #fff;
}

.dark a {
    color: #fff;
}

.dark a:not(.button):hover {
    color: #AD966E;
}


/*==================================
 --------- ACCESSIBILITY ----------
==================================*/

*:focus {
    outline: none;
}

a:focus {
    text-decoration: underline !important;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
}

#maincontent:focus {
    outline: 0px;
}


/*---------- Javascript ----------*/

.js--loading:after {
    position: relative;
    left: 50%;
    display: inline-block;
    margin: 10px 0 10px -25px;
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\eb27";
    font-size: 50px;
    font-size: 5rem;
    animation: spin 0.8s infinite linear;
}

.js--hidden:not([role=tabpanel]) {
    display: none !important;
}

.js--hidden[role=tabpanel] {
    display: none;
}

.js--visible {
    display: block;
}

.js--disabled {
    opacity: 0.1;
    border-color: #454554;
    color: #454554;
    transition: none;
    pointer-events: none;
}

.js--invalid input[type="text"],
.js--invalid select {
    border: 1px solid #b72121 !important;
}

.js--invalid input[type="checkbox"] {
    border-color: #b72121 !important;
}


/*==================================
 ----------- MODULE CSS -----------
==================================*/


/*-------- All Module CSS --------*/

.module_header,
.module_back-to-top,
.module_anchor-target,
.module_file-size,
.module_file-type,
.module_file-text {
    display: none;
}

.module_nav,
.module_headline,
.module_location,
.module_speakers,
.module_links,
.module_body,
.module_options,
.module_not-found {
    margin-bottom: 15px;
}

.module_error-container {
    margin-bottom: 30px;
    color: #b72121;
}

.module_add-to-calendar-reveal {
    cursor: pointer;
}

.dark .module_add-to-calendar-reveal {
    color: #ffffff;
}

.module_add-to-calendar-reveal:hover,
.dark .module_add-to-calendar-reveal:hover {
    color: #AD966E;
}

.module_add-to-calendar-reveal:focus {
    text-decoration: underline;
}

.module_add-to-calendar-list {
    display: none;
}

.module_add-to-calendar-list:after {
    content: "Select your Calendar";
    display: block;
    margin-top: 15px;
    font-size: 14px;
    font-size: 1.4rem;
    text-align: center;
}

.fancybox-container .module_add-to-calendar-list {
    padding: 70px;
}

.module_add-to-calendar-item {
    display: inline-block;
    margin: 0 10px;
}

.module_add-to-calendar-item--ics {
    display: none;
}

.module_add-to-calendar-link {
    font-size: 24px;
    font-size: 2.4rem;
}

.module_add-to-calendar.js--hidden {
    display: none;
}

.module_actions,
.module_pager {
    margin-top: 20px;
}

.module_date-time {
    margin-bottom: 12px;
    font-size: 18px;
    font-size: 1.8rem;
}

.module_error-container {
    display: block;
}

.module_error-container ul {
    padding-left: 18px;
    list-style-type: disc;
}

.module_error-container ul>li {
    line-height: 1.5;
}

.module_error-container>br {
    display: none;
}

.module_error-container>span {
    display: block;
    line-height: 1.5;
}

.module_error-container>span:before {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ec6b";
    margin-right: 5px;
}

.module_headline {
    font-weight: normal;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 26px;
}

.module_headline-link {
    color: #454554;
}

.module_image {
    display: inline-block;
    max-width: 30%;
    margin-bottom: 16px;
}

.module_image--right {
    float: right;
    margin-left: 32px;
}

.module_image--left {
    float: left;
    margin-right: 32px;
}

.module_introduction {
    margin-bottom: 35px;
}

.module_item {
    padding: 30px 0 10px;
}

.module_item~.module_item {
    border-top: 1px solid #dddddd;
}

.module_label {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 14px;
    font-size: 1.4rem;
}

.module_label+.module_required {
    font-size: 14px;
    font-size: 1.4rem;
}

.module_links>*,
.module_links li,
.module_links .module_presentation {
    display: inline;
}

@media only screen and (max-width: 480px) {
    .module_links>*,
    .module_links li,
    .module_links .module_presentation {
        display: block;
    }
}

.module_links.module_links--stack>*,
.module_links.module_links--stack li,
.module_links.module_links--stack .module_presentation {
    display: block;
}

.module_link {
    display: inline-block;
    vertical-align: middle;
    margin: 0 35px 10px 0;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: normal;
    color: #454554;
}

.module_link>.module_link-text,
.module_link>i,
.module_link>span {
    vertical-align: middle;
}

.module_link>i:before {
    display: block;
}

.module_link[style="DISPLAY:block;"],
.module_link[style="display: block;"] {
    display: inline-block !important;
}

.module_loader {
    display: inline-block;
    animation: spin 1s linear infinite;
}

.module_message {
    display: block;
    margin: 16px 0;
}

.module_message[style$="hidden;"],
.module_message:empty {
    display: none;
}

.module_message--success {
    color: #23a217;
}

.module_message--success:before {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ed71";
    margin-right: 5px;
}

.module_message--error {
    color: #b72121;
}

.module_message--error:before {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ed4f";
    margin-right: 5px;
}

.module_nav-link,
.module_nav .ModuleYearLink,
.module_nav-link:visited,
.module_nav .ModuleYearLink:visited {
    display: inline-block;
    margin-right: 5px;
    padding: 15px 20px;
    border: 2px solid #30522B;
    color: #454554;
    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: #30522B;
    color: #fff;
}

@media only screen and (max-width: 480px) {
    .module_nav-link,
    .module_nav .ModuleYearLink,
    .module_nav-link:visited,
    .module_nav .ModuleYearLink:visited {
        margin-bottom: 10px;
    }
}

.module_options-label,
.module_options-select {
    margin-right: 10px;
}

@media only screen and (max-width: 480px) {
    .module_options-label,
    .module_options-select,
    .module_options-submit {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
}

.module_pager a {
    color: #96A394;
    font-size: 22px;
    font-size: 2.2rem;
    font-family: "PT Serif", sans-serif;
    font-weight: 700;
    margin-left: 8px;
}

.module_pager a[href] {
    color: #44633F;
}

.module_reminder .module_input.module_reminder-period,
.module_reminder .module_input.module_reminder-email {
    margin-right: 10px;
}

.module_reminder.js--reminded {
    display: none;
}

.module_required {
    color: #454554;
}

.module_required-text {
    font-size: 13px;
    font-size: 1.3rem;
    color: #454554;
}

.module_rss {
    float: right;
}

.module_speakers li {
    margin-bottom: 5px;
}

.module_title {
    font-size: 35px;
    font-size: 3.5rem;
    text-align: center;
}
.module_title.module_title--bottom{
    margin-bottom: 0;
    margin-top: 40px;
}
.module-details_title,
.module_details-title {
    color: #454554;
    margin-top: 0;
    margin-bottom: 30px;
}

.module_view-all-link {
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: bold;
}

.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: 12.5px 20px;
    border: 1px solid #CCC9C4;
    border-radius: 0;
    background-color: transparent;
    font-family: inherit;
    font-size: 16px;
    font-size: 1.6rem;
    color: #454554;
}

.module_input[type="text"]::-ms-clear,
.module_input[type="email"]::-ms-clear,
.module_input[type="file"]::-ms-clear,
.module_dropdown::-ms-clear,
.module textarea.module_input::-ms-clear {
    display: none;
}

.module textarea.module_input {
    resize: vertical;
}

.module_input[type="file"],
.module_dropdown {
    cursor: pointer;
}

.module_input[type="file"] {
    line-height: 1;
}

.module_input--brand[type="text"] {
    display: inline-block;
    width: auto;
    padding: 14px 20px;
    background: transparent;
}

.module_dropdown {
    background: #f6f6f6 url("../design/svg/q4-icon_chevron-down-black.svg") no-repeat right 20px center;
    background-size: 14px 14px;
}

.module_dropdown::-ms-expand {
    display: none;
}

.module-details .module_date-time {
    margin-bottom: 15px;
}


/*------- Captcha Component ------*/

.CaptchaContainer {
    display: none;
}

.CaptchaContainer table tr:nth-child(1) {
    display: none;
}

.CaptchaContainer table tr:nth-child(2) td {
    padding-bottom: 20px;
}

.CaptchaContainer table tr:nth-child(3) td {
    padding-bottom: 5px;
    font-size: 14px;
    font-size: 1.4rem;
}

.CaptchaContainer table tr:nth-child(3) td span {
    display: none !important;
}

.CaptchaContainer table tr:nth-child(4) span {
    display: none !important;
}

.CaptchaContainer table tr td {
    padding-right: 10px;
}

@media only screen and (max-width: 768px) {
    .CaptchaContainer table tr td {
        padding-right: 0;
    }
}

.CaptchaContainer input[type="text"] {
    appearance: none;
    -webkit-appearance: none;
    display: block;
    max-width: none;
    padding: 15px 20px;
    border: none;
    border-radius: 0;
    background-color: #f6f6f6;
    font-family: inherit;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 300;
}

.fancybox-container .CaptchaContainer table tr:nth-child(4) td {
    padding-bottom: 20px;
}

.fancybox-container .CaptchaContainer table tr td {
    padding-right: 0;
}


/*- Investment Calculator Widget -*/

.module-calculator_input:not(:last-of-type) {
    margin-bottom: 20px;
}

.module-calculator_input h4 {
    margin-bottom: 12px;
}

.module-calculator_input label {
    display: inline-block;
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 5px;
}

.module-calculator_input input[type="checkbox"]+label {
    margin: 0;
}

.module-calculator_input-row {
    padding-bottom: 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 #30522B;
        border-bottom: 2px solid #30522B;
    }
    .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: normal;
    background: #454554;
}

.module-committee .module_item {
    padding: 0;
}

.module-committee .module_item:last-child {
    border-bottom: 1px solid #dddddd;
}

.module-committee .grid_col {
    padding: 20px;
    text-align: center;
}
.module-committee .module_header .grid_col{
    padding: 13px 20px;
    line-height: 1.2;
    color: #ffffff;
}
.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 p {
    margin: 0;
}

.module-committee_bio p:not(:last-of-type) {
    margin-bottom: 16px;
}

.module-committee_legend-container {
    padding: 20px 15px;
}

.module-committee_legend {
    display: inline-block;
    margin-right: 30px;
}

.module-committee_legend i {
    margin-right: 5px;
}
.module-committee_category .module_header i:before{
    color: #3E6D91;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: bold;
}
@media only screen and (max-width: 768px){
    .module-committee .module_container--tablet .module_header .grid_col:last-child,
    .module-committee .module-committee_icon {
        text-align: right;
    }
    .module-committee .module_header{
        background: transparent;
    }
    .module-committee .module_header .grid_col{
        color: #30522B;
        font-size: 20px;
        font-size: 2rem;
        text-transform: none;
        font-family: "PT Serif", sans-serif;
        line-height: 1.2;
        padding: 18px 0px;
        font-weight: bold;
    }
    .module-committee .grid_col{
        padding: 20px 0;
    }
    .module-committee .module_item{
        border: 0;
    }
    .module-committee .module-committee_category + .module-committee_category,
    .module-committee .module_item:first-child{
        border-top: 1px solid #dddddd;
    }
    .module-committee .module_item:last-child{
        border-bottom: 0;
    }
    .module-committee .module_container--tablet{
        border-top: 1px solid #dddddd;
        border-bottom: 1px solid #dddddd;
    }
}
@media only screen and (max-width: 480px){
    .module-committee_legend-container{
        padding: 20px 0px;
    }
    .module-committee_legend-container .module-committee_legend + .module-committee_legend {
        margin-top: 10px;
        display: block;
    }
}
/*----- Download List Module -----*/

.module-downloads .module_nav {
    display: none;
}

.module-downloads .module_item {
    padding: 15px 0;
}

.module-downloads_thumbnail,
.module-downloads_description,
.module-downloads_date {
    display: none;
}

.module-downloads_title {
    position: relative;
}

.module-downloads_title-link {
    margin: 0 20px 0 0;
}

.module-downloads_title-link:before {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
}


/*--------- Event Module ---------*/

.module-event .module_link,
.module-event-details .module_link {
    position: relative;
    line-height: 1.2;
    padding-left: 28px;
    margin-bottom: 15px;
}

.module-event .module_link:before,
.module-event-details .module_link:before {
    position: absolute;
    left: 0;
    top: -1px;
}

.module-event .module_location,
.module-event .module_speakers h4,
.module-event .module_body {
    display: none;
}

.module-event .module_options {
    margin-bottom: 0;
    padding-bottom: 35px;
}

.module-event-archive .module_item {
    padding: 0;
}

.module-event-archive .module_title,
.module-slideshow .module_title,
.module-event-upcoming .module_title {
    text-align: left;
}

.module-event-upcoming {
    padding-left: 40px;
}

.module-event-upcoming .module_rss {
    margin-top: 10px;
}

.module-event-archive .module_item~.module_item {
    border: 0;
    margin-top: 15px;
}

.module-event-archive .module_item .module_item-wrap {
    padding: 25px 20px 10px 20px;
}

.module-event-details .module_speakers h4 {
    display: none;
}


/*FIx Reminder on Mobile*/

.module-event-details .module_reminder .module_label {
    margin-right: 8px;
}

@media only screen and (max-width: 767px) {
    .module-event-details .module_reminder .module_label {
        margin-bottom: 10px;
        display: block;
    }
    .module-event-details .module_reminder-email {
        margin-bottom: 10px;
    }
    .module-event-details .module_reminder .dropdown,
    .module_reminder .module_input.module_reminder-email {
        margin-bottom: 25px;
    }
}

@media only screen and (max-width: 480px) {
    .module-event-details .module_reminder-email {
        width: 100%;
    }
}

.module-event-latest .module_container--content {
    margin-bottom: 20px;
}

.module-event-latest .module_item {
    margin: 25px 0;
    border: none;
    text-align: left;
    padding-top: 0;
    padding-bottom: 0;
}

.module-event-latest .module_item:last-child {
    padding-bottom: 25px;
}

.module-event-latest.module-event-list .module_item:first-child {
    padding-top: 0;
    margin-top: 0;
}

@media only screen and (max-width: 768px) {
    .module-event-latest .module_item:first-child {
        width: 100%;
    }
}

.module-event-latest .module_item.grid_col {
    padding-left: 20px;
}

.module-event-latest .module_item-wrap {
    padding: 30px;
    background-color: #f6f6f6;
}

.module-event-latest .module_links {
    margin: 0;
}

.module-event-latest.background--grey .module_item-wrap {
    background-color: #fff;
}

.module-event-latest.module-event-list .module_item {
    padding-left: 0;
    padding-top: 25px;
}

.module-event-latest.module-event-list .module_item+.module_item {
    border-top: 1px solid #59596C;
}

.module-event-latest.module-event-list .module_item:last-child {
    border-bottom: 1px solid #59596C;
}

.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;
}

.module-event-calendar_splash i {
    font-size: 40px;
    font-size: 4rem;
    color: #30522B;
}

.module-event-calendar_splash p {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.2;
}

.module-event-calendar_controls {
    padding: 20px 15px;
    background-color: #30522B;
    font-weight: bold;
    color: #fff;
}

.module-event-calendar_previous-month,
.module-event-calendar_month,
.module-event-calendar_next-month {
    display: inline-block;
}

.module-event-calendar_previous-month,
.module-event-calendar_next-month {
    cursor: pointer;
}

.module-event-calendar_previous-month {
    float: left;
}

.module-event-calendar_next-month {
    float: right;
}

.module-event-calendar_day-container {
    border-bottom: 1px solid rgba(0, 111, 186, 0.2);
}

.module-event-calendar_day {
    position: relative;
    width: 14.285%;
    margin: 0;
    padding: 8px 0 25px;
    border-top: 1px solid rgba(0, 111, 186, 0.2);
    border-left: 1px solid rgba(0, 111, 186, 0.2);
}

.module-event-calendar_day.calendar-dow-6 {
    border-right: 1px solid rgba(0, 111, 186, 0.2);
}

.module-event-calendar_day--name {
    padding: 15px 0 10px;
    border: none;
}

.module-event-calendar_day--today {
    background: #f6f6f6;
}

.module-event-calendar_day--event {
    cursor: pointer;
}

.module-event-calendar_day--event:after {
    content: "";
    position: absolute;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: block;
    height: 4px;
    background-color: #30522B;
}

.module-event-calendar_day--selected {
    background-color: #30522B;
    color: #fff;
}

.module-event-calendar_day--selected:after {
    background-color: #fff;
}

.module-event-calendar_day--adjacent-month {
    color: rgba(51, 51, 51, 0.1);
    pointer-events: none;
}

.module-event-calendar_day--adjacent-month:after {
    content: none;
}

@media only screen and (max-width: 480px) {
    .module-event-calendar_day {
        display: inline-block;
    }
}

.module-event-calendar .module_item {
    padding: 0;
}

.module-event-calendar .module_date-time,
.module-event-calendar .module_headline {
    margin-bottom: 20px;
}

.module-event-calendar .module_add-to-calendar {
    margin: 0;
}

@media only screen and (max-width: 768px) {
    .module-event-calendar {
        display: block;
    }
    .module-event-calendar_calendar-container,
    .module-event-calendar_event-container {
        display: block;
        width: 100%;
    }
    .module-event-calendar_calendar-container {
        padding-right: 0;
    }
    .module-event-calendar_event-container {
        margin-top: 20px;
    }
}

@media only screen and (max-width: 480px) {
    .module-event-archive .module_options-label,
    .module-event-archive .module_options-select {
        display: inline-block;
        width: auto;
    }
}


/*---------- FAQ Module ----------*/
.module-faq .toggle-all{
    margin-bottom: 40px;
}
.module-faq_question {
    margin-top: 0;
    cursor: pointer;
    position: relative;
    color: #30522B;
    font-size: 20px;
    font-size: 2rem;
    text-transform: none;
    font-family: "PT Serif", sans-serif;
    padding-right: 55px;
    line-height: 1.2;
}
.module-faq_question: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: "\edc2";
    position: absolute;
    right: 20px;
    top: 4px;
    color: #3E6D91;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: bold;
}
.js--active .module-faq_question:after {
    content: "\edba";
}
.module-faq_answer{
    padding: 10px 50px 20px 0;
}
.module-faq_answer p {
    margin: 0;
    padding: 0 0 10px;
}
.module-faq .module_item,
.module-faq .module_item~.module_item {
    border-top: 1px solid #dddddd;
}
.module-faq .module_item:last-child{
    border-bottom: 1px solid #dddddd;
}
.module-faq .toggle-all a:before {
    content: "Show all";
}

.module-faq .toggle-all.js--active a:before {
    content: "Hide all";
}
.module-faq .module_item{
    padding: 20px 0 5px;
}

/*--- Financial Report Modules ---*/
.module-financial-year .module_title{
    text-align: left;
}
.module-financial-year .module_options {
    text-align: left;
}
.module-financial-year .module_cover {
    margin-bottom: 15px;
}
.module-financial-year .module_cover img {
    display: inline-block;
    vertical-align: top;
    border: 1px solid #cccccc;
}
.module-financial-year .module-financial_annual-archive .module_cover img {
    max-width: 180px;
}
@media only screen and (max-width: 1024px) {
    .module-financial-year .module-financial_annual-archive .module_cover img {
        max-width: none;
    }
}
.module-financial-year .module_item {
    padding: 0;
}
.module-financial-year .module_item ~ .module_item {
    border: none;
}
.module-financial-year .module_links {
    margin: 0;
}
.module-financial-year .module-financial_year {
    text-align: center;
}
.module-financial-year .module_link {
    position: relative;
    line-height: 1.2;
    padding-left: 28px;
}
.module-financial-year .module_link:before {
    position: absolute;
    left: 0;
    top: -1px;
}

@media only screen and (max-width: 768px) {
    .module-financial-year .module-financial_annual-archive {
        margin-top: 25px;
    }
}
@media only screen and (min-width: 481px){
    .module-financial-year .module-financial_annual-latest .module_links {
        padding-top: 45px;
    }
}
.module-financial-quarter .module_item {
    padding: 0;
}

.module-financial-quarter .module_item~.module_item {
    border: none;
}

.module-financial-quarter .module_item.js--active h3:after {
    content: "\ed5e";
}

.module-financial-quarter .module_links {
    margin: 0;
    padding: 15px;
}

.module-financial-quarter .module_links>div {
    display: block;
}

.module-financial-quarter .module_link {
    margin-bottom: 10px;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: normal;
    text-transform: none;
}

.module-financial-quarter .module-financial_year-text {
    padding: 20px 15px;
    margin-bottom: 10px;
    background-color: #30522B;
    color: #fff;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
    cursor: pointer;
}

.module-financial-quarter .module-financial_year-text:after {
    float: right;
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ed5d";
}

.module-financial-table_header {
    background-color: #454554;
    color: #fff;
}

.module-financial-table_header-year-container {
    text-align: center;
}

.module-financial-table_header-year,
.module-financial-table_header-category.grid_col {
    padding: 13px 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: 15px;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: normal;
}

.module-financial-table_item~.module_item {
    margin-right: 5px;
}

.module-financial-table_item--empty {
    opacity: 0.1;
}

@media only screen and (max-width: 768px) {
    .module-financial-table_item {
        margin-right: 10px;
    }
}

@media only screen and (max-width: 480px) {
    .module-financial-table_item {
        margin: 5px;
    }
}

.module-financial-table .slick-slider {
    display: inline-block;
    padding: 0;
}

.module-financial-table .slick-slide:focus {
    outline: none;
}

.module-financial-table .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    cursor: pointer;
    z-index: 10;
}

.module-financial-table .slick-prev {
    left: 10px;
}

.module-financial-table .slick-next {
    right: 10px;
}

.module-financial-table .slick-disabled {
    opacity: 0.1;
    cursor: default;
}

.module-financial-mashup .module_body {
    max-height: 300px;
    overflow: hidden;
    position: relative;
}

.module-financial-mashup .module_body>*:first-child,
.module-financial-mashup .module_body>style+p {
    margin-top: 0;
}

.module-financial-mashup .module_body:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50px;
    z-index: 1;
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0.5) 0%, white 70%, white 100%);
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.5) 0%, white 70%, white 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, white 70%, white 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#70ffffff', endColorstr='#ffffff', GradientType=0);
}

.module-financial-mashup .module-financial-mashup_documents .module_links+h4 {
    margin-top: 30px;
}

.module-financial-mashup .module-financial-mashup_documents .module_links>div {
    background-color: #f6f6f6;
    padding: 15px;
    margin-bottom: 1px;
}

.module-financial-mashup .module-financial-mashup_documents .module_links .module_link {
    margin: 0;
}

.module-financial-mashup .q4-icon_chevron-right {
    font-size: 10px;
    font-size: 1rem;
    margin-left: 5px;
}


/*------ Formbuilder Module ------*/

.module-form--custom .module_container--content {
    display: none;
}

.module-form--custom .module_container--content.js--visible {
    display: block;
}

.module-form .module_container--content {
    margin-left: -20px;
}

@media only screen and (max-width: 768px) {
    .module-form .module_container--content {
        margin-left: 0;
    }
}

.module-form .module_error-container li[style="visibility: hidden;"] {
    display: none;
}

.module-form .module_required {
    margin-left: 3px;
}

.module-form .module_container--captcha>div {
    margin: 0;
    padding: 0;
}

.module-form .module_container--captcha>div .ErrorMessage {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    font-size: 1.4rem;
    color: #b72121;
}

.module-form .module_container--captcha>div .ErrorMessage[style="visibility: hidden;"] {
    display: none;
}

.module-form_item {
    display: inline-block;
    width: 50%;
    margin-bottom: 20px;
    padding-left: 20px;
    vertical-align: top;
}

.module-form_item>label,
.module-form_item legend {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 14px;
    font-size: 1.4rem;
}

.module-form_item legend {
    float: left;
    margin-bottom: 15px;
    font-size: 16px;
    font-size: 1.6rem;
}

.module-form_item legend~ul {
    clear: both;
    padding-left: 10px;
}

.module-form_item ul li:not(:last-of-type) {
    padding-bottom: 5px;
}

.module-form_item--document-request,
.module-form_item--are-you-an-investor {
    width: 100%;
}

@media only screen and (max-width: 768px) {
    .module-form_item {
        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: #454554;
    font-weight: normal;
}

.module-glossary .module_header table a[href] {
    color: #30522B;
}


/*---------- 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: "Open Sans", sans-serif;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 0;
}

@media only screen and (max-width: 480px) {
    .module-job-details_description label:after {
        content: ":";
    }
    .module-job-details_description input {
        display: block;
        float: none;
        margin-top: 5px;
    }
}

.module-job-details .grid_col {
    padding: 15px 20px;
}

.module-job-application_table {
    display: block;
    width: 100%;
    margin-left: -20px;
    font-size: 0;
}

.module-job-application_table tr {
    display: inline-block;
    width: 50%;
    margin-bottom: 20px;
    padding-left: 20px;
    vertical-align: top;
    font-size: 16px;
    font-size: 1.6rem;
}

.module-job-application_table tr:last-child {
    margin-bottom: 0;
}

.module-job-application_table tr.module-job-application_cover-letter-text,
.module-job-application_table tr.module-job-application_resume-text {
    width: 100%;
}

.module-job-application_table tr td {
    display: block;
    position: relative;
}

.module-job-application_table tr label {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 14px;
    font-size: 1.4rem;
}

@media only screen and (max-width: 768px) {
    .module-job-application_table {
        margin-left: 0;
    }
    .module-job-application_table tr {
        width: 100%;
        padding-left: 0;
    }
}

.module-job-application .module_required {
    font-size: 14px;
    font-size: 1.4rem;
}


/*----- Miscellaneous Modules ----*/
.module-bg-boxes img{
    vertical-align: bottom;
    width: 100%;
}
.module_subtitle{
    margin: 0 auto 50px auto;
    max-width: 700px;
}
.module_subtitle p{
    margin-top: 0;
}
ul.module_pagination {
    list-style: none;
    padding: 25px 0 0 0;
    margin: 0;
    border-top: 1px solid #dddddd;
}

ul.module_pagination li {
    color: #96A394;
    display: inline-block;
    font-size: 22px;
    font-size: 2.2rem;
    font-family: "PT Serif", sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all .3s ease;
}

ul.module_pagination li.pager-active {
    color: #44633F;
}

ul.module_pagination li+li {
    margin-left: 12px;
}

.module-tab-trigger {
    text-align: center;
    margin-top: 35px;
    margin-bottom: 35px;
}

.module-tab-trigger .module_container--inner {
    max-width: 900px;
    margin: 0 auto;
}

.module-tab-trigger h3 {
    color: #CCC9C4;
    font-size: 22px;
    font-size: 2.2rem;
    margin: 0;
    padding: 10px 20px;
    cursor: pointer;
}

.module-tab-trigger .grid_col+.grid_col h3 {
    border-left: 1px solid #AD966E;
}

.module-tab-trigger h3.js--selected {
    color: #30522B;
}

@media only screen and (max-width: 1023px) {
    .module-tab-trigger h3 {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

@media only screen and (max-width: 767px) {
    .module-tab-trigger h3 {
        padding-top: 8px;
        padding-bottom: 8px;
    }
    .module-tab-trigger .grid_col {
        width: 100%;
    }
    .module-tab-trigger .grid_col+.grid_col h3 {
        border-left: 0;
    }
}

.module-map.module-tab {
    background-color: #F7F7F7;
}

.pin {
    color: #3E6D91;
    font-size: 24px;
    font-size: 2.4rem;
    transition: all .2s ease;
    position: absolute;
}
.pin.q4-icon_star-fill{
    color: #30522B;
    z-index: 1;
}
.pin:hover {
    color: #D05E33;
    z-index: 1;
    font-size: 26px;
    font-size: 2.6rem;
}

.module-map_container .pin:focus {
    text-decoration: none !important;
}

.module-map_description {
    display: none;
}

.fancybox-container .module-map_description {
    max-width: 500px;
    padding-top: 30px;
    padding-bottom: 30px;
    width: 100%;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
}

.module-map_container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.module-map_container img {
    width: 100%;
    height: 100%;
}
@media only screen and (max-width: 800px){
    .fancybox-container .module-map_description{
        max-width: 80%;
    }
}
@media only screen and (max-width: 767px) {
    .module-map_container .pin {
        font-size: 18px;
        font-size: 1.8rem;
    }
    .fancybox-container .module-map_description{
        font-size: 16px;
        font-size: 1.6rem;
    }
}
@media only screen and (max-width: 480px){
    .module-map_container .pin {
        font-size: 13px;
        font-size: 1.3rem;
    }
}

/*Baked Goods Map Pins Position*/

.pin--lodi{
    left: 2.5%;
    bottom: 49%;
}

.pin--visalia{
    bottom: 41%;
    left: 5%;
}

.pin--fridley{
    bottom: 66%;
    right: 52%;
}

.module-map_container .pin--womelsdorf{
    right: 25%;
    bottom: 57%;
}

.module-map_container .pin--brantford {
    right: 34%;
    bottom: 62%;
}

.pin--forest-park{
    bottom: 29%;
    right: 35%;
}

.pin--tonawanda{
    right: 30%;
    bottom: 62%;
}

.pin--carrollton{
    
right: 57%;
    bottom: 26%;
}



.module-map_container .pin--georgetown {
    right: 33.5%;
    bottom: 64%;
}

.pin--south-beloit{
    right: 46%;
    bottom: 56%;
}

.module-map_container .pin--hanover{
    right: 27%;
    bottom: 54%;
}

.pin--milwaukee{
    bottom: 60%;
    right: 44%;
}

.module-map_container .pin--kitchener {
    right: 32.5%;
    bottom: 64.5%;
}

.pin--princeton{
    right: 42%;
    bottom: 40%;
}

.module-map_container .pin--lancaster-pennsylvania{
    right: 26%;
    bottom: 55%;
}

.pin--lakeville{
    bottom: 63%;
    right: 51%;
}

.pin--battle-creek{
    bottom: 58%;
    right: 39%;
}

.pin--lancaster-ohio{
    bottom: 50%;
    right: 35%;
}

.pin--sparks{
    left: 6%;
    bottom: 52%;
}

.pin--ogden{
    bottom: 53%;
    left: 19%;
}


/*END Baked Goods Map Pins Position*/

/*Beverages Map Pins Position*/

.pin--delta {
    bottom: 88.5%;
    left: 6.5%;
}

.pin--cambridge {
    right: 24.5%;
    bottom: 50%;
}

.pin--richmond {
    right: 31%;
    bottom: 67%;
}

.pin--wayland {
    right: 40%;
    bottom: 59%;
}

.pin--pecatonica {
    bottom: 56%;
    right: 45%;
}

.pin--manawa {
    bottom: 65%;
    right: 46%;
}

.pin--new-hampton {
    right: 50%;
    bottom: 58%;
}

.pin--medina {
    bottom: 63%;
    right: 29%;
}


/*END Beverages Map Pins Position*/


/*Snacks Map Pins Position*/

.pin--dothan {
    right: 37%;
    bottom: 22%;
}

.pin--el-paso {
    bottom: 20%;
    right: 72%;
}

.pin--minneapolis {
    bottom: 64%;
    right: 53%;
}

.pin--robersonville {
    right: 25%;
    bottom: 39%;
}


/*END Snacks Map Pins Position*/


/*Meal Solutions Map Pins Position*/

.pin--winona {
    bottom: 64%;
    right: 33%;
}

.pin--buckner {
    bottom: 46%;
    right: 39%;
}

.pin--green-bay {
    bottom: 64%;
    right: 44%;
}

.pin--atlanta {
    bottom: 33%;
    right: 36%;
}

.pin--faison {
    right: 25%;
    bottom: 41%;
}

.pin--chicago {
    bottom: 57%;
    right: 44%;
}

.pin--north-east-pennsylvania {
    right: 32%;
    bottom: 60%;
}

.pin--dixon {
    right: 46%;
    bottom: 55%;
}

.pin--san-antonio {
    bottom: 15%;
    right: 60%;
}

.pin--tolleson {
    bottom: 32%;
    right: 83%;
}

.pin--cedar-rapids {
    right: 49%;
    bottom: 56%;
}

.pin--excelsior-springs {
    bottom: 47%;
    right: 53%;
}

.pin--columbia {
    right: 29%;
    bottom: 33%;
}

.pin--fara-gera {
    bottom: 22%;
    right: 14%;
}

.pin--kenosha {
    right: 45%;
    bottom: 61%;
}

.pin--verolanuova {
    bottom: 21.5%;
    right: 12%;
}

.module-map--meal-solutions .pin--medina {
    bottom: 63%;
    right: 30%;
}

.module-map--meal-solutions .pin--manawa {
    bottom: 65%;
    right: 46%;
}
.pin--oakbrook {
    top: 41%;
    left: 53.5%;
}

/*END Meal Solutions Map Pins Position*/

.module-production-facilities .module_container--inner {
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
}

.module-links--boxes ul.module-links_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.module-links--boxes li {
    vertical-align: top;
    display: inline-block;
    margin-right: -0.25em;
    padding: 15px;
    background: #cccccc;
    height: 278px;
    width: 23.8%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-start;
    z-index: 1;
}

.module-links--boxes li:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #000000;
    opacity: 0;
    z-index: -1;
    transition: all .5s ease;
}

.module-links--boxes li:hover:before {
    opacity: 0.2;
}

.module-links--boxes li:first-child {
    background-image: url('../images/sec-filings-ql.jpg');
}

.module-links--boxes li:nth-child(2) {
    background-image: url('../images/mae-mu-kID9sxbJ3BQ-unsplash.jpg');
}

.module-links--boxes li:nth-child(3) {
    background-image: url('../images/transfer-agent-ql2.jpg');
    background-position: center right;
}

.module-links--boxes li:nth-child(4) {
    background-image: url('../images/annual-report-ql2.jpg');
}

.module-links--boxes li a {
    color: #ffffff;
    font-size: 22px;
    font-size: 2.2rem;
    font-weight: bold;
    font-family: "PT Serif", sans-serif;
    line-height: 1.2;
}

.module-links--boxes li a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
}

@media only screen and (max-width: 1023px) {
    .module-links--boxes li {
        width: 48.8%;
        margin-bottom: 3.2%;
        min-height: 120px;
        height: auto;
    }
    .pane--content .module.module-links--boxes {
        padding-bottom: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .module-links--boxes li {
        width: 100%;
    }
}

.module-script {
    display: none;
}

.module-slideshow .module_link {
    margin-bottom: 0;
}

.module-slideshow_ratio {
    padding-bottom: 56.25%;
    /* this should be changed with aspecRatio option in widget */
    position: relative;
}

.module-slideshow_viewer:not(.grid_col) {
    display: inline-block;
    width: 100%;
    max-width: 640px;
}

.module-slideshow_viewer:not(.grid_col):not(:last-child) {
    margin-bottom: 25px;
}

.module-slideshow_title {
    margin-bottom: 10px;
    display: none;
}

.module-slideshow .module_links>*+* {
    margin-top: 15px;
}

.module-slideshow_link {
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: bold;
    text-transform: uppercase;
}

.module-slideshow iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
}

.module-rss p+h2 {
    margin: 40px 0 30px;
}


/*Module Box with Image*/

.module-box-with-image_text {
    padding: 50px 70px 50px 50px;
    border: 2px solid #3E6D91;
    width: 59%;
    margin-right: -0.25em;
    vertical-align: top;
    display: inline-block;
    margin-top: 35px;
}

.module-box-with-image_text p {
    color: #3E6D91;
    font-size: 21px;
    font-size: 2.1rem;
    line-height: 30px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.module-box-with-image_image {
    width: 45%;
    vertical-align: top;
    display: inline-block;
    margin-right: -0.25em;
    margin-left: -4%;
}

.module-box-with-image_image img {
    width: 100%;
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.26);
}

@media only screen and (max-width: 1023px) {
    .module-box-with-image_text {
        padding: 20px 50px 20px 20px;
    }
    .module-box-with-image_text p {
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 1.5;
    }
}

@media only screen and (max-width: 767px) {
    .module-box-with-image_text {
        width: 100%;
        padding: 20px 20px 60px 20px;
        margin: 0;
    }
    .module-box-with-image_image {
        width: 100%;
        margin: -35px 0 0 0;
        text-align: center;
        padding: 0 20px;
    }
    .module-box-with-image_image img {
        width: auto;
    }
}


/*END Module Box with Image*/

.pane--content .module--full-width .module_container--outer {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}


/*Module Careers Box*/
.module-careers-box_image{
    height: 100%;
    background-image: url(../images/careers-box-img.jpg);
    background-position: 72% 0;
    background-repeat: no-repeat;
}
@media only screen and (min-width: 1900px){
    .module-careers-box_image{
        background-size: 215%;
    }
    .module-careers-box .module-benefits-accordion{
        min-height: 565px;
    }
}
.module-careers-box img {
    width: 100%;
}

.module-careers-box h3 {
    margin-top: 0;
    font-size: 22px;
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #454554;
    max-width: 940px;
}
.module-benefits-accordion .module-faq_answer{
    max-width: 990px;
}
.grid--flex .grid_col.module-careers-box_gradient {
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(222, 219, 214, 1) 100%);
    padding: 60px;
}

.module-careers-box img {
    width: 100%;
    display: block;
}

@media only screen and (max-width: 1280px) {
    .module-careers-box h3 {
        margin-bottom: 15px;
        font-size: 18px;
        font-size: 1.8rem;
    }
    .module-careers-box p {
        font-size: 13px;
        font-size: 1.3rem;
    }
    .grid--flex .grid_col.module-careers-box_gradient {
        padding: 20px;
    }
    .module-careers-box_image{
        background-position: top;
        background-size: cover;
        background-repeat: no-repeat;
    }
    .module-careers-box .grid_col {
        width: 100%;
    }
    .module-careers-box .grid--flex {
        display: block;
    }
    .module-careers-box_image{
        height: 500px;
    }
}
@media only screen and (max-width: 1023px){
    .module-careers-box_image{
        height: 300px;
    }
}
/*END Module Careers Box*/


/*Careers Video*/

.module-video {
    background: url('../design/banner/intership-video-bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.module-video_box {
    position: relative;
    z-index: 1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 30px;
    background-color: #ffffff;
    min-height: 340px;
    max-width: 873px;
    margin: 0 auto;
}
.module-video_box--internship{
    background-image: url('../images/table.png');
}
.module-video_box--career{
    background-image: url('../images/career-video-thumb.jpg');
}
.module-video_box:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #000000;
    opacity: 0;
    z-index: -1;
    transition: all .6s ease;
}

.module-video_box:hover:before {
    opacity: 0.2;
}

.module-video_box a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 0;
}

.module-video_box a:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 55px 0 55px 104px;
    border-color: transparent transparent transparent #ffffff;
    opacity: 0.5;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 1s ease;
}

.module-video_box:hover a:after {
    opacity: 1;
}

.module-video .grid_col:first-child {
    padding-right: 40px;
}
.module-video .grid_col:last-child {
    padding-left: 40px;
    border-left: 1px solid #ffffff;
}

@media only screen and (max-width: 1023px) {
    .module-video_box {
        max-width: 100%;
    }
    .module-video .grid_col{
        width: 100%;
    }
    .module-video .module_title.module_title--bottom{
        margin-top: 20px;
    }
    .module-video .grid_col + .grid_col{
        padding-top: 70px;
        border-left: 0;
    }
    .module-video .grid_col:first-child{
        padding-right: 0;
    }
    .module-video .grid_col:last-child{
        padding-left: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .module-video_box {
        min-height: 250px;
    }
    .module-video_box a:after {
        border-width: 34px 0 34px 70px;
    }
}


/*END Careers Video*/


/*------ Navigation Modules ------*/

.nav_close {
    display: none;
}

.nav--main .level4 {
    display: none !important;
}

.nav--main {
    text-align: right;
    padding-right: 20px;
}

.nav--main .level2 {
    text-align: left;
}


/**/

.nav--main .level3 {
    position: absolute;
    top: 100%;
    background: #ffffff;
    padding: 25px;
    min-width: 197px;
    box-shadow: 0 2px 4px 3px rgba(0, 0, 0, 0.12);
    right: 0;
    display: none;
}

.nav--main .level3 li+li {
    margin-top: 20px;
}

.nav--main .level3 li a {
    font-weight: normal;
    white-space: nowrap;
}

.nav--main .level1>li,
.nav--main .level2>li,
.nav--main .level2 {
    display: inline-block;
    vertical-align: top;
}

.nav--main .level1>li,
.nav--main .level2>li {
    position: relative;
}

.nav--main .level2 {
    margin-left: 25px;
}

.nav--main .level2>li {
    margin-right: 25px;
}

.nav--main li a {
    color: #454554;
    font-weight: bold;
    font-size: 16px;
    font-size: 1.6rem;
}

.nav--main li a:hover,
.nav--main li a:focus {
    text-decoration: none !important;
    color: #5A7C6B;
}

.nav--main .level2>li.expanded>a,
.nav--main .level2>li.selected>a,
.nav--main .level1>li.selected>a {
    color: #5A7C6B;
}

.nav--main .level1>li>a,
.nav--main .level2>li>a {
    padding: 50px 0 34px 0;
    display: inline-block;
}


/**/

.nav--secondary {
    text-align: center;
    font-weight: 700;
    color: #454554;
}

.nav--secondary .level1>li,
.nav--secondary .level2>li {
    display: none;
}

.nav--secondary .level1>li.selected,
.nav--secondary .level1>li.expanded,
.nav--secondary .level2>li.selected,
.nav--secondary .level2>li.expanded {
    display: block;
}

.nav--secondary .level1>li.selected>a,
.nav--secondary .level1>li.expanded>a,
.nav--secondary .level2>li.selected>a,
.nav--secondary .level2>li.expanded>a {
    display: none;
}

.nav--secondary .level3 {
    display: table;
    width: 100%;
}

.nav--secondary .level3>li {
    position: relative;
    display: table-cell;
    text-align: center;
}

.nav--secondary .level3>li a {
    color: #454554;
}

.nav--secondary .level3>li:hover {
    background: rgba(204, 201, 196, 0.3);
}

.nav--secondary .level3>li.selected>a,
.nav--secondary .level3>li.expanded>a {
    color: #AD966E;
}

.nav--secondary .level3>li a {
    display: block;
    padding: 20px;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.2;
}

.nav--secondary .level3>li>a {
    padding-top: 30px;
    padding-bottom: 30px;
}

.nav--secondary .level3>li a:focus {
    outline: none;
}

.nav--secondary .level4 {
    position: absolute;
    z-index: 100;
    top: 100%;
    left: 0;
    display: none;
    width: 100%;
    min-width: 200px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.12);
    background: #ffffff;
    padding-top: 20px;
    padding-bottom: 10px;
}

.nav--secondary .level4>li {
    text-align: left;
}

.nav--secondary .level4>li a {
    outline: none;
    color: #5A7C6B;
    padding-top: 0;
    line-height: 1.2;
}
.nav--secondary .level4>li.selected a{
    color: #AD966E;
}
.nav--mobile {
    display: none;
}
.nav--secondary br.hidden{
    display: block !important;
}
@media only screen and (max-width: 1200px) {
    .nav--main .level2 {
        margin-left: 15px;
    }
    .nav--main .level2>li {
        margin-right: 15px;
    }
    .nav--main li a {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

@media only screen and (max-width: 1024px) {
    .nav--secondary {
        display: none;
    }
    .nav--mobile {
        display: block;
    }
    .nav--mobile a {
        line-height: 1.2;
    }
    .nav--mobile a:focus {
        text-decoration: none !important;
    }
    .nav--mobile .level2 ul {
        display: none;
    }
    .nav--mobile .js--expanded>ul {
        display: block;
    }
    .nav--mobile .has-children>a {
        position: relative;
    }
    .nav--mobile .level1>.has-children>a:after {
        display: none;
    }
    .nav--mobile .level1>.has-children>a {
        color: #5A7C6B;
    }
    .nav--mobile .has-children>a: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: "\edc2";
    }
    .nav--mobile li.js--expanded>a:after {
        content: "\edba";
    }
    .nav--mobile .level1>li>a,
    .nav--mobile .level2>li>a {
        display: block;
        color: #454554;
        padding: 15px 15px;
        font-size: 16px;
        font-weight: 700;
        padding-right: 40px;
        line-height: 1.2;
    }
    .nav--mobile .level2>li>a:after {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 18px;
        color: #AD966E;
        font-weight: bold;
    }
    .nav--mobile .level1>li.js--expanded>a,
    .nav--mobile .level2>li.js--expanded>a {
        background: #E0E0E0;
    }
    .nav--mobile .level3 {
        background: #EFEEED;
        padding-left: 40px;
        padding-right: 20px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .nav--mobile .level3>li>a {
        color: #454554;
        padding: 10px 0;
        display: block;
        font-weight: 700;
    }
    .nav--mobile .level3>li.js--expanded>a {
        color: #AD966E;
    }
    .nav--mobile .level3 .has-children>a:after {
        padding-left: 10px;
        font-size: 13px;
        font-size: 1.3rem;
        font-weight: 700;
    }
    .nav--mobile .level4 {
        padding: 10px 0;
    }
    .nav--mobile .level4>li>a {
        font-weight: 700;
        padding: 8px 15px 8px 15px;
        display: block;
        line-height: 1.2;
    }
}

.nav--sitemap {
    max-width: 1180px;
    padding-left: 20px;
    padding-right: 20px;
    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: 2.4rem;
    color: #222;
    text-transform: uppercase;
}

.nav--sitemap .level2>li,
.nav--sitemap .level3>li,
.nav--sitemap .level4>li {
    padding: 10px 0;
}

.nav--sitemap .level2>li>a,
.nav--sitemap .level3>li>a {
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
    text-transform: uppercase;
}

.nav--sitemap .level2>li>a {
    margin-bottom: 5px;
}

.nav--sitemap .level3>li {
    padding-left: 15px;
}
.nav--sitemap .level4>li{
    padding-left: 30px;
}
.nav--sitemap .level4 {
    padding-top: 15px;
}
/*-------- News Module CSS -------*/

.module-news .module_header {
    display: block;
    color: #ffffff;
    background: #454554;
    font-size: 16px;
    font-size: 1.6rem;
    padding: 13px 0;
}

.module-news .module_options {
    float: right;
    margin-left: 20px;
}
.module-news .module_rss{
    margin-top: 10px;
    margin-left: 20px;
}
.module-news .module_options-label,
.module-news .module_options-select {
    margin-right: 0;
}

.module-news .module_header .grid_col:first-child>span,
.module-news .module_date-time .module_date-text {
    padding-left: 20px;
}

.module-news .module_nav {
    display: none;
}

.module-news .module_item {
    padding: 15px 0 5px;
}

.module-news .module_date-time {
    color: #454554;
    line-height: 1.2;
    padding-top: 5px;
}
@media (max-width: 1024px){
    .module-news .module_date-time,
    .module-news .module_headline{
        font-size: 14px;
        font-size: 1.4rem;
    }
    .module-news .module_date-time{
        padding-top: 7px;
    }
}
.module-news-latest .module_container--content {
    margin-bottom: 20px;
}

.module-news-latest .module_item {
    margin: 10px 0 25px;
    padding: 0 0 0 20px;
    border: none;
    text-align: left;
}

@media only screen and (max-width: 768px) {
    .module-news-latest .module_item:first-child {
        width: 100%;
    }
}

.module-news-latest .module_item-wrap {
    padding: 30px;
    background: #fff;
}

.module-news-latest .module_links {
    margin: 0;
}

.module-news-latest .module_link {
    color: #30522B;
}

.module-news-list .module_item {
    padding-left: 0;
    padding-top: 25px;
}

.module-news-list .module_item:first-child {
    padding-top: 0;
    margin-top: 0;
}

.module-news-list .module_item+.module_item {
    border-top: 1px solid #59596C;
}

.module-news-list .module_item:last-child {
    border-bottom: 1px solid #59596C;
    padding-bottom: 10px;
}

.module-news-details .module_view-all-link {
    display: inline-block;
    margin-bottom: 25px;
}

.module-news-details .module_view-all-link--bottom {
    margin-top: 25px;
    margin-bottom: 0;
}

.module-news-details_category {
    display: none;
}

.module-news-details ul {
    margin: 16px 0;
    padding-left: 32px;
    list-style-type: disc;
}

.module-news-details ul li {
    line-height: 1.5;
}
.module-news-details .module_body ol li{
    line-height: 1.5;
}
.module-news-details .module_body a {
    word-wrap: break-word;
}

.module-contacts-and-press .module_title {
    text-align: left;
}
.module-contacts-and-press p {
    line-height: 28px;
}
.module-contacts-and-press .grid--flex{
    align-items: flex-end;
}
.module-media-contacts p {
    margin-top: 0;
}
.module-media-contacts h4{
    margin-bottom: 5px;
}
@media only screen and (max-width: 1023px) {
    .module-contacts-and-press .module_container--inner>.grid{
        display: block;
    }
    .module-contacts-and-press .module_container--inner>.grid>.grid_col {
        width: 100%;
    }
    .module-contacts-and-press .module_container--inner>.grid>.grid_col+.grid_col .module {
        padding-top: 0;
    }
    .pane--content .module.module-media-contacts{
        padding-bottom: 55px;
    }
}

@media only screen and (max-width: 767px) {
    .module-news .module_header {
        display: none;
    }
    .module-news .module_date-time .module_date-text {
        padding-left: 0;
    }
    .module-news .grid_col {
        width: 100%;
    }
    .module-news .grid_col:before {
        content: attr(data-heading) ": ";
        font-weight: bold;
        padding-right: 5px;
    }
}
@media only screen and (max-width: 480px){
    .module-news .module_rss{
        margin-bottom: 20px;
    }
    .module-news .module_options{
        float: none;
        margin-left: 0;
    }
}

/*------ Person List Module ------*/

.module-person .module-person_res-photo-container,
.module-person .module_comma {
    display: none;
}

.module-person .module_item~.module_item,
.module-person .module_item {
    border-top: 0;
    padding: 0;
}

.module-person .module-person_photo-container {
    overflow: hidden;
    padding: 0 40px;
    text-align: center;
}

.module-person_name-container {
    padding: 35px 10px;
    margin-top: -25px;
    text-align: center;
    transition: all .5s ease;
}

.module-person .module-person_name {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: #5A7C6B;
    text-transform: uppercase;
}

.module-person_title {
    font-size: 14px;
    font-size: 1.4rem;
    display: block;
    font-style: italic;
    line-height: 1.5;
    padding-top: 3px;
}

.js--active .module-person_name-container {
    background: #EFEEED;
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.26);
}

.module-person_description-container {
    display: none;
    background: #EFEEED;
    position: relative;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: .5s ease
}
.module-person_info-container:before{
    height: 0;
    background: #EFEEED;
    height: 0;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0px;
    z-index: 1;
    overflow: hidden;
}
.js--active .module-person_description-container{
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.26);
}
.js--active .module-person_info-container:before {
    height: 12px;
}
.module-person_info-container {
    cursor: pointer;
    position: relative;
}

@media only screen and (min-width: 600px) {
    .module-person .module-person_description-container {
        width: calc(100% * 3 + 0px);
    }
    .module-person .module_item:nth-child(5n+1)  .module-person_description-container {
        left: 0;
    }
    .module-person .module_item:nth-child(5n+2)  .module-person_description-container {
        left: calc(100% * -1);
    }
    .module-person .module_item:nth-child(5n+3)  .module-person_description-container {
        left: calc(100% * -2);
    }
    .module-person .module_item:nth-child(5n+4)  .module-person_description-container {
        left: calc(100% * -1);
    }
    .module-person .module_item:nth-child(5n+5)  .module-person_description-container {
        left: calc(100% * -2);
    }
}

@media only screen and (max-width: 1023px) {
    .module-person .module-person_description-container {
        width: calc(100% * 2);
    }
    .module-person .module_item:nth-child(2n+1) .module-person_description-container {
        left: 0;
    }
    .module-person .module_item:nth-child(2n+2) .module-person_description-container {
        left: calc(100% * -1);
    }
    .module-person .module_item {
        width: 50%;
    }
}

@media only screen and (max-width: 599px) {
    .module-person .module_item {
        width: 100%;
    }
    .module-person .module_item .module-person_description-container {
        width: 100%;
        left: 0 !important;
        padding-top: 0;
    }
    .module-person .module-person_description>p:first-child {
        margin-top: 0;
    }
    .module-person_name-container {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

.module-person-accordion .module-person_name-container {
    padding: 20px 15px;
    margin-bottom: 10px;
    background-color: #30522B;
    color: #fff;
    cursor: pointer;
}

.module-person-accordion .module-person_name-container h3 {
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: bold;
    color: inherit;
    margin: 0;
}

.module-person-accordion .module-person_name-container h3:before {
    float: right;
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ed5d";
}

.module-person-accordion .module_item {
    padding: 0;
    border: 0 none;
}

.module-person-accordion .module_item.js--active h3:before {
    content: "\ed5e";
}

.module-person-accordion .module-person_name {
    margin-right: 10px;
}

.module-person-accordion .module-person_title {
    font-size: 14px;
    font-size: 1.4rem;
}

.module-person-accordion .module_comma {
    display: none;
}

.module-person-accordion .module-person_description-container {
    padding: 15px;
}

.module-person-accordion .module-person_photo-container {
    float: left;
    margin: 0 25px 15px 0;
}

@media only screen and (max-width: 768px) {
    .module-person-accordion .module-person_photo-container {
        float: none;
        margin: 0 auto 15px auto;
        text-align: center;
    }
}

.module-person-accordion .module-person_photo-container img {
    display: block;
    margin: auto;
}

.module-person-accordion .module-person_description>*:first-child {
    margin-top: 0;
}

.module-person-accordion .module-person_res-photo-container>span {
    margin-right: 10px;
}

@media only screen and (max-width: 768px) {
    .module-person-accordion .module-person_res-photo-container>span {
        display: block;
        margin: 0 0 10px 0;
    }
}

.module-person-details .module_title {
    display: none;
}

.module-person-details .module_comma {
    display: none;
}

.module-person-details_photo-container,
.module-person-details_name-container {
    display: inline-block;
    vertical-align: middle;
}

.module-person-details_photo-container {
    max-width: 30%;
    margin-right: 40px;
}

@media only screen and (max-width: 768px) {
    .module-person-details_photo-container {
        margin-right: 15px;
        margin-bottom: 35px;
    }
}

@media only screen and (max-width: 480px) {
    .module-person-details_photo-container {
        margin-right: 0;
        max-width: none;
    }
}

.module-person-details_name {
    display: block;
    margin-bottom: 10px;
    font-size: 36px;
    font-size: 3.6rem;
    color: #30522B;
}

.module-person-details_title {
    display: block;
    font-size: 24px;
    font-size: 2.4rem;
}

.module-person-details_description-container {
    margin-top: 40px;
}

.module-presentation .module_body {
    display: none;
}


/*------ Q4 Preview Toolbar ------*/

body.PreviewBody {
    margin: 0;
    background-position: 0;
}

body.PreviewBody .PreviewToolBar {
    position: fixed;
    top: 100%;
    bottom: auto;
    width: 100%;
    margin: 0;
    padding: 35px 20px;
    border: 0;
    background: #222;
    font-size: 0;
    text-align: left;
    color: #fff;
    z-index: 100;
}

body.PreviewBody .PreviewToolBar.js--open {
    top: auto;
    bottom: 0;
}

body.PreviewBody .PreviewToolBar .PreviewTrigger {
    position: absolute;
    top: 0;
    left: 10px;
    padding: 20px;
    background: #222;
    transform: translate(0, -100%);
    font-size: 24px;
    font-size: 2.4rem;
    cursor: pointer;
}

body.PreviewBody .PreviewToolBar .PreviewTrigger.js--active i:before {
    content: "\ed6d";
}

body.PreviewBody .PreviewToolBar .PreviewFloatLeft,
body.PreviewBody .PreviewToolBar .PreviewDateControls {
    display: inline-block;
    vertical-align: middle;
}

body.PreviewBody .PreviewToolBar .PreviewFloatLeft:before,
body.PreviewBody .PreviewToolBar .PreviewDateControls:before {
    font-size: 16px;
    font-size: 1.6rem;
    margin-right: 15px;
    line-height: 50px;
}

body.PreviewBody .PreviewToolBar .PreviewFloatLeft {
    float: none;
}

body.PreviewBody .PreviewToolBar .PreviewFloatLeft:before {
    content: "Select Preview Type:";
}

body.PreviewBody .PreviewToolBar .PreviewDateControls {
    float: right;
}

body.PreviewBody .PreviewToolBar .PreviewDateControls:before {
    content: "Select Preview Date:";
}

body.PreviewBody .PreviewToolBar img {
    display: none;
}

body.PreviewBody .PreviewToolBar input[type="radio"],
body.PreviewBody .PreviewToolBar label,
body.PreviewBody .PreviewToolBar input[type="text"],
body.PreviewBody .PreviewToolBar select,
body.PreviewBody .PreviewToolBar input[type="submit"] {
    display: inline-block;
    margin-right: 5px;
    font-family: "Open Sans", sans-serif !important;
    font-weight: 300;
    font-size: 14px;
    font-size: 1.4rem;
    text-transform: uppercase;
    vertical-align: baseline;
}

body.PreviewBody .PreviewToolBar input[type="text"],
body.PreviewBody .PreviewToolBar select,
body.PreviewBody .PreviewToolBar input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 15px 20px;
    border: 0;
    border-radius: 0;
}

body.PreviewBody .PreviewToolBar label+input[type="radio"] {
    margin-left: 15px;
}

body.PreviewBody .PreviewToolBar input[type="text"] {
    min-width: 110px;
}

body.PreviewBody .PreviewToolBar select {
    padding: 15px 35px 15px 20px;
    background: #fff url("../design/svg/q4-icon_chevron-down-black.svg") no-repeat right 10px center;
    background-size: 14px 14px;
}

body.PreviewBody .PreviewToolBar select::-ms-expand {
    display: none;
}

body.PreviewBody .PreviewToolBar input[type="submit"] {
    background: #30522B;
    color: #fff !important;
}

@media only screen and (max-width: 1024px) {
    body.PreviewBody .PreviewToolBar .PreviewFloatLeft,
    body.PreviewBody .PreviewToolBar .PreviewDateControls {
        display: block;
        float: none;
        margin-bottom: 15px;
    }
    body.PreviewBody .PreviewToolBar .PreviewFloatLeft:before,
    body.PreviewBody .PreviewToolBar .PreviewDateControls:before {
        display: block;
    }
}

@media only screen and (max-width: 768px) {
    body.PreviewBody .PreviewToolBar input[type="radio"],
    body.PreviewBody .PreviewToolBar label,
    body.PreviewBody .PreviewToolBar input[type="text"],
    body.PreviewBody .PreviewToolBar select,
    body.PreviewBody .PreviewToolBar input[type="submit"] {
        margin-bottom: 5px;
    }
}


/*-------- Search Modules --------*/

.module-search {
    text-align: right;
}

.module-search .module_container--inner {
    position: absolute;
    right: 20px;
    top: 100%;
    display: none;
}

.module-search .module_container--inner.js--revealed {
    display: block;
}

.module-search h2 {
    font-size: 0;
    cursor: pointer;
    opacity: 1;
    margin-bottom: 0;
    position: absolute;
    right: 20px;
    color: #ffffff;
    line-height: 1;
    transition: opacity .2s linear;
    color: #454554;
    bottom: 35px;
}

.module-search h2:after {
    font-family: 'q4-icons' !important;
    content: "\e903";
    font-size: 18px;
    font-size: 1.8rem;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.module-search h2.js--active {
    color: #AD966E;
}

.module-search_input::-webkit-input-placeholder {
    color: white;
}

.module-search_input::-moz-placeholder {
    color: white;
}

.module-search_input::-ms-input-placeholder {
    color: white;
}

.module-search_input[type="text"] {
    display: inline-block;
    padding: 7px;
    border: 0;
    background: #AD966E;
    font-size: 18px;
    font-size: 1.8rem;
    font-family: "PT Serif", sans-serif;
    padding: 20px;
    color: #ffffff;
    min-width: 320px;
}

.module-search_button {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 15px;
    height: 15px;
    padding: 0;
    border: 0;
    background: transparent url("../design/svg/q4-icon_buttons.svg");
    background-size: 300%;
    font-size: 0;
    cursor: pointer;
    display: none;
}

.module-search-result_link {
    margin-bottom: 15px;
    color: #5A7C6B;
}

.module-search-result_description {
    display: block;
    margin-bottom: 15px;
}

.module-search-result_description:after {
    content: "...";
}

.module-search-result_url {
    display: none;
}


/*-------- SEC Module CSS --------*/

.module-sec .module_header {
    display: block;
    background-color: #454554;
}
.module-sec .module_rss{
    margin-top: 13px;
}
.module-sec .module_header-text {
    padding: 13px 20px;
    color: #fff;
}
.module-sec .module_options > * {
    margin-bottom: 15px;
}
.module-sec .module_item {
    padding: 0;
}

.module-sec .module_item .grid_col {
    vertical-align: middle;
    padding: 17px 20px;
}

.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 #30522B;
    }
    .module-sec .module_item {
        padding: 15px 0;
    }
    .module-sec .module_item:first-child {
        border-top: 2px solid #30522B;
    }
    .module-sec .module_item:last-child {
        border-bottom: 2px solid #30522B;
    }
    .module-sec .module_item .grid_col {
        padding: 0 5px;
    }
    .module-sec .module_item+.module_footer {
        border-bottom: 2px solid #30522B;
    }
}
@media only screen and (max-width: 767px){
    .module-sec .module_options-label{
        display: block;
    }
}
.module-sec_download-list-item {
    display: inline-block;
}

.module-sec_download-list .module_link {
    margin: 0;
}

.module-sec_download-list .module_link:before {
    font-size: 24px;
    font-size: 2.4rem;
}

@media only screen and (max-width: 768px) {
    .module-sec_date,
    .module-sec_filer,
    .module-sec_filing,
    .module-sec_description {
        margin-bottom: 15px;
    }
}

.module-sec-details_date,
.module-sec-details_description {
    margin-bottom: 15px;
}

.module-sec-details_download-list-item {
    display: inline-block;
}

.module-sec-details_download-list .module_link {
    margin: 0;
}

.module-sec-details_download-list .module_link:before {
    font-size: 24px;
    font-size: 2.4rem;
}


/*---- Accessibility Skip Link ---*/

.module-skip_link {
    position: absolute;
    top: -100px;
    left: 50%;
    padding: 15px 20px;
    background: transparent;
    color: white;
    transform: translate(-50%, 0);
    transition: 0.5s ease-in-out;
    z-index: 100;
}

.module-skip_link:focus,
.module-skip_link:active,
.module-skip_link:hover {
    top: 0;
    background: #30522B;
    outline: 0;
}

.module-skip_link:visited {
    color: #fff;
}

.module-slider .module_container--outer {
    display: table;
    width: 100%;
    table-layout: fixed;
}
.module-slider .module_item-wrap{
    background: #5A7C6B;
    padding: 70px 20px;
    min-height: 300px;
    position: relative;
    z-index: 1;
}
.module-slider .module_item-wrap:before{
    content: "";
    position: absolute;
    max-width: 400px;
    background: url("../design/svg/tree-logo-bg.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    top: 20px;
    bottom: 20px;
    right: 20px;
    left: 20px;
    z-index: -1;
    margin: 0 auto;
    opacity: 0.2;
}
.module-slider .module_container--inner {
    display: table-cell;
    vertical-align: middle;
}

.module-slider .slick-slider {
    padding: 0;
}

.module-slider .slick-slider .slick-slide {
    float: none;
    display: inline-block;
    vertical-align: middle;
    padding: 0;
}

.module-slider .slick-arrow:before {
    font-size: 30px;
}

.module-slider .module_add-to-calendar-reveal {
    color: #fff;
}

.module-slider .module-slider_title h1 {
    margin: 0;
}

.module-slider .module_loader {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.module-slider_description {
    margin-top: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.module-slider_description .module_date-time {
    font-size: inherit;
}

.module-slider_description p {
    margin: 10px 0 0 0;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 24px;
}

.module-slider_description .module_links {
    margin-top: 10px;
    margin-bottom: 0;
}
.module-slider{
    min-height: 350px;
}
.module-slider .module_item{
    height: 480px;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}
@media only screen and (max-width: 1023px){
    .module-slider .module_item{
        height: 350px;
    }
}
.module-product_slider .slick-dots,
.module-slider .slick-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 8%;
    list-style: none;
    padding: 0;
    margin: 0;
}
.module-slider .slick-dots{
    bottom: 20px;
}
@media only screen and (max-width: 767px) {
    .module-product_slider .slick-dots,
    .module-slider .slick-dots {
        bottom: 20px;
    }
}

.module-product_slider .slick-dots button,
.module-slider .slick-dots button {
    font-size: 0;
    display: block;
    width: 10px;
    height: 10px;
    border: 2px solid transparent;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 4px;
    transition: .3s;
    cursor: pointer;
}

.module-product_slider .slick-dots .slick-active button,
.module-slider .slick-dots .slick-active button {
    background-color: transparent;
    border: 2px solid #ffffff;
}

.module-product_slider .slick-dots li,
.module-slider .slick-dots li {
    display: inline-block;
    margin: 5px;
}


/*------ Stock Chart Widget ------*/

.module-stock-chart .highcharts-legend-item:first-child path {
    stroke: #ad966e;
}

.module-stock-chart .highcharts-legend-item:first-child text {
    cursor: default !important;
}

.module-stock-chart .highcharts-series-0 {
    stroke: #ad966e;
}

.module-stock-chart .highcharts-series-0 path:first-child {
    stroke: #ad966e;
}

.module-stock-chart .highcharts-series-group .highcharts-series-2 path {
    stroke: #ad966e;
}

.module-stock-chart .highcharts-series-group .highcharts-series-3 path {
    stroke: #ad966e;
}

.module-stock-chart .highcharts-navigator rect {
    fill: rgba(173, 150, 110, 0.6);
}

.module-stock-chart .highcharts-navigator-handle {
    stroke: rgba(0, 0, 0, 0.05);
    fill: #f2f2f2;
    cursor: ew-resize;
}

.module-stock-chart .highcharts-navigator-handle-right rect,
.module-stock-chart .highcharts-navigator-handle-left rect {
    stroke-width: 0;
    fill: #ad966e;
}

.module-stock-chart .highcharts-navigator-handle-right path,
.module-stock-chart .highcharts-navigator-handle-left path {
    stroke: #fff;
}

.module-stock-chart .highcharts-highcharts-scrollbar g:first-of-type rect {
    fill: #ad966e;
    stroke: #ad966e;
}

.module-stock-chart .highcharts-range-selector {
    box-sizing: content-box;
}

.module-stock-chart .highcharts-range-input rect {
    stroke: #cccccc;
    fill: #f2f2f2;
}

.module-stock-chart .highcharts-button rect,
.module-stock-chart .highcharts-input-group rect {
    stroke-width: 0;
    fill: rgba(0, 0, 0, 0.05);
}

.module-stock-chart .highcharts-button text,
.module-stock-chart .highcharts-input-group text {
    fill: #454554;
}

.module-stock-chart .highcharts-container>svg>.highcharts-button {
    display: none;
}


/*------ Stock Header Module -----*/

.module-stock-header {
    color: #ffffff;
    margin-top: 50px;
}

.module-stock-header .module_container--outer {
    text-align: center;
    width: 100%;
    border-top: 1px solid #ffffff;
    padding-top: 15px;
    position: relative;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (max-width: 480px) {
    .module-stock-header .module_container--outer {
        padding-left: 0;
        padding-right: 0;
    }
}

@media only screen and (min-width: 1025px) {
    .module-stock-header .grid_col {
        padding: 0 0 0 10px;
    }
}

.module-stock-header_link {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.module-stock-header_description1 {
    display: block;
    font-size: 16px;
    font-size: 1.6rem;
    margin: 15px 0;
    font-weight: 700;
}

.module-stock-header_stock-price {
    display: block;
    font-size: 22px;
    font-size: 2.2rem;
    font-weight: 700;
    font-family: "PT Serif", sans-serif;
}

.module-stock-header_stock-price:before {
    content: '$';
}

@media only screen and (max-width: 768px) {
    .module-stock-header_stock-price {
        text-align: center;
    }
}

.module-stock-header_change,
.module-stock-header_percent-change {
    display: inline-block;
    margin: 10px 0;
    font-weight: 700;
}

@media only screen and (max-width: 768px) {
    .module-stock-header_change,
    .module-stock-header_percent-change {
        margin: 0;
        display: block;
        text-align: center;
    }
}

@media only screen and (max-width: 480px) {
    .module-stock-header_change,
    .module-stock-header_percent-change,
    .module-stock-header_description1,
    .module-stock-header_stock-price {
        margin-bottom: 10px;
    }
    .module-stock-header_change {
        margin-bottom: 30px;
    }
}

.module-stock-header_percent-change:before {
    content: '(';
}

.module-stock-header_percent-change .module-stock-header_indicator {
    display: none;
}

.module-stock-header_percent-change:after {
    content: ')';
}

.module-stock-header_volume {
    display: none;
    margin-bottom: 32px;
}

.module-stock-header_volume:before {
    content: 'Volume ';
    font-weight: bold;
}

.module-stock-header_footer {
    padding-top: 10px !important;
    position: relative;
}

.module-stock-header_footer:before {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    content: "";
    position: absolute;
    top: 0;
    left: 20px;
    right: 0;
}

.module-stock-header_description3,
.module-stock-header_date {
    font-size: 10.5px;
    font-size: 1.05rem;
    margin: 10px 0;
}

.module-stock-header_volume-text {
    display: none;
}

@media only screen and (max-width: 480px) {
    .module-stock-header .grid .grid_col {
        padding-left: 20px;
    }
}


/*------ Stock Quote Module ------*/

.module-stock .module_options {
    margin-bottom: 30px;
}

.module-stock .module_container--content {
    border-top: 1px solid rgba(34, 34, 34, 0.2);
}

.module-stock-historical .module_options>* {
    vertical-align: middle;
}

.module-stock-historical .module_options>.button {
    padding-top: 10px;
    padding-bottom: 10px;
}

.module-stock-historical .module-stock_lookup-title-text {
    display: none;
}

@media only screen and (max-width: 768px) {
    .module-stock.module-stock-historical .module-stock_empty {
        display: none;
    }
}

@media only screen and (max-width: 768px) {
    .module-stock-historical .module_options-label,
    .module-stock-historical .module_options-select,
    .module-stock-historical .module_options-submit {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
}

.module-stock .stock-historical-range .module_options>*:not(:last-of-type) {
    margin-bottom: 20px;
}

.module-stock_lookup-title {
    color: #ffffff;
    background: #454554;
    font-size: 16px;
    font-size: 1.6rem;
    padding: 13px 20px;
    margin: 0;
    font-weight: normal;
}

@media only screen and (max-width: 768px) {
    .module-stock_lookup-title {
        padding-left: 10px;
    }
}

@media only screen and (max-width: 480px) {
    .module-stock_lookup-title {
        padding-left: 5px;
    }
}

.module-stock_label,
.module-stock_value {
    border-bottom: 1px solid rgba(34, 34, 34, 0.2);
}

.module-stock_label>span,
.module-stock_value>span {
    display: block;
    padding: 20px 20px;
}

@media only screen and (max-width: 768px) {
    .module-stock_label>span,
    .module-stock_value>span {
        padding: 15px 10px;
    }
}

@media only screen and (max-width: 480px) {
    .module-stock_label>span,
    .module-stock_value>span {
        padding: 15px 0 15px 5px;
    }
}

.module-stock_up {
    color: #23a217;
}

.module-stock_down {
    color: #b72121;
}

.module-stock_label {
    font-weight: normal;
}

.module-stock_value .module-stock_price:before,
.module-stock_value .module-stock_high:before,
.module-stock_value .module-stock_low:before,
.module-stock_value .module-stock_open:before,
.module-stock_value .module-stock_close:before,
.module-stock_value .module-stock_week-low:before,
.module-stock_value .module-stock_week-high:before,
.module-stock_value .module-stock_previous-close:before {
    content: "$";
}

.module-stock_date {
    margin-top: 25px;
    font-size: 14px;
    font-size: 1.4rem;
    font-style: italic;
}

.module-stock_date-text {
    margin-left: 20px;
}

.module-stock_delay {
    margin-top: 25px;
    font-size: 14px;
    font-size: 1.4rem;
    font-style: italic;
    text-align: right;
}

.module-stock_delay-text {
    margin-right: 20px;
}


/*- MailingList Subscribe Module -*/

.module-subscribe_table {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.module-subscribe_table tbody {
    width: 100%;
    display: block;
}

.module-subscribe_form {
    font-size: 0;
}

.module-subscribe_form tr {
    display: inline-block;
    width: 50%;
    margin-bottom: 20px;
    vertical-align: top;
    font-size: 16px;
    font-size: 1.6rem;
}

.module-subscribe_form tr:nth-child(even) {
    padding-left: 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: 1.4rem;
}

.module-subscribe_mailing-list tr.module-subscribe_list-header td {
    padding-bottom: 15px;
}

.module-subscribe_mailing-list tr table td {
    padding-bottom: 15px;
}

.module-subscribe_mailing-list tr table tr:last-child td {
    padding-bottom: 0;
}

.module-subscribe .module_required {
    font-size: 14px;
    font-size: 1.4rem;
}

.module-subscribe .CaptchaContainer {
    width: 50%;
}

@media only screen and (max-width: 768px) {
    .module-subscribe .CaptchaContainer {
        width: 100%;
    }
}


/* MailingList Unsubscribe Module */

.module-unsubscribe_table {
    width: 50%;
}

@media only screen and (max-width: 768px) {
    .module-unsubscribe_table {
        width: 100%;
    }
}

.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: 1.4rem;
    margin-bottom: 5px;
}

.module-unsubscribe_table .module_input[type="text"] {
    background-color: #fff;
}


/*==================================
 ----------- LAYOUT CSS -----------
==================================*/


/*------- iframe layout CSS ------*/

.layout--iframe .pane--content .module {
    padding: 35px 0;
}

.layout--iframe .pane--content .module_container--outer {
    max-width: none;
}

.layout .layout_inner {
    position: relative;
    overflow: hidden;
}


/*==================================
 ------------ BLANK CSS -----------
==================================*/


/*-------- Layout Specific -------*/

.layout_footer {
    background: #454554;
}

@media only screen and (max-width: 1024px) {
    .layout.js--mobile {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        overflow: hidden;
    }
}


/*--------- Pane Specific --------*/

.pane--header {
    position: relative;
    background-color: #fff;
    z-index: 10;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.12);
}

.pane--header .pane_inner {
    max-width: 1180px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

@media only screen and (max-width: 1024px) {
    .pane--header .pane_inner {
        max-width: none;
        padding-left: 20px;
        padding-right: 20px;
    }
}

.pane--header .module-logo img {
    width: 115px;
    padding-bottom: 11px;
}

.pane--header .module,
.pane--header .nav {
    vertical-align: bottom;
}

.pane--header .layout_toggle {
    display: none;
    font-size: 32px;
    font-size: 3.2rem;
    text-align: right;
}

.pane--header .layout_toggle i:focus {
    outline: none;
}

.js--mobile .pane--header .layout_toggle {
    color: #AD966E;
}

@media only screen and (max-width: 1024px) {
    .pane--header .pane_inner {
        height: 80px;
        padding-top: 20px;
    }
    .pane--header .module {
        vertical-align: middle;
    }
    .pane--header .module-logo img {
        margin-bottom: 0;
    }
    .pane--header .layout_toggle {
        display: inline-block;
    }
    .pane--header .nav {
        display: none;
    }
}

.pane--banner {
    background: url("../design/banner/default-hero-image-bg.jpg");
    color: #fff;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 20%;
    position: relative;
    z-index: 1;
}
.pane--banner:before{
    content: "";
    background-color: rgba(0, 0, 0, 0.2);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.PageHome .pane--banner:before{
    display: none;
}
div[class*="PageCareers"] .pane--banner {
    background: url("../design/banner/carrers-page-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 60%;
}

div[class*="PageContactUs"] .pane--banner {
    background: url("../design/banner/contact-us-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
}

div[class*="PageWhoWeAreEnterpriseStrategy"] .pane--banner {
    background: url("../design/banner/strategy-page-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

div[class*="PageWhoWeAreEnterpriseStrategy"] .pane--banner:before{
    display: none;
}

div[class*="PageWhoWeAreCompanyOverview"] .pane--banner {
    background: url("../design/banner/company-overview-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

div[class*="PageWhoWeAreCompanyOverview"] .pane--banner:before{
    display: none;
}

div[class*="PageNews"] .pane--banner {
    background: url("../design/banner/news-hero-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 30%;
}

div[class*="PageWhatWeMakeSnacks"] .pane--banner {
    background: url("../images/snacks-bg2.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

div[class*="PageWhatWeMakeSnackingampBeverages"] .pane--banner {
    background: url("../images/baked-goods-bg2.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 24%;
}

div[class*="PageWhatWeMakeMealPreparation"] .pane--banner {
    background: url("../images/meals-bg2.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 55%;
}
div[class*="PageWhatWeMakeBeverages"] .pane--banner {
    background: url("../design/banner/beverages-page-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
div[class*="PageInvestors"] .pane--banner {
    background: url("../design/banner/ir-hero-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
div[class*="PageWhoWeAreOurValues"] .pane--banner {
    background: url("../design/banner/values-page-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 64%;
}
div[class*="PageWhoWeAreOurStrategyandthePrivateLabelOpportunity"] .pane--banner {
    background: url("../design/banner/private-label-and-our-strategy-page-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 40%;
}
div[class*="PageWhoWeAreHistory"] .pane--banner {
    background: url("../design/banner/history-page-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
div[class*="PageWhoWeAreLeadershipTeam"] .pane--banner {
    background: url("../design/banner/leadership-page-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 50%;
}
div[class*="PageWhoWeAreBoardofDirectors"] .pane--banner {
    background: url("../design/banner/bod-page-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
div[class*="PageCorporateResponsibilityCommunityInvolvement"] .pane--banner {
    background: url("../design/banner/community-involvement-page-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
div[class*="PageCorporateResponsibilityEnvironmentalSustainabilityUpdate"] .pane--banner {
    background: url("../design/banner/environmental-sustainability-update-page-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
}
div[class*="PageCorporateResponsibilitySocialResponsibilityPolicy"] .pane--banner {
    background: url("../design/banner/social-responsibility-policy-page-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
div[class*="PageCorporateResponsibilitySustainabilityinActionGuidingPrinciples"] .pane--banner {
    background: url("../design/banner/sustainability-in-action-page-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}
div[class*="PageInvestorsInvestorResources"] .pane--banner {
    background: url("../design/banner/investor-contacts-page-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 47%;
}
div[class*="PageInvestorsGovernance"] .pane--banner {
    background: url("../design/banner/governance-documents-page-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 39%;
}
div[class*="PageInvestorsGovernanceCommittees"] .pane--banner {
    background: url("../design/banner/committees-page-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
}
div[class*="PageInvestorsFinancials"] .pane--banner {
    background: url("../design/banner/financials-page-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 64%;
}
div[class*="PageInvestorsEventsampPresentations"] .pane--banner {
    background: url("../design/banner/events-and-presentations-page-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 38%;
}
div[class*="PageInvestorsStockInformation"] .pane--banner {
    background: url("../design/banner/stock-information-page-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 20%;
}
div[class*="PageInvestorsInvestorResourcesInvestorEmailAlerts"] .pane--banner {
    background: url("../design/banner/investor-email-alerts-page-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 47%;
}
div[class*="PageInvestorsStockInformationAnalystCoverage"] .pane--banner {
    background: url("../design/banner/analyst-coverage-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 20%;
}
div[class*="PageTermsampConditions"] .pane--banner {
    background: url("../design/banner/terms-and-conditions-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
div[class*="PagePrivacyPolicy"] .pane--banner {
    background: url("../design/banner/privacy-policy-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
div[class*="PageCaliforniaSupplyChainTransparencyLaw"] .pane--banner {
    background: url("../design/banner/california-supply-chain-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
div[class*="PageCodeofEthics"] .pane--banner {
    background: url("../design/banner/code-of-ethics-bg2.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.Sectionesg .pane--banner,
.section--esg .pane--banner {
    background-image: url("../design/banner/banner-esg.jpg");
}

.layout:not(.layout--home) .pane--banner .pane_inner {
    height: 480px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    text-align: center;
}

.pane--banner .pane_inner {
    position: relative;
    max-width: 1180px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
    padding: 50px 20px;
}

@media only screen and (max-width: 1024px) {
    .pane--banner .pane_inner {
        max-width: none;
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media only screen and (max-width: 1023px){
    .layout:not(.layout--home) .pane--banner .pane_inner{
        height: 350px;
    }
}
.pane--banner h1 {
    margin: 0;
}

@media only screen and (max-width: 768px) {
    .pane--banner h1 {
        margin-bottom: 32px;
    }
}

@media only screen and (max-width: 1024px) {
    .pane--banner {
        text-align: center;
    }
}

.pane--navigation {
    background: rgba(204, 201, 196, 0.3);
}

.pane--navigation .pane_inner {
    max-width: 1180px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (max-width: 1024px) {
    .pane--navigation .pane_inner {
        max-width: none;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media only screen and (max-width: 1024px) {
    .pane--navigation .pane_inner {
        max-width: none;
    }
}

.pane--navigation .module-search {
    display: none;
}

@media only screen and (max-width: 1024px) {
    .pane--navigation {
        position: absolute;
        top: 80px;
        right: -250px;
        bottom: 100%;
        transition: 0.5s ease-in-out;
        overflow-y: scroll;
        z-index: 120;
        width: 250px;
        bottom: 0;
        height: calc(100vh - 80px);
        padding: 25px 0 80px 0;
        background: #fff;
    }
    .js--mobile .pane--navigation {
        right: 0;
        box-shadow: 0 2px 18px 0 rgba(0, 0, 0, 0.5);
    }
    .pane--navigation .pane_inner {
        padding: 0;
    }
    .pane--navigation .module-search {
        display: block;
    }
    .pane--navigation .module-search_input {
        width: 100%;
        max-width: none;
        padding: 20px;
        border: none;
        background-color: #005894;
        color: #fff;
        text-transform: uppercase;
    }
    .pane--navigation .module-search_button {
        top: 20px;
        right: 20px;
        background-position: 0 -100%;
    }
    .pane--header .module-logo img {
        width: 70px;
    }
    .module-search h2 {
        right: 70px;
        bottom: auto;
        top: 32px;
    }
    .pane--header .layout_toggle {
        position: absolute;
        right: 20px;
        top: 24px;
        color: #5A7C6B;
    }
    .module-search_button {
        display: block;
        top: 50%;
        transform: translateY(-50%);
        background-position: 0px 18px;
        height: 18px;
        width: 18px;
    }
    .module-search_input[type="text"] {
        padding-right: 40px;
    }
    .module-search .module_container--inner {
        right: 0;
        left: 0;
    }
}

.pane--content .module,
.pane--left .module {
    padding-top: 70px;
    padding-bottom: 70px;
}

.pane--content .module_container--outer,
.pane--left .module_container--outer {
    max-width: 1180px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (max-width: 1024px) {
    .pane--content .module_container--outer,
    .pane--left .module_container--outer {
        max-width: none;
        padding-left: 20px;
        padding-right: 20px;
    }
}

.pane--content .module--thin,
.pane--left .module--thin {
    padding-top: 35px;
    padding-bottom: 35px;
}

.pane--content .module--thin-top,
.pane--left .module--thin-top {
    padding-top: 35px;
}

.pane--content .module--thin-bottom,
.pane--left .module--thin-bottom {
    padding-bottom: 35px;
}

.pane--content .module--thick {
    padding-top: 105px;
    padding-bottom: 105px;
}

.pane--content .module--thick-top {
    padding-top: 105px;
}

.pane--content .module--thick-bottom {
    padding-bottom: 105px;
}

.pane--content .module--extra-thick {
    padding-top: 135px;
    padding-bottom: 135px;
}

.pane--content .module--extra-thick-top {
    padding-top: 135px;
}

.pane--content .module--extra-thick-bottom {
    padding-bottom: 135px;
}


.pane--content .module--no-padding,
.pane--left .module--no-padding {
    padding-top: 0;
    padding-bottom: 0;
}

.pane--content .module--no-padding-top,
.pane--left .module--no-padding-top {
    padding-top: 0;
}

.pane--content .module--no-padding-bottom,
.pane--left .module--no-padding-bottom {
    padding-bottom: 0;
}

.pane--content .module-sitemap {
    padding-bottom: 35px;
}

.pane--footer {
    padding-top: 40px;
}

.pane--footer .pane_inner {
    max-width: 1180px;
    padding-left: 20px;
    padding-right: 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: 22px;
    font-size: 2.2rem;
    text-align: left;
}

.pane--footer .module_error-container {
    margin-bottom: 20px;
}

.pane--footer .module_error-container p {
    display: none;
}

.pane--footer .module_introduction {
    display: none;
}

.pane--footer .module-links {
    font-size: 16px;
    font-size: 1.6rem;
}

.pane--footer .module-links li {
    line-height: 1.4;
    display: inline-block;
}

.pane--footer .module-links li+li {
    margin-left: 20px;
}

.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: 1.5;
}

.pane--footer .module-subscribe_mailing-list.js--revealed,
.pane--footer .module-subscribe .module_actions.js--revealed {
    display: block;
}

.pane--footer .module:not(.module-embed) {
    padding-bottom: 25px;
    display: inline-block;
    vertical-align: top;
    color: #ffffff;
}

.pane--footer .button {
    color: #fff;
    border: none;
    background-color: #30522B;
}

.pane--credits {
    color: #ffffff;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.5;
    background-color: #454554;
}

.pane--credits a {
    color: #ffffff;
}

.pane--credits .pane_inner {
    max-width: 1180px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.pane--credits .pane_inner:after {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    top: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

@media only screen and (max-width: 1024px) {
    .pane--credits .pane_inner {
        max-width: none;
        padding-left: 20px;
        padding-right: 20px;
    }
}


/*--------- Page Specific --------*/

.page--no-alternating .pane--content {
    padding: 35px 0;
}

.page--no-alternating .module {
    padding-top: 35px;
    padding-bottom: 35px;
}


/*-------- Module Specific -------*/

.module-overview p {
    margin-bottom: 40px;
}

.module-overview_hidden {
    display: none;
}

.module-overview_hidden.js--revealed {
    display: block;
}

.module-overview_button:before {
    content: "Read More";
}

.module-overview_button.js--active:before {
    content: "Show Less";
}

.module-social .module_tabs {
    margin-bottom: 10px;
}

.module-social .module_tabs .button {
    display: block;
}

.module-social .module_tabs .button.js--selected {
    background: #30522B;
    color: #fff;
}

.module-social .module_tab {
    display: inline-block;
    padding-right: 5px;
    padding-bottom: 5px;
}

@media (max-width: 640px) {
    .module-social .module_tab {
        width: 50%;
    }
}

.module-social .module_container--content {
    padding: 0;
    display: flex;
    justify-content: stretch;
    align-items: stretch;
}

@media (max-width: 767px) {
    .module-social .module_container--content {
        padding: 0 20px;
        margin: 0;
    }
}

.module-social .module_container--content .slick-track {
    display: flex;
    justify-content: stretch;
    align-items: stretch;
}

.module-social .module_container--content .slick-list {
    width: 100%;
}

.module-social .module_container--content .slick-arrow {
    color: #30522B;
}

.module-social .module_headline-link {
    color: #30522B;
}

.module-social .module_item {
    height: auto;
}

.module-social .module_item.grid_col {
    padding: 0 0 0 20px;
    margin: 15px 0;
}

@media (max-width: 767px) {
    .module-social .module_item.grid_col {
        padding-left: 0;
    }
}

.module-social .module_item-wrap {
    padding: 30px;
    background-color: #f6f6f6;
    height: 100%;
}

.module-social .module_item+.module_item {
    border-top: none;
}

.module-social .module_date {
    text-align: left;
    margin-bottom: 15px;
}

.module-social .module_headline {
    text-align: left;
    margin: 0;
    line-height: 1.5;
}

.module-social .module_icon {
    float: right;
    margin-left: 5px;
    margin-bottom: 5px;
    font-size: 20px;
    font-size: 2rem;
}

.module-social .module_icon .q4-icon_twitter {
    color: #1da1f2;
}

.module-social .module_icon .q4-icon_facebook {
    color: #365899;
}

.module-social .module_icon .q4-icon_youtube {
    color: #cc181e;
}


/*# sourceMappingURL=global.css.map */


/*Homepage Modules*/
.PageHome .pane--banner{
    background: transparent;
}
.PageHome .pane--banner .pane_inner{
    padding: 0;
    max-width: 100%;
}
.module-welcome .module_container--outer > .module_title{
    position: relative;
    padding-bottom: 30px;
}
.module-welcome .module_container--outer > .module_title:before {
    content: "";
    background: #AD966E;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    max-width: 367px;
    margin: 0 auto;
    width: 100%;
}
.module-product-recall h2{
    margin: 0;
    text-align: left;
}
.module-product-recall .grid_col + .grid_col{
    position: relative;
    padding-left: 70px;
}
.module-product-recall .grid_col + .grid_col:before{
    content: "";
    height: 100px;
    background: #ffffff;
    width: 2px;
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}
@media (max-width: 767px){
    .module-product-recall .grid_col,
    .module-product-recall .grid_col + .grid_col {
        padding-left: 20px;
        display: block;
        width: 100%;
    }
    .module-product-recall .grid_col + .grid_col:before{
        display: none;
    }
}
.module_sub-text,
.module-our-values p.module_sub-text {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 30px auto;
}

.module-overlay-boxes .module_title {
    text-align: center;
}
.module-overlay-boxes .grid--flex{
    flex-wrap: wrap;
}
.module-overlay-boxes_col{
    margin-top: 30px;
}
.module-overlay-boxes_col .product {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 30px;
    height: 100%;
    position: relative;
    z-index: 1;
    transition: all .5s ease;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.module-overlay-boxes--no-text .module-overlay-boxes_col .product{
    padding-bottom: 40px;
}
.module-overlay-boxes .product--baked-goods {
    background-image: url('../images/ourproducts/bakedgoods.jpg');
}

.module-overlay-boxes .product--baverages {
    background-image: url('../images/ourproducts/beverages/shutterstock_602482730.jpg');
    /*background-size: cover;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/ourproducts/beverages/shutterstock_602482730.jpg');*/
}

.module-overlay-boxes .product--meal-solutions {
    background-image: url('../images/ourproducts/pasta-dry-combo.jpg');
}

.module-overlay-boxes .product--snacks {
    background-image: url('../images/ourproducts/snacks-home-product-cropped.jpg');
}
.module-overlay-boxes .product--retail-grocery{
    background-image: url('../images/ourproducts/customers-retail-grocery.jpg');
}
.module-overlay-boxes .product--warehouse-and-clubstores{
    background-image: url('../images/ourproducts/customers-warehouse.jpg');
}
.module-overlay-boxes .product--foodservice{
    background-image: url('../images/ourproducts/customers-foodservice.jpg');
}
.module-overlay-boxes .product--industrial{
    background-image: url('../images/ourproducts/customers-industrial-cropped1.jpg');
}
.module-overlay-boxes .product--export{
    background-image: url('../images/ourproducts/customers-export.jpg');
}
.module-overlay-boxes .product--e-commerce{
    background-image: url('../images/ourproducts/customers-e-commerce.jpg');
}
.module-overlay-boxes .product--co-pack{
    background-image: url('../images/ourproducts/customers-co-pack.jpg');
}
.module-overlay-boxes .product--ingredients{
    background-image: url('../images/ourproducts/customers-ingredients.jpg');
}
.module-overlay-boxes_col p {
    color: #ffffff;
    margin: 0;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 20px;
}
.module-overlay-boxes_col h3 {
    margin: 0;
    color: #ffffff;
}

.module-overlay-boxes_col .product:before {
    background-color: rgb(69, 69, 84);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    content: "";
    opacity: 0;
    transition: all .5s ease;
}

.module-welcome .module-overlay-boxes_col .product:before {
    opacity: 0.4;
}

@media (min-width: 768px) {
    .module-overlay-boxes_col .product {
        min-height: 330px;
    }
    .module-overlay-boxes_col .product:hover p {
        opacity: 1;
    }
    .module-overlay-boxes_col .product:hover {
        transform: translateY(-20px);
        box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.63);
    }
    .module-overlay-boxes_col p {
        opacity: 0;
        transition: .7s ease;
        padding-top: 20px;
    }
    .module-overlay-boxes_col .product:hover>div {
        transform: translateY(0);
    }
    .module-overlay-boxes_col .product>div {
        transition: .5s ease;
        height: 100%;
        transform: translateY(100%) translateY(-20px);
    }
    .module-overlay-boxes .product_description {
        display: block !important;
        height: auto !important;
    }
    .module-overlay-boxes_col .product:hover:before {
        opacity: 0.85;
    }
    .module-overlay-boxes--no-text .module-overlay-boxes_col .product>div {
        opacity: 0;
    }
    .module-overlay-boxes--no-text .module-overlay-boxes_col .product:hover>div{
        opacity: 1;
    }
}

@media (max-width: 1023px) {
    .module-overlay-boxes .grid_col {
        margin-top: 20px;
        width: 50%;
    }
    .module-overlay-boxes .grid--flex {
        flex-wrap: wrap;
    }
    .module-overlay-boxes_col .product:hover {
        transform: none;
    }
    .module_sub-text {
        margin-bottom: 0px;
    }
}

@media (max-width: 767px) {
    .module-overlay-boxes .grid_col {
        width: 100%;
    }
    .module-overlay-boxes_col .product:before {
        opacity: 0.5;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #111C0F 100%);
    }
    .module-overlay-boxes_col.js--active .product:before {
        opacity: 0.9;
        background: rgb(69, 69, 84);
    }
    .module-overlay-boxes .product_description {
        padding-top: 20px;
    }
    .module-overlay-boxes--no-text .module-overlay-boxes_col .product{
        padding-bottom: 30px;
    }
}

.module-new-tree-house {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('../design/banner/anewtreehouse-bg.jpg');
}

.module-new-tree-house h3 {
    font-size: 22px;
    font-size: 2.2rem;
    margin-bottom: 0;
}

.module-new-tree-house_icon {
    width: 121px;
    height: 121px;
    display: inline-block;
    background: #5A7C6B;
    line-height: 126px;
    border-radius: 100%;
    color: #ffffff;
    font-size: 60px;
}

.module-new-tree-house_icon.q4-icon_purpose {
    background: #5A7C6B;
}

.module-new-tree-house_icon.q4-icon_vision {
    background: #3E6D91;
}

.module-new-tree-house_icon.q4-icon_mission {
    background: #AD966E;
}

.module-new-tree-house p {
    max-width: 375px;
    margin: 0 auto;
    padding-top: 20px;
    font-size: 18px;
    font-size: 1.8rem;
}

.module-new-tree-house .button {
    margin-top: 25px;
}

.module-new-tree-house .slick-arrow {
    color: #AD966E;
    top: 55px;
    transform: none;
}

.module-new-tree-house .slick-arrow:before {
    font-size: 20px;
    font-size: 2rem;
    font-weight: bold;
}

@media (max-width: 1023px) {
    .module-new-tree-house .grid.slick-slider {
        margin-left: 0;
    }
    .module-new-tree-house .grid_col.slick-slide {
        padding-left: 0;
    }
    .module-new-tree-house p {
        max-width: 700px;
    }
}

@media (max-width: 767px) {
    .module-new-tree-house p {
        font-size: 15px;
        font-size: 1.5rem;
    }
}

.module-careers-at {
    background-image: url('../design/banner/careers-home-bg2.jpg');
    background-size: cover;
    background-position: center 84%;
    background-repeat: no-repeat;
}

.module--box-right h2 {
    margin-bottom: 20px;
    text-align: left;
}

.module--box-right .module_container--inner {
    max-width: 470px;
    padding: 40px 40px 40px 40px;
    background: linear-gradient(0deg, rgba(222, 219, 214, 1) 0%, #FFFFFF 100%);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    margin-left: auto;
}
.module-careers-at .module_container--inner{
    padding: 20px;
    margin-top: 180px;
}
.module--box-right p {
    margin-bottom: 30px;
}

.module-sustainability-home {
    position: relative;
}
.module-sustainability-home .module_title {
    text-align: left;
}

.module-sustainability-home:before {
    content: "";
    background-image: url('../design/banner/sustatinability-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 40%;
    z-index: -1;
    border-right: 3px solid #AD966E;
}

.module-sustainability-home .grid_col:first-child {
    vertical-align: middle;
    width: calc(100% - 490px);
}

.module-sustainability-home .grid_col:last-child {
    width: 490px;
    vertical-align: middle;
}

.module-sustainability-home img {
    width: 100%;
}
.module-sustainability-home .button{
    margin-top: 25px;
}
@media (max-width: 1023px) {
    .module-sustainability-home .grid_col:first-child,
    .module-sustainability-home .grid_col:last-child {
        width: 100%;
        display: block;
        margin-right: 0;
    }
    .module-sustainability-home img {
        width: auto;
    }
    .module-sustainability-home .grid_col:last-child {
        text-align: center;
        margin-top: 40px;
    }
    .module-sustainability-home:before {
        right: 0;
        border-right: 0;
        border-bottom: 3px solid #AD966E;
        bottom: 180px;
    }
}
@media (max-width: 767px){
    .module-careers-at .module_container--inner{
        margin-top: 0;
    }
    .pane--content .module-careers-at{
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

/*END Homepage Modules*/


/*Footer Changes*/

.copyright {
    float: left;
    padding-bottom: 20px;
    padding-top: 20px;
}

.module-q4-credits {
    float: right;
    padding-bottom: 20px;
    padding-top: 20px;
}

.module-stay-connected_links {
    float: right;
    clear: left;
}

.module-stay-connected_links a {
    color: #ffffff;
    margin-left: 8px;
    font-size: 20px;
}
.module-stay-connected_links span,
.module-stay-connected_links a{
    display: inline-block;
}
.layout_footer a:hover {
    color: #AD966E;
}

.layout_footer {
    padding-bottom: 30px;
}

.module-corporate-ql {
    width: 100%;
}

@media (max-width: 1279px) {
    .pane--footer .module-links,
    .pane--footer .module:not(.module-embed) {
        font-size: 14px;
        font-size: 1.4rem;
    }
    .module-stay-connected_links a {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

@media (max-width: 1023px) {
    .module-stay-connected_links {
        float: none;
    }
    .pane--footer .module-links li,
    .pane--footer .module-links li+li {
        margin-left: 0;
        margin-right: 20px;
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {
    .pane--footer .module-links li,
    .pane--footer .module-links li+li {
        line-height: 1.4;
        display: inline-block;
        width: 50%;
        margin-right: -0.25em;
        display: inline-block;
        vertical-align: top;
        margin-bottom: 15px;
        padding-right: 20px;
    }
    .copyright,
    .module-q4-credits {
        width: 100%;
        text-align: center;
        float: none;
        display: block;
    }
    .module-q4-credits {
        padding-top: 0;
    }
}

.module-ir-footer-nav a {
    display: none;
    color: #ffffff;
}

.module-ir-footer-nav .level2 li.expanded>.level3>li>a {
    display: inline-block;
    margin-bottom: 12px;
    line-height: 1.2;
}

.module-contact p {
    margin-bottom: 0;
}

.module-contact p>span {
    display: block;
    margin-top: 5px;
}

.module-ir-footer-nav {
    padding-right: 90px;
}

.pane--footer .module:not(.module-embed).module-contact {
    padding-left: 20px;
    position: relative;
    padding-right: 20px;
    min-height: 157px;
}

.module-contact:before {
    content: "";
    width: 1px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -60px;
    background: #59596C;
}

.module-contact:after {
    content: "";
    width: 1px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    background: #59596C;
}
@media (max-width: 767px){
    .pane--footer .module:not(.module-embed).module-contact{
        min-height: auto;
    }
}
.pane--footer .module-subscribe {
    padding-left: 85px;
}

.section-ir .copyright,
.section-ir .module-q4-credits,
.section-ir .module-stay-connected_links {
    float: none;
}

.section-ir .copyright,
.section-ir .module-q4-credits,
.section-ir .module-stay-connected--ir {
    width: 33.33%;
    display: inline-block;
    vertical-align: middle;
    margin-right: -0.25em;
    padding: 20px 0;
}

.section-ir .module-q4-credits {
    text-align: center;
}

.section-ir .module-stay-connected--ir {
    text-align: right;
}

.section-ir .layout_footer {
    padding-bottom: 0;
}

.section-ir .pane--credits .pane_inner:after {
    display: none;
}

.section-ir .pane--credits {
    background-color: #40404F;
}

.layout_footer .module-subscribe_wrapper {
    position: relative;
}

.layout_footer .module-subscribe_wrapper .button {
    background-size: 10px;
    background-position: center;
    padding-left: 0;
    padding-right: 0;
    height: 45px;
    line-height: 45px;
    padding-top: 0;
    padding-bottom: 0;
    width: 133px;
    border: 1px solid #AD966E;
    color: #ffffff;
    background: transparent;
}

.layout_footer .module-subscribe_wrapper .module_input[type="text"] {
    width: calc(100% - 150px);
    height: 45px;
    line-height: 45px;
    padding-top: 0;
    padding-bottom: 0;
    color: #ffffff;
}

.layout_footer .module-subscribe_wrapper .button:hover {
    background: #AD966E;
    color: #ffffff;
}

.layout_footer .module-subscribe_wrapper .module_actions {
    position: absolute;
    right: 0;
    top: 0;
    margin: 0;
}

.layout_content .module-subscribe .module_container--inner {
    padding-bottom: 70px;
    position: relative;
}

.layout_content .module-subscribe .module_actions {
    position: absolute;
    left: 0;
    bottom: 0;
}

.layout_footer .module-subscribe_list table tr {
    display: inline-block;
    vertical-align: top;
    width: 33.33%;
    margin-right: -0.25em;
    font-size: 14px;
    font-size: 1.4rem;
}
.layout_footer .module-subscribe_list table tr:nth-child(5){
    width: 66.66%;
}
@media (max-width: 1279px) {
    .module-ir-footer-nav {
        padding-right: 20px;
    }
    .module-contact:before {
        left: 0;
    }
    .pane--footer .module-subscribe {
        padding-left: 20px;
    }
}

@media (max-width: 1023px) {
    .pane--footer .module-subscribe {
        padding-left: 0;
        width: 100%;
        padding-top: 30px;
    }
    .module-ir-footer-nav,
    .pane--footer .module:not(.module-embed).module-contact {
        width: 50%;
    }
    .module-contact:after {
        display: none;
    }
}

@media (max-width: 767px) {
    .layout_footer .module-subscribe_list table tr,
    .layout_footer .module-subscribe_list table tr:nth-child(5) {
        width: 100%;
    }
    .layout_footer .module-subscribe_wrapper .button {
        width: 70px;
        height: 40px;
        line-height: 40px;
        font-size: 14px;
        font-size: 1.4rem;
    }
    .layout_footer .module-subscribe_wrapper .module_input[type="text"] {
        height: 40px;
        line-height: 40px;
        width: calc(100% - 80px);
        font-size: 14px;
        font-size: 1.4rem;
    }
    .section-ir .copyright,
    .section-ir .module-q4-credits,
    .section-ir .module-stay-connected--ir {
        text-align: center;
        padding: 10px 0;
        width: 100%;
    }
    .section-ir .module-q4-credits {
        padding: 0;
    }
    .module-ir-footer-nav,
    .pane--footer .module:not(.module-embed).module-contact {
        width: 100%;
        padding-left: 0;
    }
    .module-contact:before {
        display: none;
    }
    .pane--footer .module:not(.module-embed).module-contact {
        padding-top: 30px;
        padding-bottom: 30px;
        border-top: 1px solid #59596C;
        border-bottom: 1px solid #59596C;
        margin-top: 30px;
    }
}


/*END Footer Changes*/


/*IR Landing Changes*/

.module-event-header .module_headline {
    font-size: 35px;
    font-size: 3.5rem;
    font-family: "PT Serif", sans-serif;
    margin: 30px 0;
    line-height: 1.2;
    font-weight: 700;
}

.module-event-header .module_item {
    padding: 0;
}

.module-event-header .module_headline-link,
.module-event-header .module_date-time {
    color: #ffffff;
}

.module-event-header .module_link:before {
    color: #ffffff;
}

.module-event-header .module_links.module_links--stack>*+* {
    margin-top: 10px;
}

.page-ir-overview .pane--banner .pane_inner {
    padding-bottom: 30px;
    padding-top: 90px;
    min-height: 480px;
}

.module-why-invest h4 {
    font-size: 35px;
    font-size: 3.5rem;
    color: #AD966E;
    font-weight: normal;
    margin-top: 0;
    text-transform: none;
    font-family: "PT Serif", sans-serif;
}

.module-why-invest .grid {
    padding-top: 25px;
    padding-bottom: 30px;
}

.module-why-invest .grid_col {
    padding-right: 20px;
}

.module-why-invest .grid_col + .grid_col {
    border-left: 1px solid #dddddd;
}

.module-why-invest .module_container--inner {
    max-width: 900px;
    margin: 0 auto;
}

.module-why-invest .module_container--inner>p {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 26px;
    max-width: 700px;
    margin: 0 auto;
}

.module-why-invest .grid_col p {
    margin-bottom: 0;
    font-weight: bold;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .module-why-invest .grid_col+.grid_col {
        padding-top: 20px;
        border-top: 1px solid #cccccc;
        margin-top: 20px;
        border-left: 0;
    }
    .module-why-invest .grid {
        padding: 0;
        margin-left: 0;
    }
    .module-why-invest .grid_col:last-child {
        margin-bottom: 40px;
    }
}


/* Latest Quarterly Result Widget */

.module-latest-quarter {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../design/banner/latest-quarter-bg.jpg);
    position: relative;
    z-index: 1;
    padding-bottom:20px!important;
}

.module-latest-quarter:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(69, 69, 84, 0.47) -300%, #FFFFFF 100%);
    z-index: -1;
}

.module-latest-quarter .module_item {
    margin: 50px 0;
    padding: 0;
}

.module-latest-quarter .module_item~.module_item {
    border: none;
}

.module-latest-quarter .module_links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}

.module-latest-quarter .module_links>div {
    display: inline-block;
    text-align: center;
}

.module-latest-quarter .module_link {
    margin: 0;
}

.module-latest-quarter .module_link:before {
    display: inline-block;
    color: #ffffff;
    font-size: 45px;
    font-size: 4.5rem;
    padding: 0;
    background: #3E6D91;
    height: 123px;
    width: 123px;
    line-height: 123px;
    border: 2px solid #3E6D91;
    border-radius: 100%;
    transition: all .3s ease;
}

.module-latest-quarter .module_link:hover:before {
    border: 2px solid #454554;
    color: #454554;
    background: transparent;
}

.module-latest-quarter .module_link-text {
    display: block;
    font-weight: 700;
    font-size: 22px;
    font-size: 2.2rem;
    text-transform: none;
    color: #454554;
}

.module-latest-quarter .module-financial_year-text {
    font-weight: 700;
    font-size: 22px;
    font-size: 2.2rem;
}

.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: 40px;
    font-size: 4rem;
    font-weight: 700;
    font-family: "PT Serif", sans-serif;
    width: 123px;
    height: 123px;
    line-height: 123px;
    border: 2px solid #454554;
    border-radius: 100%;
}

.module-latest-quarter .module-financial_year-text,
.module-latest-quarter .module_link-text {
    margin-top: 25px;
}

.module-latest-quarter .grid_col {
    vertical-align: top;
}

.module-latest-quarter .module_title {
    border-top: 1px solid #cccccc;
    padding-top: 40px;
}

@media only screen and (max-width: 1024px) {
    .module-latest-quarter .module-financial_type-text,
    .module-latest-quarter .module_link:before {
        width: 100px;
        height: 100px;
        line-height: 100px;
        font-size: 30px;
        font-size: 3rem;
    }
    .module-latest-quarter .module_link-text,
    .module-latest-quarter .module-financial_year-text {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

@media only screen and (max-width: 1023px) {
    .module-latest-quarter .module_links>div {
        width: 25%;
        margin-bottom: 40px;
    }
    .module-latest-quarter .module_links {
        justify-content: flex-start;
    }
    .module-latest-quarter .module_item {
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 767px) {
    .module-latest-quarter .module_links>div {
        width: 50%;
    }
}

@media only screen and (max-width: 480px) {
    .module-latest-quarter .module_links>div {
        width: 100%;
    }
}

.module--half-grey .module_title {
    text-align: left;
}

.module--half-grey {
    background: #454554;
    position: relative;
    z-index: 1;
}

.module--half-grey:before {
    position: absolute;
    content: "";
    left: 50%;
    right: 0;
    top: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}
.module-news-events:before{
    background-image: url('../design/banner/latest-events-bg.jpg');
}
.module-slideshow-events:before{
    background-image: url('../design/banner/slideshow-events-bg.jpg');
}
.module--half-grey:after {
    position: absolute;
    content: "";
    left: 50%;
    right: 0;
    top: 0;
    bottom: 0;
    background: #000000;
    opacity: 0.3;
    z-index: -1;
}

.module--half-grey .grid_col:first-child > .module {
    padding-right: 60px;
}

.module--half-grey .grid_col:last-child > .module {
    padding-left: 60px;
}

.module-news-events .module-event-latest.module-event-list .module_item+.module_item,
.module-news-events .module-event-latest.module-event-list .module_item:last-child {
    border-color: rgba(255, 255, 255, 0.22);
}

.module-news-events .button {
    margin-top: 30px;
}

@media only screen and (max-width: 1024px) {
    .module--half-grey .grid_col:first-child > .module {
        padding-right: 20px;
    }
    .module--half-grey .grid_col:last-child > .module {
        padding-left: 17px;
    }
}

@media only screen and (max-width: 1023px) {
    .module--half-grey .grid_col {
        width: 100%;
        margin-right: 0;
    }
    .module--half-grey .grid_col:first-child > .module {
        padding-right: 0;
    }
    .module--half-grey .grid_col:last-child > .module {
        padding-left: 0;
    }
    .module--half-grey:before,
    .module--half-grey:after {
        display: none;
    }
    .module--half-grey .grid_col:last-child {
        position: relative;
        z-index: 1;
    }
    .module--half-grey .grid_col:last-child:before {
        content: "";
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        z-index: -1;
        position: absolute;
        left: 0;
        right: -20px;
        bottom: 0;
        top: 0;
    }
    .module-news-events .grid_col:last-child:before{
        background-image: url(../design/banner/latest-events-bg.jpg);
    }
    .module-slideshow-events .grid_col:last-child:before{
        background-image: url('../design/banner/slideshow-events-bg.jpg');
    }
    .module--half-grey .grid_col:last-child:after{
        content: "";
        z-index: -1;
        position: absolute;
        left: 0;
        right: -20px;
        bottom: 0;
        top: 0;
        background: #000000;
        opacity: 0.3;
        z-index: -1;
    }
}


/*END IR Landing Changes*/


/*Start Enterprise Strategy*/

.module-enterprise-graphic {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../design/banner/latest-quarter-bg.jpg);
    position: relative;
    z-index: 1;
}

.module-enterprise-graphic:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(69, 69, 84, 0.47) -160%, #FFFFFF 100%);
    z-index: -1;
}

.module-enterprise-graphic_text-box {
    padding: 0 0 0 50px;
    margin-right: -0.25em;
    display: inline-block;
    width: calc(100% - 592px + 200px);
    vertical-align: middle;
}
.module-enterprise-graphic_text-box > div{
    padding: 20px 220px 20px 65px;
    background: #ffffff;
    position: relative;
}
.module-enterprise-graphic_text-box h3{
    margin-top: 0;
}
.module-enterprise-graphic_text-box > div + div{
    margin-top: 15px;
}
.module-enterprise-graphic_text-box h2 {
    line-height: 1.2;
    text-align: left;
}

.module-enterprise-graphic_text-box p {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 24px;
    margin-bottom: 0;
    font-weight: bold;
}

.module-enterprise-graphic_img-box {
    width: 590px;
    margin-right: -0.25em;
    display: inline-block;
    margin-left: -200px;
    vertical-align: middle;
    position: relative;
}
.module-enterprise-graphic_img-box > img{
    width: 100%;
}
.module-enterprise-graphic_link .module_desciption {
    display: none;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 26px;
}

.module-enterprise-graphic_link .module_trigger:before {
    cursor: pointer;
    position: absolute;
    background: transparent;
    opacity: 0;
    z-index: 1;
    content: "";
}
.module-enterprise-graphic_link .module_trigger:hover:before{
    opacity: 0.3;
}
.module-enterprise-graphic_icon {
    width: 100px;
    height: 100px;
    display: inline-block;
    background: #5A7C6B;
    line-height: 101px;
    border-radius: 100%;
    color: #ffffff;
    font-size: 40px;
    text-align: center;
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
}

.module-enterprise-graphic_icon.q4-icon_purpose {
    background: #5A7C6B;
}

.module-enterprise-graphic_icon.q4-icon_vision {
    background: #3E6D91;
}

.module-enterprise-graphic_icon.q4-icon_mission {
    background: #AD966E;
}

.module-enterprise-graphic .module_sub-text{
    margin-bottom: 40px;
}

.module_trigger--commercial:before {
    content: "";
    top: 9%;
    left: 9%;
    border-radius: 100% 0 0 0;
    width: 41%;
    height: 42%;
    border-left: 132px solid #000000;
    border-top: 143px solid #000000;
}

.module_trigger--operational:before {
    content: "";
    right: 9%;
    top: 9%;
    width: 41%;
    height: 42%;
    border-radius: 0 100% 0 0;
    border-right: 134px solid #000000;
    border-top: 143px solid #000000;
}

.module_trigger--people:before {
    content: "";
    left: 9%;
    bottom: 10%;
    width: 41%;
    height: 39%;
    border-radius: 0 0 0 100%;
    border-left: 134px solid #000000;
    border-bottom: 126px solid #000000;
}

.module_trigger--optimized:before {
    content: "";
    right: 9%;
    bottom: 10%;
    width: 41%;
    height: 39%;
    border-radius: 0 0 100% 0;
    border-right: 135px solid #000000;
    border-bottom: 127px solid #000000;
}
.fancybox-enterprise-graphic .module_desciption {
    max-width: 750px;
    padding-left: 30px;
    padding-right: 30px;
}
.fancybox-enterprise-graphic .module_desciption h3{
    font-size: 22px;
    font-size: 2.2rem;
}
.fancybox-enterprise-graphic .module_desciption p{
    font-size: 18px;
    font-size: 1.8rem;
}
@media only screen and (max-width: 1200px) {
    .module-enterprise-graphic_text-box h2 {
        font-size: 25px;
        font-size: 2.5rem;
    }
    .module-enterprise-graphic_text-box p {
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 24px;
    }
    .module-enterprise-graphic_img-box{
        width: 470px;
    }
    .module-enterprise-graphic_text-box{
        width: calc(100% - 472px + 200px);
    }
}

@media only screen and (max-width: 1023px) {
    .module-enterprise-graphic_text-box {
        display: block;
        width: 100%;
        padding-right: 50px;
        padding-bottom: 170px;
    }
    .module-enterprise-graphic_img-box {
        margin: 0 auto;
        width: auto;
        max-width: 524px;
        display: block;
        margin-top: -150px;
    }
    .module-enterprise-graphic_text-box > div{
        padding-right: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .module-enterprise-graphic_text-box {
        padding-top: 20px;
        padding-left: 30px;
        padding-right: 20px;
    }
    .module-enterprise-graphic_text-box > div{
        padding-left: 50px;
    }
    .module-enterprise-graphic_icon{
        width: 65px;
        height: 65px;
        line-height: 66px;
        left: -30px;
        font-size: 30px;
    }
    .module-enterprise-graphic_text-box p{
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 22px;
    }
    .module-enterprise-graphic_text-box h3{
        font-size: 18px;
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
}

.module-private-label {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../design/banner/privatelabel-bg2.jpg);
    z-index: 1;
    position: relative;
}
.module-private-label img {
    width: 110px;
}
.module-private-label:before{
    content: "";
    background-color: rgba(0, 0, 0, 0.2);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}
.module-private-label .grid h2,
.module-private-label .grid p {
    margin-bottom: 0;
}

.module-private-label .grid p {
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 26px;
    font-weight: 700;
}

.module-private-label .grid .grid .grid_col {
    margin-top: 50px;
}

.module-private-label .module_title {
    margin-bottom: 60px;
}

.module-private-label .module_container--inner>.grid {
    position: relative;
}

.module-private-label .module_container--inner>.grid:before {
    content: "";
    background: #ffffff;
    position: absolute;
    left: 51%;
    top: 10px;
    bottom: 10px;
    width: 1px;
}

@media only screen and (max-width: 1023px) {
    .module-private-label .grid h2 {
        font-size: 18px;
        font-size: 1.8rem;
    }
    .module-private-label .grid p {
        font-size: 14px;
        font-size: 1.4rem;
    }
    .module-private-label img {
        width: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .module-private-label .module_container--inner>.grid>.grid_col {
        width: 100%;
        padding-left: 0;
    }
    .module-private-label .module_container--inner>.grid:before {
        display: none;
    }
    .module-private-label .module_container--inner>.grid {
        margin-left: 0;
    }
    .module-private-label .module_container--inner>.grid>.grid_col+.grid_col {
        margin-top: 50px;
        padding-top: 50px;
        border-top: 1px solid #fff;
    }
}


/*END Enterprise Strategy*/


/*Company Overview*/

.module-our-divisions {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../design/banner/division-box-bg.jpg);
    background-attachment: fixed;
}

.module-our-divisions .module_title {
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
}
.module-our-divisions .grid{
    margin-top: 40px;
}
.module-our-divisions_accordion h2,
.module-wwm_title {
    margin: 0;
    padding: 35px 55px 35px 30px;
    color: #ffffff;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}
.module-our-divisions_accordion h2 {
    padding-top: 76px;
    padding-bottom: 76px;
    transition: all .4s ease;
}
.module-our-divisions_accordion.js--active h2 {
    padding-top: 35px;
    padding-bottom: 35px;
}
@media only screen and (max-width: 1200px){
    .module-our-divisions_accordion h2{
        padding-top: 50px;
        padding-bottom: 50px;
    }
}
@media only screen and (max-width: 1023px){
    .module-our-divisions_accordion h2{
        padding-top: 35px;
        padding-bottom: 35px;
    }
}
.module-wwm_title{
    padding-right: 30px;
}

.module-our-divisions_accordion h2 {
    cursor: pointer;
}

.module-our-divisions_accordion--baked-goods h2,
.module-wwm--baked-goods .module-wwm_title {
    background-image: url(../images/ourdivisions/bakedgoods-upscaled.jpg);
}

.module-our-divisions_accordion--beverages h2 {
    background-image: url('../images/ourproducts/beverages/shutterstock_602482730.jpg');
}
.module-wwm--beverages .module-wwm_title{
    background-image: url(../images/ourproducts/beverages-home-product.jpg);
}
.module-our-divisions_accordion--meal-solutions h2 {
    background-image: url(../images/ourproducts/pasta-dry-combo.jpg);
}
.module-wwm--meal-solutions .module-wwm_title{
    background-image: url(../images/ourproducts/pasta-dry-combo.jpg);
}
.module-our-divisions_accordion--snacks h2,
.module-wwm--snacks .module-wwm_title {
    background-image: url(../images/ourdivisions/healthysnacks-upscaled.jpg);
}
.module-our-divisions_accordion h2:before,
.module-wwm_title:before{
    content: "";
    z-index: -1;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
}
.module-our-divisions_accordion h2: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: "\edc2";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    display: none;
}

.module-our-divisions_accordion.js--active h2:after {
    content: "\edba";
}

.module-our-divisions_content>div {
    padding: 15px 80px 15px 30px;
    background: #ffffff;
    position: relative;
}

.module-our-divisions_content>div:nth-child(even) {
    background: #EFEEED;
}

.module-our-divisions_accordion i {
    padding-left: 3px;
}

.module-our-divisions i {
    font-size: 20px;
    font-size: 2rem;
}

.module-our-divisions i.q4-icon_trophy {
    color: #AD966E;
}

.module-our-divisions i.q4-icon_leaf {
    color: #73AF68;
}

.module-our-divisions_icons {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.module-our-divisions_content>div>span {
    line-height: 1.2;
    font-size: 18px;
    font-size: 1.8rem;
}

.module-our-divisions_legend {
    margin-top: 40px;
    color: #ffffff;
}

.module-our-divisions_legend i {
    margin-right: 20px;
}

.module-our-divisions_legend span {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.2;
}
.module-distribition{
    background-image: url(../images/whatwemake/warehouse-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
@media only screen and (max-width: 1200px) {
    .module-our-divisions_accordion h2 {
        font-size: 18px;
        font-size: 1.8rem;
    }
    .module-our-divisions_content>div,
    .module-our-divisions_accordion h2 {
        padding-left: 20px;
    }
}

@media only screen and (max-width: 1023px) {
    .module-our-divisions .grid_col {
        width: 50%;
        padding-bottom: 20px;
    }
    .pane--content .module.module-our-divisions {
        padding-bottom: 50px;
    }
    .module-our-divisions_legend .grid_col {
        display: block;
        width: 100%;
    }
}

@media only screen and (max-width: 550px) {
    .module-our-divisions .grid_col {
        width: 100%;
    }
    .module-our-divisions_legend i {
        display: block;
        margin-bottom: 8px;
    }
    .module-our-divisions_legend .grid_col+.grid_col {
        margin-top: 20px;
    }
}


/*END Company Overview*/


/*Values*/

.module-our-values i {
    width: 121px;
    height: 121px;
    display: inline-block;
    background: #3E6D91;
    line-height: 126px;
    border-radius: 100%;
    color: #ffffff;
    font-size: 65px;
}


/* 00529582 */
.module-our-values i.q4-icon_own-it{
    /* background-color: #5A7C6B; */
    background-color: #2d5234;
}
.module-our-values i.q4-icon_commit-to-excellence{
    /* background-color: #D05E32; */
    background-color: #a89968;
}
.module-our-values i.q4-icon_be-agile{
    /* background-color: #3e6d91; */
    background-color: #41748d;
}
.module-our-values i.q4-icon_speak-up{
    /* background-color: #ad976e; */
    background-color: #891658;
}
.module-our-values i.q4-icon_better-together{
    /* background-color: #95a393; */
    background-color: #333f48;
}

/* 00529582 end*/

.module-our-values h3 {
    font-size: 22px;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.module-our-values .module_container--inner > h3 {
    margin: 0 auto;
    padding: 30px 20px;
    background: #30522B;
    max-width: 900px;
    color: #ffffff;
}
.module-our-values_items-container {
    border: 1px solid #30522B;
}
.module-our-values p {
    max-width: 375px;
    margin: 0 auto;
    padding-top: 20px;
    font-size: 18px;
    font-size: 1.8rem;
}
.module-our-values ul{
    text-align: left;
}
.module-our-values .slick-arrow:before {
    color: #30522B;
    font-size: 35px;
    font-size: 3.5rem;
}

.module-our-values_item {
    padding-left: 15px;
    padding-right: 15px;
}
.module-our-values .grid{
    margin-left: 0;
}
.module-our-values_item {
    padding-top: 20px;
    padding-bottom: 20px;
}
@media (min-width: 1200px){
    .module-our-values .grid{
        margin-left: -0.25em;
    }
    .module-our-values_item {
        width: 33.33% !important;
        float: none !important;
        display: inline-block !important;
    }
}


/*END Values*/


/* What We Make */

.module-product .button {
    margin-top: 20px;
}

.module-product .slick-slider {
    padding-left: 0;
    padding-right: 0;
}

.module-product_slider {
    width: 40%;
    margin-right: -0.25em;
    display: inline-block !important;
    vertical-align: middle;
}

.module-product_slider img {
    width: 100%;
}

.module-product_info-box {
    padding: 20px 48px;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.19);
    width: calc(60% + 60px);
    margin-right: -0.25em;
    margin-left: -60px;
    display: inline-block;
    vertical-align: middle;
    background: #ffffff;
    position: relative;
    z-index: 1;
}
.module-product--rtl .module-product_info-box{
    margin-left: 0;
}
.module-product--rtl .module-product_slider{
    margin-left: -60px;
}
@media only screen and (max-width: 1200px) {
    .module-product_info-box {
        padding: 20px 20px 40px 20px;
    }
}

@media only screen and (max-width: 1023px) {
    .module-product_slider {
        width: 100%;
        display: block !important;
        max-width: 500px;
        margin: 0 auto;
    }
    .module-product_info-box {
        display: block;
        width: 100%;
        margin: 20px 0 0 0;
    }
    .module-product--rtl .module-product_slider{
        display: block;
        width: 100%;
        margin: 20px auto 0 auto;
    }
    .pane--content .module-pr-bottom.module--extra-thick{
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

.module-wwm--snacks .module-wwm_boxex {
    justify-content: center;
}

.module-wwm .module_title {
    text-align: center;
}

.module-wwm_boxex {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.module-wwm_title {
    width: 20%;
    display: flex;
    align-items: center;
}

.module-wwm .module-wwm_product {
    width: 20%;
    background: #ffffff;
    font-size: 18px;
    font-size: 1.8rem;
    text-align: center;
    padding: 20px;
    box-shadow: 0 2px 14px 0 rgba(212, 212, 212, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    min-height: 260px;
    position: relative;
    z-index: 1;
}
.module-wwm--4c .module-wwm_product{
    width: 25%;
}
.module-wwm_product .module-wwm_bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0;
    transition: .4s ease;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.module-wwm_product:hover .module-wwm_bg{
    opacity: 1;
}
.module-wwm_product .module-wwm_bg:before{
    content: "";
    background: #000000;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -2;
    opacity: 0.5;
}
.module-wwm_product span {
    line-height: 1.2;
    transition: .4s ease;
}
.module-wwm_product--with-img:hover span{
    color: #ffffff;
}
.module-wwm:not(.module-wwm--4c) .module-wwm_product:nth-child(even) {
    background-color: #EFEEED;
}

@media only screen and (max-width: 1024px) {
    .module-wwm_product {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

@media only screen and (max-width: 1023px) {
    .module-wwm .module-wwm_product,
    .module-wwm_title {
        width: 33.33%;
    }
    .module-wwm_boxex,
    .module-wwm--snacks .module-wwm_boxex {
        justify-content: flex-start;
    }
}

@media only screen and (max-width: 767px) {
    .module-wwm .module-wwm_product,
    .module-wwm_title {
        width: 50%;
    }
    .module-wwm:not(.module-wwm--4c) .module-wwm_product:nth-child(even) {
        background-color: #ffffff;
    }
    .module-wwm .module-wwm_product{
        min-height: 180px;
    }
}
/* Different Layout for some products only */
.module-wwm--baked-goods .module-wwm_product,
.module-wwm--beverages .module-wwm_product{
    display: inline-flex;
    height: 50%;
}
.module-wwm_products-wrap{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
@media only screen and (max-width: 1023px){
    .module-wwm_products-wrap{
        width: 100%;
    }
    .module-wwm--baked-goods .module-wwm_product,
    .module-wwm--beverages .module-wwm_product{
        height: auto;
    }
    .module-wwm--baked-goods .module-wwm_title,
    .module-wwm--beverages .module-wwm_title{
        width: 100%;
    }
}
@media only screen and (min-width: 768px) and (max-width: 1023px){
    .module-wwm--4c .module-wwm_product:nth-child(odd) {
        background-color: #EFEEED;
    }
}
@media only screen and (min-width: 1024px){
    .module-wwm--4c .module-wwm_product{
        width: 25%;
    }
    .module-wwm--4c .module-wwm_product:nth-child(8n-1),
    .module-wwm--4c .module-wwm_product:nth-child(8n-3),
    .module-wwm--4c .module-wwm_product:nth-child(8n-6),
    .module-wwm--4c .module-wwm_product:nth-child(8n-12) {
        background-color: #EFEEED;
    }
    .module-wwm--meal-solutions .module-wwm_product:nth-child(13){
        background: transparent;
    }
    .module-wwm--meal-solutions .module-wwm_product:last-child {
        background-color: #EFEEED;
    }
}

/*END Different Layout for some products only */

.module-facilities {
    background-color: #EFEEED;
}

.module-facilities p {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 20px;
}

.module-facilities ul {
    margin: 40px auto 0 auto;
    max-width: 760px;
}

.module-facilities ul li{
    width: 50%;
    margin-right: -0.25em;
    display: inline-block;
    vertical-align: middle;
    margin-top: 13px;
    line-height: 1.2;
    padding-right: 20px;
}

.module-facilities .module_title {
    text-align: left;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}
.module-facilities_info-box{
    padding-top: 70px;
}
@media only screen and (max-width: 1024px) {
    .module-facilities .grid_col {
        width: 100%;
    }
    .module-facilities .grid_col+.grid_col {
        padding-top: 60px;
    }
}
@media only screen and (max-width: 767px){
    .module-facilities ul li{
        width: 100%;
    }
}
.module-brands .grid_col {
    position: relative;
    padding-right: 20px;
}

.module-brands .grid_col+.grid_col:before {
    background: #AD966E;
    position: absolute;
    content: "";
    left: 0;
    height: 100px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
}

@media only screen and (max-width: 767px) {
    .module-brands .grid_col {
        width: 100%;
    }
    .module-brands .grid_col+.grid_col {
        padding-top: 80px;
    }
    .module-brands .grid_col+.grid_col:before {
        height: 1px;
        width: 150px;
        left: 50%;
        right: 0;
        top: 40px;
        transform: translateX(-50%);
    }
}

.module-pr-bottom {
    background-image: url(../design/banner/trailmix-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.module-pr-bottom.module-pr-bottom--beverages{
    background-image: url(../images/whatwemake/bevgs-bg.jpg);
}
.module-pr-bottom.module-pr-bottom--meal-solutions{
    background-image: url(../images/whatwemake/meal-solutions-bg.jpg);
}
.module-pr-bottom.module-pr-bottom--baked-goods {
    background-image: url(../images/whatwemake/crackers-bg.jpg);
}
.module-pr-bottom.module-pr-bottom--snacks{
    background-image: url(../images/whatwemake/snacks-bg.jpg);
    background-position: center 36%;
}

/*END What We Make */


/*History*/

.module-timeline .module_container--inner {
    max-width: 980px;
    margin: 0 auto;
}

.module-timeline .module_year {
    display: none;
    font-weight: 700;
    font-size: 24px;
    font-size: 2.4rem;
}

.module-timeline .slick-slider {
    padding-left: 0;
    padding-right: 0;
}

.module-timeline .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}
.module-timeline_row h4{
    margin-top: 15px;
}
.module-timeline .slick-slide {
    background-color: #5A7C6B;
    padding: 20px 30px;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.23);
    height: inherit;
    margin-bottom: 30px;
}
.module-timeline_image img{
    max-width: 95px;
    max-height: 85px;
}
.module-timeline .slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 15px;
    padding-right: 15px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    margin-top: 30px;
}

.module-timeline .module_item-container {
    position: relative;
}

.module-timeline .module_item-container:after {
    content: "";
    display: block;
    position: absolute;
    right: 17px;
    left: 17px;
    height: 2px;
    bottom: 5px;
    margin: auto;
    background-color: #5A7C6B;
}

.module-timeline .slick-dots li {
    padding: 0;
    font-size: 0;
}

.module-timeline .slick-dots button {
    height: 12px;
    width: 12px;
    background-color: #5A7C6B;
    position: relative;
    opacity: 1;
    border-color: transparent;
    overflow: visible;
    padding: 0;
    border-radius: 100%;
    border: 1px solid #5A7C6B;
    cursor: pointer;
    font-size: 0;
    line-height: 10px;
}

.module-timeline .slick-dots button:before,
.module-timeline .slick-dots button:after {
    position: absolute;
    display: inline-block;
    opacity: 0;
    color: #5A7C6B;
    left: 50%;
    transform: translate(-50%);
    transition: opacity .2s ease-out;
}
.module-timeline .slick-dots button:after{
    color: #AD966E;
}
.module-timeline .slick-dots button:before {
    font-family: 'q4-icons' !important;
    content: "\e910";
    font-size: 30px;
    height: 40px;
    width: auto;
    bottom: -7px;
}

.module-timeline .slick-dots button:after {
    font-family: 'Fira Sans', sans-serif;
    content: attr(data-year);
    font-size: 22px;
    top: 20px;
    font-weight: 700;
}

.module-timeline .slick-active button:before,
.module-timeline .slick-active button:after {
    opacity: 1;
    transition: opacity .3s ease-in;
}

.module-timeline .slick-dots li:first-child button:after,
.module-timeline .slick-dots li:last-child button:after {
    opacity: 1;
}


/* dialog arrow */

.module-timeline .module_content {
    position: relative;
    color: #ffffff;
}

.module-timeline .module_dialog-arrow {
    position: absolute;
    display: block;
    width: 22px;
    height: 22px;
    background-color: transparent;
    bottom: -22px;
    z-index: -1;
    transform: translateX(-50%);
}

.module-timeline .module_dialog-arrow:before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #5A7C6B;
    transform-origin: center;
    transform: rotate(45deg);
    top: -50%;
    z-index: -1;
}


/* slick arrows */

.module-timeline .slick-arrow:before {
    font-size: 50px;
}

.module-timeline .slick-next {
    right: -80px;
}

.module-timeline .slick-prev {
    left: -80px;
}
.module-timeline_row{
    width: 50%;
    vertical-align: top;
    margin-right: -0.25em;
    display: inline-block;
}
@media (max-width: 1200px) {
    .module-timeline .slick-next {
        right: -20px;
    }
    .module-timeline .slick-prev {
        left: -20px;
    }
    .module-timeline .slick-arrow:before {
        font-size: 25px;
    }
    .module-timeline .slick-slider {
        padding-left: 5px;
        padding-right: 5px;
    }
    .module-timeline .module_container--outer {
        max-width: 900px;
    }
    .module-timeline .module_item-container:after {
        left: 20px;
        right: 20px;
    }
}
@media (max-width: 1023px){
    .module-timeline_row{
        width: 100%;
    }
}
@media (max-width: 767px) {
    .module-timeline .slick-dots button {
        height: 8px;
        width: 8px;
    }
    .module-timeline .module_item-container:after {
        bottom: 3px;
        z-index: 1;
        left: 25px;
        right: 25px;
    }
    .module-timeline .slick-dots li:first-child button:after,
    .module-timeline .slick-dots li:last-child button:after {
        opacity: 0;
    }
    .module-timeline .slick-dots button:before {
        font-size: 26px;
        height: 19px;
        bottom: 11px;
    }
    .module-timeline .slick-dots button {
        z-index: 2;
    }
    .module-timeline li.slick-active:last-child button:after,
    .module-timeline li.slick-active:first-child button:after {
        opacity: 1;
    }
    .module-timeline .slick-dots button:after {
        font-size: 12px;
    }
}


/*END History*/

/*Start Ratios*/

.module-key-ratios .ratios .heading {
    background-color: #454554;
    text-align: left;
}
.module-key-ratios .ratios > span{
    display: block;
    margin-top: 12px;
}
.module-key-ratios .ratios > table{
    margin-top: 30px;
}
.module-key-ratios .ratios > *{
    line-height: 1.2;
}
/*END Ratios*/

/*Start Environmental Sustainability Update*/
.module-env .grid .grid_col grid_col--1-of-2 {
   border-top: 2px solid #30522B;
       padding-top: 2rem;
}

.module-env td img {
    width: 65px;
}

.module-env ul {
    line-height: 1.5;
}

.module-env_graphic{
    position: relative;
    z-index: 1;
}
.module-env_graphic p{
    margin: 0;
}
.module-env_graphic .grid_col > img{
    width: 65px;
}
.module-env_graphic .grid_col{
    padding: 40px;
}
.module-env_center-image{
    width: 33.33%;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
    max-width: 100%;
    max-height: 100%;
    z-index: -1;
}
@media (max-width: 1023px){
    .module-env_graphic .grid_col {
        padding: 20px 20px;
    }
}
@media (max-width: 767px){
    .module-env_center-image{
        position: static;
        transform: none;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .module-env_graphic .grid_col--empty {
        display: none;
    }
    .module-env_graphic .grid_col{
        width: 100%;
        padding-top: 0;
        padding-left: 0;
        padding-right: 0;
    }
}
.module-env .grid h3{
    margin: 0;
}
.module-env .grid h3 img {
    width: 50px;
    vertical-align: bottom;
}
/*END Environmental Sustainability Update*/


/*Contact IR*/
.module-ir-contact .grid_col{
    padding-right: 100px;
}
.module-ir-contact .grid_col:last-child {
    border-left: 1px solid #dddddd;
}
.module-ir-contact .grid_col p:first-child{
    margin-top: 0;
}
.module-ir-contact .grid_col p:last-child{
    margin-bottom: 0;
}
@media (max-width: 768px){
    .module-ir-contact .grid{
        margin-left: 0;
    }
    .module-ir-contact .grid_col{
        padding-left: 0;
        padding-right: 0;
    }
    .module-ir-contact .grid_col:last-child {
        border-left: 0;
        border-top: 1px solid #dddddd;
        padding-top: 40px;
        margin-top: 40px;
        padding-right: 0;
    }
}
/*END Contact IR*/

/* 246963 */
i.boullion.q4-icon_trophy {
    padding-right: 28px;
}
.module-product--food-safety .slick-list  {
    min-height: 340px;
}

.module.module-person .module-person_suffix-text {
    font-size: 1.4rem;
    font-style: italic;
}
.PageWhoWeAreBoardofDirectors .pane--content .module, .pane--left .module {
    padding-bottom: 0;
}
.module-event-header .module_q4-icon-links .module_presentation-link:before {
    content: "\ef3e";
}
/*  ESG page */
.ESG-chart td{
    padding: 0px!important;
}
.ESG-chart .grid img {
    width: 65px;
    display: inline-block;
}

.ESG-chart .grid p {
    display: inline-block;
    max-width: 76%;
}

.ESG-chart .grid_col.grid_col--2-of-5 {}

.ESG-chart .grid div {
    vertical-align: top;
}
.ESG-chart .grid .right-m-fix p {
    max-width: none;
}


.PageWhatWeMakeSnackingampBeverages .module-overlay-boxes .grid--flex,
.PageWhatWeMakeMealPreparation .module-overlay-boxes .grid--flex {
    justify-content: center;
}

@media screen and (min-width: 1023px) {
    /*.PageWhatWeMakeMealPreparation .module-overlay-boxes .grid_col:nth-child(13),*/
    .PageWhatWeMakeSnackingampBeverages .module-overlay-boxes .grid_col:nth-child(9){
        margin-left: 10px;
    }
    /*.PageWhatWeMakeMealPreparation .module-overlay-boxes .grid_col:nth-child(15),*/
    .PageWhatWeMakeSnackingampBeverages .module-overlay-boxes .grid_col:nth-child(11) {
        margin-right: 10px;
    }
}


.module-product-recall h3.company-purpose {
    color: #fff;
    font-size: 20px;
    margin-right: 15px;
    min-height: 50px;
}
.module-product-recall.dark a:not(.button):hover {
    color: #fff;
}

.module-product-recall .module_container--outer {
    max-width: none;
    padding-left: 40px;
    padding-right: 40px;
}

.module-product-recall .module_title {
    font-size: 3rem;
}

.module-product-recall .grid.inner .grid_col + .grid_col:before {
  display: none;
}

#ot-sdk-btn.ot-sdk-show-settings, #ot-sdk-btn.optanon-show-settings {
    color: #68b631;
    border: 1px solid #68b631;
    height: auto;
    white-space: normal;
    word-wrap: break-word;
    padding: 0.8em 2em;
    font-size: 0.8em;
    line-height: 1.2;
    cursor: pointer;
    -moz-transition: 0.1s ease;
    -o-transition: 0.1s ease;
    -webkit-transition: 1s ease;
    transition: 0.1s ease;
    position: relative;
    top: 12px;
    left: 10px;
}

// #onetrust-banner-sdk, #onetrust-pc-sdk, #ot-sdk-cookie-policy {
//     font-size: 16px;
//     padding-top: 29px;
// }

.stockholder-comms {
    margin-bottom: 70px;
}

/*START CR 657 - add ESG Section*/

.no--margin {
    margin: 0;
}

.grid--alt {
    margin-left: -50px;
}

.grid--alt .grid_col {
    padding-left: 50px;
}

.grid--alt2 {
    margin-left: 0;
}

.grid--alt2 .grid_col {
    padding-left: 0;
}

.grid--alt2 .grid_col div[class*="background"] {
    padding: 30px;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.13);
    width: calc(100% + 20px);
    position: relative;
}

.grid--alt2 .grid_col:last-child div[class*="background"] {
    margin-left: -20px;
}

.grid--alt2 .negative--top-margin {
    margin-top: -30px;
}

.title--icon {
    display: flex;
    text-align: left;
    align-items: center;
    margin-bottom: 0;
}

.title--icon span {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: flex;
    vertical-align: middle;
    align-items: center;
    justify-content: center;
    padding: 5px;
    margin-right: 20px;
}

.module--esg h2:not(.title--icon) {
    margin-bottom: 20px;
}

img.full--width {
    width: 100%;
    max-width: 456px;
}

.module--esg h1 {
    margin-bottom: 20px;
}

.module--esg ul {
    margin: 16px 0;
}

.module--esg li ~ li {
    margin-top: 12px;
}

.module--esg .grid ~ .grid {
    margin-top: 70px;
}

.module-esg-overview {
    background-image: url(../images/esg/overview-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.module-esg-overview.module--esg h2 {
    margin: 15px 0 10px;
}

.module-esg-own {
    background-image: url(../images/esg/anewtreehouse.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.module-esg-agile {
    background-image: url(../images/esg/agile-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

@media screen and (max-width: 768px) {
    .grid--alt2 .grid_col div[class*="background"] {
        width: 100%;
     }
    .grid--alt2 .grid_col:last-child div[class*="background"] {
        margin-left: 0;
    }
    .module--esg .grid ~ .grid {
        margin-top: 0;
    }
    .module--esg .grid_col ~ .grid_col {
        margin-top: 40px !important;
    }
    .grid--alt2 .negative--top-margin {
        margin-top: 0;
    }
}

/**/

.module-levels span {
    height: 1px;
    min-height: 111px;
    text-align: center;
    width: 100%;
    padding: 5px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    line-height: normal;
    position: relative;
}

.module-levels--brand {
    position: relative;
    margin-top: 40px;
}

.module-levels--brand:before {
    content: '';
    display: block;
    height: 20px;
    margin: auto;
    bottom: 100%;
    left: 12.5%;
    right: 12.5%;
    border: 1px solid #454554;
    border-bottom: 0;
    position: absolute;
}

.module-levels--brand .grid_col:nth-child(3) span:before,
.module-levels--brand .grid_col:nth-child(2) span:before {
    content: '';
    display: block;
    width: 1px;
    height: 20px;
    margin: auto;
    bottom: 100%;
    left: 0;
    right: 0;
    background: #454554;
    position: absolute;
}

.module-levels--brand:after {
    content: '';
    display: block;
    width: 1px;
    height: calc(100% + 40px);
    margin: auto;
    bottom: calc(100% + 20px);
    left: 20px;
    right: 0;
    background: #454554;
    position: absolute;
}

.module-levels--alt-brand {
    position: relative;
    margin-top: 20px;
}

.module-levels--alt-brand .grid_col:nth-child(1) span:before {
    content: '';
    display: block;
    width: calc(100% + 30px);
    height: 1px;
    margin: auto;
    bottom: 0;
    top: 0;
    background: #454554;
    position: absolute;
    left: 100%;
}

.module-levels--dark {
    position: relative;
    margin-top: 50px;
}

.module-levels--dark >.grid_col:nth-child(1) {
    position: relative;
}

.module-levels--dark >.grid_col:nth-child(1):before {
    content: '';
    display: block;
    width: calc(50% - 40px);
    height: 1px;
    margin: auto;
    border-bottom: 2px dashed #454554;
    position: absolute;
    left: calc(100% + 30px);
    top: 50%;
    transform: translateY(-50%);    
}

.module-levels--dark >.grid_col:nth-child(1) span:after,
.module-levels--dark >.grid_col:nth-child(1) span: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;
    content: "\edc6";
    position: absolute;
    color: #454554;
    left: calc(100% + 18px);
    font-size: 12px;
    font-weight: bold;
    top: 50%;
    transform: translateY(-50%);
}

.module-levels--dark >.grid_col:nth-child(1) span:after {
    content: "\edbe";
    left: auto;
    right: calc(-50% - 14px);   
}

@media screen and (max-width: 768px) {
    .module-levels span {
        font-size: 12px;
        padding: 5px;
    }
}

@media screen and (max-width: 480px) {
    .module-levels span {
        font-size: 8px;
        padding: 5px;
    }
    .module-levels--dark > .grid_col:nth-child(1):before {
        left: calc(100% + 20px);
        width: 45%;
    }
    .module-levels--dark > .grid_col:nth-child(1) span:before {
        left: calc(100% + 8px);
    }
    .module-levels--dark > .grid_col:nth-child(1) span:after {
        right: calc(-50% - 40px);
    }
}

/**/

.module-esg-boxes .grid_col {
    margin-top: 10px;
    margin-bottom: 10px;
}

.module-esg-boxes .grid_col-inner {
    height: 100%;
}

.module-esg-boxes_header {
    text-align: center;
    padding: 20px 5px;
}

.module-esg-boxes_body {
    padding: 30px 20px 50px 20px;
}

.module-esg-boxes_body ul {
    font-size: 14px;
    margin: 0;
    padding-left: 16px;
}

.module-esg-boxes_body li {
    margin-bottom: 6px;
}

.module-esg-steering .module-esg-boxes {
    margin-top: 50px;
    margin-bottom: 50px;
}

/**/

.module-esg-materiality img {
    margin-top: 20px;
    max-width: 854px;
    width: 100%;
}

.page--areas .module--esg.module--thick-bottom {
    padding-bottom: 120px;
}

.page--areas .module--esg.module--no-padding-top .module_container--inner {
    position: relative;
    top: -60px;
    margin-bottom: -60px;
}

.page--areas .module--esg .grid ~ .grid {
    margin-top: 70px;
}

.module-esg-agenda {
    background-image: url(../images/esg/anewtreehouse.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

@media screen and (max-width: 768px) {
    .page--areas .module--esg.module--thick-bottom {
        padding-bottom: 100px;
    }
}

/**/

.module-esg-reports-disclosures .module_view-all {
    margin-top: 60px;
}

.module-esg-reports-disclosures .module_cover img {
    border: 1px solid #ccc;
}

.module-esg-reports-disclosures .module_links {
    margin: 0;
}

.module-esg-reports-disclosures .module_link:not(.module_link--view-all) {
    font-size: 18px;
    margin-right: 0;
}

.module-esg-reports-disclosures .module_link:not(.module_link--view-all) .module_link-text {
    display: inline;
    padding-right: 5px;
}

.module-esg-reports-disclosures .module_link:not(.module_link--view-all) i {
    font-size: 12px;
    display: inline;
}

.module-esg-reports-disclosures .module_link:not(.module_link--view-all) i:before {
    font-weight: bold;
}

.module-esg-reports .module_link:not(.module_link--view-all) {
    color: #2C2E2F;
}

.module-esg-reports .module_link:not(.module_link--view-all) i {
    color: #30522B;
}

.module-esg-reports .module_link:not(.module_link--view-all) {
    color: #2C2E2F;
}

.module-esg-reports .module_link.module_link--view-all {
    color: #30522B;
    font-size: 14px;
    margin: 5px 0 0;
    display: inline-block;
}

.module-esg-disclosures .grid_col-inner  {
    padding: 30px;
}

.module-esg-disclosures .module_links >div ~ div {
    margin-top: 30px;
}

.module-esg-disclosures .module_link {
    font-size: 18px;
    margin: 0;
    color: #fff;
}

.module-esg-disclosures .module_link:before {
    color: #fff;
    font-size: 28px;
    padding-right: 20px;
    vertical-align: middle;
}

.module-faq--policies h2 {
    margin-top: 24px;
    margin-bottom: 20px;
}

.module--max-950 {
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;    
}

.module--max-900 {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.module--max-700 {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 1024px) {
    .module-esg-disclosures {
        margin-top: 40px;
    }
}

@media screen and (max-width: 768px) {
    .module-esg-reports_annual {
        margin-bottom: 20px;
    }
    .module-esg-reports-disclosures .module_link:not(.module_link--view-all) {
        font-size: 16px;
    }
}

/*END CR 657 - add ESG Section*/


/*00084636*/
 .module-news--widget .grid_col {
  box-sizing: border-box;
  display: inline-block;
  margin-right: -.25em;
  min-height: 1px;
  padding-left: 20px;
  vertical-align: top;
   }

 .module-news--widget  .grid_col--am {
    vertical-align: middle;
}


.module-news--widget .grid_col--1-of-4, .grid_col--2-of-8, .grid_col--3-of-12 {
    width: 25% !important;
}

.module-news--widget .module_header .grid_col:first-child > span,
.module-news--widget .module_date-time .module_date-text {
  padding-left: 12px;
  }
/*00084636*/

.pin--dallas{
       right: 58%;
    bottom: 24%;
}

.pin--stlouis{
    right: 46.9%;
    bottom: 47%;
}


/*----00417941--*/
.PageWhatWeMakeSnackingBeverages  .module-page-title {
    display: none;
}

.PageWhatWeMakeSnackingBeverages .pane--navigation .pane_inner  {
    display: none;
}

/*----00417941--*/

