/* Anpassen Boxmodel */
* {
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}

*:before,
*:after{
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}

/* euf_grid.css */
html {
  --grid__columns: 12;
  --grid__gutter: 1.875rem;
	overflow-y: scroll;
  height: 100%;
  font-size: 16px;
  line-height: 24px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
.row {
  display: grid;
  grid-template-columns: repeat(var(--grid__columns), 1fr);
  grid-gap: var(--grid__gutter);
  grid-auto-columns: 1fr;
}

.row--show {
  position: relative;
  background: #f9f9f9;
  z-index: 0;
  padding-top: 0.9375rem;
}

.row--show:before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  background: repeating-linear-gradient(to right, #f0f0f0 0%, #f0f0f0 calc((100% - (1.875rem * 11)) / 12), #f9f9f9 calc((100% - (1.875rem * 11)) / 12), #f9f9f9 calc(((100% - (1.875rem * 11)) / 12) + 1.875rem) );
}


/* ----- */
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
  grid-column: 1 / -1;
}

.row-span-xs-1, .row-span-xs-2, .row-span-xs-3, .row-span-xs-4, .row-span-xs-5, .row-span-xs-6, .row-span-xs-7, .row-span-xs-8, .row-span-xs-9, .row-span-xs-10, .row-span-xs-11, .row-span-xs-12, .row-span-sm-1, .row-span-sm-2, .row-span-sm-3, .row-span-sm-4, .row-span-sm-5, .row-span-sm-6, .row-span-sm-7, .row-span-sm-8, .row-span-sm-9, .row-span-sm-10, .row-span-sm-11, .row-span-sm-12, .row-span-md-1, .row-span-md-2, .row-span-md-3, .row-span-md-4, .row-span-md-5, .row-span-md-6, .row-span-md-7, .row-span-md-8, .row-span-md-9, .row-span-md-10, .row-span-md-11, .row-span-md-12, .row-span-lg-1, .row-span-lg-2, .row-span-lg-3, .row-span-lg-4, .row-span-lg-5, .row-span-lg-6, .row-span-lg-7, .row-span-lg-8, .row-span-lg-9, .row-span-lg-10, .row-span-lg-11, .row-span-lg-12, .row-span-xl-1, .row-span-xl-2, .row-span-xl-3, .row-span-xl-4, .row-span-xl-5, .row-span-xl-6, .row-span-xl-7, .row-span-xl-8, .row-span-xl-9, .row-span-xl-10, .row-span-xl-11, .row-span-xl-12 {
  grid-row: 1;
}

.justify-start {
  justify-self: start;
}

.justify-center {
  justify-self: center;
}

.justify-end {
  justify-self: end;
}

.justify-stretch {
  justify-self: stretch;
}

.align-start {
  align-self: start;
}

.align-center {
  align-self: center;
}

.align-end {
  align-self: end;
}

.align-stretch {
  align-self: stretch;
}

.col-1 {
  grid-column: span 1 / span 1;
}

.col-2 {
  grid-column: span 2 / span 2;
}

.col-3 {
  grid-column: span 3 / span 3;
}

.col-4 {
  grid-column: span 4 / span 4;
}

.col-5 {
  grid-column: span 5 / span 5;
}

.col-6 {
  grid-column: span 6 / span 6;
}

.col-7 {
  grid-column: span 7 / span 7;
}

.col-8 {
  grid-column: span 8 / span 8;
}

.col-9 {
  grid-column: span 9 / span 9;
}

.col-10 {
  grid-column: span 10 / span 10;
}

.col-11 {
  grid-column: span 11 / span 11;
}

.col-12 {
  grid-column: span 12 / span 12;
}

@media screen and (min-width: 0) {
  .col-xs-1 {
    grid-column: span 1 / span 1;
  }

  .col-xs-2 {
    grid-column: span 2 / span 2;
  }

  .col-xs-3 {
    grid-column: span 3 / span 3;
  }

  .col-xs-4 {
    grid-column: span 4 / span 4;
  }

  .col-xs-5 {
    grid-column: span 5 / span 5;
  }

  .col-xs-6 {
    grid-column: span 6 / span 6;
  }

  .col-xs-7 {
    grid-column: span 7 / span 7;
  }

  .col-xs-8 {
    grid-column: span 8 / span 8;
  }

  .col-xs-9 {
    grid-column: span 9 / span 9;
  }

  .col-xs-10 {
    grid-column: span 10 / span 10;
  }

  .col-xs-11 {
    grid-column: span 11 / span 11;
  }

  .col-xs-12 {
    grid-column: span 12 / span 12;
  }
}

@media screen and (min-width: 0) {
  .col-start-xs-1 {
    grid-column-start: 1;
  }

  .row-start-xs-1 {
    grid-row-start: 1;
  }

  .col-start-xs-2 {
    grid-column-start: 2;
  }

  .row-start-xs-2 {
    grid-row-start: 2;
  }

  .col-start-xs-3 {
    grid-column-start: 3;
  }

  .row-start-xs-3 {
    grid-row-start: 3;
  }

  .col-start-xs-4 {
    grid-column-start: 4;
  }

  .row-start-xs-4 {
    grid-row-start: 4;
  }

  .col-start-xs-5 {
    grid-column-start: 5;
  }

  .row-start-xs-5 {
    grid-row-start: 5;
  }

  .col-start-xs-6 {
    grid-column-start: 6;
  }

  .row-start-xs-6 {
    grid-row-start: 6;
  }

  .col-start-xs-7 {
    grid-column-start: 7;
  }

  .row-start-xs-7 {
    grid-row-start: 7;
  }

  .col-start-xs-8 {
    grid-column-start: 8;
  }

  .row-start-xs-8 {
    grid-row-start: 8;
  }

  .col-start-xs-9 {
    grid-column-start: 9;
  }

  .row-start-xs-9 {
    grid-row-start: 9;
  }

  .col-start-xs-10 {
    grid-column-start: 10;
  }
  .row-start-xs-10 {
    grid-row-start: 10;
  }

  .col-start-xs-11 {
    grid-column-start: 11;
  }

  .row-start-xs-11 {
    grid-row-start: 11;
  }

  .col-start-xs-12 {
    grid-column-start: 12;
  }

  .row-start-xs-12 {
    grid-row-start: 12;
  }
}

@media screen and (min-width: 0) {
  .pull-right-xs {
    grid-column-end: -1;
  }

  .pull-left-xs {
    grid-row-start: 1;
    grid-column-end: inherit;
  }
}

@media screen and (min-width: 0) {
  .justify-xs-start {
    justify-self: start;
  }

  .justify-xs-center {
    justify-self: center;
  }

  .justify-xs-end {
    justify-self: end;
  }

  .justify-xs-stretch {
    justify-self: stretch;
  }

  .align-xs-start {
    align-self: start;
  }

  .align-xs-center {
    align-self: center;
  }

  .align-xs-end {
    align-self: end;
  }

  .align-xs-stretch {
    align-self: stretch;
  }
}

@media screen and (min-width: 0) {
  .row-span-xs-1 {
    grid-row: span 1 / span 1;
  }

  .row-span-xs-2 {
    grid-row: span 2 / span 2;
  }

  .row-span-xs-3 {
    grid-row: span 3 / span 3;
  }

  .row-span-xs-4 {
    grid-row: span 4 / span 4;
  }

  .row-span-xs-5 {
    grid-row: span 5 / span 5;
  }

  .row-span-xs-6 {
    grid-row: span 6 / span 6;
  }

  .row-span-xs-7 {
    grid-row: span 7 / span 7;
  }

  .row-span-xs-8 {
    grid-row: span 8 / span 8;
  }

  .row-span-xs-9 {
    grid-row: span 9 / span 9;
  }

  .row-span-xs-10 {
    grid-row: span 10 / span 10;
  }

  .row-span-xs-11 {
    grid-row: span 11 / span 11;
  }

  .row-span-xs-12 {
    grid-row: span 12 / span 12;
  }
}

@media screen and (min-width: 34.375em) {
  .col-sm-1 {
    grid-column: span 1 / span 1;
  }

  .col-sm-2 {
    grid-column: span 2 / span 2;
  }

  .col-sm-3 {
    grid-column: span 3 / span 3;
  }

  .col-sm-4 {
    grid-column: span 4 / span 4;
  }

  .col-sm-5 {
    grid-column: span 5 / span 5;
  }

  .col-sm-6 {
    grid-column: span 6 / span 6;
  }

  .col-sm-7 {
    grid-column: span 7 / span 7;
  }

  .col-sm-8 {
    grid-column: span 8 / span 8;
  }

  .col-sm-9 {
    grid-column: span 9 / span 9;
  }

  .col-sm-10 {
    grid-column: span 10 / span 10;
  }

  .col-sm-11 {
    grid-column: span 11 / span 11;
  }

  .col-sm-12 {
    grid-column: span 12 / span 12;
  }
}

@media screen and (min-width: 34.375em) {
  .col-start-sm-1 {
    grid-column-start: 1;
  }

  .row-start-sm-1 {
    grid-row-start: 1;
  }

  .col-start-sm-2 {
    grid-column-start: 2;
  }

  .row-start-sm-2 {
    grid-row-start: 2;
  }

  .col-start-sm-3 {
    grid-column-start: 3;
  }

  .row-start-sm-3 {
    grid-row-start: 3;
  }

  .col-start-sm-4 {
    grid-column-start: 4;
  }

  .row-start-sm-4 {
    grid-row-start: 4;
  }

  .col-start-sm-5 {
    grid-column-start: 5;
  }

  .row-start-sm-5 {
    grid-row-start: 5;
  }

  .col-start-sm-6 {
    grid-column-start: 6;
  }

  .row-start-sm-6 {
    grid-row-start: 6;
  }

  .col-start-sm-7 {
    grid-column-start: 7;
  }

  .row-start-sm-7 {
    grid-row-start: 7;
  }

  .col-start-sm-8 {
    grid-column-start: 8;
  }

  .row-start-sm-8 {
    grid-row-start: 8;
  }

  .col-start-sm-9 {
    grid-column-start: 9;
  }

  .row-start-sm-9 {
    grid-row-start: 9;
  }

  .col-start-sm-10 {
    grid-column-start: 10;
  }

  .row-start-sm-10 {
    grid-row-start: 10;
  }

  .col-start-sm-11 {
    grid-column-start: 11;
  }

  .row-start-sm-11 {
    grid-row-start: 11;
  }

  .col-start-sm-12 {
    grid-column-start: 12;
  }

  .row-start-sm-12 {
    grid-row-start: 12;
  }
}

@media screen and (min-width: 34.375em) {
  .pull-right-sm {
    grid-column-end: -1;
  }

  .pull-left-sm {
    grid-row-start: 1;
    grid-column-end: inherit;
  }
}

@media screen and (min-width: 34.375em) {
  .justify-sm-start {
    justify-self: start;
  }

  .justify-sm-center {
    justify-self: center;
  }

  .justify-sm-end {
    justify-self: end;
  }

  .justify-sm-stretch {
    justify-self: stretch;
  }

  .align-sm-start {
    align-self: start;
  }

  .align-sm-center {
    align-self: center;
  }

  .align-sm-end {
    align-self: end;
  }

  .align-sm-stretch {
    align-self: stretch;
  }
}

@media screen and (min-width: 34.375em) {
  .row-span-sm-1 {
    grid-row: span 1 / span 1;
  }

  .row-span-sm-2 {
    grid-row: span 2 / span 2;
  }

  .row-span-sm-3 {
    grid-row: span 3 / span 3;
  }

  .row-span-sm-4 {
    grid-row: span 4 / span 4;
  }

  .row-span-sm-5 {
    grid-row: span 5 / span 5;
  }

  .row-span-sm-6 {
    grid-row: span 6 / span 6;
  }

  .row-span-sm-7 {
    grid-row: span 7 / span 7;
  }

  .row-span-sm-8 {
    grid-row: span 8 / span 8;
  }

  .row-span-sm-9 {
    grid-row: span 9 / span 9;
  }

  .row-span-sm-10 {
    grid-row: span 10 / span 10;
  }

  .row-span-sm-11 {
    grid-row: span 11 / span 11;
  }

  .row-span-sm-12 {
    grid-row: span 12 / span 12;
  }
}


@media screen and (min-width: 48em) {
  .col-md-1 {
    grid-column: span 1 / span 1;
  }

  .col-md-2 {
    grid-column: span 2 / span 2;
  }

  .col-md-3 {
    grid-column: span 3 / span 3;
  }

  .col-md-4 {
    grid-column: span 4 / span 4;
  }

  .col-md-5 {
    grid-column: span 5 / span 5;
  }

  .col-md-6 {
    grid-column: span 6 / span 6;
  }

  .col-md-7 {
    grid-column: span 7 / span 7;
  }

  .col-md-8 {
    grid-column: span 8 / span 8;
  }

  .col-md-9 {
    grid-column: span 9 / span 9;
  }

  .col-md-10 {
    grid-column: span 10 / span 10;
  }

  .col-md-11 {
    grid-column: span 11 / span 11;
  }

  .col-md-12 {
    grid-column: span 12 / span 12;
  }
}

@media screen and (min-width: 48em) {
  .col-start-md-1 {
    grid-column-start: 1;
  }

  .row-start-md-1 {
    grid-row-start: 1;
  }

  .col-start-md-2 {
    grid-column-start: 2;
  }

  .row-start-md-2 {
    grid-row-start: 2;
  }

  .col-start-md-3 {
    grid-column-start: 3;
  }

  .row-start-md-3 {
    grid-row-start: 3;
  }

  .col-start-md-4 {
    grid-column-start: 4;
  }

  .row-start-md-4 {
    grid-row-start: 4;
  }

  .col-start-md-5 {
    grid-column-start: 5;
  }

  .row-start-md-5 {
    grid-row-start: 5;
  }

  .col-start-md-6 {
    grid-column-start: 6;
  }

  .row-start-md-6 {
     grid-row-start: 6;
  }

  .col-start-md-7 {
    grid-column-start: 7;
  }

  .row-start-md-7 {
    grid-row-start: 7;
  }

  .col-start-md-8 {
    grid-column-start: 8;
  }

  .row-start-md-8 {
    grid-row-start: 8;
  }

  .col-start-md-9 {
    grid-column-start: 9;
  }

  .row-start-md-9 {
    grid-row-start: 9;
  }

  .col-start-md-10 {
    grid-column-start: 10;
  }

  .row-start-md-10 {
    grid-row-start: 10;
  }

  .col-start-md-11 {
    grid-column-start: 11;
  }
  
  .row-start-md-11 {
    grid-row-start: 11;
  }
  
  .col-start-md-12 {
    grid-column-start: 12;
  }
  
  .row-start-md-12 {
    grid-row-start: 12;
  }
}

@media screen and (min-width: 48em) {
  .pull-right-md {
    grid-column-end: -1;
  }
  
  .pull-left-md {
    grid-row-start: 1;
    grid-column-end: inherit;
  }
}

@media screen and (min-width: 48em) {
  .justify-md-start {
    justify-self: start;
  }

  .justify-md-center {
    justify-self: center;
  }

  .justify-md-end {
    justify-self: end;
  }

  .justify-md-stretch {
    justify-self: stretch;
  }

  .align-md-start {
    align-self: start;
  }

  .align-md-center {
    align-self: center;
  }

  .align-md-end {
    align-self: end;
  }

  .align-md-stretch {
    align-self: stretch;
  }
}

