    html, body, div, span, applet, object, iframe,
    h1, h2, h3, h4, h5, h6, p, blockquote, pre,
    a, abbr, acronym, address, big, cite, code,
    del, dfn, em, img, ins, kbd, q, s, samp,
    small, strike, strong, sub, sup, tt, var,
    b, u, i, center,
    dl, dt, dd, ol, ul, li,
    fieldset, form, label, legend,
    table, caption, tbody, tfoot, thead, tr, th, td,
    article, aside, canvas, details, embed,
    figure, figcaption, footer, header, hgroup,
    menu, nav, output, ruby, section, summary,
    time, mark, audio, video {
    	margin: 0;
    	padding: 0;
    	border: 0;
    	font-size: 100%;
    	font: inherit;
    	vertical-align: baseline;
    }
    /* HTML5 display-role reset for older browsers */
    article, aside, details, figcaption, figure,
    footer, header, hgroup, menu, nav, section {
    	display: block;
    }
    body {
        line-height: 1;
        font-family: Helvetica;
    }
    ol, ul {
    	list-style: none;
    }
    blockquote, q {
    	quotes: none;
    }
    blockquote:before, blockquote:after,
    q:before, q:after {
    	content: '';
    	content: none;
    }
    table {
    	border-collapse: collapse;
    	border-spacing: 0;
    }
        h1 {
        margin: 0 0 0 0;
        font-family: 'Chunk Five-Regular';
        font-size: 78px;
        word-spacing: 0.05em;
        font-weight: 800;
        line-height: 0.8em;
        color: #289294;
    }
    h2 {
        margin: 0 0 0 0;
        font-size: 28px;
        word-spacing: 0.0em;
        font-weight: 600;
        color: #525252;
        line-height: 150%;
        padding-bottom: 8px;
    }
    h3 {
        margin: 0 0 0 0;
        font-size: 20px;
        word-spacing: 0.0em;
        font-weight: 600;
        color: #525252;
    }
    h4 {
        margin: 0 0 0 0;
        font-size: 18px;
        word-spacing: 0.0em;
        font-weight: 400;
        color: #525252;
    } 
    h5 {
        margin: 0 0 0 0;
        font-size: 14px;
        word-spacing: 0.0em;
        font-weight: 600;
        color: #7a7a7a;
    }
    a {
        background-color: transparent;
        margin: 1.0em 0;
        font-size: 20px;
        word-spacing: 0.0em;
        font-weight: 500;
    }
    a.tooltip {
        position: relative;
        text-decoration: none;
    }
    a.tooltip:after {
        content: attr(data-tooltip);
        position: absolute;
        bottom: 130%;
        left: 20%;
        background: #414141;
        padding: 5px 15px;
        color: white;
        -webkit-border-radius: 10px;
        -moz-border-radius : 10px;
        border-radius : 10px;
        white-space: nowrap;
        opacity: 0;
        -webkit-transition: all 0.4s ease;
        -moz-transition : all 0.4s ease;
        transition : all 0.4s ease;
    }
    a.tooltip:before {
        content: "";
        position: absolute;
        width: 0;
        height: 0;
        border-top: 20px solid #414141;
        border-left: 20px solid transparent;
        border-right: 20px solid transparent;
        -webkit-transition: all 0.4s ease;
        -moz-transition : all 0.4s ease;
        transition : all 0.4s ease;
        opacity: 0;
        left: 30%;
        bottom: 90%;
    }
    a.tooltip:hover:after {
        bottom: 100%;
    }
    a.tooltip:hover:before {
        bottom: 70%;
    }
    a.tooltip:hover:after, a:hover:before {
        opacity: 1;
    }
    p {
        background-color: transparent;
        margin: 1.0em 0;
        font-size: 20px;
        word-spacing: 0.0em;
        font-weight: 400;
        padding-top: 0px;
        padding-bottom: 8px;
    }
        /* DEFAULTS */

    body {
      color: white;
    }
    
    /* SETTING UP THE GRID LAYOUT */
    .container {
        padding: 0px;
        width: 100%;
        background-color: white;
        }   
    .navbar-header {
        background-color: transparent;
        }
    .navbar {
        position: fixed;
        left:140px;
        top: 0;
        overflow: hidden;
        background-color: transparent;
        font-family: Arial, Helvetica, sans-serif;
        text-decoration: none;
    }
    .navbar a {
        float: left;
        font-size: 16px;
        color: #289294;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
    }
    .dropdown {
        float: left;
        overflow: hidden;
    }
    .dropdown .dropbtn {
        font-size: 16px;  
        border: none;
        outline: none;
        color: white;
        padding: 14px 16px;
        background-color: inherit;
        font-family: inherit;
        margin: 0;
    }
    .navbar a:hover, .dropdown:hover .dropbtn {
        color: gray;
    }
    .dropdown-content {
        display: none;
        position: absolute;
        background-color: #f9f9f9;
        min-width: 160px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        z-index: 1;
    }
    .dropdown-content a {
        float: none;
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: left;
    }
    .dropdown-content a:hover {
        background-color: #ddd;
    }
    .dropdown:hover .dropdown-content {
        display: block;
    }    
    .header {
        position: fixed;
        left:0;
        right:0;
        top:0;
        height: 140px;
        z-index: 10;
        color: black;
    }
    .jumbotron {
        position: fixed;
        left:300px;
        right:auto;
        top:120px;
        height: 180px;
        width: 100%;
        z-index: 9;
        color: black;
        background-color: white;
        padding-top: 20px;
    }
    .wrapper_r {
        display: grid;
        grid-template-columns: 650px auto 800px;
        grid-template-rows: auto 20px;
        margin-top: 330px;
    }
        .wrapper_m {
        display: grid;
        grid-template-columns: 650px auto 800px;
        grid-template-rows: auto 20px;
        margin-top: 330px;
    }
    .wrapper_l {
        display: grid;
        grid-template-columns: 650px auto 800px;
        grid-template-rows: auto 20px;
        margin-top: 320px;
    }
    .wrapper_i {
        display: grid;
        grid-template-columns: 600px auto 600px;
        grid-template-rows: auto 20px;
        margin-top: 130px;
    }
    .content-one-left {
        grid-column: 1 1;
    }
    .content-one-middle {
        grid-column: 2 2;
        height: auto;
        color: black;
    }
    .content-one-right {
        grid-column: 3 3;
    }
    .box {
        float: left;
        width: 33.33333%;
        min-width: 260px;
        height: 200px;
        padding-top: 40px;
        box-sizing: border-box;
    }
    .footer {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        text-align: center;
        z-index: 115;
        background-color: white;
    }
    .lu_img{
        display: fixed;
        position: absolute;
        left: 0;
        bottom: 0;
        width: 300px;
            }
    .lu_img_b{
        display: fixed;
        position: absolute;
        left: 0;
        bottom: 0;
        width: 400px;
            }            
    .ru_img{
        display: fixed;
        position: absolute;
        right: 0px;
        bottom: 0;
        width: 300px;
        }          
    .ru_img_b{
        display: fixed;
        position: absolute;
        right: 0px;
        bottom: 0;
        width: 470px;
        }
    .willkommen_img{
        width: 500px;
    }
    .footer p{
        font-size: 14px;
        color: black;
    }
    .footer a{
        font-size: 14px;
        color: black;
    }
    .header_bg {
        background-image: url(../image/Logo_ohne_x_233x100.png);
        background-repeat: no-repeat;
        background-position: right;
        background-color: white;
        margin-right: 10px;
        margin-bottom: 20px;
        height: 120px;
        }
    #wLine {
        background: #333;
        border: none;
        color: #333;
        height: 1px;
        position: absolute;
        left: 0em;
        right: 1em; 
        top: 60px;
        padding-left: 10px;
        }
    /*!
    * Schriften 
    */
    @font-face{
        font-family: 'Chunk Five-Print';
        src: url('../fonts/ChunkFive-Print.otf') format('opentype');
    }
    @font-face{
        font-family: 'Chunk Five-Regular';
        src: url('../fonts/ChunkFive-Regular.otf') format('opentype');
    }
    .buzzWord{
        font-size: 1.4em;
    }
    .green{
        color: #289294;
    }
    .blue{
        color: #254d8d;
    }
    .lineEnter_a{
        padding-left: 15px;
    }
    .lineEnter_b{
        padding-left: 35px;
    }
    .lineEnter_c{
        padding-left: 55px;
    }
    .lineEnter_d{
        padding-left: 150px;
    }

    .col0{
        color: black;
    }
    .col {
        column-count:2; 
        column-gap:1em;
        column-width: auto;
        orphans:4; 
    }
    .col p {
        margin: 0 0 0 0 ;
        font-size: 20px; 
        hyphens:auto;
        line-height: 125%;
        text-align: justify; 
        orphans: 3;
        widows: 3;
    }
    .col h3 {
        margin: 15px 0 5px 0 ;
    }

    .pIndDa {
        font-size: 10px; 
        text-decoration: none; 
    }
    .pIndDa a{
        font-size: 10px; 
        text-decoration: none;
        color: #525252;
    }

    .Blocksatz {
        page-break-inside: avoid-column;                                  
        -webkit-column-break-inside: avoid-column;
        page-break-inside: avoid-column;
        break-inside: avoid-column;
    }

    .wlink{ 
        background-color: #b8b8b8;;
        padding: 10px;
    }
    .ulsymbol_t {  
        padding-left: 20px;
        padding-top: 5px;
        padding-bottom: 5px;
        line-height: 1.5;
    }
    .ulsymbol_t li{ 
        padding-bottom: 5px;
    }
    .ulsymbol_t a{ 
        font-size: 20px;
        text-decoration: none;
        line-height: 1.0;
        padding-top: 0px;
    }
    .ulsymbol { 
        padding-left: 20px;
        padding-top: 10px;
        color: #289294;
        margin-left: -1em;
        text-indent: 0em;
    }
    .ulsymbol a{ 
        font-size: 20px;
        color: #289294;
        text-decoration: none;
    }
    .ulsymbol a:hover{ 
        color: #254d8d;
        font-weight: 600;
    }
    .ulsymbol_NoL { 
        list-style: inside url('../image/abakus_12x12.ico'); 
        padding-top: 10px;
        margin-left: 1em;
        text-indent: -1em;
    }
    .ulsymbol_NoL li{ 
        padding-top: 10px;
    }
    .ulsymbol_NoL a{ 
        font-size: 20px;
        text-decoration: none;
        line-height: 1.0;
        padding-top: 0px;
    }
    .ulsymbol_X { 
        list-style: inside url('../image/abakus_12x12.ico'); 
        padding-top: 10px;
        margin-left: 1em;
        text-indent: -1em;
    }
    .back_to{
        padding-top: 0px;
        font-weight: bold;
        position: absolute;
        left: 20px;
        top: -30px;
        line-height: 2.0em;

    }
    .flex {
        width: 80%;
        padding: 0 10%;
    }
    .sym_back{
        font-size: 35px;
        font-weight: 600;
        color: #289294;
        text-decoration: none;
    }

    .l_floatBox{
        float: left;
        padding-top: 15px;
        width: 280px;
        height: 100px;

    }
    .m_floatBox{     
        float: left;   
        padding-top: 15px;
        width: 280px;
        height: 100px;

    }
    .r_floatBox{
        float: right;
        padding-top: 15px;
        height: 100px;

    }
    .clear_floatBox{
        clear: left;
        clear: right;
        padding-top: 30px;
    }
    .l_floatBox2{
        float: left;
        padding-top: 0px;
        width: 50%;
        min-width: 280px;
        height: 100px;
    }
    .r_floatBox2{
        float: right;
        padding-top: 0px;
        width: 50%;
        min-width: 280px;
        height: 100px;
    }
    .clear_floatBox2{
        clear: left;
        clear: right;
        padding-top: 35px;
    }

    .ListBlock_K{
        padding-left: 5px;
        margin: 10px;
        vertical-align: top;
        border-left-width: 3px;
        border-left-style: solid;
        border-left-color: #254d8d;
    }
    .ListBlock_K H3{
        padding-bottom: 3px;
    }
    .ListBlock_K p{
        margin-top: 0;
        margin-bottom: 0;
        padding-bottom: 0;

    }


    .slidein {
    animation-duration: 6s;
    animation-name: slidein;
    animation-iteration-count: 1;
    animation-direction: alternate;
    }

    @keyframes slidein {
    from {
        margin-top: 5%;
        margin-left:0%;
        width:0%
    }
    66%{
        margin-top: 10%;
        margin-left:5%;
        width:30%;    
    }
    to {
    
        margin-top: 10%;
        margin-left: 5%;
        width:30%;
    }
    }


    /* Extra large devices (large desktops, 1200px and up) */
    @media (min-width: 1200px){
        .wrapper_r {
        grid-template-columns: 10% auto 30%;
        }
        .wrapper_m {
        grid-template-columns: 20% auto 20%;
        }
        .wrapper_l {
        grid-template-columns: 30% auto 10%;
        }    
        .wrapper_i {
        grid-template-columns:20% auto 20%;
        margin-top: 130px;
        }                   
        .jumbotron {
            left:10%;
        }      
        .lu_img{
            width: 15%;
        }
        .lu_img_b{
            width: 20%;
            } 
        .ru_img{
            width: 15%;
        }  
        .ru_img_b{
            width: 25%;
        } 
        .willkommen_img{
        width: 500px;
        }
    }
    /* Large devices (desktops, 992px and up) */
    @media (min-width: 992px) and (max-width: 1199.98px){
        .wrapper_r {
        grid-template-columns: 10% auto 30%;
        }
        .wrapper_m {
        grid-template-columns: 20% auto 20%;
        }
        .wrapper_l {
        grid-template-columns: 30% auto 10%;
        }    
        .wrapper_i {
        grid-template-columns:20% auto 20%;
        margin-top: 130px;
        }              
         .jumbotron {
            left:10%;
        }      
        .lu_img{
            width: 15%;
        }
        .lu_img_b{
            width: 20%;
            } 
        .ru_img{
            width: 15%;
        }  
        .ru_img_b{
            width: 25%;
        } 
        .willkommen_img{
        width: 470px;
        }
    }
    /* Medium devices (tablets, 768px and up) */
    @media (min-width: 812.1px) and (max-width: 991.98px) {
        .wrapper_r, .wrapper_m, .wrapper_l {
        grid-template-columns: 0 auto 0;
        }
        .wrapper_i  {
        grid-template-columns: 0 auto 0;
        margin-top: 130px;
        }
        .jumbotron {
            left:40px;
        }      
        .lu_img, .lu_img_b, .ru_img, .ru_img_b{
            display: none;
        }
        .lineEnter_a, .lineEnter_b, .lineEnter_c, .lineEnter_d{
            padding-left: 10px;
        }
        .content-one-middle {
            padding-left: 50px;
            padding-right: 50px;
        }
        .navbar {
            position: fixed;
            left:0;
            top: 0;
            overflow: hidden;
            background-color: transparent;
            font-family: Arial, Helvetica, sans-serif;
        }
        .navbar a {
        float: left;
        font-size: 16px;
        color: #289294;
        text-align: center;
        padding: 14px 10px;
        text-decoration: none;
        }
        .willkommen_img{
        width: 430px;
        }
    }
    /* Small devices (landscape phones incl. X, 576px and up) */
    @media (min-width: 576px) and (max-width: 812px) {
        h1 {
            font-size: 32px;
            word-spacing: 0.05em;
            font-weight: 800;
            line-height: 1em;
        }
        h2 {
            font-size: 20px;
            word-spacing: 0.05em;
            font-weight: 800;
            line-height: 1em;
        }
        .jumbotron {
            position: absolute;
            left:10px;
            right:auto;
            height: 90px;
        }
        .wrapper_r, .wrapper_m, .wrapper_l {
            grid-template-columns: 0px auto 0px;
            margin-top: 240px;
            padding-top: 10px;
        }    
        .wrapper_i {
            grid-template-columns: 0px auto 0px;
            margin-top: 110px;
            padding-top: 10px;
        }  
        
        .lu_img, .lu_img_b, .ru_img, .ru_img_b{
            display: none;
        }
        .lineEnter_a, .lineEnter_b, .lineEnter_c, .lineEnter_d{
            padding-left: 10px;
        }
        .content-one-middle {
            padding: 20px;
        }
        p {
            font-size: 16px;
            word-spacing: 0.0em;
            font-weight: 400;
        }
        .navbar {
            position: fixed;
            left:0;
            top: 0;
            overflow: hidden;
            background-color: transparent;
            font-family: Arial, Helvetica, sans-serif;
        }
        .navbar a {
            float: left;
            font-size: 16px;
            color: #289294;
            text-align: center;
            padding: 14px 10px;
            text-decoration: none;
        }
        .box {
            width: 100%;
            padding-top: 25px;
            height: auto;
        }
        .col {
            column-count:1; 
        }
        .header_bg {
            margin-right: 10px;
        }
        .willkommen_img{
            width: 180px;
        }
        .l_floatBox2{
            float: left;
            padding-top: 15px;
            width: 100%;
            min-width: 280px;

        }
        .r_floatBox2{
            float: left;
            padding-top: 10px;
            width: 100%;
            min-width: 280px;

        }
        .clear_floatBox{
            clear: left;
            padding-top: 10px;
        }
    }
