﻿.slide-in-down.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: translateY(-100%);
    transition-property: transform, opacity;
    backface-visibility: hidden
}

.slide-in-down.mui-enter.mui-enter-active {
    transform: translateY(0)
}

.slide-in-left.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: translateX(-100%);
    transition-property: transform, opacity;
    backface-visibility: hidden
}

.slide-in-left.mui-enter.mui-enter-active {
    transform: translateX(0)
}

.slide-in-up.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: translateY(100%);
    transition-property: transform, opacity;
    backface-visibility: hidden
}

.slide-in-up.mui-enter.mui-enter-active {
    transform: translateY(0)
}

.slide-in-right.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: translateX(100%);
    transition-property: transform, opacity;
    backface-visibility: hidden
}

.slide-in-right.mui-enter.mui-enter-active {
    transform: translateX(0)
}

.slide-out-down.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: translateY(0);
    transition-property: transform, opacity;
    backface-visibility: hidden
}

.slide-out-down.mui-leave.mui-leave-active {
    transform: translateY(100%)
}

.slide-out-right.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: translateX(0);
    transition-property: transform, opacity;
    backface-visibility: hidden
}

.slide-out-right.mui-leave.mui-leave-active {
    transform: translateX(100%)
}

.slide-out-up.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: translateY(0);
    transition-property: transform, opacity;
    backface-visibility: hidden
}

.slide-out-up.mui-leave.mui-leave-active {
    transform: translateY(-100%)
}

.slide-out-left.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: translateX(0);
    transition-property: transform, opacity;
    backface-visibility: hidden
}

.slide-out-left.mui-leave.mui-leave-active {
    transform: translateX(-100%)
}

.fade-in.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    opacity: 0;
    transition-property: opacity
}

.fade-in.mui-enter.mui-enter-active {
    opacity: 1
}

.fade-out.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    opacity: 1;
    transition-property: opacity
}

.fade-out.mui-leave.mui-leave-active {
    opacity: 0
}

.hinge-in-from-top.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotateX(-90deg);
    transform-origin: top;
    transition-property: transform, opacity;
    opacity: 0
}

.hinge-in-from-top.mui-enter.mui-enter-active {
    transform: perspective(2000px) rotate(0deg);
    opacity: 1
}

.hinge-in-from-right.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotateY(-90deg);
    transform-origin: right;
    transition-property: transform, opacity;
    opacity: 0
}

.hinge-in-from-right.mui-enter.mui-enter-active {
    transform: perspective(2000px) rotate(0deg);
    opacity: 1
}

.hinge-in-from-bottom.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotateX(90deg);
    transform-origin: bottom;
    transition-property: transform, opacity;
    opacity: 0
}

.hinge-in-from-bottom.mui-enter.mui-enter-active {
    transform: perspective(2000px) rotate(0deg);
    opacity: 1
}

.hinge-in-from-left.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotateY(90deg);
    transform-origin: left;
    transition-property: transform, opacity;
    opacity: 0
}

.hinge-in-from-left.mui-enter.mui-enter-active {
    transform: perspective(2000px) rotate(0deg);
    opacity: 1
}

.hinge-in-from-middle-x.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotateX(-90deg);
    transform-origin: center;
    transition-property: transform, opacity;
    opacity: 0
}

.hinge-in-from-middle-x.mui-enter.mui-enter-active {
    transform: perspective(2000px) rotate(0deg);
    opacity: 1
}

.hinge-in-from-middle-y.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotateY(-90deg);
    transform-origin: center;
    transition-property: transform, opacity;
    opacity: 0
}

.hinge-in-from-middle-y.mui-enter.mui-enter-active {
    transform: perspective(2000px) rotate(0deg);
    opacity: 1
}

.hinge-out-from-top.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotate(0deg);
    transform-origin: top;
    transition-property: transform, opacity;
    opacity: 1
}

.hinge-out-from-top.mui-leave.mui-leave-active {
    transform: perspective(2000px) rotateX(-90deg);
    opacity: 0
}

.hinge-out-from-right.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotate(0deg);
    transform-origin: right;
    transition-property: transform, opacity;
    opacity: 1
}

.hinge-out-from-right.mui-leave.mui-leave-active {
    transform: perspective(2000px) rotateY(-90deg);
    opacity: 0
}

.hinge-out-from-bottom.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotate(0deg);
    transform-origin: bottom;
    transition-property: transform, opacity;
    opacity: 1
}

.hinge-out-from-bottom.mui-leave.mui-leave-active {
    transform: perspective(2000px) rotateX(90deg);
    opacity: 0
}

.hinge-out-from-left.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotate(0deg);
    transform-origin: left;
    transition-property: transform, opacity;
    opacity: 1
}

.hinge-out-from-left.mui-leave.mui-leave-active {
    transform: perspective(2000px) rotateY(90deg);
    opacity: 0
}

.hinge-out-from-middle-x.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotate(0deg);
    transform-origin: center;
    transition-property: transform, opacity;
    opacity: 1
}

.hinge-out-from-middle-x.mui-leave.mui-leave-active {
    transform: perspective(2000px) rotateX(-90deg);
    opacity: 0
}

.hinge-out-from-middle-y.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotate(0deg);
    transform-origin: center;
    transition-property: transform, opacity;
    opacity: 1
}

.hinge-out-from-middle-y.mui-leave.mui-leave-active {
    transform: perspective(2000px) rotateY(-90deg);
    opacity: 0
}

.scale-in-up.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: scale(0.5);
    transition-property: transform, opacity;
    opacity: 0
}

.scale-in-up.mui-enter.mui-enter-active {
    transform: scale(1);
    opacity: 1
}

.scale-in-down.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: scale(1.5);
    transition-property: transform, opacity;
    opacity: 0
}

.scale-in-down.mui-enter.mui-enter-active {
    transform: scale(1);
    opacity: 1
}

.scale-out-up.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: scale(1);
    transition-property: transform, opacity;
    opacity: 1
}

.scale-out-up.mui-leave.mui-leave-active {
    transform: scale(1.5);
    opacity: 0
}

.scale-out-down.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: scale(1);
    transition-property: transform, opacity;
    opacity: 1
}

.scale-out-down.mui-leave.mui-leave-active {
    transform: scale(0.5);
    opacity: 0
}

.spin-in.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: rotate(-0.75turn);
    transition-property: transform, opacity;
    opacity: 0
}

.spin-in.mui-enter.mui-enter-active {
    transform: rotate(0);
    opacity: 1
}

.spin-out.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: rotate(0);
    transition-property: transform, opacity;
    opacity: 1
}

.spin-out.mui-leave.mui-leave-active {
    transform: rotate(0.75turn);
    opacity: 0
}

.spin-in-ccw.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: rotate(0.75turn);
    transition-property: transform, opacity;
    opacity: 0
}

.spin-in-ccw.mui-enter.mui-enter-active {
    transform: rotate(0);
    opacity: 1
}

.spin-out-ccw.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: rotate(0);
    transition-property: transform, opacity;
    opacity: 1
}

.spin-out-ccw.mui-leave.mui-leave-active {
    transform: rotate(-0.75turn);
    opacity: 0
}

.slow {
    transition-duration: 750ms !important
}

.fast {
    transition-duration: 250ms !important
}

.linear {
    transition-timing-function: linear !important
}

.ease {
    transition-timing-function: ease !important
}

.ease-in {
    transition-timing-function: ease-in !important
}

.ease-out {
    transition-timing-function: ease-out !important
}

.ease-in-out {
    transition-timing-function: ease-in-out !important
}

.bounce-in {
    transition-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important
}

.bounce-out {
    transition-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important
}

.bounce-in-out {
    transition-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important
}

.short-delay {
    transition-delay: 300ms !important
}

.long-delay {
    transition-delay: 700ms !important
}

.shake {
    animation-name: shake-7
}

@keyframes shake-7 {
    0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90% {
        transform: translateX(7%)
    }
    5%, 15%, 25%, 35%, 45%, 55%, 65%, 75%, 85%, 95% {
        transform: translateX(-7%)
    }
}

.spin-cw {
    animation-name: spin-cw-1turn
}

@keyframes spin-cw-1turn {
    0% {
        transform: rotate(-1turn)
    }
    100% {
        transform: rotate(0)
    }
}

.spin-ccw {
    animation-name: spin-cw-1turn
}

@keyframes spin-cw-1turn {
    0% {
        transform: rotate(0)
    }
    100% {
        transform: rotate(1turn)
    }
}

.wiggle {
    animation-name: wiggle-7deg
}

@keyframes wiggle-7deg {
    40%, 50%, 60% {
        transform: rotate(7deg)
    }
    35%, 45%, 55%, 65% {
        transform: rotate(-7deg)
    }
    0%, 30%, 70%, 100% {
        transform: rotate(0)
    }
}

.shake, .spin-cw, .spin-ccw, .wiggle {
    animation-duration: 500ms
}

.infinite {
    animation-iteration-count: infinite
}

.slow {
    animation-duration: 750ms !important
}

.fast {
    animation-duration: 250ms !important
}

.linear {
    animation-timing-function: linear !important
}

.ease {
    animation-timing-function: ease !important
}

.ease-in {
    animation-timing-function: ease-in !important
}

.ease-out {
    animation-timing-function: ease-out !important
}

.ease-in-out {
    animation-timing-function: ease-in-out !important
}

.bounce-in {
    animation-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important
}

.bounce-out {
    animation-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important
}

.bounce-in-out {
    animation-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important
}

.short-delay {
    animation-delay: 300ms !important
}

.long-delay {
    animation-delay: 700ms !important
}

/*! normalize-scss | MIT/GPLv2 License | bit.ly/normalize-scss */
html {
    font-family: sans-serif;
    line-height: 1.15;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

article, aside, footer, header, nav, section {
    display: block
}

h1 {
    font-size: 2em;
    margin: 0.67em 0
}

figcaption, figure {
    display: block
}

figure {
    margin: 1em 40px
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

main {
    display: block
}

pre {
    font-family: monospace, monospace;
    font-size: 1em
}

a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects
}

a:active, a:hover {
    outline-width: 0
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted
}

b, strong {
    font-weight: inherit
}

b, strong {
    font-weight: bolder
}

code, kbd, samp {
    font-family: monospace, monospace;
    font-size: 1em
}

dfn {
    font-style: italic
}

mark {
    background-color: #ff0;
    color: #000
}

small {
    font-size: 80%
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -0.25em
}

sup {
    top: -0.5em
}

audio, video {
    display: inline-block
}

audio:not([controls]) {
    display: none;
    height: 0
}

img {
    border-style: none
}

svg:not(:root) {
    overflow: hidden
}

button, input, optgroup, select, textarea {
    font-family: sans-serif;
    font-size: 100%;
    line-height: 1.15;
    margin: 0
}

button {
    overflow: visible
}

button, select {
    text-transform: none
}

button, html [type="button"], [type="reset"], [type="submit"] {
    -webkit-appearance: button
}

button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0
}

button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText
}

input {
    overflow: visible
}

[type="checkbox"], [type="radio"] {
    box-sizing: border-box;
    padding: 0
}