@media screen and (min-width: 48em) {
  .row-span-md-1 {
    grid-row: span 1 / span 1;
  }

  .row-span-md-2 {
    grid-row: span 2 / span 2;
  }

  .row-span-md-3 {
    grid-row: span 3 / span 3;
  }

  .row-span-md-4 {
    grid-row: span 4 / span 4;
  }

  .row-span-md-5 {
    grid-row: span 5 / span 5;
  }

  .row-span-md-6 {
    grid-row: span 6 / span 6;
  }

  .row-span-md-7 {
    grid-row: span 7 / span 7;
  }

  .row-span-md-8 {
    grid-row: span 8 / span 8;
  }

  .row-span-md-9 {
    grid-row: span 9 / span 9;
  }

  .row-span-md-10 {
    grid-row: span 10 / span 10;
  }

  .row-span-md-11 {
    grid-row: span 11 / span 11;
  }

  .row-span-md-12 {
    grid-row: span 12 / span 12;
  }
}

@media screen and (min-width: 58.75em) {
  .col-lg-1 {
    grid-column: span 1 / span 1;
  }
  
  .col-lg-2 {
    grid-column: span 2 / span 2;
  }
  
  .col-lg-3 {
    grid-column: span 3 / span 3;
  }
  
  .col-lg-4 {
    grid-column: span 4 / span 4;
  }
  
  .col-lg-5 {
    grid-column: span 5 / span 5;
  }
  
  .col-lg-6 {
    grid-column: span 6 / span 6;
  }
  
  .col-lg-7 {
    grid-column: span 7 / span 7;
  }
  
  .col-lg-8 {
    grid-column: span 8 / span 8;
  }
  
  .col-lg-9 {
    grid-column: span 9 / span 9;
  }
  
  .col-lg-10 {
    grid-column: span 10 / span 10;
  }
  
  .col-lg-11 {
    grid-column: span 11 / span 11;
  }
  
  .col-lg-12 {
    grid-column: span 12 / span 12;
  }
}

@media screen and (min-width: 58.75em) {
  .col-start-lg-1 {
    grid-column-start: 1;
  }
  
  .row-start-lg-1 {
    grid-row-start: 1;
  }
  
  .col-start-lg-2 {
    grid-column-start: 2;
  }
  
  .row-start-lg-2 {
    grid-row-start: 2;
  }
  
  .col-start-lg-3 {
    grid-column-start: 3;
  }
  
  .row-start-lg-3 {
    grid-row-start: 3;
  }
  
  .col-start-lg-4 {
    grid-column-start: 4;
  }
  
  .row-start-lg-4 {
    grid-row-start: 4;
  }
  
  .col-start-lg-5 {
    grid-column-start: 5;
  }
  
  .row-start-lg-5 {
    grid-row-start: 5;
  }
  
  .col-start-lg-6 {
    grid-column-start: 6;
  }
  
  .row-start-lg-6 {
    grid-row-start: 6;
  }
  
  .col-start-lg-7 {
    grid-column-start: 7;
  }
  
  .row-start-lg-7 {
    grid-row-start: 7;
  }
  
  .col-start-lg-8 {
    grid-column-start: 8;
  }
  
  .row-start-lg-8 {
    grid-row-start: 8;
  }
  
  .col-start-lg-9 {
    grid-column-start: 9;
  }
  
  .row-start-lg-9 {
    grid-row-start: 9;
  }
  
  .col-start-lg-10 {
    grid-column-start: 10;
  }
  
  .row-start-lg-10 {
    grid-row-start: 10;
  }
  
  .col-start-lg-11 {
    grid-column-start: 11;
  }
  
  .row-start-lg-11 {
    grid-row-start: 11;
  }
  
  .col-start-lg-12 {
    grid-column-start: 12;
  }
  
  .row-start-lg-12 {
    grid-row-start: 12;
  }
}

@media screen and (min-width: 58.75em) {
  .pull-right-lg {
    grid-column-end: -1;
  }
  
  .pull-left-lg {
    grid-row-start: 1;
    grid-column-end: inherit;
  }
}

@media screen and (min-width: 58.75em) {
  .justify-lg-start {
    justify-self: start;
  }

  .justify-lg-center {
    justify-self: center;
  }

  .justify-lg-end {
    justify-self: end;
  }

  .justify-lg-stretch {
    justify-self: stretch;
  }

  .align-lg-start {
    align-self: start;
  }

  .align-lg-center {
    align-self: center;
  }

  .align-lg-end {
    align-self: end;
  }

  .align-lg-stretch {
    align-self: stretch;
  }
}

@media screen and (min-width: 58.75em) {
  .row-span-lg-1 {
    grid-row: span 1 / span 1;
  }

  .row-span-lg-2 {
    grid-row: span 2 / span 2;
  }

  .row-span-lg-3 {
    grid-row: span 3 / span 3;
  }

  .row-span-lg-4 {
    grid-row: span 4 / span 4;
  }

  .row-span-lg-5 {
    grid-row: span 5 / span 5;
  }

  .row-span-lg-6 {
    grid-row: span 6 / span 6;
  }

  .row-span-lg-7 {
    grid-row: span 7 / span 7;
  }

  .row-span-lg-8 {
    grid-row: span 8 / span 8;
  }

  .row-span-lg-9 {
    grid-row: span 9 / span 9;
  }

  .row-span-lg-10 {
    grid-row: span 10 / span 10;
  }

  .row-span-lg-11 {
    grid-row: span 11 / span 11;
  }

  .row-span-lg-12 {
    grid-row: span 12 / span 12;
  }
}

@media screen and (min-width: 68.75em) {
  .col-xl-1 {
    grid-column: span 1 / span 1;
  }
  
  .col-xl-2 {
    grid-column: span 2 / span 2;
  }
  
  .col-xl-3 {
    grid-column: span 3 / span 3;
  }
  
  .col-xl-4 {
    grid-column: span 4 / span 4;
  }
  
  .col-xl-5 {
    grid-column: span 5 / span 5;
  }
  
  .col-xl-6 {
    grid-column: span 6 / span 6;
  }
  
  .col-xl-7 {
    grid-column: span 7 / span 7;
  }
  
  .col-xl-8 {
    grid-column: span 8 / span 8;
  }
  
  .col-xl-9 {
    grid-column: span 9 / span 9;
  }
  
  .col-xl-10 {
    grid-column: span 10 / span 10;
  }
  
  .col-xl-11 {
    grid-column: span 11 / span 11;
  }
  
  .col-xl-12 {
    grid-column: span 12 / span 12;
  }
}

@media screen and (min-width: 68.75em) {
  .col-start-xl-1 {
     grid-column-start: 1;
  }
  
  .row-start-xl-1 {
    grid-row-start: 1;
  }
  
  .col-start-xl-2 {
    grid-column-start: 2;
  }
  
  .row-start-xl-2 {
    grid-row-start: 2;
  }
  
  .col-start-xl-3 {
    grid-column-start: 3;
  }
  
  .row-start-xl-3 {
    grid-row-start: 3;
  }
  
  .col-start-xl-4 {
    grid-column-start: 4;
  }
  
  .row-start-xl-4 {
    grid-row-start: 4;
  }
  
  .col-start-xl-5 {
    grid-column-start: 5;
  }
  
  .row-start-xl-5 {
    grid-row-start: 5;
  }
  
  .col-start-xl-6 {
    grid-column-start: 6;
  }
  
  .row-start-xl-6 {
    grid-row-start: 6;
  }
  
  .col-start-xl-7 {
    grid-column-start: 7;
  }
  
  .row-start-xl-7 {
    grid-row-start: 7;
  }
  
  .col-start-xl-8 {
    grid-column-start: 8;
  }
  
  .row-start-xl-8 {
    grid-row-start: 8;
  }
  
  .col-start-xl-9 {
    grid-column-start: 9;
  }
  
  .row-start-xl-9 {
    grid-row-start: 9;
  }
  
  .col-start-xl-10 {
    grid-column-start: 10;
  }
  
  .row-start-xl-10 {
    grid-row-start: 10;
  }
  
  .col-start-xl-11 {
    grid-column-start: 11;
  }
  
  .row-start-xl-11 {
    grid-row-start: 11;
  }
  
  .col-start-xl-12 {
    grid-column-start: 12;
  }
  
  .row-start-xl-12 {
    grid-row-start: 12;
  }
}

@media screen and (min-width: 68.75em) {
  .pull-right-xl {
    grid-column-end: -1;
  }
  
  .pull-left-xl {
    grid-row-start: 1;
    grid-column-end: inherit;
  }
}

@media screen and (min-width: 68.75em) {
  .justify-xl-start {
    justify-self: start;
  }

  .justify-xl-center {
    justify-self: center;
  }

  .justify-xl-end {
    justify-self: end;
  }

  .justify-xl-stretch {
    justify-self: stretch;
  }

  .align-xl-start {
    align-self: start;
  }

  .align-xl-center {
    align-self: center;
  }

  .align-xl-end {
    align-self: end;
  }

  .align-xl-stretch {
    align-self: stretch;
  }
}

@media screen and (min-width: 68.75em) {
  .row-span-xl-1 {
    grid-row: span 1 / span 1;
  }

  .row-span-xl-2 {
    grid-row: span 2 / span 2;
  }

  .row-span-xl-3 {
    grid-row: span 3 / span 3;
  }

  .row-span-xl-4 {
    grid-row: span 4 / span 4;
  }

  .row-span-xl-5 {
    grid-row: span 5 / span 5;
  }

  .row-span-xl-6 {
    grid-row: span 6 / span 6;
  }

  .row-span-xl-7 {
    grid-row: span 7 / span 7;
  }

  .row-span-xl-8 {
    grid-row: span 8 / span 8;
  }

  .row-span-xl-9 {
    grid-row: span 9 / span 9;
  }

  .row-span-xl-10 {
    grid-row: span 10 / span 10;
  }

  .row-span-xl-11 {
    grid-row: span 11 / span 11;
  }

  .row-span-xl-12 {
    grid-row: span 12 / span 12;
  }
}

.col-start-1 {
  grid-column-start: 1;
}

.row-start-1 {
  grid-row-start: 1;
}

.col-start-2 {
  grid-column-start: 2;
}

.row-start-2 {
  grid-row-start: 2;
}

.col-start-3 {
  grid-column-start: 3;
}

.row-start-3 {
  grid-row-start: 3;
}

.col-start-4 {
  grid-column-start: 4;
}

.row-start-4 {
  grid-row-start: 4;
}

.col-start-5 {
  grid-column-start: 5;
}

.row-start-5 {
  grid-row-start: 5;
}

.col-start-6 {
  grid-column-start: 6;
}

.row-start-6 {
  grid-row-start: 6;
}

.col-start-7 {
  grid-column-start: 7;
}

.row-start-7 {
  grid-row-start: 7;
}

.col-start-8 {
  grid-column-start: 8;
}

.row-start-8 {
  grid-row-start: 8;
}

.col-start-9 {
  grid-column-start: 9;
}

.row-start-9 {
  grid-row-start: 9;
}

.col-start-10 {
  grid-column-start: 10;
}
.row-start-10 {
  grid-row-start: 10;
}

.col-start-11 {
  grid-column-start: 11;
}

.row-start-11 {
  grid-row-start: 11;
}

.col-start-12 {
  grid-column-start: 12;
}

.row-start-12 {
  grid-row-start: 12;
}

.row-span-1 {
  grid-row: span 1 / span 1;
}

.row-span-2 {
  grid-row: span 2 / span 2;
}

.row-span-3 {
  grid-row: span 3 / span 3;
}

.row-span-4 {
  grid-row: span 4 / span 4;
}

.row-span-5 {
  grid-row: span 5 / span 5;
}

.row-span-6 {
  grid-row: span 6 / span 6;
}

.row-span-7 {
  grid-row: span 7 / span 7;
}

.row-span-8 {
  grid-row: span 8 / span 8;
}

.row-span-9 {
  grid-row: span 9 / span 9;
}

.row-span-10 {
  grid-row: span 10 / span 10;
}

.row-span-11 {
  grid-row: span 11 / span 11;
}

.row-span-12 {
  grid-row: span 12 / span 12;
}

/* layout.min.css */
form,figure{margin:0;padding:0}img{border:0}header,footer,nav,section,aside,article,figure,figcaption{display:block}select,input,textarea{font-size:99%}#container,.inside{position:relative}#main,#left,#right{float:left;position:relative}#main{width:100%}#left{margin-left:-100%}#right{margin-right:-100%}#footer{clear:both}#main .inside{min-height:1px}.ce_gallery>ul{margin:0;padding:0;overflow:hidden;list-style:none}.ce_gallery>ul li{float:left}.ce_gallery>ul li.col_first{clear:left}.float_left{float:left}.float_right{float:right}.block{overflow:hidden}.clear,#clear{height:.1px;font-size:.1px;line-height:.1px;clear:both}.invisible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.custom{display:block}#container:after,.custom:after{content:"";display:table;clear:both}

