

/**
 *
 * slippry v1.4.0 - Responsive content slider for jQuery
 * http://slippry.com
 *
 * Authors: Lukas Jakob Hafner - @saftsaak
 *          Thomas Hurd - @SeenNotHurd
 *
 * Copyright 2016, booncon oy - http://booncon.com
 *
 *
 * Released under the MIT license - http://opensource.org/licenses/MIT
 */
/* kenBurns animations, very basic */
@-webkit-keyframes left-right {
  0% {
    -webkit-transform: translateY(-20%) translateX(-10%);
            transform: translateY(-20%) translateX(-10%); }
  100% {
    -webkit-transform: translateY(0%) translateX(10%);
            transform: translateY(0%) translateX(10%); } }
@-o-keyframes left-right {
  0% {
    -o-transform: translateY(-20%) translateX(-10%);
       transform: translateY(-20%) translateX(-10%); }
  100% {
    -o-transform: translateY(0%) translateX(10%);
       transform: translateY(0%) translateX(10%); } }
@keyframes left-right {
  0% {
    -webkit-transform: translateY(-20%) translateX(-10%);
         -o-transform: translateY(-20%) translateX(-10%);
            transform: translateY(-20%) translateX(-10%); }
  100% {
    -webkit-transform: translateY(0%) translateX(10%);
         -o-transform: translateY(0%) translateX(10%);
            transform: translateY(0%) translateX(10%); } }
@-webkit-keyframes right-left {
  0% {
    -webkit-transform: translateY(0%) translateX(10%);
            transform: translateY(0%) translateX(10%); }
  100% {
    -webkit-transform: translateY(-20%) translateX(-10%);
            transform: translateY(-20%) translateX(-10%); } }
@-o-keyframes right-left {
  0% {
    -o-transform: translateY(0%) translateX(10%);
       transform: translateY(0%) translateX(10%); }
  100% {
    -o-transform: translateY(-20%) translateX(-10%);
       transform: translateY(-20%) translateX(-10%); } }
@keyframes right-left {
  0% {
    -webkit-transform: translateY(0%) translateX(10%);
         -o-transform: translateY(0%) translateX(10%);
            transform: translateY(0%) translateX(10%); }
  100% {
    -webkit-transform: translateY(-20%) translateX(-10%);
         -o-transform: translateY(-20%) translateX(-10%);
            transform: translateY(-20%) translateX(-10%); } }
/* added to the original element calling slippry */
.sy-box.sy-loading {
  background: url("/images/sy-loader.gif") 50% 50% no-repeat;
  -webkit-background-size: 32px 32px;
          background-size: 32px;
  min-height: 40px; }
  .sy-box.sy-loading .sy-slides-wrap, .sy-box.sy-loading .sy-pager {
    visibility: hidden; }

/* element that wraps the slides */
.sy-slides-wrap {
  position: relative;
  height: 100%;
  width: 100%; }
  .sy-slides-wrap:hover .sy-controls {
    display: block; }

/* element that crops the visible area to the slides */
.sy-slides-crop {
  height: 100%;
  width: 100%;
  position: absolute;
  overflow: hidden; }

/* list containing the slides */
.sy-list {
  width: 100%;
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute; }
  .sy-list.horizontal {
    -webkit-transition: left ease;
         -o-transition: left ease;
            transition: left ease; }
  .sy-list.vertical {
    -webkit-transition: top ease;
         -o-transition: top ease;
            transition: top ease; }