[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
    height: auto
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

[type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em
}

legend {
    box-sizing: border-box;
    display: table;
    max-width: 100%;
    padding: 0;
    color: inherit;
    white-space: normal
}

progress {
    display: inline-block;
    vertical-align: baseline
}

textarea {
    overflow: auto
}

details {
    display: block
}

summary {
    display: list-item
}

menu {
    display: block
}

canvas {
    display: inline-block
}

template {
    display: none
}

[hidden] {
    display: none
}

.foundation-mq {
    font-family: "small=0em&medium=40em&large=64.0625em&xlarge=75em&xxlarge=90em"
}

html {
    box-sizing: border-box;
    font-size: 100%
}

*, *::before, *::after {
    box-sizing: inherit
}

body {
    margin: 0;
    padding: 0;
    background: #fefefe;
    font-family: "Roboto", Arial, sans-serif;
    font-weight: normal;
    line-height: 1.5;
    color: #0a0a0a;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

img {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    height: auto;
    -ms-interpolation-mode: bicubic
}

textarea {
    height: auto;
    min-height: 50px;
    border-radius: 0
}

select {
    box-sizing: border-box;
    width: 100%;
    border-radius: 0
}

.map_canvas img, .map_canvas embed, .map_canvas object, .mqa-display img, .mqa-display embed, .mqa-display object {
    max-width: none !important
}

button {
    padding: 0;
    appearance: none;
    border: 0;
    border-radius: 0;
    background: transparent;
    line-height: 1
}

[data-whatinput='mouse'] button {
    outline: 0
}

pre {
    overflow: auto
}

.is-visible {
    display: block !important
}

.is-hidden {
    display: none !important
}

.row {
    max-width: 75rem;
    margin-right: auto;
    margin-left: auto
}

.row::before, .row::after {
    display: table;
    content: ' '
}

.row::after {
    clear: both
}

.row.collapse > .column, .row.collapse > .columns {
    padding-right: 0;
    padding-left: 0
}

.row .row {
    margin-right: -0.625rem;
    margin-left: -0.625rem
}

@media print, screen and (min-width: 40em) {
    .row .row {
        margin-right: -0.9375rem;
        margin-left: -0.9375rem
    }
}

@media print, screen and (min-width: 64.0625em) {
    .row .row {
        margin-right: -0.9375rem;
        margin-left: -0.9375rem
    }
}

.row .row.collapse {
    margin-right: 0;
    margin-left: 0
}

.row.expanded {
    max-width: none
}

.row.expanded .row {
    margin-right: auto;
    margin-left: auto
}

.row:not(.expanded) .row {
    max-width: none
}

.row.gutter-small > .column, .row.gutter-small > .columns {
    padding-right: 0.625rem;
    padding-left: 0.625rem
}

.row.gutter-medium > .column, .row.gutter-medium > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem
}

.column, .columns {
    width: 100%;
    float: left;
    padding-right: 0.625rem;
    padding-left: 0.625rem
}

@media print, screen and (min-width: 40em) {
    .column, .columns {
        padding-right: 0.9375rem;
        padding-left: 0.9375rem
    }
}

.column:last-child:not(:first-child), .columns:last-child:not(:first-child) {
    float: right
}

.column.end:last-child:last-child, .end.columns:last-child:last-child {
    float: left
}

.column.row.row, .row.row.columns {
    float: none
}

.row .column.row.row, .row .row.row.columns {
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0
}

.small-1 {
    width: 8.33333%
}

.small-push-1 {
    position: relative;
    left: 8.33333%
}

.small-pull-1 {
    position: relative;
    left: -8.33333%
}

.small-offset-0 {
    margin-left: 0%
}

.small-2 {
    width: 16.66667%
}

.small-push-2 {
    position: relative;
    left: 16.66667%
}

.small-pull-2 {
    position: relative;
    left: -16.66667%
}

.small-offset-1 {
    margin-left: 8.33333%
}

.small-3 {
    width: 25%
}

.small-push-3 {
    position: relative;
    left: 25%
}

.small-pull-3 {
    position: relative;
    left: -25%
}

.small-offset-2 {
    margin-left: 16.66667%
}

.small-4 {
    width: 33.33333%
}

.small-push-4 {
    position: relative;
    left: 33.33333%
}

.small-pull-4 {
    position: relative;
    left: -33.33333%
}

.small-offset-3 {
    margin-left: 25%
}

.small-5 {
    width: 41.66667%
}

.small-push-5 {
    position: relative;
    left: 41.66667%
}

.small-pull-5 {
    position: relative;
    left: -41.66667%
}

.small-offset-4 {
    margin-left: 33.33333%
}

.small-6 {
    width: 50%
}

.small-push-6 {
    position: relative;
    left: 50%
}

.small-pull-6 {
    position: relative;
    left: -50%
}

.small-offset-5 {
    margin-left: 41.66667%
}

.small-7 {
    width: 58.33333%
}

.small-push-7 {
    position: relative;
    left: 58.33333%
}

.small-pull-7 {
    position: relative;
    left: -58.33333%
}

.small-offset-6 {
    margin-left: 50%
}

.small-8 {
    width: 66.66667%
}

.small-push-8 {
    position: relative;
    left: 66.66667%
}

.small-pull-8 {
    position: relative;
    left: -66.66667%
}

.small-offset-7 {
    margin-left: 58.33333%
}

.small-9 {
    width: 75%
}

.small-push-9 {
    position: relative;
    left: 75%
}

.small-pull-9 {
    position: relative;
    left: -75%
}

.small-offset-8 {
    margin-left: 66.66667%
}

.small-10 {
    width: 83.33333%
}

.small-push-10 {
    position: relative;
    left: 83.33333%
}

.small-pull-10 {
    position: relative;
    left: -83.33333%
}

.small-offset-9 {
    margin-left: 75%
}

.small-11 {
    width: 91.66667%
}

.small-push-11 {
    position: relative;
    left: 91.66667%
}

.small-pull-11 {
    position: relative;
    left: -91.66667%
}

.small-offset-10 {
    margin-left: 83.33333%
}

.small-12 {
    width: 100%
}

.small-offset-11 {
    margin-left: 91.66667%
}

.small-up-1 > .column, .small-up-1 > .columns {
    float: left;
    width: 100%
}

.small-up-1 > .column:nth-of-type(1n), .small-up-1 > .columns:nth-of-type(1n) {
    clear: none
}

.small-up-1 > .column:nth-of-type(1n+1), .small-up-1 > .columns:nth-of-type(1n+1) {
    clear: both
}

.small-up-1 > .column:last-child, .small-up-1 > .columns:last-child {
    float: left
}

.small-up-2 > .column, .small-up-2 > .columns {
    float: left;
    width: 50%
}

.small-up-2 > .column:nth-of-type(1n), .small-up-2 > .columns:nth-of-type(1n) {
    clear: none
}

.small-up-2 > .column:nth-of-type(2n+1), .small-up-2 > .columns:nth-of-type(2n+1) {
    clear: both
}

.small-up-2 > .column:last-child, .small-up-2 > .columns:last-child {
    float: left
}

.small-up-3 > .column, .small-up-3 > .columns {
    float: left;
    width: 33.33333%
}

.small-up-3 > .column:nth-of-type(1n), .small-up-3 > .columns:nth-of-type(1n) {
    clear: none
}

.small-up-3 > .column:nth-of-type(3n+1), .small-up-3 > .columns:nth-of-type(3n+1) {
    clear: both
}

.small-up-3 > .column:last-child, .small-up-3 > .columns:last-child {
    float: left
}

.small-up-4 > .column, .small-up-4 > .columns {
    float: left;
    width: 25%
}

.small-up-4 > .column:nth-of-type(1n), .small-up-4 > .columns:nth-of-type(1n) {
    clear: none
}

.small-up-4 > .column:nth-of-type(4n+1), .small-up-4 > .columns:nth-of-type(4n+1) {
    clear: both
}

.small-up-4 > .column:last-child, .small-up-4 > .columns:last-child {
    float: left
}

.small-up-5 > .column, .small-up-5 > .columns {
    float: left;
    width: 20%
}

.small-up-5 > .column:nth-of-type(1n), .small-up-5 > .columns:nth-of-type(1n) {
    clear: none
}

.small-up-5 > .column:nth-of-type(5n+1), .small-up-5 > .columns:nth-of-type(5n+1) {
    clear: both
}

.small-up-5 > .column:last-child, .small-up-5 > .columns:last-child {
    float: left
}

.small-up-6 > .column, .small-up-6 > .columns {
    float: left;
    width: 16.66667%
}

.small-up-6 > .column:nth-of-type(1n), .small-up-6 > .columns:nth-of-type(1n) {
    clear: none
}

.small-up-6 > .column:nth-of-type(6n+1), .small-up-6 > .columns:nth-of-type(6n+1) {
    clear: both
}

.small-up-6 > .column:last-child, .small-up-6 > .columns:last-child {
    float: left
}

.small-up-7 > .column, .small-up-7 > .columns {
    float: left;
    width: 14.28571%
}

.small-up-7 > .column:nth-of-type(1n), .small-up-7 > .columns:nth-of-type(1n) {
    clear: none
}

.small-up-7 > .column:nth-of-type(7n+1), .small-up-7 > .columns:nth-of-type(7n+1) {
    clear: both
}

.small-up-7 > .column:last-child, .small-up-7 > .columns:last-child {
    float: left
}

.small-up-8 > .column, .small-up-8 > .columns {
    float: left;
    width: 12.5%
}

.small-up-8 > .column:nth-of-type(1n), .small-up-8 > .columns:nth-of-type(1n) {
    clear: none
}

.small-up-8 > .column:nth-of-type(8n+1), .small-up-8 > .columns:nth-of-type(8n+1) {
    clear: both
}

.small-up-8 > .column:last-child, .small-up-8 > .columns:last-child {
    float: left
}

.small-collapse > .column, .small-collapse > .columns {
    padding-right: 0;
    padding-left: 0
}

.small-collapse .row {
    margin-right: 0;
    margin-left: 0
}

.expanded.row .small-collapse.row {
    margin-right: 0;
    margin-left: 0
}

.small-uncollapse > .column, .small-uncollapse > .columns {
    padding-right: 0.625rem;
    padding-left: 0.625rem
}

.small-centered {
    margin-right: auto;
    margin-left: auto
}

.small-centered, .small-centered:last-child:not(:first-child) {
    float: none;
    clear: both
}

.small-uncentered, .small-push-0, .small-pull-0 {
    position: static;
    float: left;
    margin-right: 0;
    margin-left: 0
}

@media print, screen and (min-width: 40em) {
    .medium-1 {
        width: 8.33333%
    }

    .medium-push-1 {
        position: relative;
        left: 8.33333%
    }

    .medium-pull-1 {
        position: relative;
        left: -8.33333%
    }

    .medium-offset-0 {
        margin-left: 0%
    }

    .medium-2 {
        width: 16.66667%
    }

    .medium-push-2 {
        position: relative;
        left: 16.66667%
    }

    .medium-pull-2 {
        position: relative;
        left: -16.66667%
    }

    .medium-offset-1 {
        margin-left: 8.33333%
    }

    .medium-3 {
        width: 25%
    }

    .medium-push-3 {
        position: relative;
        left: 25%
    }

    .medium-pull-3 {
        position: relative;
        left: -25%
    }

    .medium-offset-2 {
        margin-left: 16.66667%
    }

    .medium-4 {
        width: 33.33333%
    }

    .medium-push-4 {
        position: relative;
        left: 33.33333%
    }

    .medium-pull-4 {
        position: relative;
        left: -33.33333%
    }

    .medium-offset-3 {
        margin-left: 25%
    }

    .medium-5 {
        width: 41.66667%
    }

    .medium-push-5 {
        position: relative;
        left: 41.66667%
    }

    .medium-pull-5 {
        position: relative;
        left: -41.66667%
    }

    .medium-offset-4 {
        margin-left: 33.33333%
    }

    .medium-6 {
        width: 50%
    }

    .medium-push-6 {
        position: relative;
        left: 50%
    }

    .medium-pull-6 {
        position: relative;
        left: -50%
    }

    .medium-offset-5 {
        margin-left: 41.66667%
    }

    .medium-7 {
        width: 58.33333%
    }

    .medium-push-7 {
        position: relative;
        left: 58.33333%
    }

    .medium-pull-7 {
        position: relative;
        left: -58.33333%
    }

    .medium-offset-6 {
        margin-left: 50%
    }

    .medium-8 {
        width: 66.66667%
    }

    .medium-push-8 {
        position: relative;
        left: 66.66667%
    }

    .medium-pull-8 {
        position: relative;
        left: -66.66667%
    }

    .medium-offset-7 {
        margin-left: 58.33333%
    }

    .medium-9 {
        width: 75%
    }

    .medium-push-9 {
        position: relative;
        left: 75%
    }

    .medium-pull-9 {
        position: relative;
        left: -75%
    }

    .medium-offset-8 {
        margin-left: 66.66667%
    }

    .medium-10 {
        width: 83.33333%
    }

    .medium-push-10 {
        position: relative;
        left: 83.33333%
    }

    .medium-pull-10 {
        position: relative;
        left: -83.33333%
    }

    .medium-offset-9 {
        margin-left: 75%
    }

    .medium-11 {
        width: 91.66667%
    }

    .medium-push-11 {
        position: relative;
        left: 91.66667%
    }

    .medium-pull-11 {
        position: relative;
        left: -91.66667%
    }

    .medium-offset-10 {
        margin-left: 83.33333%
    }

    .medium-12 {
        width: 100%
    }

    .medium-offset-11 {
        margin-left: 91.66667%
    }

    .medium-up-1 > .column, .medium-up-1 > .columns {
        float: left;
        width: 100%
    }

    .medium-up-1 > .column:nth-of-type(1n), .medium-up-1 > .columns:nth-of-type(1n) {
        clear: none
    }

    .medium-up-1 > .column:nth-of-type(1n+1), .medium-up-1 > .columns:nth-of-type(1n+1) {
        clear: both
    }

    .medium-up-1 > .column:last-child, .medium-up-1 > .columns:last-child {
        float: left
    }

    .medium-up-2 > .column, .medium-up-2 > .columns {
        float: left;
        width: 50%
    }

    .medium-up-2 > .column:nth-of-type(1n), .medium-up-2 > .columns:nth-of-type(1n) {
        clear: none
    }

    .medium-up-2 > .column:nth-of-type(2n+1), .medium-up-2 > .columns:nth-of-type(2n+1) {
        clear: both
    }

    .medium-up-2 > .column:last-child, .medium-up-2 > .columns:last-child {
        float: left
    }

    .medium-up-3 > .column, .medium-up-3 > .columns {
        float: left;
        width: 33.33333%
    }

    .medium-up-3 > .column:nth-of-type(1n), .medium-up-3 > .columns:nth-of-type(1n) {
        clear: none
    }

    .medium-up-3 > .column:nth-of-type(3n+1), .medium-up-3 > .columns:nth-of-type(3n+1) {
        clear: both
    }

    .medium-up-3 > .column:last-child, .medium-up-3 > .columns:last-child {
        float: left
    }

    .medium-up-4 > .column, .medium-up-4 > .columns {
        float: left;
        width: 25%
    }

    .medium-up-4 > .column:nth-of-type(1n), .medium-up-4 > .columns:nth-of-type(1n) {
        clear: none
    }

    .medium-up-4 > .column:nth-of-type(4n+1), .medium-up-4 > .columns:nth-of-type(4n+1) {
        clear: both
    }

    .medium-up-4 > .column:last-child, .medium-up-4 > .columns:last-child {
        float: left
    }

    .medium-up-5 > .column, .medium-up-5 > .columns {
        float: left;
        width: 20%
    }

    .medium-up-5 > .column:nth-of-type(1n), .medium-up-5 > .columns:nth-of-type(1n) {
        clear: none
    }

    .medium-up-5 > .column:nth-of-type(5n+1), .medium-up-5 > .columns:nth-of-type(5n+1) {
        clear: both
    }

    .medium-up-5 > .column:last-child, .medium-up-5 > .columns:last-child {
        float: left
    }

    .medium-up-6 > .column, .medium-up-6 > .columns {
        float: left;
        width: 16.66667%
    }

    .medium-up-6 > .column:nth-of-type(1n), .medium-up-6 > .columns:nth-of-type(1n) {
        clear: none
    }

    .medium-up-6 > .column:nth-of-type(6n+1), .medium-up-6 > .columns:nth-of-type(6n+1) {
        clear: both
    }

    .medium-up-6 > .column:last-child, .medium-up-6 > .columns:last-child {
        float: left
    }

    .medium-up-7 > .column, .medium-up-7 > .columns {
        float: left;
        width: 14.28571%
    }

    .medium-up-7 > .column:nth-of-type(1n), .medium-up-7 > .columns:nth-of-type(1n) {
        clear: none
    }

    .medium-up-7 > .column:nth-of-type(7n+1), .medium-up-7 > .columns:nth-of-type(7n+1) {
        clear: both
    }

    .medium-up-7 > .column:last-child, .medium-up-7 > .columns:last-child {
        float: left
    }

    .medium-up-8 > .column, .medium-up-8 > .columns {
        float: left;
        width: 12.5%
    }

    .medium-up-8 > .column:nth-of-type(1n), .medium-up-8 > .columns:nth-of-type(1n) {
        clear: none
    }

    .medium-up-8 > .column:nth-of-type(8n+1), .medium-up-8 > .columns:nth-of-type(8n+1) {
        clear: both
    }

    .medium-up-8 > .column:last-child, .medium-up-8 > .columns:last-child {
        float: left
    }

    .medium-collapse > .column, .medium-collapse > .columns {
        padding-right: 0;
        padding-left: 0
    }

    .medium-collapse .row {
        margin-right: 0;
        margin-left: 0
    }

    .expanded.row .medium-collapse.row {
        margin-right: 0;
        margin-left: 0
    }

    .medium-uncollapse > .column, .medium-uncollapse > .columns {
        padding-right: 0.9375rem;
        padding-left: 0.9375rem
    }

    .medium-centered {
        margin-right: auto;
        margin-left: auto
    }

    .medium-centered, .medium-centered:last-child:not(:first-child) {
        float: none;
        clear: both
    }

    .medium-uncentered, .medium-push-0, .medium-pull-0 {
        position: static;
        float: left;
        margin-right: 0;
        margin-left: 0
    }
}

@media print, screen and (min-width: 64.0625em) {
    .large-1 {
        width: 8.33333%
    }

    .large-push-1 {
        position: relative;
        left: 8.33333%
    }

    .large-pull-1 {
        position: relative;
        left: -8.33333%
    }

    .large-offset-0 {
        margin-left: 0%
    }

    .large-2 {
        width: 16.66667%
    }

    .large-push-2 {
        position: relative;
        left: 16.66667%
    }

    .large-pull-2 {
        position: relative;
        left: -16.66667%
    }

    .large-offset-1 {
        margin-left: 8.33333%
    }

    .large-3 {
        width: 25%
    }

    .large-push-3 {
        position: relative;
        left: 25%
    }

    .large-pull-3 {
        position: relative;
        left: -25%
    }

    .large-offset-2 {
        margin-left: 16.66667%
    }

    .large-4 {
        width: 33.33333%
    }

    .large-push-4 {
        position: relative;
        left: 33.33333%
    }

    .large-pull-4 {
        position: relative;
        left: -33.33333%
    }

    .large-offset-3 {
        margin-left: 25%
    }

    .large-5 {
        width: 41.66667%
    }

    .large-push-5 {
        position: relative;
        left: 41.66667%
    }

    .large-pull-5 {
        position: relative;
        left: -41.66667%
    }

    .large-offset-4 {
        margin-left: 33.33333%
    }

    .large-6 {
        width: 50%
    }

    .large-push-6 {
        position: relative;
        left: 50%
    }

    .large-pull-6 {
        position: relative;
        left: -50%
    }

    .large-offset-5 {
        margin-left: 41.66667%
    }

    .large-7 {
        width: 58.33333%
    }

    .large-push-7 {
        position: relative;
        left: 58.33333%
    }

    .large-pull-7 {
        position: relative;
        left: -58.33333%
    }

    .large-offset-6 {
        margin-left: 50%
    }

    .large-8 {
        width: 66.66667%
    }

    .large-push-8 {
        position: relative;
        left: 66.66667%
    }

    .large-pull-8 {
        position: relative;
        left: -66.66667%
    }

    .large-offset-7 {
        margin-left: 58.33333%
    }

    .large-9 {
        width: 75%
    }

    .large-push-9 {
        position: relative;
        left: 75%
    }

    .large-pull-9 {
        position: relative;
        left: -75%
    }

    .large-offset-8 {
        margin-left: 66.66667%
    }

    .large-10 {
        width: 83.33333%
    }

    .large-push-10 {
        position: relative;
        left: 83.33333%
    }

    .large-pull-10 {
        position: relative;
        left: -83.33333%
    }

    .large-offset-9 {
        margin-left: 75%
    }

    .large-11 {
        width: 91.66667%
    }

    .large-push-11 {
        position: relative;
        left: 91.66667%
    }

    .large-pull-11 {
        position: relative;
        left: -91.66667%
    }

    .large-offset-10 {
        margin-left: 83.33333%
    }

    .large-12 {
        width: 100%
    }

    .large-offset-11 {
        margin-left: 91.66667%
    }

    .large-up-1 > .column, .large-up-1 > .columns {
        float: left;
        width: 100%
    }

    .large-up-1 > .column:nth-of-type(1n), .large-up-1 > .columns:nth-of-type(1n) {
        clear: none
    }

    .large-up-1 > .column:nth-of-type(1n+1), .large-up-1 > .columns:nth-of-type(1n+1) {
        clear: both
    }

    .large-up-1 > .column:last-child, .large-up-1 > .columns:last-child {
        float: left
    }

    .large-up-2 > .column, .large-up-2 > .columns {
        float: left;
        width: 50%
    }

    .large-up-2 > .column:nth-of-type(1n), .large-up-2 > .columns:nth-of-type(1n) {
        clear: none
    }

    .large-up-2 > .column:nth-of-type(2n+1), .large-up-2 > .columns:nth-of-type(2n+1) {
        clear: both
    }

    .large-up-2 > .column:last-child, .large-up-2 > .columns:last-child {
        float: left
    }

    .large-up-3 > .column, .large-up-3 > .columns {
        float: left;
        width: 33.33333%
    }

    .large-up-3 > .column:nth-of-type(1n), .large-up-3 > .columns:nth-of-type(1n) {
        clear: none
    }

    .large-up-3 > .column:nth-of-type(3n+1), .large-up-3 > .columns:nth-of-type(3n+1) {
        clear: both
    }

    .large-up-3 > .column:last-child, .large-up-3 > .columns:last-child {
        float: left
    }

    .large-up-4 > .column, .large-up-4 > .columns {
        float: left;
        width: 25%
    }

    .large-up-4 > .column:nth-of-type(1n), .large-up-4 > .columns:nth-of-type(1n) {
        clear: none
    }

    .large-up-4 > .column:nth-of-type(4n+1), .large-up-4 > .columns:nth-of-type(4n+1) {
        clear: both
    }

    .large-up-4 > .column:last-child, .large-up-4 > .columns:last-child {
        float: left
    }

    .large-up-5 > .column, .large-up-5 > .columns {
        float: left;
        width: 20%
    }

    .large-up-5 > .column:nth-of-type(1n), .large-up-5 > .columns:nth-of-type(1n) {
        clear: none
    }

    .large-up-5 > .column:nth-of-type(5n+1), .large-up-5 > .columns:nth-of-type(5n+1) {
        clear: both
    }

    .large-up-5 > .column:last-child, .large-up-5 > .columns:last-child {
        float: left
    }

    .large-up-6 > .column, .large-up-6 > .columns {
        float: left;
        width: 16.66667%
    }

    .large-up-6 > .column:nth-of-type(1n), .large-up-6 > .columns:nth-of-type(1n) {
        clear: none
    }

    .large-up-6 > .column:nth-of-type(6n+1), .large-up-6 > .columns:nth-of-type(6n+1) {
        clear: both
    }

    .large-up-6 > .column:last-child, .large-up-6 > .columns:last-child {
        float: left
    }

    .large-up-7 > .column, .large-up-7 > .columns {
        float: left;
        width: 14.28571%
    }

    .large-up-7 > .column:nth-of-type(1n), .large-up-7 > .columns:nth-of-type(1n) {
        clear: none
    }

    .large-up-7 > .column:nth-of-type(7n+1), .large-up-7 > .columns:nth-of-type(7n+1) {
        clear: both
    }

    .large-up-7 > .column:last-child, .large-up-7 > .columns:last-child {
        float: left
    }

    .large-up-8 > .column, .large-up-8 > .columns {
        float: left;
        width: 12.5%
    }

    .large-up-8 > .column:nth-of-type(1n), .large-up-8 > .columns:nth-of-type(1n) {
        clear: none
    }

    .large-up-8 > .column:nth-of-type(8n+1), .large-up-8 > .columns:nth-of-type(8n+1) {
        clear: both
    }

    .large-up-8 > .column:last-child, .large-up-8 > .columns:last-child {
        float: left
    }

    .large-collapse > .column, .large-collapse > .columns {
        padding-right: 0;
        padding-left: 0
    }

    .large-collapse .row {
        margin-right: 0;
        margin-left: 0
    }

    .expanded.row .large-collapse.row {
        margin-right: 0;
        margin-left: 0
    }

    .large-uncollapse > .column, .large-uncollapse > .columns {
        padding-right: 0.9375rem;
        padding-left: 0.9375rem
    }

    .large-centered {
        margin-right: auto;
        margin-left: auto
    }

    .large-centered, .large-centered:last-child:not(:first-child) {
        float: none;
        clear: both
    }

    .large-uncentered, .large-push-0, .large-pull-0 {
        position: static;
        float: left;
        margin-right: 0;
        margin-left: 0
    }
}

.column-block {
    margin-bottom: 1.25rem
}

.column-block > :last-child {
    margin-bottom: 0
}

@media print, screen and (min-width: 40em) {
    .column-block {
        margin-bottom: 1.875rem
    }

    .column-block > :last-child {
        margin-bottom: 0
    }
}

div, dl, dt, dd, ul, ol, li, h1, h2, h3, .article .article-body .article-body__headline, .t3ddy-accordion .t3ddy-accordion-header, h4, h5, h6, pre, form, p, blockquote, th, td {
    margin: 0;
    padding: 0
}

p {
    margin-bottom: 0.75rem;
    font-size: inherit;
    line-height: 1.5rem;
    text-rendering: optimizeLegibility
}

em, i {
    font-style: italic;
    line-height: inherit
}

strong, b {
    font-weight: 500;
    line-height: inherit
}

small {
    font-size: 80%;
    line-height: inherit
}

h1, h2, h3, .article .article-body .article-body__headline, .t3ddy-accordion .t3ddy-accordion-header, h4, h5, h6 {
    font-family: "Roboto", Arial, sans-serif;
    font-style: normal;
    font-weight: normal;
    color: inherit;
    text-rendering: optimizeLegibility
}

h1 small, h2 small, h3 small, .article .article-body .article-body__headline small, .t3ddy-accordion .t3ddy-accordion-header small, h4 small, h5 small, h6 small {
    line-height: 0;
    color: #dcdcdc
}

h1 {
    font-size: 2rem;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 0.5rem
}

h2 {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 0.5rem
}

h3, .article .article-body .article-body__headline, .t3ddy-accordion .t3ddy-accordion-header {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 0.5rem
}

h4 {
    font-size: 1rem;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 0.5rem
}

h5 {
    font-size: 1rem;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 0.5rem
}

h6 {
    font-size: 1rem;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 0.5rem
}

@media print, screen and (min-width: 40em) {
    h1 {
        font-size: 3rem
    }

    h2 {
        font-size: 1.75rem
    }

    h3, .article .article-body .article-body__headline, .t3ddy-accordion .t3ddy-accordion-header {
        font-size: 1.25rem
    }

    h4 {
        font-size: 1rem
    }

    h5 {
        font-size: 1rem
    }

    h6 {
        font-size: 1rem
    }
}

a {
    line-height: inherit;
    color: #0078b9;
    text-decoration: none;
    cursor: pointer
}

a:hover, a:focus {
    color: #0099ec
}

a img {
    border: 0
}

hr {
    clear: both;
    max-width: 75rem;
    height: 0;
    margin: 1.25rem auto;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    border-left: 0
}

ul, ol, dl {
    margin-bottom: 0.75rem;
    list-style-position: outside;
    line-height: 1.5rem
}

li {
    font-size: inherit
}

ul {
    margin-left: 1.25rem;
    list-style-type: disc
}

ol {
    margin-left: 1.25rem
}

ul ul, ol ul, ul ol, ol ol {
    margin-left: 1.25rem;
    margin-bottom: 0
}

dl {
    margin-bottom: 1rem
}

dl dt {
    margin-bottom: 0.3rem;
    font-weight: 500
}

blockquote {
    margin: 0 0 0.75rem;
    padding: 0.5625rem 1.25rem 0 1.1875rem;
    border-left: 1px solid #dcdcdc
}

blockquote, blockquote p {
    line-height: 1.5rem;
    color: #2c353a
}

cite {
    display: block;
    font-size: 0.8125rem;
    color: #2c353a
}

cite:before {
    content: "— "
}

abbr {
    border-bottom: 1px dotted #0a0a0a;
    color: #0a0a0a;
    cursor: help
}

figure {
    margin: 0
}

code {
    padding: 0.125rem 0.3125rem 0.0625rem;
    border: 1px solid #dcdcdc;
    background-color: #eee;
    font-family: Consolas, "Liberation Mono", Courier, monospace;
    font-weight: normal;
    color: #0a0a0a
}

kbd {
    margin: 0;
    padding: 0.125rem 0.25rem 0;
    background-color: #eee;
    font-family: Consolas, "Liberation Mono", Courier, monospace;
    color: #0a0a0a
}

.subheader {
    margin-top: 0.2rem;
    margin-bottom: 0.5rem;
    font-weight: normal;
    line-height: 1.4;
    color: #2c353a
}

.lead {
    font-size: 125%;
    line-height: 1.6
}

.stat {
    font-size: 2.5rem;
    line-height: 1
}

p + .stat {
    margin-top: -1rem
}

.no-bullet {
    margin-left: 0;
    list-style: none
}

.text-left {
    text-align: left
}

.text-right {
    text-align: right
}

.text-center {
    text-align: center
}

.text-justify {
    text-align: justify
}

@media print, screen and (min-width: 40em) {
    .medium-text-left {
        text-align: left
    }

    .medium-text-right {
        text-align: right
    }

    .medium-text-center {
        text-align: center
    }

    .medium-text-justify {
        text-align: justify
    }
}

@media print, screen and (min-width: 64.0625em) {
    .large-text-left {
        text-align: left
    }

    .large-text-right {
        text-align: right
    }

    .large-text-center {
        text-align: center
    }

    .large-text-justify {
        text-align: justify
    }
}

.show-for-print {
    display: none !important
}

@media print {
    * {
        background: transparent !important;
        box-shadow: none !important;
        color: black !important;
        text-shadow: none !important
    }

    .show-for-print {
        display: block !important
    }

    .hide-for-print {
        display: none !important
    }

    table.show-for-print {
        display: table !important
    }

    thead.show-for-print {
        display: table-header-group !important
    }

    tbody.show-for-print {
        display: table-row-group !important
    }

    tr.show-for-print {
        display: table-row !important
    }

    td.show-for-print {
        display: table-cell !important
    }

    th.show-for-print {
        display: table-cell !important
    }

    a, a:visited {
        text-decoration: underline
    }

    a[href]:after {
        content: " (" attr(href) ")"
    }

    .ir a:after, a[href^='javascript:']:after, a[href^='#']:after {
        content: ''
    }

    abbr[title]:after {
        content: " (" attr(title) ")"
    }

    pre, blockquote {
        border: 1px solid #2c353a;
        page-break-inside: avoid
    }

    thead {
        display: table-header-group
    }

    tr, img {
        page-break-inside: avoid
    }

    img {
        max-width: 100% !important
    }

    @page {
        margin: 0.5cm
    }

    p, h2, h3, .article .article-body .article-body__headline, .t3ddy-accordion .t3ddy-accordion-header {
        orphans: 3;
        widows: 3
    }

    h2, h3, .article .article-body .article-body__headline, .t3ddy-accordion .t3ddy-accordion-header {
        page-break-after: avoid
    }

    .print-break-inside {
        page-break-inside: auto
    }
}

.button, .Tx-Formhandler .button, .csc-mailform .csc-mailform-submit, .news-single .article__back-link, .orbit--with-icon .orbit-slide--content a {
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 1rem 0;
    padding: 0.85em 1em;
    -webkit-appearance: none;
    border: 1px solid transparent;
    border-radius: 5px;
    transition: background-color 0.25s ease-out, color 0.25s ease-out;
    font-size: 0.9rem;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    background-color: #0078b9;
    color: #fefefe
}

[data-whatinput='mouse'] .button, [data-whatinput='mouse'] .csc-mailform .csc-mailform-submit, .csc-mailform [data-whatinput='mouse'] .csc-mailform-submit, [data-whatinput='mouse'] .news-single .article__back-link, .news-single [data-whatinput='mouse'] .article__back-link, [data-whatinput='mouse'] .orbit--with-icon .orbit-slide--content a, .orbit--with-icon .orbit-slide--content [data-whatinput='mouse'] a {
    outline: 0
}

.button:hover, .csc-mailform .csc-mailform-submit:hover, .news-single .article__back-link:hover, .orbit--with-icon .orbit-slide--content a:hover, .button:focus, .csc-mailform .csc-mailform-submit:focus, .news-single .article__back-link:focus, .orbit--with-icon .orbit-slide--content a:focus {
    background-color: #0092e2;
    color: #fefefe
}

.button.tiny, .csc-mailform .tiny.csc-mailform-submit, .news-single .tiny.article__back-link, .orbit--with-icon .orbit-slide--content a.tiny {
    font-size: 0.6rem
}

.button.small, .csc-mailform .small.csc-mailform-submit, .news-single .small.article__back-link, .orbit--with-icon .orbit-slide--content a.small {
    font-size: 0.75rem
}

.button.large, .csc-mailform .large.csc-mailform-submit, .news-single .large.article__back-link, .orbit--with-icon .orbit-slide--content a.large {
    font-size: 1.25rem
}

.button.expanded, .csc-mailform .expanded.csc-mailform-submit, .news-single .expanded.article__back-link, .orbit--with-icon .orbit-slide--content a.expanded {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-left: 0
}

.button.primary, .csc-mailform .primary.csc-mailform-submit, .news-single .primary.article__back-link, .orbit--with-icon .orbit-slide--content a.primary {
    background-color: #0078b9;
    color: #fefefe
}

.button.primary:hover, .csc-mailform .primary.csc-mailform-submit:hover, .news-single .primary.article__back-link:hover, .orbit--with-icon .orbit-slide--content a.primary:hover, .button.primary:focus, .csc-mailform .primary.csc-mailform-submit:focus, .news-single .primary.article__back-link:focus, .orbit--with-icon .orbit-slide--content a.primary:focus {
    background-color: #008dda;
    color: #fefefe
}

.button.secondary, .csc-mailform .secondary.csc-mailform-submit, .news-single .secondary.article__back-link, .orbit--with-icon .orbit-slide--content a.secondary {
    background-color: #2c353a;
    color: #fefefe
}

.button.secondary:hover, .csc-mailform .secondary.csc-mailform-submit:hover, .news-single .secondary.article__back-link:hover, .orbit--with-icon .orbit-slide--content a.secondary:hover, .button.secondary:focus, .csc-mailform .secondary.csc-mailform-submit:focus, .news-single .secondary.article__back-link:focus, .orbit--with-icon .orbit-slide--content a.secondary:focus {
    background-color: #3e4a51;
    color: #fefefe
}

.button.success, .csc-mailform .success.csc-mailform-submit, .news-single .success.article__back-link, .orbit--with-icon .orbit-slide--content a.success {
    background-color: #3adb76;
    color: #0a0a0a
}

.button.success:hover, .csc-mailform .success.csc-mailform-submit:hover, .news-single .success.article__back-link:hover, .orbit--with-icon .orbit-slide--content a.success:hover, .button.success:focus, .csc-mailform .success.csc-mailform-submit:focus, .news-single .success.article__back-link:focus, .orbit--with-icon .orbit-slide--content a.success:focus {
    background-color: #4edf84;
    color: #0a0a0a
}

.button.warning, .csc-mailform .warning.csc-mailform-submit, .news-single .warning.article__back-link, .orbit--with-icon .orbit-slide--content a.warning {
    background-color: #ffae00;
    color: #0a0a0a
}

.button.warning:hover, .csc-mailform .warning.csc-mailform-submit:hover, .news-single .warning.article__back-link:hover, .orbit--with-icon .orbit-slide--content a.warning:hover, .button.warning:focus, .csc-mailform .warning.csc-mailform-submit:focus, .news-single .warning.article__back-link:focus, .orbit--with-icon .orbit-slide--content a.warning:focus {
    background-color: #ffb61a;
    color: #0a0a0a
}

.button.alert, .csc-mailform .alert.csc-mailform-submit, .news-single .alert.article__back-link, .orbit--with-icon .orbit-slide--content a.alert {
    background-color: #c90019;
    color: #fefefe
}

.button.alert:hover, .csc-mailform .alert.csc-mailform-submit:hover, .news-single .alert.article__back-link:hover, .orbit--with-icon .orbit-slide--content a.alert:hover, .button.alert:focus, .csc-mailform .alert.csc-mailform-submit:focus, .news-single .alert.article__back-link:focus, .orbit--with-icon .orbit-slide--content a.alert:focus {
    background-color: #e8001d;
    color: #fefefe
}

.button.hollow, .csc-mailform .hollow.csc-mailform-submit, .news-single .hollow.article__back-link, .orbit--with-icon .orbit-slide--content a.hollow {
    border: 1px solid #0078b9;
    color: #0078b9
}

.button.hollow, .csc-mailform .hollow.csc-mailform-submit, .news-single .hollow.article__back-link, .orbit--with-icon .orbit-slide--content a.hollow, .button.hollow:hover, .csc-mailform .hollow.csc-mailform-submit:hover, .news-single .hollow.article__back-link:hover, .orbit--with-icon .orbit-slide--content a.hollow:hover, .button.hollow:focus, .csc-mailform .hollow.csc-mailform-submit:focus, .news-single .hollow.article__back-link:focus, .orbit--with-icon .orbit-slide--content a.hollow:focus {
    background-color: transparent
}

.button.hollow:hover, .csc-mailform .hollow.csc-mailform-submit:hover, .news-single .hollow.article__back-link:hover, .orbit--with-icon .orbit-slide--content a.hollow:hover, .button.hollow:focus, .csc-mailform .hollow.csc-mailform-submit:focus, .news-single .hollow.article__back-link:focus, .orbit--with-icon .orbit-slide--content a.hollow:focus {
    border-color: #008dda;
    color: #008dda
}

.button.hollow.primary, .csc-mailform .hollow.primary.csc-mailform-submit, .news-single .hollow.primary.article__back-link, .orbit--with-icon .orbit-slide--content a.hollow.primary {
    border: 1px solid #0078b9;
    color: #0078b9
}

.button.hollow.primary:hover, .csc-mailform .hollow.primary.csc-mailform-submit:hover, .news-single .hollow.primary.article__back-link:hover, .orbit--with-icon .orbit-slide--content a.hollow.primary:hover, .button.hollow.primary:focus, .csc-mailform .hollow.primary.csc-mailform-submit:focus, .news-single .hollow.primary.article__back-link:focus, .orbit--with-icon .orbit-slide--content a.hollow.primary:focus {
    border-color: #008dda;
    color: #008dda
}

.button.hollow.secondary, .csc-mailform .hollow.secondary.csc-mailform-submit, .news-single .hollow.secondary.article__back-link, .orbit--with-icon .orbit-slide--content a.hollow.secondary {
    border: 1px solid #2c353a;
    color: #2c353a
}

.button.hollow.secondary:hover, .csc-mailform .hollow.secondary.csc-mailform-submit:hover, .news-single .hollow.secondary.article__back-link:hover, .orbit--with-icon .orbit-slide--content a.hollow.secondary:hover, .button.hollow.secondary:focus, .csc-mailform .hollow.secondary.csc-mailform-submit:focus, .news-single .hollow.secondary.article__back-link:focus, .orbit--with-icon .orbit-slide--content a.hollow.secondary:focus {
    border-color: #3e4a51;
    color: #3e4a51
}

.button.hollow.success, .csc-mailform .hollow.success.csc-mailform-submit, .news-single .hollow.success.article__back-link, .orbit--with-icon .orbit-slide--content a.hollow.success {
    border: 1px solid #3adb76;
    color: #3adb76
}

.button.hollow.success:hover, .csc-mailform .hollow.success.csc-mailform-submit:hover, .news-single .hollow.success.article__back-link:hover, .orbit--with-icon .orbit-slide--content a.hollow.success:hover, .button.hollow.success:focus, .csc-mailform .hollow.success.csc-mailform-submit:focus, .news-single .hollow.success.article__back-link:focus, .orbit--with-icon .orbit-slide--content a.hollow.success:focus {
    border-color: #4edf84;
    color: #4edf84
}

.button.hollow.warning, .csc-mailform .hollow.warning.csc-mailform-submit, .news-single .hollow.warning.article__back-link, .orbit--with-icon .orbit-slide--content a.hollow.warning {
    border: 1px solid #ffae00;
    color: #ffae00
}

.button.hollow.warning:hover, .csc-mailform .hollow.warning.csc-mailform-submit:hover, .news-single .hollow.warning.article__back-link:hover, .orbit--with-icon .orbit-slide--content a.hollow.warning:hover, .button.hollow.warning:focus, .csc-mailform .hollow.warning.csc-mailform-submit:focus, .news-single .hollow.warning.article__back-link:focus, .orbit--with-icon .orbit-slide--content a.hollow.warning:focus {
    border-color: #ffb61a;
    color: #ffb61a
}

.button.hollow.alert, .csc-mailform .hollow.alert.csc-mailform-submit, .news-single .hollow.alert.article__back-link, .orbit--with-icon .orbit-slide--content a.hollow.alert {
    border: 1px solid #c90019;
    color: #c90019
}

.button.hollow.alert:hover, .csc-mailform .hollow.alert.csc-mailform-submit:hover, .news-single .hollow.alert.article__back-link:hover, .orbit--with-icon .orbit-slide--content a.hollow.alert:hover, .button.hollow.alert:focus, .csc-mailform .hollow.alert.csc-mailform-submit:focus, .news-single .hollow.alert.article__back-link:focus, .orbit--with-icon .orbit-slide--content a.hollow.alert:focus {
    border-color: #e8001d;
    color: #e8001d
}

.button.disabled, .csc-mailform .disabled.csc-mailform-submit, .news-single .disabled.article__back-link, .orbit--with-icon .orbit-slide--content a.disabled, .button[disabled], .csc-mailform [disabled].csc-mailform-submit, .news-single [disabled].article__back-link, .orbit--with-icon .orbit-slide--content a[disabled] {
    opacity: 0.25;
    cursor: not-allowed
}

.button.disabled, .csc-mailform .disabled.csc-mailform-submit, .news-single .disabled.article__back-link, .orbit--with-icon .orbit-slide--content a.disabled, .button.disabled:hover, .csc-mailform .disabled.csc-mailform-submit:hover, .news-single .disabled.article__back-link:hover, .orbit--with-icon .orbit-slide--content a.disabled:hover, .button.disabled:focus, .csc-mailform .disabled.csc-mailform-submit:focus, .news-single .disabled.article__back-link:focus, .orbit--with-icon .orbit-slide--content a.disabled:focus, .button[disabled], .csc-mailform [disabled].csc-mailform-submit, .news-single [disabled].article__back-link, .orbit--with-icon .orbit-slide--content a[disabled], .button[disabled]:hover, .csc-mailform [disabled].csc-mailform-submit:hover, .news-single [disabled].article__back-link:hover, .orbit--with-icon .orbit-slide--content a[disabled]:hover, .button[disabled]:focus, .csc-mailform [disabled].csc-mailform-submit:focus, .news-single [disabled].article__back-link:focus, .orbit--with-icon .orbit-slide--content a[disabled]:focus {
    background-color: #0078b9;
    color: #fefefe
}

.button.disabled.primary, .csc-mailform .disabled.primary.csc-mailform-submit, .news-single .disabled.primary.article__back-link, .orbit--with-icon .orbit-slide--content a.disabled.primary, .button[disabled].primary, .csc-mailform [disabled].primary.csc-mailform-submit, .news-single [disabled].primary.article__back-link, .orbit--with-icon .orbit-slide--content a[disabled].primary {
    opacity: 0.25;
    cursor: not-allowed
}

.button.disabled.primary, .csc-mailform .disabled.primary.csc-mailform-submit, .news-single .disabled.primary.article__back-link, .orbit--with-icon .orbit-slide--content a.disabled.primary, .button.disabled.primary:hover, .csc-mailform .disabled.primary.csc-mailform-submit:hover, .news-single .disabled.primary.article__back-link:hover, .orbit--with-icon .orbit-slide--content a.disabled.primary:hover, .button.disabled.primary:focus, .csc-mailform .disabled.primary.csc-mailform-submit:focus, .news-single .disabled.primary.article__back-link:focus, .orbit--with-icon .orbit-slide--content a.disabled.primary:focus, .button[disabled].primary, .csc-mailform [disabled].primary.csc-mailform-submit, .news-single [disabled].primary.article__back-link, .orbit--with-icon .orbit-slide--content a[disabled].primary, .button[disabled].primary:hover, .csc-mailform [disabled].primary.csc-mailform-submit:hover, .news-single [disabled].primary.article__back-link:hover, .orbit--with-icon .orbit-slide--content a[disabled].primary:hover, .button[disabled].primary:focus, .csc-mailform [disabled].primary.csc-mailform-submit:focus, .news-single [disabled].primary.article__back-link:focus, .orbit--with-icon .orbit-slide--content a[disabled].primary:focus {
    background-color: #0078b9;
    color: #fefefe
}

.button.disabled.secondary, .csc-mailform .disabled.secondary.csc-mailform-submit, .news-single .disabled.secondary.article__back-link, .orbit--with-icon .orbit-slide--content a.disabled.secondary, .button[disabled].secondary, .csc-mailform [disabled].secondary.csc-mailform-submit, .news-single [disabled].secondary.article__back-link, .orbit--with-icon .orbit-slide--content a[disabled].secondary {
    opacity: 0.25;
    cursor: not-allowed
}

.button.disabled.secondary, .csc-mailform .disabled.secondary.csc-mailform-submit, .news-single .disabled.secondary.article__back-link, .orbit--with-icon .orbit-slide--content a.disabled.secondary, .button.disabled.secondary:hover, .csc-mailform .disabled.secondary.csc-mailform-submit:hover, .news-single .disabled.secondary.article__back-link:hover, .orbit--with-icon .orbit-slide--content a.disabled.secondary:hover, .button.disabled.secondary:focus, .csc-mailform .disabled.secondary.csc-mailform-submit:focus, .news-single .disabled.secondary.article__back-link:focus, .orbit--with-icon .orbit-slide--content a.disabled.secondary:focus, .button[disabled].secondary, .csc-mailform [disabled].secondary.csc-mailform-submit, .news-single [disabled].secondary.article__back-link, .orbit--with-icon .orbit-slide--content a[disabled].secondary, .button[disabled].secondary:hover, .csc-mailform [disabled].secondary.csc-mailform-submit:hover, .news-single [disabled].secondary.article__back-link:hover, .orbit--with-icon .orbit-slide--content a[disabled].secondary:hover, .button[disabled].secondary:focus, .csc-mailform [disabled].secondary.csc-mailform-submit:focus, .news-single [disabled].secondary.article__back-link:focus, .orbit--with-icon .orbit-slide--content a[disabled].secondary:focus {
    background-color: #2c353a;
    color: #fefefe
}

.button.disabled.success, .csc-mailform .disabled.success.csc-mailform-submit, .news-single .disabled.success.article__back-link, .orbit--with-icon .orbit-slide--content a.disabled.success, .button[disabled].success, .csc-mailform [disabled].success.csc-mailform-submit, .news-single [disabled].success.article__back-link, .orbit--with-icon .orbit-slide--content a[disabled].success {
    opacity: 0.25;
    cursor: not-allowed
}

.button.disabled.success, .csc-mailform .disabled.success.csc-mailform-submit, .news-single .disabled.success.article__back-link, .orbit--with-icon .orbit-slide--content a.disabled.success, .button.disabled.success:hover, .csc-mailform .disabled.success.csc-mailform-submit:hover, .news-single .disabled.success.article__back-link:hover, .orbit--with-icon .orbit-slide--content a.disabled.success:hover, .button.disabled.success:focus, .csc-mailform .disabled.success.csc-mailform-submit:focus, .news-single .disabled.success.article__back-link:focus, .orbit--with-icon .orbit-slide--content a.disabled.success:focus, .button[disabled].success, .csc-mailform [disabled].success.csc-mailform-submit, .news-single [disabled].success.article__back-link, .orbit--with-icon .orbit-slide--content a[disabled].success, .button[disabled].success:hover, .csc-mailform [disabled].success.csc-mailform-submit:hover, .news-single [disabled].success.article__back-link:hover, .orbit--with-icon .orbit-slide--content a[disabled].success:hover, .button[disabled].success:focus, .csc-mailform [disabled].success.csc-mailform-submit:focus, .news-single [disabled].success.article__back-link:focus, .orbit--with-icon .orbit-slide--content a[disabled].success:focus {
    background-color: #3adb76;
    color: #0a0a0a
}

.button.disabled.warning, .csc-mailform .disabled.warning.csc-mailform-submit, .news-single .disabled.warning.article__back-link, .orbit--with-icon .orbit-slide--content a.disabled.warning, .button[disabled].warning, .csc-mailform [disabled].warning.csc-mailform-submit, .news-single [disabled].warning.article__back-link, .orbit--with-icon .orbit-slide--content a[disabled].warning {
    opacity: 0.25;
    cursor: not-allowed
}

.button.disabled.warning, .csc-mailform .disabled.warning.csc-mailform-submit, .news-single .disabled.warning.article__back-link, .orbit--with-icon .orbit-slide--content a.disabled.warning, .button.disabled.warning:hover, .csc-mailform .disabled.warning.csc-mailform-submit:hover, .news-single .disabled.warning.article__back-link:hover, .orbit--with-icon .orbit-slide--content a.disabled.warning:hover, .button.disabled.warning:focus, .csc-mailform .disabled.warning.csc-mailform-submit:focus, .news-single .disabled.warning.article__back-link:focus, .orbit--with-icon .orbit-slide--content a.disabled.warning:focus, .button[disabled].warning, .csc-mailform [disabled].warning.csc-mailform-submit, .news-single [disabled].warning.article__back-link, .orbit--with-icon .orbit-slide--content a[disabled].warning, .button[disabled].warning:hover, .csc-mailform [disabled].warning.csc-mailform-submit:hover, .news-single [disabled].warning.article__back-link:hover, .orbit--with-icon .orbit-slide--content a[disabled].warning:hover, .button[disabled].warning:focus, .csc-mailform [disabled].warning.csc-mailform-submit:focus, .news-single [disabled].warning.article__back-link:focus, .orbit--with-icon .orbit-slide--content a[disabled].warning:focus {
    background-color: #ffae00;
    color: #0a0a0a
}

.button.disabled.alert, .csc-mailform .disabled.alert.csc-mailform-submit, .news-single .disabled.alert.article__back-link, .orbit--with-icon .orbit-slide--content a.disabled.alert, .button[disabled].alert, .csc-mailform [disabled].alert.csc-mailform-submit, .news-single [disabled].alert.article__back-link, .orbit--with-icon .orbit-slide--content a[disabled].alert {
    opacity: 0.25;
    cursor: not-allowed
}

.button.disabled.alert, .csc-mailform .disabled.alert.csc-mailform-submit, .news-single .disabled.alert.article__back-link, .orbit--with-icon .orbit-slide--content a.disabled.alert, .button.disabled.alert:hover, .csc-mailform .disabled.alert.csc-mailform-submit:hover, .news-single .disabled.alert.article__back-link:hover, .orbit--with-icon .orbit-slide--content a.disabled.alert:hover, .button.disabled.alert:focus, .csc-mailform .disabled.alert.csc-mailform-submit:focus, .news-single .disabled.alert.article__back-link:focus, .orbit--with-icon .orbit-slide--content a.disabled.alert:focus, .button[disabled].alert, .csc-mailform [disabled].alert.csc-mailform-submit, .news-single [disabled].alert.article__back-link, .orbit--with-icon .orbit-slide--content a[disabled].alert, .button[disabled].alert:hover, .csc-mailform [disabled].alert.csc-mailform-submit:hover, .news-single [disabled].alert.article__back-link:hover, .orbit--with-icon .orbit-slide--content a[disabled].alert:hover, .button[disabled].alert:focus, .csc-mailform [disabled].alert.csc-mailform-submit:focus, .news-single [disabled].alert.article__back-link:focus, .orbit--with-icon .orbit-slide--content a[disabled].alert:focus {
    background-color: #c90019;
    color: #fefefe
}

.button.dropdown::after, .csc-mailform .dropdown.csc-mailform-submit::after, .news-single .dropdown.article__back-link::after, .orbit--with-icon .orbit-slide--content a.dropdown::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 0.4em;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #fefefe transparent transparent;
    position: relative;
    top: 0.4em;
    display: inline-block;
    float: right;
    margin-left: 1em
}