/* responsive.min.css */
@media (max-width:767px){#wrapper{margin:0;width:auto}#container{padding-left:0;padding-right:0}#main,#left,#right{float:none;width:auto}#left{right:0;margin-left:0}#right{margin-right:0}}img{max-width:100%;height:auto}.ie7 img{-ms-interpolation-mode:bicubic}.ie8 img{width:auto}.audio_container audio{max-width:100%}.video_container video{max-width:100%;height:auto}.responsive{position:relative;height:0}.responsive iframe{position:absolute;top:0;left:0;width:100%;height:100%}.responsive.ratio-169{padding-bottom:56.25%}.responsive.ratio-1610{padding-bottom:62.5%}.responsive.ratio-219{padding-bottom:42.8571%}.responsive.ratio-43{padding-bottom:75%}.responsive.ratio-32{padding-bottom:66.6666%}

/* form.min.css */
legend{width:100%;display:block;font-weight:700;border:0}input[type=text],input[type=password],input[type=date],input[type=datetime],input[type=email],input[type=number],input[type=search],input[type=tel],input[type=time],input[type=url],input:not([type]),textarea{width:100%;display:inline-block;padding:3px 6px;background:#fff;border:1px solid #ccc;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:inset 0 1px 1px #eee;-webkit-box-shadow:inset 0 1px 1px #eee;box-shadow:inset 0 1px 1px #eee;-moz-transition:all .15s linear;-webkit-transition:all .15s linear;-o-transition:all .15s linear;transition:all .15s linear;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}input[type=text]:focus,input[type=password]:focus,input[type=date]:focus,input[type=datetime]:focus,input[type=email]:focus,input[type=number]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=time]:focus,input[type=url]:focus,input:not([type]):focus,textarea:focus{outline:0;background:#fcfcfc;border-color:#bbb}input[type=file]{cursor:pointer}select,input[type=file]{display:block}form button,input[type=file],input[type=image],input[type=submit],input[type=reset],input[type=button],input[type=radio],input[type=checkbox]{width:auto}textarea,select[multiple],select[size]{height:auto}input[type=radio],input[type=checkbox]{margin:0 3px 0 0}input[type=radio],input[type=checkbox],label{vertical-align:middle}input[disabled],select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{cursor:not-allowed;background:#eee}input[type=radio][disabled],input[type=checkbox][disabled],input[type=radio][readonly],input[type=checkbox][readonly]{background:0 0}form button,input[type=submit],.button{display:inline-block;padding:4px 15px 4px 14px;margin-bottom:0;text-align:center;vertical-align:middle;line-height:16px;font-size:11px;color:#000;cursor:pointer;border:1px solid #ccc;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;background-color:#ececec;background-image:-moz-linear-gradient(top,#fff,#ececec);background-image:-webkit-linear-gradient(top,#fff,#ececec);background-image:-ms-linear-gradient(top,#fff,#ececec);background-image:-o-linear-gradient(top,#fff,#ececec);background-image:linear-gradient(to bottom,#fff,#ececec);background-repeat:repeat-x;-moz-transition:background .15s linear;-webkit-transition:background .15s linear;-o-transition:background .15s linear;transition:background .15s linear}form button:hover,input[type=submit]:hover,.button:hover{text-decoration:none;background-position:0 -15px!important}form button:active,input[type=submit]:active,.button:active{background-color:#e6e6e6;background-position:0 -30px!important}form button.blue,input[type=submit].blue,.button.blue{background-color:#2f96b4;background-image:-moz-linear-gradient(top,#5bc0de,#2f96b4);background-image:-webkit-linear-gradient(top,#5bc0de,#2f96b4);background-image:-ms-linear-gradient(top,#5bc0de,#2f96b4);background-image:-o-linear-gradient(top,#5bc0de,#2f96b4);background-image:linear-gradient(to bottom,#5bc0de,#2f96b4);border-color:#2f96b4;color:#fff}form button.blue:active,input[type=submit].blue:active,.button.blue:active{background-color:#2e95b3}form button.green,input[type=submit].green,.button.green{background-color:#51a351;background-image:-moz-linear-gradient(top,#62c462,#51a351);background-image:-webkit-linear-gradient(top,#62c462,#51a351);background-image:-ms-linear-gradient(top,#62c462,#51a351);background-image:-o-linear-gradient(top,#62c462,#51a351);background-image:linear-gradient(to bottom,#62c462,#51a351);border-color:#51a351;color:#fff}form button.green:active,input[type=submit].green:active,.button.green:active{background-color:#4f9f4f}form button.orange,input[type=submit].orange,.button.orange{background-color:#f89406;background-image:-moz-linear-gradient(top,#fbb450,#f89406);background-image:-webkit-linear-gradient(top,#fbb450,#f89406);background-image:-ms-linear-gradient(top,#fbb450,#f89406);background-image:-o-linear-gradient(top,#fbb450,#f89406);background-image:linear-gradient(to bottom,#fbb450,#f89406);border-color:#f89406;color:#fff}form button.orange:active,input[type=submit].orange:active,.button.orange:active{background-color:#f28f04}form button.red,input[type=submit].red,.button.red{background-color:#bd362f;background-image:-moz-linear-gradient(top,#ee5f5b,#bd362f);background-image:-webkit-linear-gradient(top,#ee5f5b,#bd362f);background-image:-ms-linear-gradient(top,#ee5f5b,#bd362f);background-image:-o-linear-gradient(top,#ee5f5b,#bd362f);background-image:linear-gradient(to bottom,#ee5f5b,#bd362f);border-color:#bd362f;color:#fff}form button.red:active,input[type=submit].red:active,.button.red:active{background-color:#be322b}.widget{margin-bottom:12px}.widget>label{display:block;margin-bottom:6px;font-weight:700}.inline-form .widget{display:inline-block;margin-bottom:0;vertical-align:middle}.horizontal-form .widget:after{content:"";display:table;clear:both}.horizontal-form .widget>label{width:20%;float:left;padding:3px 2% 0 0;text-align:right}.horizontal-form .widget>input,.horizontal-form .widget>textarea{width:78%;float:left}.horizontal-form .widget>fieldset{margin-left:20%}

/* colorbox.min.css */
#colorbox,#cboxOverlay,#cboxWrapper{position:absolute;top:0;left:0;z-index:9999;overflow:hidden;-webkit-transform:translate3d(0,0,0)}#cboxWrapper{max-width:none}#cboxOverlay{position:fixed;width:100%;height:100%}#cboxMiddleLeft,#cboxBottomLeft{clear:left}#cboxContent{position:relative}#cboxLoadedContent{overflow:auto;-webkit-overflow-scrolling:touch}#cboxTitle{margin:0}#cboxLoadingOverlay,#cboxLoadingGraphic{position:absolute;top:0;left:0;width:100%;height:100%}#cboxPrevious,#cboxNext,#cboxClose,#cboxSlideshow{cursor:pointer}.cboxPhoto{float:left;margin:auto;border:0;display:block;max-width:none;-ms-interpolation-mode:bicubic}.cboxIframe{width:100%;height:100%;display:block;border:0;padding:0;margin:0}#colorbox,#cboxContent,#cboxLoadedContent{box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box}#cboxOverlay{background:#000;opacity:.9;filter:alpha(opacity = 90)}#colorbox{outline:0}#cboxContent{margin-top:20px;background:#000}.cboxIframe{background:#fff}#cboxError{padding:50px;border:1px solid #ccc}#cboxLoadedContent{border:5px solid #000;background:#fff}#cboxTitle{position:absolute;top:-20px;left:0;color:#ccc}#cboxCurrent{position:absolute;top:-20px;right:0;color:#ccc}#cboxLoadingGraphic{background:url(../images/loading.gif) no-repeat center center}#cboxPrevious,#cboxNext,#cboxSlideshow,#cboxClose{border:0;padding:0;margin:0;overflow:visible;width:auto;background:0 0}#cboxPrevious:active,#cboxNext:active,#cboxSlideshow:active,#cboxClose:active{outline:0}#cboxSlideshow{position:absolute;top:-20px;right:90px;color:#fff}#cboxPrevious{position:absolute;top:50%;left:5px;margin-top:-32px;background:url(../images/controls.png) no-repeat top left;width:28px;height:65px;text-indent:-9999px}#cboxPrevious:hover{background-position:bottom left}#cboxNext{position:absolute;top:50%;right:5px;margin-top:-32px;background:url(../images/controls.png) no-repeat top right;width:28px;height:65px;text-indent:-9999px}#cboxNext:hover{background-position:bottom right}#cboxClose{position:absolute;top:5px;right:5px;display:block;background:url(../images/controls.png) no-repeat top center;width:38px;height:19px;text-indent:-9999px}#cboxClose:hover{background-position:bottom center}

/* tablesorter.min.css */
table.sortable thead th{background-image:url(../images/default.svg);background-repeat:no-repeat;background-position:center right}table.sortable thead th.tablesorter-headerDesc{background-image:url(../images/asc.svg)}table.sortable thead th.tablesorter-headerAsc{background-image:url(../images/desc.svg)}

/* cookiebar.min.css */
.cookiebar{box-sizing:border-box;position:fixed;left:0;width:100%;padding:.6em 1.2em;background-color:#4b4b4b;color:#fff;font-size:1em;text-align:center;z-index:10}.cookiebar *{box-sizing:border-box}.cookiebar--active{display:flex!important;justify-content:center;align-items:center;flex-wrap:wrap}.cookiebar--position-top{top:0}.cookiebar--position-bottom{bottom:0}.cookiebar__message,.cookiebar__text{margin-right:1.5em}.cookiebar__link{color:#fff;text-decoration:underline}.cookiebar__link:hover{text-decoration:none}.cookiebar__button{margin:0;padding:.6em 1.2em;border:none;border-radius:0;background-color:#4ea55e;color:#fff;font-weight:700;cursor:pointer}.cookiebar__button:hover{background-color:#3e824a}.cookiebar__analytics{margin-right:1.5em}.cookiebar__analytics-label{cursor:pointer}.cookiebar__analytics-checkbox{margin-right:5px}

/* Headlines */
h1, h2, h3, h4 {
  font-weight: 700;
}

h2 {
  font-size: 1.75em;
  line-height: 1.71428571em;
  margin-top: 0.85714286em;
  margin-bottom: 0.85714286em;
}
h3 {
  font-size: 1.3125em;
  line-height: 1.14285714em;
  margin-top: 1.14285714em;
  margin-bottom: 0em;
}
h4,
h5,
h6 {
  font-size: 1em;
  line-height: 1.5em;
  margin-top: 1.5em;
  margin-bottom: 0em;
}

h1+h2,
h1+div h2 {
  margin-top: 0;
}

/* sonstige AbstÃ¤nde und Elemente */
p, ul, ol, pre, table, blockquote {
  margin-top: 0em;
  margin-bottom: 1.5em;
}
ul ul, ol ol, ul ol, ol ul {
  margin-top: 0em;
  margin-bottom: 0em;
}

ol {
  list-style: decimal;
}

li {
  margin-left: 2em;
}

hr {
  border: 1px solid #292c37;
  margin: -1px 0;
}

.border-red {
	border:1px solid #bb1530;
	padding:5px;
	margin-bottom:1em;
}

.border-yellow {
	border:1px solid #e9b20f;
	padding:5px;
	margin-bottom:1em;
}

/** Layout **/
#wrapper {
  width: 100%;
  max-width: 1280px;
  margin: 50px auto 0 auto;
  padding: 0 2%;
}

/* Header Logo */
#header .inside {
  text-align: center;
}

#logo {
  line-height: 0;
}

/* Navigation */
#nav-main {
  /* display: none; */
  margin-top: 100px;
  background: #bb1530;
	min-width: 320px;
	min-width:-moz-max-content;
	min-width:-webkit-fill-available;
	min-width:stretch;
	min-width:max-content;
}

#nav-main ul {
  margin: 0;
  padding: 0;
}

#nav-main li {
  list-style: none;
  display: inline-block;
  margin: 0;
  padding: 0;
}

#nav-main a,
#nav-main strong {
  display: block;
  text-decoration: none;
  color: #fff;
  margin: 0 1em;
  line-height: 1.5;
  padding: 10px 0;
}

#nav-main > a.last,
#nav-main > .active.last {
  margin-right: 0;
}

#nav-main a:hover,
#nav-main a:focus {
  color: #e2b8bb;
}

#nav-main strong.active,
#nav-main .trail {
	color:#fff;
}

#nav-main span.active {
	color:#fff;
	font-weight:700;
}

/* Dropdown */

#nav-main {
  overflow: visible;
}

#nav-main .level_2 {
  position: absolute;
  left: auto;
  max-height: 0;
  overflow: hidden;
  background: #bb1530;
  z-index: 200;
  transition: max-height 0.2s ease-in-out;
}

#nav-main .submenu:hover .level_2 {
  max-height: 1000px;
}

#nav-main .level_2 > li {
  display: block;
  text-align: left;
  position: relative;
}

#nav-main .level_2 > li a,
#nav-main .level_2 > li strong,
#nav-main .level_3 > li a,
#nav-main .level_3 > li strong,
#nav-main .level_4 > li a,
#nav-main .level_4 > li strong
#nav-main .level_5 > li a,
#nav-main .level_5 > li strong {
    padding: 5px 0;
    border-top: 1px dotted #fff;
	min-width: 320px;
	min-width:-moz-max-content;
	min-width:-webkit-fill-available;
	min-width:stretch;
	min-width:max-content;
}

#nav-main .level_2 > li a.first,
#nav-main .level_2 > li strong.first {
  border-top: 0;
}

#nav-main .level_3 {
  max-height: 0;
  overflow: hidden;
  position: absolute;
  left: 50%;
  top: 0;
	z-index:300;
	min-width: 320px;
	min-width:-moz-max-content;
	min-width:-webkit-fill-available;
	min-width:stretch;
	min-width:max-content;
	transition: max-height 0.2s ease-in-out;
}

#nav-main .level_2:hover {
  overflow: visible;
}

#nav-main .level_2 li.submenu:hover .level_3 {
  max-height:60em;
  background: #bb1530;
}

#nav-main .level_3 > li {
  display: block;
  text-align: left;
  position: relative;
}

#nav-main .level_3 > li a,
#nav-main .level_3 > li strong {
  min-width: 320px;
	min-width:-moz-max-content;
	min-width:-webkit-fill-available;
	min-width:stretch;
	min-width:max-content;
}

/* Level 4 */
#nav-main .level_4 {
	max-height: 0;
    overflow: hidden;
    position: absolute;
    left: 50%;
    top: 0;
	z-index:300;
	min-width: 320px;
	min-width:-moz-max-content;
	min-width:-webkit-fill-available;
	min-width:stretch;
	min-width:max-content;
	transition: max-height 0.2s ease-in-out;
}

/* Level 5 */
#nav-main .level_5 {
	max-height: 0;
    overflow: hidden;
    position: absolute;
    left: 50%;
    top: 0;
	z-index:300;
	min-width: 320px;
	min-width:-moz-max-content;
	min-width:-webkit-fill-available;
	min-width:stretch;
	min-width:max-content;
	transition: max-height 0.2s ease-in-out;
}

#nav-main .level_3:hover {
  overflow: visible;
}

#nav-main .level_4:hover {
  overflow: visible;
}

#nav-main .level_2 .level_3 li.submenu:hover .level_4 {
  max-height:60em;
  background: #bb1530;
}

#nav-main .level_2 .level_3 .level_4 li.submenu:hover .level_5 {
  max-height:60em;
  background: #bb1530;
}

#nav-main .level_4 > li {
  display: block;
  text-align: left;
  position: relative;
}

#nav-main .level_4 > li a,
#nav-main .level_4 > li strong {
  min-width: 330px;
}

#nav-main .level_5 > li {
  display: block;
  text-align: left;
  position: relative;
}

#nav-main .level_5 > li a,
#nav-main .level_5 > li strong {
  min-width: 330px;
}

#nav-main ul.level_1 a.submenu::after,
#nav-main ul.level_1 span.submenu::after {
	font-weight:bold;
	content:" \25BC";
	color:#fff;
}

#nav-main ul.level_1 ul.level_2 a.submenu::after,
#nav-main ul.level_1 ul.level_2 span.submenu::after {
	font-weight:bold;
	content:" \25BA";
	color:#fff;
}

#nav-main li.active {
	border-top:2px solid #fff;
	padding:5px 0 5px 0;
	margin: 0 1em;
}





/* Mobile Nav */
#nav-mobile {
  width: 160px;
  margin: 0.25em auto;
}

#nav-mobile select {
  margin: 0;
}

/* Header Image Home */
.header-image {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.header-image h1 {
  text-align: center;
}


/* Boxen */
.box-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 40px;
}

.box {
  width: 100%;
  min-width: 200px;
  text-align: center;
  margin-bottom: 2em;
}

.box h2 {
  font-size: 1.5em;
  font-weight: 700;
  margin: 0 0 1.25em 0;
  padding: 0;
}

.box h2::before {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-size: 0.75em;
  background: #292c37;
  color: #fff;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-right: 10px;
  border-radius: 50%;
  display: inline-block;
}

.box-left h2::before {
  content: "\f118";
}

.box-middle h2::before {
  content: "\f0c3";
}

.box-right h2::before {
  content: "\f021";
}


/** Buttons **/
.button a,
button {
  display: inline-block;
  padding: 0.5em 2.75em;
  font-size: 1.3125em;
	margin: 0.5em 0;
	text-align: center;
	color: #fff;
	font-weight: 700;
	text-decoration: none;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.15);
  border: 0;
  transition: none;
}