/* single slide */
.sy-slide {
  position: absolute;
  width: 100%;
  z-index: 2; }
  .sy-slide.kenburns {
    width: 140%;
    left: -20%; }
    .sy-slide.kenburns.useCSS {
      -webkit-transition-property: opacity;
           -o-transition-property: opacity;
              transition-property: opacity; }
      .sy-slide.kenburns.useCSS.sy-ken:nth-child(1n) {
        -webkit-animation-name: left-right;
             -o-animation-name: left-right;
                animation-name: left-right;
        -webkit-animation-fill-mode: forwards;
             -o-animation-fill-mode: forwards;
                animation-fill-mode: forwards; }
      .sy-slide.kenburns.useCSS.sy-ken:nth-child(2n) {
        -webkit-animation-name: right-left;
             -o-animation-name: right-left;
                animation-name: right-left;
        -webkit-animation-fill-mode: forwards;
             -o-animation-fill-mode: forwards;
                animation-fill-mode: forwards; }
  .sy-slide.sy-active {
    z-index: 3; }
  .sy-slide > img {
    margin: 0;
    padding: 0;
    display: block;
    width: 100%;
    border: 0; }
  .sy-slide > a {
    margin: 0;
    padding: 0;
    display: block;
    width: 100%; }
    .sy-slide > a > img {
      margin: 0;
      padding: 0;
      display: block;
      width: 100%;
      border: 0; }

/* next/ prev buttons, with arrows and clickable area a lot larger than the visible buttons */
.sy-controls {
  display: none;
  list-style: none;
  height: 100%;
  width: 100%;
  position: absolute;
  padding: 0;
  margin: 0; }
  .sy-controls li {
    position: absolute;
    width: 10%;
    min-width: 4.2em;
    height: 100%;
    z-index: 33; }
    .sy-controls li.sy-prev {
      left: 0;
      top: 0; }
      .sy-controls li.sy-prev a:after {
        background-position: -5% 0; }
    .sy-controls li.sy-next {
      right: 0;
      top: 0; }
      .sy-controls li.sy-next a:after {
        background-position: 105% 0; }
    .sy-controls li a {
      position: relative;
      width: 100%;
      height: 100%;
      display: block;
      text-indent: -9999px; }
      .sy-controls li a:link, .sy-controls li a:visited {
        opacity: 0.4; }
      .sy-controls li a:hover, .sy-controls li a:focus {
        opacity: 0.8;
        outline: none; }
      .sy-controls li a:after {
        content: "";
        background-image: url("/images/arrows.svg");
        background-repeat: no-repeat;
        -webkit-background-size: cover;
                background-size: cover;
        text-align: center;
        text-indent: 0;
        line-height: 2.8em;
        color: #111;
        font-weight: 800;
        position: absolute;
        background-color: #fff;
        width: 2.8em;
        height: 2.8em;
        left: 50%;
        top: 50%;
        margin-top: -1.4em;
        margin-left: -1.4em;
        border-radius: 50%; }
  @media only screen and (max-device-width: 600px) {
    .sy-controls {
      display: block; }
      .sy-controls li {
        min-width: 2.1em; }
        .sy-controls li a:after {
          width: 1.4em;
          height: 1.4em;
          margin-top: -0.7em;
          margin-left: -0.7em; } }

/* captions, styled fo the overlay variant */
.sy-caption-wrap {
  position: absolute;
  bottom: 2em;
  z-index: 12;
  left: 50%; }
  .sy-caption-wrap .sy-caption {
    position: relative;
    left: -50%;
    background-color: rgba(0, 0, 0, 0.54);
    color: #fff;
    padding: 0.4em 1em;
    border-radius: 1.2em; }
    .sy-caption-wrap .sy-caption a:link, .sy-caption-wrap .sy-caption a:visited {
      color: #e24b70;
      font-weight: 600;
      text-decoration: none; }
    .sy-caption-wrap .sy-caption a:hover, .sy-caption-wrap .sy-caption a:focus {
      text-decoration: underline; }
  @media only screen and (max-device-width: 600px), screen and (max-width: 600px) {
    .sy-caption-wrap {
      left: 0;
      bottom: 0.4em; }
      .sy-caption-wrap .sy-caption {
        left: 0;
        padding: 0.2em 0.4em;
        font-size: 0.92em;
        border-radius: 0; } }