.button.dropdown.hollow::after, .csc-mailform .dropdown.hollow.csc-mailform-submit::after, .news-single .dropdown.hollow.article__back-link::after, .orbit--with-icon .orbit-slide--content a.dropdown.hollow::after {
    border-top-color: #0078b9
}

.button.dropdown.hollow.primary::after, .csc-mailform .dropdown.hollow.primary.csc-mailform-submit::after, .news-single .dropdown.hollow.primary.article__back-link::after, .orbit--with-icon .orbit-slide--content a.dropdown.hollow.primary::after {
    border-top-color: #0078b9
}

.button.dropdown.hollow.secondary::after, .csc-mailform .dropdown.hollow.secondary.csc-mailform-submit::after, .news-single .dropdown.hollow.secondary.article__back-link::after, .orbit--with-icon .orbit-slide--content a.dropdown.hollow.secondary::after {
    border-top-color: #2c353a
}

.button.dropdown.hollow.success::after, .csc-mailform .dropdown.hollow.success.csc-mailform-submit::after, .news-single .dropdown.hollow.success.article__back-link::after, .orbit--with-icon .orbit-slide--content a.dropdown.hollow.success::after {
    border-top-color: #3adb76
}

.button.dropdown.hollow.warning::after, .csc-mailform .dropdown.hollow.warning.csc-mailform-submit::after, .news-single .dropdown.hollow.warning.article__back-link::after, .orbit--with-icon .orbit-slide--content a.dropdown.hollow.warning::after {
    border-top-color: #ffae00
}

.button.dropdown.hollow.alert::after, .csc-mailform .dropdown.hollow.alert.csc-mailform-submit::after, .news-single .dropdown.hollow.alert.article__back-link::after, .orbit--with-icon .orbit-slide--content a.dropdown.hollow.alert::after {
    border-top-color: #c90019
}

.button.arrow-only::after, .csc-mailform .arrow-only.csc-mailform-submit::after, .news-single .arrow-only.article__back-link::after, .orbit--with-icon .orbit-slide--content a.arrow-only::after {
    top: -0.1em;
    float: none;
    margin-left: 0
}

[type='text'], [type='password'], [type='date'], [type='datetime'], [type='datetime-local'], [type='month'], [type='week'], [type='email'], [type='number'], [type='search'], [type='tel'], [type='time'], [type='url'], [type='color'], textarea {
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 2.4375rem;
    margin: 0 0 1rem;
    padding: 0.5rem;
    border: 1px solid #dcdcdc;
    border-radius: 0;
    background-color: #fefefe;
    box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
    font-family: inherit;
    font-size: 1rem;
    font-weight: normal;
    color: #0a0a0a;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
    appearance: none
}

[type='text']:focus, [type='password']:focus, [type='date']:focus, [type='datetime']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='week']:focus, [type='email']:focus, [type='number']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='url']:focus, [type='color']:focus, textarea:focus {
    outline: none;
    border: 1px solid #2c353a;
    background-color: #fefefe;
    box-shadow: 0 0 5px #dcdcdc;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out
}

textarea {
    max-width: 100%
}

textarea[rows] {
    height: auto
}

input::placeholder, textarea::placeholder {
    color: #dcdcdc
}

input:disabled, input[readonly], textarea:disabled, textarea[readonly] {
    background-color: #eee;
    cursor: not-allowed
}

[type='submit'], [type='button'] {
    appearance: none;
    border-radius: 0
}

input[type='search'] {
    box-sizing: border-box
}

[type='file'], [type='checkbox'], [type='radio'] {
    margin: 0 0 1rem
}

[type='checkbox'] + label, [type='radio'] + label {
    display: inline-block;
    vertical-align: baseline;
    margin-left: 0.5rem;
    margin-right: 1rem;
    margin-bottom: 0
}

[type='checkbox'] + label[for], [type='radio'] + label[for] {
    cursor: pointer
}

label > [type='checkbox'], label > [type='radio'] {
    margin-right: 0.5rem
}

[type='file'] {
    width: 100%
}

label {
    display: block;
    margin: 0;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.8;
    color: #0a0a0a
}

label.middle {
    margin: 0 0 1rem;
    padding: 0.5625rem 0
}

.help-text {
    margin-top: -0.5rem;
    font-size: 0.8125rem;
    font-style: italic;
    color: #0a0a0a
}

.input-group {
    display: table;
    width: 100%;
    margin-bottom: 1rem
}

.input-group > :first-child {
    border-radius: 0 0 0 0
}

.input-group > :last-child > * {
    border-radius: 0 0 0 0
}

.input-group-label, .input-group-field, .input-group-button, .input-group-button a, .input-group-button input, .input-group-button button, .input-group-button label {
    margin: 0;
    white-space: nowrap;
    display: table-cell;
    vertical-align: middle
}

.input-group-label {
    padding: 0 1rem;
    border: 1px solid #dcdcdc;
    background: #eee;
    color: #0a0a0a;
    text-align: center;
    white-space: nowrap;
    width: 1%;
    height: 100%
}

.input-group-label:first-child {
    border-right: 0
}

.input-group-label:last-child {
    border-left: 0
}

.input-group-field {
    border-radius: 0;
    height: 2.5rem
}

.input-group-button {
    padding-top: 0;
    padding-bottom: 0;
    text-align: center;
    width: 1%;
    height: 100%
}

.input-group-button a, .input-group-button input, .input-group-button button, .input-group-button label {
    height: 2.5rem;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 1rem
}

.input-group .input-group-button {
    display: table-cell
}

fieldset {
    margin: 0;
    padding: 0;
    border: 0
}

legend {
    max-width: 100%;
    margin-bottom: 0.5rem
}

.fieldset {
    margin: 1.125rem 0;
    padding: 1.25rem;
    border: 1px solid #dcdcdc
}

.fieldset legend {
    margin: 0;
    margin-left: -0.1875rem;
    padding: 0 0.1875rem;
    background: #fefefe
}

select {
    height: 2.4375rem;
    margin: 0 0 1rem;
    padding: 0.5rem;
    appearance: none;
    border: 1px solid #dcdcdc;
    border-radius: 0;
    background-color: #fefefe;
    font-family: inherit;
    font-size: 1rem;
    line-height: normal;
    color: #0a0a0a;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='32' height='24' viewBox='0 0 32 24'><polygon points='0,0 32,0 16,24' style='fill: rgb%2844, 53, 58%29'></polygon></svg>");
    background-origin: content-box;
    background-position: right -1rem center;
    background-repeat: no-repeat;
    background-size: 9px 6px;
    padding-right: 1.5rem;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out
}

@media screen and (min-width: 0\0
) {
    select {
        background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg==")
    }
}

select:focus {
    outline: none;
    border: 1px solid #2c353a;
    background-color: #fefefe;
    box-shadow: 0 0 5px #dcdcdc;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out
}

select:disabled {
    background-color: #eee;
    cursor: not-allowed
}

select::-ms-expand {
    display: none
}

select[multiple] {
    height: auto;
    background-image: none
}

.is-invalid-input:not(:focus) {
    border-color: #c90019;
    background-color: #f8e4e7
}

.is-invalid-input:not(:focus)::placeholder {
    color: #c90019
}

.is-invalid-label {
    color: #c90019
}

.form-error {
    display: none;
    margin-top: -0.5rem;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #c90019
}

.form-error.is-visible {
    display: block
}

.accordion {
    margin-left: 0;
    background: #fefefe;
    list-style-type: none
}

.accordion-item:first-child > :first-child {
    border-radius: 0 0 0 0
}

.accordion-item:last-child > :last-child {
    border-radius: 0 0 0 0
}

.accordion-title {
    position: relative;
    display: block;
    padding: 1.25rem 1rem;
    border: 1px solid #eee;
    border-bottom: 0;
    font-size: 0.75rem;
    line-height: 1;
    color: #0078b9
}

:last-child:not(.is-active) > .accordion-title {
    border-bottom: 1px solid #eee;
    border-radius: 0 0 0 0
}

.accordion-title:hover, .accordion-title:focus {
    background-color: #eee
}

.accordion-title::before {
    position: absolute;
    top: 50%;
    right: 1rem;
    margin-top: -0.5rem;
    content: '+'
}

.is-active > .accordion-title::before {
    content: '\2013'
}

.accordion-content {
    display: none;
    padding: 1rem;
    border: 1px solid #eee;
    border-bottom: 0;
    background-color: #fefefe;
    color: #0a0a0a
}

:last-child > .accordion-content:last-child {
    border-bottom: 1px solid #eee
}

.is-accordion-submenu-parent > a {
    position: relative
}

.is-accordion-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #0078b9 transparent transparent;
    position: absolute;
    top: 50%;
    margin-top: -3px;
    right: 1rem
}

.is-accordion-submenu-parent[aria-expanded='true'] > a::after {
    transform: rotate(180deg);
    transform-origin: 50% 50%
}

.badge {
    display: inline-block;
    min-width: 2.1em;
    padding: 0.3em;
    border-radius: 50%;
    font-size: 0.6rem;
    text-align: center;
    background: #0078b9;
    color: #fefefe
}

.badge.primary {
    background: #0078b9;
    color: #fefefe
}

.badge.secondary {
    background: #2c353a;
    color: #fefefe
}

.badge.success {
    background: #3adb76;
    color: #0a0a0a
}

.badge.warning {
    background: #ffae00;
    color: #0a0a0a
}

.badge.alert {
    background: #c90019;
    color: #fefefe
}

.breadcrumbs {
    margin: 0 0 1rem 0;
    list-style: none
}

.breadcrumbs::before, .breadcrumbs::after {
    display: table;
    content: ' '
}

.breadcrumbs::after {
    clear: both
}

.breadcrumbs li {
    float: left;
    font-size: 0.6875rem;
    color: #0a0a0a;
    cursor: default;
    margin-right: 0.75rem
}

.breadcrumbs a {
    color: #0078b9
}

.breadcrumbs a:hover {
    text-decoration: underline
}

.breadcrumbs .disabled {
    color: #dcdcdc;
    cursor: not-allowed
}

.button-group {
    margin-bottom: 1rem;
    font-size: 0
}

.button-group::before, .button-group::after {
    display: table;
    content: ' '
}

.button-group::after {
    clear: both
}

.button-group .button, .button-group .csc-mailform .csc-mailform-submit, .csc-mailform .button-group .csc-mailform-submit, .button-group .news-single .article__back-link, .news-single .button-group .article__back-link, .button-group .orbit--with-icon .orbit-slide--content a, .orbit--with-icon .orbit-slide--content .button-group a {
    margin: 0;
    margin-right: 1px;
    margin-bottom: 1px;
    font-size: 0.9rem
}

.button-group .button:last-child, .button-group .csc-mailform .csc-mailform-submit:last-child, .csc-mailform .button-group .csc-mailform-submit:last-child, .button-group .news-single .article__back-link:last-child, .news-single .button-group .article__back-link:last-child, .button-group .orbit--with-icon .orbit-slide--content a:last-child, .orbit--with-icon .orbit-slide--content .button-group a:last-child {
    margin-right: 0
}

.button-group.tiny .button, .button-group.tiny .csc-mailform .csc-mailform-submit, .csc-mailform .button-group.tiny .csc-mailform-submit, .button-group.tiny .news-single .article__back-link, .news-single .button-group.tiny .article__back-link, .button-group.tiny .orbit--with-icon .orbit-slide--content a, .orbit--with-icon .orbit-slide--content .button-group.tiny a {
    font-size: 0.6rem
}

.button-group.small .button, .button-group.small .csc-mailform .csc-mailform-submit, .csc-mailform .button-group.small .csc-mailform-submit, .button-group.small .news-single .article__back-link, .news-single .button-group.small .article__back-link, .button-group.small .orbit--with-icon .orbit-slide--content a, .orbit--with-icon .orbit-slide--content .button-group.small a {
    font-size: 0.75rem
}

.button-group.large .button, .button-group.large .csc-mailform .csc-mailform-submit, .csc-mailform .button-group.large .csc-mailform-submit, .button-group.large .news-single .article__back-link, .news-single .button-group.large .article__back-link, .button-group.large .orbit--with-icon .orbit-slide--content a, .orbit--with-icon .orbit-slide--content .button-group.large a {
    font-size: 1.25rem
}

.button-group.expanded {
    margin-right: -1px
}

.button-group.expanded::before, .button-group.expanded::after {
    display: none
}

.button-group.expanded .button:first-child:last-child, .button-group.expanded .csc-mailform .csc-mailform-submit:first-child:last-child, .csc-mailform .button-group.expanded .csc-mailform-submit:first-child:last-child, .button-group.expanded .news-single .article__back-link:first-child:last-child, .news-single .button-group.expanded .article__back-link:first-child:last-child, .button-group.expanded .orbit--with-icon .orbit-slide--content a:first-child:last-child, .orbit--with-icon .orbit-slide--content .button-group.expanded a:first-child:last-child {
    width: 100%
}

.button-group.expanded .button:first-child:nth-last-child(2), .button-group.expanded .csc-mailform .csc-mailform-submit:first-child:nth-last-child(2), .csc-mailform .button-group.expanded .csc-mailform-submit:first-child:nth-last-child(2), .button-group.expanded .news-single .article__back-link:first-child:nth-last-child(2), .news-single .button-group.expanded .article__back-link:first-child:nth-last-child(2), .button-group.expanded .orbit--with-icon .orbit-slide--content a:first-child:nth-last-child(2), .orbit--with-icon .orbit-slide--content .button-group.expanded a:first-child:nth-last-child(2), .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button, .button-group.expanded .csc-mailform .csc-mailform-submit:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button, .csc-mailform .button-group.expanded .csc-mailform-submit:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button, .button-group.expanded .news-single .article__back-link:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button, .news-single .button-group.expanded .article__back-link:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button, .button-group.expanded .orbit--with-icon .orbit-slide--content a:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button, .orbit--with-icon .orbit-slide--content .button-group.expanded a:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button, .button-group.expanded .Tx-Formhandler .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button, .button-group.expanded .csc-mailform .Tx-Formhandler .csc-mailform-submit:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button, .csc-mailform .button-group.expanded .Tx-Formhandler .csc-mailform-submit:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button, .button-group.expanded .news-single .Tx-Formhandler .article__back-link:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button, .news-single .button-group.expanded .Tx-Formhandler .article__back-link:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button, .button-group.expanded .orbit--with-icon .orbit-slide--content .Tx-Formhandler a:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button, .orbit--with-icon .orbit-slide--content .button-group.expanded .Tx-Formhandler a:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button, .button-group.expanded .csc-mailform .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .csc-mailform-submit, .csc-mailform .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .csc-mailform-submit, .csc-mailform .button-group.expanded .Tx-Formhandler .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .csc-mailform-submit, .button-group.expanded .csc-mailform .csc-mailform-submit:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .csc-mailform-submit, .csc-mailform .button-group.expanded .csc-mailform-submit:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .csc-mailform-submit, .button-group.expanded .news-single .csc-mailform .article__back-link:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .csc-mailform-submit, .csc-mailform .button-group.expanded .news-single .article__back-link:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .csc-mailform-submit, .news-single .button-group.expanded .csc-mailform .article__back-link:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .csc-mailform-submit, .csc-mailform .news-single .button-group.expanded .article__back-link:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .csc-mailform-submit, .button-group.expanded .orbit--with-icon .orbit-slide--content .csc-mailform a:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .csc-mailform-submit, .csc-mailform .button-group.expanded .orbit--with-icon .orbit-slide--content a:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .csc-mailform-submit, .orbit--with-icon .orbit-slide--content .button-group.expanded .csc-mailform a:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .csc-mailform-submit, .csc-mailform .orbit--with-icon .orbit-slide--content .button-group.expanded a:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .csc-mailform-submit, .button-group.expanded .news-single .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .article__back-link, .news-single .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .article__back-link, .news-single .button-group.expanded .Tx-Formhandler .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .article__back-link, .button-group.expanded .csc-mailform .news-single .csc-mailform-submit:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .article__back-link, .news-single .button-group.expanded .csc-mailform .csc-mailform-submit:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .article__back-link, .csc-mailform .button-group.expanded .news-single .csc-mailform-submit:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .article__back-link, .news-single .csc-mailform .button-group.expanded .csc-mailform-submit:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .article__back-link, .button-group.expanded .news-single .article__back-link:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .article__back-link, .news-single .button-group.expanded .article__back-link:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .article__back-link, .button-group.expanded .orbit--with-icon .orbit-slide--content .news-single a:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .article__back-link, .news-single .button-group.expanded .orbit--with-icon .orbit-slide--content a:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .article__back-link, .orbit--with-icon .orbit-slide--content .button-group.expanded .news-single a:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .article__back-link, .news-single .orbit--with-icon .orbit-slide--content .button-group.expanded a:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .article__back-link, .button-group.expanded .orbit--with-icon .orbit-slide--content .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ a, .orbit--with-icon .orbit-slide--content .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ a, .orbit--with-icon .orbit-slide--content .button-group.expanded .Tx-Formhandler .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ a, .button-group.expanded .csc-mailform .orbit--with-icon .orbit-slide--content .csc-mailform-submit:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ a, .orbit--with-icon .orbit-slide--content .button-group.expanded .csc-mailform .csc-mailform-submit:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ a, .csc-mailform .button-group.expanded .orbit--with-icon .orbit-slide--content .csc-mailform-submit:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ a, .orbit--with-icon .orbit-slide--content .csc-mailform .button-group.expanded .csc-mailform-submit:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ a, .button-group.expanded .news-single .orbit--with-icon .orbit-slide--content .article__back-link:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ a, .orbit--with-icon .orbit-slide--content .button-group.expanded .news-single .article__back-link:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ a, .news-single .button-group.expanded .orbit--with-icon .orbit-slide--content .article__back-link:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ a, .orbit--with-icon .orbit-slide--content .news-single .button-group.expanded .article__back-link:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ a, .button-group.expanded .orbit--with-icon .orbit-slide--content a:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ a, .orbit--with-icon .orbit-slide--content .button-group.expanded a:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ a {
    display: inline-block;
    width: calc(50% - 1px);
    margin-right: 1px
}

.button-group.expanded .button:first-child:nth-last-child(2):last-child, .button-group.expanded .csc-mailform .csc-mailform-submit:first-child:nth-last-child(2):last-child, .csc-mailform .button-group.expanded .csc-mailform-submit:first-child:nth-last-child(2):last-child, .button-group.expanded .news-single .article__back-link:first-child:nth-last-child(2):last-child, .news-single .button-group.expanded .article__back-link:first-child:nth-last-child(2):last-child, .button-group.expanded .orbit--with-icon .orbit-slide--content a:first-child:nth-last-child(2):last-child, .orbit--with-icon .orbit-slide--content .button-group.expanded a:first-child:nth-last-child(2):last-child, .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button:last-child, .button-group.expanded .csc-mailform .csc-mailform-submit:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button:last-child, .csc-mailform .button-group.expanded .csc-mailform-submit:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button:last-child, .button-group.expanded .news-single .article__back-link:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button:last-child, .news-single .button-group.expanded .article__back-link:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button:last-child, .button-group.expanded .orbit--with-icon .orbit-slide--content a:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button:last-child, .orbit--with-icon .orbit-slide--content .button-group.expanded a:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button:last-child, .button-group.expanded .Tx-Formhandler .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button:last-child, .button-group.expanded .csc-mailform .Tx-Formhandler .csc-mailform-submit:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button:last-child, .csc-mailform .button-group.expanded .Tx-Formhandler .csc-mailform-submit:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button:last-child, .button-group.expanded .news-single .Tx-Formhandler .article__back-link:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button:last-child, .news-single .button-group.expanded .Tx-Formhandler .article__back-link:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button:last-child, .button-group.expanded .orbit--with-icon .orbit-slide--content .Tx-Formhandler a:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button:last-child, .orbit--with-icon .orbit-slide--content .button-group.expanded .Tx-Formhandler a:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button:last-child, .button-group.expanded .csc-mailform .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .csc-mailform-submit:last-child, .csc-mailform .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .csc-mailform-submit:last-child, .csc-mailform .button-group.expanded .Tx-Formhandler .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .csc-mailform-submit:last-child, .button-group.expanded .csc-mailform .csc-mailform-submit:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .csc-mailform-submit:last-child, .csc-mailform .button-group.expanded .csc-mailform-submit:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .csc-mailform-submit:last-child, .button-group.expanded .news-single .csc-mailform .article__back-link:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .csc-mailform-submit:last-child, .csc-mailform .button-group.expanded .news-single .article__back-link:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .csc-mailform-submit:last-child, .news-single .button-group.expanded .csc-mailform .article__back-link:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .csc-mailform-submit:last-child, .csc-mailform .news-single .button-group.expanded .article__back-link:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .csc-mailform-submit:last-child, .button-group.expanded .orbit--with-icon .orbit-slide--content .csc-mailform a:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .csc-mailform-submit:last-child, .csc-mailform .button-group.expanded .orbit--with-icon .orbit-slide--content a:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .csc-mailform-submit:last-child, .orbit--with-icon .orbit-slide--content .button-group.expanded .csc-mailform a:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .csc-mailform-submit:last-child, .csc-mailform .orbit--with-icon .orbit-slide--content .button-group.expanded a:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .csc-mailform-submit:last-child, .button-group.expanded .news-single .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .article__back-link:last-child, .news-single .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .article__back-link:last-child, .news-single .button-group.expanded .Tx-Formhandler .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .article__back-link:last-child, .button-group.expanded .csc-mailform .news-single .csc-mailform-submit:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .article__back-link:last-child, .news-single .button-group.expanded .csc-mailform .csc-mailform-submit:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .article__back-link:last-child, .csc-mailform .button-group.expanded .news-single .csc-mailform-submit:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .article__back-link:last-child, .news-single .csc-mailform .button-group.expanded .csc-mailform-submit:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .article__back-link:last-child, .button-group.expanded .news-single .article__back-link:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .article__back-link:last-child, .news-single .button-group.expanded .article__back-link:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .article__back-link:last-child, .button-group.expanded .orbit--with-icon .orbit-slide--content .news-single a:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .article__back-link:last-child, .news-single .button-group.expanded .orbit--with-icon .orbit-slide--content a:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .article__back-link:last-child, .orbit--with-icon .orbit-slide--content .button-group.expanded .news-single a:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .article__back-link:last-child, .news-single .orbit--with-icon .orbit-slide--content .button-group.expanded a:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .article__back-link:last-child, .button-group.expanded .orbit--with-icon .orbit-slide--content .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ a:last-child, .orbit--with-icon .orbit-slide--content .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ a:last-child, .orbit--with-icon .orbit-slide--content .button-group.expanded .Tx-Formhandler .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ a:last-child, .button-group.expanded .csc-mailform .orbit--with-icon .orbit-slide--content .csc-mailform-submit:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ a:last-child, .orbit--with-icon .orbit-slide--content .button-group.expanded .csc-mailform .csc-mailform-submit:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ a:last-child, .csc-mailform .button-group.expanded .orbit--with-icon .orbit-slide--content .csc-mailform-submit:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ a:last-child, .orbit--with-icon .orbit-slide--content .csc-mailform .button-group.expanded .csc-mailform-submit:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ a:last-child, .button-group.expanded .news-single .orbit--with-icon .orbit-slide--content .article__back-link:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ a:last-child, .orbit--with-icon .orbit-slide--content .button-group.expanded .news-single .article__back-link:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ a:last-child, .news-single .button-group.expanded .orbit--with-icon .orbit-slide--content .article__back-link:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ a:last-child, .orbit--with-icon .orbit-slide--content .news-single .button-group.expanded .article__back-link:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ a:last-child, .button-group.expanded .orbit--with-icon .orbit-slide--content a:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ a:last-child, .orbit--with-icon .orbit-slide--content .button-group.expanded a:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ a:last-child {
    margin-right: -6px
}

.button-group.expanded .button:first-child:nth-last-child(3), .button-group.expanded .csc-mailform .csc-mailform-submit:first-child:nth-last-child(3), .csc-mailform .button-group.expanded .csc-mailform-submit:first-child:nth-last-child(3), .button-group.expanded .news-single .article__back-link:first-child:nth-last-child(3), .news-single .button-group.expanded .article__back-link:first-child:nth-last-child(3), .button-group.expanded .orbit--with-icon .orbit-slide--content a:first-child:nth-last-child(3), .orbit--with-icon .orbit-slide--content .button-group.expanded a:first-child:nth-last-child(3), .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button, .button-group.expanded .csc-mailform .csc-mailform-submit:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button, .csc-mailform .button-group.expanded .csc-mailform-submit:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button, .button-group.expanded .news-single .article__back-link:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button, .news-single .button-group.expanded .article__back-link:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button, .button-group.expanded .orbit--with-icon .orbit-slide--content a:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button, .orbit--with-icon .orbit-slide--content .button-group.expanded a:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button, .button-group.expanded .Tx-Formhandler .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button, .button-group.expanded .csc-mailform .Tx-Formhandler .csc-mailform-submit:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button, .csc-mailform .button-group.expanded .Tx-Formhandler .csc-mailform-submit:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button, .button-group.expanded .news-single .Tx-Formhandler .article__back-link:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button, .news-single .button-group.expanded .Tx-Formhandler .article__back-link:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button, .button-group.expanded .orbit--with-icon .orbit-slide--content .Tx-Formhandler a:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button, .orbit--with-icon .orbit-slide--content .button-group.expanded .Tx-Formhandler a:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button, .button-group.expanded .csc-mailform .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .csc-mailform-submit, .csc-mailform .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .csc-mailform-submit, .csc-mailform .button-group.expanded .Tx-Formhandler .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .csc-mailform-submit, .button-group.expanded .csc-mailform .csc-mailform-submit:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .csc-mailform-submit, .csc-mailform .button-group.expanded .csc-mailform-submit:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .csc-mailform-submit, .button-group.expanded .news-single .csc-mailform .article__back-link:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .csc-mailform-submit, .csc-mailform .button-group.expanded .news-single .article__back-link:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .csc-mailform-submit, .news-single .button-group.expanded .csc-mailform .article__back-link:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .csc-mailform-submit, .csc-mailform .news-single .button-group.expanded .article__back-link:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .csc-mailform-submit, .button-group.expanded .orbit--with-icon .orbit-slide--content .csc-mailform a:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .csc-mailform-submit, .csc-mailform .button-group.expanded .orbit--with-icon .orbit-slide--content a:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .csc-mailform-submit, .orbit--with-icon .orbit-slide--content .button-group.expanded .csc-mailform a:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .csc-mailform-submit, .csc-mailform .orbit--with-icon .orbit-slide--content .button-group.expanded a:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .csc-mailform-submit, .button-group.expanded .news-single .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .article__back-link, .news-single .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .article__back-link, .news-single .button-group.expanded .Tx-Formhandler .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .article__back-link, .button-group.expanded .csc-mailform .news-single .csc-mailform-submit:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .article__back-link, .news-single .button-group.expanded .csc-mailform .csc-mailform-submit:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .article__back-link, .csc-mailform .button-group.expanded .news-single .csc-mailform-submit:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .article__back-link, .news-single .csc-mailform .button-group.expanded .csc-mailform-submit:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .article__back-link, .button-group.expanded .news-single .article__back-link:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .article__back-link, .news-single .button-group.expanded .article__back-link:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .article__back-link, .button-group.expanded .orbit--with-icon .orbit-slide--content .news-single a:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .article__back-link, .news-single .button-group.expanded .orbit--with-icon .orbit-slide--content a:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .article__back-link, .orbit--with-icon .orbit-slide--content .button-group.expanded .news-single a:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .article__back-link, .news-single .orbit--with-icon .orbit-slide--content .button-group.expanded a:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .article__back-link, .button-group.expanded .orbit--with-icon .orbit-slide--content .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ a, .orbit--with-icon .orbit-slide--content .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ a, .orbit--with-icon .orbit-slide--content .button-group.expanded .Tx-Formhandler .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ a, .button-group.expanded .csc-mailform .orbit--with-icon .orbit-slide--content .csc-mailform-submit:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ a, .orbit--with-icon .orbit-slide--content .button-group.expanded .csc-mailform .csc-mailform-submit:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ a, .csc-mailform .button-group.expanded .orbit--with-icon .orbit-slide--content .csc-mailform-submit:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ a, .orbit--with-icon .orbit-slide--content .csc-mailform .button-group.expanded .csc-mailform-submit:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ a, .button-group.expanded .news-single .orbit--with-icon .orbit-slide--content .article__back-link:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ a, .orbit--with-icon .orbit-slide--content .button-group.expanded .news-single .article__back-link:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ a, .news-single .button-group.expanded .orbit--with-icon .orbit-slide--content .article__back-link:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ a, .orbit--with-icon .orbit-slide--content .news-single .button-group.expanded .article__back-link:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ a, .button-group.expanded .orbit--with-icon .orbit-slide--content a:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ a, .orbit--with-icon .orbit-slide--content .button-group.expanded a:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ a {
    display: inline-block;
    width: calc(33.33333% - 1px);
    margin-right: 1px
}