.button a:hover,
.button a:focus,
button:hover,
button:focus {
  background-color: #ececec;
}
.button-center,
.text-center {
  text-align: center;
}

button {
  cursor: pointer;
}

/** Footer **/
#footer {
	border-top: 1px solid #ccc;
}

#footer h5 {
	color: #bb1530;
	margin-top: 0;
  margin-bottom: 0.25em;
}

#footer a,
#footer a:visited {
	color: #292c37;
	text-decoration: none;
}

#footer a:hover {
	color: #710c13;
}

.footer-copyright {
	margin-top: 40px;
	border-top: 1px solid #ccc;
	font-size: 0.75em;
	padding: 10px 0;
  text-align: center;
}

/* Social Icons */
.socialicons {
	list-style: none;
	margin: 0;
	padding: 0;
}

.socialicons li {
	font-size: 2.5em;
	line-height: 1;
	display: inline-block;
	vertical-align: top;
	margin-right: 5px;
	margin-left: 0;
}

/* Subnavigation links */
#left .inside {
	padding-right: 60px;
}

#left .mod_navigation {
	margin-top: 60px;
  display: none;
}

#left h5 {
	color: #292c37;
	margin-top: 0;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1em;
}

#left h5::after {
  width: 40px;
  height: 2px;
  display: block;
  margin-top: 0;
  background-color: #bb1530;
  content: " ";
}

#left .mod_navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#left .mod_navigation ul li {
	border-bottom: 1px solid #ccc;
	margin: 0;
	padding: 0;
}

#left .mod_navigation ul li a,
#left .mod_navigation ul li strong {
	color: #292c37;
	text-decoration: none;
	line-height: 2.5;
	display: block;
	font-weight: 400;
}

#left .mod_navigation ul li a:hover,
#left .mod_navigation ul li a:focus {
	color: #bb1530;
	text-decoration: underline;
}


#left .mod_navigation ul li strong.active,
#left .mod_navigation ul li .trail {
	color: #bb1530;
	font-weight: 700;
}

#left .mod_navigation .level_2 {
    list-style-type: square;
}

#left .mod_navigation .level_2 li {
    margin-left: 1.5em;
    border-bottom: none;
}

/* Formatierung Bilder */
figure.float_left {
	margin-right: 1.5em;
}

figure.float_right {
	margin-left: 1.5em;
}

figure.float_above,
figure.float_below {
  margin-bottom: 1.5em;
}

.image_container {
  display: inline-block;
}

.caption {
	line-height: 1.2;
	font-size: 0.875em;
	background-color: #e1e1e1;
	text-align: center;
	padding: 3px;
	margin-bottom: 0.25em;
}

/** Tabelle **/
table {
	width: 100%;
	overflow: auto;
}

th,td {
	padding: 5px 10px;
}

th {
	background: #efefef;
	font-weight: 700;
	text-align: left;
}

/** Akkordeon **/
.ce_accordion {
	margin-bottom: 1px;
}

.ui-accordion-content {
	padding: 0.25em 0.5em;
}

.ce_accordion .toggler {
	cursor: pointer;
	color: #fff;
	background: #aaa;
	outline: none;
	padding: 0.5em;
	font-weight: 700;
}

.ce_accordion .toggler.active,
.ce_accordion .toggler:hover {
	background: #bb1530;
}

.forschung .ce_accordion .toggler.active,
.forschung .ce_accordion .toggler:hover {
	background: #e9b20f;
}

.planung .ce_accordion .toggler.active,
.planung .ce_accordion .toggler:hover {
	background: #0073b1;
}

/* ul.level_1 .forschung {
	background: #e9b20f;
	margin: 0 1em 0 1em;
	padding: 0 1em 0 1em;
}

ul.level_1 .planung {
	background: #0073b1;
	margin: 0 1em 0 1em;
	padding: 0 1em 0 1em; */
}

/** Slider **/

.ce_sliderStart {
	background: #efefef;
}

.slider-control {
	height: 60px;
}

.slider-control .slider-menu {
	font-size: 50px;
	line-height: 55px;
}

.slider-control .slider-prev {
	left: 15px;
}

.slider-control .slider-next {
	right: 15px;
}

/** Galerie **/
.ce_gallery>ul {
	margin: 0;
	padding: 0;
	display: flex;
	flex-flow: row wrap;
}

.ce_gallery>ul li.col_first {
	clear:none;
}

.ce_gallery>ul li {
	float: none;
	margin: 0.25em auto;
}

/** Formular **/
label{
	display: block;
}

input,
textarea,
select {
	margin-bottom: 1em;
	padding: 0.5em;
	border: 1px solid #999;
	outline: 0;
	width: 100%;
	border-radius: 2px;
}

input:focus,
textarea:focus,
select:focus {
	border: 1px solid #bb1530;
}

form span.mandatory {
	display: none;
}

.submit {
	margin-top: 0;
}

p.error {
	color: red;
	background: #f1f1f1;
	border: 2px solid red;
	padding: 0.5em;
	margin: 0 0 0.25em 0;
}

.radio_container span {
	margin-right: 2em;
}

.radio_container input {
	width: auto;
	margin-left: 2px;
}

.radio_container label {
	display: inline-block;
}

.checkbox_container input {
	width: auto;
	margin-bottom: 0;
}

.checkbox_container label {
	display: inline;
	vertical-align: middle;
}

input[type=submit],
input[type=text] {
	-webkit-appearance: none;
}

/* Breadcrumb */
.mod_breadcrumb ul {
	list-style: none;
	margin: 0;
}

.mod_breadcrumb li {
	display: inline-block;
	margin: 0;
	padding: 0;
}

.mod_breadcrumb li:after {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-variant: normal;
  font-weight: 900;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  content: " > ";
  width: 20px;
  text-align: center;
}

.mod_breadcrumb .last:after {
	content: '';
}

/* Buchnavi */
.mod_booknav ul {
	list-style: none;
	margin: 1.5em 0;
}

.mod_booknav ul li {
	display: inline-block;
	margin: 0 2em 0 0;
	padding: 0;
}

.mod_booknav ul .next:after,
.mod_booknav ul .previous:before {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-variant: normal;
  font-weight: 900;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  text-align: center;
  width: 20px;
}
.mod_booknav ul .next:after {
  content: "\f0da";
}

.mod_booknav ul .previous::before {
  content: "\f0d9";
}

/* Nachrichten Styling */
.layout_latest {
	margin-bottom: 3em;
	padding-bottom: 3em;
	border-bottom: 1px solid #ccc;
}


.layout_latest h2,
.layout_full h1 {
	margin: 0;
}

.layout_latest h2 a {
	color: #292c37;
	text-decoration: none;
}

.layout_latest .info,
.layout_full .info {
	font-size: 0.875em;
}

.mod_newsarchive .layout_latest .info {
	margin-bottom: 0;
}

.layout_latest .info:before,
.layout_full .info:before {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
	content: "\f073";
    width: 20px;
    text-align: center;
}

#footer .layout_simple {
	border-bottom: 1px solid #ccc;
	padding: 0.5em 0;
}

#footer .layout_simple.first {
	padding-top: 0;
}

#footer .layout_simple a {
	font-weight: 700;
	text-decoration: none;
}


/* News-MenÃ¼ */
.mod_newsmenu ul {
	list-style: none;
	margin: 0;
}

.mod_newsmenu .year {
	margin: 0;
}

.mod_newsmenu a {
	text-decoration: none;
}

.mod_newsmenu a:hover,
.mod_newsmenu a:focus,
.mod_newsmenu strong.active
 {
	color: #710c13;
	text-decoration: underline;
}

/* Kommentar Antworten*/
.comment_default {
    padding: 0.75em 0;
    margin-bottom: 0.75em;
}

.comment_default .info {
	font-weight: 700;
	border-bottom: 1px solid #ccc;
}

.comment_default .reply {
	font-style: italic;
	padding-left: 2em;
	border-left: 2px solid #ccc;
}

.comment_default .reply .info {
	border-bottom: none;
}

.ce_comments .tl_confirm {
  position:absolute;
  top:-6em;
  z-index:999;
  padding:10px;
  background:#48b570;
  color:#fff;
  display:block
}

/* Events */
.calendar td {
	padding: 5px;
	height: 120px;
}

.calendar .head {
	text-align: center;
}

.calendar .label {
	width: 14.25%;
	font-size: 0.75em;
}

.calendar .header {
	font-size: 0.75em;
	background-color: #efefef;
	padding-left: 3px;
}

.calendar .empty .header {
	background-color: #fff;
}

.calendar .today .header{
	background-color: #bb1530;
	color: #fff;
	font-weight: 700;
}

.calendar .event {
	margin: 3px 0;
	line-height: 1.1;
}

.calendar .event a {
	font-size: 0.75em;
}


.minicalendar .head,
.minicalendar .label,
.minicalendar td {
	text-align: center;
}


.minicalendar .active {
	background: #bb1530;
}

.minicalendar .active a,
.minicalendar .active a:visited {
	color: #fff;
}

.layout_upcoming {
	padding: 1em 0.25em;
	border-bottom: 1px solid #ccc;
}

.layout_upcoming.odd {
	background: #efefef;
}

/** Newsletter Footer **/

.page-newsletter #footer .mod_subscribe .error {
  display: none;
}
#footer .mod_subscribe .submit {
  width: 100%;
}


/** Suche **/

#header .mod_form {
  margin: 0.5em 0;
}

#form-search {
	position: relative;
  display: inline-block;
}

#form-search input.text {
	margin-bottom: 0;
	padding-right: 30px;
	width: 160px;
	transition: all 0.2s ease 0s;
  height: 36px;
}

#form-search input.text:focus {
	width: 240px;
}

#form-search input.submit {
	position: absolute;
    right: 6px;
    top: 7px;
    width: 24px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
}

.mod_search form {
	border: 1px solid #ccc;
	padding: 25px;
}

.mod_search .header {
	margin-top: 2em;
	padding: 0.5em;
	text-align: center;
	background: #292c37;
	color: #fff;
}

mark {
	background: yellow;
	font-weight: 700;
}

.mod_search > div {
	padding: 0.75em 0.5em;
}

.mod_search .odd {
	background: #f3f3f3;
}

.mod_search form button {
	width: 100%;
}

/* Viewport min 1210px */
@media screen and (min-width: 1380px) {
  #header .mod_form {
  	position:absolute;
  	top: -36px;
  	right: 0;
  	z-index: 10;
    margin: 0;
  }

  /* Header Image Home */
  .header-image h1 {
    position: absolute;
    bottom: 50px;
    left: 25px;
    font-size: 3.375em;
    color: #fff;
    line-height: 1;
    margin-bottom: 0;
    text-align: left;
  }

  .header-image h1 span {
    background: rgba(159, 17, 27, 0.85);
    margin-top: 5px;
    float: left;
    padding: 10px;
  }

  #nav-main {
    display: block;
  }

  #nav-mobile {
    display: none;
  }

  #left .mod_navigation {
    display: block;
  }

  .box {
    width: 30%;
    text-align: left;
    margin: 0;
  }

  #footer h5 {
    margin-bottom: 0.5em;
  }

  .footer-copyright {
    text-align: left;
  }

  #form-search input.text {
    width: 115px;
  }

}

/* Viewport min 960px */
@media screen and (min-width: 960px) {
  #wrapper {
    padding: 0;
  }
}
/* Ende main_dropdown.css */



/* Links */
a,
a:visited {
	color: #bb1530;
	text-decoration: none;
}

a:hover,
a:focus,
a:active {
	color: #710c13;
  outline: 0;
}

a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.forschung p a {
	color:#e9b20f;
}

.planung p a {
	color:#0073b1;
}

.mehrNachrichten {
	margin:0 10px 0 10px;
	padding:0 0 10px 0;
}

.submenu_hide a::after {
	content:" >>";
}

.mobile_menu .inner {
	height:auto;
	background:#fff;
	margin-top:3em;
}

.mod_mobile_menu {
	height:auto;
	float:left;
}

strong {
	font-weight:bold;
}

.kontakte.block {
	background:#fff;
	border-right:2px solid #bb1530;
	border-bottom:2px solid #bb1530;
	padding:1em 1em 0 1em;
	font-size:0.8rem;
	min-height:15em;
	margin-bottom:1em;
}

.kontakt.block {
	background:#fff;
	border-right:2px solid #bb1530;
	border-bottom:2px solid #bb1530;
	padding:1em 1em 0 1em;
	min-height:10em;
	margin-bottom:1em;
}

h1.ce_headline.kontakte_h1 {
	background:#bb1530;
	color:#fff;
	border:1px solid #bb1530;
	padding:1em 1em 0 1em;
	margin-top:1em;
}

.grid12.kontakte {
	float:none;
	display:block;
	width:100%;
}

.kontakte_blank {
	clear:left;
}

/* Ersatz fÃ¼r Contao-Standard CSSe */

/*!
 * This file is part of Contao.
 *
 * (c) Leo Feyer
 *
 * @license LGPL-3.0-or-later
 */

/**
 * Reset the margin and padding of the block elements
 */
div,h1,h2,h3,h4,h5,h6,p,blockquote,pre,code,ol,ul,li,dl,dt,dd,figure,table,th,td,form,fieldset,legend,input,textarea {
	margin:0;
	padding:0;
}

/**
 * Basic element formatting
 */
table {
	border-spacing:0;
	border-collapse:collapse;
}
caption,th,td {
	text-align:left;
	text-align:start; /* see #4596 */
	vertical-align:top;
}
abbr,acronym {
	font-variant:normal;
	border-bottom:1px dotted #666;
	cursor:help;
}
blockquote,q {
	quotes:none;
}
fieldset,img,iframe {
	border:0;
}
ul {
	list-style-type:none;
}
sup {
	vertical-align:text-top;
}
sub {
	vertical-align:text-bottom;
}
del {
	text-decoration:line-through;
}
ins {
	text-decoration:none;
}
header,footer,nav,section,aside,article,figure,figcaption {
	display:block;
}

/**
 * Default font settings
 */
 
input,button,textarea,select {
	font-family:inherit;
	font-size:99%;
	font-weight:inherit;
}
pre,code {
	font-family:Monaco,monospace;
}
h1,h2,h3,h4,h5,h6 {
	font-size:100%;
	font-weight:normal;
}
h1 {
	font-size:1.8333em; /* 22px */
}
h2 {
	font-size:1.6667em; /* 20px */
}
h3 {
	font-size:1.5em;    /* 18px */
}
h4 {
	font-size:1.3333em; /* 16px */
}
table {
	font-size:inherit;
}
caption,th {
	font-weight:bold;
}
a {
	color:#00f;
}

/**
 * Default margins
 */
h1,h2,h3,h4,h5,h6 {
	margin-top:1em;
}
h1,h2,h3,h4,h5,h6,p,pre,blockquote,table,ol,ul,form {
	margin-bottom:12px; /* Should match the font size */
}

/*!
 * This file is part of Contao.
 *
 * (c) Leo Feyer
 *
 * @license LGPL-3.0-or-later
 */

/**
 * Make the wrapping container 960 pixel wide
 */
#wrapper {
	width:1280px;
	margin:0 auto;
}

/**
 * Set the default margin of the grid columns
 */
*[class*="grid"] {
	float:left;
	margin-left:10px;
	margin-right:10px;
	display:inline;
}

