/* ---- rules ---- */
html, body, #innerBody
{
    height: 100%;
    width: 100%;
}

/* Make smooth scroll when going to an anchor */
html
{
    scroll-behavior: smooth;
}

/* Mainly for medial reasons, persons may disable this animation, so we
 * respect their choice by using this media query
 * https://developer.mozilla.org/fr/docs/Web/CSS/scroll-behavior#accessibilit%C3%A9
 */
@media screen and (prefers-reduced-motion: reduce) {
    html
    {
        scroll-behavior: auto;
    }
}

a:not(.alert-link), a:not(.alert-link):visited
{
    outline: 0;
    color: black;
}
a:not(.alert-link):hover
{
    text-decoration: none;
}
#innerBody
{
    position: relative;
}
.baseItem
{
    position: absolute;
}
.pointerCursor
{
    cursor: pointer;
}

.backgroundTile
{
    z-index: 0;
    width: 100%;
    position: relative;
}

.backgroundTile:first-child
{
    z-index: 1;
}

.tileInnerContainer
{
    z-index: 0;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0 auto;
    background-color: transparent;
}

.baseItem.maskBlackenItem
{
    opacity: 0;
    z-index: 100;
    background-color: #000000;
}

.baseItem.maskBlackenItem:hover
{
    opacity: 0.75;
}

.tbl {
    display: table;
}
.tbl-row {
    display: table-row;
}
.tbl-cell {
    display: table-cell;
}
textarea
{
    resize: none;
}

/* Dropdown items */
.baseItem.dropdownMenu > .baseItem.containerItem,
.baseItem.dropdownMenu > a > .baseItem.containerItem    /* Used if the inner menu has on click actions */
{
    visibility: hidden;
    display: none;
}

.baseItem.dropdownMenu:hover > .baseItem.containerItem,
.baseItem.dropdownMenu > .baseItem.containerItem:hover,
.baseItem.dropdownMenu:hover > a > .baseItem.containerItem,    /* Used if the inner menu has on click actions */
.baseItem.dropdownMenu > a > .baseItem.containerItem:hover
{
    visibility: visible;
    display: initial;
}

/* Carousel items */
.carousel .carousel-inner,
.carousel .carousel-inner .item
{
    width: 100%;
    height: 100%;
}