.button-group.expanded .button:first-child:nth-last-child(3):last-child, .button-group.expanded .csc-mailform .csc-mailform-submit:first-child:nth-last-child(3):last-child, .csc-mailform .button-group.expanded .csc-mailform-submit:first-child:nth-last-child(3):last-child, .button-group.expanded .news-single .article__back-link:first-child:nth-last-child(3):last-child, .news-single .button-group.expanded .article__back-link:first-child:nth-last-child(3):last-child, .button-group.expanded .orbit--with-icon .orbit-slide--content a:first-child:nth-last-child(3):last-child, .orbit--with-icon .orbit-slide--content .button-group.expanded a:first-child:nth-last-child(3):last-child, .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button:last-child, .button-group.expanded .csc-mailform .csc-mailform-submit:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button:last-child, .csc-mailform .button-group.expanded .csc-mailform-submit:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button:last-child, .button-group.expanded .news-single .article__back-link:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button:last-child, .news-single .button-group.expanded .article__back-link:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button:last-child, .button-group.expanded .orbit--with-icon .orbit-slide--content a:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button:last-child, .orbit--with-icon .orbit-slide--content .button-group.expanded a:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button:last-child, .button-group.expanded .Tx-Formhandler .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button:last-child, .button-group.expanded .csc-mailform .Tx-Formhandler .csc-mailform-submit:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button:last-child, .csc-mailform .button-group.expanded .Tx-Formhandler .csc-mailform-submit:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button:last-child, .button-group.expanded .news-single .Tx-Formhandler .article__back-link:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button:last-child, .news-single .button-group.expanded .Tx-Formhandler .article__back-link:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button:last-child, .button-group.expanded .orbit--with-icon .orbit-slide--content .Tx-Formhandler a:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button:last-child, .orbit--with-icon .orbit-slide--content .button-group.expanded .Tx-Formhandler a:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button:last-child, .button-group.expanded .csc-mailform .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .csc-mailform-submit:last-child, .csc-mailform .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .csc-mailform-submit:last-child, .csc-mailform .button-group.expanded .Tx-Formhandler .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .csc-mailform-submit:last-child, .button-group.expanded .csc-mailform .csc-mailform-submit:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .csc-mailform-submit:last-child, .csc-mailform .button-group.expanded .csc-mailform-submit:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .csc-mailform-submit:last-child, .button-group.expanded .news-single .csc-mailform .article__back-link:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .csc-mailform-submit:last-child, .csc-mailform .button-group.expanded .news-single .article__back-link:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .csc-mailform-submit:last-child, .news-single .button-group.expanded .csc-mailform .article__back-link:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .csc-mailform-submit:last-child, .csc-mailform .news-single .button-group.expanded .article__back-link:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .csc-mailform-submit:last-child, .button-group.expanded .orbit--with-icon .orbit-slide--content .csc-mailform a:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .csc-mailform-submit:last-child, .csc-mailform .button-group.expanded .orbit--with-icon .orbit-slide--content a:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .csc-mailform-submit:last-child, .orbit--with-icon .orbit-slide--content .button-group.expanded .csc-mailform a:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .csc-mailform-submit:last-child, .csc-mailform .orbit--with-icon .orbit-slide--content .button-group.expanded a:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .csc-mailform-submit:last-child, .button-group.expanded .news-single .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .article__back-link:last-child, .news-single .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .article__back-link:last-child, .news-single .button-group.expanded .Tx-Formhandler .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .article__back-link:last-child, .button-group.expanded .csc-mailform .news-single .csc-mailform-submit:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .article__back-link:last-child, .news-single .button-group.expanded .csc-mailform .csc-mailform-submit:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .article__back-link:last-child, .csc-mailform .button-group.expanded .news-single .csc-mailform-submit:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .article__back-link:last-child, .news-single .csc-mailform .button-group.expanded .csc-mailform-submit:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .article__back-link:last-child, .button-group.expanded .news-single .article__back-link:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .article__back-link:last-child, .news-single .button-group.expanded .article__back-link:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .article__back-link:last-child, .button-group.expanded .orbit--with-icon .orbit-slide--content .news-single a:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .article__back-link:last-child, .news-single .button-group.expanded .orbit--with-icon .orbit-slide--content a:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .article__back-link:last-child, .orbit--with-icon .orbit-slide--content .button-group.expanded .news-single a:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .article__back-link:last-child, .news-single .orbit--with-icon .orbit-slide--content .button-group.expanded a:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .article__back-link:last-child, .button-group.expanded .orbit--with-icon .orbit-slide--content .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ a:last-child, .orbit--with-icon .orbit-slide--content .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ a:last-child, .orbit--with-icon .orbit-slide--content .button-group.expanded .Tx-Formhandler .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ a:last-child, .button-group.expanded .csc-mailform .orbit--with-icon .orbit-slide--content .csc-mailform-submit:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ a:last-child, .orbit--with-icon .orbit-slide--content .button-group.expanded .csc-mailform .csc-mailform-submit:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ a:last-child, .csc-mailform .button-group.expanded .orbit--with-icon .orbit-slide--content .csc-mailform-submit:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ a:last-child, .orbit--with-icon .orbit-slide--content .csc-mailform .button-group.expanded .csc-mailform-submit:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ a:last-child, .button-group.expanded .news-single .orbit--with-icon .orbit-slide--content .article__back-link:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ a:last-child, .orbit--with-icon .orbit-slide--content .button-group.expanded .news-single .article__back-link:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ a:last-child, .news-single .button-group.expanded .orbit--with-icon .orbit-slide--content .article__back-link:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ a:last-child, .orbit--with-icon .orbit-slide--content .news-single .button-group.expanded .article__back-link:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ a:last-child, .button-group.expanded .orbit--with-icon .orbit-slide--content a:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ a:last-child, .orbit--with-icon .orbit-slide--content .button-group.expanded a:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ a:last-child {
    margin-right: -6px
}

.button-group.expanded .button:first-child:nth-last-child(4), .button-group.expanded .csc-mailform .csc-mailform-submit:first-child:nth-last-child(4), .csc-mailform .button-group.expanded .csc-mailform-submit:first-child:nth-last-child(4), .button-group.expanded .news-single .article__back-link:first-child:nth-last-child(4), .news-single .button-group.expanded .article__back-link:first-child:nth-last-child(4), .button-group.expanded .orbit--with-icon .orbit-slide--content a:first-child:nth-last-child(4), .orbit--with-icon .orbit-slide--content .button-group.expanded a:first-child:nth-last-child(4), .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button, .button-group.expanded .csc-mailform .csc-mailform-submit:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button, .csc-mailform .button-group.expanded .csc-mailform-submit:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button, .button-group.expanded .news-single .article__back-link:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button, .news-single .button-group.expanded .article__back-link:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button, .button-group.expanded .orbit--with-icon .orbit-slide--content a:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button, .orbit--with-icon .orbit-slide--content .button-group.expanded a:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button, .button-group.expanded .Tx-Formhandler .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button, .button-group.expanded .csc-mailform .Tx-Formhandler .csc-mailform-submit:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button, .csc-mailform .button-group.expanded .Tx-Formhandler .csc-mailform-submit:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button, .button-group.expanded .news-single .Tx-Formhandler .article__back-link:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button, .news-single .button-group.expanded .Tx-Formhandler .article__back-link:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button, .button-group.expanded .orbit--with-icon .orbit-slide--content .Tx-Formhandler a:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button, .orbit--with-icon .orbit-slide--content .button-group.expanded .Tx-Formhandler a:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button, .button-group.expanded .csc-mailform .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .csc-mailform-submit, .csc-mailform .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .csc-mailform-submit, .csc-mailform .button-group.expanded .Tx-Formhandler .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .csc-mailform-submit, .button-group.expanded .csc-mailform .csc-mailform-submit:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .csc-mailform-submit, .csc-mailform .button-group.expanded .csc-mailform-submit:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .csc-mailform-submit, .button-group.expanded .news-single .csc-mailform .article__back-link:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .csc-mailform-submit, .csc-mailform .button-group.expanded .news-single .article__back-link:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .csc-mailform-submit, .news-single .button-group.expanded .csc-mailform .article__back-link:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .csc-mailform-submit, .csc-mailform .news-single .button-group.expanded .article__back-link:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .csc-mailform-submit, .button-group.expanded .orbit--with-icon .orbit-slide--content .csc-mailform a:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .csc-mailform-submit, .csc-mailform .button-group.expanded .orbit--with-icon .orbit-slide--content a:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .csc-mailform-submit, .orbit--with-icon .orbit-slide--content .button-group.expanded .csc-mailform a:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .csc-mailform-submit, .csc-mailform .orbit--with-icon .orbit-slide--content .button-group.expanded a:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .csc-mailform-submit, .button-group.expanded .news-single .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .article__back-link, .news-single .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .article__back-link, .news-single .button-group.expanded .Tx-Formhandler .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .article__back-link, .button-group.expanded .csc-mailform .news-single .csc-mailform-submit:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .article__back-link, .news-single .button-group.expanded .csc-mailform .csc-mailform-submit:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .article__back-link, .csc-mailform .button-group.expanded .news-single .csc-mailform-submit:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .article__back-link, .news-single .csc-mailform .button-group.expanded .csc-mailform-submit:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .article__back-link, .button-group.expanded .news-single .article__back-link:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .article__back-link, .news-single .button-group.expanded .article__back-link:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .article__back-link, .button-group.expanded .orbit--with-icon .orbit-slide--content .news-single a:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .article__back-link, .news-single .button-group.expanded .orbit--with-icon .orbit-slide--content a:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .article__back-link, .orbit--with-icon .orbit-slide--content .button-group.expanded .news-single a:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .article__back-link, .news-single .orbit--with-icon .orbit-slide--content .button-group.expanded a:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .article__back-link, .button-group.expanded .orbit--with-icon .orbit-slide--content .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ a, .orbit--with-icon .orbit-slide--content .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ a, .orbit--with-icon .orbit-slide--content .button-group.expanded .Tx-Formhandler .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ a, .button-group.expanded .csc-mailform .orbit--with-icon .orbit-slide--content .csc-mailform-submit:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ a, .orbit--with-icon .orbit-slide--content .button-group.expanded .csc-mailform .csc-mailform-submit:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ a, .csc-mailform .button-group.expanded .orbit--with-icon .orbit-slide--content .csc-mailform-submit:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ a, .orbit--with-icon .orbit-slide--content .csc-mailform .button-group.expanded .csc-mailform-submit:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ a, .button-group.expanded .news-single .orbit--with-icon .orbit-slide--content .article__back-link:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ a, .orbit--with-icon .orbit-slide--content .button-group.expanded .news-single .article__back-link:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ a, .news-single .button-group.expanded .orbit--with-icon .orbit-slide--content .article__back-link:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ a, .orbit--with-icon .orbit-slide--content .news-single .button-group.expanded .article__back-link:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ a, .button-group.expanded .orbit--with-icon .orbit-slide--content a:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ a, .orbit--with-icon .orbit-slide--content .button-group.expanded a:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ a {
    display: inline-block;
    width: calc(25% - 1px);
    margin-right: 1px
}

.button-group.expanded .button:first-child:nth-last-child(4):last-child, .button-group.expanded .csc-mailform .csc-mailform-submit:first-child:nth-last-child(4):last-child, .csc-mailform .button-group.expanded .csc-mailform-submit:first-child:nth-last-child(4):last-child, .button-group.expanded .news-single .article__back-link:first-child:nth-last-child(4):last-child, .news-single .button-group.expanded .article__back-link:first-child:nth-last-child(4):last-child, .button-group.expanded .orbit--with-icon .orbit-slide--content a:first-child:nth-last-child(4):last-child, .orbit--with-icon .orbit-slide--content .button-group.expanded a:first-child:nth-last-child(4):last-child, .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button:last-child, .button-group.expanded .csc-mailform .csc-mailform-submit:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button:last-child, .csc-mailform .button-group.expanded .csc-mailform-submit:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button:last-child, .button-group.expanded .news-single .article__back-link:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button:last-child, .news-single .button-group.expanded .article__back-link:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button:last-child, .button-group.expanded .orbit--with-icon .orbit-slide--content a:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button:last-child, .orbit--with-icon .orbit-slide--content .button-group.expanded a:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button:last-child, .button-group.expanded .Tx-Formhandler .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button:last-child, .button-group.expanded .csc-mailform .Tx-Formhandler .csc-mailform-submit:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button:last-child, .csc-mailform .button-group.expanded .Tx-Formhandler .csc-mailform-submit:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button:last-child, .button-group.expanded .news-single .Tx-Formhandler .article__back-link:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button:last-child, .news-single .button-group.expanded .Tx-Formhandler .article__back-link:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button:last-child, .button-group.expanded .orbit--with-icon .orbit-slide--content .Tx-Formhandler a:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button:last-child, .orbit--with-icon .orbit-slide--content .button-group.expanded .Tx-Formhandler a:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button:last-child, .button-group.expanded .csc-mailform .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .csc-mailform-submit:last-child, .csc-mailform .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .csc-mailform-submit:last-child, .csc-mailform .button-group.expanded .Tx-Formhandler .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .csc-mailform-submit:last-child, .button-group.expanded .csc-mailform .csc-mailform-submit:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .csc-mailform-submit:last-child, .csc-mailform .button-group.expanded .csc-mailform-submit:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .csc-mailform-submit:last-child, .button-group.expanded .news-single .csc-mailform .article__back-link:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .csc-mailform-submit:last-child, .csc-mailform .button-group.expanded .news-single .article__back-link:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .csc-mailform-submit:last-child, .news-single .button-group.expanded .csc-mailform .article__back-link:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .csc-mailform-submit:last-child, .csc-mailform .news-single .button-group.expanded .article__back-link:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .csc-mailform-submit:last-child, .button-group.expanded .orbit--with-icon .orbit-slide--content .csc-mailform a:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .csc-mailform-submit:last-child, .csc-mailform .button-group.expanded .orbit--with-icon .orbit-slide--content a:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .csc-mailform-submit:last-child, .orbit--with-icon .orbit-slide--content .button-group.expanded .csc-mailform a:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .csc-mailform-submit:last-child, .csc-mailform .orbit--with-icon .orbit-slide--content .button-group.expanded a:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .csc-mailform-submit:last-child, .button-group.expanded .news-single .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .article__back-link:last-child, .news-single .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .article__back-link:last-child, .news-single .button-group.expanded .Tx-Formhandler .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .article__back-link:last-child, .button-group.expanded .csc-mailform .news-single .csc-mailform-submit:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .article__back-link:last-child, .news-single .button-group.expanded .csc-mailform .csc-mailform-submit:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .article__back-link:last-child, .csc-mailform .button-group.expanded .news-single .csc-mailform-submit:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .article__back-link:last-child, .news-single .csc-mailform .button-group.expanded .csc-mailform-submit:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .article__back-link:last-child, .button-group.expanded .news-single .article__back-link:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .article__back-link:last-child, .news-single .button-group.expanded .article__back-link:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .article__back-link:last-child, .button-group.expanded .orbit--with-icon .orbit-slide--content .news-single a:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .article__back-link:last-child, .news-single .button-group.expanded .orbit--with-icon .orbit-slide--content a:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .article__back-link:last-child, .orbit--with-icon .orbit-slide--content .button-group.expanded .news-single a:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .article__back-link:last-child, .news-single .orbit--with-icon .orbit-slide--content .button-group.expanded a:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .article__back-link:last-child, .button-group.expanded .orbit--with-icon .orbit-slide--content .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ a:last-child, .orbit--with-icon .orbit-slide--content .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ a:last-child, .orbit--with-icon .orbit-slide--content .button-group.expanded .Tx-Formhandler .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ a:last-child, .button-group.expanded .csc-mailform .orbit--with-icon .orbit-slide--content .csc-mailform-submit:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ a:last-child, .orbit--with-icon .orbit-slide--content .button-group.expanded .csc-mailform .csc-mailform-submit:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ a:last-child, .csc-mailform .button-group.expanded .orbit--with-icon .orbit-slide--content .csc-mailform-submit:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ a:last-child, .orbit--with-icon .orbit-slide--content .csc-mailform .button-group.expanded .csc-mailform-submit:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ a:last-child, .button-group.expanded .news-single .orbit--with-icon .orbit-slide--content .article__back-link:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ a:last-child, .orbit--with-icon .orbit-slide--content .button-group.expanded .news-single .article__back-link:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ a:last-child, .news-single .button-group.expanded .orbit--with-icon .orbit-slide--content .article__back-link:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ a:last-child, .orbit--with-icon .orbit-slide--content .news-single .button-group.expanded .article__back-link:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ a:last-child, .button-group.expanded .orbit--with-icon .orbit-slide--content a:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ a:last-child, .orbit--with-icon .orbit-slide--content .button-group.expanded a:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ a:last-child {
    margin-right: -6px
}

.button-group.expanded .button:first-child:nth-last-child(5), .button-group.expanded .csc-mailform .csc-mailform-submit:first-child:nth-last-child(5), .csc-mailform .button-group.expanded .csc-mailform-submit:first-child:nth-last-child(5), .button-group.expanded .news-single .article__back-link:first-child:nth-last-child(5), .news-single .button-group.expanded .article__back-link:first-child:nth-last-child(5), .button-group.expanded .orbit--with-icon .orbit-slide--content a:first-child:nth-last-child(5), .orbit--with-icon .orbit-slide--content .button-group.expanded a:first-child:nth-last-child(5), .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button, .button-group.expanded .csc-mailform .csc-mailform-submit:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button, .csc-mailform .button-group.expanded .csc-mailform-submit:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button, .button-group.expanded .news-single .article__back-link:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button, .news-single .button-group.expanded .article__back-link:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button, .button-group.expanded .orbit--with-icon .orbit-slide--content a:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button, .orbit--with-icon .orbit-slide--content .button-group.expanded a:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button, .button-group.expanded .Tx-Formhandler .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button, .button-group.expanded .csc-mailform .Tx-Formhandler .csc-mailform-submit:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button, .csc-mailform .button-group.expanded .Tx-Formhandler .csc-mailform-submit:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button, .button-group.expanded .news-single .Tx-Formhandler .article__back-link:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button, .news-single .button-group.expanded .Tx-Formhandler .article__back-link:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button, .button-group.expanded .orbit--with-icon .orbit-slide--content .Tx-Formhandler a:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button, .orbit--with-icon .orbit-slide--content .button-group.expanded .Tx-Formhandler a:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button, .button-group.expanded .csc-mailform .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .csc-mailform-submit, .csc-mailform .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .csc-mailform-submit, .csc-mailform .button-group.expanded .Tx-Formhandler .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .csc-mailform-submit, .button-group.expanded .csc-mailform .csc-mailform-submit:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .csc-mailform-submit, .csc-mailform .button-group.expanded .csc-mailform-submit:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .csc-mailform-submit, .button-group.expanded .news-single .csc-mailform .article__back-link:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .csc-mailform-submit, .csc-mailform .button-group.expanded .news-single .article__back-link:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .csc-mailform-submit, .news-single .button-group.expanded .csc-mailform .article__back-link:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .csc-mailform-submit, .csc-mailform .news-single .button-group.expanded .article__back-link:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .csc-mailform-submit, .button-group.expanded .orbit--with-icon .orbit-slide--content .csc-mailform a:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .csc-mailform-submit, .csc-mailform .button-group.expanded .orbit--with-icon .orbit-slide--content a:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .csc-mailform-submit, .orbit--with-icon .orbit-slide--content .button-group.expanded .csc-mailform a:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .csc-mailform-submit, .csc-mailform .orbit--with-icon .orbit-slide--content .button-group.expanded a:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .csc-mailform-submit, .button-group.expanded .news-single .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .article__back-link, .news-single .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .article__back-link, .news-single .button-group.expanded .Tx-Formhandler .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .article__back-link, .button-group.expanded .csc-mailform .news-single .csc-mailform-submit:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .article__back-link, .news-single .button-group.expanded .csc-mailform .csc-mailform-submit:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .article__back-link, .csc-mailform .button-group.expanded .news-single .csc-mailform-submit:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .article__back-link, .news-single .csc-mailform .button-group.expanded .csc-mailform-submit:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .article__back-link, .button-group.expanded .news-single .article__back-link:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .article__back-link, .news-single .button-group.expanded .article__back-link:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .article__back-link, .button-group.expanded .orbit--with-icon .orbit-slide--content .news-single a:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .article__back-link, .news-single .button-group.expanded .orbit--with-icon .orbit-slide--content a:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .article__back-link, .orbit--with-icon .orbit-slide--content .button-group.expanded .news-single a:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .article__back-link, .news-single .orbit--with-icon .orbit-slide--content .button-group.expanded a:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .article__back-link, .button-group.expanded .orbit--with-icon .orbit-slide--content .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ a, .orbit--with-icon .orbit-slide--content .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ a, .orbit--with-icon .orbit-slide--content .button-group.expanded .Tx-Formhandler .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ a, .button-group.expanded .csc-mailform .orbit--with-icon .orbit-slide--content .csc-mailform-submit:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ a, .orbit--with-icon .orbit-slide--content .button-group.expanded .csc-mailform .csc-mailform-submit:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ a, .csc-mailform .button-group.expanded .orbit--with-icon .orbit-slide--content .csc-mailform-submit:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ a, .orbit--with-icon .orbit-slide--content .csc-mailform .button-group.expanded .csc-mailform-submit:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ a, .button-group.expanded .news-single .orbit--with-icon .orbit-slide--content .article__back-link:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ a, .orbit--with-icon .orbit-slide--content .button-group.expanded .news-single .article__back-link:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ a, .news-single .button-group.expanded .orbit--with-icon .orbit-slide--content .article__back-link:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ a, .orbit--with-icon .orbit-slide--content .news-single .button-group.expanded .article__back-link:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ a, .button-group.expanded .orbit--with-icon .orbit-slide--content a:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ a, .orbit--with-icon .orbit-slide--content .button-group.expanded a:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ a {
    display: inline-block;
    width: calc(20% - 1px);
    margin-right: 1px
}

.button-group.expanded .button:first-child:nth-last-child(5):last-child, .button-group.expanded .csc-mailform .csc-mailform-submit:first-child:nth-last-child(5):last-child, .csc-mailform .button-group.expanded .csc-mailform-submit:first-child:nth-last-child(5):last-child, .button-group.expanded .news-single .article__back-link:first-child:nth-last-child(5):last-child, .news-single .button-group.expanded .article__back-link:first-child:nth-last-child(5):last-child, .button-group.expanded .orbit--with-icon .orbit-slide--content a:first-child:nth-last-child(5):last-child, .orbit--with-icon .orbit-slide--content .button-group.expanded a:first-child:nth-last-child(5):last-child, .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button:last-child, .button-group.expanded .csc-mailform .csc-mailform-submit:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button:last-child, .csc-mailform .button-group.expanded .csc-mailform-submit:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button:last-child, .button-group.expanded .news-single .article__back-link:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button:last-child, .news-single .button-group.expanded .article__back-link:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button:last-child, .button-group.expanded .orbit--with-icon .orbit-slide--content a:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button:last-child, .orbit--with-icon .orbit-slide--content .button-group.expanded a:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button:last-child, .button-group.expanded .Tx-Formhandler .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button:last-child, .button-group.expanded .csc-mailform .Tx-Formhandler .csc-mailform-submit:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button:last-child, .csc-mailform .button-group.expanded .Tx-Formhandler .csc-mailform-submit:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button:last-child, .button-group.expanded .news-single .Tx-Formhandler .article__back-link:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button:last-child, .news-single .button-group.expanded .Tx-Formhandler .article__back-link:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button:last-child, .button-group.expanded .orbit--with-icon .orbit-slide--content .Tx-Formhandler a:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button:last-child, .orbit--with-icon .orbit-slide--content .button-group.expanded .Tx-Formhandler a:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button:last-child, .button-group.expanded .csc-mailform .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .csc-mailform-submit:last-child, .csc-mailform .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .csc-mailform-submit:last-child, .csc-mailform .button-group.expanded .Tx-Formhandler .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .csc-mailform-submit:last-child, .button-group.expanded .csc-mailform .csc-mailform-submit:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .csc-mailform-submit:last-child, .csc-mailform .button-group.expanded .csc-mailform-submit:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .csc-mailform-submit:last-child, .button-group.expanded .news-single .csc-mailform .article__back-link:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .csc-mailform-submit:last-child, .csc-mailform .button-group.expanded .news-single .article__back-link:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .csc-mailform-submit:last-child, .news-single .button-group.expanded .csc-mailform .article__back-link:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .csc-mailform-submit:last-child, .csc-mailform .news-single .button-group.expanded .article__back-link:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .csc-mailform-submit:last-child, .button-group.expanded .orbit--with-icon .orbit-slide--content .csc-mailform a:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .csc-mailform-submit:last-child, .csc-mailform .button-group.expanded .orbit--with-icon .orbit-slide--content a:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .csc-mailform-submit:last-child, .orbit--with-icon .orbit-slide--content .button-group.expanded .csc-mailform a:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .csc-mailform-submit:last-child, .csc-mailform .orbit--with-icon .orbit-slide--content .button-group.expanded a:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .csc-mailform-submit:last-child, .button-group.expanded .news-single .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .article__back-link:last-child, .news-single .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .article__back-link:last-child, .news-single .button-group.expanded .Tx-Formhandler .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .article__back-link:last-child, .button-group.expanded .csc-mailform .news-single .csc-mailform-submit:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .article__back-link:last-child, .news-single .button-group.expanded .csc-mailform .csc-mailform-submit:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .article__back-link:last-child, .csc-mailform .button-group.expanded .news-single .csc-mailform-submit:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .article__back-link:last-child, .news-single .csc-mailform .button-group.expanded .csc-mailform-submit:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .article__back-link:last-child, .button-group.expanded .news-single .article__back-link:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .article__back-link:last-child, .news-single .button-group.expanded .article__back-link:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .article__back-link:last-child, .button-group.expanded .orbit--with-icon .orbit-slide--content .news-single a:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .article__back-link:last-child, .news-single .button-group.expanded .orbit--with-icon .orbit-slide--content a:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .article__back-link:last-child, .orbit--with-icon .orbit-slide--content .button-group.expanded .news-single a:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .article__back-link:last-child, .news-single .orbit--with-icon .orbit-slide--content .button-group.expanded a:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .article__back-link:last-child, .button-group.expanded .orbit--with-icon .orbit-slide--content .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ a:last-child, .orbit--with-icon .orbit-slide--content .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ a:last-child, .orbit--with-icon .orbit-slide--content .button-group.expanded .Tx-Formhandler .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ a:last-child, .button-group.expanded .csc-mailform .orbit--with-icon .orbit-slide--content .csc-mailform-submit:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ a:last-child, .orbit--with-icon .orbit-slide--content .button-group.expanded .csc-mailform .csc-mailform-submit:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ a:last-child, .csc-mailform .button-group.expanded .orbit--with-icon .orbit-slide--content .csc-mailform-submit:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ a:last-child, .orbit--with-icon .orbit-slide--content .csc-mailform .button-group.expanded .csc-mailform-submit:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ a:last-child, .button-group.expanded .news-single .orbit--with-icon .orbit-slide--content .article__back-link:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ a:last-child, .orbit--with-icon .orbit-slide--content .button-group.expanded .news-single .article__back-link:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ a:last-child, .news-single .button-group.expanded .orbit--with-icon .orbit-slide--content .article__back-link:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ a:last-child, .orbit--with-icon .orbit-slide--content .news-single .button-group.expanded .article__back-link:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ a:last-child, .button-group.expanded .orbit--with-icon .orbit-slide--content a:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ a:last-child, .orbit--with-icon .orbit-slide--content .button-group.expanded a:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ a:last-child {
    margin-right: -6px
}