/**
 * Add a default margin to all content elements, so they align with the floatet
 * ones (otherwise you would have to add "grid12" to every element)
 */
.mod_article *[class*="ce_"],.mod_article *[class*="mod_"] {
	margin-left:10px;
	margin-right:10px;
}

/**
 * Handle news and event reader modules which are added via content element and
 * contain content elements themselves (see #5331)
 */
.mod_article .mod_newsreader,.mod_article .mod_eventreader,
.mod_article .gl,.mod_article .gl {
	margin-left:0;
	margin-right:0;
}
.mod_article *[class*="layout_"] > *,.mod_article *[class*="event_"] > * {
	margin-left:10px;
	margin-right:10px;
}

/**
 * Remove the margin from floated articles, because the margin is already
 * applied to its content elements (see above)
 */
.mod_article.grid1,.mod_article.grid2,.mod_article.grid3,.mod_article.grid4,.mod_article.grid5,.mod_article.grid6,
.mod_article.grid7,.mod_article.grid8,.mod_article.grid9,.mod_article.grid10,.mod_article.grid11,.mod_article.grid12 {
	margin-left:0;
	margin-right:0;
}

/**
 * Automatically clear the floats in the main column, so you do not have to add
 * a clearing div to each article
 */
#main .inside {
	overflow:hidden;
}

/**
 * Grid column widths
 */
.grid1  { width:60px;  }
.grid2  { width:140px; }
.grid3  { width:220px; }
.grid4  { width:300px; }
.grid5  { width:380px; }
.grid6  { width:460px; }
.grid7  { width:540px; }
.grid8  { width:620px; }
.grid9  { width:700px; }
.grid10 { width:780px; }
.grid11 { width:860px; }
.grid12 { width:940px; }

/**
 * Floated articles can be 20 pixel wider (no margin)
 */
.mod_article.grid1  { width:80px;  }
.mod_article.grid2  { width:160px; }
.mod_article.grid3  { width:240px; }
.mod_article.grid4  { width:320px; }
.mod_article.grid5  { width:400px; }
.mod_article.grid6  { width:480px; }
.mod_article.grid7  { width:560px; }
.mod_article.grid8  { width:640px; }
.mod_article.grid9  { width:720px; }
.mod_article.grid10 { width:800px; }
.mod_article.grid11 { width:880px; }
.mod_article.grid12 { width:960px; }

/**
 * Default offset widths
 */
.offset1  { margin-left:90px  !important; }
.offset2  { margin-left:170px !important; }
.offset3  { margin-left:250px !important; }
.offset4  { margin-left:330px !important; }
.offset5  { margin-left:410px !important; }
.offset6  { margin-left:490px !important; }
.offset7  { margin-left:570px !important; }
.offset8  { margin-left:650px !important; }
.offset9  { margin-left:730px !important; }
.offset10 { margin-left:810px !important; }
.offset11 { margin-left:890px !important; }
.offset12 { margin-left:970px !important; }

/**
 * Floated articles do not have margin
 */
.mod_article.offset1  { margin-left:80px  !important; }
.mod_article.offset2  { margin-left:160px !important; }
.mod_article.offset3  { margin-left:240px !important; }
.mod_article.offset4  { margin-left:320px !important; }
.mod_article.offset5  { margin-left:400px !important; }
.mod_article.offset6  { margin-left:480px !important; }
.mod_article.offset7  { margin-left:560px !important; }
.mod_article.offset8  { margin-left:640px !important; }
.mod_article.offset9  { margin-left:720px !important; }
.mod_article.offset10 { margin-left:800px !important; }
.mod_article.offset11 { margin-left:880px !important; }
.mod_article.offset12 { margin-left:960px !important; }

/**
 * Reduce the overall width and the width of the grid columns if the screen
 * width is less than 980px (e.g. on a portrait tablet)
 */
@media (max-width:1209px)
{
	/**
	 * Reduce the overall width
	 */
	/*#wrapper {
		width:744px;
	}*/

	/**
	 * Reduce the grid column widths
	 */
	/*.grid1  { width:42px;  }
	.grid2  { width:104px; }
	.grid3  { width:166px; }
	.grid4  { width:228px; }
	.grid5  { width:290px; }
	.grid6  { width:352px; }
	.grid7  { width:414px; }
	.grid8  { width:476px; }
	.grid9  { width:538px; }
	.grid10 { width:600px; }
	.grid11 { width:662px; }
	.grid12 { width:724px; }*/

	/**
	 * Floated articles can be 20 pixel wider (no margin)
	 */
	.mod_article.grid1  { width:62px;  }
	.mod_article.grid2  { width:124px; }
	.mod_article.grid3  { width:186px; }
	.mod_article.grid4  { width:248px; }
	.mod_article.grid5  { width:310px; }
	.mod_article.grid6  { width:372px; }
	.mod_article.grid7  { width:434px; }
	.mod_article.grid8  { width:496px; }
	.mod_article.grid9  { width:558px; }
	.mod_article.grid10 { width:620px; }
	.mod_article.grid11 { width:682px; }
	.mod_article.grid12 { width:744px; }

	/**
	 * Reduce the offset widths
	 */
	.offset1  { margin-left:72px  !important; }
	.offset2  { margin-left:134px !important; }
	.offset3  { margin-left:196px !important; }
	.offset4  { margin-left:258px !important; }
	.offset5  { margin-left:320px !important; }
	.offset6  { margin-left:382px !important; }
	.offset7  { margin-left:444px !important; }
	.offset8  { margin-left:506px !important; }
	.offset9  { margin-left:568px !important; }
	.offset10 { margin-left:630px !important; }
	.offset11 { margin-left:692px !important; }
	.offset12 { margin-left:754px !important; }

	/**
	 * Floated articles do not have margin
	 */
	.mod_article.offset1  { margin-left:62px  !important; }
	.mod_article.offset2  { margin-left:124px !important; }
	.mod_article.offset3  { margin-left:186px !important; }
	.mod_article.offset4  { margin-left:248px !important; }
	.mod_article.offset5  { margin-left:310px !important; }
	.mod_article.offset6  { margin-left:372px !important; }
	.mod_article.offset7  { margin-left:434px !important; }
	.mod_article.offset8  { margin-left:496px !important; }
	.mod_article.offset9  { margin-left:558px !important; }
	.mod_article.offset10 { margin-left:620px !important; }
	.mod_article.offset11 { margin-left:682px !important; }
	.mod_article.offset12 { margin-left:744px !important; }
}

/**
 * Remove all floats and fixed widths if the screen width is less than 768
 * pixel (e.g. on a mobile phone)
 */
@media (max-width:767px)
{
	/**
	 * Remove the overall width
	 */
	#wrapper {
		width:auto;
	}

	/**
	 * Show all columns underneath each other
	 */
	*[class*="grid"] {
		float:none !important;
		display:block !important;
		width:auto !important;
	}
	*[class*="offset"] {
		margin-left:10px !important;
	}
}

/*!
 * This file is part of Contao.
 *
 * (c) Leo Feyer
 *
 * @license LGPL-3.0-or-later
 */

/**
 * Standardize some basic elements
 */
form,figure {
	margin:0;
	padding:0;
}
img {
	border:0;
}
header,footer,nav,section,aside,article,figure,figcaption {
	display:block;
}

/**
 * Fix some font issues
 */
body {
  background-color:#d3d3d3;
  font:12px/1.5em Arial;
	color:#333;
	min-width:320px;
	margin:0;
	padding:0;
}
select,input,textarea {
	font-size:99%;
}

/**
 * Fix some positioning issues
 */
#container,.inside {
	position:relative;
}

/**
 * Holy grail CSS layout
 *
 * @see http://www.alistapart.com/articles/holygrail
 */
#main,#left,#right {
	float:left;
	position:relative;
}
#main {
	width:100%;
}
#left {
	margin-left:-100%;
}
#right {
	margin-right:-100%;
}
#footer {
	clear:both;
}
#main .inside {
	min-height:1px; /* see #4893 */
}

/**
 * Format the Contao image galleries (now rendered as unordered lists)
 */
.ce_gallery > ul {
	margin:0;
	padding:0;
	overflow:hidden;
	list-style:none;
}
.ce_gallery > ul li {
	float:left;
}
.ce_gallery > ul li.col_first {
	clear:left;
}

/**
 * Float classes (see #6851)
 */
.float_left {
	float:left;
}
.float_right {
	float:right;
}

/**
 * Clear floats
 */
.block {
	overflow:hidden;
}
.clear,#clear {
	height:0.1px;
	font-size:0.1px;
	line-height:0.1px;
	clear:both;
}

/**
 * Hide invisible elements
 */
.invisible {
	border:0;
	clip:rect(0 0 0 0);
	height:1px;
	margin:-1px;
	overflow:hidden;
	padding:0;
	position:absolute;
	width:1px;
}

/**
 * Custom layout sections
 */
.custom {
	display:block;
}
#container:after,.custom:after {
	content:"";
	display:table;
	clear:both;
}

/*!
 * This file is part of Contao.
 *
 * (c) Leo Feyer
 *
 * @license LGPL-3.0-or-later
 */

/**
 * Apply the holy grail CSS layout if the screen is at least 768 pixel wide,
 * otherwise display all columns underneath each other
 *
 * @see http://www.alistapart.com/articles/holygrail
 */
@media (max-width:767px)
{
	#wrapper {
		margin:0;
		width:auto;
	}
	#container {
		padding-left:0;
		padding-right:0;
	}
	#main,#left,#right {
		float:none;
		width:auto;
	}
	#left {
		right:0;
		margin-left:0;
	}
	#right {
		margin-right:0;
	}
}

/**
 * Flexible images (videos see #4896)
 *
 * @see http://webdesignerwall.com/tutorials/responsive-design-with-css3-media-queries
 */
img {
	max-width:100%;
	height:auto;
}

img.editLine {
	max-width:none;
	height:auto;
}

.ie7 img {
	-ms-interpolation-mode:bicubic;
}
.ie8 img {
	width:auto; /* see #5789 */
}

/*!
 * This file is part of Contao.
 *
 * (c) Leo Feyer
 *
 * @license LGPL-3.0-or-later
 */

/**
 * Since fieldset borders are removed in the reset style sheet, adjust the
 * legends accordingly
 */
legend {
	width:100%;
	display:block;
	font-weight:bold;
	border:0;
}

/**
 * Text fields and textareas
 */
input[type="text"],input[type="password"],input[type="date"],input[type="datetime"],input[type="email"],
input[type="number"],input[type="search"],input[type="tel"],input[type="time"],input[type="url"],input:not([type]),textarea {
	width:100%;
	display:inline-block;
	padding:3px 6px;
	background:#fff;
	border:1px solid #ccc;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border-radius:3px;
	-moz-box-shadow:inset 0 1px 1px #eee;
	-webkit-box-shadow:inset 0 1px 1px #eee;
	box-shadow:inset 0 1px 1px #eee;
	-moz-transition:all .15s linear;
	-webkit-transition:all .15s linear;
	-o-transition:all .15s linear;
	transition:all .15s linear;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
input[type="text"]:focus,input[type="password"]:focus,input[type="date"]:focus,input[type="datetime"]:focus,input[type="email"]:focus,
input[type="number"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="time"]:focus,input[type="url"]:focus,input:not([type]):focus,textarea:focus {
	outline:0;
	background:#fcfcfc;
	border-color:#bbb;
}

/**
 * Fix some width and height settings
 */
input[type="file"] {
	cursor:pointer;
}
select,input[type="file"] {
	display:block;
}
form button,input[type="file"],input[type="image"],input[type="submit"],input[type="reset"],input[type="button"],input[type="radio"],input[type="checkbox"] {
	width:auto;
}
textarea,select[multiple],select[size] {
	height:auto;
}

/**
 * Checkboxes and radio buttons
 */
input[type="radio"],input[type="checkbox"] {
	margin:0 3px 0 0;
}
input[type="radio"],input[type="checkbox"],label {
	vertical-align:middle;
}

/**
 * Handle disabled and read-only
 */
input[disabled],select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly] {
	cursor:not-allowed;
	background:#eee;
}
input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"][readonly],input[type="checkbox"][readonly] {
	background:#eee;
}

/**
 * Buttons
 */
form button,input[type="submit"],.button {
	display:inline-block;
	padding:4px 15px 4px 14px;
	margin-bottom:0;
	text-align:center;
	vertical-align:middle;
	line-height:16px;
	font-size:11px;
	color:#000;
	cursor:pointer;
	border:1px solid #ccc;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border-radius:3px;
	background-color:#ececec;
	/*background-image:-moz-linear-gradient(top, #fff, #ececec);
	background-image:-webkit-linear-gradient(top, #fff, #ececec);
	background-image:-ms-linear-gradient(top, #fff, #ececec);
	background-image:-o-linear-gradient(top, #fff, #ececec);
	background-image:linear-gradient(to bottom, #fff, #ececec);
	background-repeat:none;
	-moz-transition:background .15s linear;
	-webkit-transition:background .15s linear;
	-o-transition:background .15s linear;*/
	transition:none;
	font-weight:normal;
}

form button:active,input[type="submit"]:active,.button:active {
	background-color:#e6e6e6;
	background-position:0 -30px !important;
}

/**
 * Blue buttons
 */
