/* ==========================================================================
   GENERAL
   Basic stylings of the website. 
   ========================================================================== */

/*
 * KEYFRAMES
 */

@keyframes example {
}

/*
 * BASIC
 */

::-webkit-scrollbar {
    width: 1.0em;
    height: 1.0em;
}
::-webkit-scrollbar-thumb {
    background-color: #c3d609;
}
::-webkit-scrollbar-track {
    background-color: #ffffff;
}
::-webkit-scrollbar-button {
    display: none;
}
body *::-webkit-scrollbar {
    width: 0.5em;
    height: 0.5em;
}
body *::-webkit-scrollbar-thumb {
    background-color: #59BF85;
}
body *::-webkit-scrollbar-track {
    background-color: #C4C4C4;
}
::-moz-selection {
    background-color: rgba(4, 127, 59, 0.15);
    color: #C4C4C4;
}
::selection {
    background-color: rgba(4, 127, 59, 0.15);
    color: #C4C4C4;
}
*:focus {
    outline: 0;
}
table {
    border-spacing: 0;
    border-collapse: collapse;
}
th,
td {
    padding: 0;
}
label {
	font-weight: 300;
}
input,
select,
textarea {
	outline: none
}
address {
    font-style: normal;
    margin-bottom: 0;
}
img {
    height: auto;
    width: 100%;
}
body.js-no-scroll {
    height: 100%;
    overflow: hidden;
}

/*
 * TYPOGRAPHY
 */

html {
    font-size: 16px;
}
body {
	color: #151515;
	line-height: 1.4;
	font-family: 'Source Sans Pro', sans-serif;
    font-size: 68.8%;
    font-weight: 400;
}
b,
strong,
th {
	font-weight: 700;
}
a,
a:visited,
a:hover {
    color: inherit;
    text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 1.0em;
    font-weight: 400;
}
.chunk-main p {
    font-size: 2.0em;
    margin: 20px 0;
}
.chunk-main p:last-child {
    margin-bottom: 0;
}
.chunk-main ul:not(.slick-dots),
.chunk-main ol {
    font-size: 2.0em;
    margin: 20px 0;
    padding: 0 0 0 20px;
}
.chunk-main ul:not(.slick-dots):last-child,
.chunk-main ol:last-child {
    margin-bottom: 0;
}
.chunk-main table {
    border: 2px solid rgba(0,0,0,0.25);
    margin: 20px 0;
    width: 100%;
}
    .chunk-main table tr th,
    .chunk-main table tr td {
        font-size: 2.0em;
        padding: 5px 20px 5px 20px;
    }
    .chunk-main table tr th {
        background-color: #c3d609;
        color: #ffffff;
        font-weight: 600;
        letter-spacing: 1px;
        text-align: center;
        text-transform: uppercase;
    }
    .chunk-main table tr td {
        text-align: left;
    }
    .chunk-main table tr:hover td {
        background-color: rgba(4, 127, 59, 0.15);
    }
.chunk-main .chunk-table-wrap {
    margin: 20px 0;
    overflow-x: none;
}
    .chunk-main .chunk-table-wrap table {
        margin: 0;
        min-width: 767px;
    }
.chunk-main p a,
.chunk-main ul a,
.chunk-main ol a,
.chunk-main table a {
    opacity: 0.8;
}
.chunk-main p a:hover,
.chunk-main ul a:hover,
.chunk-main ol a:hover,
.chunk-main table a:hover {
    opacity: 1;
}

/*
 * BUTTON
 */

.chunk-button {
    border: 1px solid #c3d609;
    color: #c3d609 !important;
    display: inline-block;
    height: 3.0em;
    line-height: 2.8em;
    min-width: 10.0em;
    padding: 0 2.0em;
    text-align: center;
    /* reob 210812 */ font-size: 1.6em;
}
/*.chunk-button {
    border: 1px solid #c3d609;
    color: #c3d609 !important;
    display: inline-block;
    height: 4.0em;
    line-height: 3.8em;
    min-width: 15.0em;
    padding: 0 2.0em;
    text-align: center;
}*/
.chunk-button span {
    font-size: 1.0em;
    font-weight: 600;
}
/*.chunk-button span {
    font-size: 1.6em;
    font-weight: 600;
}*/
.chunk-button:hover {
    background-color: #c3d609;
    color: #ffffff !important;
}
.chunk-button.chunk-button--inverted {
    border: 1px solid #ffffff;
    color: #ffffff !important;
}
.chunk-button.chunk-button--inverted:hover {
    background-color: #ffffff;
    color: #c3d609 !important;
}