.button-group.expanded .button:first-child:nth-last-child(6), .button-group.expanded .csc-mailform .csc-mailform-submit:first-child:nth-last-child(6), .csc-mailform .button-group.expanded .csc-mailform-submit:first-child:nth-last-child(6), .button-group.expanded .news-single .article__back-link:first-child:nth-last-child(6), .news-single .button-group.expanded .article__back-link:first-child:nth-last-child(6), .button-group.expanded .orbit--with-icon .orbit-slide--content a:first-child:nth-last-child(6), .orbit--with-icon .orbit-slide--content .button-group.expanded a:first-child:nth-last-child(6), .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button, .button-group.expanded .csc-mailform .csc-mailform-submit:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button, .csc-mailform .button-group.expanded .csc-mailform-submit:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button, .button-group.expanded .news-single .article__back-link:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button, .news-single .button-group.expanded .article__back-link:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button, .button-group.expanded .orbit--with-icon .orbit-slide--content a:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button, .orbit--with-icon .orbit-slide--content .button-group.expanded a:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button, .button-group.expanded .Tx-Formhandler .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button, .button-group.expanded .csc-mailform .Tx-Formhandler .csc-mailform-submit:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button, .csc-mailform .button-group.expanded .Tx-Formhandler .csc-mailform-submit:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button, .button-group.expanded .news-single .Tx-Formhandler .article__back-link:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button, .news-single .button-group.expanded .Tx-Formhandler .article__back-link:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button, .button-group.expanded .orbit--with-icon .orbit-slide--content .Tx-Formhandler a:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button, .orbit--with-icon .orbit-slide--content .button-group.expanded .Tx-Formhandler a:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button, .button-group.expanded .csc-mailform .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .csc-mailform-submit, .csc-mailform .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .csc-mailform-submit, .csc-mailform .button-group.expanded .Tx-Formhandler .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .csc-mailform-submit, .button-group.expanded .csc-mailform .csc-mailform-submit:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .csc-mailform-submit, .csc-mailform .button-group.expanded .csc-mailform-submit:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .csc-mailform-submit, .button-group.expanded .news-single .csc-mailform .article__back-link:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .csc-mailform-submit, .csc-mailform .button-group.expanded .news-single .article__back-link:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .csc-mailform-submit, .news-single .button-group.expanded .csc-mailform .article__back-link:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .csc-mailform-submit, .csc-mailform .news-single .button-group.expanded .article__back-link:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .csc-mailform-submit, .button-group.expanded .orbit--with-icon .orbit-slide--content .csc-mailform a:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .csc-mailform-submit, .csc-mailform .button-group.expanded .orbit--with-icon .orbit-slide--content a:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .csc-mailform-submit, .orbit--with-icon .orbit-slide--content .button-group.expanded .csc-mailform a:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .csc-mailform-submit, .csc-mailform .orbit--with-icon .orbit-slide--content .button-group.expanded a:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .csc-mailform-submit, .button-group.expanded .news-single .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .article__back-link, .news-single .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .article__back-link, .news-single .button-group.expanded .Tx-Formhandler .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .article__back-link, .button-group.expanded .csc-mailform .news-single .csc-mailform-submit:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .article__back-link, .news-single .button-group.expanded .csc-mailform .csc-mailform-submit:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .article__back-link, .csc-mailform .button-group.expanded .news-single .csc-mailform-submit:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .article__back-link, .news-single .csc-mailform .button-group.expanded .csc-mailform-submit:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .article__back-link, .button-group.expanded .news-single .article__back-link:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .article__back-link, .news-single .button-group.expanded .article__back-link:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .article__back-link, .button-group.expanded .orbit--with-icon .orbit-slide--content .news-single a:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .article__back-link, .news-single .button-group.expanded .orbit--with-icon .orbit-slide--content a:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .article__back-link, .orbit--with-icon .orbit-slide--content .button-group.expanded .news-single a:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .article__back-link, .news-single .orbit--with-icon .orbit-slide--content .button-group.expanded a:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .article__back-link, .button-group.expanded .orbit--with-icon .orbit-slide--content .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ a, .orbit--with-icon .orbit-slide--content .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ a, .orbit--with-icon .orbit-slide--content .button-group.expanded .Tx-Formhandler .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ a, .button-group.expanded .csc-mailform .orbit--with-icon .orbit-slide--content .csc-mailform-submit:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ a, .orbit--with-icon .orbit-slide--content .button-group.expanded .csc-mailform .csc-mailform-submit:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ a, .csc-mailform .button-group.expanded .orbit--with-icon .orbit-slide--content .csc-mailform-submit:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ a, .orbit--with-icon .orbit-slide--content .csc-mailform .button-group.expanded .csc-mailform-submit:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ a, .button-group.expanded .news-single .orbit--with-icon .orbit-slide--content .article__back-link:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ a, .orbit--with-icon .orbit-slide--content .button-group.expanded .news-single .article__back-link:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ a, .news-single .button-group.expanded .orbit--with-icon .orbit-slide--content .article__back-link:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ a, .orbit--with-icon .orbit-slide--content .news-single .button-group.expanded .article__back-link:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ a, .button-group.expanded .orbit--with-icon .orbit-slide--content a:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ a, .orbit--with-icon .orbit-slide--content .button-group.expanded a:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ a {
    display: inline-block;
    width: calc(16.66667% - 1px);
    margin-right: 1px
}

.button-group.expanded .button:first-child:nth-last-child(6):last-child, .button-group.expanded .csc-mailform .csc-mailform-submit:first-child:nth-last-child(6):last-child, .csc-mailform .button-group.expanded .csc-mailform-submit:first-child:nth-last-child(6):last-child, .button-group.expanded .news-single .article__back-link:first-child:nth-last-child(6):last-child, .news-single .button-group.expanded .article__back-link:first-child:nth-last-child(6):last-child, .button-group.expanded .orbit--with-icon .orbit-slide--content a:first-child:nth-last-child(6):last-child, .orbit--with-icon .orbit-slide--content .button-group.expanded a:first-child:nth-last-child(6):last-child, .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button:last-child, .button-group.expanded .csc-mailform .csc-mailform-submit:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button:last-child, .csc-mailform .button-group.expanded .csc-mailform-submit:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button:last-child, .button-group.expanded .news-single .article__back-link:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button:last-child, .news-single .button-group.expanded .article__back-link:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button:last-child, .button-group.expanded .orbit--with-icon .orbit-slide--content a:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button:last-child, .orbit--with-icon .orbit-slide--content .button-group.expanded a:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button:last-child, .button-group.expanded .Tx-Formhandler .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button:last-child, .button-group.expanded .csc-mailform .Tx-Formhandler .csc-mailform-submit:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button:last-child, .csc-mailform .button-group.expanded .Tx-Formhandler .csc-mailform-submit:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button:last-child, .button-group.expanded .news-single .Tx-Formhandler .article__back-link:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button:last-child, .news-single .button-group.expanded .Tx-Formhandler .article__back-link:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button:last-child, .button-group.expanded .orbit--with-icon .orbit-slide--content .Tx-Formhandler a:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button:last-child, .orbit--with-icon .orbit-slide--content .button-group.expanded .Tx-Formhandler a:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button:last-child, .button-group.expanded .csc-mailform .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .csc-mailform-submit:last-child, .csc-mailform .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .csc-mailform-submit:last-child, .csc-mailform .button-group.expanded .Tx-Formhandler .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .csc-mailform-submit:last-child, .button-group.expanded .csc-mailform .csc-mailform-submit:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .csc-mailform-submit:last-child, .csc-mailform .button-group.expanded .csc-mailform-submit:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .csc-mailform-submit:last-child, .button-group.expanded .news-single .csc-mailform .article__back-link:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .csc-mailform-submit:last-child, .csc-mailform .button-group.expanded .news-single .article__back-link:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .csc-mailform-submit:last-child, .news-single .button-group.expanded .csc-mailform .article__back-link:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .csc-mailform-submit:last-child, .csc-mailform .news-single .button-group.expanded .article__back-link:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .csc-mailform-submit:last-child, .button-group.expanded .orbit--with-icon .orbit-slide--content .csc-mailform a:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .csc-mailform-submit:last-child, .csc-mailform .button-group.expanded .orbit--with-icon .orbit-slide--content a:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .csc-mailform-submit:last-child, .orbit--with-icon .orbit-slide--content .button-group.expanded .csc-mailform a:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .csc-mailform-submit:last-child, .csc-mailform .orbit--with-icon .orbit-slide--content .button-group.expanded a:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .csc-mailform-submit:last-child, .button-group.expanded .news-single .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .article__back-link:last-child, .news-single .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .article__back-link:last-child, .news-single .button-group.expanded .Tx-Formhandler .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .article__back-link:last-child, .button-group.expanded .csc-mailform .news-single .csc-mailform-submit:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .article__back-link:last-child, .news-single .button-group.expanded .csc-mailform .csc-mailform-submit:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .article__back-link:last-child, .csc-mailform .button-group.expanded .news-single .csc-mailform-submit:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .article__back-link:last-child, .news-single .csc-mailform .button-group.expanded .csc-mailform-submit:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .article__back-link:last-child, .button-group.expanded .news-single .article__back-link:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .article__back-link:last-child, .news-single .button-group.expanded .article__back-link:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .article__back-link:last-child, .button-group.expanded .orbit--with-icon .orbit-slide--content .news-single a:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .article__back-link:last-child, .news-single .button-group.expanded .orbit--with-icon .orbit-slide--content a:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .article__back-link:last-child, .orbit--with-icon .orbit-slide--content .button-group.expanded .news-single a:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .article__back-link:last-child, .news-single .orbit--with-icon .orbit-slide--content .button-group.expanded a:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .article__back-link:last-child, .button-group.expanded .orbit--with-icon .orbit-slide--content .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ a:last-child, .orbit--with-icon .orbit-slide--content .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ a:last-child, .orbit--with-icon .orbit-slide--content .button-group.expanded .Tx-Formhandler .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ a:last-child, .button-group.expanded .csc-mailform .orbit--with-icon .orbit-slide--content .csc-mailform-submit:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ a:last-child, .orbit--with-icon .orbit-slide--content .button-group.expanded .csc-mailform .csc-mailform-submit:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ a:last-child, .csc-mailform .button-group.expanded .orbit--with-icon .orbit-slide--content .csc-mailform-submit:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ a:last-child, .orbit--with-icon .orbit-slide--content .csc-mailform .button-group.expanded .csc-mailform-submit:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ a:last-child, .button-group.expanded .news-single .orbit--with-icon .orbit-slide--content .article__back-link:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ a:last-child, .orbit--with-icon .orbit-slide--content .button-group.expanded .news-single .article__back-link:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ a:last-child, .news-single .button-group.expanded .orbit--with-icon .orbit-slide--content .article__back-link:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ a:last-child, .orbit--with-icon .orbit-slide--content .news-single .button-group.expanded .article__back-link:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ a:last-child, .button-group.expanded .orbit--with-icon .orbit-slide--content a:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ a:last-child, .orbit--with-icon .orbit-slide--content .button-group.expanded a:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ a:last-child {
    margin-right: -6px
}

.button-group.primary .button, .button-group.primary .csc-mailform .csc-mailform-submit, .csc-mailform .button-group.primary .csc-mailform-submit, .button-group.primary .news-single .article__back-link, .news-single .button-group.primary .article__back-link, .button-group.primary .orbit--with-icon .orbit-slide--content a, .orbit--with-icon .orbit-slide--content .button-group.primary a {
    background-color: #0078b9;
    color: #fefefe
}

.button-group.primary .button:hover, .button-group.primary .csc-mailform .csc-mailform-submit:hover, .csc-mailform .button-group.primary .csc-mailform-submit:hover, .button-group.primary .news-single .article__back-link:hover, .news-single .button-group.primary .article__back-link:hover, .button-group.primary .orbit--with-icon .orbit-slide--content a:hover, .orbit--with-icon .orbit-slide--content .button-group.primary a:hover, .button-group.primary .button:focus, .button-group.primary .csc-mailform .csc-mailform-submit:focus, .csc-mailform .button-group.primary .csc-mailform-submit:focus, .button-group.primary .news-single .article__back-link:focus, .news-single .button-group.primary .article__back-link:focus, .button-group.primary .orbit--with-icon .orbit-slide--content a:focus, .orbit--with-icon .orbit-slide--content .button-group.primary a:focus {
    background-color: #008dda;
    color: #fefefe
}

.button-group.secondary .button, .button-group.secondary .csc-mailform .csc-mailform-submit, .csc-mailform .button-group.secondary .csc-mailform-submit, .button-group.secondary .news-single .article__back-link, .news-single .button-group.secondary .article__back-link, .button-group.secondary .orbit--with-icon .orbit-slide--content a, .orbit--with-icon .orbit-slide--content .button-group.secondary a {
    background-color: #2c353a;
    color: #fefefe
}

.button-group.secondary .button:hover, .button-group.secondary .csc-mailform .csc-mailform-submit:hover, .csc-mailform .button-group.secondary .csc-mailform-submit:hover, .button-group.secondary .news-single .article__back-link:hover, .news-single .button-group.secondary .article__back-link:hover, .button-group.secondary .orbit--with-icon .orbit-slide--content a:hover, .orbit--with-icon .orbit-slide--content .button-group.secondary a:hover, .button-group.secondary .button:focus, .button-group.secondary .csc-mailform .csc-mailform-submit:focus, .csc-mailform .button-group.secondary .csc-mailform-submit:focus, .button-group.secondary .news-single .article__back-link:focus, .news-single .button-group.secondary .article__back-link:focus, .button-group.secondary .orbit--with-icon .orbit-slide--content a:focus, .orbit--with-icon .orbit-slide--content .button-group.secondary a:focus {
    background-color: #3e4a51;
    color: #fefefe
}

.button-group.success .button, .button-group.success .csc-mailform .csc-mailform-submit, .csc-mailform .button-group.success .csc-mailform-submit, .button-group.success .news-single .article__back-link, .news-single .button-group.success .article__back-link, .button-group.success .orbit--with-icon .orbit-slide--content a, .orbit--with-icon .orbit-slide--content .button-group.success a {
    background-color: #3adb76;
    color: #0a0a0a
}

.button-group.success .button:hover, .button-group.success .csc-mailform .csc-mailform-submit:hover, .csc-mailform .button-group.success .csc-mailform-submit:hover, .button-group.success .news-single .article__back-link:hover, .news-single .button-group.success .article__back-link:hover, .button-group.success .orbit--with-icon .orbit-slide--content a:hover, .orbit--with-icon .orbit-slide--content .button-group.success a:hover, .button-group.success .button:focus, .button-group.success .csc-mailform .csc-mailform-submit:focus, .csc-mailform .button-group.success .csc-mailform-submit:focus, .button-group.success .news-single .article__back-link:focus, .news-single .button-group.success .article__back-link:focus, .button-group.success .orbit--with-icon .orbit-slide--content a:focus, .orbit--with-icon .orbit-slide--content .button-group.success a:focus {
    background-color: #4edf84;
    color: #0a0a0a
}

.button-group.warning .button, .button-group.warning .csc-mailform .csc-mailform-submit, .csc-mailform .button-group.warning .csc-mailform-submit, .button-group.warning .news-single .article__back-link, .news-single .button-group.warning .article__back-link, .button-group.warning .orbit--with-icon .orbit-slide--content a, .orbit--with-icon .orbit-slide--content .button-group.warning a {
    background-color: #ffae00;
    color: #0a0a0a
}

.button-group.warning .button:hover, .button-group.warning .csc-mailform .csc-mailform-submit:hover, .csc-mailform .button-group.warning .csc-mailform-submit:hover, .button-group.warning .news-single .article__back-link:hover, .news-single .button-group.warning .article__back-link:hover, .button-group.warning .orbit--with-icon .orbit-slide--content a:hover, .orbit--with-icon .orbit-slide--content .button-group.warning a:hover, .button-group.warning .button:focus, .button-group.warning .csc-mailform .csc-mailform-submit:focus, .csc-mailform .button-group.warning .csc-mailform-submit:focus, .button-group.warning .news-single .article__back-link:focus, .news-single .button-group.warning .article__back-link:focus, .button-group.warning .orbit--with-icon .orbit-slide--content a:focus, .orbit--with-icon .orbit-slide--content .button-group.warning a:focus {
    background-color: #ffb61a;
    color: #0a0a0a
}

.button-group.alert .button, .button-group.alert .csc-mailform .csc-mailform-submit, .csc-mailform .button-group.alert .csc-mailform-submit, .button-group.alert .news-single .article__back-link, .news-single .button-group.alert .article__back-link, .button-group.alert .orbit--with-icon .orbit-slide--content a, .orbit--with-icon .orbit-slide--content .button-group.alert a {
    background-color: #c90019;
    color: #fefefe
}

.button-group.alert .button:hover, .button-group.alert .csc-mailform .csc-mailform-submit:hover, .csc-mailform .button-group.alert .csc-mailform-submit:hover, .button-group.alert .news-single .article__back-link:hover, .news-single .button-group.alert .article__back-link:hover, .button-group.alert .orbit--with-icon .orbit-slide--content a:hover, .orbit--with-icon .orbit-slide--content .button-group.alert a:hover, .button-group.alert .button:focus, .button-group.alert .csc-mailform .csc-mailform-submit:focus, .csc-mailform .button-group.alert .csc-mailform-submit:focus, .button-group.alert .news-single .article__back-link:focus, .news-single .button-group.alert .article__back-link:focus, .button-group.alert .orbit--with-icon .orbit-slide--content a:focus, .orbit--with-icon .orbit-slide--content .button-group.alert a:focus {
    background-color: #e8001d;
    color: #fefefe
}

.button-group.stacked .button, .button-group.stacked .csc-mailform .csc-mailform-submit, .csc-mailform .button-group.stacked .csc-mailform-submit, .button-group.stacked .news-single .article__back-link, .news-single .button-group.stacked .article__back-link, .button-group.stacked .orbit--with-icon .orbit-slide--content a, .orbit--with-icon .orbit-slide--content .button-group.stacked a, .button-group.stacked-for-small .button, .button-group.stacked-for-small .csc-mailform .csc-mailform-submit, .csc-mailform .button-group.stacked-for-small .csc-mailform-submit, .button-group.stacked-for-small .news-single .article__back-link, .news-single .button-group.stacked-for-small .article__back-link, .button-group.stacked-for-small .orbit--with-icon .orbit-slide--content a, .orbit--with-icon .orbit-slide--content .button-group.stacked-for-small a, .button-group.stacked-for-medium .button, .button-group.stacked-for-medium .csc-mailform .csc-mailform-submit, .csc-mailform .button-group.stacked-for-medium .csc-mailform-submit, .button-group.stacked-for-medium .news-single .article__back-link, .news-single .button-group.stacked-for-medium .article__back-link, .button-group.stacked-for-medium .orbit--with-icon .orbit-slide--content a, .orbit--with-icon .orbit-slide--content .button-group.stacked-for-medium a {
    width: 100%
}

.button-group.stacked .button:last-child, .button-group.stacked .csc-mailform .csc-mailform-submit:last-child, .csc-mailform .button-group.stacked .csc-mailform-submit:last-child, .button-group.stacked .news-single .article__back-link:last-child, .news-single .button-group.stacked .article__back-link:last-child, .button-group.stacked .orbit--with-icon .orbit-slide--content a:last-child, .orbit--with-icon .orbit-slide--content .button-group.stacked a:last-child, .button-group.stacked-for-small .button:last-child, .button-group.stacked-for-small .csc-mailform .csc-mailform-submit:last-child, .csc-mailform .button-group.stacked-for-small .csc-mailform-submit:last-child, .button-group.stacked-for-small .news-single .article__back-link:last-child, .news-single .button-group.stacked-for-small .article__back-link:last-child, .button-group.stacked-for-small .orbit--with-icon .orbit-slide--content a:last-child, .orbit--with-icon .orbit-slide--content .button-group.stacked-for-small a:last-child, .button-group.stacked-for-medium .button:last-child, .button-group.stacked-for-medium .csc-mailform .csc-mailform-submit:last-child, .csc-mailform .button-group.stacked-for-medium .csc-mailform-submit:last-child, .button-group.stacked-for-medium .news-single .article__back-link:last-child, .news-single .button-group.stacked-for-medium .article__back-link:last-child, .button-group.stacked-for-medium .orbit--with-icon .orbit-slide--content a:last-child, .orbit--with-icon .orbit-slide--content .button-group.stacked-for-medium a:last-child {
    margin-bottom: 0
}

@media print, screen and (min-width: 40em) {
    .button-group.stacked-for-small .button, .button-group.stacked-for-small .csc-mailform .csc-mailform-submit, .csc-mailform .button-group.stacked-for-small .csc-mailform-submit, .button-group.stacked-for-small .news-single .article__back-link, .news-single .button-group.stacked-for-small .article__back-link, .button-group.stacked-for-small .orbit--with-icon .orbit-slide--content a, .orbit--with-icon .orbit-slide--content .button-group.stacked-for-small a {
        width: auto;
        margin-bottom: 0
    }
}

@media print, screen and (min-width: 64.0625em) {
    .button-group.stacked-for-medium .button, .button-group.stacked-for-medium .csc-mailform .csc-mailform-submit, .csc-mailform .button-group.stacked-for-medium .csc-mailform-submit, .button-group.stacked-for-medium .news-single .article__back-link, .news-single .button-group.stacked-for-medium .article__back-link, .button-group.stacked-for-medium .orbit--with-icon .orbit-slide--content a, .orbit--with-icon .orbit-slide--content .button-group.stacked-for-medium a {
        width: auto;
        margin-bottom: 0
    }
}

@media screen and (max-width: 39.9375em) {
    .button-group.stacked-for-small.expanded {
        display: block
    }

    .button-group.stacked-for-small.expanded .button, .button-group.stacked-for-small.expanded .csc-mailform .csc-mailform-submit, .csc-mailform .button-group.stacked-for-small.expanded .csc-mailform-submit, .button-group.stacked-for-small.expanded .news-single .article__back-link, .news-single .button-group.stacked-for-small.expanded .article__back-link, .button-group.stacked-for-small.expanded .orbit--with-icon .orbit-slide--content a, .orbit--with-icon .orbit-slide--content .button-group.stacked-for-small.expanded a {
        display: block;
        margin-right: 0
    }
}

.callout {
    position: relative;
    margin: 0 0 1rem 0;
    padding: 1rem;
    border: 1px solid rgba(10, 10, 10, 0.25);
    border-radius: 0;
    background-color: #fff;
    color: #0a0a0a
}

.callout > :first-child {
    margin-top: 0
}

.callout > :last-child {
    margin-bottom: 0
}

.callout.primary {
    background-color: #ceeeff;
    color: #0a0a0a
}

.callout.secondary {
    background-color: #dce2e5;
    color: #0a0a0a
}

.callout.success {
    background-color: #e1faea;
    color: #0a0a0a
}

.callout.warning {
    background-color: #fff3d9;
    color: #0a0a0a
}

.callout.alert {
    background-color: #ffd1d6;
    color: #0a0a0a
}

.callout.small {
    padding-top: 0.5rem;
    padding-right: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.5rem
}

.callout.large {
    padding-top: 3rem;
    padding-right: 3rem;
    padding-bottom: 3rem;
    padding-left: 3rem
}

.card {
    margin-bottom: 1rem;
    border: 1px solid #eee;
    border-radius: 0;
    background: #fefefe;
    box-shadow: none;
    overflow: hidden;
    color: #0a0a0a
}

.card > :last-child {
    margin-bottom: 0
}

.card-divider {
    padding: 1rem;
    background: #eee
}

.card-divider > :last-child {
    margin-bottom: 0
}

.card-section {
    padding: 1rem
}

.card-section > :last-child {
    margin-bottom: 0
}

.close-button {
    position: absolute;
    color: #2c353a;
    cursor: pointer
}

[data-whatinput='mouse'] .close-button {
    outline: 0
}

.close-button:hover, .close-button:focus {
    color: #0a0a0a
}

.close-button.small {
    right: 0.66rem;
    top: 0.33em;
    font-size: 1.5em;
    line-height: 1
}

.close-button, .close-button.medium {
    right: 1rem;
    top: 0.5rem;
    font-size: 2em;
    line-height: 1
}

.menu {
    margin: 0;
    list-style-type: none
}

.menu > li {
    display: table-cell;
    vertical-align: middle
}

[data-whatinput='mouse'] .menu > li {
    outline: 0
}

.menu > li > a {
    display: block;
    padding: 0.7rem 1rem;
    line-height: 1
}

.menu input, .menu select, .menu a, .menu button {
    margin-bottom: 0
}

.menu > li > a img, .menu > li > a i, .menu > li > a svg {
    vertical-align: middle
}

.menu > li > a img + span, .menu > li > a i + span, .menu > li > a svg + span {
    vertical-align: middle
}

.menu > li > a img, .menu > li > a i, .menu > li > a svg {
    margin-right: 0.25rem;
    display: inline-block
}

.menu > li, .menu.horizontal > li {
    display: table-cell
}

.menu.expanded {
    display: table;
    width: 100%;
    table-layout: fixed
}

.menu.expanded > li:first-child:last-child {
    width: 100%
}

.menu.vertical > li {
    display: block
}

@media print, screen and (min-width: 40em) {
    .menu.medium-horizontal > li {
        display: table-cell
    }

    .menu.medium-expanded {
        display: table;
        width: 100%;
        table-layout: fixed
    }

    .menu.medium-expanded > li:first-child:last-child {
        width: 100%
    }

    .menu.medium-vertical > li {
        display: block
    }
}

@media print, screen and (min-width: 64.0625em) {
    .menu.large-horizontal > li {
        display: table-cell
    }

    .menu.large-expanded {
        display: table;
        width: 100%;
        table-layout: fixed
    }

    .menu.large-expanded > li:first-child:last-child {
        width: 100%
    }

    .menu.large-vertical > li {
        display: block
    }
}

.menu.simple li {
    display: inline-block;
    vertical-align: top;
    line-height: 1
}

.menu.simple a {
    padding: 0
}

.menu.simple li {
    margin-left: 0;
    margin-right: 1rem
}

.menu.simple.align-right li {
    margin-right: 0;
    margin-left: 1rem
}

.menu.align-right::before, .menu.align-right::after {
    display: table;
    content: ' '
}

.menu.align-right::after {
    clear: both
}

.menu.align-right > li {
    float: right
}

.menu.icon-top > li > a {
    text-align: center
}

.menu.icon-top > li > a img, .menu.icon-top > li > a i, .menu.icon-top > li > a svg {
    display: block;
    margin: 0 auto 0.25rem
}

.menu.icon-top.vertical a > span {
    margin: auto
}

.menu.nested {
    margin-left: 1rem
}

.menu .active > a {
    background: #0078b9;
    color: #fefefe
}

.menu.menu-bordered li {
    border: 1px solid #eee
}

.menu.menu-bordered li:not(:first-child) {
    border-top: 0
}

.menu.menu-hover li:hover {
    background-color: #eee
}

.menu-text {
    padding-top: 0;
    padding-bottom: 0;
    padding: 0.7rem 1rem;
    font-weight: bold;
    line-height: 1;
    color: inherit
}

.menu-centered {
    text-align: center
}

.menu-centered > .menu {
    display: inline-block;
    vertical-align: top
}

.no-js [data-responsive-menu] ul {
    display: none
}

.menu-icon {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 16px;
    cursor: pointer
}

.menu-icon::after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    box-shadow: 0 7px 0 #fff, 0 14px 0 #fff;
    content: ''
}

.menu-icon:hover::after {
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 7px 0 rgba(255, 255, 255, 0.5), 0 14px 0 rgba(255, 255, 255, 0.5)
}

.menu-icon.dark {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 16px;
    cursor: pointer
}

.menu-icon.dark::after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background: #0a0a0a;
    box-shadow: 0 7px 0 #0a0a0a, 0 14px 0 #0a0a0a;
    content: ''
}

.menu-icon.dark:hover::after {
    background: #2c353a;
    box-shadow: 0 7px 0 #2c353a, 0 14px 0 #2c353a
}

.is-drilldown {
    position: relative;
    overflow: hidden
}

.is-drilldown li {
    display: block
}

.is-drilldown.animate-height {
    transition: height 0.5s
}

.is-drilldown-submenu {
    position: absolute;
    top: 0;
    left: 100%;
    z-index: -1;
    width: 100%;
    background: #fefefe;
    transition: transform 0.15s linear
}

.is-drilldown-submenu.is-active {
    z-index: 1;
    display: block;
    transform: translateX(-100%)
}

.is-drilldown-submenu.is-closing {
    transform: translateX(100%)
}

.drilldown-submenu-cover-previous {
    min-height: 100%
}

.is-drilldown-submenu-parent > a {
    position: relative
}

.is-drilldown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #0078b9;
    position: absolute;
    top: 50%;
    margin-top: -6px;
    right: 1rem
}

.js-drilldown-back > a::before {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #0078b9 transparent transparent;
    border-left-width: 0;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.75rem;
    border-left-width: 0
}

.dropdown-pane {
    position: absolute;
    z-index: 10;
    display: block;
    width: 300px;
    padding: 1rem;
    visibility: hidden;
    border: 1px solid #dcdcdc;
    border-radius: 0;
    background-color: #fefefe;
    font-size: 1rem
}

.dropdown-pane.is-open {
    visibility: visible
}

.dropdown-pane.tiny {
    width: 100px
}

.dropdown-pane.small {
    width: 200px
}

.dropdown-pane.large {
    width: 400px
}

.dropdown.menu > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto
}

.dropdown.menu > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0
}

.dropdown.menu > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem
}

.dropdown.menu > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #0a0a0a transparent transparent;
    right: 5px;
    margin-top: -3px
}

[data-whatinput='mouse'] .dropdown.menu a {
    outline: 0
}

.no-js .dropdown.menu ul {
    display: none
}

.dropdown.menu.vertical > li .is-dropdown-submenu {
    top: 0
}

.dropdown.menu.vertical > li.opens-left > .is-dropdown-submenu {
    right: 100%;
    left: auto
}

.dropdown.menu.vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%
}

.dropdown.menu.vertical > li > a::after {
    right: 14px
}

.dropdown.menu.vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #0a0a0a transparent transparent
}

.dropdown.menu.vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #0a0a0a
}

@media print, screen and (min-width: 40em) {
    .dropdown.menu.medium-horizontal > li.opens-left > .is-dropdown-submenu {
        top: 100%;
        right: 0;
        left: auto
    }

    .dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu {
        top: 100%;
        right: auto;
        left: 0
    }

    .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a {
        position: relative;
        padding-right: 1.5rem
    }

    .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a::after {
        display: block;
        width: 0;
        height: 0;
        border: inset 6px;
        content: '';
        border-bottom-width: 0;
        border-top-style: solid;
        border-color: #0a0a0a transparent transparent;
        right: 5px;
        margin-top: -3px
    }

    .dropdown.menu.medium-vertical > li .is-dropdown-submenu {
        top: 0
    }

    .dropdown.menu.medium-vertical > li.opens-left > .is-dropdown-submenu {
        right: 100%;
        left: auto
    }

    .dropdown.menu.medium-vertical > li.opens-right > .is-dropdown-submenu {
        right: auto;
        left: 100%
    }

    .dropdown.menu.medium-vertical > li > a::after {
        right: 14px
    }

    .dropdown.menu.medium-vertical > li.opens-left > a::after {
        display: block;
        width: 0;
        height: 0;
        border: inset 6px;
        content: '';
        border-left-width: 0;
        border-right-style: solid;
        border-color: transparent #0a0a0a transparent transparent
    }

    .dropdown.menu.medium-vertical > li.opens-right > a::after {
        display: block;
        width: 0;
        height: 0;
        border: inset 6px;
        content: '';
        border-right-width: 0;
        border-left-style: solid;
        border-color: transparent transparent transparent #0a0a0a
    }
}