form button.blue,input[type="submit"].blue,.button.blue {
	background-color:#2f96b4;
	background-image:-moz-linear-gradient(top, #5bc0de, #2f96b4);
	background-image:-webkit-linear-gradient(top, #5bc0de, #2f96b4);
	background-image:-ms-linear-gradient(top, #5bc0de, #2f96b4);
	background-image:-o-linear-gradient(top, #5bc0de, #2f96b4);
	background-image:linear-gradient(to bottom, #5bc0de, #2f96b4);
	border-color:#2f96b4;
	color:#fff;
}
form button.blue:active,input[type="submit"].blue:active,.button.blue:active {
	background-color:#2e95b3;
}

/**
 * Green buttons
 */
form button.green,input[type="submit"].green,.button.green {
	background-color:#51a351;
	background-image:-moz-linear-gradient(top, #62c462, #51a351);
	background-image:-webkit-linear-gradient(top, #62c462, #51a351);
	background-image:-ms-linear-gradient(top, #62c462, #51a351);
	background-image:-o-linear-gradient(top, #62c462, #51a351);
	background-image:linear-gradient(to bottom, #62c462, #51a351);
	border-color:#51a351;
	color:#fff;
}
form button.green:active,input[type="submit"].green:active,.button.green:active {
	background-color:#4f9f4f;
}

/**
 * Orange buttons
 */
form button.orange,input[type="submit"].orange,.button.orange {
	background-color:#f89406;
	background-image:-moz-linear-gradient(top, #fbb450, #f89406);
	background-image:-webkit-linear-gradient(top, #fbb450, #f89406);
	background-image:-ms-linear-gradient(top, #fbb450, #f89406);
	background-image:-o-linear-gradient(top, #fbb450, #f89406);
	background-image:linear-gradient(to bottom, #fbb450, #f89406);
	border-color:#f89406;
	color:#fff;
}
form button.orange:active,input[type="submit"].orange:active,.button.orange:active {
	background-color:#f28f04;
}

/**
 * Red buttons
 */
form button.red,input[type="submit"].red,.button.red {
	background-color:#bd362f;
	background-image:-moz-linear-gradient(top, #ee5f5b, #bd362f);
	background-image:-webkit-linear-gradient(top, #ee5f5b, #bd362f);
	background-image:-ms-linear-gradient(top, #ee5f5b, #bd362f);
	background-image:-o-linear-gradient(top, #ee5f5b, #bd362f);
	background-image:linear-gradient(to bottom, #ee5f5b, #bd362f);
	border-color:#bd362f;
	color:#fff;
}
form button.red:active,input[type="submit"].red:active,.button.red:active {
	background-color:#be322b;
}

/**
 * Basic form layout
 */
.widget {
	margin-bottom:0px;
}
.widget > label {
	display:block;
	margin-bottom:6px;
}

/**
 * Inline form layout
 */
.inline-form .widget {
	display:inline-block;
	margin-bottom:0;
	vertical-align:middle;
}

/**
 * Horizontal form layout
 */
.horizontal-form .widget:after {
	content:"";
	display:table;
	clear:both;
}
.horizontal-form .widget > label {
	width:20%;
	float:left;
	padding:0px 2% 0 0;
	text-align:right;
}
.horizontal-form .widget > input,.horizontal-form .widget > textarea,.horizontal-form .widget > select {
	width:78%;
	float:left;
}
.horizontal-form .widget > fieldset {
	margin-left:20%;
}

/*!
 * This file is part of Contao.
 *
 * (c) Leo Feyer
 *
 * @license LGPL-3.0-or-later
 */

.download-element {
	padding:3px 6px 3px 22px;
	background:url("../images/iconPLAIN.svg") left center no-repeat;
}

ul.enclosure {
	padding-left:0;
}

li.download-element {
	list-style-type:none;
}

/* Stylesheet.css */
.kontakt2 {
float:left;
margin-right:4em
}

.kontakt1 {
float:left;
margin-right:4em;
margin-left:4em
}

a.cookiebar__link,a.cookiebar__link:visited {
color:#ff0
}

div.mejs-mediaelement video {
width:640px;
height:auto;
max-width:640px;
border:2px solid #f00;
margin:0 auto
}

.image_container {
margin-right:0
}

div.menuUberUns a {
font:16px 'Open Sans',sans serif;
text-decoration:none;
color:rgba(0,0,0,.6)
}

div.menuUberUns {
padding-top:20px;
padding-left:20px;
background-color:#f3f3f3;
font:16px 'Open Sans',sans serif;
color:rgba(0,0,0,.6)
}

mitarbeiterbereich a {
color:#bb1530
}

#backbutton {
margin-left:10px
}

#galerie_lokationen {
margin-left:-13px
}

#galerie_lokationen h1 {
margin-left:0;
padding-left:20px;
font-size:1em;
font-style:italic;
font-weight:normal
}

.main_intern a {
color:#BB1530
}

.main_intern a#backbutton,.kontakt a#backbutton,.suche a#backbutton {
color:#BB1530
}

.praktische {
background-image: url(files/logos/projektpetra_1p_logo_rgb.svg);
}

.praktische a {
color:#BB1530
}

.praktische a#backbutton {
color:#BB1530
}

#kontakt_f a {
text-decoration:none;
color:#e9b20f
}

#kontakt_f .flexibox {
	border-right: 2px solid #e9b20f;
  border-bottom: 2px solid #e9b20f;
}

#mitarbeiterbereich a {
color:#BB1530
}

#kontakt_b a {
text-decoration:none;
color:#0073b1
}

#kontakt_b .flexibox {
	border-right: 2px solid #0073b1;
  border-bottom: 2px solid #0073b1;
}

.ce_gallery ul {
list-style-type:none
}

a {
text-decoration:none;
color:#bb1530
}

.mod_breadcrumb li {
display:inline-block
}

.mod_eventlist .header {
margin:16px 10px 0;
padding:0
}

.mod_eventlist h2 {
margin-top:3px
}

.mod_eventlist a {
font-weight:normal;
text-decoration:none;
color:#535353
}

.mod_eventlist p.more a,.mod_eventlist a.more {
font-weight:normal;
text-decoration:none;
color:#BB1530
}

.mejs-container {
width:640px;
height:360px
}

.mod_eventlist .time {
display:none
}

.mod_eventlist a.more,.mod_newslist a.more,
#projekt-petra .mod_eventlist a.more,#projekt-petra .mod_newslist a.more {
width:100%;
text-align:center;
font-size:.8em;
font-weight:bold;
text-decoration:none;
text-transform:uppercase
}

.mod_eventlist.all,.mod_newslist.all {
margin-bottom:5px;
box-shadow: 1px 1px 4px #cecece;
background-color: #fff;
border-radius: 5px
}

.layout_full.noinfo .info {
display:none
}

.mod_newslist,
#projekt-petra .mod_newslist {
margin-bottom:5px
}

.pagination p,.pagination .first,.pagination .previous,.pagination .next,.pagination .last {
display:none
}

.pagination ul {
padding-top:10px;
text-align:center
}

.pagination li {
display:inline-block;
background-color:#f7f5f4;
border:1px solid #cecece;
border-radius:5px
}

.pagination li a,.pagination li span {
display:block;
padding:3px 10px;
text-decoration:none
}

.mod_breadcrumb.block {
margin-left:10px;
font-size:.9em;
padding:0;
}

.mod_breadcrumb li:not(.last):after {
padding-right:5px;
padding-left:10px;
font-family:FontAwesome;
color:#666;
content:" > "
}

/* Header Image Home */
.header-image {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.header-image h1 {
  text-align: center;
}


/* Boxen */
.box-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 40px;
}

.box {
  width: 100%;
  min-width: 200px;
  text-align: center;
  margin-bottom: 2em;
}

.box h2 {
  font-size: 1.5em;
  font-weight: 700;
  margin: 0 0 1.25em 0;
  padding: 0;
}

.box h2::before {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-size: 0.75em;
  background: #292c37;
  color: #fff;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-right: 10px;
  border-radius: 50%;
  display: inline-block;
}

.box-left h2::before {
  content: "\f118";
}

.box-middle h2::before {
  content: "\f0c3";
}

.box-right h2::before {
  content: "\f021";
}


/** Buttons **/
.button a,
button {
  display: inline-block;
  padding: 0.5em 2.75em;
  font-size: 1.3125em;
	margin: 0.5em 0;
	text-align: center;
	color: #fff;
	font-weight: 700;
	text-decoration: none;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.15);
  border: 0;
  transition: none;
}

.button a:focus,
button:focus {
  background-color: #cccccc;
}
.button-center,
.text-center {
  text-align: center;
}

button {
  cursor: pointer;
}

button.pdf_button {
  display: inline-block;
	margin: 0 0 0 4em;
  padding: 3px 5px;
	background-color:	#ccf;
	text-align: center;
	color: #00f;
	text-decoration: none;
  border-radius: 5px;
  border: 1px solid #00f;
	font-size: 11px;
	font-weight: 500;
	vertical-align: text-bottom;
	line-height: 16px;
}

button.textGelb {
  display: inline-block;
	margin: 0 0 0 4em;
  padding: 3px 5px;
	background-color:	#f6e3ce;
	text-align: center;
	color: #8a4b08;
	text-decoration: none;
  border-radius: 5px;
  border: 1px solid #8a4b08;
	font-size: 11px;
	font-weight: 500;
	vertical-align: text-bottom;
	line-height: 16px;
}

button.textGruen {
  display: inline-block;
	margin: 0 0 0 4em;
  padding: 3px 5px;
	background-color:	#cfc;
	text-align: center;
	color: #080;
	text-decoration: none;
  border-radius: 5px;
  border: 1px solid #080;
	font-size: 11px;
	font-weight: 500;
	vertical-align: text-bottom;
	line-height: 16px;
}

button.textRot {
  display: inline-block;
	margin: 0 0 0 4em;
  padding: 3px 5px;
	background-color:	#fcc;
	text-align: center;
	color: #f00;
	text-decoration: none;
  border-radius: 5px;
  border: 1px solid #f00;
	font-size: 11px;
	font-weight: 500;
	vertical-align: text-bottom;
	line-height: 16px;
}

button.pdf_button:hover {
	background-color:	#cecece;
}

/** Footer **/
#footer {
	margin-top: 0px;
	border-top: 1px solid #ccc;
	background: #f7f5f4;
	color: #535353;
}

#footer h5 {
	color: #bb1530;
	margin-top: 0;
  margin-bottom: 0.25em;
}

#footer a,
#footer a:visited {
	color: #292c37;
	text-decoration: underline;
}

.footer-copyright {
	margin-top: 40px;
	border-top: 1px solid #ccc;
	font-size: 0.75em;
	padding: 10px 0;
  text-align: center;
}

/* Social Icons */
.socialicons {
	list-style: none;
	margin: 0;
	padding: 0;
}

.socialicons li {
	font-size: 2.5em;
	line-height: 1;
	display: inline-block;
	vertical-align: top;
	margin-right: 5px;
	margin-left: 0;
}

/* Formatierung Bilder */
figure.float_left {
	margin-right: 1.5em;
}

figure.float_right {
	margin-left: 1.5em;
}

figure.float_above,
figure.float_below {
  margin-bottom: 1.5em;
}

.image_container {
  display: inline-block;
}

.caption {
	line-height: 1.2;
	font-size: 0.875em;
	background-color: #e1e1e1;
	text-align: center;
	padding: 3px;
	margin-bottom: 0.25em;
}

/** Tabelle **/
table {
	width: 100%;
	overflow: auto;
}

th,td {
	padding: 5px 10px;
}

th {
	background: #efefef;
	font-weight: 700;
	text-align: left;
}


/** Slider **/

.ce_sliderStart {
	background: #efefef;
}

.slider-control {
	height: 60px;
}

.slider-control .slider-menu {
	font-size: 50px;
	line-height: 55px;
}

.slider-control .slider-prev {
	left: 15px;
}

.slider-control .slider-next {
	right: 15px;
}

/** Galerie **/
.ce_gallery>ul {
	margin: 0;
	padding: 0;
	display: flex;
	flex-flow: row wrap;
	list-style-type:none;
}

.ce_gallery>ul li.col_first {
	clear:none;
}

/** Formular **/
label{
	display: block;
}

input,
textarea,
select {
	padding: 0.5em;
	border: 1px solid #999;
	outline: 0;
	width: 100%;
	border-radius: 2px;
}

input:focus,
textarea:focus,
select:focus {
	border: 1px solid #bb1530;
}

form span.mandatory {
	display: none;
}

.submit {
	margin-top: 0;
}

p.error {
	color: red;
	background: #f1f1f1;
	border: 2px solid red;
	padding: 0.5em;
	margin: 0 0 0.25em 0;
}

.radio_container span {
	margin-right: 2em;
}

.radio_container input {
	width: auto;
	margin-left: 2px;
}

.radio_container label {
	display: inline-block;
}

.checkbox_container input {
	width: auto;
	margin-bottom: 0;
}

.checkbox_container label {
	display: inline;
	vertical-align: middle;
}

input[type=submit],
input[type=text] {
	-webkit-appearance: none;
}

/* Breadcrumb */
.mod_breadcrumb ul {
	list-style: none;
	margin: 0;
}

.mod_breadcrumb li {
	display: inline-block;
	margin: 0;
	padding: 0;
}

.mod_breadcrumb li:after {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-variant: normal;
  font-weight: 900;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  content: "\f0da";
  width: 20px;
  text-align: center;
}

.mod_breadcrumb .last:after {
	content: '';
}

/* Buchnavi */
.mod_booknav ul {
	list-style: none;
	margin: 1.5em 0;
}

.mod_booknav ul li {
	display: inline-block;
	margin: 0 2em 0 0;
	padding: 0;
}

.mod_booknav ul .next:after,
.mod_booknav ul .previous:before {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-variant: normal;
  font-weight: 900;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  text-align: center;
  width: 20px;
}
.mod_booknav ul .next:after {
  content: "\f0da";
}

.mod_booknav ul .previous::before {
  content: "\f0d9";
}

/* Nachrichten Styling */
.layout_latest {
	margin-bottom: 3em;
	padding-bottom: 1em;
	border-bottom: 1px solid #ccc;
}


.layout_latest h2,
.layout_full h1 {
	margin: 0;
}

.layout_latest h2 a {
	color: #292c37;
	text-decoration: none;
}

.layout_latest .info,
.layout_full .info {
	font-size: 0.875em;
}

.mod_newsarchive .layout_latest .info {
	margin-bottom: 0;
}

.layout_latest .info:before,
.layout_full .info:before {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
	content: "\f073";
    width: 20px;
    text-align: center;
}

#footer .layout_simple {
	border-bottom: 1px solid #ccc;
	padding: 0.5em 0;
}

#footer .layout_simple.first {
	padding-top: 0;
}

#footer .layout_simple a {
	font-weight: 700;
	text-decoration: none;
}


/* News-MenÃ¼ */
.mod_newsmenu ul {
	list-style: none;
	margin: 0;
}

.mod_newsmenu .year {
	margin: 0;
}

.mod_newsmenu a {
	text-decoration: none;
}

.mod_newsmenu a:focus,
.mod_newsmenu strong.active
 {
	color: #710c13;
	text-decoration: underline;
}

/* Kommentar Antworten*/
.comment_default {
    padding: 0.75em 0;
    margin-bottom: 0.75em;
}

.comment_default .info {
	font-weight: 700;
	border-bottom: 1px solid #ccc;
}

.comment_default .reply {
	font-style: italic;
	padding-left: 2em;
	border-left: 2px solid #ccc;
}

.comment_default .reply .info {
	border-bottom: none;
}

.ce_comments .tl_confirm {
  position:absolute;
  top:-6em;
  z-index:999;
  padding:10px;
  background:#48b570;
  color:#fff;
  display:block
}

/* Events */
.calendar td {
	padding: 5px;
	height: 120px;
}

.calendar .head {
	text-align: center;
}

.calendar .label {
	width: 14.25%;
	font-size: 0.75em;
}

.calendar .header {
	font-size: 0.75em;
	background-color: #efefef;
	padding-left: 3px;
}

.calendar .empty .header {
	background-color: #fff;
}

.calendar .today .header{
	background-color: #bb1530;
	color: #fff;
	font-weight: 700;
}

.calendar .event {
	margin: 3px 0;
	line-height: 1.1;
}

.calendar .event a {
	font-size: 0.75em;
}


.minicalendar .head,
.minicalendar .label,
.minicalendar td {
	text-align: center;
}


.minicalendar .active {
	background: #bb1530;
}

.minicalendar .active a,
.minicalendar .active a:visited {
	color: #fff;
}

.layout_upcoming {
	padding: 1em 0.25em;
	border-bottom: 1px solid #ccc;
}

.layout_upcoming.odd {
	background: #efefef;
}

/** Newsletter Footer **/

.page-newsletter #footer .mod_subscribe .error {
  display: none;
}
#footer .mod_subscribe .submit {
  width: 100%;
}


/** Suche **/

#header .mod_form {
  margin: 0.5em 0;
}

#form-search {
	position: relative;
  display: inline-block;
}

#form-search input.text {
	margin-bottom: 0;
	padding-right: 30px;
	width: 160px;
	transition: all 0.2s ease 0s;
  height: 36px;
}

#form-search input.text:focus {
	width: 240px;
}

#form-search input.submit {
	position: absolute;
    right: 6px;
    top: 7px;
    width: 24px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
}

.mod_search form {
	border: 1px solid #ccc;
	padding: 25px;
}