/* pager bubbles */
.sy-pager {
  clear: both;
  display: block;
  width: 100%;
  margin: 1em 0 0;
  padding: 0;
  list-style: none;
  text-align: center; }
  .sy-pager li {
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    margin: 0 1em 0 0;
    border-radius: 50%; }
    .sy-pager li.sy-active a {
      background-color: #e24b70; }
    .sy-pager li a {
      width: 100%;
      height: 100%;
      display: block;
      background-color: #ccc;
      text-indent: -9999px;
      -webkit-background-size: 2em 2em;
              background-size: 2em;
      border-radius: 50%; }
      .sy-pager li a:link, .sy-pager li a:visited {
        opacity: 1.0; }
      .sy-pager li a:hover, .sy-pager li a:focus {
        opacity: 0.6; }

/* element to "keep/ fill" the space of the content, gets intrinsic height via js */
.sy-filler {
  width: 100%; }
  .sy-filler.ready {
    -webkit-transition: padding 600ms ease;
         -o-transition: padding 600ms ease;
            transition: padding 600ms ease; }





img,
video {
	max-width: 100%;
	height: auto;
}



.simple-modal {
	position: fixed !important;
}


.spacerStack {
	height: 65.00px;
}

#spacerStackstacks_in_25 {
	height: 65.00px;
}




























@media print {
	#spacerStackstacks_in_25 {
		display: none !important;
	}
}
#viewPortTextstacks_in_57 h1,
#viewPortTextstacks_in_57 h2,
#viewPortTextstacks_in_57 h3,
#viewPortTextstacks_in_57 h4,
#viewPortTextstacks_in_57 h5,
#viewPortTextstacks_in_57 h6,
#viewPortTextstacks_in_57 p,
#viewPortTextstacks_in_57

{
	font-size: 18px;
	line-height: 1.25em;
	transition: all 0ms ease-in-out;
}

@media screen and (max-width: 580px) {
	#viewPortTextstacks_in_57 h1,
	#viewPortTextstacks_in_57 h2,
	#viewPortTextstacks_in_57 h3,
	#viewPortTextstacks_in_57 h4,
	#viewPortTextstacks_in_57 h5,
	#viewPortTextstacks_in_57 h6,
	#viewPortTextstacks_in_57 p,
	#viewPortTextstacks_in_57
	
	{
		font-size: 7.00vw;
		line-height: 1.25em;
	}
}

@media screen and (min-width: 580px) {
	#viewPortTextstacks_in_57 h1,
	#viewPortTextstacks_in_57 h2,
	#viewPortTextstacks_in_57 h3,
	#viewPortTextstacks_in_57 h4,
	#viewPortTextstacks_in_57 h5,
	#viewPortTextstacks_in_57 h6,
	#viewPortTextstacks_in_57 p,
	#viewPortTextstacks_in_57
	
	{
		font-size: 26px;
		line-height: 1.25em;
	}
}

@media print {
	#viewPortTextstacks_in_57 h1,
	#viewPortTextstacks_in_57 h2,
	#viewPortTextstacks_in_57 h3,
	#viewPortTextstacks_in_57 h4,
	#viewPortTextstacks_in_57 h5,
	#viewPortTextstacks_in_57 h6,
	#viewPortTextstacks_in_57 p,
	#viewPortTextstacks_in_57
	
	{
		font-size: 18px;
	}
}

.spacerStack {
	height: 5.00px;
}

#spacerStackstacks_in_78 {
	height: 5.00px;
}




























@media print {
	#spacerStackstacks_in_78 {
		display: none !important;
	}
}
#stacks_in_75>.s3_row {
	margin: 0 -10px;
}

#stacks_in_75>.s3_row>.s3_column_left {
	width: 80.00%;
}

#stacks_in_75>.s3_row>.s3_column_right {
	width: 20.000000%;
}




#stacks_in_75>.s3_row>.s3_column {
	padding: 0 10px;
}










@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_75>.s3_row  {
		margin: -10px 0;
	}
	#stacks_in_75>.s3_row>.s3_column {
		padding: 10px 0;
		width:100%;
	}


}






.spacerStack {
	height: 5.00px;
}

#spacerStackstacks_in_72 {
	height: 5.00px;
}




























@media print {
	#spacerStackstacks_in_72 {
		display: none !important;
	}
}


.fadeInWrapperstacks_in_71 {
  display: none;
}

.freeStyleWrapperstacks_in_71 {
  position: relative;
}