@media print, screen and (min-width: 64.0625em) {
    .dropdown.menu.large-horizontal > li.opens-left > .is-dropdown-submenu {
        top: 100%;
        right: 0;
        left: auto
    }

    .dropdown.menu.large-horizontal > li.opens-right > .is-dropdown-submenu {
        top: 100%;
        right: auto;
        left: 0
    }

    .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a {
        position: relative;
        padding-right: 1.5rem
    }

    .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a::after {
        display: block;
        width: 0;
        height: 0;
        border: inset 6px;
        content: '';
        border-bottom-width: 0;
        border-top-style: solid;
        border-color: #0a0a0a transparent transparent;
        right: 5px;
        margin-top: -3px
    }

    .dropdown.menu.large-vertical > li .is-dropdown-submenu {
        top: 0
    }

    .dropdown.menu.large-vertical > li.opens-left > .is-dropdown-submenu {
        right: 100%;
        left: auto
    }

    .dropdown.menu.large-vertical > li.opens-right > .is-dropdown-submenu {
        right: auto;
        left: 100%
    }

    .dropdown.menu.large-vertical > li > a::after {
        right: 14px
    }

    .dropdown.menu.large-vertical > li.opens-left > a::after {
        display: block;
        width: 0;
        height: 0;
        border: inset 6px;
        content: '';
        border-left-width: 0;
        border-right-style: solid;
        border-color: transparent #0a0a0a transparent transparent
    }

    .dropdown.menu.large-vertical > li.opens-right > a::after {
        display: block;
        width: 0;
        height: 0;
        border: inset 6px;
        content: '';
        border-right-width: 0;
        border-left-style: solid;
        border-color: transparent transparent transparent #0a0a0a
    }
}

.dropdown.menu.align-right .is-dropdown-submenu.first-sub {
    top: 100%;
    right: 0;
    left: auto
}

.is-dropdown-menu.vertical {
    width: 100px
}

.is-dropdown-menu.vertical.align-right {
    float: right
}

.is-dropdown-submenu-parent {
    position: relative
}

.is-dropdown-submenu-parent a::after {
    position: absolute;
    top: 50%;
    right: 5px;
    margin-top: -6px
}

.is-dropdown-submenu-parent.opens-inner > .is-dropdown-submenu {
    top: 100%;
    left: auto
}

.is-dropdown-submenu-parent.opens-left > .is-dropdown-submenu {
    right: 100%;
    left: auto
}

.is-dropdown-submenu-parent.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%
}

.is-dropdown-submenu {
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 1;
    display: none;
    min-width: 200px;
    border: 1px solid #dcdcdc;
    background: #eee
}

.is-dropdown-submenu .is-dropdown-submenu-parent > a::after {
    right: 14px
}

.is-dropdown-submenu .is-dropdown-submenu-parent.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #0a0a0a transparent transparent
}

.is-dropdown-submenu .is-dropdown-submenu-parent.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #0a0a0a
}

.is-dropdown-submenu .is-dropdown-submenu {
    margin-top: -1px
}

.is-dropdown-submenu > li {
    width: 100%
}

.is-dropdown-submenu.js-dropdown-active {
    display: block
}

.responsive-embed, .flex-video {
    position: relative;
    height: 0;
    margin-bottom: 1rem;
    padding-bottom: 75%;
    overflow: hidden
}

.responsive-embed iframe, .responsive-embed object, .responsive-embed embed, .responsive-embed video, .flex-video iframe, .flex-video object, .flex-video embed, .flex-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.responsive-embed.widescreen, .flex-video.widescreen {
    padding-bottom: 56.25%
}

.label {
    display: inline-block;
    padding: 0.33333rem 0.5rem;
    border-radius: 0;
    font-size: 0.8rem;
    line-height: 1;
    white-space: nowrap;
    cursor: default;
    background: #0078b9;
    color: #fefefe
}

.label.primary {
    background: #0078b9;
    color: #fefefe
}

.label.secondary {
    background: #2c353a;
    color: #fefefe
}

.label.success {
    background: #3adb76;
    color: #0a0a0a
}

.label.warning {
    background: #ffae00;
    color: #0a0a0a
}

.label.alert {
    background: #c90019;
    color: #fefefe
}

.media-object {
    display: block;
    margin-bottom: 1rem
}

.media-object img {
    max-width: none
}

@media screen and (max-width: 39.9375em) {
    .media-object.stack-for-small .media-object-section {
        padding: 0;
        padding-bottom: 1rem;
        display: block
    }

    .media-object.stack-for-small .media-object-section img {
        width: 100%
    }
}

.media-object-section {
    display: table-cell;
    vertical-align: top
}

.media-object-section:first-child {
    padding-right: 1rem
}

.media-object-section:last-child:not(:nth-child(2)) {
    padding-left: 1rem
}

.media-object-section > :last-child {
    margin-bottom: 0
}

.media-object-section.middle {
    vertical-align: middle
}

.media-object-section.bottom {
    vertical-align: bottom
}

.is-off-canvas-open {
    overflow: hidden
}

.js-off-canvas-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    background: rgba(254, 254, 254, 0.25);
    opacity: 0;
    visibility: hidden;
    overflow: hidden
}

.js-off-canvas-overlay.is-visible {
    opacity: 1;
    visibility: visible
}

.js-off-canvas-overlay.is-closable {
    cursor: pointer
}

.js-off-canvas-overlay.is-overlay-absolute {
    position: absolute
}

.js-off-canvas-overlay.is-overlay-fixed {
    position: fixed
}

.off-canvas-wrapper {
    position: relative;
    overflow: hidden
}

.off-canvas {
    position: fixed;
    z-index: 1;
    transition: transform 0.5s ease;
    backface-visibility: hidden;
    background: #eee
}

[data-whatinput='mouse'] .off-canvas {
    outline: 0
}

.off-canvas.is-transition-overlap {
    z-index: 10
}

.off-canvas.is-transition-overlap.is-open {
    box-shadow: 0 0 10px rgba(10, 10, 10, 0.7)
}

.off-canvas.is-open {
    transform: translate(0, 0)
}

.off-canvas-absolute {
    position: absolute;
    z-index: 1;
    transition: transform 0.5s ease;
    backface-visibility: hidden;
    background: #eee
}

[data-whatinput='mouse'] .off-canvas-absolute {
    outline: 0
}

.off-canvas-absolute.is-transition-overlap {
    z-index: 10
}

.off-canvas-absolute.is-transition-overlap.is-open {
    box-shadow: 0 0 10px rgba(10, 10, 10, 0.7)
}

.off-canvas-absolute.is-open {
    transform: translate(0, 0)
}

.position-left {
    top: 0;
    left: 0;
    width: 250px;
    height: 100%;
    transform: translateX(-250px);
    overflow-y: auto
}

.position-left.is-open ~ .off-canvas-content {
    transform: translateX(250px)
}

.position-left.is-transition-push::after {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 1px;
    box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
    content: " "
}

.position-left.is-transition-overlap.is-open ~ .off-canvas-content {
    transform: none
}

.position-right {
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    transform: translateX(250px);
    overflow-y: auto
}

.position-right.is-open ~ .off-canvas-content {
    transform: translateX(-250px)
}

.position-right.is-transition-push::after {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 1px;
    box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
    content: " "
}

.position-right.is-transition-overlap.is-open ~ .off-canvas-content {
    transform: none
}

.position-top {
    top: 0;
    left: 0;
    width: 100%;
    height: 250px;
    transform: translateY(-250px);
    overflow-x: auto
}

.position-top.is-open ~ .off-canvas-content {
    transform: translateY(250px)
}

.position-top.is-transition-push::after {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 100%;
    box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
    content: " "
}

.position-top.is-transition-overlap.is-open ~ .off-canvas-content {
    transform: none
}

.position-bottom {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 250px;
    transform: translateY(250px);
    overflow-x: auto
}

.position-bottom.is-open ~ .off-canvas-content {
    transform: translateY(-250px)
}

.position-bottom.is-transition-push::after {
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    width: 100%;
    box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
    content: " "
}

.position-bottom.is-transition-overlap.is-open ~ .off-canvas-content {
    transform: none
}

.off-canvas-content {
    transition: transform 0.5s ease;
    backface-visibility: hidden
}

@media print, screen and (min-width: 40em) {
    .position-left.reveal-for-medium {
        transform: none;
        z-index: 1
    }

    .position-left.reveal-for-medium ~ .off-canvas-content {
        margin-left: 250px
    }

    .position-right.reveal-for-medium {
        transform: none;
        z-index: 1
    }

    .position-right.reveal-for-medium ~ .off-canvas-content {
        margin-right: 250px
    }

    .position-top.reveal-for-medium {
        transform: none;
        z-index: 1
    }

    .position-top.reveal-for-medium ~ .off-canvas-content {
        margin-top: 250px
    }

    .position-bottom.reveal-for-medium {
        transform: none;
        z-index: 1
    }

    .position-bottom.reveal-for-medium ~ .off-canvas-content {
        margin-bottom: 250px
    }
}

@media print, screen and (min-width: 64.0625em) {
    .position-left.reveal-for-large {
        transform: none;
        z-index: 1
    }

    .position-left.reveal-for-large ~ .off-canvas-content {
        margin-left: 250px
    }

    .position-right.reveal-for-large {
        transform: none;
        z-index: 1
    }

    .position-right.reveal-for-large ~ .off-canvas-content {
        margin-right: 250px
    }

    .position-top.reveal-for-large {
        transform: none;
        z-index: 1
    }

    .position-top.reveal-for-large ~ .off-canvas-content {
        margin-top: 250px
    }

    .position-bottom.reveal-for-large {
        transform: none;
        z-index: 1
    }

    .position-bottom.reveal-for-large ~ .off-canvas-content {
        margin-bottom: 250px
    }
}

.orbit {
    position: relative
}

.orbit-container {
    position: relative;
    height: 0;
    margin: 0;
    list-style: none;
    overflow: hidden
}

.orbit-slide {
    width: 100%
}

.orbit-slide.no-motionui.is-active {
    top: 0;
    left: 0
}

.orbit-figure {
    margin: 0
}

.orbit-image {
    width: 100%;
    max-width: 100%;
    margin: 0
}

.orbit-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    margin-bottom: 0;
    padding: 1rem;
    background-color: rgba(10, 10, 10, 0.5);
    color: #fefefe
}

.orbit-previous, .orbit-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    padding: 1rem;
    color: #fefefe
}

[data-whatinput='mouse'] .orbit-previous, [data-whatinput='mouse'] .orbit-next {
    outline: 0
}

.orbit-previous:hover, .orbit-next:hover, .orbit-previous:active, .orbit-next:active, .orbit-previous:focus, .orbit-next:focus {
    background-color: rgba(10, 10, 10, 0.5)
}

.orbit-previous {
    left: 0
}

.orbit-next {
    left: auto;
    right: 0
}

.orbit-bullets {
    position: relative;
    margin-top: 0.8rem;
    margin-bottom: 0.8rem;
    text-align: center
}

[data-whatinput='mouse'] .orbit-bullets {
    outline: 0
}

.orbit-bullets button {
    width: 1.2rem;
    height: 1.2rem;
    margin: 0.1rem;
    border-radius: 50%;
    background-color: #a2a2a2
}

.orbit-bullets button:hover {
    background-color: #f9b200
}

.orbit-bullets button.is-active {
    background-color: #f9b200
}

.pagination {
    margin-left: 0;
    margin-bottom: 1rem
}

.pagination::before, .pagination::after {
    display: table;
    content: ' '
}

.pagination::after {
    clear: both
}

.pagination li {
    margin-right: 0.0625rem;
    border-radius: 0;
    font-size: 0.875rem;
    display: none
}

.pagination li:last-child, .pagination li:first-child {
    display: inline-block
}

@media print, screen and (min-width: 40em) {
    .pagination li {
        display: inline-block
    }
}

.pagination a, .pagination button {
    display: block;
    padding: 0.1875rem 0.625rem;
    border-radius: 0;
    color: #0a0a0a
}

.pagination a:hover, .pagination button:hover {
    background: #eee
}

.pagination .current {
    padding: 0.1875rem 0.625rem;
    background: #0078b9;
    color: #fefefe;
    cursor: default
}

.pagination .disabled {
    padding: 0.1875rem 0.625rem;
    color: #dcdcdc;
    cursor: not-allowed
}

.pagination .disabled:hover {
    background: transparent
}

.pagination .ellipsis::after {
    padding: 0.1875rem 0.625rem;
    content: '\2026';
    color: #0a0a0a
}

.pagination-previous a::before, .pagination-previous.disabled::before {
    display: inline-block;
    margin-right: 0.5rem;
    content: '\00ab'
}

.pagination-next a::after, .pagination-next.disabled::after {
    display: inline-block;
    margin-left: 0.5rem;
    content: '\00bb'
}

.progress {
    height: 1rem;
    margin-bottom: 1rem;
    border-radius: 0;
    background-color: #dcdcdc
}

.progress.primary .progress-meter {
    background-color: #0078b9
}

.progress.secondary .progress-meter {
    background-color: #2c353a
}

.progress.success .progress-meter {
    background-color: #3adb76
}

.progress.warning .progress-meter {
    background-color: #ffae00
}

.progress.alert .progress-meter {
    background-color: #c90019
}

.progress-meter {
    position: relative;
    display: block;
    width: 0%;
    height: 100%;
    background-color: #0078b9
}

.progress-meter-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    margin: 0;
    font-size: 0.75rem;
    font-weight: bold;
    color: #fefefe;
    white-space: nowrap
}

.slider {
    position: relative;
    height: 0.5rem;
    margin-top: 1.25rem;
    margin-bottom: 2.25rem;
    background-color: #eee;
    cursor: pointer;
    user-select: none;
    touch-action: none
}

.slider-fill {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    max-width: 100%;
    height: 0.5rem;
    background-color: #dcdcdc;
    transition: all 0.2s ease-in-out
}

.slider-fill.is-dragging {
    transition: all 0s linear
}

.slider-handle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    left: 0;
    z-index: 1;
    display: inline-block;
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 0;
    background-color: #0078b9;
    transition: all 0.2s ease-in-out;
    touch-action: manipulation
}

[data-whatinput='mouse'] .slider-handle {
    outline: 0
}

.slider-handle:hover {
    background-color: #00669d
}

.slider-handle.is-dragging {
    transition: all 0s linear
}

.slider.disabled, .slider[disabled] {
    opacity: 0.25;
    cursor: not-allowed
}

.slider.vertical {
    display: inline-block;
    width: 0.5rem;
    height: 12.5rem;
    margin: 0 1.25rem;
    transform: scale(1, -1)
}

.slider.vertical .slider-fill {
    top: 0;
    width: 0.5rem;
    max-height: 100%
}

.slider.vertical .slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1.4rem;
    height: 1.4rem;
    transform: translateX(-50%)
}

.sticky-container {
    position: relative
}

.sticky {
    position: relative;
    z-index: 0;
    transform: translate3d(0, 0, 0)
}

.sticky.is-stuck {
    position: fixed;
    z-index: 5
}

.sticky.is-stuck.is-at-top {
    top: 0
}

.sticky.is-stuck.is-at-bottom {
    bottom: 0
}

.sticky.is-anchored {
    position: relative;
    right: auto;
    left: auto
}

.sticky.is-anchored.is-at-bottom {
    bottom: 0
}

body.is-reveal-open {
    overflow: hidden
}

html.is-reveal-open, html.is-reveal-open body {
    min-height: 100%;
    overflow: hidden;
    position: fixed;
    user-select: none
}

.reveal-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1005;
    display: none;
    background-color: rgba(10, 10, 10, 0.45);
    overflow-y: scroll
}

.reveal {
    z-index: 1006;
    backface-visibility: hidden;
    display: none;
    padding: 1rem;
    border: 1px solid #dcdcdc;
    border-radius: 0;
    background-color: #fefefe;
    position: relative;
    top: 100px;
    margin-right: auto;
    margin-left: auto;
    overflow-y: auto
}

[data-whatinput='mouse'] .reveal {
    outline: 0
}

@media print, screen and (min-width: 40em) {
    .reveal {
        min-height: 0
    }
}

.reveal .column, .reveal .columns {
    min-width: 0
}

.reveal > :last-child {
    margin-bottom: 0
}

@media print, screen and (min-width: 40em) {
    .reveal {
        width: 600px;
        max-width: 75rem
    }
}

@media print, screen and (min-width: 40em) {
    .reveal .reveal {
        right: auto;
        left: auto;
        margin: 0 auto
    }
}

.reveal.collapse {
    padding: 0
}

@media print, screen and (min-width: 40em) {
    .reveal.tiny {
        width: 30%;
        max-width: 75rem
    }
}

@media print, screen and (min-width: 40em) {
    .reveal.small {
        width: 50%;
        max-width: 75rem
    }
}

@media print, screen and (min-width: 40em) {
    .reveal.large {
        width: 90%;
        max-width: 75rem
    }
}

.reveal.full {
    top: 0;
    left: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    height: 100vh;
    min-height: 100vh;
    margin-left: 0;
    border: 0;
    border-radius: 0
}

@media screen and (max-width: 39.9375em) {
    .reveal {
        top: 0;
        left: 0;
        width: 100%;
        max-width: none;
        height: 100%;
        height: 100vh;
        min-height: 100vh;
        margin-left: 0;
        border: 0;
        border-radius: 0
    }
}

.reveal.without-overlay {
    position: fixed
}

.switch {
    height: 2rem;
    position: relative;
    margin-bottom: 1rem;
    outline: 0;
    font-size: 0.875rem;
    font-weight: bold;
    color: #fefefe;
    user-select: none
}

.switch-input {
    position: absolute;
    margin-bottom: 0;
    opacity: 0
}

.switch-paddle {
    position: relative;
    display: block;
    width: 4rem;
    height: 2rem;
    border-radius: 0;
    background: #dcdcdc;
    transition: all 0.25s ease-out;
    font-weight: inherit;
    color: inherit;
    cursor: pointer
}

input + .switch-paddle {
    margin: 0
}

.switch-paddle::after {
    position: absolute;
    top: 0.25rem;
    left: 0.25rem;
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    transform: translate3d(0, 0, 0);
    border-radius: 0;
    background: #fefefe;
    transition: all 0.25s ease-out;
    content: ''
}

input:checked ~ .switch-paddle {
    background: #0078b9
}

input:checked ~ .switch-paddle::after {
    left: 2.25rem
}

[data-whatinput='mouse'] input:focus ~ .switch-paddle {
    outline: 0
}

.switch-active, .switch-inactive {
    position: absolute;
    top: 50%;
    transform: translateY(-50%)
}

.switch-active {
    left: 8%;
    display: none
}

input:checked + label > .switch-active {
    display: block
}

.switch-inactive {
    right: 15%
}

input:checked + label > .switch-inactive {
    display: none
}

.switch.tiny {
    height: 1.5rem
}

.switch.tiny .switch-paddle {
    width: 3rem;
    height: 1.5rem;
    font-size: 0.625rem
}

.switch.tiny .switch-paddle::after {
    top: 0.25rem;
    left: 0.25rem;
    width: 1rem;
    height: 1rem
}

.switch.tiny input:checked ~ .switch-paddle::after {
    left: 1.75rem
}

.switch.small {
    height: 1.75rem
}

.switch.small .switch-paddle {
    width: 3.5rem;
    height: 1.75rem;
    font-size: 0.75rem
}

.switch.small .switch-paddle::after {
    top: 0.25rem;
    left: 0.25rem;
    width: 1.25rem;
    height: 1.25rem
}

.switch.small input:checked ~ .switch-paddle::after {
    left: 2rem
}

.switch.large {
    height: 2.5rem
}

.switch.large .switch-paddle {
    width: 5rem;
    height: 2.5rem;
    font-size: 1rem
}

.switch.large .switch-paddle::after {
    top: 0.25rem;
    left: 0.25rem;
    width: 2rem;
    height: 2rem
}

.switch.large input:checked ~ .switch-paddle::after {
    left: 2.75rem
}

table {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 0
}

thead, tbody, tfoot {
    border: 1px solid #f1f1f1;
    background-color: #fefefe
}

caption {
    padding: 0.5rem 0.625rem 0.625rem;
    font-weight: 500
}

thead {
    background: #f8f8f8;
    color: #0a0a0a
}

tfoot {
    background: #f1f1f1;
    color: #0a0a0a
}

thead tr, tfoot tr {
    background: transparent
}

thead th, thead td, tfoot th, tfoot td {
    padding: 0.5rem 0.625rem 0.625rem;
    font-weight: 500;
    text-align: left
}

tbody th, tbody td {
    padding: 0.5rem 0.625rem 0.625rem
}

tbody tr:nth-child(even) {
    border-bottom: 0;
    background-color: #f1f1f1
}

table.unstriped tbody {
    background-color: #fefefe
}

table.unstriped tbody tr {
    border-bottom: 0;
    border-bottom: 1px solid #f1f1f1;
    background-color: #fefefe
}

@media screen and (max-width: 64em) {
    table.stack thead {
        display: none
    }

    table.stack tfoot {
        display: none
    }

    table.stack tr, table.stack th, table.stack td {
        display: block
    }

    table.stack td {
        border-top: 0
    }
}

table.scroll {
    display: block;
    width: 100%;
    overflow-x: auto
}

table.hover thead tr:hover {
    background-color: #f3f3f3
}

table.hover tfoot tr:hover {
    background-color: #ececec
}

table.hover tbody tr:hover {
    background-color: #f9f9f9
}

table.hover:not(.unstriped) tr:nth-of-type(even):hover {
    background-color: #ececec
}

.table-scroll {
    overflow-x: auto
}

.table-scroll table {
    width: auto
}

.tabs {
    margin: 0;
    border: 1px solid #eee;
    background: #fefefe;
    list-style-type: none
}

.tabs::before, .tabs::after {
    display: table;
    content: ' '
}

.tabs::after {
    clear: both
}

.tabs.vertical > li {
    display: block;
    float: none;
    width: auto
}

.tabs.simple > li > a {
    padding: 0
}

.tabs.simple > li > a:hover {
    background: transparent
}

.tabs.primary {
    background: #0078b9
}

.tabs.primary > li > a {
    color: #fefefe
}

.tabs.primary > li > a:hover, .tabs.primary > li > a:focus {
    background: #0083c9
}

.tabs-title {
    float: left
}

.tabs-title > a {
    display: block;
    padding: 1.25rem 1.5rem;
    font-size: 0.75rem;
    line-height: 1;
    color: #0078b9
}

.tabs-title > a:hover {
    background: #fefefe;
    color: #00679f
}

.tabs-title > a:focus, .tabs-title > a[aria-selected='true'] {
    background: #eee;
    color: #0078b9
}

.tabs-content {
    border: 1px solid #eee;
    border-top: 0;
    background: #fefefe;
    color: #0a0a0a;
    transition: all 0.5s ease
}

.tabs-content.vertical {
    border: 1px solid #eee;
    border-left: 0
}

.tabs-panel {
    display: none;
    padding: 1rem
}

.tabs-panel[aria-hidden="false"] {
    display: block
}

.thumbnail {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 1rem;
    border: solid 4px #fefefe;
    border-radius: 0;
    box-shadow: 0 0 0 1px rgba(10, 10, 10, 0.2);
    line-height: 0
}

a.thumbnail {
    transition: box-shadow 200ms ease-out
}

a.thumbnail:hover, a.thumbnail:focus {
    box-shadow: 0 0 6px 1px rgba(0, 120, 185, 0.5)
}

a.thumbnail image {
    box-shadow: none
}

.title-bar {
    padding: 0.5rem;
    background: #0078b9;
    color: #fff
}

.title-bar::before, .title-bar::after {
    display: table;
    content: ' '
}

.title-bar::after {
    clear: both
}

.title-bar .menu-icon {
    margin-left: 0.25rem;
    margin-right: 0.25rem
}

.title-bar-left {
    float: left
}

.title-bar-right {
    float: right;
    text-align: right
}

.title-bar-title {
    display: inline-block;
    vertical-align: middle;
    font-weight: bold
}

.has-tip {
    position: relative;
    display: inline-block;
    border-bottom: dotted 1px #2c353a;
    font-weight: 500;
    cursor: help
}

.tooltip {
    position: absolute;
    top: calc(100% + 0.6495rem);
    z-index: 1200;
    max-width: 10rem;
    padding: 0.75rem;
    border-radius: 0;
    background-color: #0a0a0a;
    font-size: 80%;
    color: #fefefe
}

.tooltip::before {
    display: block;
    width: 0;
    height: 0;
    border: inset 0.75rem;
    content: '';
    border-top-width: 0;
    border-bottom-style: solid;
    border-color: transparent transparent #0a0a0a;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%)
}

.tooltip.top::before {
    display: block;
    width: 0;
    height: 0;
    border: inset 0.75rem;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #0a0a0a transparent transparent;
    top: 100%;
    bottom: auto
}

.tooltip.left::before {
    display: block;
    width: 0;
    height: 0;
    border: inset 0.75rem;
    content: '';
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #0a0a0a;
    top: 50%;
    bottom: auto;
    left: 100%;
    transform: translateY(-50%)
}

.tooltip.right::before {
    display: block;
    width: 0;
    height: 0;
    border: inset 0.75rem;
    content: '';
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #0a0a0a transparent transparent;
    top: 50%;
    right: 100%;
    bottom: auto;
    left: auto;
    transform: translateY(-50%)
}

.top-bar {
    padding: 0
}

.top-bar::before, .top-bar::after {
    display: table;
    content: ' '
}

.top-bar::after {
    clear: both
}

.top-bar, .top-bar ul {
    background-color: rgba(255, 255, 255, 0.6)
}

.top-bar input {
    max-width: 200px;
    margin-right: 1rem
}

.top-bar .input-group-field {
    width: 100%;
    margin-right: 0
}

.top-bar input.button, .top-bar .csc-mailform input.csc-mailform-submit, .csc-mailform .top-bar input.csc-mailform-submit, .top-bar .news-single input.article__back-link, .news-single .top-bar input.article__back-link {
    width: auto
}

.top-bar .top-bar-left, .top-bar .top-bar-right {
    width: 100%
}

@media print, screen and (min-width: 40em) {
    .top-bar .top-bar-left, .top-bar .top-bar-right {
        width: auto
    }
}

@media screen and (max-width: 64em) {
    .top-bar.stacked-for-medium .top-bar-left, .top-bar.stacked-for-medium .top-bar-right {
        width: 100%
    }
}

@media screen and (max-width: 74.9375em) {
    .top-bar.stacked-for-large .top-bar-left, .top-bar.stacked-for-large .top-bar-right {
        width: 100%
    }
}

.top-bar-title {
    display: inline-block;
    float: left;
    padding: 0.5rem 1rem 0.5rem 0
}

.top-bar-title .menu-icon {
    bottom: 2px
}

.top-bar-left {
    float: left
}

.top-bar-right {
    float: right
}

.hide {
    display: none !important
}

.invisible {
    visibility: hidden
}

@media screen and (max-width: 39.9375em) {
    .hide-for-small-only {
        display: none !important
    }
}

@media screen and (max-width: 0em), screen and (min-width: 40em) {
    .show-for-small-only {
        display: none !important
    }
}

@media print, screen and (min-width: 40em) {
    .hide-for-medium {
        display: none !important
    }
}

@media screen and (max-width: 39.9375em) {
    .show-for-medium {
        display: none !important
    }
}

@media screen and (min-width: 40em) and (max-width: 64em) {
    .hide-for-medium-only {
        display: none !important
    }
}

@media screen and (max-width: 39.9375em), screen and (min-width: 64.0625em) {
    .show-for-medium-only {
        display: none !important
    }
}

@media print, screen and (min-width: 64.0625em) {
    .hide-for-large {
        display: none !important
    }
}

@media screen and (max-width: 64em) {
    .show-for-large {
        display: none !important
    }
}

@media screen and (min-width: 64.0625em) and (max-width: 74.9375em) {
    .hide-for-large-only {
        display: none !important
    }
}

@media screen and (max-width: 64em), screen and (min-width: 75em) {
    .show-for-large-only {
        display: none !important
    }
}

.show-for-sr, .show-on-focus {
    position: absolute !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0)
}

.show-on-focus:active, .show-on-focus:focus {
    position: static !important;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto
}

.show-for-landscape, .hide-for-portrait {
    display: block !important
}

@media screen and (orientation: landscape) {
    .show-for-landscape, .hide-for-portrait {
        display: block !important
    }
}

@media screen and (orientation: portrait) {
    .show-for-landscape, .hide-for-portrait {
        display: none !important
    }
}

.hide-for-landscape, .show-for-portrait {
    display: none !important
}

@media screen and (orientation: landscape) {
    .hide-for-landscape, .show-for-portrait {
        display: none !important
    }
}

@media screen and (orientation: portrait) {
    .hide-for-landscape, .show-for-portrait {
        display: block !important
    }
}

.float-left {
    float: left !important
}

.float-right {
    float: right !important
}

.float-center {
    display: block;
    margin-right: auto;
    margin-left: auto
}

.clearfix::before, .clearfix::after {
    display: table;
    content: ' '
}

.clearfix::after {
    clear: both
}

.slide-in-down.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: translateY(-100%);
    transition-property: transform, opacity;
    backface-visibility: hidden
}

.slide-in-down.mui-enter.mui-enter-active {
    transform: translateY(0)
}

.slide-in-left.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: translateX(-100%);
    transition-property: transform, opacity;
    backface-visibility: hidden
}

.slide-in-left.mui-enter.mui-enter-active {
    transform: translateX(0)
}

.slide-in-up.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: translateY(100%);
    transition-property: transform, opacity;
    backface-visibility: hidden
}

.slide-in-up.mui-enter.mui-enter-active {
    transform: translateY(0)
}

.slide-in-right.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: translateX(100%);
    transition-property: transform, opacity;
    backface-visibility: hidden
}

.slide-in-right.mui-enter.mui-enter-active {
    transform: translateX(0)
}

.slide-out-down.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: translateY(0);
    transition-property: transform, opacity;
    backface-visibility: hidden
}

.slide-out-down.mui-leave.mui-leave-active {
    transform: translateY(100%)
}

.slide-out-right.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: translateX(0);
    transition-property: transform, opacity;
    backface-visibility: hidden
}

.slide-out-right.mui-leave.mui-leave-active {
    transform: translateX(100%)
}

.slide-out-up.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: translateY(0);
    transition-property: transform, opacity;
    backface-visibility: hidden
}