.mod_search .header {
	margin-top: 2em;
	padding: 0.5em;
	text-align: center;
	background: #292c37;
	color: #fff;
}

mark {
	background: yellow;
	font-weight: 700;
}

.mod_search > div {
	padding: 0.75em 0.5em;
}

.mod_search .odd {
	background: #f3f3f3;
}

.mod_search form button {
	width: 100%;
}

/* Viewport min 768px */
@media screen and (min-width: 1380px) {
  #header .mod_form {
  	position:absolute;
  	top: -36px;
  	right: 0;
  	z-index: 10;
    margin: 0;
  }

  /* Header Image Home */
  .header-image h1 {
    position: absolute;
    bottom: 50px;
    left: 25px;
    font-size: 3.375em;
    color: #fff;
    line-height: 1;
    margin-bottom: 0;
    text-align: left;
  }

  .header-image h1 span {
    background: rgba(159, 17, 27, 0.85);
    margin-top: 5px;
    float: left;
    padding: 10px;
  }

  #left .mod_navigation {
    display: block;
  }

  .box {
    width: 30%;
    text-align: left;
    margin: 0;
  }

  #footer h5 {
    margin-bottom: 0.5em;
  }

  .footer-copyright {
    text-align: left;
  }

  #form-search input.text {
    width: 115px;
  }

}

/* Viewport min 960px */
@media screen and (min-width: 960px) {
  #wrapper {
    padding: 0;
  }
}


/* base.scss */

.mejs-container {
width:640px;
height:360px
}


.sr-only {
position:absolute;
width:1px;
height:1px;
padding:0;
margin:-1px;
overflow:hidden;
clip:rect(0, 0, 0, 0);
border:0
}

.sr-only-focusable:active,.sr-only-focusable:focus {
position:static;
width:auto;
height:auto;
margin:0;
overflow:visible;
clip:auto
}

p {
margin-bottom:0.8em
}

h1,h2,h3,h4 {
color:#535353
}

h1 {
font-weight:700;
margin-bottom:0.6em
}

h1 {
font-size:1.2em
}

h2 {
font-size:1em
}

h3,h4 {
margin-bottom:0.6em
}

h3 {
font-size:1em
}

h4 {
font-weight:400;
font-size:1em
}

.mod_article ul {
margin-left:22px;
list-style-type:disc
}

.mod_article .gl ul {
margin-left:22px;
list-style-type:none;
}

.ce_gallery>ul li {
	float: none;
	margin: 0.25em auto;
	list-style-type:none;
}

a {
color:#111;
}

a:focus,a:active {
color:#555;
text-decoration:none
}

.mod_article [class*="row_"] td,.mod_article [class*="row_"] th {
padding-bottom:4px
}

.mod_article [class*="row_"] label {
margin-bottom:0
}

.mod_article [class*="row_"].row_last td,.mod_article [class*="row_"].row_last th {
padding-bottom:0
}

.mod_article [class*="col_"] {
padding-right:8px
}

.mod_article [class*="col_"] label {
padding-right:0
}

.mod_article [class*="col_"].col_last {
padding-right:0
}

span.mandatory {
padding-left:4px;
color:#e71a3b
}

input.submit {
margin-top:8px
}

.formbody label {
display:inline-block;
min-width:160px;
line-height:29px;
margin-bottom:4px;
padding-right:8px
}

.formbody input.checkbox {
position:relative;
top:5px;
width:19px;
height:19px
}

.toggler {
margin-top:0;
margin-bottom:1em;
padding:1px 0 2px 2px;
background-color:#ccc;
font-weight:bold;
color:#fff
}

.toggler_first {
color:#a84204
}

div.mejs-mediaelement video {
width:640px;
height:auto;
max-width:640px;
margin:0 auto
}

#header .background {
position:relative;
z-index:1;
padding:0 0 1em 0
}

#header .lupe {
text-align:right;
margin-right:5em;
padding-top:1em;
float:right;
}

#footer {
color:#535353;
}

#footer .inside {
max-width:960px;
margin:0 auto
}

#footer .kontakt-text {
margin:1.5em 0.8em 0
}

#footer .footer-link {
float:right;
margin:0 10px 0
}

#footer hr {
margin:1em 0;
border-style:solid;
border-top:1px;
border-color:#cecece
}

#footer .nav-footer {
position:relative;
line-height:2.5;
margin-left:1.5em;
}

#footer .nav-footer ul {
list-style-type:none;
text-align:center;
}

#footer .nav-footer ul li {
float:left;
padding-right:1.5em
}

#footer .nav-footer ul li.last {
padding-right:1.5em;
padding-left:0.7em
}

#footer .nav-footer.first-left ul li.first {
position:absolute;
left:0
}

#footer a {
color:#535353;
text-decoration:none;
}

#footer a:focus,#footer a:active {
color:#efefef
}

.mod_newslist {
margin-top:25px;
box-shadow:1px 1px 4px #cecece
}

.mod_newslist .layout_latest {
position:relative;
margin-bottom:0px;
margin-top:0px;
background-color:#fff
}

.mod_newslist .layout_latest.last {
margin-bottom:0px;
margin-top:0px
}

.mod_newslist .layout_latest .info {
position:absolute;
right:0;
margin:0;
padding:4px 5px 7px 8px;
border-radius:0 0 0 5px;
background-color:#555;
color:#efefef
}

.mod_newslist .layout_latest h2 {
font-size:1em;
font-weight:normal
}

.mod_newslist .layout_latest h2 a {
color:#535353;
text-decoration:none
}

.mod_newslist .layout_latest h2 a::after {
content:" ...";
}

.block-link,
#projekt-petra .block-link {
position:relative;
min-height:24.5em;
margin-bottom:2em;
text-align:center;
line-height:1.5;
font-weight:1;
color:#555;
border-radius:5px
}

.block-link img,
#projekt-petra .block-link img {
display:block
}

.block-link h1,
#projekt-petra .block-link h1 {
margin:0px 10px 1rem;
overflow:hidden;
color:#555;
font-size:1.1em;
text-transform:uppercase;
text-overflow:ellipsis
}

.block-link h1 a,
#projekt-petra .block-link h1 a {
text-decoration:none
}

.block-link h1 a:focus,.block-link h1 a:active,
#projekt-petra .block-link h1 a:focus,#projekt-petra .block-link h1 a:active {
text-decoration:underline
}

.block-link p,
#projekt-petra .block-link p {
margin:0 10px;
font-size:1em;
text-overflow:ellipsis;
overflow:hidden
}

.block-link > p:last-child,
#projekt-petra .block-link > p:last-child {
margin:1rem auto
}

.block-link > p:last-child a,
#projekt-petra .block-link > p:last-child a {
display:inline-block;
padding:0.5rem;
text-transform:uppercase;
text-decoration:none
}

@media (max-width:768px) {
#projekt-petra .block-link {
margin-left:auto;
margin-right:auto
}

}

.shadow,
#projekt-petra .shadow {
background-color:#fff;
box-shadow:2px 2px 8px #333
}

.circle,
#projekt-petra .circle {
position:relative;
top:27px;
width:54px;
height:54px;
border-radius:27px;
margin:-54px auto 0
}

.circle .tri,
#projekt-petra .circle .tri {
position:relative;
left:2px;
width:15px;
height:54px;
line-height:54px;
margin:0 auto;
overflow:hidden
}

.circle .tri .arrow,
#projekt-petra .circle .tri .arrow {
position:relative;
top:4px;
right:11px;
display:inline-block;
width:22px;
height:22px;
transform:rotate(45deg);
background-color:#fff
}

.red .circle,
#projekt-petra .red .circle {
background-color:#bb1530
}

.yellow .circle,
#projekt-petra .yellow .circle {
background-color:#e9b20f
}

.blue .circle,
#projekt-petra .blue .circle {
background-color:#0073b1
}

.mod_eventlist,.mod_newslist,
projekt-petra .mod_eventlist,#projekt-petra .mod_newslist {
box-shadow:2px 2px 8px #333;
background-color:#fff;
border-radius:5px;
margin-right:auto;
padding-bottom:10px;
}

.mod_eventlist h1,.mod_newslist h1,
#projekt-petra .mod_eventlist h1,#projekt-petra .mod_newslist h1 {
margin:10px;
margin:10px;
margin:10px;
font-size:1.2em
}

.mod_eventlist a.more,.mod_newslist a.more,
#projekt-petra .mod_eventlist a.more,#projekt-petra .mod_newslist a.more {
display:inline-block;
margin:0 10px 10px
}

.mod_eventlist .empty,.mod_newslist .empty,
#projekt-petra .mod_eventlist .empty,#projekt-petra .mod_newslist .empty {
margin:0 10px 10px
}

.red a {
color:#bb1530
}

.yellow a {
color:#e9b20f
}

.blue a {
color:#0073b1
}

a.ausleihe {
	color: #00f;
	background-color:	#ccc;
	border: solid 1px #00f;
	padding: 0.25em 1em;
	border-radius: 5px;
}

.mitarbeiter,
table.mitarbeiter {
	border-top: 0;
	border-right: 2px solid #bb1530;
	border-bottom: 2px solid #bb1530;
	border-left: 0;
}

#kontakt_b .mitarbeiter,
#kontakt_b table.mitarbeiter {
	border-top: 0;
	border-right: 2px solid #0073b1;
	border-bottom: 2px solid #0073b1;
	border-left: 0;
}

#kontakt_f .mitarbeiter,
#kontakt_f table.mitarbeiter {
	border-top: 0;
	border-right: 2px solid #e9b20f;
	border-bottom: 2px solid #e9b20f;
	border-left: 0;
}

table.mitarbeiter td {
	border:0;
}

table.mitarbeiter img {
max-width:512px
}

table.mitarbeiter tr td:last-child {
padding-left:10px;
vertical-align:bottom
}

#page {
background:#f7f5f4;
padding-bottom:1em
}

#wrapper {
width:100%;
max-width:1280px
}

.mod_breadcrumb a {
text-decoration:none;
color:#535353;
}

#newsbild {
	background-color: #fff;
	box-shadow: 1px 1px 4px #cecece;
	max-width: 400px;
	margin-left:auto;
	margin-right:auto;
	padding: 2em;
}

.yellow .caption {
	color:#e9b20f;
	text-align:center;
	font-style:italic;
	font-size:1.2em;
}

.mod_eventlist a {
	color:#535353;
}

/* FÃ¼r Mobile GerÃ¤te */
#wrapper {
	width: 100%;
	max-width: 1280px;
}

#wrapper .mitarbeiter img {
	max-width:100%;
}

#header {
	display:inline;
}

#header .headerimage img {
		opacity: 1;
		width:100%;
}

#header .right {
	position: absolute;
	right: 6em;
	top: 1em;
	width:60%;
}

p.logo_kontakt, p.logo_stellen, p.logo_suche, p.logo_suche_1 {
  display:inline;
}

p.logo_kontakt a, p.logo_stellen a, p.logo_suche a, p.logo_suche_1 a {
  color:#535353;
  text-decoration:none;
}

p.logo_kontakt {
  margin-bottom:0em;
  margin-top:1.0em;
  margin-left:1em;
}

p.logo_stellen, p.logo_suche, p.logo_suche_1 {
  color:#535353;
  margin-bottom:0em;
  margin-left:2em;
}

p.logo_suche, p.logo_suche_1 {
  margin-left:1em;
}

.block-link,
#projekt-petra .block-link {
	min-height:18em;
}

#footer .footer-link {
	margin-top:1em;
}

.ce_text.bg_white,
.bg_white tr,
.bg_white div {
	background-color:#fff;
}

.bg_white p strong {
	margin-left:2em;
}

.flexibox.bg_white p strong {
	margin-left:0;
}


.flexibox {
	border-top: 0;
  border-right: 2px solid #bb1530;
  border-bottom: 2px solid #bb1530;
  border-left: 0;
	display: flex;
  flex-wrap:wrap;
	margin-top: 0.625em;
  margin-right: 0.625em;
	margin-bottom: 0.75em;
	margin-left: 0.625em;
}

.flexibox.bg_white {
	background-color:#fff;
	padding-top: 0.625em;
  padding-right: 0.625em;
	padding-bottom: 0.75em;
	padding-left: 0.625em;
}

.flexibox img {
	margin-right:2em;
}

.h1_rand h1 {
	margin-left:0.625em;
}

h1 code {
	font-size: 1.8em;
	text-align:center;
}

/*.tgl_kontakte_flex 
.ui-accordion-content {
	border-top: 0;
  border-right: 2px solid #bb1530;
  border-bottom: 2px solid #bb1530;
  border-left: 0;
}*/

.tgl_kontakte_flex.flexibox {
	border:0;
}

#kein_rand .flexibox.bg_white {
	border:0;
}

body.planung #nav-main,
body.planung #nav-main .level_2,
body.planung #nav-main .level_3 > li,
body.planung #nav-main .level_4 > li,
body.planung #nav-main .mod_navigation
{
	background: #0073b1;
}

body.forschung #nav-main,
body.forschung #nav-main .level_2,
body.forschung #nav-main .level_3 > li,
body.forschung #nav-main .level_4 > li,
body.forschung #nav-main .mod_navigation
{
	background: #e9b20f;
}
  	
/* FÃ¼r Desktop */

@media only screen and (min-width: 1380px) {
	
	#wrapper {
		font-size:1em;
	}
	
	#wrapper .mitarbeiter img {
		max-width:100%;
	}
		
	#header .headerimage {
		margin-top:1px;
	}
	
	#header .headerimage img {
		opacity: 1;
		width:100%;
	}
	
	#header .logo {
		height:4.77em;
		margin: 0 1em 0 1em;
		float:left;
	}
	
	#header .right {
		position: absolute;
		right: 6em;
		top: 1em;
		width:auto;
	}
	
	p.logo_suche {
	    display:block;
	    margin-top:1em;
	    margin-right:5em;
	    font-size:1.2em;
	    font-weight:bold;
	    color:#535353;
	    float:right;
	}
	
	p.logo_suche_1 {
	    display:block;
	    margin-top:1em;
	    margin-right:5em;
	    font-size:1.2em;
	    font-weight:bold;
	    color:#535353;
	    float:left;
	}
  	
  	p.logo_stellen {
	    display:inline-block;
	    margin-top:1em;
	    vertical-align:middle;
	    font-size:1.2em;
	    font-weight:bold;
	    color:#bb1530;
  	}
  	
  	p.logo_stellen a {
  		color:#bb1530;
  	}

  	p.logo_kontakt {
	    display:inline-block;
	    margin-top:1em;
	    margin-left:1em;
	    vertical-align:middle;
	    font-size:1.2em;
	    font-weight:bold;
	    color:#535353;
  	}
  	
  	.block-link,
	#projekt-petra .block-link {
		min-height:18em;
	}
	
	.pflegekinder {
		min-height:28em;
	}
	
	#nur_mobile {
		display:none;
	}
	
	body#top.ma_login * div.ma_logout {
		display: none;
	}
}

div#aktMitteilung {
	border: 4px double #bb1830;
    font-size: 1em;
    padding: 1em 1em 0 1em;
    background-color: #ccc;
}

#top-grid {
	display:grid;
	font-weight: 600;
	justify-items: center;
	background-color: #fff;
	color: #444;
	margin:0 auto 2em auto;
	text-align:center;
}