/* Extra small devices (portrait phones, less than 576px) */
    @media (max-width: 575.98px)  {
        h1 {
            font-size: 32px;
            word-spacing: 0.05em;
            font-weight: 800;
            line-height: 1em;
        }
        h2 {
            font-size: 20px;
            word-spacing: 0.05em;
            font-weight: 800;
            line-height: 1em;
        }
        .jumbotron {
            position: absolute;
            left:10px;
            right:auto;
            height: 90px;
        }
        .wrapper_r, .wrapper_m, .wrapper_l {
            grid-template-columns: 0px auto 0px;
            margin-top: 240px;
            padding-top: 10px;
        }    
        .wrapper_i {
            grid-template-columns: 0px auto 0px;
            margin-top: 110px;
            padding-top: 10px;
        }  
        
        .lu_img, .lu_img_b, .ru_img, .ru_img_b{
            display: none;
        }
        .lineEnter_a, .lineEnter_b, .lineEnter_c, .lineEnter_d{
            padding-left: 10px;
        }
        .content-one-middle {
            padding: 20px;
        }
        p {
            font-size: 16px;
            word-spacing: 0.0em;
            font-weight: 400;
        }
        .navbar {
            position: fixed;
            left:0;
            top: 0;
            overflow: hidden;
            background-color: transparent;
            font-family: Arial, Helvetica, sans-serif;
        }
        .navbar a {
            float: left;
            font-size: 16px;
            color: #289294;
            text-align: center;
            padding: 14px 10px;
            text-decoration: none;
        }
        .box {
            width: 100%;
            padding-top: 25px;
            height: auto;
        }
        .col {
            column-count:1; 
        }
        .header_bg {
            margin-right: 10px;
        }
        .willkommen_img{
            width: 180px;
        }
        .l_floatBox2{
            float: left;
            padding-top: 15px;
            width: 100%;
            min-width: 280px;

        }
        .r_floatBox2{
            float: left;
            padding-top: 10px;
            width: 100%;
            min-width: 280px;

        }
        .clear_floatBox{
            clear: left;
            padding-top: 10px;
        }
    }