.slide-out-up.mui-leave.mui-leave-active {
    transform: translateY(-100%)
}

.slide-out-left.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: translateX(0);
    transition-property: transform, opacity;
    backface-visibility: hidden
}

.slide-out-left.mui-leave.mui-leave-active {
    transform: translateX(-100%)
}

.fade-in.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    opacity: 0;
    transition-property: opacity
}

.fade-in.mui-enter.mui-enter-active {
    opacity: 1
}

.fade-out.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    opacity: 1;
    transition-property: opacity
}

.fade-out.mui-leave.mui-leave-active {
    opacity: 0
}

.hinge-in-from-top.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotateX(-90deg);
    transform-origin: top;
    transition-property: transform, opacity;
    opacity: 0
}

.hinge-in-from-top.mui-enter.mui-enter-active {
    transform: perspective(2000px) rotate(0deg);
    opacity: 1
}

.hinge-in-from-right.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotateY(-90deg);
    transform-origin: right;
    transition-property: transform, opacity;
    opacity: 0
}

.hinge-in-from-right.mui-enter.mui-enter-active {
    transform: perspective(2000px) rotate(0deg);
    opacity: 1
}

.hinge-in-from-bottom.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotateX(90deg);
    transform-origin: bottom;
    transition-property: transform, opacity;
    opacity: 0
}

.hinge-in-from-bottom.mui-enter.mui-enter-active {
    transform: perspective(2000px) rotate(0deg);
    opacity: 1
}

.hinge-in-from-left.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotateY(90deg);
    transform-origin: left;
    transition-property: transform, opacity;
    opacity: 0
}

.hinge-in-from-left.mui-enter.mui-enter-active {
    transform: perspective(2000px) rotate(0deg);
    opacity: 1
}

.hinge-in-from-middle-x.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotateX(-90deg);
    transform-origin: center;
    transition-property: transform, opacity;
    opacity: 0
}

.hinge-in-from-middle-x.mui-enter.mui-enter-active {
    transform: perspective(2000px) rotate(0deg);
    opacity: 1
}

.hinge-in-from-middle-y.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotateY(-90deg);
    transform-origin: center;
    transition-property: transform, opacity;
    opacity: 0
}

.hinge-in-from-middle-y.mui-enter.mui-enter-active {
    transform: perspective(2000px) rotate(0deg);
    opacity: 1
}

.hinge-out-from-top.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotate(0deg);
    transform-origin: top;
    transition-property: transform, opacity;
    opacity: 1
}

.hinge-out-from-top.mui-leave.mui-leave-active {
    transform: perspective(2000px) rotateX(-90deg);
    opacity: 0
}

.hinge-out-from-right.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotate(0deg);
    transform-origin: right;
    transition-property: transform, opacity;
    opacity: 1
}

.hinge-out-from-right.mui-leave.mui-leave-active {
    transform: perspective(2000px) rotateY(-90deg);
    opacity: 0
}

.hinge-out-from-bottom.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotate(0deg);
    transform-origin: bottom;
    transition-property: transform, opacity;
    opacity: 1
}

.hinge-out-from-bottom.mui-leave.mui-leave-active {
    transform: perspective(2000px) rotateX(90deg);
    opacity: 0
}

.hinge-out-from-left.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotate(0deg);
    transform-origin: left;
    transition-property: transform, opacity;
    opacity: 1
}

.hinge-out-from-left.mui-leave.mui-leave-active {
    transform: perspective(2000px) rotateY(90deg);
    opacity: 0
}

.hinge-out-from-middle-x.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotate(0deg);
    transform-origin: center;
    transition-property: transform, opacity;
    opacity: 1
}

.hinge-out-from-middle-x.mui-leave.mui-leave-active {
    transform: perspective(2000px) rotateX(-90deg);
    opacity: 0
}

.hinge-out-from-middle-y.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotate(0deg);
    transform-origin: center;
    transition-property: transform, opacity;
    opacity: 1
}

.hinge-out-from-middle-y.mui-leave.mui-leave-active {
    transform: perspective(2000px) rotateY(-90deg);
    opacity: 0
}

.scale-in-up.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: scale(0.5);
    transition-property: transform, opacity;
    opacity: 0
}

.scale-in-up.mui-enter.mui-enter-active {
    transform: scale(1);
    opacity: 1
}

.scale-in-down.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: scale(1.5);
    transition-property: transform, opacity;
    opacity: 0
}

.scale-in-down.mui-enter.mui-enter-active {
    transform: scale(1);
    opacity: 1
}

.scale-out-up.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: scale(1);
    transition-property: transform, opacity;
    opacity: 1
}

.scale-out-up.mui-leave.mui-leave-active {
    transform: scale(1.5);
    opacity: 0
}

.scale-out-down.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: scale(1);
    transition-property: transform, opacity;
    opacity: 1
}

.scale-out-down.mui-leave.mui-leave-active {
    transform: scale(0.5);
    opacity: 0
}

.spin-in.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: rotate(-0.75turn);
    transition-property: transform, opacity;
    opacity: 0
}

.spin-in.mui-enter.mui-enter-active {
    transform: rotate(0);
    opacity: 1
}

.spin-out.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: rotate(0);
    transition-property: transform, opacity;
    opacity: 1
}

.spin-out.mui-leave.mui-leave-active {
    transform: rotate(0.75turn);
    opacity: 0
}

.spin-in-ccw.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: rotate(0.75turn);
    transition-property: transform, opacity;
    opacity: 0
}

.spin-in-ccw.mui-enter.mui-enter-active {
    transform: rotate(0);
    opacity: 1
}

.spin-out-ccw.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: rotate(0);
    transition-property: transform, opacity;
    opacity: 1
}

.spin-out-ccw.mui-leave.mui-leave-active {
    transform: rotate(-0.75turn);
    opacity: 0
}

.slow {
    transition-duration: 750ms !important
}

.fast {
    transition-duration: 250ms !important
}

.linear {
    transition-timing-function: linear !important
}

.ease {
    transition-timing-function: ease !important
}

.ease-in {
    transition-timing-function: ease-in !important
}

.ease-out {
    transition-timing-function: ease-out !important
}

.ease-in-out {
    transition-timing-function: ease-in-out !important
}

.bounce-in {
    transition-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important
}

.bounce-out {
    transition-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important
}

.bounce-in-out {
    transition-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important
}

.short-delay {
    transition-delay: 300ms !important
}

.long-delay {
    transition-delay: 700ms !important
}

.shake {
    animation-name: shake-7
}

@keyframes shake-7 {
    0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90% {
        transform: translateX(7%)
    }
    5%, 15%, 25%, 35%, 45%, 55%, 65%, 75%, 85%, 95% {
        transform: translateX(-7%)
    }
}

.spin-cw {
    animation-name: spin-cw-1turn
}

@keyframes spin-cw-1turn {
    0% {
        transform: rotate(-1turn)
    }
    100% {
        transform: rotate(0)
    }
}

.spin-ccw {
    animation-name: spin-cw-1turn
}

@keyframes spin-cw-1turn {
    0% {
        transform: rotate(0)
    }
    100% {
        transform: rotate(1turn)
    }
}

.wiggle {
    animation-name: wiggle-7deg
}

@keyframes wiggle-7deg {
    40%, 50%, 60% {
        transform: rotate(7deg)
    }
    35%, 45%, 55%, 65% {
        transform: rotate(-7deg)
    }
    0%, 30%, 70%, 100% {
        transform: rotate(0)
    }
}

.shake, .spin-cw, .spin-ccw, .wiggle {
    animation-duration: 500ms
}

.infinite {
    animation-iteration-count: infinite
}

.slow {
    animation-duration: 750ms !important
}

.fast {
    animation-duration: 250ms !important
}

.linear {
    animation-timing-function: linear !important
}

.ease {
    animation-timing-function: ease !important
}

.ease-in {
    animation-timing-function: ease-in !important
}

.ease-out {
    animation-timing-function: ease-out !important
}

.ease-in-out {
    animation-timing-function: ease-in-out !important
}

.bounce-in {
    animation-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important
}

.bounce-out {
    animation-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important
}

.bounce-in-out {
    animation-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important
}

.short-delay {
    animation-delay: 300ms !important
}

.long-delay {
    animation-delay: 700ms !important
}

/*@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url("../../fonts/Roboto/roboto-latin-regular.eot");
    src: local("Roboto"), local("Roboto-Regular"), url("../../fonts/Roboto/roboto-latin-regular.eot?#iefix") format("embedded-opentype"), url("../../fonts/Roboto/roboto-latin-regular.woff2") format("woff2"), url("../../fonts/Roboto/roboto-latin-regular.woff") format("woff"), url("../../fonts/Roboto/roboto-latin-regular.ttf") format("truetype"), url("../../fonts/Roboto/roboto-latin-regular.svg#Roboto") format("svg")
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    src: url("../../fonts/Roboto/roboto-latin-500.eot");
    src: local("Roboto Medium"), local("Roboto-Medium"), url("../../fonts/Roboto/roboto-latin-500.eot?#iefix") format("embedded-opentype"), url("../../fonts/Roboto/roboto-latin-500.woff2") format("woff2"), url("../../fonts/Roboto/roboto-latin-500.woff") format("woff"), url("../../fonts/Roboto/roboto-latin-500.ttf") format("truetype"), url("../../fonts/Roboto/roboto-latin-500.svg#Roboto") format("svg")
}*/

/*@font-face {
    font-family: "TheMix";
    src: url("../../fonts/TheMix/300_Light/TheMix_300.eot");
    src: url("../../fonts/TheMix/300_Light/TheMix_300.eot?#iefix") format("embedded-opentype"), url("../../fonts/TheMix/300_Light/TheMix_300.woff") format("woff"), url("../../fonts/TheMix/300_Light/TheMix_300.svg#TheMix_300_") format("svg");
    font-weight: normal;
    font-style: normal
}

@font-face {
    font-family: "TheMix";
    src: url("../../fonts/TheMix/400_SemiLight/TheMix_400.eot");
    src: url("../../fonts/TheMix/400_SemiLight/TheMix_400.eot?#iefix") format("embedded-opentype"), url("../../fonts/TheMix/400_SemiLight/TheMix_400.woff") format("woff"), url("../../fonts/TheMix/400_SemiLight/TheMix_400.svg#TheMix_400_") format("svg");
    font-weight: normal;
    font-style: normal
}*/

.column--no-padding {
    padding: 0 !important
}

.row--no-margin {
    margin-left: 0 !important;
    margin-right: 0 !important
}

span.small-text {
    font-size: 12px;
    line-height: 18px
}

.page-header__navigation a {
    color: #0a0a0a;
    transition: color 500ms
}

.page-header__navigation a:hover {
    color: #0078b9
}

.page-header__navigation .top-bar div > ul {
    background-color: transparent
}

.page-header__navigation .top-bar ul li {
    padding-right: 0.625rem;
    padding-left: 0.625rem
}

.page-header__navigation .top-bar ul li.active > a {
    background-color: white;
    color: #0a0a0a
}

.page-header__navigation .title-bar {
    position: absolute;
    z-index: 920;
    right: 40px;
    top: 100px
}

.page-header__navigation .title-bar .menu-icon:after {
    height: 3px;
    top: -2px
}

.page-header__navigation .title-bar .title-bar-title {
    display: none
}

@media screen and (min-width: 1025px) {
    .page-header__navigation ul.menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: center;
        justify-content: center
    }

    .page-header__navigation ul.menu li.active > a {
        position: relative;
        z-index: 910
    }

    .page-header__navigation .is-drilldown-submenu-parent > a::after {
        display: none
    }
}

@media screen and (max-width: 1025px) {
    .page-header__navigation .top-bar {
        position: absolute;
        width: 100%;
        z-index: 900;
        background-color: #eee;
        border-bottom: 2px solid #0078b9
    }

    .page-header__navigation .top-bar .menu li {
        padding: 0;
        border-bottom: 1px solid #dcdcdc
    }

    .page-header__navigation .top-bar .menu li a {
        padding: 1.25rem
    }

    .page-header__navigation .top-bar .menu > .is-drilldown-submenu-parent > a:after {
        border-top: none !important;
        border-right: none !important;
        border-bottom: none !important;
        border-left: none !important;
        content: "";
        position: absolute;
        top: 17px;
        right: 7px;
        height: 1.875rem;
        width: 1.875rem;
        background: url(link-icons-base.svg) no-repeat;
        background-size: 20px auto;
        background-position: 0 -27px
    }

    .page-header__navigation .top-bar .menu > .is-drilldown-submenu-parent > a:before {
        content: "";
        position: absolute;
        top: 0;
        right: 62px;
        height: 100%;
        border-right: 1px solid #dcdcdc
    }

    .page-header__navigation .top-bar .menu > .is-drilldown-submenu-parent .submenu {
        background-color: #eee
    }

    .page-header__navigation .top-bar .menu > .is-drilldown-submenu-parent .js-drilldown-back a {
        text-align: center
    }

    .page-header__navigation .top-bar .menu > .is-drilldown-submenu-parent .js-drilldown-back a:before {
        border-top: none !important;
        border-right: none !important;
        border-bottom: none !important;
        border-left: none !important;
        content: "";
        position: absolute;
        top: 17px;
        left: 7px;
        height: 1.875rem;
        width: 1.875rem;
        background: url(link-icons-base.svg) no-repeat;
        background-size: 20px auto;
        background-position: 0 -27px;
        transform: rotate(180deg)
    }

    .page-header__navigation .top-bar .menu > .is-drilldown-submenu-parent .mainmenu-level2 > .is-submenu-parent-item {
        display: none
    }

    .page-header__navigation .top-bar > .column, .page-header__navigation .top-bar > .columns {
        padding: 1.25rem 1.25rem 0
    }

    .page-header__navigation .top-bar .tx-kesearch-pi1 .kesearchbox {
        position: relative
    }

    .page-header__navigation .top-bar .tx-kesearch-pi1 #ke_search_sword-mobile {
        margin: 0;
        background: white;
        max-width: inherit;
        width: 100%;
        border: 1px solid #dcdcdc
    }
}

.page-content .submenu:not(.is-accordion-submenu) {
    margin: 0 0 0 1.25rem;
    list-style: none
}

.page-content .submenu:not(.is-accordion-submenu) li {
    margin-bottom: 0
}

.page-content .submenu:not(.is-accordion-submenu) li:before {
    display: none
}

.page-content .submenu:not(.is-accordion-submenu) li a {
    padding: 0.3125rem 0.4375rem;
    position: relative;
    color: #0a0a0a;
    font-weight: normal;
    display: block;
    line-height: 1.25rem
}

.page-content .submenu:not(.is-accordion-submenu) li a:hover {
    text-decoration: underline
}

.page-content .submenu:not(.is-accordion-submenu) li a:before {
    content: "";
    position: absolute;
    top: 5px;
    left: -14px;
    height: 1.0625rem;
    width: 1.0625rem;
    background: url(link-icons-black.svg) no-repeat;
    background-size: 14px auto;
    background-position: 0 -21px
}

.page-content .submenu:not(.is-accordion-submenu) li li a:before {
    top: 5px
}

.page-content .submenu:not(.is-accordion-submenu) li.submenu__item--active > a {
    font-weight: 500
}

.page-content .submenu:not(.is-accordion-submenu) li.submenu__item--active > a:before {
    background-image: url(link-icons-base.svg)
}

.page-content .submenu:not(.is-accordion-submenu) li.submenu__item--active.submenu__item--with-sub > a:before {
    top: 6px;
    left: -18px;
    background-position: 0 -100px;
    background-size: 15px auto
}

.page-content .submenu:not(.is-accordion-submenu) li.submenu__item--active.submenu__item--with-sub li.submenu__item--with-sub.submenu__item--active > a:before {
    top: 5px
}

.page-content .submenu:not(.is-accordion-submenu) li ul {
    display: none;
    margin-left: 1.4375rem
}

.page-content .submenu:not(.is-accordion-submenu) li.submenu__item--active > ul {
    display: block
}

.page-content .submenu:not(.is-accordion-submenu) .submenu-level3 li a:before {
    display: none
}

.page-content .submenu:not(.is-accordion-submenu) .submenu-level3 li.submenu__item--active a {
    color: #0078b9;
    font-weight: normal
}

.breadcrumbs li {
    margin: 0
}

.breadcrumbs li:after {
    content: " > ";
    padding: 0 0.3125rem
}

.breadcrumbs li.infoText:after, .breadcrumbs li.current:after {
    content: none
}

.breadcrumbs li a {
    color: #0a0a0a;
    font-weight: normal
}

.breadcrumbs li.infoText {
    margin-right: 0.3125rem
}

.breadcrumbs li.current {
    font-weight: 500
}

.page-header {
    position: relative;
    z-index: 900
}

.page-header .page-header__topbar > .row, .page-header .page-header__content > .row {
    padding-right: 1.25rem;
    padding-left: 1.25rem
}

.page-header .page-header__topbar {
    padding: 0.3125rem 0;
    background-color: #2c353a;
    color: white
}

.page-header .page-header__topbar a {
    color: white
}

.page-header .page-header__content {
    position: relative;
    z-index: 910;
    padding: 1.25rem 0;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2)
}

.page-header .page-header__content > .row > .column.large-7.medium-7, .page-header .page-header__content > .row > .large-7.medium-7.columns {
    margin-top: 20px
}

.page-header .page-header__navigation {
    background: rgba(255, 255, 255, 0.3)
}

@media screen and (max-width: 360px) {
    .page-header__content .column.large-5.medium-5, .page-header__content .large-5.medium-5.columns {
        min-height: 5.3125rem;
        padding-right: 4.375rem
    }

    .page-header__navigation .title-bar {
        right: 25px
    }
}

body, html {
    background-color: #0078b9
}

.page-body .page-slider {
    position: relative;
    margin-top: -38px;
    padding: 0;
    background: #2c353a;
    border-radius: 0 0 0.625rem 0.625rem
}

.page-body .page-content {
    padding: 1.25rem 1.25rem 3rem;
    margin: 1.5625rem 0 3rem;
    background: white;
    border-radius: 0.625rem
}

.page-body .t3ddy {
    margin-bottom: 3rem
}

@media screen and (max-width: 1025px) {
    .page-body .page-slider {
        margin-top: 0
    }
}

.page-footer .row > .column, .page-footer .row > .columns {
    color: white
}

.page-footer .row > .column a, .page-footer .row > .columns a {
    color: white
}

.page-footer .page-footer__silhouette {
    display: block;
    margin: 3.75rem 0 1.5625rem
}

.page-footer .page-footer__button-bar {
    padding: 0.9375rem 0;
    background: white;
    text-align: center
}

.page-footer .page-footer__button-bar .column, .page-footer .page-footer__button-bar .columns {
    padding: 0
}

h1 {
    margin-bottom: 1.5rem;
    line-height: 3.5rem;
    font-family: "TheMix", Arial, sans-serif;
    font-weight: 400
}

h2 {
    margin-top: 2.25rem;
    margin-bottom: 1.5rem;
    line-height: 2.25rem;
    font-family: "TheMix", Arial, sans-serif;
    font-weight: 300
}

h3, .article .article-body .article-body__headline, .t3ddy-accordion .t3ddy-accordion-header {
    margin-top: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.75rem;
    font-family: "Roboto", Arial, sans-serif;
    font-weight: 500
}

h4 {
    margin-top: 1.25rem
}

h4, h5, h6 {
    margin-bottom: 0.75rem;
    line-height: 1.5rem;
    font-family: "Roboto", Arial, sans-serif;
    font-weight: 500
}

@media screen and (max-width: 640px) {
    h1 {
        margin-bottom: 2rem;
        line-height: 2.5rem
    }

    h2 {
        margin-bottom: 0.75rem;
        line-height: 2rem
    }

    h3, .article .article-body .article-body__headline, .t3ddy-accordion .t3ddy-accordion-header {
        margin-bottom: 0.5rem
    }

    h4, h5, h6 {
        margin-bottom: 0.5rem
    }
}

small {
    font-size: 0.875rem
}

.page-content ul li {
    margin-bottom: 0.3125rem
}

.page-content ol {
    margin-left: 1.25rem
}

.page-content ol li {
    padding-left: 0.1875rem
}

.page-content ul:not(.row):not(.csc-uploads):not(.csc-menu):not(.submenu):not(.breadcrumbs):not(.orbit-container):not(.pagination) {
    margin-left: 1.5625rem;
    list-style: none
}

.page-content ul:not(.row):not(.csc-uploads):not(.csc-menu):not(.submenu):not(.breadcrumbs):not(.orbit-container):not(.pagination) li {
    position: relative;
    margin-left: 0.625rem
}

.page-content ul:not(.row):not(.csc-uploads):not(.csc-menu):not(.submenu):not(.breadcrumbs):not(.orbit-container):not(.pagination) li:before {
    border: 3px solid #0078b9;
    border-radius: 20px;
    content: "";
    left: -13px;
    position: absolute;
    top: 9px
}

table {
    margin-bottom: 0
}

.contenttable {
    border-collapse: collapse;
    display: inline-block;
    max-width: 100%;
    overflow: auto;
    margin-bottom: 0.9375rem
}

.contenttable p {
    margin-bottom: 0
}

.contenttable caption {
    text-align: left;
    padding-right: 0;
    padding-left: 0
}

.contenttable td, .contenttable th {
    padding: 0.9375rem 1.5625rem;
    text-align: left
}

.contenttable tr:nth-child(odd), .contenttable tr.tr-odd {
    background-color: #eee
}

.contenttable tr:nth-child(even), .contenttable tr.tr-even {
    background-color: #dcdcdc
}

.contenttable thead, .contenttable tbody, .contenttable tfoot {
    border: none
}

.contenttable thead th, .contenttable thead td {
    background-color: #0078b9;
    color: white;
    font-weight: bold
}

.contenttable thead th {
    text-align: center
}

.contenttable tfoot {
    border-top: 1px solid #0078b9
}

.contenttable tfoot tr.tr-odd, .contenttable tfoot tr.tr-even {
    background-color: white
}

a {
    font-weight: 500
}

a.internal-link, .article .article-body .article-body__headline a, .article a.article-body__more, a.internal-link-new-window {
    position: relative;
    margin-right: 2.1875rem
}

a.internal-link:after, .article .article-body .article-body__headline a:after, .article a.article-body__more:after, a.internal-link-new-window:after {
    content: "";
    position: absolute;
    top: 0;
    right: -30px;
    height: 1.125rem;
    width: 1.0625rem;
    background: url(link-icons-base.svg) no-repeat;
    background-size: 16px auto;
    background-position: 0 -25px
}

a.internal-link:hover:after, .article .article-body .article-body__headline a:hover:after, .article a.article-body__more:hover:after, a.internal-link-new-window:hover:after {
    background-image: url(link-icons-hover.svg)
}

a.external-link, a.external-link-new-window, a.download, a.mail, .tx-ttaddress-pi1 .vcard .vcard__email a {
    position: relative;
    margin-left: 1.75rem
}

a.external-link:before, a.external-link-new-window:before, a.download:before, a.mail:before, .tx-ttaddress-pi1 .vcard .vcard__email a:before {
    content: "";
    position: absolute;
    top: 0;
    left: -28px;
    height: 1.125rem;
    width: 1.125rem;
    background: url(link-icons-base.svg) no-repeat 0 0;
    background-size: 16px auto
}

a.external-link:before, a.external-link-new-window:before {
    height: 1.1875rem;
    background-position: 0 -52px
}

a.external-link:hover:before, a.external-link-new-window:hover:before {
    background-image: url(link-icons-hover.svg)
}

a.download:before {
    height: 1.3125rem;
    background-size: 17px auto;
    background-position: 0 -85px
}

a.download:hover:before {
    background-image: url(link-icons-hover.svg)
}

a.mail:before, .tx-ttaddress-pi1 .vcard .vcard__email a:before {
    background-size: 15px auto;
    background-position: 0 2px
}

a.mail:hover:before, .tx-ttaddress-pi1 .vcard .vcard__email a:hover:before {
    background-image: url(link-icons-hover.svg)
}

.csc-menu {
    margin-left: 0.9375rem
}

.csc-menu li {
    margin-bottom: 0.3125rem
}

.csc-menu a {
    position: relative
}

.csc-menu a:before {
    content: "";
    position: absolute;
    top: 0;
    left: -18px;
    height: 1.0625rem;
    width: 1.0625rem;
    background: url(link-icons-base.svg) no-repeat;
    background-size: 14px auto;
    background-position: 0 -21px
}

.csc-menu a:hover:before {
    background-image: url(link-icons-hover.svg)
}

ul.csc-uploads {
    margin-left: 0
}

ul.csc-uploads li {
    position: relative;
    padding-left: 1.75rem
}

ul.csc-uploads li:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 1.3125rem;
    width: 1.125rem;
    background: url(link-icons-base.svg) no-repeat;
    background-size: 17px auto;
    background-position: 0 -85px;
    border: none;
    border-radius: 0
}

ul.csc-uploads li:hover:before {
    background-image: url(link-icons-hover.svg)
}

ul.csc-uploads li .csc-uploads-fileName, ul.csc-uploads li .csc-uploads-description {
    display: inline
}

ul.csc-uploads li .csc-uploads-fileName {
    padding-right: 0.3125rem;
    text-decoration: none !important
}

ul.csc-uploads li .csc-uploads-fileName a {
    font-weight: 500;
    text-decoration: none
}

ul.csc-uploads .csc-uploads__extension {
    text-transform: uppercase
}

ul.csc-uploads span {
    display: inline-block
}

.csc-menu {
    list-style: none
}

.page-footer a.internal-link:after, .page-footer .article .article-body .article-body__headline a:after, .article .article-body .article-body__headline .page-footer a:after, .page-footer .article a.article-body__more:after, .article .page-footer a.article-body__more:after, .page-footer a.internal-link-new-window:after {
    background-image: url(link-icons-white.svg);
    opacity: 0.5
}

.page-footer a.internal-link:hover:after, .page-footer .article .article-body .article-body__headline a:hover:after, .article .article-body .article-body__headline .page-footer a:hover:after, .page-footer .article a.article-body__more:hover:after, .article .page-footer a.article-body__more:hover:after, .page-footer a.internal-link-new-window:hover:after {
    background-image: url(link-icons-white.svg);
    opacity: 0.7
}

.page-footer a.external-link:before, .page-footer a.external-link-new-window:before {
    background-image: url(link-icons-white.svg);
    opacity: 0.5
}

.page-footer a.external-link:hover:before, .page-footer a.external-link-new-window:hover:before {
    background-image: url(link-icons-white.svg);
    opacity: 0.7
}

.page-footer a.download:before {
    background-image: url(link-icons-white.svg);
    opacity: 0.5
}

.page-footer a.download:hover:before {
    background-image: url(link-icons-white.svg);
    opacity: 0.7
}

.page-footer a.mail:before, .page-footer .tx-ttaddress-pi1 .vcard .vcard__email a:before, .tx-ttaddress-pi1 .vcard .vcard__email .page-footer a:before {
    background-image: url(link-icons-white.svg);
    opacity: 0.5
}

.page-footer a.mail:hover:before, .page-footer .tx-ttaddress-pi1 .vcard .vcard__email a:hover:before, .tx-ttaddress-pi1 .vcard .vcard__email .page-footer a:hover:before {
    background-image: url(link-icons-white.svg);
    opacity: 0.7
}

.button--kundenportal, .button--notdienst {
    position: relative;
    padding-left: 3.125rem;
    padding-right: 3.125rem;
    color: white;
    text-align: left;
    width: 100%;
    background: url(kundenportal.svg) no-repeat 15px center;
    background-size: 25px auto;
    border-radius: 5px
}

.button--kundenportal a, .button--notdienst a {
    color: white
}

.button--kundenportal a:hover, .button--notdienst a:hover {
    color: white
}

.button--kundenportal:after, .button--notdienst:after {
    position: absolute;
    top: 10px;
    right: 10px;
    content: "";
    height: 1.375rem;
    width: 1.0625rem;
    background: url(link-icons-white.svg) no-repeat;
    background-size: 19px auto;
    background-position: 0 -33px
}

.button--notdienst {
    width: auto;
    background-image: none;
    padding-left: 0.9375rem;
    margin-top: 0.3125rem;
    margin-bottom: 0.3125rem;
    float: right;
    text-transform: uppercase
}

.button--notdienst:hover {
    background-color: #fc001f !important
}

@media screen and (max-width: 1025px) {
    .button--notdienst {
        margin-right: 1.25rem
    }
}

@media screen and (max-width: 360px) {
    .button--notdienst {
        margin-right: 0.3125rem
    }
}

.csc-textpic ul .csc-textpic-image, .imageElement ul .csc-textpic-image {
    margin-bottom: 0
}

.csc-textpic .copyright, .csc-textpic .csc-textpic-caption, .csc-textpic caption, .imageElement .copyright, .imageElement .csc-textpic-caption, .imageElement caption {
    padding: 0.625rem 0.3125rem 0;
    margin-bottom: -1.25rem;
    font-weight: 400;
    font-size: 0.875rem;
    color: rgba(44, 53, 58, 0.75)
}

.csc-textpic .copyright, .imageElement .copyright {
    margin-bottom: -0.3125rem
}

.csc-textpic table thead, .csc-textpic table tbody, .csc-textpic table tfoot, .imageElement table thead, .imageElement table tbody, .imageElement table tfoot {
    border: none
}

.imageElement ul {
    list-style: none !important
}

.imageElement ul li {
    margin: 0 0 0.625rem
}

iframe {
    width: 100%
}

.imageElement .row .csc-textpic-caption, .imageElement .row caption, .csc-textpic-imagerow .csc-textpic-caption, .csc-textpic-imagerow caption {
    margin-bottom: -5px
}

div.csc-textpic-intext-left-nowrap .csc-textpic-imagewrap, div.csc-textpic-intext-left .csc-textpic-imagewrap {
    margin-right: 1.25rem
}

div.csc-textpic-intext-right-nowrap .csc-textpic-imagewrap, div.csc-textpic-intext-right .csc-textpic-imagewrap {
    margin-left: 1.25rem
}

div.csc-textpic .csc-textpic-imagewrap:not(.imageElement) .csc-textpic-image {
    margin-bottom: 1.25rem
}

@media screen and (max-width: 640px) {
    .csc-textpic .csc-textpic-imagewrap {
        float: none !important;
        margin-left: 0 !important
    }
}

input:not([type="submit"]), select, textarea {
    color: #0a0a0a;
    background: #eee;
    border: none;
    border-bottom: 2px solid #0078b9;
    box-shadow: none
}

input:not([type="submit"]):focus, select:focus, textarea:focus {
    background: rgba(238, 238, 238, 0.5);
    border: none;
    border-bottom: 2px solid #0078b9;
    box-shadow: none
}