.sy-pager {
  padding: 1em 0;
  margin: 0;
  line-height: 1;
  display: none;
  list-style: none;
  background: rgba(255, 255, 255, 0.00);
  
  text-align: center;
  
}

@media screen and (min-width: 996px) {
  .sy-pager {
    display: block;
  }
}

.sy-pager li {
  margin: 0 0.5em;
}


.sy-pager {
  position: absolute;
  
  bottom: 0;
  z-index: 50;
}

.sy-pager li:first-child {
  margin-left: 1em;
}

.sy-pager li:last-child {
  margin-right: 1em;
}


.sy-pager li a {
  color: rgba(0,0,0,0);
  background-color: rgba(255, 255, 255, 0.33);
}

.sy-pager li.sy-active a {
  background-color: rgba(63, 148, 56, 1.00);
}

.freeStyleCaptionsContainer {
  text-align: left;
  
  
  
  background: rgba(25, 25, 25, 1.00);
  color: rgba(255, 255, 255, 0.80);
  padding: 0.50rem 0.50rem;
  
	
	
}

.upperCaptionsContainer,
.lowerCaptionsContainer {
  display: none;
}


.upperCaptionsContainer,
.lowerCaptionsContainer {
  display: none !important;
}





.lowerCaptionsContainer {
  display: block;
}






.sy-controls {
  display: block;
}

.sy-controls li.sy-prev a:after,
.sy-controls li.sy-next a:after {
  color: rgba(255, 255, 255, 1.00);
  background: none;
  font-size: 45px;
  font-family: FontAwesome;
}
















.sy-controls li.sy-prev a:after {
  content: '\f137';
}

.sy-controls li.sy-next a:after {
  content: '\f138';
}






.freeStyleOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.freeStyleOverlayTableWrapper {
  height: 100%;
  width: calc(100% - 20%);
  display: table;
  margin-left: 10%;
  margin-right: 10%;
}

.freeStyleOverlayInner {
  display: table-cell;
  vertical-align: middle;
}







.spacerStack {
	height: 5.00px;
}

#spacerStackstacks_in_73 {
	height: 5.00px;
}




























@media print {
	#spacerStackstacks_in_73 {
		display: none !important;
	}
}

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_56 {
	height: 15.00px;
}




























@media print {
	#spacerStackstacks_in_56 {
		display: none !important;
	}
}
.webYepLoginStackstacks_in_61 {
	text-align: left;
	
	
	
}

@media print {
	.webYepLoginStackstacks_in_61 {
		display: none !important;
	}
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_74 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_74 {
		display: none !important;
	}
}
#stacks_in_28{visibility:hidden}

.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_33 {
	height: 15.00px;
}




























@media print {
	#spacerStackstacks_in_33 {
		display: none !important;
	}
}
#viewPortTextstacks_in_34 h1,
#viewPortTextstacks_in_34 h2,
#viewPortTextstacks_in_34 h3,
#viewPortTextstacks_in_34 h4,
#viewPortTextstacks_in_34 h5,
#viewPortTextstacks_in_34 h6,
#viewPortTextstacks_in_34 p,
#viewPortTextstacks_in_34

{
	font-size: 18px;
	line-height: 1.25em;
	transition: all 0ms ease-in-out;
}

@media screen and (max-width: 580px) {
	#viewPortTextstacks_in_34 h1,
	#viewPortTextstacks_in_34 h2,
	#viewPortTextstacks_in_34 h3,
	#viewPortTextstacks_in_34 h4,
	#viewPortTextstacks_in_34 h5,
	#viewPortTextstacks_in_34 h6,
	#viewPortTextstacks_in_34 p,
	#viewPortTextstacks_in_34
	
	{
		font-size: 7.00vw;
		line-height: 1.25em;
	}
}

@media screen and (min-width: 580px) {
	#viewPortTextstacks_in_34 h1,
	#viewPortTextstacks_in_34 h2,
	#viewPortTextstacks_in_34 h3,
	#viewPortTextstacks_in_34 h4,
	#viewPortTextstacks_in_34 h5,
	#viewPortTextstacks_in_34 h6,
	#viewPortTextstacks_in_34 p,
	#viewPortTextstacks_in_34
	
	{
		font-size: 25px;
		line-height: 1.25em;
	}
}