.carousel .carousel-inner .item img,
.carousel .carousel-inner .item video
{
    position: absolute;
    display: block;
    max-width: 100%;
    max-height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

/* Containers items */
.baseItem.stackContainer
{
    display: flex;
}

.baseItem.gridContainer
{
    display: grid;
}

.baseItem.stackContainer > .baseItem,
.baseItem.gridContainer > .baseItem
{
    position: relative;
}

.baseItem.stackContainer > .baseItem
{
    flex-grow: 0;   /* To prevent items' size from being re-calculated */
}

.baseItem.stackContainer.horizontal-layout > .baseItem
{
    max-width: 100%;
}
.baseItem.stackContainer.vertical-layout > .baseItem
{
    max-height: 100%;
}

.baseItem.gridContainer > .baseItem
{
    object-position: center center;
    object-fit: contain;
    width: 100%;
    height: 100%;
    /*place-self: center;*/
}

/* On hover effect (spawning text) */
.spawnText
{
    z-index: 25;
    opacity: 0;
    text-align: center;
    position: absolute;
    margin: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: pre-line;

    /* "spawnText" items are made to appear on hover, so we use this rule to
     * tell the engine to ignore this bloc regarding mouse events. If not, when
     * hovering the text ITSELF, other filters are ignored. */
    pointer-events: none;

    /* Set filter to none to prevent the spawning text (on hover) to be
     * affected by the image filter property */
    filter: none;

    /* Default values which are supposed to be overridden by inline style */
    color: #000000;
    font-size: 16px;
    font-family: sans-serif;
}

.boxEffect:hover > .spawnText
{
    opacity: 1;
}

.boxEffect > .baseItem,
.boxEffect > a > .baseItem
{
    /* Tell item within effect box to stretch to its parent (the effect block)
     */
    width: 100%;
    height: 100%;
}

/* -- modal used to emphasize content -- */

#zoril-emphasize-modal
{
    transform: scale(0);
    opacity: 0;
    transition: all 0.25s linear;   /* opening speed */
}

#zoril-emphasize-modal.in
{
    transform: scale(1);
    opacity: 1;
}

#zoril-emphasize-modal .modal-dialog
{
    margin: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#zoril-emphasize-modal .modal-content, #zoril-emphasize-modal .modal-body
{
    width: 100%;
    height: 100%;
    border: none;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 0;
}

#zoril-emphasize-modal .modal-body > .baseItem
{
    position: relative;
    top: 0 !important;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: initial;
    max-height: initial;
}

/* --- */

/* Cookie banner */

.cookieBanner
{
    border: 5px solid #2A333A;
    border-radius: 0;
    background-color: #FFFFFF;

    position: fixed;
    left: 50%;
    bottom: 0;
    width: 90%;
    max-width: 1000px;
    min-height: 50px;
    margin: 50px auto;
    padding: 12px 44px 12px 20px;
    transform: translateX(-50%);
    z-index: 100;
}

.cookieBanner .legalNotice_closeCross
{
    position: absolute;
    top: 0;
    right: 0;
    width: 44px;
    height: 44px;
}

.cookieBanner p
{
    margin-bottom: 0;
    text-align: center;
}

.cookieBanner .legalNotice_full button
{
    border-radius: 0;
    position: relative;
    color: #FFFFFF;
    background-color: #2A333A;
    font-size: 18px;
    font-weight: 400;
    width: 200px;
    height: 40px;
    right: 50%;
    transform: translateX(50%);
    margin-top: 30px;
    opacity: 1;
}

.cookieBanner div.collapsedPanel
{
    height: 0;
    overflow: hidden;
}
/*
.cookieBanner p a
{
    outline: inherit;
    color: inherit;
}

.cookieBanner p a:hover
{
    outline: initial;
    color: initial;
    text-decoration: initial;
}*/

/* --- */

/* Forms rules */
form > div.tbl .captcha-img
{
    background-size: contain;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

form > div.tbl .zoril-glyph-icon
{
    font-weight: 500;
    font-size: 16px;
}

/** theme0 **/
form.form-style-theme0 > div.tbl
{
    position: relative;
}

form.form-style-theme0 > div.tbl > div.tbl-row
{
    height: 35px;
}

/* Fix fox inner items whose "display" property can't be set to "table-cell" for an
 * unknown reason... */
form.form-style-theme0 > div.tbl > div.tbl-row:nth-child(3) .tbl-cell
{
    display: inline-block;
}

form.form-style-theme0 > div.tbl input,
form.form-style-theme0 > div.tbl button,
form.form-style-theme0 > div.tbl div.captcha-img
{
    width: 32%;
    border: 1px solid #888888;
    border-radius: 0;
    margin-bottom: 15px;
    vertical-align: top;
}

form.form-style-theme0 > div.tbl input[type=email],
form.form-style-theme0 > div.tbl div.captcha-img
{
    margin: 0 2% 15px;
}

form.form-style-theme0 > div.tbl,
form.form-style-theme0 > div.tbl > div.msgContainer,
form.form-style-theme0 > div.tbl textarea
{
    width: 100%;
    height: 100%;
}

form.form-style-theme0 > div.tbl textarea
{
    border: 1px solid #888888;
    border-radius: 0;
}

form.form-style-theme0 > div.tbl button
{
    background-color: rgb(255, 0, 0);
    color: #FFFFFF;
}

form.form-style-theme0 > div.tbl button.submitBtn
{
    height: 30px;
    margin-top: 15px;
    margin-bottom: 0;
}

/** theme1 **/
form.form-style-theme1 > div.tbl
{
    position: relative;
}

form.form-style-theme1 > div.tbl > div.tbl-row
{
    height: 35px;
}

form.form-style-theme1 > div.tbl div.tbl-cell.captcha_area > *
{
    display: inline-block;
    vertical-align: top;
}

form.form-style-theme1 > div.tbl .captcha_area > button
{
    width: 35px;
}

form.form-style-theme1 > div.tbl .captcha_area > div.captcha-img
{
    width: 33%;
    margin: 0;
}

form.form-style-theme1 > div.tbl .captcha_area > input
{
    width: calc(67% - 43px);
}

form.form-style-theme1 > div.tbl,
form.form-style-theme1 > div.tbl > div.msgContainer,
form.form-style-theme1 > div.tbl textarea
{
    width: 100%;
    height: 100%;
}

form.form-style-theme1 > div.tbl input,
form.form-style-theme1 > div.tbl textarea,
form.form-style-theme1 > div.tbl div.captcha-img
{
    border: 1px solid #D9A863;
    border-radius: 0;
    margin-bottom: 20px;
}

form.form-style-theme1 > div.tbl button
{
    background-color: #D9A863;
    color: #FFFFFF;
    border: 1px solid #D9A863;
    border-radius: 0;
    height: 35px;
}

form.form-style-theme1 > div.tbl button[type=submit]
{
    width: 120px;
    margin-top: 20px;
}

form.form-style-theme1 > div.tbl input::placeholder,
form.form-style-theme1 > div.tbl input:-ms-input-placeholder,   /* IE 10-11*/
form.form-style-theme1 > div.tbl input::-ms-input-placeholder   /* Edge */
{
    color: #717171;
}

/** theme2 **/
form.form-style-theme2 > div.tbl
{
    position: relative;
    table-layout: fixed;
}

form.form-style-theme2 > div.tbl > div.tbl-row
{
    height: 40px;
}

form.form-style-theme2 > div.tbl > div.tbl-row > div.tbl-cell
{
    padding: 0 9px;
}

form.form-style-theme2 > div.tbl > div.tbl-row:nth-child(2)
{
    height: 70px;
}

form.form-style-theme2 > div.tbl > div.tbl-row > .tbl-cell
{
    vertical-align: top;
}

form.form-style-theme2 > div.tbl,
form.form-style-theme2 > div.tbl > div > div.msgContainer,
form.form-style-theme2 > div.tbl textarea
{
    width: 100%;
    height: 100%;
}

form.form-style-theme2 > div.tbl input,
form.form-style-theme2 > div.tbl textarea,
form.form-style-theme2 > div.tbl div.captcha-img
{
    border: 1px solid #12515A;
    border-radius: 0;
    margin-bottom: 20px;
}

form.form-style-theme2 > div.tbl > div.tbl-row > div.tbl-cell .no-margin
{
    margin: 0;
}

form.form-style-theme2 > div.tbl div.tbl-cell.captcha_area > *
{
    display: inline-block;
    vertical-align: top;
}

form.form-style-theme2 > div.tbl .captcha_area > button
{
    width: 34px;
    height: 34px;
}

form.form-style-theme2 > div.tbl .captcha_area > div.captcha-img
{
    width: calc(100% - 38px);
}

form.form-style-theme2 > div.tbl > div.tbl-row.captcha_row > .tbl-cell
{
    padding-top: 20px;
}

form.form-style-theme2 > div.tbl > div.tbl-row.captcha_row > .tbl-cell > *
{
    margin-bottom: 0;
}

form.form-style-theme2 > div.tbl .wrapForSubmitBtn
{
    position: relative;
    width: 200%;
    height: 50px;
}

form.form-style-theme2 > div.tbl button
{
    background-color: #12515A;
    color: #FFFFFF;
    border: 1px solid #12515A;
    border-radius: 0;
}

form.form-style-theme2 > div.tbl .wrapForSubmitBtn button
{
    width: 170px;
    height: 30px;
    margin-top: 20px;
    position: absolute;
    left: calc(50% - 85px);
}

/* Fonts */
@font-face {
    font-family: 'questrialregular';
    src: url('fonts/questrial_regular/questrialregular.eot');
    src: url('fonts/questrial_regular/questrialregular.eot?#iefix') format('embedded-opentype'),
         url('fonts/questrial_regular/questrialregular.woff2') format('woff2'),
         url('fonts/questrial_regular/questrialregular.woff') format('woff'),
         url('fonts/questrial_regular/questrialregular.svg#questrialregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ralewaymedium';
    src: url('fonts/raleway_medium/raleway-medium.eot');
    src: url('fonts/raleway_medium/raleway-medium.eot?#iefix') format('embedded-opentype'),
         url('fonts/raleway_medium/raleway-medium.woff2') format('woff2'),
         url('fonts/raleway_medium/raleway-medium.woff') format('woff'),
         url('fonts/raleway_medium/raleway-medium.svg#ralewaymedium') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ralewaybold';
    src: url('fonts/raleway_bold/raleway-bold.eot');
    src: url('fonts/raleway_bold/raleway-bold.eot?#iefix') format('embedded-opentype'),
         url('fonts/raleway_bold/raleway-bold.woff2') format('woff2'),
         url('fonts/raleway_bold/raleway-bold.woff') format('woff'),
         url('fonts/raleway_bold/raleway-bold.svg#ralewaybold') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ralewaylight_italic';
    src: url('fonts/raleway_light_italic/raleway-lightitalic.eot');
    src: url('fonts/raleway_light_italic/raleway-lightitalic.eot?#iefix') format('embedded-opentype'),
         url('fonts/raleway_light_italic/raleway-lightitalic.woff2') format('woff2'),
         url('fonts/raleway_light_italic/raleway-lightitalic.woff') format('woff'),
         url('fonts/raleway_light_italic/raleway-lightitalic.svg#ralewaylight_italic') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'berner_basisschrift_1regular';
    src: url('fonts/bernerbasisschrift1/bernerbasisschrift1.eot');
    src: url('fonts/bernerbasisschrift1/bernerbasisschrift1.eot?#iefix') format('embedded-opentype'),
         url('fonts/bernerbasisschrift1/bernerbasisschrift1.woff2') format('woff2'),
         url('fonts/bernerbasisschrift1/bernerbasisschrift1.woff') format('woff'),
         url('fonts/bernerbasisschrift1/bernerbasisschrift1.svg#berner_basisschrift_1regular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ralewayextralight';
    src: url('fonts/raleway_extralight/raleway-extralight.eot');
    src: url('fonts/raleway_extralight/raleway-extralight.eot?#iefix') format('embedded-opentype'),
         url('fonts/raleway_extralight/raleway-extralight.woff2') format('woff2'),
         url('fonts/raleway_extralight/raleway-extralight.woff') format('woff'),
         url('fonts/raleway_extralight/raleway-extralight.svg#ralewayextralight') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ralewayextrabold_italic';
    src: url('fonts/raleway_extrabolditalic/raleway-extrabolditalic.eot');
    src: url('fonts/raleway_extrabolditalic/raleway-extrabolditalic.eot?#iefix') format('embedded-opentype'),
         url('fonts/raleway_extrabolditalic/raleway-extrabolditalic.woff2') format('woff2'),
         url('fonts/raleway_extrabolditalic/raleway-extrabolditalic.woff') format('woff'),
         url('fonts/raleway_extrabolditalic/raleway-extrabolditalic.svg#ralewayextrabold_italic') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ralewayextrabold';
    src: url('fonts/raleway_extrabold/raleway-extrabold.eot');
    src: url('fonts/raleway_extrabold/raleway-extrabold.eot?#iefix') format('embedded-opentype'),
         url('fonts/raleway_extrabold/raleway-extrabold.woff2') format('woff2'),
         url('fonts/raleway_extrabold/raleway-extrabold.woff') format('woff'),
         url('fonts/raleway_extrabold/raleway-extrabold.svg#ralewayextrabold') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ralewaybold_italic';
    src: url('fonts/raleway_bolditalic/raleway-bolditalic.eot');
    src: url('fonts/raleway_bolditalic/raleway-bolditalic.eot?#iefix') format('embedded-opentype'),
         url('fonts/raleway_bolditalic/raleway-bolditalic.woff2') format('woff2'),
         url('fonts/raleway_bolditalic/raleway-bolditalic.woff') format('woff'),
         url('fonts/raleway_bolditalic/raleway-bolditalic.svg#ralewaybold_italic') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ralewayblack_italic';
    src: url('fonts/raleway_blackitalic/raleway-blackitalic.eot');
    src: url('fonts/raleway_blackitalic/raleway-blackitalic.eot?#iefix') format('embedded-opentype'),
         url('fonts/raleway_blackitalic/raleway-blackitalic.woff2') format('woff2'),
         url('fonts/raleway_blackitalic/raleway-blackitalic.woff') format('woff'),
         url('fonts/raleway_blackitalic/raleway-blackitalic.svg#ralewayblack_italic') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ralewayblack';
    src: url('fonts/raleway_black/raleway-black.eot');
    src: url('fonts/raleway_black/raleway-black.eot?#iefix') format('embedded-opentype'),
         url('fonts/raleway_black/raleway-black.woff2') format('woff2'),
         url('fonts/raleway_black/raleway-black.woff') format('woff'),
         url('fonts/raleway_black/raleway-black.svg#ralewayblack') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
	font-family: "centurygothic";
	src: url("fonts/century_gothic/century-gothic.eot"); /* IE9 Compat Modes */
	src: url("fonts/century_gothic/century-gothic.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
		url("fonts/century_gothic/century-gothic.otf") format("opentype"), /* Open Type Font */
		url("fonts/century_gothic/century-gothic.svg") format("svg"), /* Legacy iOS */
		url("fonts/century_gothic/century-gothic.ttf") format("truetype"), /* Safari, Android, iOS */
		url("fonts/century_gothic/century-gothic.woff") format("woff"), /* Modern Browsers */
		url("fonts/century_gothic/century-gothic.woff2") format("woff2"); /* Modern Browsers */
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "centurygothic_bold";
	src: url("fonts/century_gothic_bold/century-gothic-bold.eot"); /* IE9 Compat Modes */
	src: url("fonts/century_gothic_bold/century-gothic-bold.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
		url("fonts/century_gothic_bold/century-gothic-bold.otf") format("opentype"), /* Open Type Font */
		url("fonts/century_gothic_bold/century-gothic-bold.svg") format("svg"), /* Legacy iOS */
		url("fonts/century_gothic_bold/century-gothic-bold.ttf") format("truetype"), /* Safari, Android, iOS */
		url("fonts/century_gothic_bold/century-gothic-bold.woff") format("woff"), /* Modern Browsers */
		url("fonts/century_gothic_bold/century-gothic-bold.woff2") format("woff2"); /* Modern Browsers */
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "centurygothic_bolditalic";
	src: url("fonts/century_gothic_bolditalic/century-gothic-bolditalic.eot"); /* IE9 Compat Modes */
	src: url("fonts/century_gothic_bolditalic/century-gothic-bolditalic.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
		url("fonts/century_gothic_bolditalic/century-gothic-bolditalic.otf") format("opentype"), /* Open Type Font */
		url("fonts/century_gothic_bolditalic/century-gothic-bolditalic.svg") format("svg"), /* Legacy iOS */
		url("fonts/century_gothic_bolditalic/century-gothic-bolditalic.ttf") format("truetype"), /* Safari, Android, iOS */
		url("fonts/century_gothic_bolditalic/century-gothic-bolditalic.woff") format("woff"), /* Modern Browsers */
		url("fonts/century_gothic_bolditalic/century-gothic-bolditalic.woff2") format("woff2"); /* Modern Browsers */
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "centurygothic_italic";
	src: url("fonts/century_gothic_italic/century-gothic-italic.eot"); /* IE9 Compat Modes */
	src: url("fonts/century_gothic_italic/century-gothic-italic.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
		url("fonts/century_gothic_italic/century-gothic-italic.otf") format("opentype"), /* Open Type Font */
		url("fonts/century_gothic_italic/century-gothic-italic.svg") format("svg"), /* Legacy iOS */
		url("fonts/century_gothic_italic/century-gothic-italic.ttf") format("truetype"), /* Safari, Android, iOS */
		url("fonts/century_gothic_italic/century-gothic-italic.woff") format("woff"), /* Modern Browsers */
		url("fonts/century_gothic_italic/century-gothic-italic.woff2") format("woff2"); /* Modern Browsers */
	font-weight: normal;
	font-style: normal;
}

@font-face {
    font-family: 'berner_basisschrift_2regular';
    src: url('fonts/bernerbasisschrift2/bernerbasisschrift2.eot');
    src: url('fonts/bernerbasisschrift2/bernerbasisschrift2.eot?#iefix') format('embedded-opentype'),
         url('fonts/bernerbasisschrift2/bernerbasisschrift2.woff2') format('woff2'),
         url('fonts/bernerbasisschrift2/bernerbasisschrift2.woff') format('woff'),
         url('fonts/bernerbasisschrift2/bernerbasisschrift2.svg#berner_basisschrift_2regular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'open_sansbold';
    src: url('fonts/opensans_bold/opensans-bold.eot');
    src: url('fonts/opensans_bold/opensans-bold.eot?#iefix') format('embedded-opentype'),
         url('fonts/opensans_bold/opensans-bold.woff2') format('woff2'),
         url('fonts/opensans_bold/opensans-bold.woff') format('woff'),
         url('fonts/opensans_bold/opensans-bold.svg#open_sansbold') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'open_sansbold_italic';
    src: url('fonts/opensans_bolditalic/opensans-bolditalic.eot');
    src: url('fonts/opensans_bolditalic/opensans-bolditalic.eot?#iefix') format('embedded-opentype'),
         url('fonts/opensans_bolditalic/opensans-bolditalic.woff2') format('woff2'),
         url('fonts/opensans_bolditalic/opensans-bolditalic.woff') format('woff'),
         url('fonts/opensans_bolditalic/opensans-bolditalic.svg#open_sansbold_italic') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'open_sansextrabold';
    src: url('fonts/opensans_extrabold/opensans-extrabold.eot');
    src: url('fonts/opensans_extrabold/opensans-extrabold.eot?#iefix') format('embedded-opentype'),
         url('fonts/opensans_extrabold/opensans-extrabold.woff2') format('woff2'),
         url('fonts/opensans_extrabold/opensans-extrabold.woff') format('woff'),
         url('fonts/opensans_extrabold/opensans-extrabold.svg#open_sansextrabold') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'open_sansitalic';
    src: url('fonts/opensans_italic/opensans-italic.eot');
    src: url('fonts/opensans_italic/opensans-italic.eot?#iefix') format('embedded-opentype'),
         url('fonts/opensans_italic/opensans-italic.woff2') format('woff2'),
         url('fonts/opensans_italic/opensans-italic.woff') format('woff'),
         url('fonts/opensans_italic/opensans-italic.svg#open_sansitalic') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'open_sanslight';
    src: url('fonts/opensans_light/opensans-light.eot');
    src: url('fonts/opensans_light/opensans-light.eot?#iefix') format('embedded-opentype'),
         url('fonts/opensans_light/opensans-light.woff2') format('woff2'),
         url('fonts/opensans_light/opensans-light.woff') format('woff'),
         url('fonts/opensans_light/opensans-light.svg#open_sanslight') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'open_sanslight_italic';
    src: url('fonts/opensans_lightitalic/opensans-lightitalic.eot');
    src: url('fonts/opensans_lightitalic/opensans-lightitalic.eot?#iefix') format('embedded-opentype'),
         url('fonts/opensans_lightitalic/opensans-lightitalic.woff2') format('woff2'),
         url('fonts/opensans_lightitalic/opensans-lightitalic.woff') format('woff'),
         url('fonts/opensans_lightitalic/opensans-lightitalic.svg#open_sanslight_italic') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'open_sansregular';
    src: url('fonts/opensans_regular/opensans-regular.eot');
    src: url('fonts/opensans_regular/opensans-regular.eot?#iefix') format('embedded-opentype'),
         url('fonts/opensans_regular/opensans-regular.woff2') format('woff2'),
         url('fonts/opensans_regular/opensans-regular.woff') format('woff'),
         url('fonts/opensans_regular/opensans-regular.svg#open_sansregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'open_sanssemibold';
    src: url('fonts/opensans_semibold/opensans-semibold.eot');
    src: url('fonts/opensans_semibold/opensans-semibold.eot?#iefix') format('embedded-opentype'),
         url('fonts/opensans_semibold/opensans-semibold.woff2') format('woff2'),
         url('fonts/opensans_semibold/opensans-semibold.woff') format('woff'),
         url('fonts/opensans_semibold/opensans-semibold.svg#open_sanssemibold') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'open_sanssemibold_italic';
    src: url('fonts/opensans_semibolditalic/opensans-semibolditalic.eot');
    src: url('fonts/opensans_semibolditalic/opensans-semibolditalic.eot?#iefix') format('embedded-opentype'),
         url('fonts/opensans_semibolditalic/opensans-semibolditalic.woff2') format('woff2'),
         url('fonts/opensans_semibolditalic/opensans-semibolditalic.woff') format('woff'),
         url('fonts/opensans_semibolditalic/opensans-semibolditalic.svg#open_sanssemibold_italic') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'arimo_bolditalic';
    src: url('fonts/arimo_bolditalic/arimo-bolditalic.eot');
    src: url('fonts/arimo_bolditalic/arimo-bolditalic.eot?#iefix') format('embedded-opentype'),
         url('fonts/arimo_bolditalic/arimo-bolditalic.svg#arimobold_italic') format('svg'),
         url('fonts/arimo_bolditalic/arimo-bolditalic.ttf') format('truetype'),
         url('fonts/arimo_bolditalic/arimo-bolditalic.woff') format('woff'),
         url('fonts/arimo_bolditalic/arimo-bolditalic.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'arimo_bold';
    src: url('fonts/arimo_bold/arimo-bold.eot');
    src: url('fonts/arimo_bold/arimo-bold.eot?#iefix') format('embedded-opentype'),
         url('fonts/arimo_bold/arimo-bold.svg#arimo_bold') format('svg'),
         url('fonts/arimo_bold/arimo-bold.ttf') format('truetype'),
         url('fonts/arimo_bold/arimo-bold.woff') format('woff'),
         url('fonts/arimo_bold/arimo-bold.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'arimo_italic';
    src: url('fonts/arimo_italic/arimo-italic.eot');
    src: url('fonts/arimo_italic/arimo-italic.eot?#iefix') format('embedded-opentype'),
         url('fonts/arimo_italic/arimo-italic.svg#arimo_italic') format('svg'),
         url('fonts/arimo_italic/arimo-italic.ttf') format('truetype'),
         url('fonts/arimo_italic/arimo-italic.woff') format('woff'),
         url('fonts/arimo_italic/arimo-italic.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'arimo_regular';
    src: url('fonts/arimo_regular/arimo-regular.eot');
    src: url('fonts/arimo_regular/arimo-regular.eot?#iefix') format('embedded-opentype'),
         url('fonts/arimo_regular/arimo-regular.svg#arimoregular') format('svg'),
         url('fonts/arimo_regular/arimo-regular.ttf') format('truetype'),
         url('fonts/arimo_regular/arimo-regular.woff') format('woff'),
         url('fonts/arimo_regular/arimo-regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'montserrat_regular';
    src: url('/fonts/montserrat_regular/montserrat-regular.eot');
    src: url('/fonts/montserrat_regular/montserrat-regular.eot?#iefix') format('embedded-opentype'),
         url('/fonts/montserrat_regular/montserrat-regular.woff2') format('woff2'),
         url('/fonts/montserrat_regular/montserrat-regular.woff') format('woff'),
         url('/fonts/montserrat_regular/montserrat-regular.ttf') format('truetype'),
         url('/fonts/montserrat_regular/montserrat-regular.svg#montserrat_regular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'poetsen_oneregular';
    src: url('/fonts/poetsenone_regular/poetsenone-regular.eot');
    src: url('/fonts/poetsenone_regular/poetsenone-regular.eot?#iefix') format('embedded-opentype'),
         url('/fonts/poetsenone_regular/poetsenone-regular.woff2') format('woff2'),
         url('/fonts/poetsenone_regular/poetsenone-regular.woff') format('woff'),
         url('/fonts/poetsenone_regular/poetsenone-regular.ttf') format('truetype'),
         url('/fonts/poetsenone_regular/poetsenone-regular.svg#poetsen_oneregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'axaxax_bold';
    src: url('/fonts/axaxax_bold/axaxax.eot');
    src: url('/fonts/axaxax_bold/axaxax.eot?#iefix') format('embedded-opentype'),
         url('/fonts/axaxax_bold/axaxax.woff2') format('woff2'),
         url('/fonts/axaxax_bold/axaxax.woff') format('woff'),
         url('/fonts/axaxax_bold/axaxax.ttf') format('truetype'),
         url('/fonts/axaxax_bold/axaxax.svg#axaxax_bold') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'tektrron_regular';
    src: url('/fonts/tektrron_regular/tektrron.eot');
    src: url('/fonts/tektrron_regular/tektrron.eot?#iefix') format('embedded-opentype'),
         url('/fonts/tektrron_regular/tektrron.woff2') format('woff2'),
         url('/fonts/tektrron_regular/tektrron.woff') format('woff'),
         url('/fonts/tektrron_regular/tektrron.ttf') format('truetype'),
         url('/fonts/tektrron_regular/tektrron.svg#tektrron_regular') format('svg');
    font-weight: normal;
    font-style: normal;
}

/* Standard fonts */
.font_helvetica_neue {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.font_helvetica {
    font-family: Helvetica, Arial, sans-serif;
}
.font_arial {
    font-family: Arial, sans-serif;
}
.font_sans_serif {
    font-family: sans-serif;
}

/* Custom fonts */
.font_questrialregular {
    font-family: questrialregular, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.font_ralewaymedium {
    font-family: ralewaymedium, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.font_ralewaybold {
    font-family: ralewaybold, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.font_ralewaylight_italic {
    font-family: ralewaylight_italic, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.font_berner_basisschrift_1regular {
    font-family: berner_basisschrift_1regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.font_ralewayextralight {
    font-family: ralewayextralight, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.font_ralewayextrabold_italic {
    font-family: ralewayextrabold_italic, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.font_ralewayextrabold {
    font-family: ralewayextrabold, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.font_ralewaybold_italic {
    font-family: ralewaybold_italic, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.font_ralewayblack_italic {
    font-family: ralewayblack_italic, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.font_ralewayblack {
    font-family: ralewayblack, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.font_centurygothic {
    font-family: centurygothic, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.font_centurygothic_bold {
    font-family: centurygothic_bold, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.font_centurygothic_bolditalic {
    font-family: centurygothic_bolditalic, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.font_centurygothic_italic {
    font-family: centurygothic_italic, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.font_berner_basisschrift_2regular {
    font-family: berner_basisschrift_2regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.font_open_sansbold {
    font-family: open_sansbold, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.font_open_sansbold_italic {
    font-family: open_sansbold_italic, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.font_open_sansextrabold {
    font-family: open_sansextrabold, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.font_open_sansitalic {
    font-family: open_sansitalic, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.font_open_sanslight {
    font-family: open_sanslight, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.font_open_sanslight_italic {
    font-family: open_sanslight_italic, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.font_open_sansregular {
    font-family: open_sansregular, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.font_open_sanssemibold {
    font-family: open_sanssemibold, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.font_open_sanssemibold_italic {
    font-family: open_sanssemibold_italic, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.font_arimo_bolditalic {
    font-family: arimo_bolditalic, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.font_arimo_bold {
    font-family: arimo_bold, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.font_arimo_italic {
    font-family: arimo_italic, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.font_arimo_regular {
    font-family: arimo_regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.font_montserrat_regular {
    font-family: montserrat_regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.font_poetsen_oneregular {
    font-family: 'poetsen_oneregular', "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.font_axaxax_bold {
    font-family: axaxax_bold, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.font_tektrron_regular {
    font-family: tektrron_regular, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