input:not([type="submit"]):disabled, select:disabled, textarea:disabled {
    opacity: .4
}

input[type="checkbox"] {
    margin-left: 0.9375rem
}

input.datepicker {
    background-image: url(calendar.svg);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 25px auto;
    padding-right: 2rem
}

.button, .Tx-Formhandler .button, .csc-mailform .csc-mailform-submit, .news-single .article__back-link, .orbit--with-icon .orbit-slide--content a {
    position: relative;
    padding-right: 2.8125rem;
    border-radius: 5px
}

.button.right, .csc-mailform .right.csc-mailform-submit, .news-single .right.article__back-link, .orbit--with-icon .orbit-slide--content a.right {
    float: right
}

.button.right::before, .csc-mailform .right.csc-mailform-submit::before, .news-single .right.article__back-link::before, .orbit--with-icon .orbit-slide--content a.right::before, .button.right::after, .csc-mailform .right.csc-mailform-submit::after, .news-single .right.article__back-link::after, .orbit--with-icon .orbit-slide--content a.right::after {
    display: table;
    content: ' '
}

.button.right::after, .csc-mailform .right.csc-mailform-submit::after, .news-single .right.article__back-link::after, .orbit--with-icon .orbit-slide--content a.right::after {
    clear: both
}

.button:after, .Tx-Formhandler .button:after, .csc-mailform .csc-mailform-submit:after, .news-single .article__back-link:after, .orbit--with-icon .orbit-slide--content a:after {
    position: absolute;
    top: 10px;
    right: 10px;
    content: "";
    height: 1.375rem;
    width: 1.0625rem;
    background: url(link-icons-white.svg) no-repeat;
    background-size: 19px auto;
    background-position: 0 -33px
}

.button:hover, .csc-mailform .csc-mailform-submit:hover, .news-single .article__back-link:hover, .orbit--with-icon .orbit-slide--content a:hover {
    background-color: #0099ec
}

.button.hollow:after, .csc-mailform .hollow.csc-mailform-submit:after, .news-single .hollow.article__back-link:after, .orbit--with-icon .orbit-slide--content a.hollow:after {
    background-image: url(link-icons-base.svg)
}

.button.hollow:hover:after, .csc-mailform .hollow.csc-mailform-submit:hover:after, .news-single .hollow.article__back-link:hover:after, .orbit--with-icon .orbit-slide--content a.hollow:hover:after {
    background-image: url(link-icons-hover.svg)
}

p .button, p .Tx-Formhandler .button, .Tx-Formhandler p .button, p .csc-mailform .csc-mailform-submit, .csc-mailform p .csc-mailform-submit, p .news-single .article__back-link, .news-single p .article__back-link, p .orbit--with-icon .orbit-slide--content a, .orbit--with-icon .orbit-slide--content p a {
    display: table;
    margin-top: 0.3125rem;
    margin-bottom: 0.3125rem;
    margin-right: 0.625rem;
    padding: 0.75rem 2.8125rem 0.75rem 0.875rem;
    background-image: url(arrow-icon-white.svg);
    background-repeat: no-repeat;
    background-size: 25px auto;
    background-position: right 7px
}

p .button:after, p .Tx-Formhandler .button:after, .Tx-Formhandler p .button:after, p .csc-mailform .csc-mailform-submit:after, .csc-mailform p .csc-mailform-submit:after, p .news-single .article__back-link:after, .news-single p .article__back-link:after, p .orbit--with-icon .orbit-slide--content a:after, .orbit--with-icon .orbit-slide--content p a:after {
    display: none
}

.Tx-Formhandler .button, .Tx-Formhandler .csc-mailform .csc-mailform-submit, .csc-mailform .Tx-Formhandler .csc-mailform-submit, .Tx-Formhandler .news-single .article__back-link, .news-single .Tx-Formhandler .article__back-link, .Tx-Formhandler .orbit--with-icon .orbit-slide--content a, .orbit--with-icon .orbit-slide--content .Tx-Formhandler a, .csc-mailform .csc-mailform-submit {
    width: auto;
    font-size: 1rem;
    padding: 0.75rem 2.8125rem 0.75rem 0.875rem;
    border-radius: 5px;
    background-image: url(arrow-icon-white.svg);
    background-repeat: no-repeat;
    background-size: 25px auto;
    background-position: right 8px
}

.Tx-Formhandler .button:after, .Tx-Formhandler .csc-mailform .csc-mailform-submit:after, .csc-mailform .Tx-Formhandler .csc-mailform-submit:after, .Tx-Formhandler .news-single .article__back-link:after, .news-single .Tx-Formhandler .article__back-link:after, .Tx-Formhandler .orbit--with-icon .orbit-slide--content a:after, .orbit--with-icon .orbit-slide--content .Tx-Formhandler a:after, .csc-mailform .csc-mailform-submit:after {
    display: none
}

.csc-mailform input[type="radio"] {
    float: left;
    clear: left;
    height: 30px;
    margin-bottom: 5px
}

.csc-mailform fieldset.csc-mailform-radio label {
    float: left;
    clear: right;
    width: 90%;
    margin: 0 10px
}

.csc-mailform .csc-mailform-field::before, .csc-mailform .csc-mailform-field::after {
    display: table;
    content: ' '
}

.csc-mailform .csc-mailform-field::after {
    clear: both
}

.csc-mailform input[type="checkbox"] {
    margin-left: 0
}

.Tx-Formhandler h3, .Tx-Formhandler .article .article-body .article-body__headline, .article .article-body .Tx-Formhandler .article-body__headline, .Tx-Formhandler .t3ddy-accordion .t3ddy-accordion-header, .t3ddy-accordion .Tx-Formhandler .t3ddy-accordion-header {
    margin-top: 3rem
}

.Tx-Formhandler label.error {
    color: #c90019
}

.Tx-Formhandler input.error {
    border: 1px solid rgba(201, 0, 25, 0.25)
}

.Tx-Formhandler small.error {
    display: block;
    margin-top: -16px;
    margin-bottom: 16px;
    padding: 8px 10px;
    color: white;
    background: #c90019
}

.Tx-Formhandler .radio-list::before, .Tx-Formhandler .radio-list::after {
    display: table;
    content: ' '
}

.Tx-Formhandler .radio-list::after {
    clear: both
}

.Tx-Formhandler .radio-list .error {
    margin-top: 0
}

.Tx-Formhandler .radio-list input {
    float: left;
    clear: left;
    height: 30px;
    margin-bottom: 5px
}

.Tx-Formhandler .radio-list .radio__label {
    float: left;
    clear: right;
    width: 90%;
    margin: 0 10px
}

.scrollToTop {
    display: none;
    position: fixed;
    bottom: 0.5rem;
    right: 1.875rem;
    margin-bottom: 0.9375rem;
    background-color: rgba(255, 255, 255, 0.8);
    height: 2.8125rem;
    width: 2.8125rem;
    border-radius: 5px;
    border: 1px solid rgba(0, 120, 185, 0.5);
    transition: background-color 1s;
    background-image: url(link-icons-base.svg);
    background-repeat: no-repeat;
    background-size: 23px auto;
    background-position: 13px -302px
}

.scrollToTop:hover {
    background-color: white
}

.scrollToTop span {
    display: none
}

.page-header__navigation .tx-kesearch-pi1, .page-header__content .kesearchbox {
    position: relative
}

.page-header__navigation .tx-kesearch-pi1 > .column, .page-header__navigation .tx-kesearch-pi1 > .columns, .page-header__content .kesearchbox > .column, .page-header__content .kesearchbox > .columns {
    padding: 0
}

.page-header__navigation .tx-kesearch-pi1 #ke_search_sword-mobile, .page-header__navigation .tx-kesearch-pi1 #ke_search_sword, .page-header__content .kesearchbox #ke_search_sword-mobile, .page-header__content .kesearchbox #ke_search_sword {
    padding-right: 2.8125rem;
    margin-bottom: 0;
    color: rgba(44, 53, 58, 0.5);
    background-color: #eee;
    border: none;
    border-radius: 0.1875rem
}

.page-header__navigation .tx-kesearch-pi1 #kesearch_submit-mobile, .page-header__navigation .tx-kesearch-pi1 #kesearch_submit, .page-header__content .kesearchbox #kesearch_submit-mobile, .page-header__content .kesearchbox #kesearch_submit {
    padding: 0;
    margin: 0;
    height: 1.75rem;
    width: 1.75rem;
    position: absolute;
    top: 5px;
    right: 10px;
    background: url(lupe.svg) no-repeat;
    background-size: 100% auto;
    text-indent: -999px;
    overflow: hidden
}

.page-header__navigation .tx-kesearch-pi1 #kesearch_submit-mobile:after, .page-header__navigation .tx-kesearch-pi1 #kesearch_submit:after, .page-header__content .kesearchbox #kesearch_submit-mobile:after, .page-header__content .kesearchbox #kesearch_submit:after {
    display: none
}

.tx-kesearch-pi1 form > .column, .tx-kesearch-pi1 form > .columns, .tx-kesearch-pi1 .kesearchbox > .column, .tx-kesearch-pi1 .kesearchbox > .columns {
    padding: 0
}

.tx-kesearch-pi1 #kesearch_filters .list ul {
    padding: 0.625rem 0 0.9375rem;
    border: none
}

.tx-kesearch-pi1 #kesearch_filters .list ul li {
    list-style: none;
    display: inline-block;
    padding-right: 0.9375rem;
    font-size: 1rem
}

.tx-kesearch-pi1 #kesearch_filters .list ul li:before {
    display: none
}

.tx-kesearch-pi1 #kesearch_filters .list li {
    text-decoration: none
}

.tx-kesearch-pi1 #kesearch_filters .list li a {
    color: #0078b9;
    text-decoration: none
}

.tx-kesearch-pi1 #kesearch_filters .list li a:hover {
    color: #0099ec
}

.tx-kesearch-pi1 #kesearch_filters .list .options--reset {
    display: block
}

.tx-kesearch-pi1 #kesearch_filters .list .options--reset .kesGreyButt {
    display: block;
    background: none;
    border: none;
    border-top: 1px dotted #a2a2a2;
    padding: 5px 0 0;
    margin-top: 5px;
    margin-right: 0;
    text-align: right
}

.tx-kesearch-pi1 #kesearch_filters .list .options--reset .kesGreyButt a {
    color: #a2a2a2 !important
}

.tx-kesearch-pi1 #kesearch_filters .list .options--reset .kesGreyButt:hover {
    box-shadow: none
}

.tx-kesearch-pi1 #kesearch_filters .list .head {
    display: none
}

.tx-kesearch-pi1 #kesearch_results {
    clear: both;
    border-top: 1px dotted #a2a2a2
}

.tx-kesearch-pi1 #kesearch_results::before, .tx-kesearch-pi1 #kesearch_results::after {
    display: table;
    content: ' '
}

.tx-kesearch-pi1 #kesearch_results::after {
    clear: both
}

.tx-kesearch-pi1 #kesearch_results .result-list-item {
    margin: 0;
    padding: 0.9375rem
}

.tx-kesearch-pi1 #kesearch_results .result-list-item:nth-child(2n+0) {
    background-color: #eee
}

.tx-kesearch-pi1 .general-message {
    clear: both
}

.tx-kesearch-pi1 #kesearch_num_results {
    float: left;
    font-size: 1rem
}

.tx-kesearch-pi1 #kesearch_ordering .ordering ul {
    height: auto;
    margin-bottom: 0
}

.tx-kesearch-pi1 #kesearch_ordering .ordering ul li {
    list-style: none
}

.tx-kesearch-pi1 #kesearch_ordering .ordering ul li:before {
    display: none
}

.tx-kesearch-pi1 #kesearch_ordering .ordering span.up, .tx-kesearch-pi1 #kesearch_ordering .ordering span.down {
    position: relative;
    margin-left: 0.3125rem;
    top: -3px
}

.tx-kesearch-pi1 #kesearch_ordering .ordering span.up {
    border-color: transparent transparent #0a0a0a
}

.tx-kesearch-pi1 #kesearch_ordering .ordering span.down {
    border-color: #0a0a0a transparent
}

.tx-kesearch-pi1 .ui-helper-hidden-accessible {
    display: none !important
}

.tx-kesearch-pi1 #kesearch_submit {
    background-color: #0078b9;
    color: white;
    border-bottom: none;
    width: auto;
    font-size: 1rem;
    padding: 0.75rem 2.8125rem 0.75rem 0.875rem;
    border-radius: 5px;
    background-image: url(arrow-icon-white.svg);
    background-repeat: no-repeat;
    background-size: 25px auto;
    background-position: right 8px
}

.tx-kesearch-pi1 #kesearch_submit:after {
    display: none
}

.tx-kesearch-pi1 #kesearch_submit:focus, .tx-kesearch-pi1 #kesearch_submit:hover {
    background-color: #0099ec
}

@media screen and (max-width: 640px) {
    .tx-kesearch-pi1 #kesearch_num_results {
        float: none
    }

    .tx-kesearch-pi1 #kesearch_results {
        margin: 0 -0.9375rem
    }

    .tx-kesearch-pi1 #kesearch_ordering .ordering ul {
        display: block;
        margin-top: 0.625rem;
        text-align: left
    }

    .tx-kesearch-pi1 #kesearch_ordering .ordering ul li {
        float: none;
        margin-left: 0
    }

    .tx-kesearch-pi1 #kesearch_ordering .ordering ul li:not(.sortlink) {
        display: block
    }

    .tx-kesearch-pi1 #kesearch_ordering .ordering ul li.sortlink {
        display: inline-block
    }
}

.ui-autocomplete.ui-menu {
    display: none !important
}

.tx-ttaddress-pi1 .vcard {
    padding: 0.9375rem 1.25rem;
    margin-bottom: 0.9375rem;
    background: #0078b9;
    color: white
}

.tx-ttaddress-pi1 .vcard a {
    color: white;
    text-decoration: none
}

.tx-ttaddress-pi1 .vcard .vcard__image img {
    padding-right: 0.9375rem
}

.tx-ttaddress-pi1 .vcard .vcard__name {
    display: block;
    font-size: 1.25rem;
    padding-top: 0.9375rem;
    margin-bottom: 0.9375rem
}

.tx-ttaddress-pi1 .vcard .info {
    margin-top: -0.9375rem;
    margin-bottom: 0.9375rem
}

.tx-ttaddress-pi1 .vcard .vcard__phone {
    display: block;
    padding-left: 1.75rem;
    margin-bottom: 0.4375rem;
    background: url(link-icons-white.svg) no-repeat 0 -122px;
    background-size: 15px auto
}

.tx-ttaddress-pi1 .vcard .vcard__email {
    display: block;
    margin-bottom: 0.4375rem
}

.tx-ttaddress-pi1 .vcard .vcard__email a {
    color: white;
    margin-left: 1.5625rem
}

.tx-ttaddress-pi1 .vcard .vcard__email a:before {
    background-image: url(link-icons-white.svg);
    left: -25px
}

.tx-ttaddress-pi1 .vcard .vcard__email a:hover:before {
    background-image: url(link-icons-white.svg);
    opacity: 0.7
}

.article::before, .article::after {
    display: table;
    content: ' '
}

.article::after {
    clear: both
}

.article .article-header {
    font-size: 0.875rem;
    margin-bottom: 1.25rem
}

.article .article-header .article-header__category {
    padding-left: 0.4375rem;
    margin-left: 0.4375rem;
    border-left: 1px solid
}

.article .article-body .article-body__headline a {
    display: inline-block
}

.article .article-body .article-body__headline a:after {
    background-image: url(link-icons-base.svg);
    top: 4px;
    right: -30px
}

.article .article-body .article-body__headline a:hover:after {
    background-image: url(link-icons-hover.svg)
}

.article .article-body .article-body__content {
    margin-bottom: 0
}

.article .article__image {
    margin-bottom: 1.25rem
}

.article .teaser-text {
    font-weight: 500
}

.news-single .article > .row > .column, .news-single .article > .row > .columns {
    padding: 0
}

.news-single .article-body__teaser {
    font-weight: 500
}

.news-single .article__image .outer {
    margin-bottom: 1.25rem
}

.news-single .article__image .news-img-caption {
    padding: 0.625rem 0.3125rem 0;
    margin-bottom: -0.3125rem;
    font-weight: 400;
    font-size: 0.875rem;
    color: rgba(44, 53, 58, 0.75)
}

.news-single .article__back-link {
    position: relative;
    padding-left: 2.625rem;
    margin-top: 1.875rem;
    margin-bottom: 1.25rem;
    background-color: #dcdcdc;
    color: #0078b9;
    border-radius: 5px
}

.news-single .article__back-link:before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    height: 1.25rem;
    width: 1.25rem;
    background-image: url(link-icons-base.svg);
    background-repeat: no-repeat;
    background-size: 17px auto;
    background-position: 0 -29px;
    transform: rotate(180deg)
}

.news-single .article__back-link:after {
    display: none
}

.news-single .article__back-link:hover {
    background-color: #eee;
    color: #0078b9
}

@media screen and (min-width: 1025px) {
    .news-single .article__image {
        padding-left: 1.25rem
    }
}

.datemenu-list {
    list-style: none;
    margin-left: 0
}

.datemenu-list li {
    margin-left: 0
}

.datemenu-list li:before {
    display: none
}

.datemenu-list ul {
    list-style: none;
    margin-left: 1.5625rem;
    margin-bottom: 0.9375rem
}

.news-menu-view label {
    margin-bottom: 0.625rem
}

.datemenu a:before {
    display: none
}

.datemenu .datemenu__month {
    display: inline-block;
    width: 53%;
    padding: 0
}

.datemenu .datemenu__count {
    float: right;
    width: 47%;
    padding: 0;
    text-align: right
}

.datemenu .is-accordion-submenu-parent {
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #a2a2a2
}

.datemenu .is-accordion-submenu-parent > a {
    position: relative;
    padding-bottom: 0.5rem;
    padding-right: 3.125rem;
    color: #0a0a0a
}

.datemenu .is-accordion-submenu-parent > a:after {
    content: "";
    position: absolute;
    top: 15px;
    right: 15px;
    width: 25px;
    height: 20px;
    border: none;
    background: url(arrow-dropdown.svg) no-repeat right top;
    background-size: 25px auto
}

.datemenu .is-accordion-submenu-parent[aria-expanded="true"] > a:after {
    background-position: right -33px;
    transform: unset;
    transform-origin: unset
}

.datemenu .submenu {
    padding-top: 0.5rem;
    margin-left: 0
}

.datemenu .submenu li {
    padding: 0.3125rem 1rem;
    margin: 0;
    border-bottom: 1px dotted #a2a2a2
}

.datemenu .submenu li:last-child {
    border: none
}

.datemenu .item--active {
    background: #eee
}

@media screen and (max-width: 1025px) {
    .datemenu a:before {
        display: none
    }

    .datemenu .datemenu__month {
        display: inline-block;
        width: auto
    }

    .datemenu .datemenu__count {
        float: left;
        width: 115px;
        padding: 0;
        text-align: left
    }
}

.fancybox-overlay {
    background-image: none;
    background-color: rgba(0, 120, 185, 0.75)
}

.fancybox-title-float-wrap .child {
    font-family: "Roboto", Arial, sans-serif;
    display: block;
    margin-right: 0;
    padding: 0.4375rem 0.9375rem;
    font-weight: 500;
    border-radius: 0 0 0.625rem 0.625rem;
    background: #fff;
    color: #0a0a0a;
    text-shadow: none
}

.fancybox-title {
    width: 100%;
    right: 0;
    bottom: 0;
    margin-bottom: -0.625rem
}

.t3ddy-accordion .t3ddy-accordion-header {
    position: relative;
    padding: 0.9375rem 2.8125rem 0.9375rem 0;
    margin: 0;
    cursor: pointer;
    background: none;
    border-radius: 0;
    border-right: none;
    border-left: none;
    border-top: none;
    border-bottom: 1px solid #a2a2a2
}

.t3ddy-accordion .t3ddy-accordion-header:hover {
    color: #0078b9
}

.t3ddy-accordion .t3ddy-accordion-header:focus {
    outline: none
}

.t3ddy-accordion .t3ddy-accordion-header.ui-state-active {
    border-bottom: none !important
}

.t3ddy-accordion .ui-accordion-header-icon {
    position: absolute;
    top: 15px;
    left: inherit;
    right: 15px;
    display: block;
    height: 2rem;
    width: 2rem;
    background: url(link-icons-base.svg) no-repeat;
    background-size: 30px auto;
    background-position: 0 -557px
}

.t3ddy-accordion .ui-state-active .ui-accordion-header-icon {
    background-position: 0 -508px
}

.t3ddy-accordion .t3ddy-accordion-header:hover .ui-accordion-header-icon {
    background-image: url(link-icons-hover.svg)
}

.t3ddy-accordion .t3ddy-item {
    padding: 0.625rem 1.5625rem 1.5625rem;
    border-right: none;
    border-left: none;
    border-top: none;
    border-bottom: 1px solid #a2a2a2
}

.t3ddy-accordion .t3ddy-item p {
    line-height: 1.5rem;
    font-size: 16px
}

.orbit--with-icon .orbit-slide, .orbit--with-icon .orbit-figure {
    position: relative
}

.orbit--with-icon .orbit-slide, .orbit--with-icon .orbit-slide .orbit-image {
    border-radius: 0 0 0.625rem 0.625rem
}

.page-content .orbit--with-icon {
    margin-bottom: 1.25rem
}

.page-content .orbit--with-icon .orbit-slide .orbit-image {
    border-radius: 0
}

.orbit--with-icon .orbit-slide--content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    height: 75%;
    width: 50%
}

.orbit--with-icon .orbit-slide--content h1, .orbit--with-icon .orbit-slide--content h2, .orbit--with-icon .orbit-slide--content h3, .orbit--with-icon .orbit-slide--content .article .article-body .article-body__headline, .article .article-body .orbit--with-icon .orbit-slide--content .article-body__headline, .orbit--with-icon .orbit-slide--content .t3ddy-accordion .t3ddy-accordion-header, .t3ddy-accordion .orbit--with-icon .orbit-slide--content .t3ddy-accordion-header, .orbit--with-icon .orbit-slide--content h4, .orbit--with-icon .orbit-slide--content h5, .orbit--with-icon .orbit-slide--content h6 {
    color: white;
    font-size: 3.25rem;
    line-height: 4.0625rem;
    margin-bottom: 1.5rem
}

.orbit--with-icon .orbit-slide--content p {
    color: white;
    font-size: 1.25rem;
    line-height: 2rem;
    margin-bottom: 3.25rem
}

.orbit--with-icon .orbit-slide--content a {
    position: relative;
    padding-right: 3.125rem;
    font-size: 1.25rem;
    border-radius: 5px;
    background-color: #f9b200;
    transition: background-color 500ms
}

.orbit--with-icon .orbit-slide--content a:focus, .orbit--with-icon .orbit-slide--content a:hover {
    background-color: #ffc32d
}

.orbit--with-icon .orbit-slide--content a:after {
    content: "";
    position: absolute;
    top: 0;
    right: 10px;
    height: 100%;
    width: 1.0625rem;
    background: url(link-icons-white.svg) no-repeat;
    background-size: 24px auto;
    background-position: 0 -26px
}

.orbit-wrapper {
    position: relative
}

.orbit-bullets {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%
}

.orbit-bullets button {
    opacity: 0.6;
    border: 2px solid white;
    transition: background-color 500ms
}

.orbit-bullets button:hover, .orbit-bullets button.is-active {
    opacity: 1
}

.orbit-figure-icon {
    position: absolute;
    bottom: 30px;
    right: 50px;
    height: 70px;
    width: 100%
}

.orbit-figure-icon .icon {
    display: block;
    float: right;
    height: 4.6875rem;
    width: 4.6875rem;
    margin-right: -1.25rem;
    background-position: center center;
    background-repeat: no-repeat
}

.orbit-figure-icon .icon.icon--water {
    background-image: url(icon-water.svg)
}

.orbit-figure-icon .icon.icon--gas {
    background-image: url(icon-gas.svg)
}

.orbit-figure-icon .icon.icon--power {
    background-image: url(icon-power.svg)
}

.orbit-figure-icon .icon.icon--heat {
    background-image: url(icon-heat.svg)
}

@media screen and (max-width: 1200px) {
    .orbit--with-icon .orbit-slide, .orbit--with-icon .orbit-slide .orbit-image {
        border-radius: 0
    }
}

@media screen and (max-width: 1025px) {
    .orbit--with-icon .orbit-slide--content h1, .orbit--with-icon .orbit-slide--content h2, .orbit--with-icon .orbit-slide--content h3, .orbit--with-icon .orbit-slide--content .article .article-body .article-body__headline, .article .article-body .orbit--with-icon .orbit-slide--content .article-body__headline, .orbit--with-icon .orbit-slide--content .t3ddy-accordion .t3ddy-accordion-header, .t3ddy-accordion .orbit--with-icon .orbit-slide--content .t3ddy-accordion-header, .orbit--with-icon .orbit-slide--content h4, .orbit--with-icon .orbit-slide--content h5, .orbit--with-icon .orbit-slide--content h6 {
        font-size: 2.25rem;
        line-height: 2.625rem;
        margin-bottom: 1rem
    }

    .orbit--with-icon .orbit-slide--content p {
        font-size: 1rem;
        line-height: 1.5rem;
        margin-bottom: 1.875rem
    }

    .orbit--with-icon .orbit-slide--content a {
        font-size: 1rem
    }

    .orbit--with-icon .orbit-slide--content a:after {
        background-position: 0 -22px;
        background-size: 20px auto
    }
}

@media screen and (max-width: 768px) {
    .orbit--with-icon .orbit-slide {
        border-radius: 0
    }

    .orbit--with-icon .orbit-slide--content {
        position: relative;
        bottom: inherit;
        left: inherit;
        height: auto;
        width: 100%;
        padding: 1.5625rem 0.9375rem;
        background: #2c353a
    }

    .orbit--with-icon .orbit-slide--content h1, .orbit--with-icon .orbit-slide--content h2, .orbit--with-icon .orbit-slide--content h3, .orbit--with-icon .orbit-slide--content .article .article-body .article-body__headline, .article .article-body .orbit--with-icon .orbit-slide--content .article-body__headline, .orbit--with-icon .orbit-slide--content .t3ddy-accordion .t3ddy-accordion-header, .t3ddy-accordion .orbit--with-icon .orbit-slide--content .t3ddy-accordion-header, .orbit--with-icon .orbit-slide--content h4, .orbit--with-icon .orbit-slide--content h5, .orbit--with-icon .orbit-slide--content h6 {
        font-size: 2rem;
        line-height: 2.5rem;
        margin-bottom: 1rem
    }

    .orbit--with-icon .orbit-slide--content p {
        font-size: 0.875rem;
        line-height: 1.25rem;
        margin-bottom: 1.875rem
    }

    .orbit--with-icon .orbit-slide--content a {
        font-size: 0.875rem;
        margin-bottom: 0
    }

    .orbit--with-icon .orbit-slide--content a:after {
        background-position: 0 -21px;
        background-size: 18px auto
    }

    .orbit--with-icon .orbit-bullets {
        bottom: inherit;
        left: 20px;
        top: 0;
        text-align: left;
        width: auto
    }

    .orbit--with-icon .orbit-bullets button {
        height: 0.8125rem;
        width: 0.8125rem
    }

    .orbit-figure-icon {
        bottom: 20px;
        right: 40px;
        height: 52px
    }

    .orbit-figure-icon .icon {
        height: 3.125rem;
        width: 3.125rem;
        background-size: 50px auto
    }
}

.teaser_image {
    margin-bottom: 3rem
}

.teaser_image--image {
    margin-bottom: 1.25rem
}

.teaser_A {
    position: relative;
    color: white;
    cursor: pointer;
    margin-bottom: 3rem
}

.teaser_A .teaser_A--overlay {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    position: absolute;
    padding: 1.25rem;
    top: 0;
    right: 0;
    height: 100%;
    width: 40%;
    background-color: rgba(0, 120, 185, 0.9)
}

.teaser_A h2 {
    margin-bottom: 0.625rem
}

.teaser_A a {
    color: white;
    align-self: flex-start
}

.teaser_A a:hover {
    color: white
}

.teaser_A a:hover:after {
    background-image: url(link-icons-white.svg);
    opacity: .7
}

.teaser_A a::after {
    background-image: url(link-icons-white.svg);
    top: 0.125rem
}

.teaser_A .icon {
    float: left;
    height: 4.6875rem;
    width: 4.6875rem;
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem
}

.teaser_A .icon.icon--water {
    background-image: url(icon-water.svg)
}

.teaser_A .icon.icon--gas {
    background-image: url(icon-gas.svg)
}

.teaser_A .icon.icon--power {
    background-image: url(icon-power.svg)
}

.teaser_A .icon.icon--heat {
    background-image: url(icon-heat.svg)
}

@media screen and (max-width: 1025px) {
    .teaser_A .teaser_A--overlay {
        width: 50%
    }
}

@media screen and (max-width: 640px) {
    .teaser_A .teaser_A--overlay {
        width: 100%;
        position: relative;
        background-color: #0078b9
    }

    .teaser_A .icon {
        top: 0;
        margin-top: 1.25rem
    }
}

.teaser_E {
    display: flex;
    margin-top: 2rem;
    margin-bottom: 1rem;
    background-color: #0078b9;
    position: relative;
    cursor: pointer
}

.teaser_E h2 {
    margin-bottom: 0.625rem
}

.teaser_E a {
    color: white;
    align-self: flex-start
}

.teaser_E a:hover {
    color: white
}

.teaser_E a:hover:after {
    background-image: url(link-icons-white.svg);
    opacity: .7
}

.teaser_E a::after {
    background-image: url(link-icons-white.svg);
    top: 0.125rem
}

.teaser_E--image {
    min-width: 66%;
    position: relative
}

.teaser_E--image:before {
    background: transparent url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPCAMAAAAMCGV4AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAAZQTFRF////////VXz1bAAAAAJ0Uk5T/wDltzBKAAAAF0lEQVR42mJghAAGBiiNgw8DQ50PEGAAZuoA3uAFFy0AAAAASUVORK5CYII=") repeat scroll 0 0;
    bottom: 8px;
    content: "";
    height: 12%;
    left: 8px;
    opacity: 1;
    position: absolute;
    width: 98%
}

.teaser_E--textarea {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    color: white;
    min-width: 33%
}

@media screen and (max-width: 640px) {
    .teaser_E {
        display: block
    }

    .teaser_E--textarea {
        min-width: 100%
    }
}

.text_teaser {
    margin-bottom: 3rem
}