@media print {
	#viewPortTextstacks_in_34 h1,
	#viewPortTextstacks_in_34 h2,
	#viewPortTextstacks_in_34 h3,
	#viewPortTextstacks_in_34 h4,
	#viewPortTextstacks_in_34 h5,
	#viewPortTextstacks_in_34 h6,
	#viewPortTextstacks_in_34 p,
	#viewPortTextstacks_in_34
	
	{
		font-size: 18px;
	}
}
.spacerStack {
	height: 25.00px;
}

#spacerStackstacks_in_43 {
	height: 25.00px;
}




























@media print {
	#spacerStackstacks_in_43 {
		display: none !important;
	}
}

  

  

  

  

  

  

  

  

  

  

  
  /* Latin */
  @font-face {
    font-family: 'alexbrush';
    src: local('alexbrush'), url(https://leichterlebenundlernen.de/resources/alexbrush-regular.woff) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }
  


#fontamental_stacks_in_80 {
  text-align: left;
  
  
  
  text-decoration: none;
  text-transform: none;
  text-indent: inherit;
  word-spacing; inherit;
  letter-spacing: inherit;
  line-height: inherit;
  direction: ltr;
  font-style: normal;
  font-weight: normal;
  font-size: inherit;

  

  

  
  font-family: 'alexbrush', sans-serif;
  

  
  
  
  
  
  
  
  
  
}

@media screen and (min-width: 576px) {
  #fontamental_stacks_in_80 {
    font-size: inherit;
  }
}

@media screen and (min-width: 768px) {
  #fontamental_stacks_in_80 {
    font-size: inherit;
  }
}

@media screen and (min-width: 992px) {
  #fontamental_stacks_in_80 {
    font-size: inherit;
  }
}

@media screen and (min-width: 1200px) {
  #fontamental_stacks_in_80 {
    font-size: inherit;
  }
}



#viewPortTextstacks_in_81 h1,
#viewPortTextstacks_in_81 h2,
#viewPortTextstacks_in_81 h3,
#viewPortTextstacks_in_81 h4,
#viewPortTextstacks_in_81 h5,
#viewPortTextstacks_in_81 h6,
#viewPortTextstacks_in_81 p,
#viewPortTextstacks_in_81

{
	font-size: 18px;
	line-height: 1.25em;
	transition: all 0ms ease-in-out;
}

@media screen and (max-width: 1080px) {
	#viewPortTextstacks_in_81 h1,
	#viewPortTextstacks_in_81 h2,
	#viewPortTextstacks_in_81 h3,
	#viewPortTextstacks_in_81 h4,
	#viewPortTextstacks_in_81 h5,
	#viewPortTextstacks_in_81 h6,
	#viewPortTextstacks_in_81 p,
	#viewPortTextstacks_in_81
	
	{
		font-size: 11.00vw;
		line-height: 1.25em;
	}
}

@media screen and (min-width: 1080px) {
	#viewPortTextstacks_in_81 h1,
	#viewPortTextstacks_in_81 h2,
	#viewPortTextstacks_in_81 h3,
	#viewPortTextstacks_in_81 h4,
	#viewPortTextstacks_in_81 h5,
	#viewPortTextstacks_in_81 h6,
	#viewPortTextstacks_in_81 p,
	#viewPortTextstacks_in_81
	
	{
		font-size: 32px;
		line-height: 1.25em;
	}
}

@media print {
	#viewPortTextstacks_in_81 h1,
	#viewPortTextstacks_in_81 h2,
	#viewPortTextstacks_in_81 h3,
	#viewPortTextstacks_in_81 h4,
	#viewPortTextstacks_in_81 h5,
	#viewPortTextstacks_in_81 h6,
	#viewPortTextstacks_in_81 p,
	#viewPortTextstacks_in_81
	
	{
		font-size: 18px;
	}
}