@charset "UTF-8";
/**
 * base stylesheet
 *
 * !!! As of 2021-09 potential updates of the underlying YAML framework
 * must only be merged selectively.
 * More modern approaches to e.g. LTR support need to be tweaked.
 *
 *
 * @author Marcel Pommer <marcel.pommer@flane.de>
 *
 * @copyright Copyright (c) 2007-2021 Fast Lane Institute for Knowledge Transfer
 * @since 2007
 */

/**
 * "Yet Another Multicolumn Layout" - YAML CSS Framework
 *
 * (en) YAML core stylesheet
 * (de) YAML Basis-Stylesheet
 *
 * Don't make any changes in this file!
 * Your changes should be placed in any css-file in your own stylesheet folder.
 *
 * @copyright       © 2005-2013, Dirk Jesse
 * @license         CC-BY 2.0 (http://creativecommons.org/licenses/by/2.0/),
 *                  YAML-CDL (http://www.yaml.de/license.html)
 * @link            http://www.yaml.de
 * @package         yaml
 * @version         4.1.2
 */

/*
 * with Flane CMS modifications...
 */

@media all {

    :root {
        --color-text: #333;
        --color-frm: #f4f4f4;
        --color-frm-req: #f99;
        --color-frm-ro: #777;
        --color-frm-foot: #ececec;
    }


    /**
     *  @section Normalisation Module
     */
    /* (en) Global reset of paddings and margins for all HTML elements */
    /* (de) Globales Zurücksetzen der Innen- und Außenabstände für alle HTML-Elemente */
    * {
        margin: 0;
        padding: 0;
    }

    /* (en) Correction: margin/padding reset caused too small select boxes. */
    /* (de) Korrektur: Das Zurücksetzen der Abstände verursacht zu kleine Selectboxen. */
    option {
        padding-left: 0.4em;
    }

    select {
        padding: 1px;
    }

    /*
    * (en) Global fix of the Italics bugs in IE 5.x and IE 6
    * (de) Globale Korrektur des Italics Bugs des IE 5.x und IE 6
    *
    * @bugfix
    * @affected   IE 5.x/Win, IE6
    * @css-for    IE 5.x/Win, IE6
    * @valid      yes
    */
    * html body * {
        overflow: visible;
    }

    /*
    * (en) Fix for rounding errors when scaling font sizes in older versions of Opera browser
    *      Standard values for colors and text alignment
    *
    * (de) Beseitigung von Rundungsfehler beim Skalieren von Schriftgrößen in älteren Opera Versionen
    *      Vorgabe der Standardfarben und Textausrichtung
    */
    body {
        font-size: 100%;
        background: #fff;
        color: #000;
        text-align: left;
    }

    /* (en) avoid visible outlines on DIV and h[x] elements in Webkit browsers */
    /* (de) Vermeidung sichtbarer Outline-Rahmen in Webkit-Browsern */
    div:target,
    h1:target,
    h2:target,
    h3:target,
    h4:target,
    h5:target,
    h6:target {
        outline: 0 none;
    }

    /* (en) HTML5 - adjusting visual formatting model to block level */
    /* (de) HTML5 - Elements werden als Blockelemente definiert */
    article,
    aside,
    details,
    figcaption,
    figure,
    footer,
    header,
    main,
    nav,
    section,
    summary {
        display: block;
    }

    /* (en) HTML5 - default media element styles */
    /* (de) HTML5 - Standard Eigenschaften für Media-Elemente */
    audio,
    canvas,
    video {
        display: inline-block;
    }

    /* (en) HTML5 - don't show <audio> element if there aren't controls */
    /* (de) HTML5 - <audio> ohne Kontrollelemente sollten nicht angezeigt werden */
    audio:not([controls]) {
        display: none;
    }

    /* (en) HTML5 - add missing styling in IE & old FF for hidden attribute */
    /* (de) HTML5 - Eigenschaften für das hidden-Attribut in älteren IEs und FF nachrüsten */
    [hidden] {
        display: none;
    }

    /* (en) Prevent iOS text size adjust after orientation change, without disabling user zoom. */
    /* (de) Verdindert die automatische Textanpassung bei Orientierungswechsel, ohne Zoom zu blockieren */
    html {
        -ms-text-size-adjust: 100%;
        -webkit-text-size-adjust: 100%;
    }

    /* (en) set correct box-modell in IE8/9 plus remove padding */
    /* (de) Setze das richtige Box-Modell im IE8/9 und entferne unnötiges Padding */
    input[type="checkbox"],
    input[type="radio"] {
        box-sizing: border-box;
        padding: 0;
    }

    /* (en) force consistant appearance of input[type="search"] elements in all browser */
    /* (de) Einheitliches Erscheinungsbild für input[type="search"] Elemente erzwingen */
    input[type="search"] {
        -webkit-appearance: textfield;
        -webkit-box-sizing: content-box;
        -moz-box-sizing: content-box;
        box-sizing: content-box;
    }

    input[type="search"]::-webkit-search-cancel-button,
    input[type="search"]::-webkit-search-decoration {
        -webkit-appearance: none;
    }

    /* (en) Correct overflow displayed oddly in IE 9 */
    /* (de) Korrigiert fehlerhafte overflow Voreinstellung des IE 9 */
    svg:not(:root) {
        overflow: hidden;
    }

    /* (en) Address margin not present in IE 8/9 and Safari 5 */
    /* (en) Ergänzt fehlenden Margin in IE 8/9 und Safari 5 */
    figure {
        margin: 0;
    }

    /* (en) Clear borders for <fieldset> and <img> elements */
    /* (de) Rahmen für <fieldset> und <img> Elemente löschen */
    fieldset,
    img {
        border: 0 solid;
    }

    /* (en) new standard values for lists, blockquote, cite and tables */
    /* (de) Neue Standardwerte für Listen, Zitate und Tabellen */
    ul,
    ol,
    dl {
        margin: 0 0 1em 1em;
    }

    li {
        line-height: 1.5em;
        margin-left: 0.8em;
    }

    dt {
        font-weight: bold;
    }

    dd {
        margin: 0 0 1em 0.8em;
    }

    blockquote {
        margin: 0 0 1em 0.8em;
    }

    q {
        quotes: initial;
    }

    blockquote:before,
    blockquote:after,
    q:before,
    q:after {
        content: '';
        content: none;
    }

    table {
        border-collapse: collapse;
        border-spacing: 0;
    }

    /**
    * @section Float Handling Module
    */
    /* (en) clearfix method for clearing floats */
    /* (de) Clearfix-Methode zum Clearen der Float-Umgebungen */
    .ym-clearfix:before {
        content: "";
        display: table;
    }

    .ym-clearfix:after {
        clear: both;
        content: ".";
        display: block;
        font-size: 0;
        height: 0;
        visibility: hidden;
    }

    /* (en) alternative solutions to contain floats */
    /* (de) Alternative Methoden zum Einschließen von Float-Umgebungen */
    .ym-contain-dt {
        display: table;
        table-layout: fixed;
        width: 100%;
    }

    .ym-contain-oh {
        display: block;
        overflow: hidden;
        width: 100%;
    }

    .ym-contain-fl {
        float: left;
        width: 100%;
    }

    /**
    * @section Column Module
    *
    * default column config:
    * |-------------------------------|
    * | col1    | col3      | col2    |
    * | 20%     | flexible  | 20%     |
    * |-------------------------------|
    */
    .ym-column {
        display: table;
        table-layout: fixed;
        width: 100%;
    }

    .ym-col1 {
        float: left;
        width: 20%;
    }

    .ym-col2 {
        float: right;
        width: 20%;
    }

    .ym-col3 {
        width: auto;
        margin: 0 20%;
    }

    .ym-cbox {
        padding: 0 10px;
    }

    .ym-cbox-left {
        padding: 0 10px 0 0;
    }

    .ym-cbox-right {
        padding: 0 0 0 10px;
    }

    /* (en) IE-Clearing: Only used in Internet Explorer, switched on in iehacks.css */
    /* (de) IE-Clearing: Benötigt nur der Internet Explorer und über iehacks.css zugeschaltet */
    .ym-ie-clearing {
        display: none;
    }

    /**
    * @section Grid Module
    */
    .ym-grid {
        display: table;
        table-layout: fixed;
        width: 100%;
        list-style-type: none;
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
    }

    .ym-gl {
        float: left;
        margin: 0;
    }

    .ym-gr {
        float: right;
        margin: 0 0 0 -5px;
    }

    .ym-g20 {
        width: 20%;
    }

    .ym-g40 {
        width: 40%;
    }

    .ym-g60 {
        width: 60%;
    }

    .ym-g80 {
        width: 80%;
    }

    .ym-g25 {
        width: 25%;
    }

    .ym-g33 {
        width: 33.333%;
    }

    .ym-g50 {
        width: 50%;
    }

    .ym-g66 {
        width: 66.666%;
    }

    .ym-g75 {
        width: 75%;
    }

    .ym-g38 {
        width: 38.2%;
    }

    .ym-g62 {
        width: 61.8%;
    }

    .ym-gbox {
        padding: 0 10px;
    }

    .ym-gbox-left {
        padding: 0 10px 0 0;
    }

    .ym-gbox-right {
        padding: 0 0 0 10px;
    }

    .ym-equalize {
        overflow: hidden;
    }

    .ym-equalize > [class*="ym-g"] {
        display: table-cell;
        float: none;
        margin: 0;
        vertical-align: top;
    }

    .ym-equalize > [class*="ym-g"] > [class*="ym-gbox"] {
        padding-bottom: 10000px;
        margin-bottom: -10000px;
    }

    /**
     * @section Flexgrid Module
     */
    .ym-flexgrid {
        box-sizing: border-box;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-content: stretch;
        display: -ms-flexbox;
        -ms-flex-direction: row;
        -ms-flex-pack: start;
        -ms-flex-align: stretch;
        -ms-flex-line-pack: justify;
        margin-left:-5px;
        margin-right:-5px;
    }

    .ym-flexgrid > div {
        box-sizing: border-box;
        flex-grow: 1;
        flex-shrink: 1;
        margin-left: 5px;
        margin-right: 5px;
    }
/*
    .ym-fgbox {
        margin: 0 10px;
    }

    .ym-fgbox-left {
        margin: 0 10px 0 0;
    }

    .ym-fgbox-right {
        margin: 0 0 0 10px;
    }
*/

    /**
    * @section Form Module
    */
    /** Vertical-Forms - technical base (standard)
    *
    * |-------------------------------|
    * | form                          |
    * |-------------------------------|
    * |   label                       |
    * |   input / select / textarea   |
    * |-------------------------------|
    * | /form                         |
    * |-------------------------------|
    *
    * (en) Styling of forms where both label and input/select/textarea are styled with display:block;
    * (de) Formulargestaltung, bei der sowohl label als auch input/select/textarea mit display:block; gestaltet werden
    */
    .ym-form,
    .ym-form fieldset {
        overflow: hidden;
    }

    .ym-form div {
        position: relative;
    }
    .ym-form label,
    .ym-form .ym-label,
    .ym-form .ym-message {
        position: relative;
        line-height: 1.5;
        display: block;
    }
    .ym-form .ym-message {
        clear: both;
    }
    .ym-form .ym-fbox-check label {
        display: inline;
    }
    .ym-form input,
    .ym-form textarea {
        cursor: text;
    }
    .ym-form .ym-fbox-check input,
    .ym-form input[type="image"],
    .ym-form input[type="radio"],
    .ym-form input[type="checkbox"],
    .ym-form select,
    .ym-form label {
        cursor: pointer;
    }
    .ym-form textarea {
        overflow: auto;
    }
    .ym-form input.hidden,
    .ym-form input[type=hidden] {
        display: none !important;
    }
    .ym-form .ym-fbox:before,
    .ym-form .ym-fbox-text:before,
    .ym-form .ym-fbox-select:before,
    .ym-form .ym-fbox-check:before,
    .ym-form .ym-fbox-button:before {
        content: "";
        display: table;
    }
    .ym-form .ym-fbox:after,
    .ym-form .ym-fbox-text:after,
    .ym-form .ym-fbox-select:after,
    .ym-form .ym-fbox-check:after,
    .ym-form .ym-fbox-button:after {
        clear: both;
        content: ".";
        display: block;
        font-size: 0;
        height: 0;
        visibility: hidden;
    }
    .ym-form .ym-fbox-check input:focus-visible,
    .ym-form .ym-fbox-check input:hover,
    .ym-form .ym-fbox-check input:active,
    .ym-form input[type="radio"]:focus-visible,
    .ym-form input[type="radio"]:hover,
    .ym-form input[type="radio"]:active,
    .ym-form input[type="checkbox"]:focus-visible,
    .ym-form input[type="checkbox"]:hover,
    .ym-form input[type="checkbox"]:active {
        border: 0 none;
    }
    .ym-form input,
    .ym-form textarea,
    .ym-form select {
        display: block;
        position: relative;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        width: 70%;
    }
    .ym-form .ym-fbox-check input,
    .ym-form input[type="radio"],
    .ym-form input[type="checkbox"] {
        display: inline;
        margin-left: 0;
        margin-right: 0.5ex;
        width: auto;
        height: auto;
    }
    .ym-form input[type="image"] {
        border: 0;
        display: inline;
        height: auto;
        margin: 0;
        padding: 0;
        width: auto;
    }
    .ym-form label,
    .ym-form .ym-label {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    .ym-form .ym-fbox-button input {
        display: inline;
        overflow: visible;
        width: auto;
    }
    .ym-form .ym-inline {
        display: inline-block;
        float: none;
        margin-right: 0;
        width: auto;
        vertical-align: baseline;
    }

    /* default form wrapper width */
    .ym-fbox-wrap {
        display: table;
        table-layout: fixed;
        width: 70%;
        padding: .3em 1em;
    }
    .ym-fbox-wrap input,
    .ym-fbox-wrap textarea,
    .ym-fbox-wrap select {
        width: 100%;
    }
    .ym-fbox-wrap input[type="image"] {
        width: auto;
    }
    .ym-fbox-wrap input[type="radio"],
    .ym-fbox-wrap input[type="checkbox"] {
        display: inline;
        width: auto;
        margin-left: 0;
        margin-right: 0.5ex;
    }
    .ym-fbox-wrap label,
    .ym-fbox-wrap .ym-label {
        display: inline;
    }

    .ym-full input,
    .ym-full textarea,
    .ym-full select {
        width: 100%;
    }
    .ym-full .ym-fbox-wrap {
        width: 100%;
    }

    /**
    *  Columnar forms display - technical base (optional)
    *
    *  |-------------------------------------------|
    *  | form                                      |
    *  |-------------------------------------------|
    *  |                                           |
    *  |   label   |   input / select / textarea   |
    *  |                                           |
    *  |-------------------------------------------|
    *  | /form                                     |
    *  |-------------------------------------------|
    *
    *  (en) Styling of forms where label floats left of form-elements
    *  (de) Formulargestaltung, bei der die label-Elemente nach links fließen
    */
    .ym-columnar input,
    .ym-columnar textarea,
    .ym-columnar select {
        float: left;
        margin-right: -3px;
    }
    .ym-columnar label,
    .ym-columnar .ym-label {
        display: inline;
        float: left;
        width: 30%;
        z-index: 1;
    }
    .ym-columnar .ym-fbox-check input,
    .ym-columnar .ym-message {
        margin-left: 30%;
    }
    .ym-columnar .ym-fbox-wrap {
        margin-left: 30%;
        margin-right: -3px;
    }
    .ym-columnar .ym-fbox-wrap .ym-message {
        margin-left: 0%;
    }
    .ym-columnar .ym-fbox-wrap label {
        float: none;
        width: auto;
        z-index: 1;
        margin-left: 0;
    }
    .ym-columnar .ym-fbox-wrap input {
        margin-left: 0;
        position: relative;
    }
    .ym-columnar .ym-fbox-check {
        position: relative;
    }
    .ym-columnar .ym-fbox-check label,
    .ym-columnar .ym-fbox-check .ym-label {
        padding-top: 0;
    }
    .ym-columnar .ym-fbox-check input {
        top: 3px;
    }
    .ym-columnar .ym-fbox-button input {
        float: none;
        margin-right: 1em;
    }

    .ym-fbox-wrap + .ym-fbox-wrap {
        margin-top: 0.5em;
    }

    /* global and local columnar settings for button alignment */
    .ym-columnar fieldset .ym-fbox-button,
    fieldset.ym-columnar .ym-fbox-button {
        padding-left: 30%;
    }

    /**
    * @section Accessibility Module
    *
    * (en) skip links and hidden content
    * (de) Skip-Links und versteckte Inhalte
    */
    /* (en) classes for invisible elements in the base layout */
    /* (de) Klassen für unsichtbare Elemente im Basislayout */
    .ym-skip,
    .ym-hideme,
    .ym-print {
        position: absolute;
        top: -32768px;
        left: -32768px;
    }

    /* (en) make skip links visible when using tab navigation */
    /* (de) Skip-Links für Tab-Navigation sichtbar schalten */
    .ym-skip:focus,
    .ym-skip:active {
        position: static;
        top: 0;
        left: 0;
    }

    /* skiplinks:technical setup */
    .ym-skiplinks {
        position: absolute;
        top: 0;
        left: -32768px;
        z-index: 1000;
        width: 100%;
        margin: 0;
        padding: 0;
        list-style-type: none;
    }
    .ym-skiplinks .ym-skip:focus,
    .ym-skiplinks .ym-skip:active {
        left: 32768px;
        outline: 0 none;
        position: absolute;
        width: 100%;
    }



    .ym-text-rtl{
        direction: rtl;
        text-align: right;
    }
}


@media print {
    /**
    * @section print adjustments for core modules
    *
    * (en) float containment for grids. Uses display:table to avoid bugs in FF & IE
    * (de) Floats in Grids einschließen. Verwendet display:table, um Darstellungsprobleme im FF & IE zu vermeiden
    *
    * @bugfix
    * @since     3.0
    * @affected  FF2.0, FF3.0, IE7
    * @css-for   all browsers
    * @valid     yes
    */
    .ym-grid > .ym-gl,
    .ym-grid > .ym-gr {
        overflow: visible;
        display: table;
        table-layout: fixed;
    }

    /* (en) make .ym-print class visible */
    /* (de) .ym-print-Klasse sichtbar schalten */
    .ym-print {
        position: static;
        left: 0;
    }

    /* (en) generic class to hide elements for print */
    /* (de) Allgemeine CSS Klasse, um beliebige Elemente in der Druckausgabe auszublenden */
    .ym-noprint {
        display: none !important;
    }
}


@media screen {
    /* force vertical scrollbar */
    body {
        overflow-y: scroll;
    }

    /* Layout Module Configuration */
    .ym-wrapper {
        max-width: 80em;
        margin: 0 auto;
    }

    .ym-wbox {
        padding: 1.5em;
    }

    /* fallback for missing media queries support*/
    body > header, body > nav, body > main, body > footer {
        min-width: 760px;
    }

    /* Basic Element Styling */
    header {
        background: #444;
        color: #ccc;
    }
    header h1 {
        background: transparent;
        color: #fff;
    }
    header .ym-wbox {
        padding: 1.5em;
    }

    nav {
        background: #222222;
    }

    main .info {
        margin-bottom: 1.5em;
    }
    main aside .ym-gbox-right {
        border-left: 1px #ddd solid;
    }

    footer {
        background: #eee;
        color: #444;
    }
    footer p {
        margin: 0;
    }
    footer .ym-wbox {
        padding: 1.5em;
    }

    .ym-gbox {
        padding: 0 1.5em;
    }

    .ym-gbox-left {
        padding: 0 1.5em 0 0;
    }

    .ym-gbox-right {
        padding: 0 0 0 1.5em;
    }

    /* skip links styling */
    .ym-skiplinks a.ym-skip:focus,
    .ym-skiplinks a.ym-skip:active {
        color: #fff;
        background: #333;
        border-bottom: 1px #000 solid;
        padding: 10px 0;
        text-align: center;
        text-decoration: none;
    }
}


/* reset fallback values in modern browsers */
@media screen and (min-width: 0px) {
    body > header, body > nav, body > main, body > footer {
        min-width: 0;
    }
}


@media screen and (max-width: 767.98px) {
    /* linearization for grids and columns module */
    .linearize-level-1, .linearize-level-1 > [class*="ym-c"], .linearize-level-1 > [class*="ym-g"] {
        display: block;
        float: none;
        padding: 0;
        margin: 0;
        width: 100% !important;
    }
    /* reset defined gutter values */
    .linearize-level-1 > [class*="ym-c"] > [class*="ym-cbox"], .linearize-level-1 > [class*="ym-g"] > [class*="ym-gbox"] {
        overflow: hidden; /* optional for containing floats */
        padding: 0;
        margin: 0;
    }
    .linearize-level-1 .ym-flexgrid {
        flex-wrap: wrap;
        -ms-flex-wrap: wrap;
    }

    .secondary {
        border-top: 1px #888 solid;
        margin-top: 1.5em !important;
        padding-top: 1.5em !important;
    }

    main aside .ym-gbox-right {
        border: 0 none;
    }

    .ym-searchform {
        display: block;
        float: none;
        width: auto;
        text-align: right;
    }

    .ym-searchform input[type="search"] {
        width: 14%;
    }
}


@media screen and (max-width: 479.98px) {
    /* linearization for grids and columns module */
    .linearize-level-2, .linearize-level-2 > [class*="ym-c"], .linearize-level-2 > [class*="ym-g"] {
        display: block;
        float: none;
        padding: 0;
        margin: 0;
        width: 100% !important;
    }
    /* reset defined gutter values */
    .linearize-level-2 > [class*="ym-c"] > [class*="ym-cbox"], .linearize-level-2 > [class*="ym-g"] > [class*="ym-gbox"] {
        overflow: hidden; /* optional for containing floats */
        padding: 0;
        margin: 0;
    }

    header .ym-wbox {
        padding: 0.75em 10px;
    }
    header h1 {
        font-size: 1.5em;
        line-height: 1em;
        margin: 0;
    }

    footer .ym-wbox,
    .ym-wbox,
    .ym-searchform,
    nav .ym-hlist ul {
        padding-left: 10px;
        padding-right: 10px;
    }

    .ym-searchform,
    nav .ym-hlist ul,
    nav .ym-hlist li {
        display: block;
        float: none;
        width: auto;
        text-align: left;
    }

    .ym-searchform input[type="search"] {
        width: 75%;
    }
}





/**
 * "Yet Another Multicolumn Layout" - YAML CSS Framework
 * YAML form theme: "gray-theme"
 *
 * @copyright       © 2005-2013, Dirk Jesse
 * @license         CC-BY 2.0 (http://creativecommons.org/licenses/by/2.0/),
 *                  YAML-CDL (http://www.yaml.de/license.html)
 * @link            http://www.yaml.de
 * @package         yaml
 * @version         4.1.2
 */
@media screen {
    .ym-form {
        background: #f4f4f4;
        margin: 0 0 1.5em 0;
    }

    .ym-form fieldset {
        position: static;
        background: transparent;
        margin: 0.75em 0 0.75em 0;
        padding: 0 0.5em;
    }

    .ym-form legend {
        background: transparent;
        color: #000;
        font-size: 1.2em;
        line-height: 1.25em;
        font-weight: bold;
        padding: 0 0.5em;
    }

    .ym-form label,
    .ym-form .ym-label {
        color: var(--color-text);
        line-height: 1.5;
        padding-top: 0.25em;
    }

    .ym-form .ym-fbox {
        padding: .3em 1em;
    }

    .ym-form .ym-fbox-footer {
        background: var(--color-frm-foot);
        border-top: 1px #e0e0e0 solid;
        padding: 1.5em 1em;
        margin: 0;
    }

    .ym-form .ym-fbox + .ym-fbox {
        margin: 0.5em 0;
    }
    /*
        .ym-form .ym-fbox:last-child {
            margin-bottom: 1em;
        }
    */
    .ym-form .ym-fbox + .ym-fbox-footer {
        margin: 1em 0 0 0;
    }

    .ym-form .ym-fbox :last-child,
    .ym-form .ym-fbox-footer :last-child {
        margin-bottom: 0;
    }

    .ym-form .ym-fbox-heading {
        font-size: 1em;
        font-size: 100%;
        color: #000;
        margin: 1em;
    }

    .ym-form .ym-fbox-check:focus-visible + label {
        color: #000;
    }

    .ym-form .ym-gbox-left {
        padding: 0 4px 0 0;
    }

    .ym-form .ym-gbox-right {
        padding: 0 0 0 4px;
    }

    .ym-form .ym-gbox {
        padding: 0 2px 0 2px;
    }

    /**
    * @section styling form elements
    *
    */
    .ym-form input,
    .ym-form textarea,
    .ym-form select {
        border: 1px solid #ddd;
        line-height: 1em;
        font-family: "Century Gothic", Arial, Helvetica, sans-serif;
/*
        -webkit-box-shadow: inset 0 0 4px #eeeeee;
        box-shadow: inset 0 0 4px #eeeeee;
 */
    }

    .ym-form input,
    .ym-form textarea {
        padding: 4px 0.3em;
    }

    .ym-form select {
        padding: 3px 2px 3px 1px;
    }

    .ym-form input:focus-visible,
    .ym-form select:focus-visible,
    .ym-form textarea:focus-visible,
    .ym-form input:hover,
    .ym-form select:hover,
    .ym-form textarea:hover,
    .ym-form input:active,
    .ym-form select:active,
    .ym-form textarea:active {
        border: 1px #888 solid;
        background: #fff;
    }

    .ym-form optgroup {
        font-family: "Century Gothic", Arial, Helvetica, sans-serif;
        font-style: normal;
        font-weight: bold;
    }

    .ym-form .ym-fbox-check input,
    .ym-form input[type="image"],
    .ym-form input[type="radio"],
    .ym-form input[type="checkbox"] {
        border: 0 none !important;
        background: transparent !important;
    }

    .ym-form .ym-message {
        color: #666;
        margin-bottom: 0.5em;
    }

    .ym-form .ym-required {
        color: #800;
        font-weight: bold;
    }

    .ym-form input:not([type="submit"]):not(.ym-error):valid,
    .ym-form textarea:not(.ym-error):valid,
    .ym-form select:not(.ym-error):valid {
        background-color: #fff;
        border-color: #ddd;
    }

    /*
    .ym-form input:invalid,
    .ym-form textarea:invalid {
        background-color: #fdd;
    }
    */

    .ym-form input[required=required],
    .ym-form textarea[required=required],
    .ym-form select[required=required] {
        border-color: #999;
    }

    .ym-form input.ym-error:invalid,
    .ym-form textarea.ym-error:invalid,
    .ym-form select.ym-error:invalid {
        border-color: var(--color-frm-req) !important;
    }

    .ym-form .ym-error label {
        color: #800;
        font-weight: normal;
    }

    .ym-form .ym-error input,
    .ym-form .ym-error textarea,
    .ym-form .ym-error select {
        border: 1px var(--color-frm-req) solid;
    }

    .ym-form .ym-error input:hover,
    .ym-form .ym-error input:focus-visible,
    .ym-form .ym-error textarea:hover,
    .ym-form .ym-error textarea:focus-visible,
    .ym-form .ym-error select:hover,
    .ym-form .ym-error select:focus-visible {
        border: 1px #f99 solid !important;
    }

    .ym-form .ym-error .ym-message {
        color: #800;
        font-weight: bold;
        margin-top: 0;
    }

    /**
    * @section Buttons
    * inspired from: Catalin Rosu (http://www.red-team-design.com/just-another-awesome-css3-buttons)
    */
    .ym-button,
    .ym-form button,
    .ym-form input[type="button"],
    .ym-form input[type="reset"],
    .ym-form input[type="submit"] {
        display: inline-block;
        white-space: nowrap;
/*
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #eeeeee), color-stop(100%, #cccccc));
        background-image: -webkit-linear-gradient(top, #eeeeee, #cccccc);
        background-image: -moz-linear-gradient(top, #eeeeee, #cccccc);
        background-image: -ms-linear-gradient(top, #eeeeee, #cccccc);
        background-image: linear-gradient(to bottom, #eeeeee, #cccccc);
        -webkit-box-shadow: 0 0 1px 1px rgba(255, 255, 255, 0.8) inset, 0 1px 0 rgba(0, 0, 0, 0.15);
        box-shadow: 0 0 1px 1px rgba(255, 255, 255, 0.8) inset, 0 1px 0 rgba(0, 0, 0, 0.15);
        border-radius: .2em;
        text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
        filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC');
 */
        background-color: #ccc;
        box-shadow: none;
        zoom: 1;
        border: 1px solid #777;
        color: #333;
        cursor: pointer;
        font: normal 1em/2em "Century Gothic", Arial, Helvetica;
        margin: 0 0.75em 0 0;
        padding: 0.3em 2em;
        overflow: visible;
        /* removes extra side spacing in IE */
        text-decoration: none !important;
    }

    .ym-button:hover,
    .ym-form button:hover,
    .ym-form input[type="button"]:hover,
    .ym-form input[type="reset"]:hover,
    .ym-form input[type="submit"]:hover {
/*
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fafafa), color-stop(100%, #dddddd));
        background-image: -webkit-linear-gradient(top, #fafafa, #dddddd);
        background-image: -moz-linear-gradient(top, #fafafa, #dddddd);
        background-image: -ms-linear-gradient(top, #fafafa, #dddddd);
        background-image: linear-gradient(to bottom, #fafafa, #dddddd);
        background-color: #fafafa;
        filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr='#FFFAFAFA', endColorstr='#FFDDDDDD');
 */
        background-color: #aaa;
        zoom: 1;
    }

    .ym-button:active,
    .ym-form button:active,
    .ym-form input[type="button"]:active,
    .ym-form input[type="reset"]:active,
    .ym-form input[type="submit"]:active {
/*        -webkit-box-shadow: inset 2px 2px 3px rgba(0, 0, 0, 0.2);
        box-shadow: inset 2px 2px 3px rgba(0, 0, 0, 0.2);
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #cccccc), color-stop(100%, #bbbbbb));
        background-image: -webkit-linear-gradient(top, #cccccc, #bbbbbb);
        background-image: -moz-linear-gradient(top, #cccccc, #bbbbbb);
        background-image: -ms-linear-gradient(top, #cccccc, #bbbbbb);
        background-image: linear-gradient(to bottom, #cccccc, #bbbbbb);
        background-color: #cccccc;
        filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr='#FFCCCCCC', endColorstr='#FFBBBBBB');
        top: 1px;
*/
        zoom: 1;
        position: relative;
    }

    .ym-button:focus-visible,
    .ym-form button:focus-visible,
    .ym-form input[type="button"]:focus-visible,
    .ym-form input[type="reset"]:focus-visible,
    .ym-form input[type="submit"]:focus-visible {
        outline-offset: 1px;
        outline-width: 1px;
        outline-style: solid;
        background: #fafafa;
    }

    /* Button size-scaling classes */
    .ym-button {
        /* 21px */
        /* 18px */
        /* 12px */
        /* 10px */
    }

    .ym-button.ym-xlarge {
        font-size: 1.5em;
    }

    .ym-button.ym-large {
        font-size: 1.2857em;
    }

    .ym-button.ym-small {
        font-size: 0.8571em;
    }

    .ym-button.ym-xsmall {
        font-size: 0.7143em;
    }

    /* Button color scheme: primary */
    .ym-button.ym-primary,
    .ym-form button.ym-primary,
    .ym-form input[type="button"].ym-primary,
    .ym-form input[type="reset"].ym-primary,
    .ym-form input[type="submit"].ym-primary {
/*
        -webkit-box-shadow: 0 0 1px 1px rgba(255, 255, 255, 0.3) inset, 0 1px 0 rgba(0, 0, 0, 0.15);
        box-shadow: 0 0 1px 1px rgba(255, 255, 255, 0.3) inset, 0 1px 0 rgba(0, 0, 0, 0.15);
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #db2843), color-stop(100%, #db002d));
        background-image: -webkit-linear-gradient(top, #db2843, #db002d);
        background-image: -moz-linear-gradient(top, #db2843, #db002d);
        background-image: -ms-linear-gradient(top, #db2843, #db002d);
        background-image: linear-gradient(to bottom, #db2843, #db002d);
        background-color: #db002d;
        filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr='#db2843EE', endColorstr='#db002dCC');
        text-shadow: 0 1px 0 rgba(0, 0, 0, 0.8);
*/
        zoom: 1;
        border: 1px solid #007;
        color: #fff !important;
    }

        .ym-button.ym-primary:hover,
    .ym-form button.ym-primary:hover,
    .ym-form input[type="button"].ym-primary:hover,
    .ym-form input[type="reset"].ym-primary:hover,
    .ym-form input[type="submit"].ym-primary:hover {
/*
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #db334c), color-stop(100%, #db002d));
        background-image: -webkit-linear-gradient(top, #db334c, #db002d);
        background-image: -moz-linear-gradient(top, #db334c, #db002d);
        background-image: -ms-linear-gradient(top, #db334c, #db002d);
        background-image: linear-gradient(to bottom, #db334c, #db002d);
        background-color: #db002d;
        filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr='#db334cEE', endColorstr='#db002dCC');
*/
        zoom: 1;
    }

    .ym-button.ym-primary:active,
    .ym-form button.ym-primary:active,
    .ym-form input[type="button"].ym-primary:active,
    .ym-form input[type="reset"].ym-primary:active,
    .ym-form input[type="submit"].ym-primary:active {
/*
        -webkit-box-shadow: inset 2px 2px 3px rgba(0, 0, 0, 0.2);
        box-shadow: inset 2px 2px 3px rgba(0, 0, 0, 0.2);
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #db334c), color-stop(100%, #db002d));
        background-image: -webkit-linear-gradient(top, #db334c, #db002d);
        background-image: -moz-linear-gradient(top, #db334c, #db002d);
        background-image: -ms-linear-gradient(top, #db334c, #db002d);
        background-image: linear-gradient(to bottom, #db334c, #db002d);
        background-color: #db002d;
        filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr='#db334cEE', endColorstr='#db002dCC');
*/
        zoom: 1;
    }

    .ym-button.ym-primary:focus-visible,
    .ym-form button.ym-primary:focus-visible,
    .ym-form input[type="button"].ym-primary:focus-visible,
    .ym-form input[type="reset"].ym-primary:focus-visible,
    .ym-form input[type="submit"].ym-primary:focus-visible {
        outline: 0;
        background: #88f;
    }

    /* Button color scheme: success */
    .ym-button.ym-success,
    .ym-form button.ym-success,
    .ym-form input[type="button"].ym-success,
    .ym-form input[type="reset"].ym-success,
    .ym-form input[type="submit"].ym-success {
/*
        -webkit-box-shadow: 0 0 1px 1px rgba(255, 255, 255, 0.3) inset, 0 1px 0 rgba(0, 0, 0, 0.15);
        box-shadow: 0 0 1px 1px rgba(255, 255, 255, 0.3) inset, 0 1px 0 rgba(0, 0, 0, 0.15);
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #66bb66), color-stop(100%, #449944));
        background-image: -webkit-linear-gradient(top, #66bb66, #449944);
        background-image: -moz-linear-gradient(top, #66bb66, #449944);
        background-image: -ms-linear-gradient(top, #66bb66, #449944);
        background-image: linear-gradient(to bottom, #66bb66, #449944);
        background-color: #66bb66;
        filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr='#FF66BB66', endColorstr='#FF449944');
        text-shadow: 0 1px 0 rgba(0, 0, 0, 0.8);
*/
        zoom: 1;
        border: 1px solid #070;
        color: #fff !important;
    }

    .ym-button.ym-success:hover,
    .ym-form button.ym-success:hover,
    .ym-form input[type="button"].ym-success:hover,
    .ym-form input[type="reset"].ym-success:hover,
    .ym-form input[type="submit"].ym-success:hover {
/*
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #66cc66), color-stop(100%, #55aa55));
        background-image: -webkit-linear-gradient(top, #66cc66, #55aa55);
        background-image: -moz-linear-gradient(top, #66cc66, #55aa55);
        background-image: -ms-linear-gradient(top, #66cc66, #55aa55);
        background-image: linear-gradient(to bottom, #66cc66, #55aa55);
        background-color: #66cc66;
        filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr='#FF66CC66', endColorstr='#FF55AA55');
 */
        zoom: 1;
    }

    .ym-button.ym-success:active,
    .ym-form button.ym-success:active,
    .ym-form input[type="button"].ym-success:active,
    .ym-form input[type="reset"].ym-success:active,
    .ym-form input[type="submit"].ym-success:active {
/*
        -webkit-box-shadow: inset 2px 2px 3px rgba(0, 0, 0, 0.2);
        box-shadow: inset 2px 2px 3px rgba(0, 0, 0, 0.2);
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #66aa66), color-stop(100%, #448844));
        background-image: -webkit-linear-gradient(top, #66aa66, #448844);
        background-image: -moz-linear-gradient(top, #66aa66, #448844);
        background-image: -ms-linear-gradient(top, #66aa66, #448844);
        background-image: linear-gradient(to bottom, #66aa66, #448844);
        background-color: #66aa66;
        filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr='#FF66AA66', endColorstr='#FF448844');
*/
        zoom: 1;
    }

    .ym-button.ym-success:focus-visible,
    .ym-form button.ym-success:focus-visible,
    .ym-form input[type="button"].ym-success:focus-visible,
    .ym-form input[type="reset"].ym-success:focus-visible,
    .ym-form input[type="submit"].ym-success:focus-visible {
        outline: 0;
        background: #6c6;
    }

    /* Button color scheme: warning */
    .ym-button.ym-warning,
    .ym-form button.ym-warning,
    .ym-form input[type="button"].ym-warning,
    .ym-form input[type="reset"].ym-warning,
    .ym-form input[type="submit"].ym-warning {
/*
        -webkit-box-shadow: 0 0 1px 1px rgba(255, 255, 255, 0.3) inset, 0 1px 0 rgba(0, 0, 0, 0.15);
        box-shadow: 0 0 1px 1px rgba(255, 255, 255, 0.3) inset, 0 1px 0 rgba(0, 0, 0, 0.15);
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ddaa44), color-stop(100%, #bb7722));
        background-image: -webkit-linear-gradient(top, #ddaa44, #bb7722);
        background-image: -moz-linear-gradient(top, #ddaa44, #bb7722);
        background-image: -ms-linear-gradient(top, #ddaa44, #bb7722);
        background-image: linear-gradient(to bottom, #ddaa44, #bb7722);
        background-color: #ddaa44;
        filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr='#FFDDAA44', endColorstr='#FFBB7722');
        text-shadow: 0 1px 0 rgba(0, 0, 0, 0.8);
*/
        zoom: 1;
        border: 1px solid #970;
        color: #fff !important;
    }

    .ym-button.ym-warning:hover,
    .ym-form button.ym-warning:hover,
    .ym-form input[type="button"].ym-warning:hover,
    .ym-form input[type="reset"].ym-warning:hover,
    .ym-form input[type="submit"].ym-warning:hover {
/*
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #eebb55), color-stop(100%, #cc8833));
        background-image: -webkit-linear-gradient(top, #eebb55, #cc8833);
        background-image: -moz-linear-gradient(top, #eebb55, #cc8833);
        background-image: -ms-linear-gradient(top, #eebb55, #cc8833);
        background-image: linear-gradient(to bottom, #eebb55, #cc8833);
        background-color: #eebb55;
        filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr='#FFEEBB55', endColorstr='#FFCC8833');
*/
        zoom: 1;
    }

    .ym-button.ym-warning:active,
    .ym-form button.ym-warning:active,
    .ym-form input[type="button"].ym-warning:active,
    .ym-form input[type="reset"].ym-warning:active,
    .ym-form input[type="submit"].ym-warning:active {
/*
        -webkit-box-shadow: inset 2px 2px 3px rgba(0, 0, 0, 0.2);
        box-shadow: inset 2px 2px 3px rgba(0, 0, 0, 0.2);
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #cc9944), color-stop(100%, #aa6622));
        background-image: -webkit-linear-gradient(top, #cc9944, #aa6622);
        background-image: -moz-linear-gradient(top, #cc9944, #aa6622);
        background-image: -ms-linear-gradient(top, #cc9944, #aa6622);
        background-image: linear-gradient(to bottom, #cc9944, #aa6622);
        background-color: #cc9944;
        filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr='#FFCC9944', endColorstr='#FFAA6622');
  */
        zoom: 1;
    }

    .ym-button.ym-warning:focus-visible,
    .ym-form button.ym-warning:focus-visible,
    .ym-form input[type="button"].ym-warning:focus-visible,
    .ym-form input[type="reset"].ym-warning:focus-visible,
    .ym-form input[type="submit"].ym-warning:focus-visible {
        outline: 0;
        background: #da4;
    }

    /* Button color scheme: danger */
    .ym-button.ym-danger,
    .ym-form button.ym-danger,
    .ym-form input[type="button"].ym-danger,
    .ym-form input[type="reset"].ym-danger,
    .ym-form input[type="submit"].ym-danger {
  /*
        -webkit-box-shadow: 0 0 1px 1px rgba(255, 255, 255, 0.3) inset, 0 1px 0 rgba(0, 0, 0, 0.15);
        box-shadow: 0 0 1px 1px rgba(255, 255, 255, 0.3) inset, 0 1px 0 rgba(0, 0, 0, 0.15);
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #bb6666), color-stop(100%, #994444));
        background-image: -webkit-linear-gradient(top, #bb6666, #994444);
        background-image: -moz-linear-gradient(top, #bb6666, #994444);
        background-image: -ms-linear-gradient(top, #bb6666, #994444);
        background-image: linear-gradient(to bottom, #bb6666, #994444);
        background-color: #bb6666;
        filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr='#FFBB6666', endColorstr='#FF994444');
        text-shadow: 0 1px 0 rgba(0, 0, 0, 0.8);
*/
        zoom: 1;
        border: 1px solid #700;
        color: #fff !important;
    }

    .ym-button.ym-danger:hover,
    .ym-form button.ym-danger:hover,
    .ym-form input[type="button"].ym-danger:hover,
    .ym-form input[type="reset"].ym-danger:hover,
    .ym-form input[type="submit"].ym-danger:hover {
/*
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #cc6666), color-stop(100%, #aa5555));
        background-image: -webkit-linear-gradient(top, #cc6666, #aa5555);
        background-image: -moz-linear-gradient(top, #cc6666, #aa5555);
        background-image: -ms-linear-gradient(top, #cc6666, #aa5555);
        background-image: linear-gradient(to bottom, #cc6666, #aa5555);
        background-color: #cc6666;
        filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr='#FFCC6666', endColorstr='#FFAA5555');
*/
        zoom: 1;
    }

    .ym-button.ym-danger:active,
    .ym-form button.ym-danger:active,
    .ym-form input[type="button"].ym-danger:active,
    .ym-form input[type="reset"].ym-danger:active,
    .ym-form input[type="submit"].ym-danger:active {
/*
        -webkit-box-shadow: inset 2px 2px 3px rgba(0, 0, 0, 0.2);
        box-shadow: inset 2px 2px 3px rgba(0, 0, 0, 0.2);
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #aa5555), color-stop(100%, #884444));
        background-image: -webkit-linear-gradient(top, #aa5555, #884444);
        background-image: -moz-linear-gradient(top, #aa5555, #884444);
        background-image: -ms-linear-gradient(top, #aa5555, #884444);
        background-image: linear-gradient(to bottom, #aa5555, #884444);
        background-color: #aa5555;
        filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr='#FFAA5555', endColorstr='#FF884444');
  */
        zoom: 1;
    }

    .ym-button.ym-danger:focus-visible,
    .ym-form button.ym-danger:focus-visible,
    .ym-form input[type="button"].ym-danger:focus-visible,
    .ym-form input[type="reset"].ym-danger:focus-visible,
    .ym-form input[type="submit"].ym-danger:focus-visible {
        outline: 0;
        background: #c66;
    }

    /* pseudo elements don't work on input
    .ym-form button:before,
    .ym-button:before {
        background: #ccc;
        background: rgba(0, 0, 0, 0.1);
        float: left;
        width: 1em;
        text-align: center;
        font-size: 1.5em;
        margin: 0 1em 0 -1em;
        padding: 0 .2em;
        -webkit-box-shadow: 1px 0 0 rgba(0, 0, 0, 0.5), 2px 0 0 rgba(255, 255, 255, 0.5);
        box-shadow: 1px 0 0 rgba(0, 0, 0, 0.5), 2px 0 0 rgba(255, 255, 255, 0.5);
        border-radius: .15em 0 0 .15em;
        pointer-events: none;
    }
*/
    .ym-add:before {
        content: "\271A";
    }

    .ym-delete:before {
        content: "\2718";
    }

    .ym-close:before {
        content: "\2715";
    }

    .ym-edit:before {
        content: "\270E";
    }

    .ym-email:before {
        content: "\2709";
    }

    .ym-like:before {
        content: "\2764";
    }

    .ym-next:before {
        content: "\279C";
    }

    .ym-play:before {
        content: "\25B6";
    }

    .ym-reply:before {
        content: "\27A5";
    }

    .ym-save:before {
        content: "\2714";
    }

    .ym-sign:before {
        content: "\270D";
    }

    .ym-spark:before {
        content: "\2737";
    }

    .ym-support:before {
        content: "\2706";
    }

    .ym-star:before {
        content: "\2605";
    }

    /* removes extra inner spacing in Firefox */
    .ym-form button::-moz-focus-inner {
        border: 0;
        padding: 0;
    }

    /* If line-height can't be modified, then fix Firefox spacing with padding */
    .ym-form input[type=button]::-moz-focus-inner,
    .ym-form input[type=reset]::-moz-focus-inner,
    .ym-form input[type=submit]::-moz-focus-inner {
        padding: .4em;
    }

    /* The disabled styles */
    .ym-form button[disabled],
    .ym-form button[disabled]:hover,
    .ym-form input[type=button][disabled],
    .ym-form input[type=button][disabled]:hover,
    .ym-form input[type=reset][disabled],
    .ym-form input[type=reset][disabled]:hover,
    .ym-form input[type=submit][disabled],
    .ym-form input[type=submit][disabled]:hover,
    .ym-button.ym-disabled,
    .ym-button.ym-disabled:hover {
        background: #eee;
        color: #aaa !important;
        border-color: #aaa;
        cursor: default;
        text-shadow: none;
        position: static;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    /* ie6 support styles - redefined buttons, because of missing support for attribute selectors */
    * html .ym-button,
    * html .ym-form button {
        display: inline-block;
        white-space: nowrap;
        background-color: #ccc;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#eeeeee', EndColorStr='#cccccc');
        border: 1px solid #777;
        color: #333 !important;
        cursor: pointer;
        font: normal 1em/2em "Century Gothic", Arial, Helvetica;
        margin: 1.5em 0.75em 0 0;
        padding: 0 1.5em;
        overflow: visible;
        /* removes extra side spacing in IE */
        text-decoration: none !important;
    }

    * html .ym-form button:focus-visible,
    * html .ym-button:focus-visible {
        outline: 0;
        background: #fafafa;
    }

    * html .ym-form button:hover,
    * html .ym-button:hover {
        background-color: #ddd;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#fafafa', EndColorStr='#dddddd');
    }

    * html .ym-form button:active,
    * html .ym-button:active {
        background-color: #bbb;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#cccccc', EndColorStr='#bbbbbb');
        position: relative;
        top: 1px;
    }

    * html .ym-button.ym-disabled,
    * html .ym-button.ym-disabled:hover {
        background: #eee;
        color: #aaa !important;
        border-color: #aaa;
        cursor: default;
        text-shadow: none;
        position: static;
    }

    * html .ym-button {
        /* Button size-scaling classes */
        /* 21px */
        /* 18px */
        /* 12px */
        /* 10px */
    }

    * html .ym-button.ym-primary {
        filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#8888ee', EndColorStr='#6666cc');
    }

    * html .ym-button.ym-success {
        filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#66bb66', EndColorStr='#449944');
    }

    * html .ym-button.ym-warning {
        filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#ddaa44', EndColorStr='#BB7722');
    }

    * html .ym-button.ym-danger {
        filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#bb6666', EndColorStr='#994444');
    }

    * html .ym-button.ym-xlarge {
        font-size: 1.5em;
    }

    * html .ym-button.ym-large {
        font-size: 1.2857em;
    }

    * html .ym-button.ym-small {
        font-size: 0.8571em;
    }

    * html .ym-button.ym-xsmall {
        font-size: 0.7143em;
    }
}
/**
 * default stylesheet
 *
 * !!! As of 2021-09
 * potential updates of the underlying YAML framework must only be merged selectively,
 * which is unlikely as YAML has been unmaintained since 2013.
 * More modern approaches to e.g. LTR support need to be tweaked.
 *
 * migration to bootstrap 4.6 is the mid-term goal.
 *
 * remember, the selector order is:
 *  Value defined as Important > Inline > id nesting > id > class nesting > class > tag nesting > tag
 *
 * @author Marcel Pommer <marcel.pommer@flane.de>
 *
 * @copyright Copyright (c) 2007-2025 Fast Lane Institute for Knowledge Transfer
 * @since 2007
 */

/**
 * @package Flaneweb
 *
 * base css modifications for yaml layout 1-3-2
 */
@media all {

    *,
    *::before,
    *::after {
        box-sizing: border-box;
        -webkit-box-sizing: border-box;
        -moz-box-sizing:border-box;
    }

    /* (en) Layout: width, background, borders */
    /* (de) Layout: Breite, Hintergrund, Rahmen */
    .ym-wrapper {
        min-width: 980px;
        width: 980px;
        background: transparent;
        border-width: 0;
        padding: 0;
        text-align: left;
        text-align: start !important;
    }

    .ym-wbox {
        padding: 0;
        margin: 0;
/*
        border-width: 0 10px;
        border-style: solid;
        border-color: transparent;
*/
    }

    header .ym-wbox {
        padding: 0;
    }

/* @todo how to add classes to body from templates?
    body.fullwidth .ym-wrapper {
        width: 100%;
        overflow-x: hidden;
        margin: 0;
    }

    body.fullwidth .ym-wbox,
    .ym-wbox-full {
        width: 100%;
        overflow-x: hidden;
        border-width: 0;
    }
*/

    /* (en) Centering layout in old IE-versions */
    /* (de) Zentrierung des Layouts in alten IE-versionen */
    body {
        text-align: center;
    }

    body {
        -webkit-hyphens: manual;
        -ms-hyphens: manual;
        hyphens: manual;
    }

    :root {
        /**
         * custom colours
         * @see  conf/cms_articlefactory.php
         */
        --color-text: #333;
        --color-text-light: #555;
        --color-bg-hilite: #ff7;
        --color-text-hilite: #555;
        --color-defaultlink: #a80f29;
        --color-defaultbg: #eee;
        --color-flanered: #a80f29;
        --color-flaneblue: #05a0b9;
        --color-separate: #aaa;
        --color-flexgreen: #1c8012;
        --color-link: #a80f29;
        --color-link-visited: #a80f29;
        --color-link-hover: #a80f29;
        --color-link-active: #a80f29;
        --color-link-compl: white;
        --color-secnav-top: #a80f29;
        --color-secnav-top-item: #a80f29;
        --color-secnav-top-text: #f0f0f0;

        --color-mnu-main-hover: #a84040;
        --color-mnu-main-hover-grad: #702b2b;

        --color-footer: #f3f2f1;
        --color-footer-2: #dddcdb;

        --color-header: #f3f2f1;

        /**
         * vendor colours
         */
        --color-arubaorange: #ff8000;
        --color-awsyellow: #fba738;
        --color-checkpointpink: #e65684;
        --color-ciscoblue: #296a80;
        --color-comptiared: #ee3224;
        --color-junipergreen: #84b135;
        --color-juniperteal: #3493c1;
        --color-microsoftdarkgray: #2f2f2f;
        --color-microsoftredorange: #f16522;
        --color-microsoftteal: #30e5d0;
        --color-microsoftyellow: #ffb900;
        --color-microsoftblue: #0078d4;
        --color-netappblue: #0657a8;
        --color-paloaltogreen: #75b604;
        --color-ruckusorange: #df7401;
        --color-symantecyellow: #fad31;
        --color-veritasred: #b1181e;
        --color-vmwareblue: #5797cf;

        --breakpoint-xs: 0;
        --breakpoint-sm: 480px; /*  becomes 576 in bootstrap */
        --breakpoint-md: 768px;
        --breakpoint-lg: 992px;
        --breakpoint-xl: 1200px;

        --header-height: 89px;
        --footer-height: 91px;

        --border-mnu-main-hover-top: 5px;

        --color-btn-primary: #05A0B9;
        --color-btn-primary-2: #037E92;

        --color-frm-fld-focus: #2765F5;
        --color-frm-req: #D91E28;
    }




    /* latin-ext */
    @font-face {
        font-family: 'IBM Plex Sans';
        font-style: normal;
        font-weight: 400;
        src: url(font/ibmplexsans/zYXgKVElMYYaJe8bpLHnCwDKhd_eFb5N.woff2) format('woff2');
        unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
    }
    @font-face {
        font-family: 'IBM Plex Sans';
        font-style: normal;
        font-weight: 700;
        font-display: swap;
        src: url(font/ibmplexsans/zYX9KVElMYYaJe8bpLHnCwDKjWr7AI9sdO_q.woff2) format('woff2');
        unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
    }
    @font-face {
        font-family: 'IBM Plex Sans';
        font-style: italic;
        font-weight: 400;
        src: url(https://fonts.gstatic.com/s/ibmplexsans/v19/zYX-KVElMYYaJe8bpLHnCwDKhdTuGaZJSdY.woff2) format('woff2');
        unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
    }
    /* latin */
    @font-face {
        font-family: 'IBM Plex Sans';
        font-style: normal;
        font-weight: 400;
        src: url(font/ibmplexsans/zYXgKVElMYYaJe8bpLHnCwDKhdHeFQ.woff2) format('woff2');
        unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
    }
    @font-face {
        font-family: 'IBM Plex Sans';
        font-style: normal;
        font-weight: 700;
        font-display: swap;
        src: url(font/ibmplexsans/zYX9KVElMYYaJe8bpLHnCwDKjWr7AIFsdA.woff2) format('woff2');
        unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
    }
    @font-face {
        font-family: 'IBM Plex Sans';
        font-style: italic;
        font-weight: 400;
        src: url(https://fonts.gstatic.com/s/ibmplexsans/v19/zYX-KVElMYYaJe8bpLHnCwDKhdTuF6ZJ.woff2) format('woff2');
        unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
    }
    /* greek
    @font-face {
        font-family: 'IBM Plex Sans';
        font-style: normal;
        font-weight: 400;
        src: url(font/ibmplexsans/zYXgKVElMYYaJe8bpLHnCwDKhdLeFb5N.woff2) format('woff2');
        unicode-range: U+0370-03FF;
    }
    @font-face {
        font-family: 'IBM Plex Sans';
        font-style: normal;
        font-weight: 700;
        font-display: swap;
        src: url(https://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjWr7AIJsdO_q.woff2) format('woff2');
        unicode-range: U+0370-03FF;
    }
    @font-face {
        font-family: 'IBM Plex Sans';
        font-style: italic;
        font-weight: 400;
        src: url(https://fonts.gstatic.com/s/ibmplexsans/v19/zYX-KVElMYYaJe8bpLHnCwDKhdTuFKZJSdY.woff2) format('woff2');
        unicode-range: U+0370-03FF;
    }
    */
    /* vietnamese
    @font-face {
        font-family: 'IBM Plex Sans';
        font-style: normal;
        font-weight: 400;
        src: url(font/ibmplexsans/zYXgKVElMYYaJe8bpLHnCwDKhd7eFb5N.woff2) format('woff2');
        unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
    }
    @font-face {
        font-family: 'IBM Plex Sans';
        font-style: normal;
        font-weight: 700;
        font-display: swap;
        src: url(https://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjWr7AI5sdO_q.woff2) format('woff2');
        unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
    }
    @font-face {
        font-family: 'IBM Plex Sans';
        font-style: italic;
        font-weight: 400;
        src: url(https://fonts.gstatic.com/s/ibmplexsans/v19/zYX-KVElMYYaJe8bpLHnCwDKhdTuGKZJSdY.woff2) format('woff2');
        unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
    }
    */

}




/**
 * @package CMS
 */
@media screen {

    .ym-skiplinks a.ym-skip:focus,
    .ym-skiplinks a.ym-skip:active {
        color: #fff;
        background: #333;
        border-bottom: 1px #000 solid;
        padding: 10px 0;
        text-align: center;
        text-decoration: none;
    }

    .hidden,
    .truncate_extra {
        display: none !important;
    }

    .ym-col1 {
        width: 195px;
        padding: 0;
    }
    .ym-col2 {
        width: 210px;
    }
    .ym-col3 {
        padding: 0;
        margin: 0;
        border: 0;
    }

    .ym-cbox {
        padding: 0;
    }

    .hidenone .ym-col3 {
        margin: 0 210px 0 195px;
    }

    .hidecol1 .ym-col3  {
        margin: 0 210px 0 0;
    }

    .hidecol2 .ym-col3 {
        margin: 0 0 0 195px;
    }

    .hideboth .ym-col1,
    .hideboth .ym-col2 {
        display: none;
    }

    .hidecol1 .ym-col1,
    .hidecol2 .ym-col2 {
        display: none;
    }

    #main {
        margin-bottom: 1rem;
    }

    #wrap_outer {
        position:relative;
        min-height: 100vh;
    }

    #wrap {
        padding-bottom: var(--footer-height);
        min-height: 100%;
    }
/*
    .push {
        height: 91px;
    }

    /**
     * additional grid cell widths
     */
    .ym-g10 {
        width: 10%;
    }

    .ym-g15 {
        width: 15%;
    }

    /**
     * adjust grid spacing
     */
    .ym-gbox {
        padding:0;
        margin: 0 6px;
    }

    .ym-gbox-left {
        padding:0;
        margin: 0 6px 0 0;
    }

    .ym-gbox-right {
        padding:0;
        margin: 0 0 0 6px;
    }

}




/**
 * @package CMS
 *
 * cms content basics
 */
@media all {

    html {
        font-family: "IBM Plex Sans", sans-serif;
        font-size: 10pt;
        line-height: 1.5em;
    }

    body {
        color: #333;
        color: var(--color-text);
    }

    ul, ol {
        list-style-position: outside;
        list-style-type: none;
    }

    fieldset, img {
        border: 0;
    }

    figure {
        margin: auto;
    }

    figcaption {
        font-size: 0.8em;
        padding: 0.8em 0.5em 0.5em 0.5em;
    }

    .cms-wrap-svg {
        display: block;
    }

    img,svg {
        max-width: 100%;
    }

    body {
        background-color: white;
    }

    nav, #topnav, #search, .ym-searchform {
        background: transparent;
    }

    /**
     * Tables
     */
    table {
        width: 100%;
        border-collapse: collapse;
        color: #444444;
        border-top: 1px #ccc solid;
        border-bottom: 1px #ccc solid;
    }

    .narrowtable {
        margin: 0 0 1.42857em 0;
    }

    .narrowtable th,
    .narrowtable td {
        padding: 0 0.5em;
        line-height: 1.42857;
    }

    .fixedtable {
        table-layout: fixed;
    }

    .bordertable {
        border: 1px #ccc solid;
    }

    .bordertable thead th {
        background: #ccc;
        border-bottom: 1px #ccc solid;
    }

    .bordertable thead th:not(:last-child){
        border-right: 1px #e7e7e7 solid;
    }

    .bordertable tbody th[scope="row"] {
        background: #f0f0f0;
    }

    .bordertable tbody th,
    .linetable tbody th {
        border-right: 1px solid #ccc;
    }

    .bordertable tbody td,
    .linetable tbody td  {
        border-right: 1px solid #ccc;
    }

    caption {
        font-variant: small-caps;
    }

    th,
    td {
        line-height: 1.3em;
        vertical-align: top;
        padding: 0.4em 0.3em;
    }

    th {
        text-align: unset;
    }

    th *:first-child,
    td *:first-child {
        margin-top: 0;
    }

    th.nowrap,
    td.nowrap {
        white-space: nowrap;
    }

    thead th {
        color: #000;
        border-bottom: 2px #000 solid;
    }

    tbody {
        /* highlight row on mouse over */
    }

    .bordertable tbody th {
        border-top: 1px solid #ccc;
    }

    .bordertable tbody td {
        border-top: 1px solid #ccc;
    }

    .hltable tbody tr:hover th,
    .hltable tbody tr:hover td {
        background: #f8f8f8;
    }

    td.colhl,
    th.colhl {
        background-color: #e6ebef;
    }

    .cms-view-art table,
    .cms-view-art .ym-grid,
    .cms-view-art .ym-flexgrid,
    .cms-view-art .cms-widg {
        margin-bottom: 1rem;
    }

    .cms-view-art.cms-article-sticky {
        margin-bottom: 2rem;
    }

    .cms-softcols {
        column-count: 2;
        column-fill: balance;
    }

    /**
     * alternating table backgrounds
     */
    .alternatingbg *.alt1,
    .alternatingbg *.even {
        background-color: var(--color-defaultbg);
    }

    .alternatingbg tbody tr.alt0:last-child td,
    .alternatingbg tbody tr.even:last-child td,
    .alternatingbg li.alt0:last-child,
    .alternatingbg li.even:last-child {
        border-bottom: 1px solid #eee;
    }

    .boxcontent .alternatingbg tbody tr.alt0:last-child td,
    .boxcontent .alternatingbg tbody tr.even:last-child td,
    .boxcontent .alternatingbg li.alt0:last-child,
    .boxcontent .alternatingbg li.even:last-child,
    .ui-tabs-panel .alternatingbg tbody tr.alt0:last-child td,
    .ui-tabs-panel .alternatingbg tbody tr.even:last-child td,
    .ui-tabs-panel .alternatingbg li.alt0:last-child,
    .ui-tabs-panel .alternatingbg li.even:last-child {
        border-bottom: 0;
    }

    .ui-autocomplete {
        max-height: 15em;
        overflow-y: auto;
        overflow-x: hidden;
        text-align: left;
        text-align: start !important;
    }

    * html .ui-autocomplete {
        height: 15em;
    }

    .ui-autocomplete-loading {
        background: white url('img/loading.gif') right center no-repeat;
    }

    /**
     *
     */
    .bordered {
        border: 1px solid #777;
    }

    .padded {
        padding: 0.7em;
    }

    .content-margint-double {
        margin-top: 2rem;
    }

    .content-marginl {
        margin-left: 1rem;
    }

    .content-margint {
        margin-top: 1rem;
    }

    .content-marginb {
        margin-bottom: 2rem !important;
    }

    .content-marginb-double {
        margin-bottom: 3rem !important;
    }

    .content-indent {
        margin-left: 1rem;
    }

    #col3 div.bordered {
        border: 1px solid #aeaeae;
    }

    .noborder {
        border: none;
    }

    table.noborder {
        border-collapse: collapse;
    }

    img.float-left,
    div.float-left,
    embed.float-left,
    object.float-left,
    span.float-left {
        margin-inline-end: 1em;
    }

    img.float-right,
    div.float-right,
    embed.float-right,
    object.float-right,
    span.float-right {
        margin-inline-start: 1em;
    }

    .opacw5 {
        background-color: #ffffff80;
    }

    .opac5 {
        opacity: 0.5;
    }

    a {
        color: #a80f29;
        color: var(--color-link);
        text-decoration: none;
    }

    a:visited {
        color: #a80f29;
        color: var(--color-link-visited);
        text-decoration: none;
    }

    a:hover, a:visited:hover, a:focus-visible {
        color: #a80f29;
        color: var(--color-link-hover);
        text-decoration: underline;
    }

    a:active {
        color: #a80f29;
        color: var(--color-link-active);
        text-decoration: underline;
    }

    .anchor {
        font-size: 0pt;
        line-height: 0pt;
    }

    .keeplinkstyle a {
        color: var(--color-link) !important;
    }

    dt {
        font-weight: bold
    }

    dd {
        margin: 0 0 1em 2em
    }

    /* ### text formatting | Textauszeichnung ### */
    cite, blockquote {
        font-style: italic
    }

    strong, b, .bold {
        font-weight: bold;
        font-size: inherit;
        color: inherit;
    }

    .notbold {
        font-weight: normal !important;
    }

    s, .strikethrough {
        text-decoration: line-through;
    }

    em, i, .italic {
        font-style: italic;
    }

    u, .underline {
        text-decoration:  underline;
    }

    pre, code, .monospace {
        font-family: 'Courier New', monospace !important;
        font-size: 1.1em;
        white-space: normal;
    }

    html[lang="de"] q { quotes: '»' '«' '‘' '’'; }
    html[lang="de-AT"] q { quotes: '»' '«' '‘' '’'; }
    html[lang="de-CH"] q { quotes: '«' '»' '‘' '’'; }

    .fl-prod-info q:before,
    .cms-view-art q:before {
        content: open-quote;
        padding-right:0.1em;
    }
    .fl-prod-info q:after,
    .cms-view-art q:after {
        content: close-quote;
        padding-left:0.1em;
    }

    .blockquote p:before {
        content: open-quote;
        font: 1.5em/150% Georgia, serif
    }
    .blockquote p:after {
        content: close-quote;
        font: 1.5em/150% Georgia, serif
    }

    acronym, abbr {
        letter-spacing: .07em;
        border-bottom: .1em dashed #c00;
        cursor: help;
    }

    sub,
    sup,
    .sub,
    .sup {
        font-size: 75%;
        line-height: 0;
        position: relative;
        vertical-align: baseline;
    }

    sup,
    .sup {
        top: -0.5em;
    }

    sub,
    .sub {
        bottom: -0.25em;
    }

    .mobileonly {
        display: none !important;
    }

    /**
     * Generic Content Classes
     * (en) standard classes for positioning and highlighting
     * (de) Standardklassen zur Positionierung und Hervorhebung
     *
     * @section content-generic-classes
     */
    .mbox {
        border-radius: 0.3rem;
        border-width: 1px !important;
        border-style: solid !important;
        border-color: #aaa;
        border-color: rgba(0, 0, 0, .3);
        color: #444;
        color: rgba(0, 0, 0, .8);
        padding: 0.7em !important;
        margin-bottom: 1rem;
    }

    .note {
        background: #dfd;
    }

    .info {
        background: #f8f8f8;
        color: #666;
    }

    .important {
        background: #ffd;
        border-color: #ddb;
    }

    .warning {
        background: #FF832C;
        border-color: #ccb;
    }

    .error {
        background: #fdd;
        border-color: #dbb;
    }

    /* used in articles. if cms_highlighter ever does a more complex way, use another class name */
    .cms-hlite {
        background-color: var(--color-bg-hilite);
        color: var(--color-text-hilite);
        font-size: inherit;
        font-weight: inherit;
        text-decoration: inherit;
    }

    .dimmed {
        color: #888;
    }

    .float-left {
        float: left;
        display: inline;
    }

    .float-right {
        float: right;
        display: inline;
    }

    .align-right {
        text-align: right;
        text-align: end !important;
    }

    .align-left {
        text-align: left;
        text-align: start !important;
    }

    .margin-right {
        margin-right: 1em;
    }

    .center,
    .centered,
    .align-center {
        text-align: center; /* display:block; */
        margin-left: auto;
        margin-right: auto;
    }

    /**
     * (en) Emphasizing external Hyperlinks via CSS
     * (de) Hervorhebung externer Hyperlinks mit CSS
     *
     * @section             content-external-links
     * @app-yaml-default    disabled
     */
    /*
    #main a[href^="http://www.my-domain.com"],
    #main a[href^="https://www.my-domain.com"]
    {
      padding-left: 12px;
      background-image: url('your_image.gif');
      background-repeat: no-repeat;
      background-position: 0 0.45em;
    }
    */
    hr {
        color: #aeaeae;
        background: transparent;
        margin: 0 0 0.5em 0;
        padding: 0 0 0.5em 0;
        border: 0;
        border-bottom-width: 1px;
        border-color: #aeaeae;
        border-bottom-style: solid;
    }

    .cms-art-sect-content hr,
    div.simplehr,
    span.simplehr,
    div.dottedhr,
    span.dottedhr {
        display: block;
        border-bottom-width: 1px;
        border-color: #686868;
        border-bottom-style: solid;
        height: 0;
        margin: 0 0 0.5em 0;
        color: #686868;
    }

    hr.dotted,
    div.dottedhr,
    span.dottedhr {
        border-bottom-style: dotted !important;
    }

    /** */

    .cms-art-sect-content p {
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    .noautohyphens {
        -webkit-hyphens: manual !important;
        -ms-hyphens: manual !important;
        hyphens: manual !important;
    }

    /** @todo rename */

    .cms-art-sect-content .contactsection {
        padding-top: 1rem;
        border-top: 1px solid #aeaeae;
        text-align: center;
    }

    .cms-art-sect-content .contactsection * {
        font-size: 12pt !important;
        line-height: 14pt !important;
        font-weight: bold;
    }


    /**
     * breadcrumb navigation
     */
    .cms-bcnav {
        margin: 5px 0 1em 0;
        width: 100%;
        overflow: hidden;
        position: relative;
    }

    .cms-bcnav span,
    .cms-bcnav a {
        color: inherit !important;
        font-size: inherit !important;
        font-weight: inherit !important;
    }

    .cms-bcnav ul {
        margin: 0;
    }

    .cms-bcnav li {
        color: #666;
        font-weight: bold;
        line-height: 1.2em;
        font-size: 0.8rem;
        display: inline;
        float: left;
        margin: 0 0.5rem 0 0;
        white-space:nowrap;
        overflow: hidden;
    }

    .cms-bcnav li:not(:last-child):after {
        content: '>';
        margin-left: 0.5em;
    }

    .cms-bcnav span {
        padding: 0 0.5em;
    }

    .cms-bcnav li:first-child > span {
        padding-left: 0;
    }

    .ym-col1 .cms-bcnav,
    .ym-col2 .cms-bcnav {
        display: none;
    }

    /**
     * headings
     */
    h1,
    h2,
    .pagetitle {
        margin: 5px 0 0.75em 0;
        line-height: 1.2em;
        font-weight: normal;
    }

    h1,
    .pagetitle {
        font-size: 22pt;
    }

    h1 .h1hilite,
    .pagetitle .h1hilite {
        font-weight: bold;
    }

    h2 {
        font-size: 18pt;
    }

    h2,
    h3,
    h4,
    .subtitle {
        font-size: 12pt;
        margin-bottom: 0.75rem;
    }

    .pagetitle,
    .subtitle {
        display: block;
    }

    h5,h6 {
        font-size: 10pt;
        font-weight: bold;
    }

    .cms-content h5 {
        margin-bottom: 1rem;
    }

    /**
     *
     */
    .cms-content p,
    .cms-p {
        margin-bottom: 1rem;
    }

    .cms-h-sect-date,
    .cms-h-sect-lvl-1 {
        display: block;
        color: #777;
        font-size: 12pt;
        font-weight: bold;
        padding: 7px 0;
        border-bottom: 1px dotted #777;
        margin-bottom: 0.5rem;
        margin-top: 1rem;
    }

    .cms-h-sect-lvl-2 {
        display: block;
        color: #777;
        font-size: 10pt;
        font-weight: bold;
        padding: 7px 0;
        margin-bottom: 10px;
        margin-top: 5px;
    }

    #col2 .cms-h-sect-date {
        display: block;
        color: #777;
        font-size: 10pt;
        font-weight: bold;
        padding: 7px 0;
        border-bottom: 1px dotted #777;
        margin-bottom: 10px;
    }

    #col2 .cms-articlelist .title {
        margin-bottom: 5px;
    }

    #col2 .cms-articlelist .teaser {
        margin-bottom: 10px;
    }

    #col3 .cms-articlelist .box {
        margin-bottom: 1rem;
    }

    #col3 .cms-articlelist .boxtitle {
        margin-bottom: 0.5rem;
    }

    /**
     *
     */
    .clear {
        clear: both !important;
    }

    .block {
        display: block;
    }

    /**
     * new-style svg linkmarks
     */

    .cms-linkmark {
        display: none;
    }

    .cms-linkmark:not(.cms-textcolour),
    .cms-linkmark:not(.cms-textcolour) * {
        fill: currentColor;
    }

    .cms-link-marked .cms-linkmark {
        display: inline;
    }

    a > .cms-linkmark {
        width: 1.1em;
        height: 1.1em;
        margin-right: 0.25em;
        position: relative;
        top: 0.15em;
        font-size: inherit;
    }

    /**
     * old-style linkmarks
     */

    span.downloadhref,
    span.externalhref,
    span.zoomhref  {
        font-size: inherit;
        padding-left: 17px;
        background: url('img/linkmarks9.png') no-repeat;
    }

    span.markedhref a:before {
        content: '\2192';
        margin-right:0.5em;
    }

    span.downloadhref {
        background-position: 1px -336px;
    }

    span.externalhref {
        background-position: 1px -65px;
    }

    span.markedhref {
        background-position: 1px 4px;
    }

    span.zoomhref {
        background-position: 1px -404px;
    }


    /**
     * icons
     */

    .cms-icon {
        width: 1.1em;
        height: 1.1em;
    }

    .cms-icon:not(.cms-icon-mc) {
        fill: currentColor;
    }

    .cms-icon-size-1_5 {
        width: 1.5em;
        height: 1.5em;
    }

    .cms-icon-size-2 {
        width: 2em;
        height: 2em;
    }

    .cms-icon-size-2_5 {
        width: 2.5em;
        height: 2.5em;
    }

    .cms-icon-size-3 {
        width: 3em;
        height: 3em;
    }

    .cms-icon.float-right {
        margin-right: 0;
        margin-left: 0.5em;
    }

    .cms-trig-ctrlc {
        cursor: pointer;
    }

    /**
     * phone marks
     */

    .phone .cms-icon,
    .fax .cms-icon,
    .tollfree .cms-icon {
        color: inherit;
        margin-right: 0.25em;
        position: relative;
        top: 0.15em;
        font-size: inherit;
    }

    .tollfree .cms-icon {
        color: white;
        fill: white;
        background-color: darkgreen;
        border-radius: 0.2em;
    }

    a > .cms-icon,
    h1 > .cms-icon,
    h2 > .cms-icon,
    h3 > .cms-icon,
    h4 > .cms-icon,
    h5 > .cms-icon,
    h6 > .cms-icon,
    .mailtohref .cms-icon /** @todo deprecate */
    {
        color: inherit;
        margin-right: 0.25em;
        margin-inline-end: 0.25em;
        position: relative;
        top: 0.15em;
        font-size: inherit;
    }

    /**
     *
     */

    address {
        font-style: normal;
        font-weight:normal;
    }

    small,
    .smallertext {
        font-size: 0.8em;
        line-height: 0.9em !important;
    }

    .largertext {
        font-size: 1.2em !important;
        line-height: 1.5em !important;
    }

    .muchlargertext {
        font-size: 2em !important;
        line-height: 2.3em !important;
    }

    .nofullwidth {
        width: auto;
    }

    .linebreak {
        white-space: pre-line;
    }

    .nowrap {
        white-space: nowrap !important;
    }

    .nohyphens {
        hyphens: none !important;
    }

    .cms-txt-wrap {
        white-space: normal !important;
    }

    .justified {
        text-align: justify;
    }

    .timestamp {
        color: #777;
        font-size: 8pt;
        margin-bottom: 2px;
    }

    sup.fnote {
        vertical-align: 50%;
        font-size: 7pt;
        line-height: 7pt;
    }

    ul.cms-art-fnotes {
        list-style-type: none !important;
        margin-left: 0 !important;
    }

    .cms-art-fnotes li {
        font-size: 8pt;
        line-height: 10pt;
    }

    .fnote a {
        color: inherit;
    }

    /*
     * nag massages
     */
    .nagmsg {
        position: relative;
        margin-bottom: 1em;
        padding: 1em 1em 22px 1em;
        display: none;
        background: #eee;
    }

    .nag_dismiss {
        cursor: pointer;
    }

    body > .nagmsg {
        left: 0;
        z-index: 9999;
        width: 100%;
        margin-bottom: 0;
    }

    body > .nagmsg_top {
        position: absolute;
        top: 0;
        -webkit-box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.14);
        box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.14);
    }

    body > .nagmsg_bottom {
        position: fixed;
        bottom: 0;
        border-top: 1px solid #bbb;
        -webkit-box-shadow: 0px -3px 3px 0px rgba(0,0,0,0.14);
        box-shadow: 0px -3px 3px 0px rgba(0,0,0,0.14);
    }

    .nagmsg,
    .nagmsg * {
        font-weight: bold;
        line-height: 2em;
    }

    .nag_close_icn {
        background-image: url('img/sprites.gif');
        background-position: 0 0;
        background-repeat: no-repeat;
        width: 15px;
        height: 15px;
        cursor: pointer;
        margin: 0.5em;
        float: right;
        position: absolute;
        right: 0;
        bottom: 0;
    }

    .page .nagmsg {
        min-height: 60px;
    }

    .page .nagmsg .nag_close_icn {
        margin: 7px;
    }

    .nagmsg_orange {
        background: orange;
    }

    .nagmsg_orange,
    .nagmsg_orange * {
        color: white;
    }

    /*
     *
     */
    /* very important to keep this in the default style! */
    .containerlabel {
        display: none;
    }

    #col3 .cms-art-body,
    #col3 article {
        margin-bottom: 1em;
    }

    #col2 .cms-view-art-teaser {
        margin-bottom: 5px;
        clear: both;
        padding-bottom: 5px;
        border-bottom: 1px dotted #aeaeae;
    }

    #col2 .lastitem {
        border-bottom: 0 !important;
    }

    #col2 .cms-view-transp {
        background-color: white;
        margin: 0;
    }

    #col2 .cms-view-transp .cms-view-art-teaser {
        border: none;
        margin: 0;
    }

    #col1 .cms-view-art-teaser {
        clear: both;
        margin-bottom: 5px;
        border-bottom: 1px dotted #aeaeae;
    }

    article > section {
        clear: both;
    }

    .cms-art-sect-intro {
        font-weight: bold;
    }

    .cms-art-sect-css {
        display: none;
    }

    .cms-view-art {
        margin-bottom: 1.5em;
    }

    .cms-content-art ul,
    .cms-content-art ol {
        margin-left: 14px;
        margin-bottom: 1em;
    }

    .cms-content-art ul {
        list-style-type: disc;
    }

    .cms-content-art ol {
        list-style-type: decimal;
    }

    ul.noindent {
        margin-left: 0;
        list-style-type: none !important;
    }

    ul.noindent li {
        margin-left: 0;
    }

    ul.defaultstyle {
        list-style: disc outside none !important;
    }

    ul.defaultstyle li {
        padding: 0 !important;
        margin: 0 !important;
    }

    ol.defaultstyle {
        list-style-type: decimal;
    }

    .cms-content-art .nopara,
    .cms-content-art li ul,
    .cms-content-art li ol {
        margin-bottom: 0;
    }

    /**
     * custom lists
     */
    ul.blackarrow,
    ul.bluearrow {
        list-style-type: none;
    }

    ul.blackarrow li {
        list-style-image: url('img/arrowbullet.png');
    }

    ul.ul.bluearrow li {
        list-style-image: url('img/arrowbullet_blue.png');
    }

    /**
     *
     */
    .cms-content-art iframe {
        z-index: 2;
    }

    #col2 .cms-view-art p,
    #col2 .cms-view-art h5,
    #col2 .cms-view-art h6 {
        margin-bottom: 1em;
    }

    /**
      * icons
      */
    .icn {
        background: url('img/icnset16_8.png');
        background-repeat: no-repeat;
        display: inline-block;
    }

    .icn_15 {
        width: 15px;
        height: 15px;
    }

    .icn_s {
        width: 16px;
        height: 16px;
    }

    .icn_m {
        background: url('img/icnset24.png');
        width: 24px;
        height: 24px;
    }

    .icn_l {
        background: url('img/icnset32_3.png');
        width: 32px;
        height: 32px;
    }

    a.icn {
        cursor: pointer;
    }

    .icn.float-right {
        margin-left: 0.5em;
    }

    .icn.float-left {
        margin-right: 0.5em;
    }

    /**
     * feed icons
     */

    .feedicon_twitter16 {
        background-image: url('img/twitter_16x16.png');
    }

    .feedicon_facebook16 {
        background-image: url('img/facebook_16x16.gif');
    }

    .feedicon_linkedin16 {
        background-image: url('img/linkedin_16x16.png');
    }

    .feedicon_youtube16 {
        background-image: url('img/youtube_16x16.png');
    }

    .feedicon_skype16 {
        background-image: url('img/skype_16x16.png');
    }

    .feedicon_vkontakte16 {
        background-image: url('img/vkontakte_16x16.png');
    }

    .feedicon_flaneblog16 {
        background-image: url('img/fast-lane-blog_16x16.png');
    }

    .rssicon {
        background-image: url('img/rss.png');
    }

    /**
     * contact widget
     */

    .cms-widg-ctc-trig {
        position: fixed;
        background-color: #a80f29; /* var(--color-link); */
        width: 150px;
        height: 50px;
        border-radius: 25px;
        top: calc(95vh - 50px);
        left: calc(95vw - 150px);
        padding: 5px;
        transition: transform 0.5s;
        cursor: pointer;
        z-index: 50;
        color: white;
    }

    .cms-widg-ctc-trig .cms-icon {
        margin-right: 0.2em;
        font-size: 1.5em;
        position:relative;
        top:8px;
    }

    .cms-widg-ctc-trig:hover {
        transform: scale(1.1,1.1);
    }

    .cms-widg-ctc-trig .cms-close {
        position: absolute;
        top: -12px;
        right: -12px;
        background-color: #a80f29; /* var(--color-link); */
        border: 1px solid white;
        width: 30px;
        height: 30px;
        border-radius: 15px;
        display:none;
    }

    .cms-widg-ctc-trig:hover .cms-close {
        display: inline-block;
    }

    .cms-widg-ctc-trig > span {
        color: white;
        text-align:center;
        font-size: 1.3em;
        margin: auto 0;
        line-height: 40px;
        vertical-align: middle;
    }

    .cms-widg-ctc {
        text-align:left;
        position: fixed;
        width: 300px;
        height: 190px;
        top: calc(95vh - 190px);
        left: calc(95vw - 300px);
        z-index: 53;
    }

    .cms-widg-ctc .boxcontent {
        padding: 10px;
        border-color: #aaa;
        margin: 0;
        background-color: #F7F7F7;
        border-radius: 10px;
        width: 100%;
    }

    .cms-widg-ctc .boxtitle {
        font-size: 12pt !important;
        background-color: #a80f29; /* var(--color-link); */
        color: white;
        line-height: 40px;
        border: 1px solid var(--color-link);
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        padding-left: 10px;
    }

    .cms-widg-ctc li {
        margin: 0;
        line-height: 40px !important;
        vertical-align: middle;
    }

    .cms-widg-ctc li:not(:last-child) {
        border-bottom: 1px dotted #686868;
    }

    .cms-widg-ctc a {
        color: var(--color-link) !important;
    }

    .cms-widg-ctc .cms-close {
        float: right;
        z-index: 51;
        cursor: pointer;
        margin-top: 8px;
        margin-right: 2px;
    }

    .cms-widg-ctc .cms-close:hover {
        color: #777;
    }

    .cms-widg-ctc li .cms-icon {
        margin-right: 0.5em;
        position: relative;
        top: 5px;
    }

    .cms-widg-ctc .livechat_button {
        display: inline;
    }

    /**
     * search widget
     */

    .cms-widg-srch-trig,
    .cms-widg-srch {
        position: fixed;
        background-color: #a80f29; /* var(--color-link); */
        width: 150px;
        height: 50px;
        border-radius: 25px;
        top: calc(95vh - 120px);
        left: calc(95vw - 150px);
        padding: 5px;
        z-index: 50;
        color: white;
    }

    .cms-widg-srch-trig {
        cursor: pointer;
    }

    .cms-widg-srch-trig .cms-icon {
        margin-right: 0.2em;
        font-size: 1.5em;
        position:relative;
        top:8px;
    }

    .cms-widg-srch-trig > span {
        color: white;
        text-align:center;
        font-size: 1.3em;
        margin: auto 0;
        line-height: 40px;
        vertical-align: middle;
    }

    .cms-widg-srch input {
        height: 30px;
        width: 95px;
        margin: 5px;
        -webkit-border-radius: 20px !important;
        -moz-border-radius: 20px !important;
        border-radius: 20px !important;
        border-width: 0;
        z-index: 51;
        outline: 0;
        background-color: white;
        color: black;
        padding: 5px 40px 5px 5px;
    }

    .cms-widg-srch-btn-submit {
        fill: #777 !important;
        width: 30px;
        margin: 5px 0px 10px 98px;
        height: 30px;
        z-index: 54;
        position: relative;
        cursor: pointer;
    }

    .cms-widg-srch li .cms-icon {
        margin-right: 0.5em;
        position: relative;
        top: 5px;
    }

    /*
     * forms
     */

    form.cms-done > *:not(.ym-fbox-footer) {
        opacity: 0.5;
    }

    .cms-msg-form-eol {
        display: none;
    }

    form.cms-form-eol .cms-msg-form-eol {
        display: block;
    }

    form.cms-form-eol .mandatoryhint,
    form.cms-form-eol input[type=submit] {
        display: none;
    }

    .cms-msg-success .pagetitle {
        margin: 0 0 0.5em 0;
        line-height: 1.2em;
        font-weight: normal;
    }

    .ui-dialog .ym-form {
        background: none !important;
    }

    .radiolabel {
        display: block;
    }

    .ym-error input[type=checkbox],
    input[type=checkbox].ym-error,
    .ym-error input[type=radio],
    input[type=radio].ym-error {
        outline: 1px solid var(--color-frm-req);
    }

    .ym-form .ym-error label,
    label.ym-error,
    .radiolabel.ym-error {
        font-weight: bold;
        color: inherit;
    }

    legend.ym-error {
        color: var(--color-link) !important;
    }

    input.ym-error,
    textarea.ym-error,
    select.ym-error {
        border-color: var(--color-frm-req) !important;
    }

    label.mandatory:after,
    .radiolabel.mandatory:after {
        content: ' *';
        font-weight: bold;
        color: #555;
        display: none;
    }

    label > .fieldlabel-hint {
        font-size: 0.8em;
        margin-left: 2em;
    }

    .ym-form .fielderror {
        color: var(--color-frm-req) !important;
    }

    .ym-form .ym-required {
        margin-left: 0.3em;
    }

    .mandatorylegend:before {
        content: '* ';
        display: none;
    }

    .ym-form input[readonly],
    .ym-form textarea[readonly],
    .ym-form select[readonly] {
       color: var(--color-frm-ro);
    }

    .ym-form input[disabled],
    .ym-form textarea[disabled],
    .ym-form select[disabled] {
        border-color: transparent !important;
    }

    .ym-disabled {
        opacity: 0.5;
    }

    .ym-form legend {
        padding: 0;
    }

    .ym-form legend,
    .ym-form .ym-fbox-heading {
        font-size: 1em;
        font-size: 100%;
        line-height: 1em;
        margin-bottom: 1em;
    }

    .ym-form .ym-fbox-footer {
        clear: both;
    }

    .ym-form .ym-fbox-header {
        background-color: #e5ecef;
        padding: 1.5em;
        border-bottom: 1px solid #ccc;
        clear: both;
    }

    textarea {
        resize: none;
    }

    .cms-indic-charsleft {
        display:block;
        height: 1.2rem;
        font-size: 0.8rem;
    }

    input
    ,textarea
    ,a {
        -webkit-hyphens: manual;
        -ms-hyphens: manual;
        hyphens: manual;
    }

    h1,h2,h3,h4,h5,h6 {
        -webkit-hyphens: manual;
        -ms-hyphens: manual;
        hyphens: manual;
    }

    #col2 .boxcontent .ym-form {
        margin: 0;
        border: none;
    }

    #col2 .boxfooter .ym-button {
        background-color: white;
    }

    select .cms-opt-dflt {
        font-style: italic;
    }

    /* email spamtrasp field */
    .cms-emlspmtrp {
        width: 0px !important;
        height: 0px !important;
        display: none !important;
        position: absolute;
        top: -32768px;
        left: -32768px;
    }

    /* */

    .attentionbbcode {
        display: none;
    }

    legend {
        background-color: white; /* IE fix */
    }

    /* yaml forms can break this with display:block*/
    #recaptcha_response_field {
        display: inline !important;
    }

    .ym-form .cms-captchacontainer {
        width: 318px;
        float:right;
        margin: 12px;
        z-index:100;
    }

    .cms-captchacontainer .error {
        display:none;
    }

    .cms-captchacontainer.ym-error .error {
        display:block;
    }

    #recaptcha_widget_div {
        float: right;
    }

    /**
     * boxes
     */
    .boxtitle {
        display: block;
        font-weight: bold;
        border: 0;
    }

    .titledbox .boxtitle {
        margin-bottom: 0 !important;
    }

    .boxcontent {
        overflow: hidden;
        clear: both;
    }

    .boxpad {
        padding: 0 7px;
        margin: 0;
        background: transparent;
    }

    #col3 .roundbox .boxpad {
        padding: 7px;
    }

    #col1 .box {
        border: none;
    }

    #col1 .boxtitle {
        /*    text-indent: 7px; */
        padding: 3px 7px;
        background-color: #dddcdb;
        border-top: 1px solid #777;
        border-bottom: 1px solid #777;
        font-size: 8pt;
    }

    #col1 .boxcontent {
        background-color: var(--color-defaultbg);
        border: 1px solid #dddcdb;
        border-radius: 5px;
    }

    #col2 .box {
        overflow: hidden;
    }

    #col3 .cms-view-art .box {
        margin-bottom: 1em;
    }

    #col3 .cms-view-art .bordered {
        border: 1px solid #dddcdb;
    }

    #col3 .ym-grid .box,
    #col3 .ym-flexgrid .box {
        margin-bottom: 1em;
    }

    #col2 .boxframe {
        margin-bottom: 1em;
    }

    #col2 .boxtitle,
    #col3 .boxtitle {
        background-color: #dddcdb;
        /*    text-indent: 7px; */
        padding: 5px 7px;
        margin: 0;
    }

    #col3 .boxtitle {
        line-height: 2em;
        font-size:1.2em;
    }

    #col2 .boxcontent {
        background-color: #f3f2f1;
        border: 1px solid #dddcdb;
        border-radius: 5px;
    }

    #col2 .boxcontent h3,
    #col2 .boxcontent h4,
    #col2 .boxcontent h5 {
        margin-bottom: 0.75em;
        font-weight: bold;
    }

    #col2 .boxcontent .sidebarboxitem {
        margin-bottom: 5px;
        padding-bottom: 10px;
        border-bottom: 1px dotted #777;
    }

    #col2 .ym-button {
        margin: 0 auto;
        text-align: center;
    }

    #col2 a.ym-button {
        width: 182px;
    }

    #col2 input.ym-button {
        width: 178px;
    }

    /* Button color scheme: primary (flane) */
    .ym-button.ym-flane,
    .ym-form button.ym-flane,
    .ym-form input[type="button"].ym-flane,
    .ym-form input[type="reset"].ym-flane,
    .ym-form input[type="submit"].ym-flane {
        background-color: #8888ee;
        zoom: 1;
        border: 1px solid #555;
        color: #fff !important;
    }

    a.ym-button,
    a.ym-button:hover,
    a.ym-button:visited
    {
        font-weight: bold;
    }

    /**
     *
     */

    .transbox {
        background-color: #ffffff80;
    }

    /**
     * rounded boxes
     */
    .roundbox {
        overflow: hidden;
        margin: 0;
        padding: 0;
        background-color: transparent;
    }

    .roundbox .boxcontent {
        border-radius: 7px;
        border: 1px solid #dddcdb;
    }

    .roundbox.titledbox .boxcontent,
    #col2 .titledbox .boxcontent {
        border-top-width: 0 !important;
        -webkit-border-top-left-radius: 0px !important;
        -webkit-border-top-right-radius: 0px !important;
        -moz-border-radius-topleft: 0px !important;
        -moz-border-radius-topright: 0px !important;
        border-top-left-radius: 0px !important;
        border-top-right-radius: 0px !important;
    }

    .roundbox.titledbox .boxpad,
    #col2 .titledbox .boxpad {
        padding-top:4px;
    }

    .roundbox.footedbox .boxcontent,
    #col2 .footedbox .boxcontent {
        border-bottom-width: 0 !important;
        -webkit-border-bottom-left-radius: 0px !important;
        -webkit-border-bottom-right-radius: 0px !important;
        -moz-border-radius-bottomleft: 0px !important;
        -moz-border-radius-bottomright: 0px !important;
        border-bottom-left-radius: 0px !important;
        border-bottom-right-radius: 0px !important;
    }

    .roundbox.footedbox .boxpad,
    #col2 .footedbox .boxpad {
        padding-top:4px;
    }

    .roundbox .boxtitle {
        -webkit-border-top-left-radius: 7px;
        -webkit-border-top-right-radius: 7px;
        -moz-border-radius-topleft: 7px;
        -moz-border-radius-topright: 7px;
        border-top-left-radius: 7px;
        border-top-right-radius: 7px;
    }

    #col2 .boxtitle {
        -webkit-border-top-left-radius: 5px;
        -webkit-border-top-right-radius: 5px;
        -moz-border-radius-topleft: 5px;
        -moz-border-radius-topright: 5px;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }

    #col2 .boxfooter {
        -webkit-border-bottom-left-radius: 5px;
        -webkit-border-bottom-right-radius: 5px;
        -moz-border-radius-bottomleft: 5px;
        -moz-border-radius-bottomright: 5px;
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
        padding-top: 1em;
        padding-bottom: 1em;
        padding-left: 7px;
    }

    .boxfooter {
        background: #ddd;
        border-color: #dddcdb;
        border-style: solid;
        border-width: 0 1px 1px 1px;
    }

    /* deprecated rounded box corners */
    .rboxb,
    .rboxb div {
        display: none;
    }

    .roundbox_bottom {
        clear: both;
    }

    .roundgradientbox .boxcontent,
    .roundgradientbox2 .boxcontent {
        background: #e4ebee;
        background: -moz-linear-gradient(top, #f3f2f1, #fefefe);
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f3f2f1), color-stop(100%, #fefefe));
        background: -webkit-linear-gradient(top, #f3f2f1, #fefefe);
        background: -ms-linear-gradient(top, #f3f2f1, #fefefe);
        background: linear-gradient(to bottom, #f3f2f1, #fefefe);
    }

    .roundgradientbox3 .boxcontent {
        background: #bdd0d7;
        background: -moz-linear-gradient(top, #6c91a6, #bdd0d7 200px, #bdd0d7);
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #6c91a6), color-stop(200px, #bdd0d7), color-stop(100%, #bdd0d7));
        background: -webkit-linear-gradient(top, #6c91a6, #bdd0d7 200px, #bdd0d7);
        background: -ms-linear-gradient(top, #6c91a6, #bdd0d7 200px, #bdd0d7);
        background: linear-gradient(to bottom, #6c91a6, #bdd0d7 200px, #bdd0d7);
    }

    .roundboxblue .boxcontent {
        background: -moz-linear-gradient(top, #e5ebef 0%, #fefefe 100%);
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #e5ebef), color-stop(100%, #fefefe));
        background: -webkit-linear-gradient(top, #e5ebef 0%, #fefefe 100%);
        background: -ms-linear-gradient(top, #e5ebef 0%, #fefefe 100%);
        background: linear-gradient(to bottom, #e5ebef 0%, #fefefe 100%);
    }

    /*  boxes in maincolumn */
    #col3 .box,
    #col3 .roundbox {
        margin-bottom: 1rem;
    }

    /*
     * flex boxes
     */

    .flexcontainer {
        display: -webkit-box !important;
        display: flex !important;
        gap: 1rem;
        flex-wrap: wrap;
        -webkit-box-pack: start;
        justify-content: flex-start;
        -webkit-box-align: center;
        align-items: stretch;
        align-content: space-between;
        display: -ms-flexbox;
        -ms-flex-wrap: wrap;
        -ms-flex-pack: start;
        -ms-flex-align: stretch;
        -ms-flex-line-pack: justify;
    }

    .flexcontainer_nowrap {
        -ms-flex-wrap: none;
        flex-wrap: nowrap;
    }

    .flexcontainer_alignstart {
        -webkit-box-align: start;
        align-items: flex-start;
        -ms-flex-align: start;
    }

    .flexcontainer_justifybetween {
        -webkit-box-pack: justify;
        justify-content: space-between;
        -ms-flex-pack: justify;
    }

    .flexcontainer_justifyaround {
        justify-content: space-around;
        -ms-flex-pack: distribute;
    }

    .flexcontainer:not(.flexcontainer_nopad) > div {
        padding: 5px;
    }

    .flexcontainer_samesize > div {
        flex-grow: 1 !important;
        flex: 1;
    }

    /*
     * expanders
     */
    .expand_trigger,
    .fauxexpander {
        text-align: center;
        padding: 0.5em;
        cursor: pointer;
        background-image: url("img/expandcollapse_pm_r2.png");
        background-color: #BEBEBE;
        padding-left: 2.2em !important;
        background-position: 7px -491px;
        background-repeat: no-repeat;
        font-weight: bold;
        color: white;
    }

    span.expand_trigger,
    .fauxexpander {
        display: inline-block;
    }

    div.expand_trigger {
        clear: both;
    }

    .expand_open,
    .fauxexpander {
        margin-bottom: 1em;
    }

    .fauxexpander > p {
        margin-bottom: 0 !important;
    }

    .expand_trigger:hover,
    .fauxexpander:hover {
        -webkit-transition: background-color 0.1s;
        -o-transition: background-color 0.1s;
        transition: background-color 0.1s;
        -webkit-transition: color 0.1s;
        -o-transition: color 0.1s;
        transition: color 0.1s;
    }

    .expand_collapse {
        background-position: 7px 9px;
    }

    .expand_style-arrow .expand_trigger {
        border: 1px solid #ccc;
        border-radius: 3px;
        background-image: url('img/expandcollapse.png');
    }

    .expand_hidden {
        display: none !important;
    }

    .expand_style-highlight .expand_trigger {
        background-color: #1C57A8;
    }

    .expand_style-transp .expand_trigger {
        background-color: transparent;
        color: inherit !important;
    }

    /*
     * [code] markup
     */
    @font-face {
        font-family: code;
        src: url('/css/font/Envy%20Code%20R.ttf');
    }

    pre.code {
        font-family: 'Courier New', monospace !important;
        vertical-align: middle;
        border-style: dotted;
        border-width: 1px;
        padding: 0.5em;
        margin-bottom: 1em;
        white-space: pre-wrap;
        line-height: 1.35em;
    }

    pre.code.condensed {
        font-size: 0.8em;
        line-height: 1.2em;
    }

    .cms-quot-code {
        background-color: var(--color-defaultbg);
    }

    pre.code > q {
        quotes: initial !important;
    }

    /**
     *
     */
    .totoplink {
        width: 11px;
        height: 11px;
        display: inline;
        background: url('img/linkmarks9.png') no-repeat 0 -110px;
        margin-right: 7px;
    }

    /**
     * cms content-related:
     * basic article elements
     */

    .cms-view-art .topicbox {
        background-color: var(--color-defaultbg);
    }

    .cms-view-art .ym-grid .topicbox {
        padding-top: 0.5em;
        padding-left: 0.5em;
        padding-right: 0.5em;
    }

    .cms-view-art .ym-flexgrid .topicbox {
        padding: 0.5em;
    }

    .cms-view-art .topicbox *,
    .cms-view-art .artheader * {
        color: inherit;
    }

    .cms-view-art .topicbox a,
    .cms-view-art .artheader a {
        color: var(--color-defaultlink);
    }

    .cms-view-art .artheader {
        background-color: var(--color-defaultbg);
        margin-bottom: 2rem;
        height: auto !important; /* until articles are cleansed from fixed height specs */
        background-size: cover;
        height: auto !important; /* until articles are cleansed from fixed height specs */
        padding: 1em 30px 0 20px;
        /*padding-top: 1em; FITWS-4126*/
        min-height: 200px;
    }

    .cms-view-art .artheader * {
        hyphens: manual;
    }

    .cms-view-art .artheader.artheader-illu-right {
        padding-inline-end: 55% !important;
    }
/*
    .cms-view-art .artheader p:last-child  {
        margin-bottom: 0;
    }
*/
    .keeplinkstyle a {
        color: var(--color-link) !important;
    }

    .cms-view-art .artheader p {
        font-size: inherit;
    }

    .cms-view-art .fauxexpander {
        display: inline-block ! important;
    }

    .buttonlink {
        border: 1px solid var(--color-link);
        line-height: 1.2em;
        text-align: center;
        display: inline-block;
        padding: 5px 8px;
        -webkit-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    .buttonlink:hover {
        background-color: #a80f29; /* var(--color-link); */
    }

    .buttonlink:hover,
    .buttonlink:visited:hover,
    .buttonlink:hover * {
        color: white;
        text-decoration: none;
    }

}




/**
 * @package CMS
 */
@media screen {

    a.ym-button:focus-visible {
        outline: 1px solid var(--color-link);
    }

    .cms-href {
        cursor: pointer;
    }

    .cmsbelinks,
    .cmsbelinks * {
        font-size: 8pt !important;
        color: darkGoldenRod !important;
    }

    .cmsbelinks a:visited {
        color: darkGoldenRod !important;
    }

    .cmsbelinks:before {
        content: '[';
    }

    .cmsbelinks:after {
        content: ']';
    }

    #ieupdatehint {
        border-bottom: 1px solid #6487db;
        background-color: #849fe2;
        visibility: visible;
        font-size: 12pt;
        line-height: 1.5em;
        padding: 2em;
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        z-index: 9998;
        color: white;
    }

    #ieupdatehint a {
        color: #0033cc;
        text-decoration: underline;
    }

    /**
     *
     */
    .cms-tubevid,
    .cms-tubevidpreview,
    .cms-podbean,
    video {
        margin-bottom: 1em;
        z-index: 2;
    }

    /**
     *
     */
    ul.cms-widg-tabstrip {
        list-style: none;
        margin: 0;
        padding: 0;
        clear: both;
        height: 27px;
    }

    .cms-widg-tabstrip li {
        float: left;
        margin: 0 3px;
        text-align: center;
        border-style: solid;
        border-color: #dddcdb;
        border-width: 1px;
    }

    .cms-widg-tabstrip ul li a,
    .cms-widg-tabstrip ul li strong {
        padding: 3px 6px;
        background-color: var(--color-defaultbg);
        width: 150px;
        font-weight: bold;
        white-space: nowrap;
        overflow: hidden;
    }

    .cms-widg-tabstrip ul li a {
        color: var(--color-link);
    }

    .cms-widg-tabstrip li a:hover {
        text-decoration: underline;
    }

    .cms-widg-tabstrip .cms-widg-tabstrip-cur * {
        background-color: #fff;
    }

    .cms-widg-tabstrip strong {
        font-weight: bold !important;
    }

    /*
     * jquery-ui tabs customisation
     */
    .ui-tabs .tabicon {
        display: none;
    }

    .ui-tabs.cms-ui-tabs-large .ui-tabs-nav li {
        height: 56px;
    }

    .ui-tabs.cms-ui-tabs-large .ui-tabs-nav {
        height: 56px;
    }

    .ui-tabs.cms-ui-tabs-large .ui-tabs-nav li a {
        height: 100%;
    }

    .ui-tabs.cms-ui-tabs-wide .ui-tabs-nav li a {
        padding-left: 25px;
        padding-right: 25px;
    }

    .ui-tabs.cms-ui-tabs-small .ui-tabs-nav li a {
        font-size: 8pt;
    }

    .ui-tabs .tab_2rows .ui-tabs-anchor {
        line-height: 2em;
    }

    .cms-ui-tabs-scroll-x .ui-tabs-panel {
        overflow-x: auto;
    }

    .cms-ui-tabs-scroll-y .ui-tabs-panel {
        overflow-y: auto;
    }

    img.cms-hover-scale,
    svg.cms-hover-scale {
        transition: transform 0.2s;
    }

    img.cms-hover-scale-11:hover,
    svg.cms-hover-scale-11:hover {
        transform: scale(1.1, 1.1);
    }

    img.cms-hover-colorise {
        filter: grayscale(100%);
        transition: all 0.2s;
    }

    img.cms-hover-colorise:hover {
        filter: grayscale(0%);
    }

    /*
     * secondary navigation (navstrip on top of screen)
     */
    .cms-secnav-top {
        /*
                background: -moz-linear-gradient(top, #c01122 , #8b0d1a );
                background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #c01122), color-stop(100%, #8b0d1a));
                background: -webkit-linear-gradient(top, #c01122 , #8b0d1a );
                background: -ms-linear-gradient(top, #c01122 , #8b0d1a );
                background: linear-gradient(to bottom, #c01122 , #8b0d1a );
        */
        background: var(--color-secnav-top);
        height: 22px;
        width: 100%;
        z-index: 20;
        font-size: 12px;
        color: var(--color-secnav-top-text);
    }

    .cms-secnav-top-wrap {
        width: 980px;
        margin: 0 auto;
    }

    .page-width {
        width: 980px;
    }

    .cms-secnav-top .cms-secnav-items {
        float: right;
    }

    .cms-secnav-top .cms-secnav-item {
        text-align: center;
        padding: 0 0.8em;
        float: left;
        display: block;
        height: 1.65rem;
        margin-left: 2px;
        background-color: var(--color-secnav-top-item);
    }

    .cms-secnav-top a,
    .cms-secnav-top a:visited,
    .cms-secnav-top a:visited:hover {
        color: inherit;
        text-decoration: none;
    }

    .cms-secnav-top a:hover {
        color: yellow;
    }

    .cms-secnav-top a:focus-visible {
        color: yellow;
    }

    .cms-secnav-top .cms-icon {
        padding-top: 2px;
        font-size: 19px;
        float: left;
        top: -1px;
    }

    .cms-secnav-top .cms-sel-loc {
        /*     border-style: inset; */
        border: 1px solid var(--color-secnav-top);
        display: inline ! important;
        height: 15px;
        background-color: #ebf0f2;
    }

    .cms-secnav-top .cms-sel-loc,
    .cms-secnav-top .cms-sel-loc * {
        font-size: 10px;
        color: var(--color-text-light);
    }

    .cms-sel-loc optgroup {
        padding: 0 1px;
    }

    /**
     * menus
     */
    .cms-widg-mnu li:hover a,
    .cms-widg-mnu li.hover a {
        text-decoration: none;
    }

    .cms-widg-mnu .cms-mnu-h {
        font-weight: bold !important;
        background-color: none !important;
    }

    .cms-widg-mnu .cms-mnu-h:not(:first-child) {
        padding-top: 1em;
    }

    /*
         .cms-widg-mnu li a {
             background: url('img/linkmarks9.png') no-repeat 12px -263px;
         }
     */
    /* vertical menus */
    .cms-mnu-vert p,
    .cms-mnu-vert ul {
        margin: 0 0 1em 0;
    }

    .cms-mnu-vert li {
        border-bottom: 1px solid #d6d5d4;
        margin: 0;
    }

    .cms-mnu-vert .cms-mnu-sep {
        font-size: 2px;
        display: none;
    }

    .cms-mnu-vert li:hover,
    .cms-mnu-vert li.hover {
        background-color: #e5ebef;
    }

    .cms-mnu-vert li > * {
        display: block;
        font-size: 8pt;
        padding: 3px 5px 3px 7px;
        white-space: normal;
    }

    #col1 .cms-mnu-ttl {
        padding: 3px 7px;
        border-bottom: 1px solid #dddcdb;
        font-weight: bold;
    }

    #col1 .cms-mnu-ttl a {
        color: #111;
    }

    .cms-mnu-vert .cms-mnu-sep {
        background-color: white;
        height: 2px;
        border: none;
        display: block;
    }

    /* menus that fold out to the right */
    .cms-mnu-fold-r > ul > li {
        padding-left: 0;
    }

    .cms-mnu-fold-r {
        position: relative;
        overflow: visible !important;
    }

    .cms-mnu-fold-r li {
        font-weight: normal;
        float: none;
        margin: 0;
    }

    .cms-mnu-fold-r ul li {
        zoom: 1;
    }

    .cms-mnu-fold-r ul a {
        display: block;
    }

    .cms-mnu-fold-r ul ul li a {
        width: 100%;
        display: inline-block;
    }

    .cms-mnu-fold-r li.hover,
    .cms-mnu-fold-r li:hover {
        position: relative;
    }

    .cms-mnu-fold-r ul ul {
        visibility: hidden;
        position: absolute;
        top: 5px;
        margin: 0;
        padding: 0;
        border: 1px solid #dddcdb;
        background: white;
        z-index: 200;
    }

    .cms-mnu-fold-r ul ul ul {
        left: 100%;
        top: 0;
    }

    .cms-mnu-fold-r li:hover > ul,
    .cms-mnu-fold-r li.cms-mnu-itm-hover > ul {
        visibility: visible;
    }

    html:not([dir=rtl]) .cms-mnu-fold-r ul ul {
        left: 170px;
    }

    .cms-mnu-fold-r li.cms-mnu-2col ul {
        width: 370px;
    }

    .cms-mnu-fold-r li.cms-mnu-3col ul {
        width: 556px;
    }

    .cms-mnu-fold-r li.cms-mnu-2col ul li,
    .cms-mnu-fold-r li.cms-mnu-3col ul li {
        width: 184px;
        float: left !important;
    }

    .cms-mnu-fold-r li.cms-mnu-2col ul li:nth-child(2n+1),
    .cms-mnu-fold-r li.cms-mnu-3col ul li:nth-child(3n+1) {
        clear: left !important;
        border-right: 1px solid #eee;
    }

    /* horizontal menus */
    .cms-mnu-hor {
        width: 100%;
        position: relative;
    }

    .cms-mnu-hor li {
        zoom: 1;
        vertical-align: middle;
    }

    .cms-mnu-hor li a {
        display: block;
    }

    .cms-mnu-hor {
        margin: 0 0 15px 0;
        padding: 0;
        clear: both;
        display: table;
        table-layout: fixed;
    }

    .cms-mnu-hor > li {
        display: table-cell;
        margin: 0;
        text-align: center;
        border-style: solid;
        border-width: 1px 1px 1px 0;
        font-weight: bold;
    }

    .cms-mnu-hor > li:first-child {
        border-left-width: 1px;
    }

    .cms-mnu-hor a {
        white-space: nowrap;
        text-decoration: none;
    }

    .cms-mnu-hor > li > a {
        padding: 0.4em;
    }

    /* menus that fold out downward (dropdown) */
    .cms-mnu-ddn li.hover:not(.cms-mnu-hor-sub-ddn-full),
    .cms-mnu-ddn li:hover:not(.cms-mnu-hor-sub-ddn-full) {
        position: relative;
    }

    /*
        .cms-mnu-ddn li:last-child a {
        }
        .cms-mnu-ddn li.hover a,
        .cms-mnu-ddn li:hover a {
        }
    */
    .cms-mnu-ddn > li > ul,
    .cms-mnu-ddn > li > div {
        visibility: hidden;
        position: absolute;
        top: 100%;
        margin: 0;
        z-index: 200;
    }

    .cms-mnu-ddn ul {
        padding: 0;
        margin: 0;
    }

    html:not([dir=rtl]) ul.cms-mnu-ddn > li:not(:last-child) ul {
        left: 0;
    }

    html:not([dir=rtl]) ul.cms-mnu-ddn > li:last-child ul  {
        right: 0;
    }

    .cms-mnu-ddn ul li {
        font-weight: normal;
        float: none;
        margin: 0;
    }

    .cms-mnu-ddn ul li a {
        width: 100%;
        display: inline-block;
    }

    .cms-mnu-ddn ul ul {
        left: 100%;
        top: 0;
    }

    .cms-mnu-ddn li:hover > ul,
    .cms-mnu-ddn li:hover > div {
        visibility: visible;
    }

    .cms-mnu-ddn > li > ul,
    .cms-mnu-ddn > li > div {
        border: 1px solid #dddcdb;
        background-color: white;
        min-width: 100%;
    }

    .cms-mnu-ddn > li > ul,
    .cms-mnu-ddn > li:not(.cms-mnu-hor-sub-ddn) > div {
        margin-top: 1px;
    }

    .cms-mnu-ddn .cms-mnu-ddn-wrap {
        margin-top: -1px;
        border-top-width: 0;
        left: -1px;
        box-shadow: 2px 3px 3px #ccc7;
    }

    .cms-mnu-ddn .cms-mnu-hor-sub-ddn-left .cms-mnu-ddn-wrap,
    .cms-mnu-ddn > li:last-child.cms-mnu-hor-sub-ddn .cms-mnu-ddn-wrap {
        right: -1px;
        left: auto;
    }

    .cms-mnu-ddn .cms-mnu-hor-sub-ddn-full .cms-mnu-ddn-wrap {
        left: 0;
    }

    .cms-mnu-ddn-wrap > div {
        padding: 1rem 1rem 1.5rem 1rem;
        border-top: var(--border-mnu-main-hover-top) solid var(--color-mnu-main-hover) !important;
        border-bottom: 2px solid white;
        border-bottom-left-radius: 7px;
        border-bottom-right-radius: 7px;
    }

    .cms-mnu-ddn-wrap > .flexcontainer {
        gap: 2rem;
    }

    .cms-mnu-ddn-wrap .cms-mnu-2col > ul {
        columns: 2;
    }

    .cms-mnu-ddn-wrap .cms-mnu-3col > ul {
        columns: 3;
    }

    .cms-mnu-ddn-wrap .cms-mnu-2col > .cms-mnu-h,
    .cms-mnu-ddn-wrap .cms-mnu-3col > .cms-mnu-h {
        column-span: all;
    }

    /* makes the menu vanish when moving cursor down in it :-(
    .cms-mnu-ddn-wrap .cms-mnu-2col > ul > li > .cms-mnu-ttl,
    .cms-mnu-ddn-wrap .cms-mnu-3col > ul > li > .cms-mnu-ttl {
        column-span: all;
    }
*/

    .cms-mnu-ddn > ul {
        list-style-type: none;
    }

    .cms-mnu-ddn ul li {
        text-align: left;
        text-align: start !important;
        margin: 0;
        padding: 0;
    }

    .cms-mnu-ddn > li > ul li > * {
        padding: 2px 4px;
    }

    .cms-mnu-ddn .cms-mnu-sep {
        border-bottom: 1px solid #aaa;
    }

    .cms-mnu-hor li.small > a {
        font-size: 7pt;
        white-space: normal !important;
        line-height: 7pt;
    }

    .cms-mnu-ddn li.wrap ul li a {
        white-space: normal !important;
    }

    .cms-mnu-ddn > li.cms-mnu-hor-sub-ddn .cms-mnu-h {
        font-size: 1em;
    }


/* it is logical to show inline "head" items smaller than their menu's cms-mnu-ttl,
   but this clashes with "simulate 2 submenus on top of each other flex-floating together"

    .cms-mnu-ddn > li.cms-mnu-hor-sub-ddn .cms-mnu-lvl-2 .cms-mnu-h {
        font-size: 0.9em;
    }
*/

    .cms-mnu-hor .cms-mnu-ddn-wrap {
        background: -moz-linear-gradient(top, #f3f2f1, #f6f9ff);
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f3f2f1), color-stop(100%, #f6f9ff));
        background: -webkit-linear-gradient(top, #f3f2f1, #f6f9ff);
        background: -ms-linear-gradient(top, #f3f2f1, #f6f9ff);
        background: linear-gradient(to bottom, #f3f2f1, #f6f9ff);
        text-align: start !important;
        text-align: left;
        border-bottom-left-radius: 7px;
        border-bottom-right-radius: 7px;
    }

    .cms-mnu-ddn-wrap .cms-mnu-h,
    .cms-mnu-ddn-wrap span.cms-mnu-ttl {
        background: none;
        font-weight: bold;
        color: #555;
        display: block;
        margin-bottom: 0.5em;
        border-bottom-width: 1px;
        border-bottom-color: #555;
    }

    .cms-mnu-ddn-wrap .cms-mnu-h,
    .cms-mnu-ddn-wrap .cms-mnu-lvl-1 > div > span.cms-mnu-ttl {
        padding-bottom: 0.3em;
        border-bottom-style: dotted;
        margin-bottom: 1em;
    }

    .cms-mnu-ddn-wrap .cms-mnu-lvl-2 > li > span.cms-mnu-ttl {
        margin-top: 0.5em;
    }

    .cms-mnu-ddn-wrap ul ul {
        margin-left: 1em;
    }

    .cms-mnu-ddn-wrap ul {
        margin-bottom: 0.5em;
    }

    .cms-mnu-hor-sub-ddn-full li,
    .cms-mnu-hor-sub-ddn li {
        line-height: 1.6rem;
        font-size: 0.9rem;
    }

    .cms-mnu-hor .cms-mnu-ddn-wrap li.hover:not(.cms-mnu-h),
    .cms-mnu-hor .cms-mnu-ddn-wrap li:hover:not(.cms-mnu-h)  {
        background:none;
    }

    .cms-mnu-hor .cms-mnu-ddn-wrap ul li:hover > a,
    .cms-mnu-hor .cms-mnu-ddn-wrap ul li.hover > a,
    .cms-mnu-hor .cms-mnu-ddn-wrap ul li:hover > a:visited,
    .cms-mnu-hor .cms-mnu-ddn-wrap ul li.hover > a:visited {
        color: var(--color-link);
    }

    .cms-mnu-ddn-wrap svg * {
        fill: currentColor;
    }

    .cms-mnu-ddn-wrap .cms-mnu-h.cms-mnu-theme-red,
    .cms-mnu-ddn-wrap .cms-mnu-theme-red > .cms-mnu-ttl {
        color: #a80f29;
    }

    .cms-mnu-ddn-wrap .cms-mnu-h.cms-mnu-theme-darkblue,
    .cms-mnu-ddn-wrap .cms-mnu-theme-darkblue > .cms-mnu-ttl {
        color: #1547c6;
    }

    .cms-mnu-ddn-wrap .cms-mnu-h.cms-mnu-theme-darkgreen,
    .cms-mnu-ddn-wrap .cms-mnu-theme-darkgreen > .cms-mnu-ttl {
        color: #1d4953;
    }

    .cms-mnu-ddn-wrap .cms-mnu-h.cms-mnu-theme-orange,
    .cms-mnu-ddn-wrap .cms-mnu-theme-orange > .cms-mnu-ttl {
        color: #fd7601;
    }

    .cms-mnu-ddn-wrap .cms-mnu-h.cms-mnu-theme-blue,
    .cms-mnu-ddn-wrap .cms-mnu-theme-blue > .cms-mnu-ttl {
        color: #7135ff;
    }

    .cms-mnu-ddn-wrap .cms-mnu-h.cms-mnu-theme-teal,
    .cms-mnu-ddn-wrap .cms-mnu-theme-teal > .cms-mnu-ttl {
        color: #037e92;
    }


}




/**
 * @package CMS
 */
@media print {

    body {
        font-size: 10pt;
        padding: 0 5px;
    }

    html {
        height: auto;
        margin-bottom: 0;
    }

    nav, #nav, #topnav, #search, .ym-searchform {
        display: none;
    }

    body a[href^="http:"], body a[href^="https:"] {
        padding-left: 0;
        background-image: none;
    }

    .ym-g20,
    .ym-g40,
    .ym-g60,
    .ym-g80,
    .ym-g25,
    .ym-g33,
    .ym-g50,
    .ym-g66,
    .ym-g75,
    .ym-g38,
    .ym-g62 {
        width: 100%;
        margin: 0;
        padding: 0;
        float: none !important;
        overflow: visible;
        display: table !important;
    }

    .ym-gbox,
    .ym-gbox-left,
    .ym-gbox-right {
        margin: 0;
        padding: 0;
    }

    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }

    #col1_content:before, #col2_content:before, #col3_content:before {
        content: "";
        color: #888;
        background: inherit;
        display: block;
        font-weight: bold;
        font-size: 1.5em;
    }

    * {
        overflow: visible !important;
    }

    .ym-col1 {
        display: none;
        clear: both;
    }

    .ym-col2 {
        display: none;
        clear: both;
    }

    .ym-col3 {
        width: 100%;
        margin: 0;
    }

    header {
        border-bottom: 1px solid black;
        z-index: 19;
    }

    a[href]:after,
    .mailtohref,
    .cms-media-t-swf,
    .cms-media-t-vid,
    #ieupdatehint,
    .carousel,
    .cms-carousel,
    .truncate_hellip,
    .truncate_trigger,
    .expand_trigger,
    .cmsbelinks,
    .cms-signin,
    .cms-bcnav,
    .cms-widg-ctc-trig,
    .cms-widg-ctc {
        display:none;
    }

}




/**
 * @package CMS
 */
@media (prefers-reduced-motion: reduce) {
    .expand_trigger:hover,
    .fauxexpander:hover {
        transition: none;
    }

    .cms-widg-ctc-trig:hover {
        transform: none;
    }
}




/**
 * @package Flaneweb
 */
@media all {

    /**
     * general
     */
    .dev,
    .devf,
    .intd {
        visibility: hidden;
    }

    a > span.fl-prod-pcode,
    a > span.fl-prod-vers {
        color: var(--color-text-light);
        white-space: nowrap;
    }

    .fl-price-val {
        white-space: nowrap;
    }

    .fl-hint-price-discount {
        white-space: wrap;
    }

    .price.strikethrough {
        font-weight: normal !important;
    }

    span.price {
        white-space: nowrap;
    }

    p.country {
        font-size: 10pt;
        font-weight: bold;
        margin-bottom: 1em;
    }

    div.loadingindicator {
        text-align: center;
        padding: 5px;
    }

    /**
     * page header
     */
    header {
        margin-bottom: 15px;
        height: 89px;
        padding-top: 9px;
        background-color: var(--color-header);
        border-bottom: 1px solid #dddcdb;
        color: #555;
    }

    .fl-head-items {
        display: flex;
        flex-wrap: nowrap;
        gap: 10px;
        align-items: flex-start;
        justify-content: space-between;
        width: 100%;
    }
/*
    .fl-head-items > div {
    }
*/
    .fl-head-logo {
        order: 1;
        flex-grow: 1;
        text-align: left;
        text-align: start !important;
    }

    .fl-head-logo-partner {
        order: 2;
        padding-left: 10px;
        flex-grow: 3;
    }

    .fl-head-logo h2 {
        margin: 0;
    }

    .fl-img-logo-main {
        height: 44px;
        width: 238px;
        margin-top: 8px;
    }

    /*
    svg.fl-img-logo-main .stripes {
        fill:var(--color-link);
    }
*/
    .fl-head-claim {
        order: 3;
        flex-grow: 4;
        font-weight: bold;
        color: #999;
    }

    .fl-head-ctc {
        order: 4;
        flex-grow: 5;
        align-self: center;
        font-weight: bold;
        color: var(--color-text-light);
        line-height: 1.5em;
        text-align: right;
    }

    .fl-head-ctc img {
        margin-left: 1em;
    }

    .fl-head-ctc .cms-link-marked {
        display: inline-block;
    }

    /* site search form in header */
    .fl-head-srch {
        order: 5;
        padding-left: 2em;
        padding-top:1em;
        text-align: right;
        white-space: nowrap;
        border: none;
    }

    .fl-head-srch a {
        font-size: 8pt;
    }

    .fl-head-srch .ym-form {
        margin-bottom: 0;
        background: transparent;
    }

    .fl-head-srch .fl-input-srch-phrase {
        border-radius: 3px;
        width: 150px;
        border: 1px #aaa solid;
        height: 2em;
    }

    .fl-head-srch label {
        display: none;
    }

    /* wrapper for search fields with icon submittor */
    .fl-wrap-srch {
        position: relative;
        margin: 0;
        padding: 0;
    }

    .fl-wrap-srch .fl-srch-submit {
        position: absolute;
        right: 8px;
        top: 4px;
        cursor: pointer;
        color: #333;
        font-size:1.3em;
    }

    .fl-wrap-srch input[type=search] {
        padding-right: 30px;
    }

    /* site search form in maincolumn */
    #col3_content .fl-widg-srch {
        margin-bottom: 1em;
    }

    #col3_content .fl-widg-srch form {
        padding: 1em 0.5em;
        display: flex;
    }

    #col3_content .fl-widg-srch form > * {
        align-self: center;
    }

    #col3_content .fl-widg-srch label {
        padding:0;
    }

    #col3_content .fl-wrap-srch {
        text-align:right;
        text-align:end;
        order:2;
        flex-grow: 20;
        padding-left: 2em;
    }

    #col3_content .fl-h-srch {
        font-size: 12pt;
        font-weight: bold;
        order: 1;
    }

    #col3_content .fl-widg-srch .fl-input-srch-phrase {
        height: 2em;
        width: 100%;
    }

    /* *
    .nagmsg_readonly {
        height: 40px;
        background: #da4;
        display:block;
    }

    .nagmsg_readonly p {
        font-size: 1.2em;
    }

    /**
     * page banner - to be overridden in <locale>.css
     */
    .fl-view-pagebanner {
        background-position: 0 0;
        background-repeat: no-repeat;
        height: 72px;
        width: 100%;
        margin-bottom: 10px;
        margin-left: auto;
        margin-right: auto;
        border: none;
        display: block;
    }

    #fl-view-pagebanner {
        display: none;
    }

    /*
     * top navstrip
     */
    .cms-secnav-top .fl-book-label-numitems {
        margin-left: 0.2em;
        line-height: 1em;
        padding: 0.15em 0.15em 0 0.15em;
        position: relative;
        top: 2px;
        border-radius: 0.75em;
        min-width: 1.5em;
        height: 1.5em;
        display: inline-block;
        text-align: center;
        border: 1px solid currentColor;
    }

    /*
    .cms-secnav-top .fl-book-label-numitems::before {
        content: '[ ';
        font-weight: normal;
    }

    .cms-secnav-top .fl-book-label-numitems::after {
        content: ' ]';
        font-weight: normal;
    }
    */

    .cms-secnav-top .fl-view-bsk a {
        display: block;
        height: 19px;
    }

    /**
     *
     */
    .ovl_localejump {
        width: 500px;
        min-height: 100px;
    }

    /**
     * horizontal menu
     */

    /* horizontal level 0 entries */
    .cms-mnu-hor > li {
        height: 33px;
        border-color: #dddcdb;
        background: -moz-linear-gradient(top, #f3f2f1, #fff);
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f3f2f1), color-stop(100%, #fff));
        background: -webkit-linear-gradient(top, #f3f2f1, #fff);
        background: -ms-linear-gradient(top, #f3f2f1, #fff);
        background: linear-gradient(to bottom, #f3f2f1, #fff);
    }

    .cms-mnu-hor > li:hover > a,
    .cms-mnu-hor > li.hover > a,
    .cms-mnu-hor > li:hover > a:visited,
    .cms-mnu-hor > li.hover > a:visited {
        color: white;
    }

    .cms-mnu-hor ul li:hover > a,
    .cms-mnu-hor ul li.hover > a,
    .cms-mnu-hor ul li:hover > a:visited,
    .cms-mnu-hor ul li.hover > a:visited {
        color: white;
    }

    .cms-mnu-hor li:hover:not(.cms-mnu-h),
    .cms-mnu-hor li.hover:not(.cms-mnu-h) {
        background-color: var(--color-mnu-main-hover);
        background: -moz-linear-gradient(top, var(--color-mnu-main-hover-grad), var(--color-mnu-main-hover));
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, var(--color-mnu-main-hover-grad)), color-stop(100%, var(--color-mnu-main-hover)));
        background: -webkit-linear-gradient(top, var(--color-mnu-main-hover-grad), var(--color-mnu-main-hover));
        background: -ms-linear-gradient(top, var(--color-mnu-main-hover-grad), var(--color-mnu-main-hover));
        background: linear-gradient(to bottom, var(--color-mnu-main-hover-grad), var(--color-mnu-main-hover));
    }

    .cms-mnu-hor > li.cms-mnu-hor-sub-ddn:hover,
    .cms-mnu-hor li.cms-mnu-hor-sub-ddn.hover  {
        border-bottom-width: 0;
    }

    .cms-mnu-hor ul li,
    .cms-mnu-hor ul li a {
        color: black;
    }

    .cms-mnu-hor .cms-mnu-h {
        font-weight:bold;
    }

    /*
     * left sidebar menus
     */
    #col1 .cms-mnu-vert {
        background: -moz-linear-gradient(top, #f3f2f1, #fefefe 200px);
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f3f2f1), color-stop(20%, #fefefe));
        background: -webkit-linear-gradient(top, #f3f2f1, #fefefe 200px);
        background: -ms-linear-gradient(top, #f3f2f1, #fefefe 200px);
        background: linear-gradient(to bottom, #f3f2f1, #fefefe 200px);
        border-top: 1px solid #dddcdb;
    }

    .cms-mnu-fold-r .fl-h-mnu-courses {
        display: none;
    }

    .cms-mnu-fold-r li > * {
        padding-left: 7px;
    }
/*
    .cms-mnu-fold-r a {
        background-image: none !important;
    }
*/

    .cms-mnu-fold-r ul ul {
        min-width: 184px;
    }

    /**
     * yaml horizontal navigation
     */
    .ym-hlist {
        /* (en) containing floats in IE */
        /* (de) Einfassen der Floats im IE */
        width: 100%;
        overflow: hidden;
        position: relative;
        line-height: 1em;
    }
    .ym-hlist ul {
        margin: 0;
        display: inline;
        float: left;
    }
    .ym-hlist ul li {
        display: inline;
        background: #ccc;
        float: left;
        font-size: 1.0em;
        line-height: 1;
        list-style-type: none;
        margin: 0 .5em 0.3em 0;
        padding: 0;
        border-radius: 3px;
    }
    .ym-hlist ul li a,
    .ym-hlist ul li strong {
        background: transparent;
        display: block;
        font-size: 1em;
        line-height: 2em;
        padding: 0 0.5em;
        font-weight: normal;
        text-decoration: none;
        width: auto;
    }
    .ym-hlist ul li a:focus-visible,
    .ym-hlist ul li a:hover,
    .ym-hlist ul li a:active {
        background: #666;
        background: rgba(255, 255, 255, 0.25);
        border-radius: 0.2em;
        text-decoration: none;
        outline: 0 none;
    }
    .ym-hlist ul li.active {
        background: #666;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 0.2em;
        color: #fff;
    }
    .ym-hlist ul li.active strong,
    .ym-hlist ul li.active a:focus-visible,
    .ym-hlist ul li.active a:hover,
    .ym-hlist ul li.active a:active {
        background: transparent;
        color: #fff;
        text-decoration: none;
    }


    /**
     * forms
     */

    .ym-form input:not(.ym-error),
    .ym-form textarea:not(.ym-error),
    .ym-form select:not(.ym-error),
    .ym-form input:not(.ym-error):valid,
    .ym-form textarea:not(.ym-error):valid,
    .ym-form select:not(.ym-error):valid {
        border-color: white white #333 white;
        border-width: 1px;
    }

    .ym-form input,
    .ym-form textarea,
    .ym-form select {
        padding: 0.8em 0.5em;
        color: var(--color-text);
    }

    input.ym-error, textarea.ym-error, select.ym-error,
    .ym-form .ym-error input, .ym-form .ym-error textarea, .ym-form .ym-error select {
        border-color: var(--color-frm-req) !important;
    }

    .ym-form input:not(.ym-error):focus-visible,
    .ym-form textarea:not(.ym-error):focus-visible,
    .ym-form select:not(.ym-error):focus-visible {
        border-color: var(--color-frm-fld-focus);
        outline: none;
    }

    .ym-form input[disabled],
    .ym-form textarea[disabled],
    .ym-form select[disabled] {
        background-color: white !important;
    }

    .ym-form .ym-required {
        color: var(--color-frm-req);
        font-size: 1em;
        top: -0.2em;
    }

    .ym-button,
    .ym-form button,
    .ym-form input[type="button"],
    .ym-form input[type="reset"],
    .ym-form input[type="submit"] {
        border: none;
        padding: 1em 2.5em;
        font-weight: 400;
    }
/*
    .ym-button:hover,
    .ym-form button:hover,
    .ym-form input[type="button"]:hover,
    .ym-form input[type="reset"]:hover,
    .ym-form input[type="submit"]:hover {
        border: none;
    }
*/
    .ym-button:active,
    .ym-form button:active,
    .ym-form input[type="button"]:active,
    .ym-form input[type="reset"]:active,
    .ym-form input[type="submit"]:active {
        background-color: black !important;
/*        border: none;
*/
        color: white !important;
    }

    .ym-button:focus-visible,
    .ym-form button:focus-visible,
    .ym-form input[type="button"]:focus-visible,
    .ym-form input[type="reset"]:focus-visible,
    .ym-form input[type="submit"]:focus-visible {
        background-color: var(--color-btn-primary) !important;
        outline-color: var(--color-btn-primary-2);
    }

    .ym-button.ym-primary,
    .ym-form button.ym-primary,
    .ym-form input[type="button"].ym-primary,
    .ym-form input[type="reset"].ym-primary,
    .ym-form input[type="submit"].ym-primary {
        background-color: var(--color-btn-primary) !important;
        color: white !important;
        border: none;
    }

    .ym-button.ym-primary:hover,
    .ym-form button.ym-primary:hover,
    .ym-form input[type="button"].ym-primary:hover,
    .ym-form input[type="reset"].ym-primary:hover,
    .ym-form input[type="submit"].ym-primary:hover {
        background-color: var(--color-btn-primary-2) !important;
        color: white !important;
    }

    .ym-button.ym-primary:active,
    .ym-form button.ym-primary:active,
    .ym-form input[type="button"].ym-primary:active,
    .ym-form input[type="reset"].ym-primary:active,
    .ym-form input[type="submit"].ym-primary:active {
        top: 0;
    }

    .ym-form legend, .ym-form .ym-fbox-heading {
        margin-bottom: 2rem;
    }

    .ym-form .ym-fbox {
        padding: .3em 1em 1em 1em;
    }

    .ym-button {
        padding: 0.5em 1em;
        border: 1px solid black;
        border-radius: 1px;
    }

    .ym-button.fl-btn-linkcolour {
        font-weight: bold;
        color: var(--color-link) !important;
        background-color: transparent;
        border: 1px solid var(--color-link) !important;
    }
    .ym-button.fl-btn-linkcolour:hover {
        background-color: var(--color-link) !important;
        color: var(--color-link-compl) !important;
    }
    .ym-button.fl-btn-linkcolour:focus-visible {
        background-color: var(--color-link) !important;
        color: var(--color-link-compl) !important;
        outline-color: var(--color-link);
    }

    .ym-button.fl-btn-transp {
        background: transparent !important
    }

    /**
     * tag clouds
     *
    .tagcloud span {
        display: inline;
        float: left;
    }

    .tagcloud span * {
        font-size: inherit;
    }

    .tag1 {
        font-size: 8pt;
    }

    .tag2 {
        font-size: 9pt;
    }

    .tag3 {
        font-size: 10pt;
    }

    .tag4 {
        font-size: 11pt;
    }

    .tag5 {
        font-size: 12pt;
    }

    .tag6 {
        font-size: 13pt;
    }

    .tag7 {
        font-size: 14pt;
    }
     */

    /**
     * overlay (lightbox)
     */

    .ovl_content {
        background-color: white;
    }

    .ovl_pad {
        padding: 10px;
    }

    /**
     * page footer
     */
    footer {
        margin: 0;
        font-size: 8pt;
        width: 100%;
    }

    footer .page_margins {
        border-top: 14px solid transparent;
        text-align: center;
    }

    footer {
        font-size: 8pt;
        color: var(--color-text-light);
    }

    footer a:visited {
        color: var(--color-text-light);
    }

    footer .cms-secnav-item {
        display: inline;
        padding: 0 7px;
        border-left: 1px solid #666;
        vertical-align: middle;
        margin: 0;
        white-space: nowrap;
    }

    footer .cms-secnav-item:first-child {
        border: none;
    }

    footer .cms-signin .cms-icon {
        display: none;
    }

    footer .cms-signin-items:before {
        content: ' [';
    }

    footer .cms-signin-items .cms-signin-item:not(:first-child):before {
        content: ' | ';
    }

    footer .cms-signin-items:after {
        content: ']';
    }

    .cms-signin-uname {
        margin-right: 1em;
    }

    .cms-secnav-top .cms-signin-uname {
        float: left;
    }

    .cms-secnav-top .cms-signin .cms-signin-link-label {
        display: none;
    }

    .cms-view-form-signin {
        width: 40%;
        margin: 0 auto;
    }

    /**
     * misc
     */
    .cms-icon.cms-icon-flag {
        height: 0.75em;
        position:relative;
        top:0.1em;
    }

    /**
     *
     */
    #sidebarillu img {
        width: 197px;
        border: 1px solid #aeaeae;
        background-color: white;
        -moz-border-radius: 3px;
    }

    /**
     * schedules
     */

    .fl-sched-hints {
        margin-bottom: 1em;
        clear: both;
    }

    .fl-sched-hint {
        position: relative;
        padding: 7px 0 7px 2rem;
        font-size: 0.8rem;
        clear: both;
    }

    .fl-sched-hint .cms-icon {
        position: absolute;
        top: 0.5em;
        left: 0;
    }

    .fl-sched-itm-sold .cms-icon {
        opacity: 0.5;
    }

    /* gtr svg icon */
    .fl-icn-gtr {
        fill: #24a148 !important;
    }
    .fl-icn-agtr {
        fill: #d5a900 !important;
    }

    .fl-icn-style-border-light {
        border: 1px solid #eee;
        border-radius: 1px;
    }

    /**
     * math
     */
    .frac {
        position: relative;
        top: 1px;
        display: inline-block;
        font-size: 70%;
        text-align: center;
    }

    .frac > sup {
        display: block;
        border-bottom: 1px solid;
        font: inherit;
        font-size: 10pt;
    }

    .frac > .frac_sl {
        display: none;
    }

    .frac > sub {
        display: block;
        font: inherit;
        font-size: 10pt;
    }






    /* obsolete? @todo check these */

    .boxtitle .icn_guaranteed {
        background-position: 0 -32px;
    }
    .icn_guaranteed {
        background-position: 0 -32px;
    }
    .icn_vlearning {
        background-position: 0 -64px;
    }
    .icn_clearning {
        background-position: 0 -128px;
    }
    .icn_guaranteedvlearning {
        background-position: 0 -96px;
    }
    .icn_flex {
        background-position: 0 -160px;
    }
    .icn_night {
        background-position: 0 -192px;
    }
    .icn_almostguaranteed {
        background-position: 0 -256px;
    }
    .icn_almostguaranteedvlearning {
        background-position: 0 -288px;
    }
    .icn_tcenter {
        background-position: 0 -352px;
    }
    .icn_elearning {
        background-position: 0 -384px;
    }
    .icn_webinar {
        background-position: 0 -416px;
    }
    .icn_onsite {
        background-position: 0 -448px;
    }
    .icn_newcourse {
        background-position: 0 -480px;
    }
    .icn_tpacket {
        background-position: 0 -512px;
    }
    .icn_bonus {
        background-position: 0 -544px;
    }
    .icn_newsletter {
        background-position: 0 -576px;
    }
    .icn_lab {
        background-position: 0 -608px;
    }
    .icn_ekit {
        background-position: 0 -640px;
    }
    .icn_catering {
        background-position: 0 -672px;
    }
    .icn_email {
        background-position: 0 -704px;
    }
    .icn_facebook {
        background-position: 0 -736px;
    }
    .icn_twitter {
        background-position: 0 -768px;
    }
    .icn_xing {
        background-position: 0 -800px;
    }
    .icn_youtube {
        background-position: 0 -832px;
    }
    .icn_linkedin  {
        background-position: 0 -864px;
    }
    .icn_rss  {
        background-position: 0 -896px;
    }
    .icn_skype {
        background-position: 0 -928px;
    }
    .icn_vkontakte {
        background-position: 0 -960px;
    }
    .icn_blog {
        background-position: 0 -992px;
    }
    .icn_phone {
        background-position: 0 -1024px;
    }
    .icn_fax {
        background-position: 0 -1056px;
    }
    .icn_tollfree {
        background-position: 0 -1088px;
    }
    .icn_basket {
        background-position: 0 -1376px;
    }
    .icn_warn {
        background-position: 0 -1504px;
    }
    .icn_close {
        background-position: 0 -1536px;
    }
    .icn_vlearning_white {
        background-position: 0 -1568px;
    }
    .icn_clearning_white {
        background-position: 0 -1600px;
    }

    /**
     *
     */

    .fl-xml-tree h2
    {
        font-weight: bold !important;
    }
    .fl-xml-tree h3,
    .fl-xml-tree h4,
    .fl-xml-tree h5,
    .fl-xml-tree h6 {
        font-weight: normal !important;
    }

}




/**
 * @package Flaneweb
 */
@media screen {

    /**
     * page footer
     */
    footer {
        position: absolute;
        bottom: 0;
        margin: 0;
        height: var(--footer-height);
        background-color: var(--color-footer);
        border-top: 1px solid #dddcdb;
        border-bottom: 15px solid;
        border-bottom-color: var(--color-footer-2);
    }

    .callmebox .boxcontent {
        background: url('img/callme.png') no-repeat 5px 4px;
        text-indent: 20px;
    }

    .skypebox {
        text-align: center;
        /*    background-color: #e5ebef; */
    }

    .jabberguestlink {
        cursor:pointer;
    }

    .skypebox .boxcontent {
        padding: 5px 0;
    }

    .skypebox img.skypebtn {
        border: none;
        width: 114px;
        height: 20px;
        margin: 5px auto;
    }

    .cms-socbookmarks {
        padding: 0.5em 0;
        border-top: 1px solid #ddd;
        min-height: 3.5em;
    }

    .cms-socbookmarks-ttl {
        display: inline-block;
        background-color: #dddcdb;
        font-weight: bold;
        line-height: 2.4em;
        color: #777;
        height: 2.4em;
        margin-right: 2em;
        padding: 0 1em 0 .5em !important;
    }

    .fbboxtop {
        display: block;
        height: 7px;
        bottom: -1px;
        position: relative;
        background: transparent url('img/likebox_arrow_up.gif') no-repeat center bottom;
    }

    .fbboxbody {
        padding: 8px 8px 0 8px;
        border: 1px solid #dddcdb;
    }

    svg.fl-trig-ovl-info {
        cursor: pointer;
        fill: blue !important;
        margin-left: 0.5em;
    }

    .fl-ovl-info {
        display:none;
    }


}




/**
 * @package Flaneweb
 */
@media print {
    .newsticker,
    .homebanner,
    .fl-prod-mod-ttl .fl-icn-mod,
    .fl-trig-btn-book,
    .cms-secnav-top,
    #mmnung {
        display: none;
    }

    .intd,
    .intd_e,
    .intd_s,
    .intd_a {
        outline: none;
    }

    .fl-head-logo {
        display: block;
        margin: 0;
    }

    footer {
        margin-top: 2rem;
        border-bottom: none;
        height: 3em;
        border-top: 2px solid black;
    }

}




/**
 * @package Flaneweb
 */
@media screen and (-ms-high-contrast: active)  {

    .fl-img-logo-main,
    .fl-img-logo-partner {
        fill: windowText;
    }

    .cms-widg-ctc-trig {
        border: 1px solid windowText;
    }
/*
    .ui-tabs .ui-tabs-nav .ui-state-active {
        background-color: highlight !important;
    }
    .ui-tabs .ui-tabs-nav .ui-state-active a {
        color: highlightText !important;
    }
*/

}




/**
 * Featherlight - ultra slim jQuery lightbox
 * Version 1.7.13 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2018, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/

@media all {
    html.with-featherlight{overflow:hidden}
    .featherlight{display:none;position:fixed;top:0;right:0;bottom:0;left:0;z-index:2147483647;text-align:center;white-space:nowrap;cursor:pointer;background:#333;background:rgba(0,0,0,0)}
    .featherlight:last-of-type{background:rgba(0,0,0,.6)}
    .featherlight:before{content:'';display:inline-block;height:100%;vertical-align:middle}
    .featherlight .featherlight-content{position:relative;text-align:left;vertical-align:middle;display:inline-block;overflow:auto;padding:25px 25px 0;border-bottom:25px solid transparent;margin-left:5%;margin-right:5%;max-height:95%;background:#fff;cursor:auto;white-space:normal;border-radius:10px}
    .featherlight .featherlight-inner{display:block}
    .featherlight link.featherlight-inner,
    .featherlight script.featherlight-inner,
    .featherlight style.featherlight-inner{display:none}
    .featherlight .featherlight-close-icon{position:absolute;z-index:9999;top:0;right:0;line-height:25px;width:25px;cursor:pointer;text-align:center;font-family:Arial,sans-serif;background:#fff;background:rgba(255,255,255,.3);color:#000;border:0;padding:0}
    .featherlight .featherlight-close-icon::-moz-focus-inner{border:0;padding:0}
    .featherlight .featherlight-image{width:100%}
    .featherlight-iframe .featherlight-content{border-bottom:0;padding:0;-webkit-overflow-scrolling:touch}
    .featherlight iframe{border:0}
    .featherlight *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}
}
@media only screen and (max-width:1024px){
    .featherlight .featherlight-content{margin-left:0;margin-right:0;max-height:98%;padding:10px 10px 0;border-bottom:10px solid transparent}
}
@media print{
    html.with-featherlight>*>:not(.featherlight){display:none}
}