#top-grid .box {
	background-color: #ddd;
	color: #bb1830;
	border-right:2px solid #bb1830;
	border-bottom:2px solid #bb1830;
	border-radius: 5px;
	padding: 1em;
	font-size: 100%;
	text-align:center;
	vertical-align:middle;
	min-height:3em;
	min-width:24em;
}

button.textRot:disabled {
	background-color: #ddd;
	color: #333;
	border-color:#333;
	cursor: not-allowed;
}

.owl-item.active {
	opacity: 40%;
}

.owl-item.active img {
	padding:50px;
}

.owl-item.active.center {
	opacity: 100%;
}

.owl-item.active.center img {
	padding:0px;
}

.row {
	display: grid;
}

/* breakpoints.css */
@media only screen and (max-width: 1023px) {
	#nav-main {
		font-size:0.7em;
		margin-top:80px;
		overflow:hidden;
	}
	#nav-main  a,
	#nav-main strong {
		margin:0 0.5em
	}
	#header .logo {
		float:left
	}
	#nav-main.naviZeileZwei {
		margin-top:0;
	}
}

@media only screen and (min-width: 1024px ) {
	#nav-main {
		font-size:0.8em;
		margin-top:80px
	}
	#nav-main  a,
	#nav-main strong {
		margin:0 0.5em
	}
	#header .logo {
		float:left
	}
	#nav-main.naviZeileZwei {
		margin-top:0;
	}
}

@media only screen and (min-width: 1180px ) {
	#nav-main {
		font-size:0.9em;
		margin-top:80px
	}
	#nav-main  a,
	#nav-main strong {
		margin:0 0.5em
	}
	#header .logo {
		float:left
	}
	#nav-main.naviZeileZwei {
		margin-top:0;
	}
}

@media only screen and (min-width: 1380px ) {
	#nav-main {
		font-size:1em;
		margin-top:80px;
		border: 5px dashed aqua
	}
	#nav-main  a,
	#nav-main strong {
		margin:0 1em
	}
	#nav-main.naviZeileZwei {
		margin-top:0;
	}
}

/* multirange.css */
input[type=range] {
  -webkit-appearance: none;
  margin: 5px 0;
  width: 100%;
	cursor: pointer;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 4.2px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  background: #3071a9;
  border-radius: 1.3px;
  border: 0.2px solid #010101;
}
input[type=range]::-webkit-slider-thumb {
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  border: 1px solid #000000;
  height: 15px;
  width: 5px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -14px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: #367ebd;
}
input[type=range]::-moz-range-track {
  width: 100%;
  height: 4.2px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  background: #3071a9;
  border-radius: 1.3px;
  border: 0.2px solid #010101;
}
input[type=range]::-moz-range-thumb {
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  border: 1px solid #000000;
  height: 15px;
  width: 5px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
}
input[type=range]::-ms-track {
  width: 100%;
  height: 4.2px;
  cursor: pointer;
  animate: 0.2s;
  background: transparent;
  border-color: transparent;
  border-width: 16px 0;
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  background: #2a6495;
  border: 0.2px solid #010101;
  border-radius: 2.6px;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}
input[type=range]::-ms-fill-upper {
  background: #3071a9;
  border: 0.2px solid #010101;
  border-radius: 2.6px;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}
input[type=range]::-ms-thumb {
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  border: 1px solid #000000;
  height: 15px;
  width: 5px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
}
input[type=range]:focus::-ms-fill-lower {
  background: #3071a9;
}
input[type=range]:focus::-ms-fill-upper {
  background: #367ebd;
}

/* Portale.css */
/* Testothek.css */
.links10px{margin-left:1.75em}
a.textGruen{color:#080}
select{padding:0}
.zeileEins{font-size:1.5em;line-height:1.5em;color:#d41542}
#navigation{margin-top:-15px;margin-bottom:15px}
#navigationUnten{margin-top:15px}
#navigation a,#navigationUnten a{margin:0 1px;padding:4px 7px;border:1px solid #e0e0e0;font-weight:bold;text-decoration:none;color:#444}
#navigation a:visited,#navigationUnten a:visited{font-weight:normal;text-decoration:none;color:#507DB4}
#navigation a:hover,#navigation a:active,#navigationUnten a:hover,#navigationUnten a:active{background-color:#F8F8F8;border:1px solid #507DB4;text-decoration:none;color:#737373}
.current{padding:4px 7px;border:1px solid #E0E0E0;color:#444}
.pages{margin-right:15px;padding:4px 7px;border:1px solid #E0E0E0}
.ueberblick td{padding:0 0 2px}
.textBlau{padding:3px 5px;background-color:#ccf;border:1px solid #00f;border-radius:5px;text-decoration:none;color:#00f}
.textGruen{padding:3px 5px;background-color:#cfc;border:1px solid #080;border-radius:5px;text-decoration:none;color:#080}
.textRot{padding:3px 5px;background-color:#fcc;border:1px solid #f00;border-radius:5px;text-decoration:none;color:#f00}
.hg_grau{background-color:#EEE}
th{background-color:#AAA;color:#fff}
td,th{padding:0px 10px}
h2{padding:5px;background-color:#eee;border-top:0px dotted #bb1530;border-right:3px dotted #bb1530;border-bottom:3px dotted #bb1530;border-left:0px dotted #bb1530;font-size:1.2em;font-weight:bold}
.block{padding:10px}
.mod_navigation{padding:5px 10px;background-color:#bb1530;border:1px solid #0073b1;border-collapse:separate;color:#fff}
.mod_navigation a{text-decoration:none;color:#fff}
.mod_navigation ul{display:inline-block;margin-bottom:0}
.mod_navigation li{display:inline-block;margin-right:10px;margin-left:10px}
code{font-family:Arial;line-height:1.2em}
input#suche{width:25em}
#wrapper{background-color:#FFF}

/* Portale.css */
@media only screen {
	.widget {
		margin-bottom:0
	}
	.example-print {
		display:none
	}
	.h2_u1 {
		background-color:#ccc
	}
	form br {
		height:0px;
		display:none
	}
}

#navigationUnten {
	margin-top:15px
}
#navigation a,#navigationUnten a {
	margin:0 1px;
	padding:4px 7px;
	border:1px solid #e0e0e0;
	font-weight:bold;
	text-decoration:none;
	color:#444
}
#navigation a:visited,#navigationUnten a:visited {
	font-weight:normal;
	text-decoration:none;
	color:#507DB4
}
#navigation a:hover,#navigation a:active,#navigationUnten a:hover,#navigationUnten a:active {
	background-color:#F8F8F8;
	border:1px solid #507DB4;
	text-decoration:none;
	color:#737373
}
.current {
	padding:4px 7px;
	border:1px solid #E0E0E0;
	color:#444
}
.pages {
	margin-right:15px;
	padding:4px 7px;
	border:1px solid #E0E0E0
}
.textGelb {
	padding:3px 5px;
	background-color:#e9b20f;
	text-decoration:none;
	color:#000;
	border: 1px solid #DF7401;
    border-radius: 5px;
}
.textBlau select, .textGruen select {
	width:20em
}

.textRot {
	padding:1px 5px;
	background-color:#fcc;
	border:1px solid #f00;
	text-decoration:none;
	color:#f00
}
.zahlRot {
	color:#f00;
	font-weight:bold;
	font-size:1.5em;
}
.zahlGruen {
	color:#0f0;
	font-weight:bold;
	font-size:1.5em;
}
.zahlBlau {
	color:#00f;
	font-weight:bold;
	font-size:1.5em;
}
.zahlViolet {
	color:#00bfff;
	font-weight:bold;
	font-size:1.5em;
}
.hg_grau {
	background-color:#EEE
}
th {
	background-color:#AAA;
	color:#fff;
}
td,th {
	padding:2px 10px;
}
.ueberblick th {
	width:auto;
	padding:5px 10px;
	text-align:center
}
.ueberblick td {
	padding:1px 15px 1px 0;
	text-align:right;
	font-size:11px
}
td.kindername {
	padding-left:10px;
	text-align:left
}
.totals {
	margin-top:5px;
	border-top:1px solid #000;
	font-size:1.2em;
	font-weight:bold
}
h2 {
	margin-top:0;
	padding:5px;
	border:1px solid #000;
	font-size:1.2em;
	font-weight:bold
}
.block {
	padding:10px
}
.mod_article {
	margin-left:25px
}
.mod_navigation {
	padding:5px 10px;
	vertical-align:middle;
	background-color:#bb1530;
	border:1px solid #fff;
	border-collapse:separate;
	font-weight:bold;color:#fff
}
.mod_navigation ul {
	display:inline-block;
	margin-bottom:0
}
.mod_navigation li {
	display:inline-block;
	margin-right:10px;
	margin-left:10px
}
.mod_navigation a {
	text-decoration:none;
	color:#fff
}
td.td_ueberschrift {
	padding:15px 5px 5px;
	text-align:left;
	border-bottom:2px solid #000;
	font-size:1.2em;
	font-weight:bold
}
code {
	font-family:Arial;
	line-height:1.2em
}
input#suche {
	width:20em
}
#wrapper {
	width:100%;
	max-width:1280px;
	background-color:#FFF
}
img {
	display:block;
	margin:0 auto 0 auto;
}
input[type=date] {
	width:11em;
}
input#datum {
	width:15em;
}

a#pdflink {
	color:#00F;
	background-color:#CCF;
}

/* FÃ¼r Dokukkordion*/
.dokuWrapper {
	display: grid;
  grid-template-columns: 90% 10%;
  grid-gap: 10px;
  background-color: #fff;
  color: #444;
}

.dokuBox {
  background-color: #444;
  color: #fff;
  border-radius: 5px;
  padding: 5px;
  font-size: 100%;
}

#bankvollmachten, #dauervorschuesse, #ausweise, #karten, #schluessel, #hardware {
	font-family: Arial;
}

/* Google User Default StyleSheet austricksen */
select[disabled] > option, input:disabled, textarea[disabled] {
    color: black;
}

.ma-anlegen {
	max-width: 1200px;
    text-align: center;
    margin: 20px auto;
}

/* koolreport.css */
table.dataTable th.kr_th.sorting_asc:after, table.dataTable th.kr_th.sorting_desc:after {
	opacity: 1;
}

table.dataTable th.kr_th.sorting:after, table.dataTable th.kr_th.sorting:before {
	opacity: .7;
}

.kr_tr {
	background-color: #FFFFFF;
}
  
.kr_tr:nth-child(2n) {
	background-color: #CCCCCC;
}

.kr_th {
	background-color: blue;
	color: white;
}

.kr_table.dataTable thead .sorting_asc:before, .kr_table.dataTable thead .sorting_desc:after {
  opacity: 100;
  color: white;
}

#telefonVerwaltung,
#telefonVerwaltung .mod_article {
	margin:0px;
}

li.pagination {
    display: inline-block;
    background-color: #f7f5f4;
    border: 1px solid #cecece;
    border-radius: 5px;
}
	
li.pagination a, li.pagination button {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #36a9e1;
    background-color: #fff;
    border: 1px solid #c7cbd5;
	font-weight:400;
}

li.pagination a:hover, li.pagination button:hover {
	text-decoration: none;
	background-color: #eee;
}
	 
ul.pagination {
    margin: 2px 0;
    white-space: nowrap;
    justify-content: flex-end;
}

/* Testothek.css */
.ce_hyperlink {
    margin-bottom:.5em;
    background-color:#eee;
    border-right:2px solid #bb1530;
    border-bottom:2px solid #bb1530;
}
.links10px {
    margin-left:1.75em;
}
a.textGruen {
    color:#080;
}
select {
    padding:0;
}
.zeileEins {
    font-size:1.5em;
    line-height:1.5em;
    color:#d41542;
}
#navigation {
    margin-top:-15px;
    margin-bottom:15px;
}
#navigationTestothek {
    margin-top:15px;
    margin-bottom:15px;
}
#navigationUnten {
    margin-top:15px;
}
#navigation a,
#navigationUnten a {
    margin:0 1px;
    padding:4px 7px;
    border:1px solid #e0e0e0;
    font-weight:bold;
    text-decoration:none;
    color:#444;
}
#navigation a:visited,
#navigationUnten a:visited {
    font-weight:normal;
    text-decoration:none;
    color:#507DB4;
}
#navigation a:hover,
#navigation a:active,
#navigationUnten a:hover,
#navigationUnten a:active {
    background-color:#F8F8F8;
    border:1px solid #507DB4;
    text-decoration:none;
    color:#737373;
}
.current {
    padding:4px 7px;
    border:1px solid #E0E0E0;
    color:#444;
}
.pages {
    margin-right:15px;
    padding:4px 7px;
    border:1px solid #E0E0E0;
}
.ueberblick td {
    padding:0 0 2px;
}
.textBlau {
    padding:3px 5px;
    background-color:#ccf;
    border:1px solid #00f;
    border-radius:5px;
    text-decoration:none;
    color:#00f;
}
.textGruen {
    padding:3px 5px;
    background-color:#cfc;
    border:1px solid #080;
    border-radius:5px;
    text-decoration:none;
    color:#080;
}
.textRot {
    padding:3px 5px;
    background-color:#fcc;
    border:1px solid #f00;
    border-radius:5px;
    text-decoration:none;
    color:#f00;
}
.hg_grau {
    background-color:#EEE;
}
.hg_ez {
    background-color:#F5D0A9;
}
th {
    background-color:#AAA;
    color:#fff;
}
td,
th {
    padding:5px 10px;
}
h2 {
    padding:5px;
    background-color:#eee;
    border-top:0px dotted #bb1530;
    border-right:3px dotted #bb1530;
    border-bottom:3px dotted #bb1530;
    border-left:0px dotted #bb1530;
    font-size:1.2em;
    font-weight:bold;
}
.block {
    padding:10px;
}
.mod_navigation {
    padding:5px 10px;
    background-color:#bb1530;
    border:1px solid #0073b1;
    border-collapse:separate;
    color:#fff;
}
.mod_navigation a {
    text-decoration:none;
    color:#fff;
}
.mod_navigation ul {
    display:inline-block;
    margin-bottom:0;
}
.mod_navigation li {
    display:inline-block;
    margin-right:10px;
    margin-left:10px;
}

code {
    font-family:Arial;
    line-height:1.2em;
}
input#suche {
    width:25em;
}
#wrapper {
    background-color:#FFF;
}

input[type="button"],
input[type="submit"],
input[type="reset"],
button[type="submit"],
form input[type="submit"],
#btnToggle {
  background-image: none;
  border-radius: 4px;
  border-right: 2px solid #444;
  font-size: 1.2em;
  margin: 0.5em 1em;
  border-bottom: 2px solid #444;
  color: #000;
  cursor: pointer;
  padding: 4px 8px;
  text-decoration: none;
}

input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
button[type="submit"]:hover,
#btnToggle:hover {
  background-color: #fff;
}

.wieAkkordeon {
	cursor: pointer;
  color: #fff;
  background: #aaa;
  outline: none;
  padding: 0.5em;
  font-weight: 700;
	border:none;
	margin-left:20px;
	margin-right:20px;
	margin-top:1em;
}

.wieAkkordeon:hover {
	background-color: #bb1530;
}

.wieAkkordeon a {
	color:white;
}

.ce_hyperlink.wieAkkordeon {
	margin-left:20px;
	margin-right:20px;
}