html {
  --grid__columns: 12;
  --grid__gutter: 1.875rem;
}
.row {
  display: grid;
  grid-template-columns: repeat(var(--grid__columns), minmax(0, 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;
}

#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(../../assets/colorbox/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(../../assets/colorbox/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(../../assets/colorbox/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(../../assets/colorbox/images/controls.png) no-repeat top center;width:38px;height:19px;text-indent:-9999px}#cboxClose:hover{background-position:bottom center}
.content-slider{overflow:hidden;visibility:hidden;position:relative}.slider-wrapper{overflow:hidden;position:relative}.slider-wrapper>*{float:left;width:100%;position:relative}.slider-control{height:30px;position:relative}.slider-control a,.slider-control .slider-menu{position:absolute;top:9px;display:inline-block}.slider-control .slider-prev{left:0}.slider-control .slider-next{right:0}.slider-control .slider-menu{top:0;width:50%;left:50%;margin-left:-25%;font-size:27px;text-align:center}.slider-control .slider-menu b{color:#bbb;cursor:pointer}.slider-control .slider-menu b.active{color:#666}
@charset "UTF-8";
html{--color-default: #ff5636;--color-gray-dark: #222;--color-gray: #555;--color-gray-light: #ccc;--color-brand: var(--color-default);--color-highlight: var(--color-brand);--color-page-background: #fff;--color-text: var(--color-gray-dark);--color-text-inverted: var(--color-page-background);--color-error: rgba(255, 0, 0, 1);--color-error-light: rgba(255, 0, 0, 0.5);--base-font-size-xs: 0.875rem;--base-font-size: 1rem;--base-font-size-xl: 1.125rem;--base-line-height: 1.625;--base-font-weight: 400;--base-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
    "Oxygen", "Ubuntu", "Helvetica Neue", Arial, sans-serif;--base-spacing-unit: 1rem;--base-spacing-unit-xs: calc(var(--base-spacing-unit) / 4);--base-spacing-unit-sm: calc(var(--base-spacing-unit) / 2);--base-spacing-unit-lg: calc(var(--base-spacing-unit) * 2);--base-spacing-unit-xl: calc(var(--base-spacing-unit) * 4);--base-border-radius: 4px;--base-border-width: 1px;--base-border-color: var(--color-gray-light);--base-border: var(--base-border-width) solid var(--base-border-color);--grid-columns: 12;--grid-gutter: 1.875rem;--grid-gutter-half: calc(var(--grid-gutter) / 2);--layout-spacing-sides: var(--base-spacing-unit);--layout-wrapper-background: transparent;--layout-header-background: var(--color-page-background);--layout-header-color: var(--color-text);--layout-footer-background: transparent;--layout-footer-color: var(--color-text);--article-spacing-sides: var(--grid-gutter-half);--article-spacing-top: var(--base-spacing-unit);--article-spacing-bottom: var(--base-spacing-unit);--headings-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Roboto", "Oxygen", "Ubuntu", "Helvetica Neue", Arial, sans-serif;--headings-font-weight: 700;--headings-color: "currentColor";--h1-font-family: var(--headings-font-family);--h1-font-weight: var(--headings-font-weight);--h1-color: var(--headings-color);--h1-font-size: 2rem;--h1-font-size-sm: 2rem;--h1-font-size-md: 2.25rem;--h1-font-size-lg: 2.25rem;--h1-font-size-xl: 2.25rem;--h1-line-height: 1.55;--h1-spacing-top: 0;--h1-spacing-bottom: 0.5rem;--h2-font-family: var(--headings-font-family);--h2-font-weight: var(--headings-font-weight);--h2-color: var(--headings-color);--h2-font-size: 1.625rem;--h2-font-size-sm: 1.625rem;--h2-font-size-md: 1.75rem;--h2-font-size-lg: 1.75rem;--h2-font-size-xl: 1.75rem;--h2-line-height: 1.5;--h2-spacing-top: 0;--h2-spacing-bottom: 0.5rem;--h3-font-family: var(--headings-font-family);--h3-font-weight: var(--headings-font-weight);--h3-color: var(--headings-color);--h3-font-size: 1.375rem;--h3-font-size-sm: 1.375rem;--h3-font-size-md: 1.5rem;--h3-font-size-lg: 1.5rem;--h3-font-size-xl: 1.5rem;--h3-line-height: 1.25;--h3-spacing-top: 0;--h3-spacing-bottom: 0.5rem;--h4-font-family: var(--headings-font-family);--h4-font-weight: var(--headings-font-weight);--h4-color: var(--headings-color);--h4-font-size: 1.125rem;--h4-font-size-sm: 1.125rem;--h4-font-size-md: 1.25rem;--h4-font-size-lg: 1.25rem;--h4-font-size-xl: 1.25rem;--h4-line-height: 1;--h4-spacing-top: 0;--h4-spacing-bottom: 0.5rem;--h5-font-family: var(--headings-font-family);--h5-font-weight: var(--headings-font-weight);--h5-color: var(--headings-color);--h5-font-size: 1rem;--h5-font-size-sm: 1rem;--h5-font-size-md: 1rem;--h5-font-size-lg: 1rem;--h5-font-size-xl: 1rem;--h5-line-height: 1;--h5-spacing-top: 0;--h5-spacing-bottom: 0.5rem;--h6-font-family: var(--headings-font-family);--h6-font-weight: var(--headings-font-weight);--h6-color: var(--headings-color);--h6-font-size: 0.875rem;--h6-font-size-sm: 0.875rem;--h6-font-size-md: 0.875rem;--h6-font-size-lg: 0.875rem;--h6-font-size-xl: 0.875rem;--h6-line-height: 1;--h6-spacing-top: 0;--h6-spacing-bottom: 0.5rem;--paragraph-link-color: var(--links-color);--paragraph-link-decoration: underline;--paragraph-link-decoration-hover: none;--code-color: var(--color-highlight);--selection-background: var(--color-brand);--pre-color-background: var(--color-gray);--pre-color: var(--color-text-inverted);--selection-color: var(--color-text-inverted);--hr-border: var(--base-border);--gallery-gutter: var(--grid-gutter);--gallery-gutter-half: calc(var(--gallery-gutter) / 2);--links-color: var(--color-highlight);--links-color-hover: var(--color-highlight);--links-color-visited: var(--links-color);--links-outline-focus: 2px dotted
    var(--links-outline-color, var(--color-highlight));--links-outline-active: none;--button-color: var(--color-text-inverted);--button-background: var(--color-highlight);--button-color-hover: var(--button-color);--button-background-hover: var(--color-highlight);--button-spacing: var(--base-spacing-unit-sm) var(--base-spacing-unit);--button-border-radius: var(--base-border-radius);--button-border-width: var(--base-border-width);--button-font-family: var(--base-font-family);--button-font-weight: 400;--button-font-size: var(--base-font-size);--button-line-height: var(--base-line-height);--nav-item-padding: var(--base-spacing-unit);--slider-arrow-color: inherit;--slider-arrow-size: 2rem;--slider-arrow-font-family: "Arial";--slider-menu-point-size: 2rem;--slider-menu-point-color: inherit;--slider-menu-point-color-active: var(--color-brand);--news-grid-columns-sm: 2;--news-grid-columns-md: 2;--news-grid-columns-lg: 3;--news-grid-columns-xl: 3;--news-border: var(--base-border);--events-grid-columns-sm: 1;--events-grid-columns-md: 2;--events-grid-columns-lg: 3;--events-grid-columns-xl: 3;--forms-input-border-width: var(--base-border-width);--forms-input-border-radius: var(--base-border-radius);--forms-input-border-color: rgba(0, 0, 0, 0.25);--forms-input-background: var(--color-page-background);--forms-input-line-height: normal;--forms-mandatory-color: var(--color-brand);--accordion-spacing: var(--base-spacing-unit);--accordion-content-spacing: var(--base-spacing-unit-sm);--accordion-content-background: var(--color-gray-light);--accordion-toggler-font-size: 1.5rem;--accordion-toggler-background: var(--color-highlight);--accordion-toggler-color: var(--color-text-inverted);--accordion-toggler-color-hover: var(--color-brand-primary);--accordion-toggler-spacing: var(--base-spacing-unit-xs);--accordion-toggler-border: 2px solid transparent;--download-link-color: inherit;--download-link-decoration: none;--table-border-width: 1px;--table-border-style: solid;--table-border-color: #ccc;--table-background-light: #eee;--newsletter-list-border: var(--base-border);--newsletter-reader-width: 600px;--newsletter-reader-border: var(--base-border);--faq-border: var(--base-border);--search-relevance-color: var(--color-gray);--search-url-color: var(--color-gray)}:root{--color-gray-dark: #555555;--color-gray: #46465d;--color-gray-light: #cfd8dc;--color-gray-lighter: #fafcff;--color-purple-dark: #9041ff;--color-purple: #9a5be8;--color-purple-light: #8860c7;--color-purple-lighter: rgba(191, 108, 255, 0.075);--color-teal-dark: hsl(166deg, 72%, 38%);--color-teal: hsl(166deg, 72%, 48%);--color-tint: var(--color-purple-lighter);--color-brand-primary: #9B8651;--color-brand-primary-light: #F9F7F3;--color-brand-primary-dark: #F4F0E8;--color-brand-secondary: #003f5b;--color-brand-secondary-dark: #003f5b;--color-brand: var(--color-brand-primary);--color-highlight: var(--color-secondary);--color-page-background: #fff;--color-text: var(--color-gray-dark);--color-text-light: var(--color-gray-light);--base-font-size-lg: 1.125rem;--base-font-size-xl: 1.25rem;--base-line-height: 1.625;--base-font-family-1: "-apple-system", "BlinkMacSystemFont", "Segoe UI",
    "Roboto", "Oxygen", "Ubuntu", "Helvetica Neue", arial, sans-serif;--base-font-family: var(--base-font-family-1);--base-border-radius: 5px;--base-border-width: 1px;--base-border-color: var(--color-gray-light);--base-box-shadow: 0 10px 40px 0 rgba(50, 50, 50, 0.25);--grid-gutter: 1rem;--grid-gutter-half: calc(var(--grid-gutter) / 2);--headings-font-family: var(--base-font-family-1);--headings-font-weight: 600;--h1-font-size: 1.75rem;--h1-font-size-sm: 1.75rem;--h1-font-size-md: 2.125rem;--h1-font-size-lg: 2.125rem;--h1-font-size-xl: 2.25rem;--h1-line-height: 1.25;--h1-spacing-top: 0;--h1-spacing-bottom: 1.5rem;--h2-font-size: 1.625rem;--h2-font-size-sm: 1.625rem;--h2-font-size-md: 1.75rem;--h2-font-size-lg: 1.75rem;--h2-font-size-xl: 1.875rem;--h2-line-height: 1.25;--h2-spacing-top: 0;--h2-spacing-bottom: 1.5rem;--h3-font-size: 1.375rem;--h3-font-size-sm: 1.375rem;--h3-font-size-md: 1.5rem;--h3-font-size-lg: 1.5rem;--h3-font-size-xl: 1.5rem;--h3-line-height: 1.25;--h3-spacing-top: 0;--h3-spacing-bottom: 1rem;--h4-font-size: 1.125rem;--h4-font-size-sm: 1.125rem;--h4-font-size-md: 1.25rem;--h4-font-size-lg: 1.25rem;--h4-font-size-xl: 1.25rem;--h4-line-height: 1.25;--h4-spacing-top: 0;--h4-spacing-bottom: 0.5rem;--h5-font-size: 1rem;--h5-font-size-sm: 1rem;--h5-font-size-md: 1rem;--h5-font-size-lg: 1rem;--h5-font-size-xl: 1rem;--h5-line-height: 1.25;--h5-spacing-top: 0;--h5-spacing-bottom: 0.5rem;--h6-font-size: 0.875rem;--h6-font-size-sm: 0.875rem;--h6-font-size-md: 0.875rem;--h6-font-size-lg: 0.875rem;--h6-font-size-xl: 0.875rem;--h6-line-height: 1.25;--h6-spacing-top: 0;--h6-spacing-bottom: 0;--alert-text: var(--color-brand-primary);--alert-border: var(--color-brand-primary);--paragraph-link-color: var(--links-color);--paragraph-link-decoration: underline;--paragraph-link-decoration-hover: none;--code-background: var(--color-gray-light);--code-color: var(--color-highlight);--pre-color-background: var(--color-gray-light);--pre-color: var(--color-text);--layout-header-background: var(--color-page-background);--layout-header-color: var(--color-text);--layout-footer-background: transparent;--layout-footer-color: var(--color-text);--article-highlight-background: linear-gradient(
    -165deg,
    var(--color-purple-light),
    var(--color-purple)
  );--article-highlight-color: var(--color-text-inverted);--article-tint-background: var(--color-tint);--article-dark-background: var(--color-gray-dark);--article-dark-color: var(--color-text-inverted);--article-spacing-top: var(--base-spacing-unit-lg);--article-spacing-bottom: var(--base-spacing-unit-lg);--image-border: var(--base-border);--image-caption-padding: var(--base-spacing-unit);--links-color: var(--color-brand-secondary);--links-color-hover: var(--color-brand-secondary-dark);--button-color: var(--color-text-inverted);--button-background: var(--color-brand-primary-dark);--button-background-hover: var(--color-brand-primary);--button-spacing: var(--base-spacing-unit-xs) var(--base-spacing-unit);--button-border-radius: 2rem;--button-shadow-primary: 0 10px 40px 0 rgba(50, 50, 50, 0.25);--button-color-secondary: var(--color-text-inverted);--button-background-secondary: var(--color-brand-secondary);--button-background-secondary-hover: var(--color-brand-secondary-dark);--button-background-highlight: var(--color-text);--button-background-highlight-hover: var(--color-brand-secondary);--button-color-highlight: var(--color-text-inverted);--nav-item-padding: var(--nav-main-item-padding);--nav-main-color: var(--color-text);--nav-main-color-hover: var(--color-text);--nav-main-color-active: var(--color-text);--nav-main-item-padding: 0.5rem;--nav-main-item-padding-sm: 0.25rem;--nav-main-font-size: 25px;--nav-main-font-weight: 400;--nav-mobile-background: var(--color-page-background);--nav-mobile-color: var(--color-text);--nav-mobile-font-size: var(--base-font-size-xl);--nav-icon-width: 1.25rem;--nav-icon-stroke: 2px;--nav-submenu-item-padding: var(--base-spacing-unit-sm);--slider-arrow-color: var(--color-brand);--slider-arrow-size: 2rem;--slider-menu-point-size: 2rem;--slider-menu-point-color: inherit;--slider-menu-point-color-active: var(--color-brand);--slider-arrow-padding: var(--base-spacing-unit-sm);--events-shadow: var(--base-box-shadow);--events-border-radius: var(--base-border-radius);--forms-input-line-height: var(--base-line-height);--accordion-spacing: var(--base-spacing-unit-sm);--accordion-border-radius: var(--base-border-radius);--accordion-toggler-font-size: 1.125rem;--accordion-toggler-background: transparent;--accordion-toggler-color: var(--color-text);--accordion-toggler-color-hover: var(--color-brand-primary);--accordion-toggler-spacing: 0.5rem 0.5rem;--accordion-toggler-border: var(--base-border);--accordion-toggler-icon-size: 1.25;--accordion-toggler-font-weight: 700;--accordion-toggler-border-radius: var(--base-border-radius);--accordion-content-spacing: var(--base-spacing-unit-sm)
    var(--base-spacing-unit-sm) var(--base-spacing-unit);--accordion-content-background: transparent;--accordion-content-border: var(--base-border);--newsletter-list-font-family: var(--headings-font-family);--newsletter-list-font-weight: var(--headings-font-weight);--faq-border: none;--comments-reply-background: var(--color-gray-light);--card-border: var(--base-border);--card-shadow: var(--base-box-shadow);--card-border-radius: var(--base-border-radius);--card-background: var(--color-page-background);--card-padding: var(--base-spacing-unit)}@media screen and (min-width:34.375em){:root{--grid-gutter: 1.875rem}}@media screen and (min-width:58.75em){:root{--article-spacing-top: var(--base-spacing-unit-xl);--article-spacing-bottom: var(--base-spacing-unit-xl)}}/*! normalize.css v4.0.0 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block}audio:not([controls]){display:none;height:0}progress{vertical-align:baseline}template,[hidden]{display:none}a{background-color:transparent}a:active,a:hover{outline-width:0}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:inherit}b,strong{font-weight:bolder}dfn{font-style:italic}h1{font-size:2em;margin:0.67em 0}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}img{border-style:none}svg:not(:root){overflow:hidden}code,kbd,pre,samp{font-family:monospace, monospace;font-size:1em}figure{margin:1em 40px}hr{box-sizing:content-box;height:0;overflow:visible}button,input,select,textarea{font:inherit}optgroup{font-weight:bold}button,input,select{overflow:visible}button,input,select,textarea{margin:0}button,select{text-transform:none}button,[type="button"],[type="reset"],[type="submit"]{cursor:pointer}[disabled]{cursor:default}button,html [type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}button:-moz-focusring,input:-moz-focusring{outline:1px dotted ButtonText}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}textarea{overflow:auto}[type="checkbox"],[type="radio"]{box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield}[type="search"]::-webkit-search-cancel-button,[type="search"]::-webkit-search-decoration{-webkit-appearance:none}.float_left{float:left}.float_right{float:right}.invisible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}html{box-sizing:border-box}*,*:before,*:after{box-sizing:inherit}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:var(--base-spacing-unit-sm)}ul,ol,dl,blockquote,p,address,hr,fieldset,figure,pre{margin-bottom:var(--base-spacing-unit)}ul,ol,dd{margin-left:var(--base-spacing-unit)}.clearfix:after{content:"";display:table;clear:both}a:focus-visible,[tabindex="0"]:focus-visible{outline:var(--links-outline-focus)}a:active,[tabindex="0"]:active{outline:var(--links-outline-active)}a{color:var(--links-color)}a:visited{color:var(--links-color-visited)}:not(p) a{text-decoration:none}figure{margin:0}img{display:block;max-width:100%;height:auto;margin:0 auto}html{font-family:var(--base-font-family, sans-serif);font-size:var(--base-font-size-xs);line-height:var(--base-line-height);font-weight:var(--base-font-weight);background-color:var(--color-page-background);color:var(--color-text);overflow-y:scroll;min-height:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}@media screen and (min-width:34.375em){html{font-size:var(--base-font-size-sm, var(--base-font-size))}}@media screen and (min-width:48em){html{font-size:var(--base-font-size)}}@media screen and (min-width:58.75em){html{font-size:var(--base-font-size-lg, var(--base-font-size))}}@media screen and (min-width:68.75em){html{font-size:var(--base-font-size-xl)}}html{scroll-behavior:smooth}h1,.heading--1.ce_headline,.heading--1.content-headline,.heading--1 h1,.heading--1 h2,.heading--1 h3,.heading--1 h4,.heading--1 h5,.heading--1 h6{font-family:var(--h1-font-family);font-size:var(--h1-font-size);font-weight:var(--h1-font-weight);line-height:var(--h1-line-height);color:var(--h1-color);margin-top:var(--h1-spacing-top);margin-bottom:var(--h1-spacing-bottom)}@media screen and (min-width:34.375em){h1,.heading--1.ce_headline,.heading--1.content-headline,.heading--1 h1,.heading--1 h2,.heading--1 h3,.heading--1 h4,.heading--1 h5,.heading--1 h6{--h1-font-size: var(--h1-font-size-sm)}}@media screen and (min-width:48em){h1,.heading--1.ce_headline,.heading--1.content-headline,.heading--1 h1,.heading--1 h2,.heading--1 h3,.heading--1 h4,.heading--1 h5,.heading--1 h6{--h1-font-size: var(--h1-font-size-md)}}@media screen and (min-width:58.75em){h1,.heading--1.ce_headline,.heading--1.content-headline,.heading--1 h1,.heading--1 h2,.heading--1 h3,.heading--1 h4,.heading--1 h5,.heading--1 h6{--h1-font-size: var(--h1-font-size-lg)}}@media screen and (min-width:68.75em){h1,.heading--1.ce_headline,.heading--1.content-headline,.heading--1 h1,.heading--1 h2,.heading--1 h3,.heading--1 h4,.heading--1 h5,.heading--1 h6{--h1-font-size: var(--h1-font-size-xl)}}h2,.heading--2.ce_headline,.heading--2.content-headline,.heading--2 h1,.heading--2 h2,.heading--2 h3,.heading--2 h4,.heading--2 h5,.heading--2 h6{font-family:var(--h2-font-family);font-size:var(--h2-font-size);font-weight:var(--h2-font-weight);line-height:var(--h2-line-height);color:var(--h2-color);margin-top:var(--h2-spacing-top);margin-bottom:var(--h2-spacing-bottom)}@media screen and (min-width:34.375em){h2,.heading--2.ce_headline,.heading--2.content-headline,.heading--2 h1,.heading--2 h2,.heading--2 h3,.heading--2 h4,.heading--2 h5,.heading--2 h6{--h2-font-size: var(--h2-font-size-sm)}}@media screen and (min-width:48em){h2,.heading--2.ce_headline,.heading--2.content-headline,.heading--2 h1,.heading--2 h2,.heading--2 h3,.heading--2 h4,.heading--2 h5,.heading--2 h6{--h2-font-size: var(--h2-font-size-md)}}@media screen and (min-width:58.75em){h2,.heading--2.ce_headline,.heading--2.content-headline,.heading--2 h1,.heading--2 h2,.heading--2 h3,.heading--2 h4,.heading--2 h5,.heading--2 h6{--h2-font-size: var(--h2-font-size-lg)}}@media screen and (min-width:68.75em){h2,.heading--2.ce_headline,.heading--2.content-headline,.heading--2 h1,.heading--2 h2,.heading--2 h3,.heading--2 h4,.heading--2 h5,.heading--2 h6{--h2-font-size: var(--h2-font-size-xl)}}h3,.heading--3.ce_headline,.heading--3.content-headline,.heading--3 h1,.heading--3 h2,.heading--3 h3,.heading--3 h4,.heading--3 h5,.heading--3 h6{font-family:var(--h3-font-family);font-size:var(--h3-font-size);font-weight:var(--h3-font-weight);line-height:var(--h3-line-height);color:var(--h3-color);margin-top:var(--h3-spacing-top);margin-bottom:var(--h3-spacing-bottom)}@media screen and (min-width:34.375em){h3,.heading--3.ce_headline,.heading--3.content-headline,.heading--3 h1,.heading--3 h2,.heading--3 h3,.heading--3 h4,.heading--3 h5,.heading--3 h6{--h3-font-size: var(--h3-font-size-sm)}}@media screen and (min-width:48em){h3,.heading--3.ce_headline,.heading--3.content-headline,.heading--3 h1,.heading--3 h2,.heading--3 h3,.heading--3 h4,.heading--3 h5,.heading--3 h6{--h3-font-size: var(--h3-font-size-md)}}@media screen and (min-width:58.75em){h3,.heading--3.ce_headline,.heading--3.content-headline,.heading--3 h1,.heading--3 h2,.heading--3 h3,.heading--3 h4,.heading--3 h5,.heading--3 h6{--h3-font-size: var(--h3-font-size-lg)}}@media screen and (min-width:68.75em){h3,.heading--3.ce_headline,.heading--3.content-headline,.heading--3 h1,.heading--3 h2,.heading--3 h3,.heading--3 h4,.heading--3 h5,.heading--3 h6{--h3-font-size: var(--h3-font-size-xl)}}h4,.heading--4.ce_headline,.heading--4.content-headline,.heading--4 h1,.heading--4 h2,.heading--4 h3,.heading--4 h4,.heading--4 h5,.heading--4 h6,.text--alert h1,.text--alert h2,.text--alert h3,.text--alert h4,.text--alert h5,.text--alert h6,.news-list .layout_latest h1,.news-list .layout_latest h2,.news-list .layout_latest h3,.news-list .layout_latest h4,.news-list .layout_latest h5,.news-list .layout_latest h6,.news-list .layout_short h1,.news-list .layout_short h2,.news-list .layout_short h3,.news-list .layout_short h4,.news-list .layout_short h5,.news-list .layout_short h6,.news-list .layout_simple a,.news-grid h1,.news-grid h2,.news-grid h3,.news-grid h4,.news-grid h5,.news-grid h6,.news-grid .layout_simple a,.events-list .layout_list h1,.events-list .layout_list h2,.events-list .layout_list h3,.events-list .layout_list h4,.events-list .layout_list h5,.events-list .layout_list h6,.events-list .layout_teaser h1,.events-list .layout_teaser h2,.events-list .layout_teaser h3,.events-list .layout_teaser h4,.events-list .layout_teaser h5,.events-list .layout_teaser h6,.events-list .layout_upcoming a,.events-grid h1,.events-grid h2,.events-grid h3,.events-grid h4,.events-grid h5,.events-grid h6,.events-grid .layout_upcoming a,.ce_form h1,.ce_form h2,.ce_form h3,.ce_form h4,.ce_form h5,.ce_form h6,.faq-list>h1,.faq-list h2,.faq-list h3,.faq-list h4,.faq-list h5,.faq-list h6,.faq-page article>h1,.faq-page article h2,.faq-page article h3,.faq-page article h4,.faq-page article h5,.faq-page article h6,.card h1,.card h2,.card h3,.card h4,.card h5,.card h6{font-family:var(--h4-font-family);font-size:var(--h4-font-size);font-weight:var(--h4-font-weight);line-height:var(--h4-line-height);color:var(--h4-color);margin-top:var(--h4-spacing-top);margin-bottom:var(--h4-spacing-bottom)}@media screen and (min-width:34.375em){h4,.heading--4.ce_headline,.heading--4.content-headline,.heading--4 h1,.heading--4 h2,.heading--4 h3,.heading--4 h4,.heading--4 h5,.heading--4 h6,.text--alert h1,.text--alert h2,.text--alert h3,.text--alert h4,.text--alert h5,.text--alert h6,.news-list .layout_latest h1,.news-list .layout_latest h2,.news-list .layout_latest h3,.news-list .layout_latest h4,.news-list .layout_latest h5,.news-list .layout_latest h6,.news-list .layout_short h1,.news-list .layout_short h2,.news-list .layout_short h3,.news-list .layout_short h4,.news-list .layout_short h5,.news-list .layout_short h6,.news-list .layout_simple a,.news-grid h1,.news-grid h2,.news-grid h3,.news-grid h4,.news-grid h5,.news-grid h6,.news-grid .layout_simple a,.events-list .layout_list h1,.events-list .layout_list h2,.events-list .layout_list h3,.events-list .layout_list h4,.events-list .layout_list h5,.events-list .layout_list h6,.events-list .layout_teaser h1,.events-list .layout_teaser h2,.events-list .layout_teaser h3,.events-list .layout_teaser h4,.events-list .layout_teaser h5,.events-list .layout_teaser h6,.events-list .layout_upcoming a,.events-grid h1,.events-grid h2,.events-grid h3,.events-grid h4,.events-grid h5,.events-grid h6,.events-grid .layout_upcoming a,.ce_form h1,.ce_form h2,.ce_form h3,.ce_form h4,.ce_form h5,.ce_form h6,.faq-list>h1,.faq-list h2,.faq-list h3,.faq-list h4,.faq-list h5,.faq-list h6,.faq-page article>h1,.faq-page article h2,.faq-page article h3,.faq-page article h4,.faq-page article h5,.faq-page article h6,.card h1,.card h2,.card h3,.card h4,.card h5,.card h6{--h4-font-size: var(--h4-font-size-sm)}}@media screen and (min-width:48em){h4,.heading--4.ce_headline,.heading--4.content-headline,.heading--4 h1,.heading--4 h2,.heading--4 h3,.heading--4 h4,.heading--4 h5,.heading--4 h6,.text--alert h1,.text--alert h2,.text--alert h3,.text--alert h4,.text--alert h5,.text--alert h6,.news-list .layout_latest h1,.news-list .layout_latest h2,.news-list .layout_latest h3,.news-list .layout_latest h4,.news-list .layout_latest h5,.news-list .layout_latest h6,.news-list .layout_short h1,.news-list .layout_short h2,.news-list .layout_short h3,.news-list .layout_short h4,.news-list .layout_short h5,.news-list .layout_short h6,.news-list .layout_simple a,.news-grid h1,.news-grid h2,.news-grid h3,.news-grid h4,.news-grid h5,.news-grid h6,.news-grid .layout_simple a,.events-list .layout_list h1,.events-list .layout_list h2,.events-list .layout_list h3,.events-list .layout_list h4,.events-list .layout_list h5,.events-list .layout_list h6,.events-list .layout_teaser h1,.events-list .layout_teaser h2,.events-list .layout_teaser h3,.events-list .layout_teaser h4,.events-list .layout_teaser h5,.events-list .layout_teaser h6,.events-list .layout_upcoming a,.events-grid h1,.events-grid h2,.events-grid h3,.events-grid h4,.events-grid h5,.events-grid h6,.events-grid .layout_upcoming a,.ce_form h1,.ce_form h2,.ce_form h3,.ce_form h4,.ce_form h5,.ce_form h6,.faq-list>h1,.faq-list h2,.faq-list h3,.faq-list h4,.faq-list h5,.faq-list h6,.faq-page article>h1,.faq-page article h2,.faq-page article h3,.faq-page article h4,.faq-page article h5,.faq-page article h6,.card h1,.card h2,.card h3,.card h4,.card h5,.card h6{--h4-font-size: var(--h4-font-size-md)}}@media screen and (min-width:58.75em){h4,.heading--4.ce_headline,.heading--4.content-headline,.heading--4 h1,.heading--4 h2,.heading--4 h3,.heading--4 h4,.heading--4 h5,.heading--4 h6,.text--alert h1,.text--alert h2,.text--alert h3,.text--alert h4,.text--alert h5,.text--alert h6,.news-list .layout_latest h1,.news-list .layout_latest h2,.news-list .layout_latest h3,.news-list .layout_latest h4,.news-list .layout_latest h5,.news-list .layout_latest h6,.news-list .layout_short h1,.news-list .layout_short h2,.news-list .layout_short h3,.news-list .layout_short h4,.news-list .layout_short h5,.news-list .layout_short h6,.news-list .layout_simple a,.news-grid h1,.news-grid h2,.news-grid h3,.news-grid h4,.news-grid h5,.news-grid h6,.news-grid .layout_simple a,.events-list .layout_list h1,.events-list .layout_list h2,.events-list .layout_list h3,.events-list .layout_list h4,.events-list .layout_list h5,.events-list .layout_list h6,.events-list .layout_teaser h1,.events-list .layout_teaser h2,.events-list .layout_teaser h3,.events-list .layout_teaser h4,.events-list .layout_teaser h5,.events-list .layout_teaser h6,.events-list .layout_upcoming a,.events-grid h1,.events-grid h2,.events-grid h3,.events-grid h4,.events-grid h5,.events-grid h6,.events-grid .layout_upcoming a,.ce_form h1,.ce_form h2,.ce_form h3,.ce_form h4,.ce_form h5,.ce_form h6,.faq-list>h1,.faq-list h2,.faq-list h3,.faq-list h4,.faq-list h5,.faq-list h6,.faq-page article>h1,.faq-page article h2,.faq-page article h3,.faq-page article h4,.faq-page article h5,.faq-page article h6,.card h1,.card h2,.card h3,.card h4,.card h5,.card h6{--h4-font-size: var(--h4-font-size-lg)}}@media screen and (min-width:68.75em){h4,.heading--4.ce_headline,.heading--4.content-headline,.heading--4 h1,.heading--4 h2,.heading--4 h3,.heading--4 h4,.heading--4 h5,.heading--4 h6,.text--alert h1,.text--alert h2,.text--alert h3,.text--alert h4,.text--alert h5,.text--alert h6,.news-list .layout_latest h1,.news-list .layout_latest h2,.news-list .layout_latest h3,.news-list .layout_latest h4,.news-list .layout_latest h5,.news-list .layout_latest h6,.news-list .layout_short h1,.news-list .layout_short h2,.news-list .layout_short h3,.news-list .layout_short h4,.news-list .layout_short h5,.news-list .layout_short h6,.news-list .layout_simple a,.news-grid h1,.news-grid h2,.news-grid h3,.news-grid h4,.news-grid h5,.news-grid h6,.news-grid .layout_simple a,.events-list .layout_list h1,.events-list .layout_list h2,.events-list .layout_list h3,.events-list .layout_list h4,.events-list .layout_list h5,.events-list .layout_list h6,.events-list .layout_teaser h1,.events-list .layout_teaser h2,.events-list .layout_teaser h3,.events-list .layout_teaser h4,.events-list .layout_teaser h5,.events-list .layout_teaser h6,.events-list .layout_upcoming a,.events-grid h1,.events-grid h2,.events-grid h3,.events-grid h4,.events-grid h5,.events-grid h6,.events-grid .layout_upcoming a,.ce_form h1,.ce_form h2,.ce_form h3,.ce_form h4,.ce_form h5,.ce_form h6,.faq-list>h1,.faq-list h2,.faq-list h3,.faq-list h4,.faq-list h5,.faq-list h6,.faq-page article>h1,.faq-page article h2,.faq-page article h3,.faq-page article h4,.faq-page article h5,.faq-page article h6,.card h1,.card h2,.card h3,.card h4,.card h5,.card h6{--h4-font-size: var(--h4-font-size-xl)}}h5,.heading--5.ce_headline,.heading--5.content-headline,.heading--5 h1,.heading--5 h2,.heading--5 h3,.heading--5 h4,.heading--5 h5,.heading--5 h6,.news-list>h1,.news-list>h2,.news-list>h3,.news-list>h4,.news-list>h5,.news-list>h6,.news-menu>h1,.news-menu>h2,.news-menu>h3,.news-menu>h4,.news-menu>h5,.news-menu>h6,.events-list>h1,.events-list>h2,.events-list>h3,.events-list>h4,.events-list>h5,.events-list>h6,.events-list .header,.events-menu>h1,.events-menu>h2,.events-menu>h3,.events-menu>h4,.events-menu>h5,.events-menu>h6,.events-calendar>h1,.events-calendar>h2,.events-calendar>h3,.events-calendar>h4,.events-calendar>h5,.events-calendar>h6,.fact h1,.fact h2,.fact h3,.fact h4,.fact h5,.fact h6{font-family:var(--h5-font-family);font-size:var(--h5-font-size);font-weight:var(--h5-font-weight);line-height:var(--h5-line-height);color:var(--h5-color);margin-top:var(--h5-spacing-top);margin-bottom:var(--h5-spacing-bottom)}@media screen and (min-width:34.375em){h5,.heading--5.ce_headline,.heading--5.content-headline,.heading--5 h1,.heading--5 h2,.heading--5 h3,.heading--5 h4,.heading--5 h5,.heading--5 h6,.news-list>h1,.news-list>h2,.news-list>h3,.news-list>h4,.news-list>h5,.news-list>h6,.news-menu>h1,.news-menu>h2,.news-menu>h3,.news-menu>h4,.news-menu>h5,.news-menu>h6,.events-list>h1,.events-list>h2,.events-list>h3,.events-list>h4,.events-list>h5,.events-list>h6,.events-list .header,.events-menu>h1,.events-menu>h2,.events-menu>h3,.events-menu>h4,.events-menu>h5,.events-menu>h6,.events-calendar>h1,.events-calendar>h2,.events-calendar>h3,.events-calendar>h4,.events-calendar>h5,.events-calendar>h6,.fact h1,.fact h2,.fact h3,.fact h4,.fact h5,.fact h6{--h5-font-size: var(--h5-font-size-sm)}}@media screen and (min-width:48em){h5,.heading--5.ce_headline,.heading--5.content-headline,.heading--5 h1,.heading--5 h2,.heading--5 h3,.heading--5 h4,.heading--5 h5,.heading--5 h6,.news-list>h1,.news-list>h2,.news-list>h3,.news-list>h4,.news-list>h5,.news-list>h6,.news-menu>h1,.news-menu>h2,.news-menu>h3,.news-menu>h4,.news-menu>h5,.news-menu>h6,.events-list>h1,.events-list>h2,.events-list>h3,.events-list>h4,.events-list>h5,.events-list>h6,.events-list .header,.events-menu>h1,.events-menu>h2,.events-menu>h3,.events-menu>h4,.events-menu>h5,.events-menu>h6,.events-calendar>h1,.events-calendar>h2,.events-calendar>h3,.events-calendar>h4,.events-calendar>h5,.events-calendar>h6,.fact h1,.fact h2,.fact h3,.fact h4,.fact h5,.fact h6{--h5-font-size: var(--h5-font-size-md)}}@media screen and (min-width:58.75em){h5,.heading--5.ce_headline,.heading--5.content-headline,.heading--5 h1,.heading--5 h2,.heading--5 h3,.heading--5 h4,.heading--5 h5,.heading--5 h6,.news-list>h1,.news-list>h2,.news-list>h3,.news-list>h4,.news-list>h5,.news-list>h6,.news-menu>h1,.news-menu>h2,.news-menu>h3,.news-menu>h4,.news-menu>h5,.news-menu>h6,.events-list>h1,.events-list>h2,.events-list>h3,.events-list>h4,.events-list>h5,.events-list>h6,.events-list .header,.events-menu>h1,.events-menu>h2,.events-menu>h3,.events-menu>h4,.events-menu>h5,.events-menu>h6,.events-calendar>h1,.events-calendar>h2,.events-calendar>h3,.events-calendar>h4,.events-calendar>h5,.events-calendar>h6,.fact h1,.fact h2,.fact h3,.fact h4,.fact h5,.fact h6{--h5-font-size: var(--h5-font-size-lg)}}@media screen and (min-width:68.75em){h5,.heading--5.ce_headline,.heading--5.content-headline,.heading--5 h1,.heading--5 h2,.heading--5 h3,.heading--5 h4,.heading--5 h5,.heading--5 h6,.news-list>h1,.news-list>h2,.news-list>h3,.news-list>h4,.news-list>h5,.news-list>h6,.news-menu>h1,.news-menu>h2,.news-menu>h3,.news-menu>h4,.news-menu>h5,.news-menu>h6,.events-list>h1,.events-list>h2,.events-list>h3,.events-list>h4,.events-list>h5,.events-list>h6,.events-list .header,.events-menu>h1,.events-menu>h2,.events-menu>h3,.events-menu>h4,.events-menu>h5,.events-menu>h6,.events-calendar>h1,.events-calendar>h2,.events-calendar>h3,.events-calendar>h4,.events-calendar>h5,.events-calendar>h6,.fact h1,.fact h2,.fact h3,.fact h4,.fact h5,.fact h6{--h5-font-size: var(--h5-font-size-xl)}}h6,.heading--6.ce_headline,.heading--6.content-headline,.heading--6 h1,.heading--6 h2,.heading--6 h3,.heading--6 h4,.heading--6 h5,.heading--6 h6{font-family:var(--h6-font-family);font-size:var(--h6-font-size);font-weight:var(--h6-font-weight);line-height:var(--h6-line-height);color:var(--h6-color);margin-top:var(--h6-spacing-top);margin-bottom:var(--h6-spacing-bottom)}@media screen and (min-width:34.375em){h6,.heading--6.ce_headline,.heading--6.content-headline,.heading--6 h1,.heading--6 h2,.heading--6 h3,.heading--6 h4,.heading--6 h5,.heading--6 h6{--h6-font-size: var(--h6-font-size-sm)}}@media screen and (min-width:48em){h6,.heading--6.ce_headline,.heading--6.content-headline,.heading--6 h1,.heading--6 h2,.heading--6 h3,.heading--6 h4,.heading--6 h5,.heading--6 h6{--h6-font-size: var(--h6-font-size-md)}}@media screen and (min-width:58.75em){h6,.heading--6.ce_headline,.heading--6.content-headline,.heading--6 h1,.heading--6 h2,.heading--6 h3,.heading--6 h4,.heading--6 h5,.heading--6 h6{--h6-font-size: var(--h6-font-size-lg)}}@media screen and (min-width:68.75em){h6,.heading--6.ce_headline,.heading--6.content-headline,.heading--6 h1,.heading--6 h2,.heading--6 h3,.heading--6 h4,.heading--6 h5,.heading--6 h6{--h6-font-size: var(--h6-font-size-xl)}}p,ul,ol{margin-top:0}p a,ul a,ol a{text-decoration:var(--paragraph-link-decoration)}p a:hover,ul a:hover,ol a:hover{--paragraph-link-decoration: var(--paragraph-link-decoration-hover)}p:last-child,ul:last-child,ol:last-child{margin-bottom:0}code{color:var(--code-color)}pre{padding:1rem;background:var(--pre-color-background);color:var(--pre-color);overflow-x:scroll}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:var(--hr-border)}.li--block{margin-bottom:1rem}.ce_text,.content-text{margin-bottom:var(--base-spacing-unit)}::selection{background:var(--selection-background);color:var(--selection-color);opacity:1}.heading--left{text-align:left}.heading--center{text-align:center}.heading--right{text-align:right}.text--left{text-align:left}.text--center{text-align:center}.text--right{text-align:right}.text--attention{font-size:1.125rem;line-height:1.5;opacity:75%}@media screen and (min-width:48em){.text--attention{font-size:1.25rem;line-height:1.3;margin-bottom:var(--base-spacing-unit-lg)}}.text--alert{padding:var(--base-spacing-unit);border-radius:var(--base-border-radius);border:2px solid var(--alert-border);color:var(--color-alert)}.content-text+.text--alert h1:first-child,.content-text+.text--alert h2:first-child,.content-text+.text--alert h3:first-child,.content-text+.text--alert h4:first-child,.content-text+.text--alert h5:first-child,.content-text+.text--alert h6:first-child{margin-top:0}@media screen and (min-width:48em){.text--narrow{max-width:75%;margin-left:auto;margin-right:auto}}@media screen and (min-width:58.75em){.text--narrow{max-width:58.3333333333%}}p a:hover,ul a:hover,ol a:hover{--paragraph-link-color: var(--links-color-hover)}ul,ol{padding:0;margin-top:0;margin-left:var(--base-spacing-unit-lg)}.checklist ul{margin-left:0;list-style-type:none}.checklist li{margin-left:2rem;text-indent:-2rem;margin-bottom:var(--base-spacing-unit)}.checklist li::before{content:"✔︎";text-indent:-9999rem;display:inline-block;width:2rem;height:calc(var(--base-line-height) * 1rem);line-height:var(--base-line-height);background:url("/files/theme/img/icons/checkmark.svg") left center / 24px 24px no-repeat;vertical-align:bottom}blockquote{margin:var(--base-spacing-unit) 0}code{background:var(--code-background);display:inline-block;padding-left:4px;padding-right:4px;border-radius:var(--base-border-radius);color:var(--color-text)}pre code{background:none;color:inherit}.row{display:grid;grid-template-columns:repeat(var(--grid-columns), minmax(0, 1fr));column-gap:var(--grid-gutter);grid-auto-columns:1fr}@supports not (display: grid){.row{display:flex;flex-wrap:wrap;margin-left:calc(-1 * var(--grid-gutter) / 2);margin-right:calc(-1 * var(--grid-gutter) / 2)}}.row--gap-y{row-gap:var(--grid-gutter)}.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,.ce_gallery>ul li,.article-xs-1>.inside>*,.article-xs-2>.inside>*,.article-xs-3>.inside>*,.article-xs-4>.inside>*,.article-xs-5>.inside>*,.article-xs-6>.inside>*,.article-xs-7>.inside>*,.article-xs-8>.inside>*,.article-xs-9>.inside>*,.article-xs-10>.inside>*,.article-xs-11>.inside>*,.article-xs-12>.inside>*,.article-sm-1>.inside>*,.article-sm-2>.inside>*,.article-sm-3>.inside>*,.article-sm-4>.inside>*,.article-sm-5>.inside>*,.article-sm-6>.inside>*,.article-sm-7>.inside>*,.article-sm-8>.inside>*,.article-sm-9>.inside>*,.article-sm-10>.inside>*,.article-sm-11>.inside>*,.article-sm-12>.inside>*,.article-md-1>.inside>*,.article-md-2>.inside>*,.article-md-3>.inside>*,.article-md-4>.inside>*,.article-md-5>.inside>*,.article-md-6>.inside>*,.article-md-7>.inside>*,.article-md-8>.inside>*,.article-md-9>.inside>*,.article-md-10>.inside>*,.article-md-11>.inside>*,.article-md-12>.inside>*,.article-lg-1>.inside>*,.article-lg-2>.inside>*,.article-lg-3>.inside>*,.article-lg-4>.inside>*,.article-lg-5>.inside>*,.article-lg-6>.inside>*,.article-lg-7>.inside>*,.article-lg-8>.inside>*,.article-lg-9>.inside>*,.article-lg-10>.inside>*,.article-lg-11>.inside>*,.article-lg-12>.inside>*,.article-xl-1>.inside>*,.article-xl-2>.inside>*,.article-xl-3>.inside>*,.article-xl-4>.inside>*,.article-xl-5>.inside>*,.article-xl-6>.inside>*,.article-xl-7>.inside>*,.article-xl-8>.inside>*,.article-xl-9>.inside>*,.article-xl-10>.inside>*,.article-xl-11>.inside>*,.article-xl-12>.inside>*{display:grid;grid-column:1 / -1;max-width:100%}@supports not (display: grid){.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,.ce_gallery>ul li,.article-xs-1>.inside>*,.article-xs-2>.inside>*,.article-xs-3>.inside>*,.article-xs-4>.inside>*,.article-xs-5>.inside>*,.article-xs-6>.inside>*,.article-xs-7>.inside>*,.article-xs-8>.inside>*,.article-xs-9>.inside>*,.article-xs-10>.inside>*,.article-xs-11>.inside>*,.article-xs-12>.inside>*,.article-sm-1>.inside>*,.article-sm-2>.inside>*,.article-sm-3>.inside>*,.article-sm-4>.inside>*,.article-sm-5>.inside>*,.article-sm-6>.inside>*,.article-sm-7>.inside>*,.article-sm-8>.inside>*,.article-sm-9>.inside>*,.article-sm-10>.inside>*,.article-sm-11>.inside>*,.article-sm-12>.inside>*,.article-md-1>.inside>*,.article-md-2>.inside>*,.article-md-3>.inside>*,.article-md-4>.inside>*,.article-md-5>.inside>*,.article-md-6>.inside>*,.article-md-7>.inside>*,.article-md-8>.inside>*,.article-md-9>.inside>*,.article-md-10>.inside>*,.article-md-11>.inside>*,.article-md-12>.inside>*,.article-lg-1>.inside>*,.article-lg-2>.inside>*,.article-lg-3>.inside>*,.article-lg-4>.inside>*,.article-lg-5>.inside>*,.article-lg-6>.inside>*,.article-lg-7>.inside>*,.article-lg-8>.inside>*,.article-lg-9>.inside>*,.article-lg-10>.inside>*,.article-lg-11>.inside>*,.article-lg-12>.inside>*,.article-xl-1>.inside>*,.article-xl-2>.inside>*,.article-xl-3>.inside>*,.article-xl-4>.inside>*,.article-xl-5>.inside>*,.article-xl-6>.inside>*,.article-xl-7>.inside>*,.article-xl-8>.inside>*,.article-xl-9>.inside>*,.article-xl-10>.inside>*,.article-xl-11>.inside>*,.article-xl-12>.inside>*{padding-left:var(--grid-gutter-half);padding-right:var(--grid-gutter-half)}}.col{grid-column:1 / -1}.col-1{grid-column:span 1 / span 1}@supports not (display: grid){.col-1{width:8.3333333333%}}.row-start-1{grid-row-start:1}.row-span-1{grid-row:span 1 / span 1}.col-2{grid-column:span 2 / span 2}@supports not (display: grid){.col-2{width:16.6666666667%}}.row-start-2{grid-row-start:2}.row-span-2{grid-row:span 2 / span 2}.col-3{grid-column:span 3 / span 3}@supports not (display: grid){.col-3{width:25%}}.row-start-3{grid-row-start:3}.row-span-3{grid-row:span 3 / span 3}.col-4{grid-column:span 4 / span 4}@supports not (display: grid){.col-4{width:33.3333333333%}}.row-start-4{grid-row-start:4}.row-span-4{grid-row:span 4 / span 4}.col-5{grid-column:span 5 / span 5}@supports not (display: grid){.col-5{width:41.6666666667%}}.row-start-5{grid-row-start:5}.row-span-5{grid-row:span 5 / span 5}.col-6{grid-column:span 6 / span 6}@supports not (display: grid){.col-6{width:50%}}.row-start-6{grid-row-start:6}.row-span-6{grid-row:span 6 / span 6}.col-7{grid-column:span 7 / span 7}@supports not (display: grid){.col-7{width:58.3333333333%}}.row-start-7{grid-row-start:7}.row-span-7{grid-row:span 7 / span 7}.col-8{grid-column:span 8 / span 8}@supports not (display: grid){.col-8{width:66.6666666667%}}.row-start-8{grid-row-start:8}.row-span-8{grid-row:span 8 / span 8}.col-9{grid-column:span 9 / span 9}@supports not (display: grid){.col-9{width:75%}}.row-start-9{grid-row-start:9}.row-span-9{grid-row:span 9 / span 9}.col-10{grid-column:span 10 / span 10}@supports not (display: grid){.col-10{width:83.3333333333%}}.row-start-10{grid-row-start:10}.row-span-10{grid-row:span 10 / span 10}.col-11{grid-column:span 11 / span 11}@supports not (display: grid){.col-11{width:91.6666666667%}}.row-start-11{grid-row-start:11}.row-span-11{grid-row:span 11 / span 11}.col-12{grid-column:span 12 / span 12}@supports not (display: grid){.col-12{width:100%}}.row-start-12{grid-row-start:12}.row-span-12{grid-row:span 12 / span 12}@media screen and (min-width:0){.col-xs-1{grid-column:span 1 / span 1}@supports not (display: grid){.col-xs-1{width:8.3333333333%}}.col-xs-2{grid-column:span 2 / span 2}@supports not (display: grid){.col-xs-2{width:16.6666666667%}}.col-xs-3{grid-column:span 3 / span 3}@supports not (display: grid){.col-xs-3{width:25%}}.col-xs-4{grid-column:span 4 / span 4}@supports not (display: grid){.col-xs-4{width:33.3333333333%}}.col-xs-5{grid-column:span 5 / span 5}@supports not (display: grid){.col-xs-5{width:41.6666666667%}}.col-xs-6{grid-column:span 6 / span 6}@supports not (display: grid){.col-xs-6{width:50%}}.col-xs-7{grid-column:span 7 / span 7}@supports not (display: grid){.col-xs-7{width:58.3333333333%}}.col-xs-8{grid-column:span 8 / span 8}@supports not (display: grid){.col-xs-8{width:66.6666666667%}}.col-xs-9{grid-column:span 9 / span 9}@supports not (display: grid){.col-xs-9{width:75%}}.col-xs-10{grid-column:span 10 / span 10}@supports not (display: grid){.col-xs-10{width:83.3333333333%}}.col-xs-11{grid-column:span 11 / span 11}@supports not (display: grid){.col-xs-11{width:91.6666666667%}}.col-xs-12{grid-column:span 12 / span 12}@supports not (display: grid){.col-xs-12{width:100%}}}@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: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:34.375em){.col-sm-1{grid-column:span 1 / span 1}@supports not (display: grid){.col-sm-1{width:8.3333333333%}}.col-sm-2{grid-column:span 2 / span 2}@supports not (display: grid){.col-sm-2{width:16.6666666667%}}.col-sm-3{grid-column:span 3 / span 3}@supports not (display: grid){.col-sm-3{width:25%}}.col-sm-4{grid-column:span 4 / span 4}@supports not (display: grid){.col-sm-4{width:33.3333333333%}}.col-sm-5{grid-column:span 5 / span 5}@supports not (display: grid){.col-sm-5{width:41.6666666667%}}.col-sm-6{grid-column:span 6 / span 6}@supports not (display: grid){.col-sm-6{width:50%}}.col-sm-7{grid-column:span 7 / span 7}@supports not (display: grid){.col-sm-7{width:58.3333333333%}}.col-sm-8{grid-column:span 8 / span 8}@supports not (display: grid){.col-sm-8{width:66.6666666667%}}.col-sm-9{grid-column:span 9 / span 9}@supports not (display: grid){.col-sm-9{width:75%}}.col-sm-10{grid-column:span 10 / span 10}@supports not (display: grid){.col-sm-10{width:83.3333333333%}}.col-sm-11{grid-column:span 11 / span 11}@supports not (display: grid){.col-sm-11{width:91.6666666667%}}.col-sm-12{grid-column:span 12 / span 12}@supports not (display: grid){.col-sm-12{width:100%}}}@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: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:48em){.col-md-1{grid-column:span 1 / span 1}@supports not (display: grid){.col-md-1{width:8.3333333333%}}.col-md-2{grid-column:span 2 / span 2}@supports not (display: grid){.col-md-2{width:16.6666666667%}}.col-md-3{grid-column:span 3 / span 3}@supports not (display: grid){.col-md-3{width:25%}}.col-md-4{grid-column:span 4 / span 4}@supports not (display: grid){.col-md-4{width:33.3333333333%}}.col-md-5{grid-column:span 5 / span 5}@supports not (display: grid){.col-md-5{width:41.6666666667%}}.col-md-6{grid-column:span 6 / span 6}@supports not (display: grid){.col-md-6{width:50%}}.col-md-7{grid-column:span 7 / span 7}@supports not (display: grid){.col-md-7{width:58.3333333333%}}.col-md-8{grid-column:span 8 / span 8}@supports not (display: grid){.col-md-8{width:66.6666666667%}}.col-md-9{grid-column:span 9 / span 9}@supports not (display: grid){.col-md-9{width:75%}}.col-md-10{grid-column:span 10 / span 10}@supports not (display: grid){.col-md-10{width:83.3333333333%}}.col-md-11{grid-column:span 11 / span 11}@supports not (display: grid){.col-md-11{width:91.6666666667%}}.col-md-12{grid-column:span 12 / span 12}@supports not (display: grid){.col-md-12{width:100%}}}@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: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:58.75em){.col-lg-1{grid-column:span 1 / span 1}@supports not (display: grid){.col-lg-1{width:8.3333333333%}}.col-lg-2{grid-column:span 2 / span 2}@supports not (display: grid){.col-lg-2{width:16.6666666667%}}.col-lg-3{grid-column:span 3 / span 3}@supports not (display: grid){.col-lg-3{width:25%}}.col-lg-4{grid-column:span 4 / span 4}@supports not (display: grid){.col-lg-4{width:33.3333333333%}}.col-lg-5{grid-column:span 5 / span 5}@supports not (display: grid){.col-lg-5{width:41.6666666667%}}.col-lg-6{grid-column:span 6 / span 6}@supports not (display: grid){.col-lg-6{width:50%}}.col-lg-7{grid-column:span 7 / span 7}@supports not (display: grid){.col-lg-7{width:58.3333333333%}}.col-lg-8{grid-column:span 8 / span 8}@supports not (display: grid){.col-lg-8{width:66.6666666667%}}.col-lg-9{grid-column:span 9 / span 9}@supports not (display: grid){.col-lg-9{width:75%}}.col-lg-10{grid-column:span 10 / span 10}@supports not (display: grid){.col-lg-10{width:83.3333333333%}}.col-lg-11{grid-column:span 11 / span 11}@supports not (display: grid){.col-lg-11{width:91.6666666667%}}.col-lg-12{grid-column:span 12 / span 12}@supports not (display: grid){.col-lg-12{width:100%}}}@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: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:68.75em){.col-xl-1{grid-column:span 1 / span 1}@supports not (display: grid){.col-xl-1{width:8.3333333333%}}.col-xl-2{grid-column:span 2 / span 2}@supports not (display: grid){.col-xl-2{width:16.6666666667%}}.col-xl-3{grid-column:span 3 / span 3}@supports not (display: grid){.col-xl-3{width:25%}}.col-xl-4{grid-column:span 4 / span 4}@supports not (display: grid){.col-xl-4{width:33.3333333333%}}.col-xl-5{grid-column:span 5 / span 5}@supports not (display: grid){.col-xl-5{width:41.6666666667%}}.col-xl-6{grid-column:span 6 / span 6}@supports not (display: grid){.col-xl-6{width:50%}}.col-xl-7{grid-column:span 7 / span 7}@supports not (display: grid){.col-xl-7{width:58.3333333333%}}.col-xl-8{grid-column:span 8 / span 8}@supports not (display: grid){.col-xl-8{width:66.6666666667%}}.col-xl-9{grid-column:span 9 / span 9}@supports not (display: grid){.col-xl-9{width:75%}}.col-xl-10{grid-column:span 10 / span 10}@supports not (display: grid){.col-xl-10{width:83.3333333333%}}.col-xl-11{grid-column:span 11 / span 11}@supports not (display: grid){.col-xl-11{width:91.6666666667%}}.col-xl-12{grid-column:span 12 / span 12}@supports not (display: grid){.col-xl-12{width:100%}}}@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}}@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}}.justify-start{justify-self:start;text-align:left}.justify-center{justify-self:center;text-align:center}.justify-end{justify-self:end;text-align:right}@media screen and (min-width:0){.justify-xs-start{justify-self:start;text-align:left}.justify-xs-center{justify-self:center;text-align:center}.justify-xs-end{justify-self:end;text-align:right}}@media screen and (min-width:34.375em){.justify-sm-start{justify-self:start;text-align:left}.justify-sm-center{justify-self:center;text-align:center}.justify-sm-end{justify-self:end;text-align:right}}@media screen and (min-width:48em){.justify-md-start{justify-self:start;text-align:left}.justify-md-center{justify-self:center;text-align:center}.justify-md-end{justify-self:end;text-align:right}}@media screen and (min-width:58.75em){.justify-lg-start{justify-self:start;text-align:left}.justify-lg-center{justify-self:center;text-align:center}.justify-lg-end{justify-self:end;text-align:right}}@media screen and (min-width:68.75em){.justify-xl-start{justify-self:start;text-align:left}.justify-xl-center{justify-self:center;text-align:center}.justify-xl-end{justify-self:end;text-align:right}}.align-start{align-self:start}.align-center{align-self:center}.align-end{align-self:end}@media screen and (min-width:0){.align-xs-start{align-self:start}.align-xs-center{align-self:center}.align-xs-end{align-self:end}}@media screen and (min-width:34.375em){.align-sm-start{align-self:start}.align-sm-center{align-self:center}.align-sm-end{align-self:end}}@media screen and (min-width:48em){.align-md-start{align-self:start}.align-md-center{align-self:center}.align-md-end{align-self:end}}@media screen and (min-width:58.75em){.align-lg-start{align-self:start}.align-lg-center{align-self:center}.align-lg-end{align-self:end}}@media screen and (min-width:68.75em){.align-xl-start{align-self:start}.align-xl-center{align-self:center}.align-xl-end{align-self:end}}.row{grid-row-gap:var(--grid-gutter)}.row-start{-ms-flex-item-align:start;align-self:start}.row-center{-ms-flex-line-pack:center;align-content:center}[id="wrapper"]{min-height:100vh;display:grid;grid-template-rows:min-content auto min-content;grid-template-columns:100%;margin-left:auto;margin-right:auto;background:var(--layout-wrapper-background)}[id="header"]{background:var(--layout-header-background);color:var(--layout-header-color)}[id="header"]>.inside{max-width:72em;width:100%;margin-left:auto;margin-right:auto;padding-left:var(--layout-spacing-sides);padding-right:var(--layout-spacing-sides)}[id="footer"]{background:var(--layout-footer-background);color:var(--layout-footer-color)}[id="footer"]>.inside{max-width:72em;width:100%;margin-left:auto;margin-right:auto;padding-left:var(--layout-spacing-sides);padding-right:var(--layout-spacing-sides)}@media screen and (max-width:51.9375em){.html--fixed{overflow:hidden;position:fixed;height:100%;width:100%}}[id="header"] .inside{padding-top:var(--base-spacing-unit);padding-bottom:var(--base-spacing-unit);display:grid;grid-template-columns:auto auto;-webkit-box-align:end;-ms-flex-align:end;align-items:end;position:relative}@supports not (display: grid){[id="header"] .inside{display:-webkit-box;display:-ms-flexbox;display:flex}}[id="header"] html.html--fixed [id="header"] html{pointer-events:none}[id="footer"]{border-top:var(--base-border)}[id="footer"] .inside{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding-top:var(--base-spacing-unit);padding-bottom:var(--base-spacing-unit-xs)}@media screen and (min-width:68.75em){[id="footer"] .inside{padding-top:var(--base-spacing-unit-lg);padding-bottom:var(--base-spacing-unit-sm)}}.mod_article{position:relative}.mod_article>.inside{max-width:72em;width:100%;margin-left:auto;margin-right:auto;padding-left:var(--layout-spacing-sides);padding-right:var(--layout-spacing-sides);padding-top:var(--article-spacing-top);padding-bottom:var(--article-spacing-bottom)}.article--full>.inside{max-width:none;width:100%;margin-left:auto;margin-right:auto;padding-top:0;padding-bottom:0}.article--highlight{background:var(--article-highlight-background);color:var(--article-highlight-color)}.article--highlight a{color:inherit}.article--bubble-left{background-image:url("/files/theme/img/background-bubble-left.svg");background-repeat:no-repeat;background-position:-1% 0}.article--bubble-right{background-image:url("/files/theme/img/background-bubble-right.svg");background-repeat:no-repeat;background-position:100% 0}.article--tint{background-color:var(--article-tint-background);background-repeat:no-repeat;background-position:50% 101%}.article--tint>.inside{padding-top:var(--base-spacing-unit-lg);padding-bottom:var(--base-spacing-unit-lg)}@media screen and (min-width:48em){.article--tint>.inside{padding-top:calc(2 * var(--base-spacing-unit-xl));padding-bottom:calc(2 * var(--base-spacing-unit-xl))}}.article--tint::before,.article--tint::after{content:"";display:block;position:absolute;z-index:1;left:0;right:0;width:100%;height:calc(1.5 * var(--base-spacing-unit-xl));background-repeat:no-repeat;background-position-x:50%;background-size:100% 100%}.article--tint::before{top:0;background-image:url("/files/theme/img/background-bubble-bottom.svg");-webkit-transform:rotate(180deg);transform:rotate(180deg);background-position-y:0}.article--tint::after{background-image:url("/files/theme/img/background-bubble-bottom.svg");bottom:0}.article--tint .inside{position:relative;z-index:1001}.article--dark{background:var(--article-dark-background);color:var(--article-dark-color)}.image--left img{text-align:left;margin-left:0}.image--right img{text-align:right;margin-right:0}.image--center img{text-align:center;margin-left:auto;margin-right:auto}.ce_gallery{margin-bottom:var(--base-spacing-unit)}.ce_gallery>ul{display:grid;grid-template-columns:repeat(12, 1fr);grid-column-gap:var(--grid-gutter);grid-auto-columns:1fr;grid-row-gap:var(--gallery-gutter);padding:0;margin:0;list-style-type:none}@supports not (display: grid){.ce_gallery>ul{display:flex;flex-wrap:wrap;margin-left:calc(-1 * var(--grid-gutter) / 2);margin-right:calc(-1 * var(--grid-gutter) / 2)}}.ce_gallery .cols_2 li{grid-column:1 / -1;grid-column:span 6 / span 6}@supports not (display: grid){.ce_gallery .cols_2 li{padding-left:var(--grid-gutter-half);padding-right:var(--grid-gutter-half)}}@supports not (display: grid){.ce_gallery .cols_2 li{width:50%}}.ce_gallery .cols_3 li{grid-column:1 / -1;grid-column:span 6 / span 6}@supports not (display: grid){.ce_gallery .cols_3 li{padding-left:var(--grid-gutter-half);padding-right:var(--grid-gutter-half)}}@supports not (display: grid){.ce_gallery .cols_3 li{width:50%}}@media screen and (min-width:48em){.ce_gallery .cols_3 li{grid-column:1 / -1;grid-column:span 4 / span 4}@supports not (display: grid){.ce_gallery .cols_3 li{padding-left:var(--grid-gutter-half);padding-right:var(--grid-gutter-half)}}@supports not (display: grid){.ce_gallery .cols_3 li{width:33.3333333333%}}}.ce_gallery .cols_4 li{grid-column:1 / -1;grid-column:span 6 / span 6}@supports not (display: grid){.ce_gallery .cols_4 li{padding-left:var(--grid-gutter-half);padding-right:var(--grid-gutter-half)}}@supports not (display: grid){.ce_gallery .cols_4 li{width:50%}}@media screen and (min-width:48em){.ce_gallery .cols_4 li{grid-column:1 / -1;grid-column:span 3 / span 3}@supports not (display: grid){.ce_gallery .cols_4 li{padding-left:var(--grid-gutter-half);padding-right:var(--grid-gutter-half)}}@supports not (display: grid){.ce_gallery .cols_4 li{width:25%}}}.ce_gallery .cols_5 li{grid-column:1 / -1;grid-column:span 6 / span 6}@supports not (display: grid){.ce_gallery .cols_5 li{padding-left:var(--grid-gutter-half);padding-right:var(--grid-gutter-half)}}@supports not (display: grid){.ce_gallery .cols_5 li{width:50%}}@media screen and (min-width:48em){.ce_gallery .cols_5 li{grid-column:1 / -1;grid-column:span 2 / span 2}@supports not (display: grid){.ce_gallery .cols_5 li{padding-left:var(--grid-gutter-half);padding-right:var(--grid-gutter-half)}}@supports not (display: grid){.ce_gallery .cols_5 li{width:16.6666666667%}}}.ce_gallery .cols_6 li{grid-column:1 / -1;grid-column:span 6 / span 6}@supports not (display: grid){.ce_gallery .cols_6 li{padding-left:var(--grid-gutter-half);padding-right:var(--grid-gutter-half)}}@supports not (display: grid){.ce_gallery .cols_6 li{width:50%}}@media screen and (min-width:48em){.ce_gallery .cols_6 li{grid-column:1 / -1;grid-column:span 2 / span 2}@supports not (display: grid){.ce_gallery .cols_6 li{padding-left:var(--grid-gutter-half);padding-right:var(--grid-gutter-half)}}@supports not (display: grid){.ce_gallery .cols_6 li{width:16.6666666667%}}}.ce_gallery img{display:block}.content-gallery{margin-bottom:var(--base-spacing-unit)}.content-gallery ul{list-style-type:none;margin:0;padding:0}.content-gallery a{text-decoration:none}.content-gallery ul{grid-row-gap:var(--gallery-gutter)}.content-gallery--cols-2 ul{display:grid;grid-template-columns:repeat(2, 1fr);grid-column-gap:var(--grid-gutter);grid-auto-columns:1fr}@supports not (display: grid){.content-gallery--cols-2 ul{display:flex;flex-wrap:wrap;margin-left:calc(-1 * var(--grid-gutter) / 2);margin-right:calc(-1 * var(--grid-gutter) / 2)}}.content-gallery--cols-3 ul{display:grid;grid-template-columns:repeat(2, 1fr);grid-column-gap:var(--grid-gutter);grid-auto-columns:1fr}@supports not (display: grid){.content-gallery--cols-3 ul{display:flex;flex-wrap:wrap;margin-left:calc(-1 * var(--grid-gutter) / 2);margin-right:calc(-1 * var(--grid-gutter) / 2)}}@media screen and (min-width:48em){.content-gallery--cols-3 ul{display:grid;grid-template-columns:repeat(3, 1fr);grid-column-gap:var(--grid-gutter);grid-auto-columns:1fr}@supports not (display: grid){.content-gallery--cols-3 ul{display:flex;flex-wrap:wrap;margin-left:calc(-1 * var(--grid-gutter) / 2);margin-right:calc(-1 * var(--grid-gutter) / 2)}}}.content-gallery--cols-4 ul{display:grid;grid-template-columns:repeat(2, 1fr);grid-column-gap:var(--grid-gutter);grid-auto-columns:1fr}@supports not (display: grid){.content-gallery--cols-4 ul{display:flex;flex-wrap:wrap;margin-left:calc(-1 * var(--grid-gutter) / 2);margin-right:calc(-1 * var(--grid-gutter) / 2)}}@media screen and (min-width:48em){.content-gallery--cols-4 ul{display:grid;grid-template-columns:repeat(4, 1fr);grid-column-gap:var(--grid-gutter);grid-auto-columns:1fr}@supports not (display: grid){.content-gallery--cols-4 ul{display:flex;flex-wrap:wrap;margin-left:calc(-1 * var(--grid-gutter) / 2);margin-right:calc(-1 * var(--grid-gutter) / 2)}}}.content-gallery--cols-5 ul{display:grid;grid-template-columns:repeat(2, 1fr);grid-column-gap:var(--grid-gutter);grid-auto-columns:1fr}@supports not (display: grid){.content-gallery--cols-5 ul{display:flex;flex-wrap:wrap;margin-left:calc(-1 * var(--grid-gutter) / 2);margin-right:calc(-1 * var(--grid-gutter) / 2)}}@media screen and (min-width:48em){.content-gallery--cols-5 ul{display:grid;grid-template-columns:repeat(5, 1fr);grid-column-gap:var(--grid-gutter);grid-auto-columns:1fr}@supports not (display: grid){.content-gallery--cols-5 ul{display:flex;flex-wrap:wrap;margin-left:calc(-1 * var(--grid-gutter) / 2);margin-right:calc(-1 * var(--grid-gutter) / 2)}}}.content-gallery--cols-6 ul{display:grid;grid-template-columns:repeat(3, 1fr);grid-column-gap:var(--grid-gutter);grid-auto-columns:1fr}@supports not (display: grid){.content-gallery--cols-6 ul{display:flex;flex-wrap:wrap;margin-left:calc(-1 * var(--grid-gutter) / 2);margin-right:calc(-1 * var(--grid-gutter) / 2)}}@media screen and (min-width:48em){.content-gallery--cols-6 ul{display:grid;grid-template-columns:repeat(6, 1fr);grid-column-gap:var(--grid-gutter);grid-auto-columns:1fr}@supports not (display: grid){.content-gallery--cols-6 ul{display:flex;flex-wrap:wrap;margin-left:calc(-1 * var(--grid-gutter) / 2);margin-right:calc(-1 * var(--grid-gutter) / 2)}}}.content-gallery img{display:block}.ce_player .video_container,.ce_youtube .video_container{position:relative;padding-bottom:56.25%;width:100%;height:auto}.content-player figure:has(video),.content-player figure:has(iframe),.content-youtube figure:has(video),.content-youtube figure:has(iframe){position:relative;padding-bottom:56.25%;width:100%;height:auto}.ce_player video,.content-player video{border:0;position:absolute;top:0;left:0;right:0;bottom:0;width:100% !important;height:100% !important}.ce_youtube iframe,.ce_youtube a,.content-youtube iframe,.content-youtube a{border:0;position:absolute;top:0;left:0;right:0;bottom:0;width:100% !important;height:100% !important}.ce_youtube button,.content-youtube button{display:grid;grid-template-columns:repeat(3, 1fr);appearance:none;border:none;padding:0}.ce_youtube button img,.content-youtube button img{grid-column:1 / -1;grid-row:1}.ce_youtube button p,.content-youtube button p{grid-column:2;grid-row:1;align-self:center;padding:var(--base-spacing-unit);background:var(--base-overlay-background);color:var(--color-text-inverted)}@supports not (display: grid){.content-image{margin-bottom:var(--grid-gutter)}}.content-image a{display:grid;height:100%;grid-auto-rows:auto 1fr}.content-image img{margin-bottom:0;justify-self:center}.content-image figcaption{width:100%;padding:var(--image-caption-padding);margin-top:0;-ms-hyphens:auto;hyphens:auto;border:var(--image-border);border-top:none}.image--border img{border:var(--image-border)}.ce_text{overflow:visible}.ce_text .float_left,.ce_text .float_right{position:relative;margin-bottom:var(--grid-gutter)}@media screen and (min-width:34.375em){.ce_text .float_left,.ce_text .float_right{max-width:50%;margin-bottom:0}}@media screen and (min-width:34.375em){.ce_text .float_left{margin-right:var(--grid-gutter)}}@media screen and (min-width:34.375em){.ce_text .float_right{margin-left:var(--grid-gutter)}}.ce_text .caption{font-size:var(--base-font-size-xs);font-style:italic}a.btn,span.btn,button.btn,div.btn>a,div.btn>button,.ce_toplink>a,.ce_toplink>button,.toplink>a,.toplink>button,.content-toplink>a,.content-toplink>button,.back a,.news-list .layout_latest .more a,.news-list .layout_short .more a,.news-grid .more a,.events-list .layout_list .more a,.events-list .layout_teaser .more a,.events-grid .more a,input.submit,button.submit,.ce_comments .submit{border-radius:var(--button-border-radius);padding:var(--button-spacing);display:inline-block;border:var(--button-border-width) var(--button-border-style, solid) var(--button-border-color, transparent);font-family:var(--button-font-family);font-weight:var(--button-font-weight);font-size:var(--button-font-size);line-height:var(--button-line-height);text-align:center;background:transparent;color:var(--button-color);background-image:none;white-space:nowrap;text-decoration:none}a.btn--primary,span.btn--primary,button.btn--primary,div.btn--primary>a,div.btn--primary>button,.ce_toplink>a,.ce_toplink>button,.toplink>a,.toplink>button,.content-toplink>a,.content-toplink>button,div.btn--primary a,input.submit,button.submit,.ce_comments .submit{background:var(--button-background);color:var(--button-color)}a.btn--primary:hover,span.btn--primary:hover,button.btn--primary:hover,div.btn--primary>a:hover,div.btn--primary>button:hover,.ce_toplink>a:hover,.ce_toplink>button:hover,.toplink>a:hover,.toplink>button:hover,.content-toplink>a:hover,.content-toplink>button:hover,div.btn--primary a:hover,input.submit:hover,button.submit:hover,.ce_comments .submit:hover{--button-background: var(--button-background-hover);--button-color: var(--button-color-hover)}a.btn,span.btn,button.btn{margin-bottom:var(--base-spacing-unit)}div.btn:not(:last-child),.ce_toplink:not(:last-child),.toplink:not(:last-child),.content-toplink:not(:last-child){margin-bottom:var(--base-spacing-unit)}div.btn--left{text-align:left}div.btn--center{text-align:center}div.btn--right{text-align:right}.btn--floated{float:left;margin-right:var(--base-spacing-unit-xs)}.ce_toplink a,.toplink a,.content-toplink a{text-decoration:none}.back{border-top:var(--base-border);margin-top:var(--base-spacing-unit);padding-top:var(--base-spacing-unit-sm)}.back a{text-decoration:none}a{color:var(--links-color)}a:hover{--links-color: var(--links-color-hover)}a.btn,span.btn,button.btn,div.btn>a,div.btn>button,.ce_toplink>a,.ce_toplink>button,.toplink>a,.toplink>button,.content-toplink>a,.content-toplink>button,.back a,.news-list .layout_latest .more a,.news-list .layout_short .more a,.news-grid .more a,.events-list .layout_list .more a,.events-list .layout_teaser .more a,.events-grid .more a,input.submit,button.submit,.ce_comments .submit{border:none}a.btn--primary,span.btn--primary,button.btn--primary,div.btn--primary>a,div.btn--primary>button,.ce_toplink>a,.ce_toplink>button,.toplink>a,.toplink>button,.content-toplink>a,.content-toplink>button,div.btn--primary a,input.submit,button.submit,.ce_comments .submit{text-decoration:none;-webkit-transition:background-color 0.3s, -webkit-box-shadow 0.3s;transition:background-color 0.3s, -webkit-box-shadow 0.3s;transition:background-color 0.3s, box-shadow 0.3s;transition:background-color 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s}a.btn--primary:hover,span.btn--primary:hover,button.btn--primary:hover,div.btn--primary>a:hover,div.btn--primary>button:hover,.ce_toplink>a:hover,.ce_toplink>button:hover,.toplink>a:hover,.toplink>button:hover,.content-toplink>a:hover,.content-toplink>button:hover,div.btn--primary a:hover,input.submit:hover,button.submit:hover,.ce_comments .submit:hover{-webkit-box-shadow:var(--button-shadow-primary);box-shadow:var(--button-shadow-primary)}p a.btn--primary,p span.btn--primary,p button.btn--primary,p div.btn--primary>a,p div.btn--primary>button,p .ce_toplink>a,p .ce_toplink>button,p .toplink>a,p .toplink>button,p .content-toplink>a,p .content-toplink>button,p div.btn--primary a,div.btn--primary p a,p input.submit,p button.submit,p .ce_comments .submit,.ce_comments p .submit{margin-bottom:0;text-decoration:none}a.btn--secondary,.news-list .layout_latest .more a,.news-list .layout_short .more a,.news-grid .more a,.events-grid .more a,span.btn--secondary,button.btn--secondary,div.btn--secondary a,.back a,.events-list .layout_list .more a,.events-list .layout_teaser .more a,.newsletter-subscribe button.submit,.newsletter-unsubscribe button.submit{border-radius:var(--button-border-radius);color:var(--button-color-secondary);border:var(--button-border-width) solid var(--button-background-secondary);background:var(--button-background-secondary);-webkit-transition:background-color 0.3s;transition:background-color 0.3s}a.btn--secondary:hover,.news-list .layout_latest .more a:hover,.news-list .layout_short .more a:hover,.news-grid .more a:hover,.events-grid .more a:hover,span.btn--secondary:hover,button.btn--secondary:hover,div.btn--secondary a:hover,.back a:hover,.events-list .layout_list .more a:hover,.events-list .layout_teaser .more a:hover,.newsletter-subscribe button.submit:hover,.newsletter-unsubscribe button.submit:hover{--button-background-secondary: var(--button-background-secondary-hover)}p a.btn--secondary,p .news-list .layout_latest .more a,.news-list .layout_latest .more p a,p .news-list .layout_short .more a,.news-list .layout_short .more p a,p .news-grid .more a,.news-grid .more p a,p .events-grid .more a,.events-grid .more p a,p span.btn--secondary,p button.btn--secondary,p div.btn--secondary a,div.btn--secondary p a,p .back a,.back p a,p .events-list .layout_list .more a,.events-list .layout_list .more p a,p .events-list .layout_teaser .more a,.events-list .layout_teaser .more p a,p .newsletter-subscribe button.submit,.newsletter-subscribe p button.submit,p .newsletter-unsubscribe button.submit,.newsletter-unsubscribe p button.submit{margin-bottom:0;text-decoration:none}.article--highlight div.btn--primary a{--button-background: var(--button-background-highlight);--button-color: var(--button-color-highlight)}.article--highlight div.btn--primary a:hover{--button-background: var(--button-background-highlight-hover)}div.btn--secondary a:hover{--button-background-secondary: var(--button-background-secondary-hover)}.nav ul{list-style-type:none;margin:0;padding:0}.nav a{text-decoration:none}.nav--horizontal ul{display:flex;flex-direction:column}@media screen and (min-width:52em){.nav--horizontal ul{flex-direction:row}}.nav--horizontal a,.nav--horizontal strong.active,.nav--horizontal strong.trail,.nav--horizontal strong.forward{display:block;padding:calc(var(--nav-item-padding) / 2) var(--nav-item-padding)}.nav--vertical a,.nav--vertical strong.active,.nav--vertical strong.trail,.nav--vertical strong.forward{display:block;padding:calc(var(--nav-item-padding) / 2) var(--nav-item-padding)}.nav--border{border:var(--base-border)}.nav--border a,.nav--border strong.active,.nav--border strong.trail,.nav--border strong.forward{padding:var(--nav-item-padding) var(--nav-item-padding);border-bottom:1px solid var(--base-border-color)}.nav--border a.last,.nav--border strong.active.last,.nav--border strong.trail.last,.nav--border strong.forward.last{border-bottom:0}.nav--breadcrumb{border:var(--base-border);padding:var(--base-spacing-unit-sm) var(--base-spacing-unit);display:flex}@media screen and (min-width:52em){.nav--breadcrumb{flex-direction:column}}@media screen and (min-width:52em){.nav--breadcrumb li{padding-right:var(--base-spacing-unit)}}.nav--breadcrumb a:after{font-size:0.75rem;display:inline-block;content:"►";vertical-align:middle;padding-left:var(--base-spacing-unit)}.nav--select select{appearance:none;background:transparent;border:var(--base-border);padding:var(--base-spacing-unit-xs) var(--base-spacing-unit-sm)}.nav--select .submit{vertical-align:middle;padding:var(--base-spacing-unit-xs) var(--base-spacing-unit-sm)}.nav--pager ul{text-align:center}.nav--pager li{display:inline-block}.nav--pager .empty{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.nav--pager a{padding:var(--base-spacing-unit-sm)}.pagination{display:grid;grid-column:1 / -1;margin-top:var(--base-spacing-unit);text-align:center;line-height:1}.pagination ul{list-style-type:none;margin:0;padding:0}.pagination a{text-decoration:none}@supports not (display: grid){.pagination{display:flex;flex:1 1 auto;flex-wrap:wrap;justify-content:space-between}}@media screen and (min-width:34.375em){.pagination{grid-template-columns:1fr 1fr}}.pagination p{padding:var(--base-spacing-unit-xs);padding-left:0;margin:var(--base-spacing-unit-xs);margin-left:0;border-top:var(--base-border-width) solid transparent}.pagination li{display:inline}.pagination a,.pagination strong{display:inline-block;padding:var(--base-spacing-unit-xs);margin:var(--base-spacing-unit-xs)}.pagination strong{border:var(--base-border)}.pagination a.next{margin-right:0;padding-right:0}@media screen and (min-width:34.375em){.pagination p{justify-self:start}.pagination p+ul{justify-self:end}}.nav--right{margin-left:auto}.nav--main{line-height:1em;font-size:var(--nav-main-font-size);color:var(--nav-main-color);position:relative}.nav--main a,.nav--main a.trail,.nav--main strong.active,.nav--main strong.trail,.nav--main strong.forward{padding:var(--nav-main-item-padding);text-decoration:none;font-weight:var(--nav-main-font-weight);color:var(--nav-main-color-active)}@media screen and (min-width:52em){.nav--main a,.nav--main a.trail,.nav--main strong.active,.nav--main strong.trail,.nav--main strong.forward{padding:var(--nav-main-item-padding);margin:var(--nav-main-item-padding)}}.nav--main a{color:inherit}.nav--main a:hover{color:var(--nav-main-color-hover)}.nav--main .level_1>li>a,.nav--main .level_1>li>strong{white-space:nowrap}.nav--main .level_2{position:absolute;z-index:1001;right:0;width:100%;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.nav--main .level_2 a,.nav--main .level_2 a.trail,.nav--main .level_2 strong.active,.nav--main .level_2 strong.trail,.nav--main .level_2 strong.forward{display:block;margin-top:0;margin-bottom:0}.nav--main .level_2 a{opacity:75%}.nav--main .level_2 a:hover{opacity:100%}.nav--main .level_3{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}@media screen and (max-width:51.9375em){.nav--mobile{z-index:-1;visibility:hidden;font-size:var(--nav-mobile-font-size);position:fixed;left:0;right:0;top:0;bottom:0;opacity:0%;border-top:var(--base-border);background:var(--nav-mobile-background);padding:var(--grid-gutter);overflow-y:auto;-webkit-overflow-scrolling:touch;-ms-touch-action:touch;touch-action:touch;-ms-overflow-style:none;-webkit-transition:opacity 0.3s, visibility 0.3s 0.3s;transition:opacity 0.3s, visibility 0.3s 0.3s}.nav--mobile .level_1 a,.nav--mobile .level_1 strong{color:var(--nav-mobile-color);text-overflow:ellipsis;overflow:hidden;white-space:nowrap;display:block}.nav--mobile .level_1 strong{color:var(--nav-main-color-active)}.nav--mobile .level_2{position:relative}.nav--mobile .level_2 a::before,.nav--mobile .level_2 strong::before{content:"→";margin-right:var(--base-spacing-unit-xs)}}@media screen and (max-width:51.9375em){.nav--mobile--active{z-index:1004;visibility:visible;opacity:100%;-webkit-transition:opacity 0.3s;transition:opacity 0.3s}}.nav-toggler{justify-self:end;z-index:1002;pointer-events:auto;color:var(--links-color)}@media screen and (min-width:52em){.nav-toggler{display:none}}.nav-toggler__button{background:none;border:none;outline:none;display:inline-block;white-space:nowrap;margin:0;cursor:pointer;color:currentcolor;padding:calc(var(--base-spacing-unit-xs) / 2) var(--base-spacing-unit-xs);line-height:1.5}.nav-toggler__button .menu-icon{position:relative;width:var(--nav-icon-width);height:1.5rem;display:inline-block;vertical-align:middle}.nav-toggler__button .menu-icon__inner{width:100%;background-color:currentcolor;position:absolute;left:0;top:40%;margin-top:calc(var(--nav-icon-stroke) / -2);height:var(--nav-icon-stroke);-webkit-transition:-webkit-transform 0.15s ease;transition:-webkit-transform 0.15s ease;transition:transform 0.15s ease;transition:transform 0.15s ease, -webkit-transform 0.15s ease}.nav-toggler__button .menu-icon__inner::after,.nav-toggler__button .menu-icon__inner::before{background-color:currentcolor;position:absolute;display:block;content:"";width:100%;height:var(--nav-icon-stroke);-webkit-transition:opacity 0.15s, -webkit-transform 0.15s ease;transition:opacity 0.15s, -webkit-transform 0.15s ease;transition:transform 0.15s ease, opacity 0.15s;transition:transform 0.15s ease, opacity 0.15s, -webkit-transform 0.15s ease}.nav-toggler__button .menu-icon__inner::before{top:-6px}.nav-toggler__button .menu-icon__inner::after{bottom:-6px}.html--fixed .nav-toggler__button .menu-icon__inner{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.html--fixed .nav-toggler__button .menu-icon__inner::before{opacity:0%}.html--fixed .nav-toggler__button .menu-icon__inner::after{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);bottom:0}.nav-toggler__button .menu-label{display:inline-block;margin-left:var(--base-spacing-unit-xs);font-size:var(--base-font-size-xl)}.nav--sub{margin-bottom:var(--base-spacing-unit-lg);font-size:var(--base-font-size-xs);position:relative;z-index:1000}.nav--sub::after{content:"";border-bottom:var(--base-border);display:block;left:0;right:0;position:absolute;z-index:-1;bottom:0}.nav--sub ul{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:nowrap;flex-wrap:nowrap;overflow-x:scroll;-webkit-overflow-scrolling:touch;-ms-touch-action:auto;touch-action:auto;-ms-overflow-style:none}.nav--sub li{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;white-space:nowrap;position:relative;z-index:1001;text-align:center}.nav--sub li.active,.nav--sub li.trail{border-bottom:var(--base-border-width) solid currentcolor}.nav--sub li:hover{border-bottom:var(--base-border-width) solid var(--links-color-hover)}.nav--sub a,.nav--sub strong.active,.nav--sub strong.trail{color:inherit;padding:var(--nav-submenu-item-padding)}.nav--sub a:hover{color:var(--links-color-hover)}.nav--meta{justify-self:start;font-family:var(--nav-main-font);font-weight:var(--nav-main-font-weight);font-size:var(--base-font-size-xs)}.nav--meta ul{display:grid;grid-column-gap:var(--grid-gutter-half)}@media screen and (min-width:48em){.nav--meta ul{grid-template-columns:repeat(2, 1fr)}}.nav--meta .level_1>li>a,.nav--meta .level_1>li>strong.active,.nav--meta .level_1>li>strong.trail{font-weight:600;display:block}.nav--meta a,.nav--meta strong.active,.nav--meta strong.trail{padding:0 var(--base-spacing-unit-sm);text-decoration:none;color:inherit;font-weight:normal;padding-left:0}.nav--meta a.last,.nav--meta strong.active.last,.nav--meta strong.trail.last{padding-right:0}.nav--meta+.nav--meta{justify-self:end;text-align:right}.content-swiper .swiper-button-prev,.content-swiper .swiper-button-next{border:none;background:transparent;appearance:none}.slider{position:relative}.slider .slider-control{position:static;height:0}.slider .slider-control a{position:relative;top:50%;transform:translateY(-50%);font-size:var(--slider-arrow-size);line-height:1;position:absolute;display:block;color:var(--slider-arrow-color);font-family:var(--slider-arrow-font-family)}.slider .slider-control a:before{padding:var(--base-spacing-unit-sm);display:block}.slider .slider-control a:hover{opacity:0.5}.slider .slider-prev:before{content:"◄"}.slider .slider-next:before{content:"►"}.slider .slider-menu{font-size:var(--slider-menu-point-size);line-height:1;top:auto;bottom:0}.slider .slider-menu b{color:var(--slider-menu-point-color)}.slider .slider-menu b.active{color:var(--slider-menu-point-color-active)}.slider .slider-menu b:hover{opacity:0.5}.slider .slider-wrapper>*{margin-bottom:0}.slider .slider-control a{width:calc(var(--slider-arrow-size) + var(--slider-arrow-padding) * 2);height:calc(var(--slider-arrow-size) + var(--slider-arrow-padding) * 2);overflow:hidden;font-family:var(--base-font-family)}.slider .slider-prev::before{content:"←"}.slider .slider-next::before{content:"→"}.slider .slider-menu{font-size:var(--slider-menu-point-size)}.news-list{margin-bottom:var(--base-spacing-unit)}.news-list>h1,.news-list>h2,.news-list>h3,.news-list>h4,.news-list>h5,.news-list>h6{margin-bottom:0}.news-list .info{margin-bottom:0}.news-list .float_left{margin-right:var(--base-spacing-unit)}.news-list .float_right{margin-left:var(--base-spacing-unit)}.news-list .layout_short>h1,.news-list .layout_short>h2,.news-list .layout_short>h3,.news-list .layout_short>h4,.news-list .layout_short>h5,.news-list .layout_short>h6,.news-list .layout_latest>h1,.news-list .layout_latest>h2,.news-list .layout_latest>h3,.news-list .layout_latest>h4,.news-list .layout_latest>h5,.news-list .layout_latest>h6,.news-list .layout_simple>h1,.news-list .layout_simple>h2,.news-list .layout_simple>h3,.news-list .layout_simple>h4,.news-list .layout_simple>h5,.news-list .layout_simple>h6{margin-top:var(--base-spacing-unit)}.news-list .layout_simple time,.news-list .layout_simple a,.news-list .layout_upcoming time,.news-list .layout_upcoming a{padding-top:var(--base-spacing-unit);display:inline-block}.news-list .header{margin-top:var(--base-spacing-unit)}.news-grid{display:grid;grid-gap:var(--grid-gutter);margin-bottom:var(--base-spacing-unit);margin-bottom:var(--base-spacing-unit)}@media screen and (min-width:34.375em){.news-grid{grid-template-columns:repeat(var(--news-grid-columns-sm), 1fr)}}@media screen and (min-width:48em){.news-grid{grid-template-columns:repeat(var(--news-grid-columns-md), 1fr)}}@media screen and (min-width:58.75em){.news-grid{grid-template-columns:repeat(var(--news-grid-columns-lg), 1fr)}}@media screen and (min-width:68.75em){.news-grid{grid-template-columns:repeat(var(--news-grid-columns-xl), 1fr)}}.news-grid>h1,.news-grid>h2,.news-grid>h3,.news-grid>h4,.news-grid>h5,.news-grid>h6{grid-column:1 / -1}.news-grid .layout_simple time{display:block}.news-menu ul{list-style-type:none;margin:0;padding:0}.news-menu a{text-decoration:none}.news-menu .year{margin-bottom:var(--base-spacing-unit-sm)}.news-menu .year>a,.news-menu .year>.active{color:inherit;font-weight:var(--headings-font-weight);font-family:var(--headings-font-family)}.news-menu .level_2 li{margin-bottom:var(--base-spacing-unit-xs)}.news-list{display:grid;grid-row-gap:var(--grid-gutter);margin-bottom:var(--grid-gutter)}.news-list>h1,.news-list>h2,.news-list>h3,.news-list>h4,.news-list>h5,.news-list>h6{margin-bottom:var(--base-spacing-unit-sm)}.news-list .layout_latest{border:var(--card-border);border-radius:var(--card-border-radius);background:var(--card-background);padding:var(--card-padding);-webkit-transition:-webkit-box-shadow 0.3s, -webkit-transform 0.6s;transition:-webkit-box-shadow 0.3s, -webkit-transform 0.6s;transition:box-shadow 0.3s, transform 0.6s;transition:box-shadow 0.3s, transform 0.6s, -webkit-box-shadow 0.3s, -webkit-transform 0.6s;display:grid}.news-list .layout_latest:hover{-webkit-box-shadow:var(--card-shadow);box-shadow:var(--card-shadow);-webkit-transform:translate3d(0, -4px, 0);transform:translate3d(0, -4px, 0)}@media screen and (min-width:48em){.news-list .layout_latest{display:grid;grid-template-columns:repeat(12, 1fr);grid-column-gap:var(--grid-gutter);grid-auto-columns:1fr;grid-template-rows:-webkit-min-content -webkit-min-content 1fr -webkit-min-content;grid-template-rows:min-content min-content 1fr min-content}@supports not (display: grid){.news-list .layout_latest{display:flex;flex-wrap:wrap;margin-left:calc(-1 * var(--grid-gutter) / 2);margin-right:calc(-1 * var(--grid-gutter) / 2)}}}.news-list .layout_latest .image_container{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}@media screen and (min-width:48em){.news-list .layout_latest .image_container{grid-column:1 / -1;grid-column:span 6 / span 6;grid-row:span 4}@supports not (display: grid){.news-list .layout_latest .image_container{padding-left:var(--grid-gutter-half);padding-right:var(--grid-gutter-half)}}@supports not (display: grid){.news-list .layout_latest .image_container{width:50%}}}.news-list .layout_latest .image_container img{-o-object-fit:cover;object-fit:cover;max-width:none;width:100%;height:100%}@media screen and (min-width:48em){.news-list .layout_latest h1,.news-list .layout_latest h2,.news-list .layout_latest h3,.news-list .layout_latest h4,.news-list .layout_latest h5,.news-list .layout_latest h6,.news-list .layout_latest .info,.news-list .layout_latest .ce_text,.news-list .layout_latest .more{grid-column:1 / -1;grid-column:span 6 / span 6}@supports not (display: grid){.news-list .layout_latest h1,.news-list .layout_latest h2,.news-list .layout_latest h3,.news-list .layout_latest h4,.news-list .layout_latest h5,.news-list .layout_latest h6,.news-list .layout_latest .info,.news-list .layout_latest .ce_text,.news-list .layout_latest .more{padding-left:var(--grid-gutter-half);padding-right:var(--grid-gutter-half)}}@supports not (display: grid){.news-list .layout_latest h1,.news-list .layout_latest h2,.news-list .layout_latest h3,.news-list .layout_latest h4,.news-list .layout_latest h5,.news-list .layout_latest h6,.news-list .layout_latest .info,.news-list .layout_latest .ce_text,.news-list .layout_latest .more{width:50%}}}.news-list .layout_latest h1,.news-list .layout_latest h2,.news-list .layout_latest h3,.news-list .layout_latest h4,.news-list .layout_latest h5,.news-list .layout_latest h6{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.news-list .layout_latest h1 a,.news-list .layout_latest h2 a,.news-list .layout_latest h3 a,.news-list .layout_latest h4 a,.news-list .layout_latest h5 a,.news-list .layout_latest h6 a{color:inherit}.news-list .layout_latest .info{color:var(--color-gray);font-size:var(--base-font-size-xs);margin-bottom:var(--base-spacing-unit)}.news-list .layout_latest .ce_text{margin-bottom:var(--base-spacing-unit)}.news-list .layout_short{border:var(--card-border);border-radius:var(--card-border-radius);background:var(--card-background);padding:var(--card-padding);-webkit-transition:-webkit-box-shadow 0.3s, -webkit-transform 0.6s;transition:-webkit-box-shadow 0.3s, -webkit-transform 0.6s;transition:box-shadow 0.3s, transform 0.6s;transition:box-shadow 0.3s, transform 0.6s, -webkit-box-shadow 0.3s, -webkit-transform 0.6s;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.news-list .layout_short:hover{-webkit-box-shadow:var(--card-shadow);box-shadow:var(--card-shadow);-webkit-transform:translate3d(0, -4px, 0);transform:translate3d(0, -4px, 0)}.news-list .layout_short .info{font-size:var(--base-font-size-xs);margin-bottom:var(--base-spacing-unit)}.news-list .layout_short h1,.news-list .layout_short h2,.news-list .layout_short h3,.news-list .layout_short h4,.news-list .layout_short h5,.news-list .layout_short h6{margin-top:0;-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.news-list .layout_short h1 a,.news-list .layout_short h2 a,.news-list .layout_short h3 a,.news-list .layout_short h4 a,.news-list .layout_short h5 a,.news-list .layout_short h6 a{color:inherit}.news-list .layout_short .more{font-size:var(--base-font-size-xs);margin-bottom:0}.news-list .layout_simple{border:var(--card-border);border-radius:var(--card-border-radius);background:var(--card-background);padding:var(--card-padding);-webkit-transition:-webkit-box-shadow 0.3s, -webkit-transform 0.6s;transition:-webkit-box-shadow 0.3s, -webkit-transform 0.6s;transition:box-shadow 0.3s, transform 0.6s;transition:box-shadow 0.3s, transform 0.6s, -webkit-box-shadow 0.3s, -webkit-transform 0.6s;margin-bottom:0}.news-list .layout_simple:hover{-webkit-box-shadow:var(--card-shadow);box-shadow:var(--card-shadow);-webkit-transform:translate3d(0, -4px, 0);transform:translate3d(0, -4px, 0)}.news-list .layout_simple time{display:block;font-size:var(--base-font-size-xs);padding-top:0}.news-list .layout_simple a{padding-top:0;margin-bottom:0;display:block;color:inherit}.news-grid{grid-row-gap:var(--grid-gutter)}@supports not (display: grid){.news-grid{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:calc(-1 * var(--grid-gutter) / 2);margin-right:calc(-1 * var(--grid-gutter) / 2)}}.news-grid .layout_short,.news-grid .layout_latest,.news-grid .layout_simple{border:var(--card-border);border-radius:var(--card-border-radius);background:var(--card-background);padding:var(--card-padding);-webkit-transition:-webkit-box-shadow 0.3s, -webkit-transform 0.6s;transition:-webkit-box-shadow 0.3s, -webkit-transform 0.6s;transition:box-shadow 0.3s, transform 0.6s;transition:box-shadow 0.3s, transform 0.6s, -webkit-box-shadow 0.3s, -webkit-transform 0.6s;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.news-grid .layout_short:hover,.news-grid .layout_latest:hover,.news-grid .layout_simple:hover{-webkit-box-shadow:var(--card-shadow);box-shadow:var(--card-shadow);-webkit-transform:translate3d(0, -4px, 0);transform:translate3d(0, -4px, 0)}@supports not (display: grid){.news-grid .layout_short,.news-grid .layout_latest,.news-grid .layout_simple{border:none}}.news-grid .image_container{-webkit-box-ordinal-group:-1;-ms-flex-order:-2;order:-2;margin-bottom:var(--base-spacing-unit)}.news-grid h1,.news-grid h2,.news-grid h3,.news-grid h4,.news-grid h5,.news-grid h6{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1;margin-top:0}.news-grid h1 a,.news-grid h2 a,.news-grid h3 a,.news-grid h4 a,.news-grid h5 a,.news-grid h6 a{color:inherit}.news-grid .info{font-size:var(--base-font-size-xs)}.news-grid .ce_text{margin-bottom:var(--base-spacing-unit)}.news-grid .more{margin-bottom:0;margin-top:auto}@supports not (display: grid){.news-grid .pagination{padding-left:var(--grid-gutter-half);padding-right:var(--grid-gutter-half)}}.news-grid .layout_simple time{font-size:var(--base-font-size-xs)}.news-grid .layout_simple a{margin-bottom:0;color:inherit}.news-menu{border:var(--card-border);border-radius:var(--card-border-radius);background:var(--card-background);padding:var(--card-padding);-webkit-transition:-webkit-box-shadow 0.3s, -webkit-transform 0.6s;transition:-webkit-box-shadow 0.3s, -webkit-transform 0.6s;transition:box-shadow 0.3s, transform 0.6s;transition:box-shadow 0.3s, transform 0.6s, -webkit-box-shadow 0.3s, -webkit-transform 0.6s}.news-menu:hover{-webkit-box-shadow:var(--card-shadow);box-shadow:var(--card-shadow);-webkit-transform:translate3d(0, -4px, 0);transform:translate3d(0, -4px, 0)}.news-menu>h1,.news-menu>h2,.news-menu>h3,.news-menu>h4,.news-menu>h5,.news-menu>h6{margin-bottom:var(--base-spacing-unit-sm)}.news-menu a,.news-menu .active{text-decoration:none;color:inherit;font-family:var(--headings-font-family)}.news-menu .level_2 a,.news-menu .level_2 span.active{vertical-align:middle;text-decoration:none}.news-menu .level_2 a::before,.news-menu .level_2 span.active::before{content:"»";margin-right:calc(var(--base-spacing-unit-xs) / 2)}.news-menu .year>a,.news-menu .year>.active{font-weight:var(--headings-font-weight)}.events-list{margin-bottom:var(--base-spacing-unit)}.events-list>h1,.events-list>h2,.events-list>h3,.events-list>h4,.events-list>h5,.events-list>h6{margin-bottom:0}.events-list .image_container{margin-top:var(--base-spacing-unit);margin-bottom:var(--base-spacing-unit)}.events-list .float_left{margin-right:var(--base-spacing-unit)}.events-list .float_right{margin-left:var(--base-spacing-unit)}.events-list .event>h1,.events-list .event>h2,.events-list .event>h3,.events-list .event>h4,.events-list .event>h5,.events-list .event>h6{margin-top:var(--base-spacing-unit)}.events-list .layout_upcoming time,.events-list .layout_upcoming a{padding-top:var(--base-spacing-unit);display:inline-block}.events-list .header{margin-top:var(--base-spacing-unit)}.events-grid{display:grid;grid-gap:var(--grid-gutter);margin-bottom:var(--base-spacing-unit)}@media screen and (min-width:34.375em){.events-grid{grid-template-columns:repeat(var(--events-grid-columns-sm), 1fr)}}@media screen and (min-width:48em){.events-grid{grid-template-columns:repeat(var(--events-grid-columns-md), 1fr)}}@media screen and (min-width:58.75em){.events-grid{grid-template-columns:repeat(var(--events-grid-columns-lg), 1fr)}}@media screen and (min-width:68.75em){.events-grid{grid-template-columns:repeat(var(--events-grid-columns-xl), 1fr)}}.events-menu ul{list-style-type:none;margin:0;padding:0}.events-menu a{text-decoration:none}.events-menu .year{margin-bottom:var(--base-spacing-unit-sm)}.events-menu .year>a,.events-menu .year>.active{color:inherit;font-weight:var(--headings-font-weight);font-family:var(--headings-font-family)}.events-menu .level_2 li{margin-bottom:var(--base-spacing-unit-xs)}.events-list>h1,.events-list>h2,.events-list>h3,.events-list>h4,.events-list>h5,.events-list>h6{padding-bottom:var(--base-spacing-unit-sm)}@media screen and (min-width:34.375em){.events-list>h1,.events-list>h2,.events-list>h3,.events-list>h4,.events-list>h5,.events-list>h6{grid-column:3 / 10 span}}@media screen and (min-width:48em){.events-list>h1,.events-list>h2,.events-list>h3,.events-list>h4,.events-list>h5,.events-list>h6{grid-column:3 / 10 span}}@media screen and (min-width:58.75em){.events-list>h1,.events-list>h2,.events-list>h3,.events-list>h4,.events-list>h5,.events-list>h6{grid-column:3 / 8 span}}.events-list .header{margin-top:0}.events-list .header:not(.first){margin-top:var(--base-spacing-unit-lg)}.events-list .layout_list,.events-list .layout_teaser{border:var(--card-border);border-radius:var(--card-border-radius);background:var(--card-background);padding:var(--card-padding);-webkit-transition:-webkit-box-shadow 0.3s, -webkit-transform 0.6s;transition:-webkit-box-shadow 0.3s, -webkit-transform 0.6s;transition:box-shadow 0.3s, transform 0.6s;transition:box-shadow 0.3s, transform 0.6s, -webkit-box-shadow 0.3s, -webkit-transform 0.6s;margin-bottom:var(--base-spacing-unit)}.events-list .layout_list:hover,.events-list .layout_teaser:hover{-webkit-box-shadow:var(--card-shadow);box-shadow:var(--card-shadow);-webkit-transform:translate3d(0, -4px, 0);transform:translate3d(0, -4px, 0)}.events-list .layout_list:last-child,.events-list .layout_teaser:last-child{padding-bottom:var(--grid-gutter);border-bottom:var(--base-border)}.events-list .layout_list:hover,.events-list .layout_teaser:hover{-webkit-transform:none;transform:none}.events-list .layout_list h1,.events-list .layout_list h2,.events-list .layout_list h3,.events-list .layout_list h4,.events-list .layout_list h5,.events-list .layout_list h6,.events-list .layout_teaser h1,.events-list .layout_teaser h2,.events-list .layout_teaser h3,.events-list .layout_teaser h4,.events-list .layout_teaser h5,.events-list .layout_teaser h6{margin-top:0}.events-list .layout_list h1 a,.events-list .layout_list h2 a,.events-list .layout_list h3 a,.events-list .layout_list h4 a,.events-list .layout_list h5 a,.events-list .layout_list h6 a,.events-list .layout_teaser h1 a,.events-list .layout_teaser h2 a,.events-list .layout_teaser h3 a,.events-list .layout_teaser h4 a,.events-list .layout_teaser h5 a,.events-list .layout_teaser h6 a{color:inherit}.events-list .layout_list .time,.events-list .layout_teaser .time{line-height:1.25;margin-bottom:var(--base-spacing-unit-sm)}.events-list .layout_upcoming{border:var(--card-border);border-radius:var(--card-border-radius);background:var(--card-background);padding:var(--card-padding);-webkit-transition:-webkit-box-shadow 0.3s, -webkit-transform 0.6s;transition:-webkit-box-shadow 0.3s, -webkit-transform 0.6s;transition:box-shadow 0.3s, transform 0.6s;transition:box-shadow 0.3s, transform 0.6s, -webkit-box-shadow 0.3s, -webkit-transform 0.6s;margin-bottom:var(--base-spacing-unit)}.events-list .layout_upcoming:hover{-webkit-box-shadow:var(--card-shadow);box-shadow:var(--card-shadow);-webkit-transform:translate3d(0, -4px, 0);transform:translate3d(0, -4px, 0)}.events-list .layout_upcoming time,.events-list .layout_upcoming a{display:block;padding-top:0}.events-list .layout_upcoming a{margin-bottom:0;color:inherit}.events-list .ce_text:last-child{margin-bottom:0}.events-list .more a{--paragraph-link-decoration: none}.events-list .empty{margin-top:var(--base-spacing-unit-sm);margin-bottom:var(--base-spacing-unit-sm)}.events-grid>.header{display:none}.events-grid .layout_short,.events-grid .layout_list,.events-grid .layout_teaser{border:var(--card-border);border-radius:var(--card-border-radius);background:var(--card-background);padding:var(--card-padding);-webkit-transition:-webkit-box-shadow 0.3s, -webkit-transform 0.6s;transition:-webkit-box-shadow 0.3s, -webkit-transform 0.6s;transition:box-shadow 0.3s, transform 0.6s;transition:box-shadow 0.3s, transform 0.6s, -webkit-box-shadow 0.3s, -webkit-transform 0.6s;display:grid;grid-template-rows:-webkit-min-content -webkit-min-content auto -webkit-min-content;grid-template-rows:min-content min-content auto min-content;grid-template-columns:-webkit-min-content auto;grid-template-columns:min-content auto;-webkit-column-gap:var(--grid-gutter-half);-moz-column-gap:var(--grid-gutter-half);column-gap:var(--grid-gutter-half);overflow:hidden}.events-grid .layout_short:hover,.events-grid .layout_list:hover,.events-grid .layout_teaser:hover{-webkit-box-shadow:var(--card-shadow);box-shadow:var(--card-shadow);-webkit-transform:translate3d(0, -4px, 0);transform:translate3d(0, -4px, 0)}@supports not (display: grid){.events-grid .layout_short,.events-grid .layout_list,.events-grid .layout_teaser{border:none}}.events-grid .layout_teaser .date,.events-grid .layout_teaser .time{grid-row:2;color:var(--color-gray);font-size:var(--base-font-size-xs);white-space:nowrap}.events-grid .image_container{overflow:hidden;padding:var(--base-spacing-unit) var(--base-spacing-unit) 0}.events-grid h1,.events-grid h2,.events-grid h3,.events-grid h4,.events-grid h5,.events-grid h6{margin-top:0;grid-row:1;grid-column:span 2}.events-grid h1 a,.events-grid h2 a,.events-grid h3 a,.events-grid h4 a,.events-grid h5 a,.events-grid h6 a{color:inherit}.events-grid .location{grid-row:2;color:var(--color-gray);font-size:var(--base-font-size-xs);white-space:nowrap}.events-grid .ce_text{grid-column:span 2;margin-bottom:var(--base-spacing-unit)}.events-grid .more{grid-column:span 2}@supports not (display: grid){.events-grid .pagination{padding-left:var(--grid-gutter-half);padding-right:var(--grid-gutter-half)}}.events-grid .layout_upcoming{border:var(--card-border);border-radius:var(--card-border-radius);background:var(--card-background);padding:var(--card-padding);-webkit-transition:-webkit-box-shadow 0.3s, -webkit-transform 0.6s;transition:-webkit-box-shadow 0.3s, -webkit-transform 0.6s;transition:box-shadow 0.3s, transform 0.6s;transition:box-shadow 0.3s, transform 0.6s, -webkit-box-shadow 0.3s, -webkit-transform 0.6s}.events-grid .layout_upcoming:hover{-webkit-box-shadow:var(--card-shadow);box-shadow:var(--card-shadow);-webkit-transform:translate3d(0, -4px, 0);transform:translate3d(0, -4px, 0)}.events-grid .layout_upcoming time,.events-grid .layout_upcoming a{display:block;padding-top:0}.events-grid .layout_upcoming a{margin-bottom:0;color:inherit}.events-reader .info{font-weight:700;margin-bottom:var(--base-spacing-unit-sm)}.events-reader .ce_text:first-of-type{font-size:var(--base-font-size-lg);line-height:1.6}.events-menu{border:var(--card-border);border-radius:var(--card-border-radius);background:var(--card-background);padding:var(--card-padding);-webkit-transition:-webkit-box-shadow 0.3s, -webkit-transform 0.6s;transition:-webkit-box-shadow 0.3s, -webkit-transform 0.6s;transition:box-shadow 0.3s, transform 0.6s;transition:box-shadow 0.3s, transform 0.6s, -webkit-box-shadow 0.3s, -webkit-transform 0.6s}.events-menu:hover{-webkit-box-shadow:var(--card-shadow);box-shadow:var(--card-shadow);-webkit-transform:translate3d(0, -4px, 0);transform:translate3d(0, -4px, 0)}.events-menu a,.events-menu .active{text-decoration:none;color:inherit;font-family:var(--headings-font-family)}.events-menu .level_2 a,.events-menu .level_2 span.active{vertical-align:middle;text-decoration:none}.events-menu .level_2 a::before,.events-menu .level_2 span.active::before{content:"»";margin-right:calc(var(--base-spacing-unit-xs) / 2)}.events-menu .year>a,.events-menu .year>.active{font-weight:var(--headings-font-weight)}.events-calendar{font-size:var(--base-font-size-xs)}@media screen and (max-width:47.99875em){.events-calendar{overflow-x:scroll;-webkit-overflow-scrolling:touch;-ms-touch-action:auto;touch-action:auto;-ms-overflow-style:none}}.events-calendar>h1,.events-calendar>h2,.events-calendar>h3,.events-calendar>h4,.events-calendar>h5,.events-calendar>h6{padding-bottom:var(--base-spacing-unit-sm);margin-bottom:0}.events-calendar th,.events-calendar td{padding:calc(var(--base-spacing-unit-xs) / 2);text-align:center}.events-calendar .days{width:14.2857142857%}fieldset{padding:0;margin:0;border:0;min-width:0}label{display:inline-block;max-width:100%;margin-bottom:var(--base-spacing-unit-xs)}input.text,input.captcha,textarea.textarea,select.select{display:block;width:100%;padding:var(--base-spacing-unit-sm) var(--base-spacing-unit-sm);border-radius:var(--forms-input-border-radius);border:var(--forms-input-border-width) solid var(--forms-input-border-color);background-clip:padding-box;background-image:none;background-color:var(--forms-input-background);line-height:var(--forms-input-line-height)}textarea.textarea{height:auto}.widget-text,.widget-textarea,.widget-password{margin-bottom:var(--base-spacing-unit)}input[type="search"]{appearance:none}input[type="file"]{display:block;line-height:1}input.radio,input.checkbox{margin-left:1px;margin-right:var(--base-spacing-unit-xs);line-height:var(--base-line-height);vertical-align:middle}input.radio+label,input.checkbox+label{margin-right:var(--base-spacing-unit-xs);margin-bottom:0;font-weight:normal}.widget-radio,.widget-checkbox,.widget-select,.widget-upload{margin-bottom:var(--base-spacing-unit)}.widget-radio legend,.widget-checkbox legend,.widget-select legend,.widget-upload legend{font-weight:700}.radio_container>span,.checkbox_container>span{display:inline-flex;align-items:center}span.mandatory{color:var(--forms-mandatory-color)}p.error{margin-bottom:0}.ce_form{--card-border: none;border:var(--card-border);border-radius:var(--card-border-radius);background:var(--card-background);padding:var(--card-padding);-webkit-transition:-webkit-box-shadow 0.3s, -webkit-transform 0.6s;transition:-webkit-box-shadow 0.3s, -webkit-transform 0.6s;transition:box-shadow 0.3s, transform 0.6s;transition:box-shadow 0.3s, transform 0.6s, -webkit-box-shadow 0.3s, -webkit-transform 0.6s;-webkit-box-shadow:var(--base-box-shadow);box-shadow:var(--base-box-shadow);margin-bottom:var(--base-spacing-unit)}.ce_form:hover{-webkit-box-shadow:var(--card-shadow);box-shadow:var(--card-shadow);-webkit-transform:translate3d(0, -4px, 0);transform:translate3d(0, -4px, 0)}@media screen and (min-width:58.75em){.ce_form{--card-padding: var(--base-spacing-unit-lg)}}.form--sticky{position:sticky;top:var(--base-spacing-unit);-ms-flex-item-align:start;align-self:start}input.text,input.captcha,textarea{padding:var(--base-spacing-unit-xs) var(--base-spacing-unit-sm)}input.radio,input.checkbox{vertical-align:middle}.widget-select select{width:100%;margin-left:0;height:calc((1rem * var(--base-line-height)) + var(--base-spacing-unit-sm))}.widget-radio--list .radio_container>span{display:-webkit-box;display:-ms-flexbox;display:flex}.widget-checkbox--list .checkbox_container>span{display:-webkit-box;display:-ms-flexbox;display:flex}.ce_accordion{margin-bottom:var(--accordion-spacing)}.ce_accordion:not(.handorgel) .toggler{font-size:var(--accordion-toggler-font-size);cursor:pointer;background:var(--accordion-toggler-background);color:var(--accordion-toggler-color);padding:var(--accordion-toggler-spacing);border:var(--accordion-toggler-border)}.ce_accordion:not(.handorgel) .toggler:hover{color:var(--accordion-toggler-color-hover)}.ce_accordion:not(.handorgel) .toggler:focus{outline:0}.ce_accordion.handorgel .toggler button{display:flex;width:100%;appearance:none;font-size:var(--accordion-toggler-font-size);cursor:pointer;background:var(--accordion-toggler-background);color:var(--accordion-toggler-color);padding:var(--accordion-toggler-spacing);border:var(--accordion-toggler-border)}.ce_accordion.handorgel .toggler button:hover{color:var(--accordion-toggler-color-hover)}.ce_accordion.handorgel .toggler button:focus{outline:0}.ce_accordion .accordion{background:var(--accordion-content-background);overflow:hidden}.ce_accordion .accordion>div{padding:var(--accordion-content-spacing)}.content-accordion .handorgel__header{line-height:var(--base-line-height);margin-bottom:var(--accordion-spacing)}.content-accordion .handorgel__header__button{display:flex;width:100%;appearance:none;font-size:var(--accordion-toggler-font-size);cursor:pointer;background:var(--accordion-toggler-background);color:var(--accordion-toggler-color);padding:var(--accordion-toggler-spacing);border:var(--accordion-toggler-border)}.content-accordion .handorgel__header__button:hover{color:var(--accordion-toggler-color-hover)}.content-accordion .handorgel__header__button:focus{outline:0}.content-accordion .handorgel__content{background:var(--accordion-content-background);overflow:hidden}.content-accordion .handorgel__content>div{padding:var(--accordion-content-spacing)}.content-accordion{display:grid;align-self:start}.content-accordion .handorgel__header{margin-bottom:0;margin-top:var(--accordion-spacing)}.content-accordion .handorgel__header__button{--card-padding: var(--accordion-toggler-spacing);border:var(--card-border);border-radius:var(--card-border-radius);background:var(--card-background);padding:var(--card-padding);-webkit-transition:-webkit-box-shadow 0.3s, -webkit-transform 0.6s;transition:-webkit-box-shadow 0.3s, -webkit-transform 0.6s;transition:box-shadow 0.3s, transform 0.6s;transition:box-shadow 0.3s, transform 0.6s, -webkit-box-shadow 0.3s, -webkit-transform 0.6s;font-weight:var(--accordion-toggler-font-weight);vertical-align:middle;-webkit-transition:border-radius 0.3s, -webkit-box-shadow 0.3s, -webkit-transform 0.3s;transition:border-radius 0.3s, -webkit-box-shadow 0.3s, -webkit-transform 0.3s;transition:border-radius 0.3s, box-shadow 0.3s, transform 0.3s;transition:border-radius 0.3s, box-shadow 0.3s, transform 0.3s, -webkit-box-shadow 0.3s, -webkit-transform 0.3s;display:inline-block}.content-accordion .handorgel__header__button:hover{-webkit-box-shadow:var(--card-shadow);box-shadow:var(--card-shadow);-webkit-transform:translate3d(0, -4px, 0);transform:translate3d(0, -4px, 0)}.content-accordion .handorgel__header__button::before{content:"→";display:inline-block;margin-right:var(--base-spacing-unit-xs);-webkit-transition:-webkit-transform 0.3s;transition:-webkit-transform 0.3s;transition:transform 0.3s;transition:transform 0.3s, -webkit-transform 0.3s}.content-accordion .handorgel__header--open .handorgel__header__button{border-bottom-left-radius:0;border-bottom-right-radius:0;border-bottom:none;-webkit-transform:none;transform:none;-webkit-box-shadow:none;box-shadow:none}.content-accordion .handorgel__header--open .handorgel__header__button::before{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.content-accordion .handorgel__content{border:var(--accordion-content-border);border-top:none}.content-accordion .content-text:last-child{margin-bottom:0}.ce_download,.ce_downloads,.content-download,.content-downloads{margin-bottom:1rem}.ce_download .mime_icon,.ce_downloads .mime_icon,.content-download .mime_icon,.content-downloads .mime_icon{display:inline-block;vertical-align:middle}.ce_download a,.ce_downloads a,.content-download a,.content-downloads a{display:inline-block;color:var(--download-link-color);text-decoration:var(--download-link-decoration)}.ce_downloads ul,.content-downloads ul{list-style-type:none;margin:0;padding:0}.ce_downloads a,.content-downloads a{text-decoration:none}table{margin-bottom:var(--base-spacing-unit);width:100%;padding:0;border-spacing:0;border-left:var(--table-border-width) var(--table-border-style) var(--table-border-color);border-top:var(--table-border-width) var(--table-border-style) var(--table-border-color)}table th,table td{border-right:var(--table-border-width) var(--table-border-style) var(--table-border-color);border-bottom:var(--table-border-width) var(--table-border-style) var(--table-border-color);padding:10px}thead{text-align:left;background:var(--table-background-light)}tfoot{font-style:italic}.table--striped .even{background:var(--table-background-light)}.table--overflow{overflow-x:scroll;-ms-overflow-x:auto}.newsletter-subscribe,.newsletter-unsubscribe{margin-bottom:var(--base-spacing-unit)}.newsletter-subscribe .formbody,.newsletter-unsubscribe .formbody{display:flex;flex-flow:row wrap}.newsletter-subscribe .text,.newsletter-subscribe .widget-text,.newsletter-unsubscribe .text,.newsletter-unsubscribe .widget-text{margin-bottom:0;display:inline-block;flex:1}.newsletter-subscribe .error,.newsletter-unsubscribe .error{margin-bottom:0;flex:1 100%;font-weight:700}.newsletter-subscribe .widget-captcha,.newsletter-unsubscribe .widget-captcha{order:-1;width:100%;margin-bottom:var(--base-spacing-unit)}.newsletter-subscribe .widget-checkbox,.newsletter-unsubscribe .widget-checkbox{order:1;width:100%}.newsletter-subscribe .submit,.newsletter-unsubscribe .submit{margin-left:var(--base-spacing-unit-xs)}.newsletter-list ul{list-style-type:none;margin:0;padding:0}.newsletter-list a{text-decoration:none}.newsletter-list li{border-bottom:var(--newsletter-list-border);padding-top:var(--base-spacing-unit);padding-bottom:var(--base-spacing-unit);display:block}.newsletter-list li:first-of-type{border-top:var(--newsletter-list-border)}@media screen and (min-width:34.375em){.newsletter-list li{font-size:var(--h4-font-size);line-height:var(--h4-line-height)}}@media screen and (min-width:48em){.newsletter-list li{font-size:var(--h3-font-size);line-height:var(--h3-line-height)}}.newsletter-list li a:hover{opacity:0.5}.newsletter-reader{max-width:var(--newsletter-reader-width);margin-left:auto;margin-right:auto;border:var(--newsletter-reader-border);padding:0 var(--base-spacing-unit)}.newsletter-subscribe{margin-bottom:0}.newsletter-subscribe .widget-text,.newsletter-subscribe .widget-submit{margin-bottom:var(--base-spacing-unit);-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex}.newsletter-subscribe button.submit{margin-left:var(--base-spacing-unit-sm)}.newsletter-unsubscribe .widget-text,.newsletter-unsubscribe .widget-submit{margin-bottom:var(--base-spacing-unit)}.newsletter-unsubscribe button.submit{margin-left:var(--base-spacing-unit-sm)}.newsletter-list li{font-family:var(--newsletter-list-font-family);font-weight:var(--newsletter-list-font-weight);display:block;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.newsletter-reader{padding-top:var(--base-spacing-unit);padding-bottom:var(--base-spacing-unit-sm)}.faq-list ul{list-style-type:none;margin:0;padding:0}.faq-list a{text-decoration:none}.faq-list>ul{margin-top:2rem}.faq-list li{margin-bottom:var(--base-spacing-unit-sm)}.faq-list li a{display:inline-block}.faq-list>h1,.faq-list>h2,.faq-list>h3,.faq-list>h4,.faq-list>h5,.faq-list>h6{margin-bottom:0}.faq-list>h1:after,.faq-list>h2:after,.faq-list>h3:after,.faq-list>h4:after,.faq-list>h5:after,.faq-list>h6:after{border-top:var(--faq-border);content:"";display:block}.faq-list article>h1,.faq-list article>h2,.faq-list article>h3,.faq-list article>h4,.faq-list article>h5,.faq-list article>h6{margin-bottom:0}.faq-list article>h1:after,.faq-list article>h2:after,.faq-list article>h3:after,.faq-list article>h4:after,.faq-list article>h5:after,.faq-list article>h6:after{border-top:var(--faq-border);content:"";display:block}.faq-page>h1,.faq-page>h2,.faq-page>h3,.faq-page>h4,.faq-page>h5,.faq-page>h6{margin-bottom:0}.faq-page>h1:after,.faq-page>h2:after,.faq-page>h3:after,.faq-page>h4:after,.faq-page>h5:after,.faq-page>h6:after{border-top:var(--faq-border);content:"";display:block}.faq-page article>h1,.faq-page article>h2,.faq-page article>h3,.faq-page article>h4,.faq-page article>h5,.faq-page article>h6{margin-bottom:0}.faq-page article>h1:after,.faq-page article>h2:after,.faq-page article>h3:after,.faq-page article>h4:after,.faq-page article>h5:after,.faq-page article>h6:after{border-top:var(--faq-border);content:"";display:block}.faq-page .info{font-size:0.875rem;margin-top:var(--base-spacing-unit);opacity:0.5}.faq-page section{padding:var(--base-spacing-unit) 0;border-bottom:var(--faq-border)}.faq-page section.last{margin-bottom:var(--base-spacing-unit)}.faq-reader .info{font-size:0.875rem;margin-top:var(--base-spacing-unit);opacity:0.5}.faq-list>ul{margin-top:var(--base-spacing-unit)}.faq-list li a{border:var(--card-border);border-radius:var(--card-border-radius);background:var(--card-background);padding:var(--card-padding);-webkit-transition:-webkit-box-shadow 0.3s, -webkit-transform 0.6s;transition:-webkit-box-shadow 0.3s, -webkit-transform 0.6s;transition:box-shadow 0.3s, transform 0.6s;transition:box-shadow 0.3s, transform 0.6s, -webkit-box-shadow 0.3s, -webkit-transform 0.6s;font-weight:700;color:var(--color-text);display:block}.faq-list li a:hover{-webkit-box-shadow:var(--card-shadow);box-shadow:var(--card-shadow);-webkit-transform:translate3d(0, -4px, 0);transform:translate3d(0, -4px, 0)}.faq-list li a::before{content:"→";margin-right:var(--base-spacing-unit-xs)}.faq-list li a:hover{color:var(--links-color-hover)}.faq-page article>h1,.faq-page article h2,.faq-page article h3,.faq-page article h4,.faq-page article h5,.faq-page article h6{margin-bottom:var(--base-spacing-unit)}.faq-page section{border:var(--card-border);border-radius:var(--card-border-radius);background:var(--card-background);padding:var(--card-padding);-webkit-transition:-webkit-box-shadow 0.3s, -webkit-transform 0.6s;transition:-webkit-box-shadow 0.3s, -webkit-transform 0.6s;transition:box-shadow 0.3s, transform 0.6s;transition:box-shadow 0.3s, transform 0.6s, -webkit-box-shadow 0.3s, -webkit-transform 0.6s;margin-bottom:var(--base-spacing-unit)}.faq-page section:hover{-webkit-box-shadow:var(--card-shadow);box-shadow:var(--card-shadow);-webkit-transform:translate3d(0, -4px, 0);transform:translate3d(0, -4px, 0)}.ce_comments{overflow:visible}.ce_comments .widget{margin-bottom:var(--base-spacing-unit)}.ce_comments p.error{margin-bottom:0;color:var(--color-error)}.ce_comments .error{border-color:var(--color-error-light)}.comment_default{padding:var(--base-spacing-unit);margin-bottom:var(--base-spacing-unit);border:var(--base-border)}.comment_default .info{padding-bottom:var(--base-spacing-unit);border-bottom:var(--base-border)}.comment_default.last{margin-bottom:var(--base-spacing-unit-lg)}.ce_comments{margin-bottom:var(--base-spacing-unit)}.ce_comments .form{border:var(--base-border);padding:var(--base-spacing-unit)}@media screen and (min-width:48em){.ce_comments .form{padding:var(--base-spacing-unit-lg)}}.ce_comments .widget-submit{margin-bottom:0}.comment_default .info{padding-bottom:var(--base-spacing-unit-sm);margin-bottom:var(--base-spacing-unit-sm)}.comment_default .reply{margin-top:var(--base-spacing-unit)}@media screen and (min-width:34.375em){.comment_default .reply{padding:var(--base-spacing-unit);background-color:var(--comments-reply-background);border-radius:var(--base-border-radius)}}.comment_default .reply .info{font-style:italic}.search .formbody{display:flex;flex-flow:row wrap}.search .widget-text{margin-bottom:var(--base-spacing-unit-sm);display:inline-block;flex:1}.search .widget-text label{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.search .widget-submit{margin-bottom:var(--base-spacing-unit-sm);margin-left:var(--base-spacing-unit-xs);align-self:flex-end}.search .widget-submit .submit{margin-left:0}.search .relevance{color:var(--search-relevance-color)}.search .context{margin-bottom:var(--base-spacing-unit-xs)}.search .highlight{font-weight:bold}.search .url{color:var(--search-url-color)}.search .text,.search .widget-text,.search .submit,.search .widget-submit{margin-bottom:0}.search .even,.search .odd{padding-bottom:var(--base-spacing-unit);margin-bottom:var(--base-spacing-unit);border-bottom:var(--base-border)}.search .first{border-top:var(--base-border);padding-top:var(--base-spacing-unit)}.logo{pointer-events:auto}@media screen and (min-width:52em){.logo{padding-bottom:var(--base-spacing-unit)}}.logo img{margin-left:0;width:160px}.fact{margin-bottom:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.fact figure{margin-bottom:var(--base-spacing-unit);-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.fact figure img{margin-left:0}.footer__note{margin-top:var(--base-spacing-unit);font-size:var(--base-font-size-xs);width:100%}@media screen and (min-width:58.75em){.footer__note{margin-top:var(--base-spacing-unit-lg)}}.footer__note a{color:inherit}.card{border:var(--card-border);border-radius:var(--card-border-radius);background:var(--card-background);padding:var(--card-padding);-webkit-transition:-webkit-box-shadow 0.3s, -webkit-transform 0.6s;transition:-webkit-box-shadow 0.3s, -webkit-transform 0.6s;transition:box-shadow 0.3s, transform 0.6s;transition:box-shadow 0.3s, transform 0.6s, -webkit-box-shadow 0.3s, -webkit-transform 0.6s;color:var(--color-text);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;margin-bottom:0}.card:hover{-webkit-box-shadow:var(--card-shadow);box-shadow:var(--card-shadow);-webkit-transform:translate3d(0, -4px, 0);transform:translate3d(0, -4px, 0)}.card figure{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1;margin-bottom:var(--base-spacing-unit)}.card figure img{margin-left:0}.card .rte{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.card .btn{margin-top:auto;margin-bottom:0}.text--inverted,.text--inverted *{color:var(--color-text-inverted)}.border-top{border-top:var(--base-border)}.border-bottom{border-bottom:var(--base-border)}.block--center{margin-left:auto;margin-right:auto}.m-t-0,.mod_article.m-t-0{margin-top:calc(0 * var(--base-spacing-unit))}.m-b-0,.mod_article.m-b-0{margin-bottom:calc(0 * var(--base-spacing-unit))}.p-t-0{padding-top:calc(0 * var(--base-spacing-unit))}.p-b-0{padding-bottom:calc(0 * var(--base-spacing-unit))}.mod_article.p-t-0{--article-spacing-top: calc(0 * var(--base-spacing-unit));padding-top:0}.mod_article.p-b-0{--article-spacing-bottom: calc(0 * var(--base-spacing-unit));padding-bottom:0}.m-t-1,.mod_article.m-t-1{margin-top:calc(1 * var(--base-spacing-unit))}.m-b-1,.mod_article.m-b-1{margin-bottom:calc(1 * var(--base-spacing-unit))}.p-t-1{padding-top:calc(1 * var(--base-spacing-unit))}.p-b-1{padding-bottom:calc(1 * var(--base-spacing-unit))}.mod_article.p-t-1{--article-spacing-top: calc(1 * var(--base-spacing-unit));padding-top:0}.mod_article.p-b-1{--article-spacing-bottom: calc(1 * var(--base-spacing-unit));padding-bottom:0}.m-t-2,.mod_article.m-t-2{margin-top:calc(2 * var(--base-spacing-unit))}.m-b-2,.mod_article.m-b-2{margin-bottom:calc(2 * var(--base-spacing-unit))}.p-t-2{padding-top:calc(2 * var(--base-spacing-unit))}.p-b-2{padding-bottom:calc(2 * var(--base-spacing-unit))}.mod_article.p-t-2{--article-spacing-top: calc(2 * var(--base-spacing-unit));padding-top:0}.mod_article.p-b-2{--article-spacing-bottom: calc(2 * var(--base-spacing-unit));padding-bottom:0}.m-t-3,.mod_article.m-t-3{margin-top:calc(3 * var(--base-spacing-unit))}.m-b-3,.mod_article.m-b-3{margin-bottom:calc(3 * var(--base-spacing-unit))}.p-t-3{padding-top:calc(3 * var(--base-spacing-unit))}.p-b-3{padding-bottom:calc(3 * var(--base-spacing-unit))}.mod_article.p-t-3{--article-spacing-top: calc(3 * var(--base-spacing-unit));padding-top:0}.mod_article.p-b-3{--article-spacing-bottom: calc(3 * var(--base-spacing-unit));padding-bottom:0}.m-t-4,.mod_article.m-t-4{margin-top:calc(4 * var(--base-spacing-unit))}.m-b-4,.mod_article.m-b-4{margin-bottom:calc(4 * var(--base-spacing-unit))}.p-t-4{padding-top:calc(4 * var(--base-spacing-unit))}.p-b-4{padding-bottom:calc(4 * var(--base-spacing-unit))}.mod_article.p-t-4{--article-spacing-top: calc(4 * var(--base-spacing-unit));padding-top:0}.mod_article.p-b-4{--article-spacing-bottom: calc(4 * var(--base-spacing-unit));padding-bottom:0}.m-t-5,.mod_article.m-t-5{margin-top:calc(5 * var(--base-spacing-unit))}.m-b-5,.mod_article.m-b-5{margin-bottom:calc(5 * var(--base-spacing-unit))}.p-t-5{padding-top:calc(5 * var(--base-spacing-unit))}.p-b-5{padding-bottom:calc(5 * var(--base-spacing-unit))}.mod_article.p-t-5{--article-spacing-top: calc(5 * var(--base-spacing-unit));padding-top:0}.mod_article.p-b-5{--article-spacing-bottom: calc(5 * var(--base-spacing-unit));padding-bottom:0}.article-xs-1>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-xs-1>.inside>*{padding-left:0;padding-right:0}}.article-xs-2>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-xs-2>.inside>*{padding-left:0;padding-right:0}}.article-xs-3>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-xs-3>.inside>*{padding-left:0;padding-right:0}}.article-xs-4>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-xs-4>.inside>*{padding-left:0;padding-right:0}}.article-xs-5>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-xs-5>.inside>*{padding-left:0;padding-right:0}}.article-xs-6>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-xs-6>.inside>*{padding-left:0;padding-right:0}}.article-xs-7>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-xs-7>.inside>*{padding-left:0;padding-right:0}}.article-xs-8>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-xs-8>.inside>*{padding-left:0;padding-right:0}}.article-xs-9>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-xs-9>.inside>*{padding-left:0;padding-right:0}}.article-xs-10>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-xs-10>.inside>*{padding-left:0;padding-right:0}}.article-xs-11>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-xs-11>.inside>*{padding-left:0;padding-right:0}}.article-xs-12>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-xs-12>.inside>*{padding-left:0;padding-right:0}}@media screen and (min-width:0){.article-xs-1 .inside>*{grid-column-end:span 1}@supports not (display: grid){.article-xs-1 .inside>*{width:8.3333333333%}}.article-start-xs-1 .inside>*{grid-column-start:1}.article-xs-2 .inside>*{grid-column-end:span 2}@supports not (display: grid){.article-xs-2 .inside>*{width:16.6666666667%}}.article-start-xs-2 .inside>*{grid-column-start:2}.article-xs-3 .inside>*{grid-column-end:span 3}@supports not (display: grid){.article-xs-3 .inside>*{width:25%}}.article-start-xs-3 .inside>*{grid-column-start:3}.article-xs-4 .inside>*{grid-column-end:span 4}@supports not (display: grid){.article-xs-4 .inside>*{width:33.3333333333%}}.article-start-xs-4 .inside>*{grid-column-start:4}.article-xs-5 .inside>*{grid-column-end:span 5}@supports not (display: grid){.article-xs-5 .inside>*{width:41.6666666667%}}.article-start-xs-5 .inside>*{grid-column-start:5}.article-xs-6 .inside>*{grid-column-end:span 6}@supports not (display: grid){.article-xs-6 .inside>*{width:50%}}.article-start-xs-6 .inside>*{grid-column-start:6}.article-xs-7 .inside>*{grid-column-end:span 7}@supports not (display: grid){.article-xs-7 .inside>*{width:58.3333333333%}}.article-start-xs-7 .inside>*{grid-column-start:7}.article-xs-8 .inside>*{grid-column-end:span 8}@supports not (display: grid){.article-xs-8 .inside>*{width:66.6666666667%}}.article-start-xs-8 .inside>*{grid-column-start:8}.article-xs-9 .inside>*{grid-column-end:span 9}@supports not (display: grid){.article-xs-9 .inside>*{width:75%}}.article-start-xs-9 .inside>*{grid-column-start:9}.article-xs-10 .inside>*{grid-column-end:span 10}@supports not (display: grid){.article-xs-10 .inside>*{width:83.3333333333%}}.article-start-xs-10 .inside>*{grid-column-start:10}.article-xs-11 .inside>*{grid-column-end:span 11}@supports not (display: grid){.article-xs-11 .inside>*{width:91.6666666667%}}.article-start-xs-11 .inside>*{grid-column-start:11}.article-xs-12 .inside>*{grid-column-end:span 12}@supports not (display: grid){.article-xs-12 .inside>*{width:100%}}.article-start-xs-12 .inside>*{grid-column-start:12}}.article-sm-1>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-sm-1>.inside>*{padding-left:0;padding-right:0}}.article-sm-2>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-sm-2>.inside>*{padding-left:0;padding-right:0}}.article-sm-3>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-sm-3>.inside>*{padding-left:0;padding-right:0}}.article-sm-4>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-sm-4>.inside>*{padding-left:0;padding-right:0}}.article-sm-5>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-sm-5>.inside>*{padding-left:0;padding-right:0}}.article-sm-6>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-sm-6>.inside>*{padding-left:0;padding-right:0}}.article-sm-7>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-sm-7>.inside>*{padding-left:0;padding-right:0}}.article-sm-8>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-sm-8>.inside>*{padding-left:0;padding-right:0}}.article-sm-9>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-sm-9>.inside>*{padding-left:0;padding-right:0}}.article-sm-10>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-sm-10>.inside>*{padding-left:0;padding-right:0}}.article-sm-11>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-sm-11>.inside>*{padding-left:0;padding-right:0}}.article-sm-12>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-sm-12>.inside>*{padding-left:0;padding-right:0}}@media screen and (min-width:34.375em){.article-sm-1 .inside>*{grid-column-end:span 1}@supports not (display: grid){.article-sm-1 .inside>*{width:8.3333333333%}}.article-start-sm-1 .inside>*{grid-column-start:1}.article-sm-2 .inside>*{grid-column-end:span 2}@supports not (display: grid){.article-sm-2 .inside>*{width:16.6666666667%}}.article-start-sm-2 .inside>*{grid-column-start:2}.article-sm-3 .inside>*{grid-column-end:span 3}@supports not (display: grid){.article-sm-3 .inside>*{width:25%}}.article-start-sm-3 .inside>*{grid-column-start:3}.article-sm-4 .inside>*{grid-column-end:span 4}@supports not (display: grid){.article-sm-4 .inside>*{width:33.3333333333%}}.article-start-sm-4 .inside>*{grid-column-start:4}.article-sm-5 .inside>*{grid-column-end:span 5}@supports not (display: grid){.article-sm-5 .inside>*{width:41.6666666667%}}.article-start-sm-5 .inside>*{grid-column-start:5}.article-sm-6 .inside>*{grid-column-end:span 6}@supports not (display: grid){.article-sm-6 .inside>*{width:50%}}.article-start-sm-6 .inside>*{grid-column-start:6}.article-sm-7 .inside>*{grid-column-end:span 7}@supports not (display: grid){.article-sm-7 .inside>*{width:58.3333333333%}}.article-start-sm-7 .inside>*{grid-column-start:7}.article-sm-8 .inside>*{grid-column-end:span 8}@supports not (display: grid){.article-sm-8 .inside>*{width:66.6666666667%}}.article-start-sm-8 .inside>*{grid-column-start:8}.article-sm-9 .inside>*{grid-column-end:span 9}@supports not (display: grid){.article-sm-9 .inside>*{width:75%}}.article-start-sm-9 .inside>*{grid-column-start:9}.article-sm-10 .inside>*{grid-column-end:span 10}@supports not (display: grid){.article-sm-10 .inside>*{width:83.3333333333%}}.article-start-sm-10 .inside>*{grid-column-start:10}.article-sm-11 .inside>*{grid-column-end:span 11}@supports not (display: grid){.article-sm-11 .inside>*{width:91.6666666667%}}.article-start-sm-11 .inside>*{grid-column-start:11}.article-sm-12 .inside>*{grid-column-end:span 12}@supports not (display: grid){.article-sm-12 .inside>*{width:100%}}.article-start-sm-12 .inside>*{grid-column-start:12}}.article-md-1>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-md-1>.inside>*{padding-left:0;padding-right:0}}.article-md-2>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-md-2>.inside>*{padding-left:0;padding-right:0}}.article-md-3>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-md-3>.inside>*{padding-left:0;padding-right:0}}.article-md-4>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-md-4>.inside>*{padding-left:0;padding-right:0}}.article-md-5>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-md-5>.inside>*{padding-left:0;padding-right:0}}.article-md-6>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-md-6>.inside>*{padding-left:0;padding-right:0}}.article-md-7>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-md-7>.inside>*{padding-left:0;padding-right:0}}.article-md-8>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-md-8>.inside>*{padding-left:0;padding-right:0}}.article-md-9>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-md-9>.inside>*{padding-left:0;padding-right:0}}.article-md-10>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-md-10>.inside>*{padding-left:0;padding-right:0}}.article-md-11>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-md-11>.inside>*{padding-left:0;padding-right:0}}.article-md-12>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-md-12>.inside>*{padding-left:0;padding-right:0}}@media screen and (min-width:48em){.article-md-1 .inside>*{grid-column-end:span 1}@supports not (display: grid){.article-md-1 .inside>*{width:8.3333333333%}}.article-start-md-1 .inside>*{grid-column-start:1}.article-md-2 .inside>*{grid-column-end:span 2}@supports not (display: grid){.article-md-2 .inside>*{width:16.6666666667%}}.article-start-md-2 .inside>*{grid-column-start:2}.article-md-3 .inside>*{grid-column-end:span 3}@supports not (display: grid){.article-md-3 .inside>*{width:25%}}.article-start-md-3 .inside>*{grid-column-start:3}.article-md-4 .inside>*{grid-column-end:span 4}@supports not (display: grid){.article-md-4 .inside>*{width:33.3333333333%}}.article-start-md-4 .inside>*{grid-column-start:4}.article-md-5 .inside>*{grid-column-end:span 5}@supports not (display: grid){.article-md-5 .inside>*{width:41.6666666667%}}.article-start-md-5 .inside>*{grid-column-start:5}.article-md-6 .inside>*{grid-column-end:span 6}@supports not (display: grid){.article-md-6 .inside>*{width:50%}}.article-start-md-6 .inside>*{grid-column-start:6}.article-md-7 .inside>*{grid-column-end:span 7}@supports not (display: grid){.article-md-7 .inside>*{width:58.3333333333%}}.article-start-md-7 .inside>*{grid-column-start:7}.article-md-8 .inside>*{grid-column-end:span 8}@supports not (display: grid){.article-md-8 .inside>*{width:66.6666666667%}}.article-start-md-8 .inside>*{grid-column-start:8}.article-md-9 .inside>*{grid-column-end:span 9}@supports not (display: grid){.article-md-9 .inside>*{width:75%}}.article-start-md-9 .inside>*{grid-column-start:9}.article-md-10 .inside>*{grid-column-end:span 10}@supports not (display: grid){.article-md-10 .inside>*{width:83.3333333333%}}.article-start-md-10 .inside>*{grid-column-start:10}.article-md-11 .inside>*{grid-column-end:span 11}@supports not (display: grid){.article-md-11 .inside>*{width:91.6666666667%}}.article-start-md-11 .inside>*{grid-column-start:11}.article-md-12 .inside>*{grid-column-end:span 12}@supports not (display: grid){.article-md-12 .inside>*{width:100%}}.article-start-md-12 .inside>*{grid-column-start:12}}.article-lg-1>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-lg-1>.inside>*{padding-left:0;padding-right:0}}.article-lg-2>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-lg-2>.inside>*{padding-left:0;padding-right:0}}.article-lg-3>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-lg-3>.inside>*{padding-left:0;padding-right:0}}.article-lg-4>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-lg-4>.inside>*{padding-left:0;padding-right:0}}.article-lg-5>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-lg-5>.inside>*{padding-left:0;padding-right:0}}.article-lg-6>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-lg-6>.inside>*{padding-left:0;padding-right:0}}.article-lg-7>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-lg-7>.inside>*{padding-left:0;padding-right:0}}.article-lg-8>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-lg-8>.inside>*{padding-left:0;padding-right:0}}.article-lg-9>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-lg-9>.inside>*{padding-left:0;padding-right:0}}.article-lg-10>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-lg-10>.inside>*{padding-left:0;padding-right:0}}.article-lg-11>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-lg-11>.inside>*{padding-left:0;padding-right:0}}.article-lg-12>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-lg-12>.inside>*{padding-left:0;padding-right:0}}@media screen and (min-width:58.75em){.article-lg-1 .inside>*{grid-column-end:span 1}@supports not (display: grid){.article-lg-1 .inside>*{width:8.3333333333%}}.article-start-lg-1 .inside>*{grid-column-start:1}.article-lg-2 .inside>*{grid-column-end:span 2}@supports not (display: grid){.article-lg-2 .inside>*{width:16.6666666667%}}.article-start-lg-2 .inside>*{grid-column-start:2}.article-lg-3 .inside>*{grid-column-end:span 3}@supports not (display: grid){.article-lg-3 .inside>*{width:25%}}.article-start-lg-3 .inside>*{grid-column-start:3}.article-lg-4 .inside>*{grid-column-end:span 4}@supports not (display: grid){.article-lg-4 .inside>*{width:33.3333333333%}}.article-start-lg-4 .inside>*{grid-column-start:4}.article-lg-5 .inside>*{grid-column-end:span 5}@supports not (display: grid){.article-lg-5 .inside>*{width:41.6666666667%}}.article-start-lg-5 .inside>*{grid-column-start:5}.article-lg-6 .inside>*{grid-column-end:span 6}@supports not (display: grid){.article-lg-6 .inside>*{width:50%}}.article-start-lg-6 .inside>*{grid-column-start:6}.article-lg-7 .inside>*{grid-column-end:span 7}@supports not (display: grid){.article-lg-7 .inside>*{width:58.3333333333%}}.article-start-lg-7 .inside>*{grid-column-start:7}.article-lg-8 .inside>*{grid-column-end:span 8}@supports not (display: grid){.article-lg-8 .inside>*{width:66.6666666667%}}.article-start-lg-8 .inside>*{grid-column-start:8}.article-lg-9 .inside>*{grid-column-end:span 9}@supports not (display: grid){.article-lg-9 .inside>*{width:75%}}.article-start-lg-9 .inside>*{grid-column-start:9}.article-lg-10 .inside>*{grid-column-end:span 10}@supports not (display: grid){.article-lg-10 .inside>*{width:83.3333333333%}}.article-start-lg-10 .inside>*{grid-column-start:10}.article-lg-11 .inside>*{grid-column-end:span 11}@supports not (display: grid){.article-lg-11 .inside>*{width:91.6666666667%}}.article-start-lg-11 .inside>*{grid-column-start:11}.article-lg-12 .inside>*{grid-column-end:span 12}@supports not (display: grid){.article-lg-12 .inside>*{width:100%}}.article-start-lg-12 .inside>*{grid-column-start:12}}.article-xl-1>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-xl-1>.inside>*{padding-left:0;padding-right:0}}.article-xl-2>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-xl-2>.inside>*{padding-left:0;padding-right:0}}.article-xl-3>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-xl-3>.inside>*{padding-left:0;padding-right:0}}.article-xl-4>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-xl-4>.inside>*{padding-left:0;padding-right:0}}.article-xl-5>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-xl-5>.inside>*{padding-left:0;padding-right:0}}.article-xl-6>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-xl-6>.inside>*{padding-left:0;padding-right:0}}.article-xl-7>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-xl-7>.inside>*{padding-left:0;padding-right:0}}.article-xl-8>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-xl-8>.inside>*{padding-left:0;padding-right:0}}.article-xl-9>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-xl-9>.inside>*{padding-left:0;padding-right:0}}.article-xl-10>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-xl-10>.inside>*{padding-left:0;padding-right:0}}.article-xl-11>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-xl-11>.inside>*{padding-left:0;padding-right:0}}.article-xl-12>.inside{display:grid;grid-template-columns:repeat(12, 1fr);-webkit-column-gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}@supports not (display: grid){.article-xl-12>.inside>*{padding-left:0;padding-right:0}}@media screen and (min-width:68.75em){.article-xl-1 .inside>*{grid-column-end:span 1}@supports not (display: grid){.article-xl-1 .inside>*{width:8.3333333333%}}.article-start-xl-1 .inside>*{grid-column-start:1}.article-xl-2 .inside>*{grid-column-end:span 2}@supports not (display: grid){.article-xl-2 .inside>*{width:16.6666666667%}}.article-start-xl-2 .inside>*{grid-column-start:2}.article-xl-3 .inside>*{grid-column-end:span 3}@supports not (display: grid){.article-xl-3 .inside>*{width:25%}}.article-start-xl-3 .inside>*{grid-column-start:3}.article-xl-4 .inside>*{grid-column-end:span 4}@supports not (display: grid){.article-xl-4 .inside>*{width:33.3333333333%}}.article-start-xl-4 .inside>*{grid-column-start:4}.article-xl-5 .inside>*{grid-column-end:span 5}@supports not (display: grid){.article-xl-5 .inside>*{width:41.6666666667%}}.article-start-xl-5 .inside>*{grid-column-start:5}.article-xl-6 .inside>*{grid-column-end:span 6}@supports not (display: grid){.article-xl-6 .inside>*{width:50%}}.article-start-xl-6 .inside>*{grid-column-start:6}.article-xl-7 .inside>*{grid-column-end:span 7}@supports not (display: grid){.article-xl-7 .inside>*{width:58.3333333333%}}.article-start-xl-7 .inside>*{grid-column-start:7}.article-xl-8 .inside>*{grid-column-end:span 8}@supports not (display: grid){.article-xl-8 .inside>*{width:66.6666666667%}}.article-start-xl-8 .inside>*{grid-column-start:8}.article-xl-9 .inside>*{grid-column-end:span 9}@supports not (display: grid){.article-xl-9 .inside>*{width:75%}}.article-start-xl-9 .inside>*{grid-column-start:9}.article-xl-10 .inside>*{grid-column-end:span 10}@supports not (display: grid){.article-xl-10 .inside>*{width:83.3333333333%}}.article-start-xl-10 .inside>*{grid-column-start:10}.article-xl-11 .inside>*{grid-column-end:span 11}@supports not (display: grid){.article-xl-11 .inside>*{width:91.6666666667%}}.article-start-xl-11 .inside>*{grid-column-start:11}.article-xl-12 .inside>*{grid-column-end:span 12}@supports not (display: grid){.article-xl-12 .inside>*{width:100%}}.article-start-xl-12 .inside>*{grid-column-start:12}}@media print{*,*:before,*:after,p:first-letter,div:first-letter,blockquote:first-letter,li:first-letter,p:first-line,div:first-line,blockquote:first-line,li:first-line{background:transparent !important;color:#000 !important;-webkit-box-shadow:none !important;box-shadow:none !important;text-shadow:none !important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")";font-size:var(--base-font-size);font-weight:normal;-ms-hyphens:auto;hyphens:auto}abbr[title]:after{content:" (" attr(title) ")";font-size:var(--base-font-size);font-weight:normal}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}div.btn a,a.btn,input.submit{color:#000 !important;border-color:#000 !important}pre{white-space:pre-wrap !important}pre,blockquote{page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}.logo a[href]:after,.ce_gallery a[href]:after{content:""}.nav,.nav-toggler,.hero__image,.ce_comments .form{display:none}.hero,.mod_article.hero,.news-full--hero .hero{min-height:0}.band{margin-top:calc(-1 * var(--base-border-width));border-top:var(--base-border-width) solid var(--color-gray-light);border-bottom:var(--base-border-width) solid var(--color-gray-light)}.news-grid>div{grid-column:span 6 !important}.news-grid>div .image_container a:after{content:""}.news-full--hero .text_container,.ce_comments{max-width:72em;max-width:calc(72em - var(--grid-gutter));margin-left:auto;margin-right:auto}.ce_accordion .accordion{display:block !important}.ce_accordion .ui-accordion-header-icon{display:none}.col-xs-6,.col-sm-6,.col-md-6,.col-lg-6,.col-xl-6{grid-column:span 6}.col-xs-4,.col-sm-4,.col-md-4,.col-lg-4,.col-xl-4{grid-column:span 4}}.browser-support{margin-top:1rem;margin-bottom:1rem;font-size:0.875rem}.browser-support>.inside{max-width:72em;width:100%;margin-left:auto;margin-right:auto;background:#FFF8EA;border:2px solid #E25600;padding:1rem;width:auto}
.ce_text p > a{
	text-decoration:underline;
	}

p{
	letter-spacing:0.3px;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
	}

#footer, #footer a, #footer p{
	color:white!important;
	font-size:15px;
	line-height:20px;
	}

#bottom, #bottom a{
	font-size:15px;
	line-height:24px;
	color:#453e35 !important;
	}

.full_width.content_page.kontakt h1{
	margin-top:0px;
	}


#wrap_adresse-und-kontaktformular {
    margin-top: 20px;
}

.full_width.content_page #main{
	margin-bottom:40px;
	}

/****** Logo ******/

#logo img{
	max-width:310px;
	width:100%;
	margin:34px auto 2px auto;
	display:block;
	position:relative;
	}

/****** NAVIGATION ******/


.aktuelles .subline{
	display:none;
	}

nav.mainmenu {
    margin: auto;
    position: relative;
    display: table;
}


nav.mainmenu ul li a{
	font-family: 'Open Sans Condensed', sans-serif;
	text-transform:uppercase;
	font-size:26px;
	padding-bottom:20px;
	}

.vlist.level_2 a{
	font-size:18px!important;
	}

.vlist.level_2 p{
	font-size:14px;
	}

.level_3 .subline{
	margin-top:4px;
	}

@media (max-width:990px){

#logo img {
    display: block;
    margin: 0px;
    max-width: 338px;
    position: absolute;
    width: 100%;
}
}

@media (max-width:480px){

#logo img {
    max-width: 280px;
	margin-top:8px;
}
}


/****** SLIDER ******/

#wrap_slider-startseite .ce_headline{
	font-size:60px;
	color:white;
	font-weight:bold;
	}

.tp-bannertimer{
	display:none;
	}

.tp-leftarrow.default{
	left:50px!important;
	}
	
.tp-rightarrow.default{
	right:50px!important;
	}
	
#slider-startseite .ce_headline{
	text-shadow: 1px 1px 7px rgba(0, 0, 0, 0.73);
}


/****** COUNTER ******/

#counter .counter, #counter .headline, #counter .ce_counter{
    color: white !important;
    z-index: 99999;
}

@media (max-width:680px){

.ce_counter i{
	font-size:30px;
	}

.ce_counter .counterwrapper, .ce_counter .headline {
    font-size: 26px;
    font-weight: 500;
    line-height: 2em;
}

#wrap_counter{
	display:none;
	}

}


/****** STARTSEITE SOZITÄT *****/

#wrap_sozietaet-startseite h2, #wrap_sozietaet-startseite p{
	color:#453e35!important;
	}

/****** STARTSEITE PORTFOLIO *****/


#portfolio_25 .title:before{
	font-family:fontawesome;
	color:white;
	font-size:48px;
	display:block;
	margin-top:25px;
	margin-bottom:15px;
	}


#portfolio_25 .title{ 
	color:White;
	padding-left:20px;
	padding-bottom:96px;
	}
	
.safari #portfolio_25 .title{ 
	color:White;
	padding-left:10px;
	padding-bottom:96px;
	font-size:14px!important;
	}

	
.title a{
		color:white;
		}

/** Arbeitsrecht **/
.portfolio_arbeitsrecht > .portfolioliste_inside > .frontside > .caption{
	background:rgba(0,63,91,0.8);
	}	

.portfolio_arbeitsrecht .title:before{
	content:"\f085";
	}

/**  Bank- Kapitalmarktrecht **/	
.portfolio_bank-kapitalmarktrecht > .portfolioliste_inside > .frontside > .caption{
	background:rgba(149,136,118,0.8);
}

.portfolio_bank-kapitalmarktrecht .title:before{
	content:"\f19c";
	}

/**  Bau- Architektenrecht **/	
.protfolio_bau-architektenrecht > .portfolioliste_inside > .frontside > .caption{
	background:rgba(139,29,3,0.8);
}

.protfolio_bau-architektenrecht .title:before{
	content:"\f1b3";
	}

/**  Erbrechtt **/	
.portfolio_erbrecht > .portfolioliste_inside > .frontside > .caption{
	background:rgba(121,174,78,0.8);
}

.portfolio_erbrecht .title:before{
	content:"\f0c0";
	}

/**  Familienrecht **/	
.portfolio_familienrecht > .portfolioliste_inside > .frontside > .caption{
	background:rgba(67,137,97,0.8);
}

.portfolio_familienrecht .title:before{
	content:"\f12e";
	}

/**  Handels- Gesellschaftsrecht **/	
.portfolio_handels-gesellschaftsrecht > .portfolioliste_inside > .frontside > .caption{
	background:rgba(187,89,10,0.8);
}

.portfolio_handels-gesellschaftsrecht .title:before{
	content:"\f0d6";
	}

/**  Immobilien- Grundstücksrecht **/	
.portfolio_immobilien-grundstuecksrecht > .portfolioliste_inside > .frontside > .caption{
	background:rgba(39,50,132,0.8);
}

.portfolio_immobilien-grundstuecksrecht .title:before{
	content:"\f015";
	}

/**  Medizinrecht **/	
.portfolio_medizinrecht > .portfolioliste_inside > .frontside > .caption{
	background:rgba(69,62,53,0.8);
}

.portfolio_medizinrecht .title:before{
	content:"\f0fa";
	}

/**  Reise- Tourismusrecht **/	
.portfolio_reise-tourismusrecht > .portfolioliste_inside > .frontside > .caption{
	background:rgba(4,128,187,0.8);
	}

.portfolio_reise-tourismusrecht .title:before{
	content:"\f09e";
	}

/** Inkasso **/	
.portfolio_inkasso > .portfolioliste_inside > .frontside > .caption{
	background:rgba(213,61,23,0.8);
	}	

.portfolio_inkasso .title:before{
	content:"\f1e2";
	}

/**  Verkehrsrecht **/	
.portfolio_verkehrsrecht > .portfolioliste_inside > .frontside > .caption{
	background:rgba(33,99,90,0.8);
	}	

.portfolio_verkehrsrecht .title:before{
	content:"\f1b9";
	}

#wrap_ueberschrift-portfolio{
	position: relative;
    z-index: 999;
	}

#ueberschrift-portfolio h1, #ueberschrift-portfolio h2, #ueberschrift-team h1, #ueberschrift-team h2{
	margin:0px;
	}

#anwaelte .team-darstellung, #notare-uebersicht .team-darstellung {
    background: #f8f8f8 none repeat scroll 0 0;
    border: 1px solid #f4f4f4;
    padding: 4%;
}

.ce_gallery img:not(.iso_image){
	width:100%;
	}

.trennlinie{
	width:100%;
	height:1px;
	background:#ccc;
	margin-bottom:1%;
	}


@media (min-width:767px){
	
#anwaelte .autogrid_wrapper, #notare-uebersicht .autogrid_wrapper{
	margin-bottom:2%;
	}
}

@media (max-width:767px){

#anwaelte .iteminside img, #notare-uebersicht .iteminside img{
	width:100%;
	}

}

@media (max-width:919px){
	
#anwaelte .tel, #anwaelte .e_mail{
		font-size:16px;
		}
	
	}


/****** Anwälte Sidebar *****/

.dietmar-schubert .beitraege-anwalt, .eckhard-simon .beitraege-anwalt,
.dietmar-schubert .termine-anwalt, .eckhard-simon .termine-anwalt,
.dietmar-schubert .trennlinie-anwalt.first, .eckhard-simon .trennlinie-anwalt.first{
	display:none;
	
}

/****** Themengebiete Sidebar *****/

.ce_text-mit-bild-erweitert:hover{
		opacity:0.9;
		}

.ce_text-mit-bild-erweitert.first {
    padding-bottom: 12px;
}

.ce_text-mit-bild-erweitert {
    border-bottom: 1px solid #ccc;
    padding-bottom: 12px;
	padding-top:12px;
	transition: all 0.3s ease 0s;
}

.ce_text-mit-bild-erweitert.last {
    border-bottom: solid 0px;
}

#headline-themengebiete{
	color: #4d4f4f;
    font-family: "Open Sans Condensed",sans-serif;
    font-weight: 100;
    line-height: 1.4em;
    margin-bottom: 0.5em;
    padding: 0;
	font-size:32px;
	}
	
#headline-branchen{
	color: #4d4f4f;
    font-family: "Open Sans Condensed",sans-serif;
    font-weight: 100;
    line-height: 1.4em;
    margin-bottom: 0.5em;
    padding: 0;
	font-size:22px;
	}

.sidebar-themengebiete img{
		width:40px;
		}

.sidebar-themengebiete h3{
		margin-top:10px;
		}


/****** Author Sidebar *****/

#author-sidebar .back{
	display:none;
	}

#author-sidebar{
	margin-top:57px;
	}

#author-sidebar .name-anwalt{
	margin-top:10px;
	}
	
#author-sidebar .trennlinie-anwalt{
	display:none;
	}

/****** STARTSEITE TEAM *****/	
	
#wrap_team .image_container img{
	max-width:100%;
	width:100%;
	margin-bottom:0px;
	}

#wrap_ueberschrift-team {
    position: relative;
    z-index: 999;
}

#wrap_team .image_container {
    margin-bottom: 0px;
}

/**************** CONTENT PAGE ***************/

.sidebar-seitenname, #ansprechpartner{
	font-size:20px;
	}

.sidebar-linie-ansprechpartner{
	width:100%;
	height:2px;
	background:#e3e3e3;
	margin-bottom:14px;
	}

.sidebar-linie{
	width:100%;
	height:2px;
	background:#e3e3e3;
	}

/****** ANWÄLTE *****/

.anwaelte-siderbar{}
.trennlinie-anwalt{
	height:2px;
	width:100%;
	background:#ccc;
	margin:24px 0px;
	}
.name-anwalt, .beitraege-anwalt, .termine-anwalt, .ueberschrift-anwalt{
		font-size:26px;
		}
.tel-anwalt{
	margin-top:24px;
	}
	

.beitraege-anwalt{
		margin-bottom:12px;
		}
.termine-anwalt{}
.ueberschrift-anwalt{}

.beitraege-anwalt, .termine-anwalt{
	display:block;
	}


.liste-anwalt li:before, .beitraege-anwalt:before, .termine-anwalt:before{
		font-family:fontawesome;
		content:"\f061";
		margin-right:8px;
		font-size:14px;
		vertical-align:top;
		}
		
.link-anwalt{
		transition:height 0.3s ease 0s;
		}

.link-anwalt:hover, .termine-anwalt:hover, .beitraege-anwalt:hover, 
.liste-anwalt li:hover before, .beitraege-anwalt:hover:before, .termine-anwalt:hover:before,
.liste-anwalt li:hover{
		color:rgb(0, 63, 91);
		}


/* 
#sidebar-e_simon .vcard-anwalt, #sidebar-schubert .vcard-anwalt{
	display:none;
	}

#sidebar-e_simon .trennlinie-anwalt.first, #sidebar-e_simon .beitraege-anwalt, #sidebar-e_simon .termine-anwalt,
#sidebar-schubert .trennlinie-anwalt.first, #sidebar-schubert .beitraege-anwalt, #sidebar-schubert .termine-anwalt
{
	display:none;
}
 */

/****** ICONS *****/

.vcard-anwalt img {
    width: 30px;
}

.icon:before{
	font-family:fontawesome;
	color:rgb(0, 63, 91);
	font-size:48px;
	display:block;
	margin-top:25px;
	margin-bottom:15px;
	}

.icon.arbeitsrecht:before{
	content:"\f085";
	}
	
.icon.bank-kapitalmarktrecht:before{
	content:"\f19c";
	}
	
.icon.bau-architektenrecht:before{
	content:"\f1b3";
	}
	
.icon.erbrecht:before{
	content:"\f0c0";
	}
	
.icon.familienrecht:before{
	content:"\f12e";
	}
	
.icon.handels-gesellschaftsrecht:before{
	content:"\f0d6";
	}

.icon.immobilien-grundstuecksrecht:before{
	content:"\f015";
	}
	
.icon.medizinrecht:before{
	content:"\f0fa";
	}

.icon.energie-telekommunikationsrecht:before{
	content:"\f09e";
	}
	
.icon.verkehrsrecht:before{
	content:"\f1b9";
	}

.icon.inkasso:before{
	content:"\f1e2";
	}

/****** NAVIGATION SIDEBAR *****/

#navigation-sidebar {
    margin: 5px 0;
}

#navigation-sidebar a:before, #navigation-sidebar span:before{
	font-family:fontawesome;
	color:#808080;
	font-size:18px;
	display:inline-block;
	margin-left:1px;
	margin-right:15px;
	font-weight:normal;
	}

#navigation-sidebar .arbeitsrecht:before{
	content:"\f085";
	}
	
#navigation-sidebar .bank-kapitalmarktrecht:before{
	content:"\f19c";
	}

#navigation-sidebar .bau-architektenrecht:before{
	content:"\f1b3";
	}

#navigation-sidebar .erbrecht:before{
	content:"\f0c0";
	}
	
#navigation-sidebar .familienrecht:before{
	content:"\f12e";
	}
	
#navigation-sidebar .handels-gesellschaftsrecht:before{
	content:"\f0d6";
	}
	
#navigation-sidebar .immobilien-grundstuecksrecht:before{
	content:"\f015";
	}
	
#navigation-sidebar .medizinrecht:before{
	content:"\f0fa";
	}
	
#navigation-sidebar .reise-tourismusrecht:before{
	content:"\f072";
	}
	
#navigation-sidebar .energie-telekommunikationsrecht:before{
	content:"\f09e";
	}
	
#navigation-sidebar .verkehrsrecht:before{
	content:"\f1b9";
	}
	
#navigation-sidebar .inkasso:before{
	content:"\f1e2";
	}

#navigation-sidebar .arbeitsrecht:before, #navigation-sidebar .bank-kapitalmarktrecht:before, #navigation-sidebar .bau-architektenrecht:before,
#navigation-sidebar .erbrecht:before, #navigation-sidebar .familienrecht:before, #navigation-sidebar .handels-gesellschaftsrecht:before,
#navigation-sidebar .immobilien-grundstuecksrecht:before, #navigation-sidebar .medizinrecht:before, #navigation-sidebar .reise-tourismusrecht:before, #navigation-sidebar .verkehrsrecht:before, #navigation-sidebar .inkasso:before,#navigation-sidebar .energie-telekommunikationsrecht:before{
	display:inline-block;
	width:22px;
	text-align:center;
	transition: all 0.3s ease 0s;
	}

#navigation-sidebar .arbeitsrecht:hover:before, #navigation-sidebar .bank-kapitalmarktrecht:hover:before, #navigation-sidebar .bau-architektenrecht:hover:before,
#navigation-sidebar .erbrecht:hover:before, #navigation-sidebar .familienrecht:hover:before, #navigation-sidebar .handels-gesellschaftsrecht:hover:before,
#navigation-sidebar .immobilien-grundstuecksrecht:hover:before, #navigation-sidebar .medizinrecht:hover:before, #navigation-sidebar .reise-tourismusrecht:hover:before, #navigation-sidebar .verkehrsrecht:hover:before, #navigation-sidebar .inkasso:hover:before{
		color:rgb(0, 63, 91);
		}

#navigation-sidebar li a:hover, #navigation-sidebar li span:hover{
		color:rgb(0, 63, 91)
		transition: all 0.3s ease 0s;
		;}

#navigation-sidebar {
    margin: 5px 0;
}


h2.headline-sidebar-rechtsgebiete{
	font-size:20px;
	margin-top:20px;
	}

/****** Aktuelles *****/

#aktuelles .sidebar-themengebiete{
	 padding-left:20px; 
	}

#aktuelles .one_fourth{
	box-shadow:-19px 0 16px -20px rgba(0, 0, 0, 0.2);
}

.nachrichtenliste{
	border-bottom:solid 1px #ccc;
	padding-bottom:20px;
	margin-bottom:35px;
	}

.nachrichtenliste.block.last.odd{
	border-bottom:none!important;
	}


.pagination-top, .pagination-bottom, .pagination-main {
    display: inline-block;
}

@media (max-width:767px){

.pagination-top, .pagination-bottom, .pagination-main {
    display: table;
    margin-bottom:10px;
}

.pagination-bottom{
	margin-bottom:0px;
	}

}


/****** TEAM *****/

.teambox_3{
	padding:4%;}

/****** Kontakt *****/

#adresse-und-kontaktformular h2{
	font-size:32px;
	}

	
/****** FOOTER *****/

.ce_adressblock .adressblock_email:before, .ce_adressblock .adressblock_fax:before, .ce_adressblock .adressblock_tel:before, .ce_adressblock .adressblock_adresse:before, .ce_adressblock .adressblock_oeffnungszeiten:before{
	color:#808080;
	}

.ce_adressblock .adressblock_adresse:before{
	left:1px;
	}

.submit:hover{
	cursor:pointer;
	}
	
.ce_adressblock .adressblock_oeffnungszeiten {
    padding-left: 30px;
    position: relative;
}
	
.ce_adressblock .adressblock_oeffnungszeiten:before {
    font-family: "icons";
    content: "\ec19";
    text-indent: 0;
    display: inline-block;
    position: absolute;
    top: 4px;
    left: 0;
    margin-right: 5px;
}

.ce_adressblock .adressblock_oeffnungszeiten table,
.footer-oeffnungszeiten table {
	border-bottom: solid 1px #E3E3E3;
}

.ce_adressblock .adressblock_oeffnungszeiten table td,
.footer-oeffnungszeiten table td {
	padding: 5px 0;
}


@charset "UTF-8";

 @font-face {
  font-family: 'icons';
  src: url('../../files/cto_layout/font/icons.eot?158270');
  src: url('../../files/cto_layout/font/icons.eot?158270#iefix') format('embedded-opentype'),
       url('../../files/cto_layout/font/icons.woff?158270') format('woff'),
       url('../../files/cto_layout/font/icons.ttf?158270') format('truetype'),
       url('../../files/cto_layout/font/icons.svg?158270#icons') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'icons';
    src: url('../../files/cto_layout/font/icons.svg?158270#icons') format('svg');
  }
}
*/

/*     --initialize
------------------------------------------------- */
[class^="icon-"]:before,
[class*="icon-"]:before,
i[class^="icon-"]:before,
i[class*="icon-"]:before,
.mod_navigation li[class^="icon-"] a:before,
.mod_navigation li[class*="icon-"] a:before,
.mod_navigation li[class^="icon-"] span:before,
.mod_navigation li[class*="icon-"] span:before,
.ce_headline[class^="icon-"]:before,
.ce_headline[class*="icon-"]:before,
.button[class^="icon-"]:before,
.button[class*="icon-"]:before,
.ce_hyperlink a[class^="icon-"]:before,
.ce_hyperlink a[class*="icon-"]:before,
.servicebox[class^="icon-"]:before,
.servicebox[class*="icon-"]:before,
.servicebox_2[class^="icon-"]:before,
.servicebox_2[class*="icon-"]:before,
.servicebox_8[class^="icon-"]:before,
.servicebox_8[class*="icon-"]:before,
.servicebox_3[class^="icon-"]:before,
.servicebox_3[class*="icon-"]:before,
.servicebox_4[class^="icon-"]:before,
.servicebox_4[class*="icon-"]:before,
.ce_list li[class^="icon-"] :before,
.ce_list li[class*="icon-"]:before,
.testimonial_4 a[class^="icon-"]:before,
.testimonial_4 a[class*="icon-"]:before{
  font-family: 'icons';
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.5em;
  text-align: center;
  line-height: 1.2em;
}

/*     --forms / input
------------------------------------------------- */
label[class^="icon-"],
label[class*="icon-"] {display: none;}

.input-wrapper span {display: none;}
.input-wrapper:before {display: none;}
.input-wrapper-inside {position:relative; display:table; border-collapse:separate}
.input-wrapper-inside:before {display: none}
.input-wrapper-inside[class^="icon-"] *,
.input-wrapper-inside[class*="icon-"] * {width: 1em;}
.input-wrapper-inside[class^="icon-"] span,
.input-wrapper-inside[class*="icon-"] span {width:1%; white-space:nowrap; vertical-align:middle; display: table-cell; padding:6px 12px; font-size:14px; font-weight:normal; line-height:1; text-align:center; background-color:#eee; border:1px solid #ccc; border-radius:4px 0 0 4px;}
.input-wrapper-inside[class^="icon-"] input,
.input-wrapper-inside[class*="icon-"] input {display: table-cell; width: 100%; margin: 0;}
.input-wrapper-inside[class^="icon-"] i,
.input-wrapper-inside[class*="icon-"] i {margin: 0;}

/*     --forms / submit
------------------------------------------------- */
.submit_container:before {display: none;}
.submit_container .input-wrap {position:relative; display:table; border-collapse:separate}
.submit_container .input-wrap i {width:1%; white-space:nowrap; vertical-align:middle; display: table-cell; padding:6px 12px; font-size:14px; font-weight:normal; line-height:1; text-align:center; background-color:#ECECEC; border:1px solid #ECECEC;}
.submit_container .input-wrap i:before {color: #7B7B7B;}
.submit_container .input-wrap input {display: table-cell; width: 100%; margin: 0;}

/*     --ce_list
------------------------------------------------- */
.ce_list li[class^="icon-"],
.ce_list li[class*="icon-"] {list-style-type: none; position: relative;}
.ce_list li[class^="icon-"]:before,
.ce_list li[class*="icon-"]:before {position: absolute; left: -25px; width: 25px; top: 3px;}

/*     --navi
------------------------------------------------- */
body[class^="icon-"]:before,
body[class*="icon-"]:before,
.mod_navigation li[class^="icon-"]:before,
.mod_navigation li[class*="icon-"]:before {display: none;}
.i-code {display: none;}
.site-icons .row div {float: left; width: 25%;}
.site-icons .row {overflow: hidden;}

/*     --iconbox
------------------------------------------------- */
.iconbox p {margin: 0;}
.iconbox[class^="icon-"]:before, .iconbox[class*="icon-"]:before { font-family:'icons'; font-style:inherit; font-weight:inherit; display:inline-block; text-decoration:inherit; width:1em; margin-right:.5em; text-align:center; line-height:inherit; float: left;} 
 
 /*     --icons
------------------------------------------------- */
.icon-windy-rain-inv:before { content: '\e9bd'; } /* '' */
.icon-duckduckgo:before { content: '\21'; } /* '!' */
.icon-aim:before { content: '\22'; } /* '&quot;' */
.icon-snow-inv:before { content: '\e9be'; } /* '' */
.icon-snow-heavy-inv:before { content: '\e9bf'; } /* '' */
.icon-hash:before { content: '\23'; } /* '#' */
.icon-delicious:before { content: '\e8ea'; } /* '' */
.icon-paypal:before { content: '\24'; } /* '$' */
.icon-money-1:before { content: '\ebce'; } /* '' */
.icon-hail-inv:before { content: '\e9c0'; } /* '' */
.icon-flattr:before { content: '\25'; } /* '%' */
.icon-clouds-inv:before { content: '\e9c1'; } /* '' */
.icon-android:before { content: '\26'; } /* '&amp;' */
.icon-clouds-flash-inv:before { content: '\e9c2'; } /* '' */
.icon-temperature:before { content: '\e9c3'; } /* '' */
.icon-eventful:before { content: '\27'; } /* ''' */
.icon-compass-2:before { content: '\28'; } /* '(' */
.icon-na:before { content: '\29'; } /* ')' */
.icon-celcius:before { content: '\e9c4'; } /* '' */
.icon-smashmag:before { content: '\2a'; } /* '*' */
.icon-gplus:before { content: '\e8fd'; } /* '' */
.icon-plus-5:before { content: '\ebf2'; } /* '' */
.icon-fahrenheit:before { content: '\e9c5'; } /* '' */
.icon-plus-4:before { content: '\e900'; } /* '' */
.icon-plus-1:before { content: '\e810'; } /* '' */
.icon-plus-2:before { content: '\e858'; } /* '' */
.icon-plus:before { content: '\2b'; } /* '+' */
.icon-wikipedia:before { content: '\2c'; } /* ',' */
.icon-lanyrd:before { content: '\e8fe'; } /* '' */
.icon-minus-1:before { content: '\e80e'; } /* '' */
.icon-minus:before { content: '\2d'; } /* '-' */
.icon-minus-2:before { content: '\e85a'; } /* '' */
.icon-calendar-4:before { content: '\2e'; } /* '.' */
.icon-stumbleupon:before { content: '\2f'; } /* '/' */
.icon-clouds-flash-alt:before { content: '\e9c6'; } /* '' */
.icon-fivehundredpx:before { content: '\30'; } /* '0' */
.icon-sun-inv-1:before { content: '\e9c7'; } /* '' */
.icon-pinterest:before { content: '\31'; } /* '1' */
.icon-bitcoin:before { content: '\32'; } /* '2' */
.icon-moon-inv-1:before { content: '\e9c8'; } /* '' */
.icon-w3c:before { content: '\33'; } /* '3' */
.icon-cloud-sun-inv:before { content: '\e9c9'; } /* '' */
.icon-cloud-moon-inv:before { content: '\e9ca'; } /* '' */
.icon-foursquare:before { content: '\34'; } /* '4' */
.icon-cloud-inv:before { content: '\e9cb'; } /* '' */
.icon-html5:before { content: '\35'; } /* '5' */
.icon-cloud-flash-inv:before { content: '\e9cc'; } /* '' */
.icon-ie:before { content: '\36'; } /* '6' */
.icon-drizzle-inv:before { content: '\e9cd'; } /* '' */
.icon-call:before { content: '\37'; } /* '7' */
.icon-grooveshark:before { content: '\38'; } /* '8' */
.icon-rain-inv:before { content: '\e9ce'; } /* '' */
.icon-ninetyninedesigns:before { content: '\39'; } /* '9' */
.icon-windy-inv:before { content: '\e9e6'; } /* '' */
.icon-forrst:before { content: '\e97c'; } /* '' */
.icon-colon:before { content: '\3a'; } /* ':' */
.icon-digg:before { content: '\e97b'; } /* '' */
.icon-semicolon:before { content: '\3b'; } /* ';' */
.icon-spotify:before { content: '\e97a'; } /* '' */
.icon-info-3:before { content: '\ebcd'; } /* '' */
.icon-reddit:before { content: '\3e'; } /* '&gt;' */
.icon-question:before { content: '\ebcc'; } /* '' */
.icon-guest:before { content: '\3f'; } /* '?' */
.icon-gowalla:before { content: '\e979'; } /* '' */
.icon-at-1:before { content: '\e929'; } /* '' */
.icon-at-3:before { content: '\ec48'; } /* '' */
.icon-at:before { content: '\40'; } /* '@' */
.icon-sunrise:before { content: '\e9e3'; } /* '' */
.icon-appstore:before { content: '\41'; } /* 'A' */
.icon-sun-2:before { content: '\e9e2'; } /* '' */
.icon-blogger-1:before { content: '\42'; } /* 'B' */
.icon-moon-2:before { content: '\e9df'; } /* '' */
.icon-cc-1:before { content: '\43'; } /* 'C' */
.icon-dribbble:before { content: '\44'; } /* 'D' */
.icon-eclipse:before { content: '\e9e7'; } /* '' */
.icon-mist:before { content: '\e9dc'; } /* '' */
.icon-evernote:before { content: '\45'; } /* 'E' */
.icon-wind:before { content: '\e9db'; } /* '' */
.icon-flickr:before { content: '\46'; } /* 'F' */
.icon-snowflake:before { content: '\e9da'; } /* '' */
.icon-google:before { content: '\47'; } /* 'G' */
.icon-cloud-sun:before { content: '\e9d9'; } /* '' */
.icon-viadeo:before { content: '\48'; } /* 'H' */
.icon-instapaper:before { content: '\49'; } /* 'I' */
.icon-cloud-moon:before { content: '\e9d8'; } /* '' */
.icon-fog-sun:before { content: '\e9d7'; } /* '' */
.icon-weibo:before { content: '\4a'; } /* 'J' */
.icon-klout:before { content: '\4b'; } /* 'K' */
.icon-fog-moon:before { content: '\e9d5'; } /* '' */
.icon-fog-cloud:before { content: '\e9d6'; } /* '' */
.icon-linkedin-2:before { content: '\4c'; } /* 'L' */
.icon-meetup:before { content: '\4d'; } /* 'M' */
.icon-fog:before { content: '\e9d4'; } /* '' */
.icon-vk:before { content: '\4e'; } /* 'N' */
.icon-cloud-3:before { content: '\e9d3'; } /* '' */
.icon-cloud-flash:before { content: '\4f'; } /* 'O' */
.icon-cloud-flash-alt:before { content: '\e9d1'; } /* '' */
.icon-plancast:before { content: '\50'; } /* 'P' */
.icon-drizzle:before { content: '\e9d2'; } /* '' */
.icon-disqus:before { content: '\51'; } /* 'Q' */
.icon-rain-1:before { content: '\e9d0'; } /* '' */
.icon-rss-5:before { content: '\52'; } /* 'R' */
.icon-windy:before { content: '\e9cf'; } /* '' */
.icon-skype-2:before { content: '\53'; } /* 'S' */
.icon-windy-rain:before { content: '\e9e5'; } /* '' */
.icon-twitter-3:before { content: '\54'; } /* 'T' */
.icon-youtube-1:before { content: '\55'; } /* 'U' */
.icon-snow:before { content: '\e9e4'; } /* '' */
.icon-vimeo-1:before { content: '\56'; } /* 'V' */
.icon-snow-alt:before { content: '\e9e1'; } /* '' */
.icon-snow-heavy:before { content: '\e9e0'; } /* '' */
.icon-windows:before { content: '\57'; } /* 'W' */
.icon-xing:before { content: '\58'; } /* 'X' */
.icon-hail:before { content: '\e9de'; } /* '' */
.icon-yahoo:before { content: '\59'; } /* 'Y' */
.icon-clouds:before { content: '\e9dd'; } /* '' */
.icon-clouds-flash:before { content: '\5a'; } /* 'Z' */
.icon-chrome:before { content: '\5b'; } /* '[' */
.icon-email:before { content: '\5d'; } /* ']' */
.icon-macstore:before { content: '\5e'; } /* '^' */
.icon-myspace:before { content: '\5f'; } /* '_' */
.icon-podcast:before { content: '\60'; } /* '`' */
.icon-amazon:before { content: '\61'; } /* 'a' */
.icon-steam:before { content: '\62'; } /* 'b' */
.icon-cloudapp:before { content: '\63'; } /* 'c' */
.icon-ebay:before { content: '\65'; } /* 'e' */
.icon-facebook-3:before { content: '\66'; } /* 'f' */
.icon-github-2:before { content: '\67'; } /* 'g' */
.icon-googleplay:before { content: '\e97d'; } /* '' */
.icon-itunes:before { content: '\69'; } /* 'i' */
.icon-plurk:before { content: '\6a'; } /* 'j' */
.icon-songkick:before { content: '\6b'; } /* 'k' */
.icon-gmail:before { content: '\6d'; } /* 'm' */
.icon-pinboard:before { content: '\6e'; } /* 'n' */
.icon-openid:before { content: '\6f'; } /* 'o' */
.icon-quora:before { content: '\71'; } /* 'q' */
.icon-soundcloud:before { content: '\73'; } /* 's' */
.icon-tumblr-1:before { content: '\74'; } /* 't' */
.icon-eventasaurus:before { content: '\76'; } /* 'v' */
.icon-wordpress-1:before { content: '\77'; } /* 'w' */
.icon-yelp:before { content: '\79'; } /* 'y' */
.icon-intensedebate:before { content: '\7b'; } /* '{' */
.icon-eventbrite:before { content: '\7c'; } /* '|' */
.icon-posterous:before { content: '\7e'; } /* '~' */
.icon-pilcrow:before { content: '\b6'; } /* '¶' */
.icon-opentable:before { content: '\c7'; } /* 'Ç' */
.icon-cart:before { content: '\c9'; } /* 'É' */
.icon-print-3:before { content: '\d1'; } /* 'Ñ' */
.icon-angellist:before { content: '\d6'; } /* 'Ö' */
.icon-instagram:before { content: '\dc'; } /* 'Ü' */
.icon-dwolla:before { content: '\e0'; } /* 'à' */
.icon-appnet:before { content: '\e1'; } /* 'á' */
.icon-statusnet:before { content: '\e2'; } /* 'â' */
.icon-acrobat:before { content: '\e3'; } /* 'ã' */
.icon-drupal:before { content: '\e4'; } /* 'ä' */
.icon-buffer:before { content: '\e5'; } /* 'å' */
.icon-pocket:before { content: '\e7'; } /* 'ç' */
.icon-bitbucket:before { content: '\e9'; } /* 'é' */
.icon-info:before { content: '\2139'; } /* 'ℹ' */
.icon-info-1:before { content: '\e866'; } /* '' */
.icon-left:before { content: '\2190'; } /* '←' */
.icon-left-2:before { content: '\e881'; } /* '' */
.icon-left-5:before { content: '\ec0f'; } /* '' */
.icon-left-1:before { content: '\e83d'; } /* '' */
.icon-up-6:before { content: '\ec0d'; } /* '' */
.icon-up-4:before { content: '\e91c'; } /* '' */
.icon-up-2:before { content: '\e87f'; } /* '' */
.icon-up-1:before { content: '\e83b'; } /* '' */
.icon-up:before { content: '\2191'; } /* '↑' */
.icon-right-5:before { content: '\ec0e'; } /* '' */
.icon-right-1:before { content: '\e83c'; } /* '' */
.icon-right-2:before { content: '\e880'; } /* '' */
.icon-right:before { content: '\2192'; } /* '→' */
.icon-down-4:before { content: '\e910'; } /* '' */
.icon-down:before { content: '\2193'; } /* '↓' */
.icon-down-6:before { content: '\ec10'; } /* '' */
.icon-down-1:before { content: '\e83e'; } /* '' */
.icon-down-2:before { content: '\e882'; } /* '' */
.icon-back-alt:before { content: '\e707'; } /* '' */
.icon-level-down:before { content: '\21b3'; } /* '↳' */
.icon-undo:before { content: '\21b6'; } /* '↶' */
.icon-exchange:before { content: '\21c4'; } /* '⇄' */
.icon-switch:before { content: '\ead7'; } /* '' */
.icon-left-fat:before { content: '\ec22'; } /* '' */
.icon-up-fat:before { content: '\ec23'; } /* '' */
.icon-down-fat:before { content: '\ec21'; } /* '' */
.icon-left-bold-1:before { content: '\ec0b'; } /* '' */
.icon-up-bold-1:before { content: '\ec20'; } /* '' */
.icon-right-bold-1:before { content: '\ec1f'; } /* '' */
.icon-down-bold:before { content: '\ec0c'; } /* '' */
.icon-infinity:before { content: '\221e'; } /* '∞' */
.icon-infinity-1:before { content: '\e9ff'; } /* '' */
.icon-plus-squared-1:before { content: '\eaca'; } /* '' */
.icon-home-1:before { content: '\e80b'; } /* '' */
.icon-home-4:before { content: '\e8fc'; } /* '' */
.icon-home-5:before { content: '\ebed'; } /* '' */
.icon-home:before { content: '\2302'; } /* '⌂' */
.icon-home-2:before { content: '\e865'; } /* '' */
.icon-hourglass-1:before { content: '\ec17'; } /* '' */
.icon-keyboard:before { content: '\2328'; } /* '⌨' */
.icon-split:before { content: '\2387'; } /* '⎇' */
.icon-pause-1:before { content: '\e836'; } /* '' */
.icon-pause:before { content: '\2389'; } /* '⎉' */
.icon-pause-2:before { content: '\e88c'; } /* '' */
.icon-eject-1:before { content: '\23cf'; } /* '⏏' */
.icon-fast-fw:before { content: '\23e9'; } /* '⏩' */
.icon-fast-fw-1:before { content: '\e844'; } /* '' */
.icon-fast-bw-1:before { content: '\e845'; } /* '' */
.icon-fast-bw:before { content: '\23ea'; } /* '⏪' */
.icon-to-end-1:before { content: '\e835'; } /* '' */
.icon-to-end:before { content: '\23ed'; } /* '⏭' */
.icon-to-end-2:before { content: '\e88e'; } /* '' */
.icon-to-start-2:before { content: '\e88d'; } /* '' */
.icon-to-start:before { content: '\23ee'; } /* '⏮' */
.icon-to-start-1:before { content: '\e843'; } /* '' */
.icon-stopwatch-1:before { content: '\ec18'; } /* '' */
.icon-clock-6:before { content: '\ec19'; } /* '' */
.icon-hourglass:before { content: '\23f3'; } /* '⏳' */
.icon-stop:before { content: '\25aa'; } /* '▪' */
.icon-stop-1:before { content: '\e837'; } /* '' */
.icon-stop-2:before { content: '\e88b'; } /* '' */
.icon-up-dir-1:before { content: '\e9ec'; } /* '' */
.icon-up-dir:before { content: '\25b4'; } /* '▴' */
.icon-glyph78:before { content: '\e911'; } /* '' */
.icon-play-1:before { content: '\e838'; } /* '' */
.icon-play-2:before { content: '\e889'; } /* '' */
.icon-play:before { content: '\25b6'; } /* '▶' */
.icon-right-dir-2:before { content: '\e95e'; } /* '' */
.icon-right-dir-1:before { content: '\e912'; } /* '' */
.icon-right-dir:before { content: '\25b8'; } /* '▸' */
.icon-down-dir-2:before { content: '\e95f'; } /* '' */
.icon-down-dir:before { content: '\25be'; } /* '▾' */
.icon-down-dir-1:before { content: '\e914'; } /* '' */
.icon-down-dir-3:before { content: '\e9ea'; } /* '' */
.icon-left-dir-2:before { content: '\e9eb'; } /* '' */
.icon-left-dir:before { content: '\25c2'; } /* '◂' */
.icon-left-dir-1:before { content: '\e913'; } /* '' */
.icon-sun-inv:before { content: '\2600'; } /* '☀' */
.icon-cloud-4:before { content: '\ea54'; } /* '' */
.icon-cloud-1:before { content: '\e895'; } /* '' */
.icon-cloud-2:before { content: '\e966'; } /* '' */
.icon-cloud-6:before { content: '\ec3f'; } /* '' */
.icon-cloud:before { content: '\2601'; } /* '☁' */
.icon-umbrella-1:before { content: '\ea57'; } /* '' */
.icon-umbrella:before { content: '\2602'; } /* '☂' */
.icon-star-4:before { content: '\e8e8'; } /* '' */
.icon-star-2:before { content: '\e84f'; } /* '' */
.icon-star:before { content: '\2605'; } /* '★' */
.icon-star-1:before { content: '\e804'; } /* '' */
.icon-star-5:before { content: '\e92e'; } /* '' */
.icon-star-7:before { content: '\ebd4'; } /* '' */
.icon-star-empty-1:before { content: '\e805'; } /* '' */
.icon-star-empty:before { content: '\2606'; } /* '☆' */
.icon-star-empty-2:before { content: '\ebd5'; } /* '' */
.icon-check:before { content: '\2611'; } /* '☑' */
.icon-trash:before { content: '\e729'; } /* '' */
.icon-left-hand:before { content: '\261c'; } /* '☜' */
.icon-up-hand:before { content: '\261d'; } /* '☝' */
.icon-right-hand:before { content: '\261e'; } /* '☞' */
.icon-down-hand:before { content: '\261f'; } /* '☟' */
.icon-th-list:before { content: '\2630'; } /* '☰' */
.icon-th-list-1:before { content: '\e814'; } /* '' */
.icon-th-list-3:before { content: '\e8ed'; } /* '' */
.icon-th-list-4:before { content: '\e934'; } /* '' */
.icon-sun:before { content: '\263c'; } /* '☼' */
.icon-sun-1:before { content: '\e8de'; } /* '' */
.icon-moon:before { content: '\263d'; } /* '☽' */
.icon-moon-1:before { content: '\263e'; } /* '☾' */
.icon-female-1:before { content: '\ec4a'; } /* '' */
.icon-male-1:before { content: '\ec4b'; } /* '' */
.icon-king:before { content: '\ec4d'; } /* '' */
.icon-heart-empty-2:before { content: '\e84e'; } /* '' */
.icon-heart-empty-1:before { content: '\e803'; } /* '' */
.icon-heart-empty:before { content: '\2661'; } /* '♡' */
.icon-heart-empty-3:before { content: '\e92d'; } /* '' */
.icon-heart-2:before { content: '\e84d'; } /* '' */
.icon-heart-5:before { content: '\e92c'; } /* '' */
.icon-heart-1:before { content: '\e802'; } /* '' */
.icon-heart-4:before { content: '\e8e7'; } /* '' */
.icon-heart-7:before { content: '\ebd2'; } /* '' */
.icon-heart:before { content: '\2665'; } /* '♥' */
.icon-music:before { content: '\266a'; } /* '♪' */
.icon-note-beamed:before { content: '\eac7'; } /* '' */
.icon-music-1:before { content: '\266b'; } /* '♫' */
.icon-th:before { content: '\268f'; } /* '⚏' */
.icon-th-4:before { content: '\e933'; } /* '' */
.icon-th-1:before { content: '\e815'; } /* '' */
.icon-th-3:before { content: '\e8f5'; } /* '' */
.icon-flag-1:before { content: '\e81a'; } /* '' */
.icon-flag:before { content: '\2691'; } /* '⚑' */
.icon-tools:before { content: '\ead3'; } /* '' */
.icon-anchor-2:before { content: '\ec4e'; } /* '' */
.icon-cog-2:before { content: '\e876'; } /* '' */
.icon-cog-4:before { content: '\e952'; } /* '' */
.icon-cog-1:before { content: '\e823'; } /* '' */
.icon-cog:before { content: '\2699'; } /* '⚙' */
.icon-cog-3:before { content: '\e8bf'; } /* '' */
.icon-attention:before { content: '\26a0'; } /* '⚠' */
.icon-attention-4:before { content: '\e93a'; } /* '' */
.icon-attention-2:before { content: '\e8ba'; } /* '' */
.icon-attention-1:before { content: '\e828'; } /* '' */
.icon-attention-3:before { content: '\e904'; } /* '' */
.icon-flash-3:before { content: '\eaef'; } /* '' */
.icon-flash-4:before { content: '\ec40'; } /* '' */
.icon-flash:before { content: '\26a1'; } /* '⚡' */
.icon-flash-1:before { content: '\e8e1'; } /* '' */
.icon-flash-2:before { content: '\ea55'; } /* '' */
.icon-record:before { content: '\26ab'; } /* '⚫' */
.icon-key-1:before { content: '\26bf'; } /* '⚿' */
.icon-rain:before { content: '\26c6'; } /* '⛆' */
.icon-cloud-thunder:before { content: '\26c8'; } /* '⛈' */
.icon-cog-alt:before { content: '\26ef'; } /* '⛯' */
.icon-scissors-1:before { content: '\ea62'; } /* '' */
.icon-scissors:before { content: '\2702'; } /* '✂' */
.icon-tape:before { content: '\eaee'; } /* '' */
.icon-flight-1:before { content: '\e848'; } /* '' */
.icon-flight:before { content: '\2708'; } /* '✈' */
.icon-mail-4:before { content: '\e8e6'; } /* '' */
.icon-mail:before { content: '\2709'; } /* '✉' */
.icon-mail-5:before { content: '\e92b'; } /* '' */
.icon-mail-1:before { content: '\e801'; } /* '' */
.icon-mail-6:before { content: '\ebd1'; } /* '' */
.icon-mail-2:before { content: '\e84c'; } /* '' */
.icon-edit:before { content: '\270d'; } /* '✍' */
.icon-edit-2:before { content: '\e8f0'; } /* '' */
.icon-pencil-2:before { content: '\e86b'; } /* '' */
.icon-pencil:before { content: '\270e'; } /* '✎' */
.icon-pencil-1:before { content: '\e820'; } /* '' */
.icon-pencil-4:before { content: '\e8f2'; } /* '' */
.icon-pencil-3:before { content: '\e8b7'; } /* '' */
.icon-pencil-5:before { content: '\ebf9'; } /* '' */
.icon-pencil-neg:before { content: '\270f'; } /* '✏' */
.icon-pencil-alt:before { content: '\2710'; } /* '✐' */
.icon-pencil-alt-1:before { content: '\e8f1'; } /* '' */
.icon-feather:before { content: '\2712'; } /* '✒' */
.icon-vector-pencil:before { content: '\ec47'; } /* '' */
.icon-ok:before { content: '\2713'; } /* '✓' */
.icon-ok-2:before { content: '\e854'; } /* '' */
.icon-ok-5:before { content: '\e935'; } /* '' */
.icon-ok-6:before { content: '\ebf6'; } /* '' */
.icon-ok-1:before { content: '\e813'; } /* '' */
.icon-ok-4:before { content: '\e8ee'; } /* '' */
.icon-ok-circle:before { content: '\2714'; } /* '✔' */
.icon-ok-circle-1:before { content: '\e855'; } /* '' */
.icon-ok-circle-2:before { content: '\e936'; } /* '' */
.icon-cancel-5:before { content: '\e937'; } /* '' */
.icon-cancel-1:before { content: '\e812'; } /* '' */
.icon-cancel-4:before { content: '\e8ef'; } /* '' */
.icon-cancel-2:before { content: '\e856'; } /* '' */
.icon-cancel:before { content: '\2715'; } /* '✕' */
.icon-cancel-circle-4:before { content: '\e938'; } /* '' */
.icon-cancel-circle-2:before { content: '\e857'; } /* '' */
.icon-cancel-circle-3:before { content: '\e8ff'; } /* '' */
.icon-cancel-circle-1:before { content: '\e811'; } /* '' */
.icon-cancel-circle:before { content: '\2716'; } /* '✖' */
.icon-asterisk:before { content: '\2731'; } /* '✱' */
.icon-cancel-6:before { content: '\ebf4'; } /* '' */
.icon-cancel-squared:before { content: '\eac8'; } /* '' */
.icon-help:before { content: '\2753'; } /* '❓' */
.icon-help-1:before { content: '\e867'; } /* '' */
.icon-help-circled:before { content: '\ebf1'; } /* '' */
.icon-help-circled-alt:before { content: '\ebf0'; } /* '' */
.icon-attention-alt-1:before { content: '\ec01'; } /* '' */
.icon-attention-circle:before { content: '\2757'; } /* '❗' */
.icon-attention-6:before { content: '\ec00'; } /* '' */
.icon-quote-left-alt:before { content: '\275b'; } /* '❛' */
.icon-quote-right-alt:before { content: '\275c'; } /* '❜' */
.icon-quote-left:before { content: '\275d'; } /* '❝' */
.icon-quote-right-1:before { content: '\e86a'; } /* '' */
.icon-quote-right:before { content: '\275e'; } /* '❞' */
.icon-plus-circle-3:before { content: '\e939'; } /* '' */
.icon-plus-circle:before { content: '\2795'; } /* '➕' */
.icon-plus-circle-1:before { content: '\e80f'; } /* '' */
.icon-plus-circle-2:before { content: '\e859'; } /* '' */
.icon-minus-circle-1:before { content: '\e80d'; } /* '' */
.icon-minus-circle-2:before { content: '\e868'; } /* '' */
.icon-minus-circle:before { content: '\2796'; } /* '➖' */
.icon-minus-circle-3:before { content: '\e946'; } /* '' */
.icon-right-thin:before { content: '\27a1'; } /* '➡' */
.icon-direction:before { content: '\27a2'; } /* '➢' */
.icon-forward:before { content: '\27a6'; } /* '➦' */
.icon-forward-3:before { content: '\e940'; } /* '' */
.icon-forward-1:before { content: '\e81e'; } /* '' */
.icon-ccw:before { content: '\27f2'; } /* '⟲' */
.icon-cw-2:before { content: '\e888'; } /* '' */
.icon-cw-4:before { content: '\e91d'; } /* '' */
.icon-cw-3:before { content: '\e8c4'; } /* '' */
.icon-cw-1:before { content: '\e83a'; } /* '' */
.icon-cw:before { content: '\27f3'; } /* '⟳' */
.icon-arrow-curved:before { content: '\2935'; } /* '⤵' */
.icon-squares:before { content: '\ebcf'; } /* '' */
.icon-left-thin:before { content: '\2b05'; } /* '⬅' */
.icon-up-thin:before { content: '\2b06'; } /* '⬆' */
.icon-down-thin:before { content: '\2b07'; } /* '⬇' */
.icon-resize-vertical:before { content: '\2b0c'; } /* '⬌' */
.icon-resize-vertical-1:before { content: '\e884'; } /* '' */
.icon-resize-horizontal-1:before { content: '\e88a'; } /* '' */
.icon-resize-horizontal:before { content: '\2b0d'; } /* '⬍' */
.icon-eject:before { content: '\2ecf'; } /* '⻏' */
.icon-cog-5:before { content: '\ec0a'; } /* '' */
.icon-zoom-out-4:before { content: '\ecea'; } /* '' */
.icon-heart-9:before { content: '\ed7d'; } /* '' */
.icon-sun-filled:before { content: '\eb73'; } /* '' */
.icon-ajust-1:before { content: '\e8df'; } /* '' */
.icon-cloud-8:before { content: '\ed94'; } /* '' */
.icon-zoom-in-4:before { content: '\ece9'; } /* '' */
.icon-anchor-outline:before { content: '\eba3'; } /* '' */
.icon-youtube-3:before { content: '\ed78'; } /* '' */
.icon-star-9:before { content: '\ed7e'; } /* '' */
.icon-wrench-circled:before { content: '\ecdd'; } /* '' */
.icon-tv:before { content: '\ed9a'; } /* '' */
.icon-anchor-1:before { content: '\eba4'; } /* '' */
.icon-list-add:before { content: '\e003'; } /* '' */
.icon-sound:before { content: '\ed9d'; } /* '' */
.icon-archive-2:before { content: '\eb26'; } /* '' */
.icon-wrench-4:before { content: '\ecde'; } /* '' */
.icon-wordpress-2:before { content: '\ed77'; } /* '' */
.icon-videocam-4:before { content: '\ed80'; } /* '' */
.icon-list-4:before { content: '\eada'; } /* '' */
.icon-reply-outline:before { content: '\eb31'; } /* '' */
.icon-trash-8:before { content: '\ed8c'; } /* '' */
.icon-accessibility:before { content: '\ed54'; } /* '' */
.icon-reply-1:before { content: '\e8a6'; } /* '' */
.icon-website-circled:before { content: '\ec98'; } /* '' */
.icon-user-8:before { content: '\ed7f'; } /* '' */
.icon-down-outline:before { content: '\eb62'; } /* '' */
.icon-website:before { content: '\ec97'; } /* '' */
.icon-down-3:before { content: '\e8c8'; } /* '' */
.icon-key-5:before { content: '\ed8e'; } /* '' */
.icon-warning-1:before { content: '\eca7'; } /* '' */
.icon-down-small:before { content: '\eb5e'; } /* '' */
.icon-search-8:before { content: '\ed7b'; } /* '' */
.icon-cog-7:before { content: '\eda0'; } /* '' */
.icon-forward-outline:before { content: '\eb30'; } /* '' */
.icon-w3c-1:before { content: '\ed76'; } /* '' */
.icon-camera-7:before { content: '\ed81'; } /* '' */
.icon-forward-2:before { content: '\e8a5'; } /* '' */
.icon-volume-up-5:before { content: '\ecd3'; } /* '' */
.icon-tag-7:before { content: '\ed86'; } /* '' */
.icon-volume-off-6:before { content: '\ecd6'; } /* '' */
.icon-left-outline:before { content: '\eb61'; } /* '' */
.icon-left-3:before { content: '\e8c7'; } /* '' */
.icon-lock-9:before { content: '\ed84'; } /* '' */
.icon-volume-down-2:before { content: '\ecd5'; } /* '' */
.icon-left-small:before { content: '\eb5d'; } /* '' */
.icon-lightbulb-2:before { content: '\ed9b'; } /* '' */
.icon-vimeo-4:before { content: '\ed74'; } /* '' */
.icon-pencil-7:before { content: '\ed88'; } /* '' */
.icon-loop-alt-outline:before { content: '\eb58'; } /* '' */
.icon-view-mode:before { content: '\ec8b'; } /* '' */
.icon-diamond:before { content: '\eda7'; } /* '' */
.icon-video-chat:before { content: '\ec93'; } /* '' */
.icon-loop-alt-1:before { content: '\eb57'; } /* '' */
.icon-desktop-3:before { content: '\ed99'; } /* '' */
.icon-resize-full-outline:before { content: '\eb41'; } /* '' */
.icon-video-circled:before { content: '\ec7d'; } /* '' */
.icon-resize-full-3:before { content: '\e8d0'; } /* '' */
.icon-video-5:before { content: '\ec7c'; } /* '' */
.icon-location-8:before { content: '\ed8a'; } /* '' */
.icon-user-7:before { content: '\ec78'; } /* '' */
.icon-eye-7:before { content: '\ed85'; } /* '' */
.icon-resize-normal-outline:before { content: '\eb44'; } /* '' */
.icon-comment-7:before { content: '\ed89'; } /* '' */
.icon-upload-5:before { content: '\ecb6'; } /* '' */
.icon-resize-normal:before { content: '\eb45'; } /* '' */
.icon-inbox-4:before { content: '\ed96'; } /* '' */
.icon-move-outline:before { content: '\eb46'; } /* '' */
.icon-lock-open-alt-2:before { content: '\ec9e'; } /* '' */
.icon-move-2:before { content: '\e8cf'; } /* '' */
.icon-cup:before { content: '\ed8b'; } /* '' */
.icon-lock-open-8:before { content: '\ec9d'; } /* '' */
.icon-universal-access:before { content: '\ed55'; } /* '' */
.icon-loop-outline:before { content: '\eb59'; } /* '' */
.icon-mobile-6:before { content: '\ed98'; } /* '' */
.icon-twitter-8:before { content: '\ed72'; } /* '' */
.icon-doc-8:before { content: '\ed8d'; } /* '' */
.icon-mail-8:before { content: '\ed7c'; } /* '' */
.icon-right-outline:before { content: '\eb60'; } /* '' */
.icon-tumblr-4:before { content: '\ed73'; } /* '' */
.icon-right-3:before { content: '\e8c6'; } /* '' */
.icon-trash-circled:before { content: '\ecc2'; } /* '' */
.icon-thumbs-up-5:before { content: '\ed87'; } /* '' */
.icon-photo-1:before { content: '\ed82'; } /* '' */
.icon-trash-7:before { content: '\ecc1'; } /* '' */
.icon-right-small:before { content: '\ebc9'; } /* '' */
.icon-note:before { content: '\eda1'; } /* '' */
.icon-torso:before { content: '\ec7b'; } /* '' */
.icon-clock-8:before { content: '\ed9c'; } /* '' */
.icon-arrows-cw-outline:before { content: '\eb5a'; } /* '' */
.icon-tint-1:before { content: '\ed42'; } /* '' */
.icon-arrows-cw-1:before { content: '\e8c3'; } /* '' */
.icon-clock-circled:before { content: '\ecd0'; } /* '' */
.icon-paper-plane-2:before { content: '\ed93'; } /* '' */
.icon-up-outline:before { content: '\eb5f'; } /* '' */
.icon-params:before { content: '\ed9f'; } /* '' */
.icon-clock-7:before { content: '\ecd1'; } /* '' */
.icon-thumbs-up-4:before { content: '\ecb9'; } /* '' */
.icon-up-3:before { content: '\e8c5'; } /* '' */
.icon-money-2:before { content: '\eda4'; } /* '' */
.icon-thumbs-down-4:before { content: '\ed1c'; } /* '' */
.icon-up-small:before { content: '\eb5c'; } /* '' */
.icon-database-2:before { content: '\ed8f'; } /* '' */
.icon-th-list-6:before { content: '\ec8c'; } /* '' */
.icon-music-4:before { content: '\ed7a'; } /* '' */
.icon-at-2:before { content: '\ebab'; } /* '' */
.icon-megaphone-3:before { content: '\ed90'; } /* '' */
.icon-attach-outline:before { content: '\eb38'; } /* '' */
.icon-th-large-3:before { content: '\ec8e'; } /* '' */
.icon-attach-4:before { content: '\eb39'; } /* '' */
.icon-graduation-cap-1:before { content: '\ed91'; } /* '' */
.icon-th-5:before { content: '\ec8d'; } /* '' */
.icon-cancel-alt-1:before { content: '\eb05'; } /* '' */
.icon-beaker-1:before { content: '\eda2'; } /* '' */
.icon-text-width-1:before { content: '\ed27'; } /* '' */
.icon-text-height-1:before { content: '\ed26'; } /* '' */
.icon-food-1:before { content: '\eda5'; } /* '' */
.icon-cancel-alt:before { content: '\e7b7'; } /* '' */
.icon-t-shirt:before { content: '\eda8'; } /* '' */
.icon-bat-charge-1:before { content: '\e8db'; } /* '' */
.icon-tasks-1:before { content: '\ed34'; } /* '' */
.icon-tags-1:before { content: '\eca2'; } /* '' */
.icon-bat-full-1:before { content: '\e8da'; } /* '' */
.icon-fire-3:before { content: '\ed92'; } /* '' */
.icon-bat-half-1:before { content: '\e8d9'; } /* '' */
.icon-attach-7:before { content: '\ed83'; } /* '' */
.icon-tag-6:before { content: '\eca1'; } /* '' */
.icon-shop-1:before { content: '\eda6'; } /* '' */
.icon-stumbleupon-2:before { content: '\ed71'; } /* '' */
.icon-bat-empty-1:before { content: '\e8d8'; } /* '' */
.icon-calendar-8:before { content: '\ed9e'; } /* '' */
.icon-stop-circled:before { content: '\ecfc'; } /* '' */
.icon-bat-third:before { content: '\e7af'; } /* '' */
.icon-flask:before { content: '\68'; } /* 'h' */
.icon-wallet:before { content: '\eda9'; } /* '' */
.icon-stop-6:before { content: '\ecfd'; } /* '' */
.icon-step-forward:before { content: '\ed0d'; } /* '' */
.icon-cd-3:before { content: '\ed97'; } /* '' */
.icon-beer-2:before { content: '\eba2'; } /* '' */
.icon-step-backward:before { content: '\ed0c'; } /* '' */
.icon-truck-1:before { content: '\eda3'; } /* '' */
.icon-bell-3:before { content: '\eb21'; } /* '' */
.icon-popup-2:before { content: '\e8cb'; } /* '' */
.icon-globe-6:before { content: '\ed95'; } /* '' */
.icon-star-empty-3:before { content: '\ec77'; } /* '' */
.icon-star-circled:before { content: '\ec76'; } /* '' */
.icon-star-8:before { content: '\ec75'; } /* '' */
.icon-briefcase-1:before { content: '\eb87'; } /* '' */
.icon-brush-2:before { content: '\eb88'; } /* '' */
.icon-stackoverflow-1:before { content: '\ed70'; } /* '' */
.icon-volume-1:before { content: '\ecd4'; } /* '' */
.icon-vcard-1:before { content: '\eb2d'; } /* '' */
.icon-calculator:before { content: '\eba7'; } /* '' */
.icon-smiley-circled:before { content: '\ed48'; } /* '' */
.icon-calendar-outlilne:before { content: '\eb48'; } /* '' */
.icon-smiley:before { content: '\ed47'; } /* '' */
.icon-slideshare:before { content: '\ed6f'; } /* '' */
.icon-calendar-5:before { content: '\eb49'; } /* '' */
.icon-camera-outline:before { content: '\eb0c'; } /* '' */
.icon-skype-6:before { content: '\ed6e'; } /* '' */
.icon-signal-5:before { content: '\ed0f'; } /* '' */
.icon-camera-3:before { content: '\e89e'; } /* '' */
.icon-basket-circled:before { content: '\ecdb'; } /* '' */
.icon-block-outline:before { content: '\eb40'; } /* '' */
.icon-basket-5:before { content: '\ecdc'; } /* '' */
.icon-share-2:before { content: '\ecb5'; } /* '' */
.icon-chart-alt-outline:before { content: '\eb9a'; } /* '' */
.icon-chart-alt:before { content: '\eb99'; } /* '' */
.icon-export-5:before { content: '\ecb2'; } /* '' */
.icon-chart-bar-outline:before { content: '\eb98'; } /* '' */
.icon-search-circled:before { content: '\ec6f'; } /* '' */
.icon-search-7:before { content: '\ec6e'; } /* '' */
.icon-target-5:before { content: '\ed0e'; } /* '' */
.icon-desktop-circled:before { content: '\ed11'; } /* '' */
.icon-desktop-2:before { content: '\ed10'; } /* '' */
.icon-chart-pie-outline:before { content: '\eb97'; } /* '' */
.icon-rss-7:before { content: '\eccb'; } /* '' */
.icon-chart-pie-1:before { content: '\e8e3'; } /* '' */
.icon-road-1:before { content: '\ed30'; } /* '' */
.icon-left-open-outline:before { content: '\eb50'; } /* '' */
.icon-backward-circled:before { content: '\ecf6'; } /* '' */
.icon-left-open-2:before { content: '\e8ca'; } /* '' */
.icon-retweet-4:before { content: '\ecab'; } /* '' */
.icon-right-open-outline:before { content: '\eb52'; } /* '' */
.icon-resize-vertical-2:before { content: '\ece6'; } /* '' */
.icon-right-open-2:before { content: '\e8c9'; } /* '' */
.icon-resize-small-4:before { content: '\ece5'; } /* '' */
.icon-clipboard:before { content: '\eb94'; } /* '' */
.icon-upload-cloud-3:before { content: '\eb32'; } /* '' */
.icon-resize-horizontal-2:before { content: '\ece7'; } /* '' */
.icon-play-circle2-1:before { content: '\e048'; } /* '' */
.icon-code-outline:before { content: '\eb2f'; } /* '' */
.icon-resize-full-6:before { content: '\ece3'; } /* '' */
.icon-code-3:before { content: '\eb11'; } /* '' */
.icon-cw-circled:before { content: '\ed03'; } /* '' */
.icon-coffee-1:before { content: '\eba1'; } /* '' */
.icon-cw-5:before { content: '\ed04'; } /* '' */
.icon-cog-outline:before { content: '\eb42'; } /* '' */
.icon-cancel-circled-2:before { content: '\ec86'; } /* '' */
.icon-cancel-circled2:before { content: '\ec85'; } /* '' */
.icon-cancel-7:before { content: '\ec87'; } /* '' */
.icon-arrows-cw-3:before { content: '\ed02'; } /* '' */
.icon-contacts:before { content: '\eb2c'; } /* '' */
.icon-reddit-1:before { content: '\ed5a'; } /* '' */
.icon-credit-card-3:before { content: '\eb95'; } /* '' */
.icon-upload-cloud-outline:before { content: '\eb33'; } /* '' */
.icon-record-2:before { content: '\ecf9'; } /* '' */
.icon-database-1:before { content: '\eb93'; } /* '' */
.icon-shuffle-4:before { content: '\ed01'; } /* '' */
.icon-cancel-circled-outline:before { content: '\eb3d'; } /* '' */
.icon-quote-circled:before { content: '\ecb3'; } /* '' */
.icon-cancel-circled:before { content: '\eb04'; } /* '' */
.icon-quote:before { content: '\ecb4'; } /* '' */
.icon-help-circled-1:before { content: '\ec94'; } /* '' */
.icon-desktop-1:before { content: '\eb77'; } /* '' */
.icon-help-3:before { content: '\ec80'; } /* '' */
.icon-qrcode-1:before { content: '\ed31'; } /* '' */
.icon-tablet-2:before { content: '\eb76'; } /* '' */
.icon-print-5:before { content: '\ecac'; } /* '' */
.icon-plus-circled:before { content: '\ec83'; } /* '' */
.icon-address:before { content: '\e723'; } /* '' */
.icon-plus-6:before { content: '\ec84'; } /* '' */
.icon-divide-outline:before { content: '\eb15'; } /* '' */
.icon-divide:before { content: '\eb16'; } /* '' */
.icon-play-circled2:before { content: '\ecfe'; } /* '' */
.icon-doc-add:before { content: '\eb1d'; } /* '' */
.icon-play-circled-1:before { content: '\ecff'; } /* '' */
.icon-play-5:before { content: '\ed00'; } /* '' */
.icon-doc-remove:before { content: '\eb1e'; } /* '' */
.icon-flight-2:before { content: '\ed20'; } /* '' */
.icon-doc-text-2:before { content: '\eb1b'; } /* '' */
.icon-doc-5:before { content: '\eb14'; } /* '' */
.icon-pinterest-3:before { content: '\ed5b'; } /* '' */
.icon-picture-5:before { content: '\ec92'; } /* '' */
.icon-download-outline:before { content: '\ebcb'; } /* '' */
.icon-picasa-2:before { content: '\ed5c'; } /* '' */
.icon-photo-circled:before { content: '\ec8f'; } /* '' */
.icon-edit-1:before { content: '\e8b6'; } /* '' */
.icon-eject-outline:before { content: '\eb6e'; } /* '' */
.icon-photo:before { content: '\ec90'; } /* '' */
.icon-phone-circled:before { content: '\eccd'; } /* '' */
.icon-eject-3:before { content: '\eb6f'; } /* '' */
.icon-eq-outline:before { content: '\eb17'; } /* '' */
.icon-phone-3:before { content: '\eccc'; } /* '' */
.icon-person:before { content: '\ed4f'; } /* '' */
.icon-eq:before { content: '\3d'; } /* '=' */
.icon-pencil-circled:before { content: '\ecb0'; } /* '' */
.icon-export-outline:before { content: '\eb12'; } /* '' */
.icon-export-2:before { content: '\e8b5'; } /* '' */
.icon-pencil-6:before { content: '\ecb1'; } /* '' */
.icon-pause-circled:before { content: '\ecfa'; } /* '' */
.icon-eye-outline:before { content: '\eb10'; } /* '' */
.icon-eye-3:before { content: '\e8ad'; } /* '' */
.icon-pause-5:before { content: '\ecfb'; } /* '' */
.icon-feather-1:before { content: '\eb19'; } /* '' */
.icon-path:before { content: '\ed5d'; } /* '' */
.icon-video-3:before { content: '\eb00'; } /* '' */
.icon-attach-circled:before { content: '\ec9a'; } /* '' */
.icon-flag-3:before { content: '\eb1a'; } /* '' */
.icon-attach-6:before { content: '\ec99'; } /* '' */
.icon-flag-2:before { content: '\e8ab'; } /* '' */
.icon-ok-circled-1:before { content: '\ec89'; } /* '' */
.icon-ok-circled2:before { content: '\ec88'; } /* '' */
.icon-ok-7:before { content: '\ec8a'; } /* '' */
.icon-off-1:before { content: '\ed2f'; } /* '' */
.icon-flow-split:before { content: '\eb91'; } /* '' */
.icon-flow-merge:before { content: '\eb90'; } /* '' */
.icon-network:before { content: '\ed14'; } /* '' */
.icon-flow-parallel-1:before { content: '\eb8f'; } /* '' */
.icon-music-3:before { content: '\ec6d'; } /* '' */
.icon-flow-cross:before { content: '\eb8e'; } /* '' */
.icon-move-3:before { content: '\ece8'; } /* '' */
.icon-minus-circled:before { content: '\ec81'; } /* '' */
.icon-folder-add:before { content: '\eb23'; } /* '' */
.icon-folder-delete:before { content: '\eb25'; } /* '' */
.icon-minus-4:before { content: '\ec82'; } /* '' */
.icon-mic-circled:before { content: '\ecd7'; } /* '' */
.icon-folder-4:before { content: '\eb22'; } /* '' */
.icon-mic-5:before { content: '\ecd8'; } /* '' */
.icon-gift-1:before { content: '\eb9c'; } /* '' */
.icon-location-circled:before { content: '\ecbe'; } /* '' */
.icon-globe-alt-outline:before { content: '\eb74'; } /* '' */
.icon-location-7:before { content: '\ecbd'; } /* '' */
.icon-users-outline:before { content: '\eafc'; } /* '' */
.icon-male-2:before { content: '\ed56'; } /* '' */
.icon-users-1:before { content: '\e89d'; } /* '' */
.icon-magnet-2:before { content: '\ed3c'; } /* '' */
.icon-lock-circled:before { content: '\ec9c'; } /* '' */
.icon-headphones-2:before { content: '\eb51'; } /* '' */
.icon-heart-6:before { content: '\eaf9'; } /* '' */
.icon-lock-8:before { content: '\ec9b'; } /* '' */
.icon-heart-3:before { content: '\e89a'; } /* '' */
.icon-clipboard-1:before { content: '\ed79'; } /* '' */
.icon-home-outline:before { content: '\eb37'; } /* '' */
.icon-list-5:before { content: '\ed2b'; } /* '' */
.icon-linkedin-7:before { content: '\ed5e'; } /* '' */
.icon-home-3:before { content: '\e8b2'; } /* '' */
.icon-picture-outline:before { content: '\eb0e'; } /* '' */
.icon-leaf-3:before { content: '\ed21'; } /* '' */
.icon-picture-4:before { content: '\eb0d'; } /* '' */
.icon-laptop-circled:before { content: '\ed13'; } /* '' */
.icon-laptop-1:before { content: '\ed12'; } /* '' */
.icon-infinity-outline:before { content: '\eba8'; } /* '' */
.icon-key-4:before { content: '\ed36'; } /* '' */
.icon-info-outline:before { content: '\eb36'; } /* '' */
.icon-italic-1:before { content: '\ed25'; } /* '' */
.icon-iphone-home:before { content: '\ed4e'; } /* '' */
.icon-info-2:before { content: '\e8b3'; } /* '' */
.icon-attention-5:before { content: '\eb24'; } /* '' */
.icon-instagram-2:before { content: '\ed5f'; } /* '' */
.icon-info-circled-1:before { content: '\ec95'; } /* '' */
.icon-check-outline:before { content: '\eb8c'; } /* '' */
.icon-indent-right-2:before { content: '\ed2d'; } /* '' */
.icon-check-1:before { content: '\eb8d'; } /* '' */
.icon-indent-left-2:before { content: '\ed2c'; } /* '' */
.icon-key-outline:before { content: '\eb92'; } /* '' */
.icon-right-hand-1:before { content: '\ed06'; } /* '' */
.icon-left-hand-1:before { content: '\ed07'; } /* '' */
.icon-leaf-2:before { content: '\eb86'; } /* '' */
.icon-down-hand-1:before { content: '\ed08'; } /* '' */
.icon-guidedog:before { content: '\ed53'; } /* '' */
.icon-lightbulb:before { content: '\eb55'; } /* '' */
.icon-link-outline:before { content: '\ebca'; } /* '' */
.icon-group-circled:before { content: '\ec7a'; } /* '' */
.icon-group:before { content: '\ec79'; } /* '' */
.icon-link-3:before { content: '\e8b1'; } /* '' */
.icon-forward-circled:before { content: '\ed0b'; } /* '' */
.icon-direction-outline:before { content: '\eb1c'; } /* '' */
.icon-direction-1:before { content: '\e8bb'; } /* '' */
.icon-forward-4:before { content: '\ed0a'; } /* '' */
.icon-fontsize-1:before { content: '\ed23'; } /* '' */
.icon-location-outline:before { content: '\eb2e'; } /* '' */
.icon-location-3:before { content: '\e8cd'; } /* '' */
.icon-font-2:before { content: '\ed22'; } /* '' */
.icon-lock-6:before { content: '\eb3a'; } /* '' */
.icon-folder-circled:before { content: '\ecc8'; } /* '' */
.icon-lock-3:before { content: '\e8b0'; } /* '' */
.icon-folder-open-2:before { content: '\ecca'; } /* '' */
.icon-female-2:before { content: '\ed57'; } /* '' */
.icon-lock-open-6:before { content: '\eb3c'; } /* '' */
.icon-lock-open-2:before { content: '\e8af'; } /* '' */
.icon-fast-forward-1:before { content: '\ed09'; } /* '' */
.icon-fast-backward-1:before { content: '\ed1e'; } /* '' */
.icon-mail-3:before { content: '\e899'; } /* '' */
.icon-videocam-3:before { content: '\ec7f'; } /* '' */
.icon-map-1:before { content: '\eb13'; } /* '' */
.icon-eject-alt-outline:before { content: '\eb70'; } /* '' */
.icon-facebook-8:before { content: '\ed67'; } /* '' */
.icon-eject-2:before { content: '\e8d6'; } /* '' */
.icon-eye-6:before { content: '\ec9f'; } /* '' */
.icon-gauge-2:before { content: '\ed46'; } /* '' */
.icon-fast-fw-outline:before { content: '\eb68'; } /* '' */
.icon-fast-fw-2:before { content: '\eb69'; } /* '' */
.icon-css:before { content: '\ed6c'; } /* '' */
.icon-pause-outline:before { content: '\eb66'; } /* '' */
.icon-credit-card-4:before { content: '\ed39'; } /* '' */
.icon-pause-3:before { content: '\eb67'; } /* '' */
.icon-compass-circled:before { content: '\ecc0'; } /* '' */
.icon-compass-4:before { content: '\ecbf'; } /* '' */
.icon-play-outline:before { content: '\eb56'; } /* '' */
.icon-comment-alt-2:before { content: '\eca9'; } /* '' */
.icon-play-3:before { content: '\eb63'; } /* '' */
.icon-down-open-3:before { content: '\eceb'; } /* '' */
.icon-record-outline:before { content: '\eb6c'; } /* '' */
.icon-check-empty-1:before { content: '\ed40'; } /* '' */
.icon-record-1:before { content: '\eb6d'; } /* '' */
.icon-check-2:before { content: '\ed41'; } /* '' */
.icon-rewind-outline:before { content: '\eb6a'; } /* '' */
.icon-rewind:before { content: '\eb6b'; } /* '' */
.icon-certificate-2:before { content: '\ed35'; } /* '' */
.icon-cc-2:before { content: '\ed6d'; } /* '' */
.icon-stop-outline:before { content: '\eb64'; } /* '' */
.icon-stop-4:before { content: '\eb65'; } /* '' */
.icon-camera-6:before { content: '\ec91'; } /* '' */
.icon-block-5:before { content: '\ece2'; } /* '' */
.icon-chat-3:before { content: '\e8b9'; } /* '' */
.icon-backward:before { content: '\ecf7'; } /* '' */
.icon-comment-3:before { content: '\e8b8'; } /* '' */
.icon-chat-alt:before { content: '\eb20'; } /* '' */
.icon-asterisk-1:before { content: '\ed3f'; } /* '' */
.icon-asl:before { content: '\ed4b'; } /* '' */
.icon-mic-outline:before { content: '\eb4c'; } /* '' */
.icon-up-7:before { content: '\ecf2'; } /* '' */
.icon-right-6:before { content: '\ecf1'; } /* '' */
.icon-minus-outline:before { content: '\eb0f'; } /* '' */
.icon-minus-3:before { content: '\e8a4'; } /* '' */
.icon-heart-circled:before { content: '\ec73'; } /* '' */
.icon-heart-8:before { content: '\ec72'; } /* '' */
.icon-news:before { content: '\eb1f'; } /* '' */
.icon-hearing-impaired:before { content: '\ed4d'; } /* '' */
.icon-music-outline:before { content: '\eaf7'; } /* '' */
.icon-music-2:before { content: '\e897'; } /* '' */
.icon-headphones-3:before { content: '\ecd2'; } /* '' */
.icon-pen:before { content: '\eb18'; } /* '' */
.icon-hdd-2:before { content: '\ed37'; } /* '' */
.icon-up-hand-1:before { content: '\ed05'; } /* '' */
.icon-github-7:before { content: '\ed62'; } /* '' */
.icon-phone-outline:before { content: '\eb29'; } /* '' */
.icon-gift-2:before { content: '\ed3e'; } /* '' */
.icon-resize-full-alt-1:before { content: '\ece4'; } /* '' */
.icon-pi-outline:before { content: '\eba9'; } /* '' */
.icon-pi:before { content: '\ebaa'; } /* '' */
.icon-friendfeed-rect-1:before { content: '\ed63'; } /* '' */
.icon-pin-outline:before { content: '\eb3e'; } /* '' */
.icon-friendfeed-1:before { content: '\ed64'; } /* '' */
.icon-pin-2:before { content: '\e8ae'; } /* '' */
.icon-foursquare-2:before { content: '\ed65'; } /* '' */
.icon-doc-new-circled:before { content: '\ecc6'; } /* '' */
.icon-pipette:before { content: '\eb89'; } /* '' */
.icon-doc-new:before { content: '\ecc5'; } /* '' */
.icon-plane-outline:before { content: '\eb84'; } /* '' */
.icon-edit-circled:before { content: '\ecae'; } /* '' */
.icon-plane:before { content: '\eb85'; } /* '' */
.icon-plug:before { content: '\eb7b'; } /* '' */
.icon-edit-3:before { content: '\ecaf'; } /* '' */
.icon-plus-outline:before { content: '\eb03'; } /* '' */
.icon-doc-circled:before { content: '\ecc4'; } /* '' */
.icon-plus-3:before { content: '\e8a3'; } /* '' */
.icon-doc-7:before { content: '\ecc3'; } /* '' */
.icon-dribbble-5:before { content: '\ed68'; } /* '' */
.icon-looped-square-outline:before { content: '\ebc6'; } /* '' */
.icon-download-alt:before { content: '\ecb7'; } /* '' */
.icon-looped-square-interest:before { content: '\ebc5'; } /* '' */
.icon-power-outline:before { content: '\eb8a'; } /* '' */
.icon-download-6:before { content: '\ecb8'; } /* '' */
.icon-digg-1:before { content: '\ed69'; } /* '' */
.icon-power:before { content: '\eb8b'; } /* '' */
.icon-deviantart-1:before { content: '\ed6a'; } /* '' */
.icon-delicious-1:before { content: '\ed6b'; } /* '' */
.icon-puzzle-outline:before { content: '\eba5'; } /* '' */
.icon-left-circled-1:before { content: '\ecf4'; } /* '' */
.icon-puzzle:before { content: '\e7b6'; } /* '' */
.icon-down-circled-1:before { content: '\ecf3'; } /* '' */
.icon-target-outline:before { content: '\eb7a'; } /* '' */
.icon-child:before { content: '\ed51'; } /* '' */
.icon-cw-outline:before { content: '\eb5b'; } /* '' */
.icon-up-open-3:before { content: '\ecee'; } /* '' */
.icon-right-open-5:before { content: '\eced'; } /* '' */
.icon-left-open-5:before { content: '\ecec'; } /* '' */
.icon-rss-outline:before { content: '\eb28'; } /* '' */
.icon-bold-1:before { content: '\ed24'; } /* '' */
.icon-rss-2:before { content: '\e8bc'; } /* '' */
.icon-blogger-2:before { content: '\ed59'; } /* '' */
.icon-scissors-outline:before { content: '\eb9f'; } /* '' */
.icon-blind:before { content: '\ed52'; } /* '' */
.icon-bell-5:before { content: '\eca8'; } /* '' */
.icon-box-3:before { content: '\eb27'; } /* '' */
.icon-behance-1:before { content: '\ed58'; } /* '' */
.icon-basket-4:before { content: '\eb47'; } /* '' */
.icon-barcode-1:before { content: '\ed32'; } /* '' */
.icon-at-circled:before { content: '\ebac'; } /* '' */
.icon-left-6:before { content: '\ecf0'; } /* '' */
.icon-dribbble-circled-1:before { content: '\ebbb'; } /* '' */
.icon-down-7:before { content: '\ecef'; } /* '' */
.icon-dribbble-3:before { content: '\ebb9'; } /* '' */
.icon-facebook-circled-1:before { content: '\ebb8'; } /* '' */
.icon-align-right-1:before { content: '\ed29'; } /* '' */
.icon-facebook-6:before { content: '\ebb7'; } /* '' */
.icon-align-left-1:before { content: '\ed28'; } /* '' */
.icon-align-justify-1:before { content: '\ed2a'; } /* '' */
.icon-flickr-circled-1:before { content: '\ebb6'; } /* '' */
.icon-flickr-3:before { content: '\ebb5'; } /* '' */
.icon-github-circled-2:before { content: '\ebb4'; } /* '' */
.icon-adult:before { content: '\ed50'; } /* '' */
.icon-github-5:before { content: '\ebb3'; } /* '' */
.icon-adjust:before { content: '\ed43'; } /* '' */
.icon-address-book-alt:before { content: '\ed4a'; } /* '' */
.icon-lastfm-circled-1:before { content: '\ebb2'; } /* '' */
.icon-address-book:before { content: '\ed49'; } /* '' */
.icon-lastfm-2:before { content: '\ebb1'; } /* '' */
.icon-lightbulb-1:before { content: '\eccf'; } /* '' */
.icon-linkedin-circled-1:before { content: '\ebb0'; } /* '' */
.icon-linkedin-5:before { content: '\ebaf'; } /* '' */
.icon-home-circled:before { content: '\ec96'; } /* '' */
.icon-pinterest-circled-2:before { content: '\ebae'; } /* '' */
.icon-home-6:before { content: '\ed1d'; } /* '' */
.icon-heart-empty-4:before { content: '\ec74'; } /* '' */
.icon-pinterest-2:before { content: '\ebad'; } /* '' */
.icon-skype-outline:before { content: '\ebc7'; } /* '' */
.icon-globe-5:before { content: '\ed18'; } /* '' */
.icon-skype-5:before { content: '\ebc4'; } /* '' */
.icon-glasses:before { content: '\ed4c'; } /* '' */
.icon-glass-1:before { content: '\ec6c'; } /* '' */
.icon-tumbler-circled:before { content: '\ebc3'; } /* '' */
.icon-github-text-1:before { content: '\ed61'; } /* '' */
.icon-tumbler:before { content: '\ebc0'; } /* '' */
.icon-flag-4:before { content: '\eca5'; } /* '' */
.icon-twitter-circled-1:before { content: '\ebc8'; } /* '' */
.icon-fire-2:before { content: '\ed3d'; } /* '' */
.icon-twitter-6:before { content: '\ebbd'; } /* '' */
.icon-vimeo-circled-1:before { content: '\ebbc'; } /* '' */
.icon-filter-1:before { content: '\ed33'; } /* '' */
.icon-video-alt-1:before { content: '\ec7e'; } /* '' */
.icon-vimeo-3:before { content: '\ebba'; } /* '' */
.icon-sort-alphabet-outline:before { content: '\ebc2'; } /* '' */
.icon-mail-circled:before { content: '\ec71'; } /* '' */
.icon-mail-7:before { content: '\ec70'; } /* '' */
.icon-sort-alphabet:before { content: '\ebc1'; } /* '' */
.icon-sort-numeric-outline:before { content: '\ebbf'; } /* '' */
.icon-eject-4:before { content: '\ecf8'; } /* '' */
.icon-sort-numeric:before { content: '\ebbe'; } /* '' */
.icon-edit-alt:before { content: '\ecad'; } /* '' */
.icon-wrench-outline:before { content: '\eb43'; } /* '' */
.icon-cloud-circled:before { content: '\ed1b'; } /* '' */
.icon-cloud-7:before { content: '\ed1a'; } /* '' */
.icon-star-6:before { content: '\eafa'; } /* '' */
.icon-up-circled-1:before { content: '\ed1f'; } /* '' */
.icon-star-3:before { content: '\e89b'; } /* '' */
.icon-right-circled-1:before { content: '\ecf5'; } /* '' */
.icon-certificate-outline:before { content: '\eb9d'; } /* '' */
.icon-braille:before { content: '\ed45'; } /* '' */
.icon-bookmark-empty-1:before { content: '\eca4'; } /* '' */
.icon-certificate-1:before { content: '\eb9e'; } /* '' */
.icon-bookmark-3:before { content: '\eca3'; } /* '' */
.icon-stopwatch:before { content: '\eb54'; } /* '' */
.icon-book-4:before { content: '\ed44'; } /* '' */
.icon-inbox-alt:before { content: '\ed17'; } /* '' */
.icon-popup-5:before { content: '\eb4a'; } /* '' */
.icon-inbox-circled:before { content: '\ed16'; } /* '' */
.icon-tag-3:before { content: '\e8ac'; } /* '' */
.icon-inbox-3:before { content: '\ed15'; } /* '' */
.icon-lightbulb-alt:before { content: '\ecce'; } /* '' */
.icon-th-large-outline:before { content: '\eb0a'; } /* '' */
.icon-chart-circled:before { content: '\ed3a'; } /* '' */
.icon-th-large-2:before { content: '\eb09'; } /* '' */
.icon-th-list-outline:before { content: '\eb08'; } /* '' */
.icon-chart-2:before { content: '\ed3b'; } /* '' */
.icon-googleplus:before { content: '\ed60'; } /* '' */
.icon-th-list-2:before { content: '\e8a0'; } /* '' */
.icon-menu-outline:before { content: '\eb3f'; } /* '' */
.icon-globe-alt-1:before { content: '\ed19'; } /* '' */
.icon-list-2:before { content: '\e8d7'; } /* '' */
.icon-folder-close:before { content: '\ecc9'; } /* '' */
.icon-folder-6:before { content: '\ecc7'; } /* '' */
.icon-th-outline:before { content: '\eb0b'; } /* '' */
.icon-th-2:before { content: '\e89f'; } /* '' */
.icon-flickr-4:before { content: '\ed66'; } /* '' */
.icon-flag-circled:before { content: '\eca6'; } /* '' */
.icon-temperatire:before { content: '\eb9b'; } /* '' */
.icon-eye-off-1:before { content: '\eca0'; } /* '' */
.icon-exclamation:before { content: '\ecba'; } /* '' */
.icon-ok-outline:before { content: '\eb07'; } /* '' */
.icon-error-alt:before { content: '\ecbc'; } /* '' */
.icon-error:before { content: '\ecbb'; } /* '' */
.icon-ok-3:before { content: '\e8a1'; } /* '' */
.icon-comment-6:before { content: '\ecaa'; } /* '' */
.icon-ticket-2:before { content: '\eb96'; } /* '' */
.icon-cogs:before { content: '\ecdf'; } /* '' */
.icon-cog-circled:before { content: '\ece0'; } /* '' */
.icon-cancel-outline:before { content: '\eb06'; } /* '' */
.icon-cancel-3:before { content: '\e8a2'; } /* '' */
.icon-cog-6:before { content: '\ece1'; } /* '' */
.icon-calendar-circled:before { content: '\ecd9'; } /* '' */
.icon-trash-3:before { content: '\e8bd'; } /* '' */
.icon-tree:before { content: '\eba6'; } /* '' */
.icon-calendar-7:before { content: '\ecda'; } /* '' */
.icon-megaphone-2:before { content: '\ed38'; } /* '' */
.icon-upload-outline:before { content: '\eb35'; } /* '' */
.icon-briefcase-2:before { content: '\ed2e'; } /* '' */
.icon-upload-3:before { content: '\eb34'; } /* '' */
.icon-vkontakte-2:before { content: '\ed75'; } /* '' */
.icon-user-add-outline:before { content: '\eb3b'; } /* '' */
.icon-user-add-1:before { content: '\eafd'; } /* '' */
.icon-user-delete-outline:before { content: '\eafe'; } /* '' */
.icon-user-delete:before { content: '\eaff'; } /* '' */
.icon-user-outline:before { content: '\eafb'; } /* '' */
.icon-user-3:before { content: '\e89c'; } /* '' */
.icon-videocam-outline:before { content: '\eb01'; } /* '' */
.icon-videocam-2:before { content: '\eb02'; } /* '' */
.icon-volume-middle:before { content: '\eb4f'; } /* '' */
.icon-volume-off-5:before { content: '\eb4d'; } /* '' */
.icon-volume-up-3:before { content: '\e8d3'; } /* '' */
.icon-volume-off-3:before { content: '\e8c2'; } /* '' */
.icon-warning-empty:before { content: '\eb2a'; } /* '' */
.icon-warning:before { content: '\eb2b'; } /* '' */
.icon-wristwatch:before { content: '\eb53'; } /* '' */
.icon-waves-outline:before { content: '\eb7c'; } /* '' */
.icon-waves:before { content: '\eb7d'; } /* '' */
.icon-cloud-5:before { content: '\eb72'; } /* '' */
.icon-rain-2:before { content: '\eb7e'; } /* '' */
.icon-moon-4:before { content: '\eb71'; } /* '' */
.icon-cloud-sun-1:before { content: '\eb7f'; } /* '' */
.icon-drizzle-1:before { content: '\eb80'; } /* '' */
.icon-snow-1:before { content: '\eb81'; } /* '' */
.icon-cloud-flash-1:before { content: '\eb82'; } /* '' */
.icon-wind-1:before { content: '\eb83'; } /* '' */
.icon-wifi-outline:before { content: '\eb79'; } /* '' */
.icon-wifi:before { content: '\eb78'; } /* '' */
.icon-wine:before { content: '\eba0'; } /* '' */
.icon-globe-outline:before { content: '\eb75'; } /* '' */
.icon-zoom-in-outline:before { content: '\eb4b'; } /* '' */
.icon-zoom-in-1:before { content: '\e8cc'; } /* '' */
.icon-zoom-out-outline:before { content: '\eb4e'; } /* '' */
.icon-zoom-out-1:before { content: '\e8ce'; } /* '' */
.icon-search-outline:before { content: '\eaf8'; } /* '' */
.icon-search-3:before { content: '\e898'; } /* '' */
.icon-left-circle-1:before { content: '\e962'; } /* '' */
.icon-left-circle:before { content: '\e4a1'; } /* '' */
.icon-right-circle:before { content: '\e4a2'; } /* '' */
.icon-right-circle-1:before { content: '\e961'; } /* '' */
.icon-up-circle:before { content: '\e4a3'; } /* '' */
.icon-up-circle-1:before { content: '\e960'; } /* '' */
.icon-down-circle-1:before { content: '\e94a'; } /* '' */
.icon-down-circle:before { content: '\e4a4'; } /* '' */
.icon-left-bold:before { content: '\e4ad'; } /* '' */
.icon-right-bold:before { content: '\e4ae'; } /* '' */
.icon-up-bold:before { content: '\e4af'; } /* '' */
.icon-user-add:before { content: '\e700'; } /* '' */
.icon-star-half:before { content: '\e701'; } /* '' */
.icon-ok-circle2:before { content: '\e702'; } /* '' */
.icon-cancel-circle2:before { content: '\e703'; } /* '' */
.icon-help-circle:before { content: '\e704'; } /* '' */
.icon-help-circle-1:before { content: '\e80c'; } /* '' */
.icon-info-circle-1:before { content: '\e84a'; } /* '' */
.icon-info-circle:before { content: '\e705'; } /* '' */
.icon-th-large:before { content: '\e708'; } /* '' */
.icon-lock-empty:before { content: '\e861'; } /* '' */
.icon-th-large-1:before { content: '\e932'; } /* '' */
.icon-lock-open-empty:before { content: '\e709'; } /* '' */
.icon-eye-2:before { content: '\e85d'; } /* '' */
.icon-eye:before { content: '\e70a'; } /* '' */
.icon-eye-4:before { content: '\e8f8'; } /* '' */
.icon-eye-1:before { content: '\e817'; } /* '' */
.icon-eye-off:before { content: '\e70b'; } /* '' */
.icon-tag-4:before { content: '\e8f9'; } /* '' */
.icon-tag-2:before { content: '\e85e'; } /* '' */
.icon-tag-1:before { content: '\e818'; } /* '' */
.icon-tag-5:before { content: '\e943'; } /* '' */
.icon-tag:before { content: '\e70c'; } /* '' */
.icon-tags:before { content: '\e70d'; } /* '' */
.icon-tag-empty:before { content: '\e70e'; } /* '' */
.icon-camera-alt:before { content: '\e70f'; } /* '' */
.icon-download-cloud:before { content: '\e710'; } /* '' */
.icon-upload-cloud-1:before { content: '\e869'; } /* '' */
.icon-upload-cloud:before { content: '\e711'; } /* '' */
.icon-reply-2:before { content: '\e942'; } /* '' */
.icon-reply:before { content: '\e712'; } /* '' */
.icon-reply-all-1:before { content: '\e941'; } /* '' */
.icon-reply-all:before { content: '\e713'; } /* '' */
.icon-code:before { content: '\e714'; } /* '' */
.icon-code-1:before { content: '\e949'; } /* '' */
.icon-export-3:before { content: '\e8f3'; } /* '' */
.icon-export-1:before { content: '\e81f'; } /* '' */
.icon-export:before { content: '\e715'; } /* '' */
.icon-print-1:before { content: '\e82c'; } /* '' */
.icon-print:before { content: '\e716'; } /* '' */
.icon-print-2:before { content: '\e902'; } /* '' */
.icon-retweet-1:before { content: '\e82b'; } /* '' */
.icon-retweet:before { content: '\e717'; } /* '' */
.icon-retweet-2:before { content: '\e93e'; } /* '' */
.icon-comment-4:before { content: '\e93f'; } /* '' */
.icon-comment-1:before { content: '\e82a'; } /* '' */
.icon-comment-2:before { content: '\e86c'; } /* '' */
.icon-comment:before { content: '\e718'; } /* '' */
.icon-comment-inv:before { content: '\e719'; } /* '' */
.icon-comment-alt:before { content: '\e71a'; } /* '' */
.icon-comment-alt-1:before { content: '\e93c'; } /* '' */
.icon-comment-inv-alt:before { content: '\e71b'; } /* '' */
.icon-comment-alt2:before { content: '\e71c'; } /* '' */
.icon-comment-inv-alt2:before { content: '\e71d'; } /* '' */
.icon-chat-2:before { content: '\e873'; } /* '' */
.icon-chat-4:before { content: '\e901'; } /* '' */
.icon-chat:before { content: '\e720'; } /* '' */
.icon-chat-5:before { content: '\e93b'; } /* '' */
.icon-chat-1:before { content: '\e829'; } /* '' */
.icon-chat-inv:before { content: '\e721'; } /* '' */
.icon-vcard:before { content: '\e722'; } /* '' */
.icon-address-1:before { content: '\eacc'; } /* '' */
.icon-location-2:before { content: '\e872'; } /* '' */
.icon-location-1:before { content: '\e827'; } /* '' */
.icon-location:before { content: '\e724'; } /* '' */
.icon-location-4:before { content: '\e905'; } /* '' */
.icon-location-5:before { content: '\e93d'; } /* '' */
.icon-location-inv:before { content: '\e725'; } /* '' */
.icon-location-alt:before { content: '\e726'; } /* '' */
.icon-map:before { content: '\e727'; } /* '' */
.icon-compass-1:before { content: '\e871'; } /* '' */
.icon-compass:before { content: '\e728'; } /* '' */
.icon-trash-4:before { content: '\e906'; } /* '' */
.icon-trash-1:before { content: '\e826'; } /* '' */
.icon-trash-2:before { content: '\e870'; } /* '' */
.icon-trash-empty:before { content: '\e72a'; } /* '' */
.icon-doc-2:before { content: '\e86f'; } /* '' */
.icon-doc-4:before { content: '\e958'; } /* '' */
.icon-doc:before { content: '\e730'; } /* '' */
.icon-doc-text-inv-1:before { content: '\eacf'; } /* '' */
.icon-doc-inv:before { content: '\e731'; } /* '' */
.icon-doc-alt:before { content: '\e732'; } /* '' */
.icon-doc-inv-alt:before { content: '\e733'; } /* '' */
.icon-article-1:before { content: '\e907'; } /* '' */
.icon-article:before { content: '\e734'; } /* '' */
.icon-article-alt:before { content: '\e735'; } /* '' */
.icon-article-alt-1:before { content: '\e909'; } /* '' */
.icon-docs:before { content: '\e736'; } /* '' */
.icon-docs-landscape-1:before { content: '\e957'; } /* '' */
.icon-docs-landscape:before { content: '\e737'; } /* '' */
.icon-archive:before { content: '\e738'; } /* '' */
.icon-archive-1:before { content: '\e955'; } /* '' */
.icon-rss-3:before { content: '\e90a'; } /* '' */
.icon-rss:before { content: '\e73a'; } /* '' */
.icon-rss-1:before { content: '\e875'; } /* '' */
.icon-rss-4:before { content: '\e954'; } /* '' */
.icon-rss-alt:before { content: '\e73b'; } /* '' */
.icon-rss-alt-1:before { content: '\e953'; } /* '' */
.icon-share-1:before { content: '\e877'; } /* '' */
.icon-share:before { content: '\e73c'; } /* '' */
.icon-basket-1:before { content: '\e821'; } /* '' */
.icon-basket-3:before { content: '\ead2'; } /* '' */
.icon-basket-2:before { content: '\e90c'; } /* '' */
.icon-shareable:before { content: '\ead1'; } /* '' */
.icon-calendar-inv:before { content: '\e73e'; } /* '' */
.icon-calendar-alt-1:before { content: '\e90e'; } /* '' */
.icon-login:before { content: '\e740'; } /* '' */
.icon-login-1:before { content: '\ead4'; } /* '' */
.icon-logout-2:before { content: '\ead5'; } /* '' */
.icon-logout-1:before { content: '\e951'; } /* '' */
.icon-logout:before { content: '\e741'; } /* '' */
.icon-volume:before { content: '\e742'; } /* '' */
.icon-resize-full-5:before { content: '\e94e'; } /* '' */
.icon-resize-full-4:before { content: '\e919'; } /* '' */
.icon-resize-full-2:before { content: '\e886'; } /* '' */
.icon-resize-full-1:before { content: '\e831'; } /* '' */
.icon-resize-full:before { content: '\e744'; } /* '' */
.icon-resize-full-alt:before { content: '\e745'; } /* '' */
.icon-resize-small-1:before { content: '\e832'; } /* '' */
.icon-resize-small-3:before { content: '\e918'; } /* '' */
.icon-resize-small:before { content: '\e746'; } /* '' */
.icon-resize-small-2:before { content: '\e885'; } /* '' */
.icon-resize-small-alt:before { content: '\e747'; } /* '' */
.icon-move-1:before { content: '\e74a'; } /* '' */
.icon-popup-4:before { content: '\e94d'; } /* '' */
.icon-popup-1:before { content: '\e883'; } /* '' */
.icon-popup:before { content: '\e74c'; } /* '' */
.icon-popup-3:before { content: '\e915'; } /* '' */
.icon-publish:before { content: '\e74d'; } /* '' */
.icon-window:before { content: '\e74e'; } /* '' */
.icon-arrow-combo:before { content: '\e74f'; } /* '' */
.icon-zoom-in:before { content: '\e750'; } /* '' */
.icon-zoom-in-2:before { content: '\e917'; } /* '' */
.icon-chart-pie-3:before { content: '\e9fd'; } /* '' */
.icon-zoom-out:before { content: '\e751'; } /* '' */
.icon-zoom-out-2:before { content: '\e916'; } /* '' */
.icon-language:before { content: '\eaeb'; } /* '' */
.icon-air:before { content: '\e753'; } /* '' */
.icon-database:before { content: '\e754'; } /* '' */
.icon-drive:before { content: '\e755'; } /* '' */
.icon-thermometer:before { content: '\e757'; } /* '' */
.icon-down-circle2-1:before { content: '\e833'; } /* '' */
.icon-down-circle2:before { content: '\e758'; } /* '' */
.icon-left-circle2:before { content: '\e759'; } /* '' */
.icon-right-circle2:before { content: '\e75a'; } /* '' */
.icon-up-circle2:before { content: '\e75b'; } /* '' */
.icon-up-circle2-1:before { content: '\e834'; } /* '' */
.icon-down-open-1:before { content: '\e842'; } /* '' */
.icon-down-open:before { content: '\e75c'; } /* '' */
.icon-left-open-1:before { content: '\e841'; } /* '' */
.icon-left-open:before { content: '\e75d'; } /* '' */
.icon-left-open-3:before { content: '\e94c'; } /* '' */
.icon-right-open:before { content: '\e75e'; } /* '' */
.icon-right-open-1:before { content: '\e840'; } /* '' */
.icon-right-open-3:before { content: '\e94b'; } /* '' */
.icon-up-open-1:before { content: '\e83f'; } /* '' */
.icon-up-open:before { content: '\e75f'; } /* '' */
.icon-arrows-cw:before { content: '\e760'; } /* '' */
.icon-arrows-cw-2:before { content: '\e95d'; } /* '' */
.icon-down-open-mini:before { content: '\ea09'; } /* '' */
.icon-left-open-mini:before { content: '\ea03'; } /* '' */
.icon-play-circle2:before { content: '\e761'; } /* '' */
.icon-to-end-alt:before { content: '\e762'; } /* '' */
.icon-right-open-mini:before { content: '\ea04'; } /* '' */
.icon-up-open-mini:before { content: '\ea05'; } /* '' */
.icon-to-start-alt:before { content: '\e763'; } /* '' */
.icon-award-empty:before { content: '\e764'; } /* '' */
.icon-down-open-big:before { content: '\ea06'; } /* '' */
.icon-left-open-big:before { content: '\ea07'; } /* '' */
.icon-list-1:before { content: '\e765'; } /* '' */
.icon-right-open-big:before { content: '\ea08'; } /* '' */
.icon-list-nested:before { content: '\e766'; } /* '' */
.icon-up-open-big:before { content: '\e767'; } /* '' */
.icon-progress-0:before { content: '\e768'; } /* '' */
.icon-progress-1:before { content: '\e769'; } /* '' */
.icon-progress-2:before { content: '\e76a'; } /* '' */
.icon-progress-3:before { content: '\e76b'; } /* '' */
.icon-signal-3:before { content: '\e91e'; } /* '' */
.icon-back-in-time:before { content: '\e771'; } /* '' */
.icon-bat-empty:before { content: '\e772'; } /* '' */
.icon-bat-half:before { content: '\e773'; } /* '' */
.icon-bat-full:before { content: '\e774'; } /* '' */
.icon-bat-charge:before { content: '\e775'; } /* '' */
.icon-net:before { content: '\e776'; } /* '' */
.icon-inbox-1:before { content: '\e847'; } /* '' */
.icon-inbox:before { content: '\e777'; } /* '' */
.icon-install:before { content: '\e778'; } /* '' */
.icon-font:before { content: '\e779'; } /* '' */
.icon-font-1:before { content: '\e95a'; } /* '' */
.icon-bold:before { content: '\e77a'; } /* '' */
.icon-italic:before { content: '\e77b'; } /* '' */
.icon-text-height:before { content: '\e77c'; } /* '' */
.icon-text-width:before { content: '\e77d'; } /* '' */
.icon-align-left:before { content: '\e77e'; } /* '' */
.icon-align-center:before { content: '\e77f'; } /* '' */
.icon-align-right:before { content: '\e780'; } /* '' */
.icon-align-justify:before { content: '\e781'; } /* '' */
.icon-list:before { content: '\e782'; } /* '' */
.icon-list-3:before { content: '\e959'; } /* '' */
.icon-indent-left:before { content: '\e783'; } /* '' */
.icon-indent-left-1:before { content: '\e968'; } /* '' */
.icon-indent-right-1:before { content: '\e967'; } /* '' */
.icon-indent-right:before { content: '\e784'; } /* '' */
.icon-lifebuoy:before { content: '\e788'; } /* '' */
.icon-mouse:before { content: '\e789'; } /* '' */
.icon-dot:before { content: '\e78b'; } /* '' */
.icon-dot-2:before { content: '\e78c'; } /* '' */
.icon-dot-3:before { content: '\e78d'; } /* '' */
.icon-off:before { content: '\e78e'; } /* '' */
.icon-road:before { content: '\e78f'; } /* '' */
.icon-list-alt:before { content: '\e790'; } /* '' */
.icon-flow-cascade:before { content: '\eadb'; } /* '' */
.icon-qrcode:before { content: '\e791'; } /* '' */
.icon-flow-branch:before { content: '\eadc'; } /* '' */
.icon-flow-tree:before { content: '\e9ed'; } /* '' */
.icon-barcode:before { content: '\e792'; } /* '' */
.icon-ajust:before { content: '\e793'; } /* '' */
.icon-flow-line:before { content: '\e9fa'; } /* '' */
.icon-flow-parallel:before { content: '\eaf0'; } /* '' */
.icon-tint:before { content: '\e794'; } /* '' */
.icon-cursor:before { content: '\e796'; } /* '' */
.icon-aperture:before { content: '\e797'; } /* '' */
.icon-aperture-alt:before { content: '\e798'; } /* '' */
.icon-steering-wheel:before { content: '\e799'; } /* '' */
.icon-brush:before { content: '\e79a'; } /* '' */
.icon-brush-1:before { content: '\ea01'; } /* '' */
.icon-paper-plane:before { content: '\eaf6'; } /* '' */
.icon-brush-alt:before { content: '\e79b'; } /* '' */
.icon-eyedropper:before { content: '\e79c'; } /* '' */
.icon-layers:before { content: '\e79d'; } /* '' */
.icon-layers-alt:before { content: '\e79e'; } /* '' */
.icon-moon-inv:before { content: '\e7a0'; } /* '' */
.icon-magnet:before { content: '\e7a1'; } /* '' */
.icon-magnet-1:before { content: '\ea00'; } /* '' */
.icon-chart-pie-2:before { content: '\e927'; } /* '' */
.icon-gauge-1:before { content: '\eaea'; } /* '' */
.icon-chart-pie:before { content: '\e7a2'; } /* '' */
.icon-traffic-cone:before { content: '\eae9'; } /* '' */
.icon-chart-pie-alt:before { content: '\e7a3'; } /* '' */
.icon-dial:before { content: '\e7a4'; } /* '' */
.icon-cc:before { content: '\e7a5'; } /* '' */
.icon-resize-full-circle:before { content: '\e7a6'; } /* '' */
.icon-cc-by:before { content: '\eae8'; } /* '' */
.icon-cc-nc:before { content: '\eae7'; } /* '' */
.icon-down-micro:before { content: '\e7a7'; } /* '' */
.icon-up-micro:before { content: '\e7a8'; } /* '' */
.icon-cc-nc-eu:before { content: '\eae6'; } /* '' */
.icon-cw-circle:before { content: '\e7a9'; } /* '' */
.icon-cc-nc-jp:before { content: '\eae5'; } /* '' */
.icon-updown-circle:before { content: '\e7aa'; } /* '' */
.icon-cc-sa:before { content: '\eae4'; } /* '' */
.icon-cc-nd:before { content: '\e7ab'; } /* '' */
.icon-terminal:before { content: '\e7ac'; } /* '' */
.icon-cc-pd:before { content: '\eae3'; } /* '' */
.icon-list-numbered:before { content: '\e7ad'; } /* '' */
.icon-cc-zero:before { content: '\eae2'; } /* '' */
.icon-cc-share:before { content: '\eae1'; } /* '' */
.icon-basket-alt:before { content: '\e7ae'; } /* '' */
.icon-cc-remix:before { content: '\eae0'; } /* '' */
.icon-mobile-alt:before { content: '\e7b0'; } /* '' */
.icon-tablet:before { content: '\e7b1'; } /* '' */
.icon-ipod:before { content: '\e7b2'; } /* '' */
.icon-stop-3:before { content: '\e7b3'; } /* '' */
.icon-grid:before { content: '\e7b4'; } /* '' */
.icon-easel:before { content: '\e7b5'; } /* '' */
.icon-aboveground-rail:before { content: '\e97e'; } /* '' */
.icon-airfield:before { content: '\e97f'; } /* '' */
.icon-airport:before { content: '\e980'; } /* '' */
.icon-art-gallery:before { content: '\e981'; } /* '' */
.icon-bar:before { content: '\e982'; } /* '' */
.icon-baseball:before { content: '\e983'; } /* '' */
.icon-basketball:before { content: '\e984'; } /* '' */
.icon-beer:before { content: '\e985'; } /* '' */
.icon-belowground-rail:before { content: '\e986'; } /* '' */
.icon-bicycle:before { content: '\e987'; } /* '' */
.icon-bus:before { content: '\e988'; } /* '' */
.icon-cafe:before { content: '\e989'; } /* '' */
.icon-campsite:before { content: '\e98b'; } /* '' */
.icon-cemetery:before { content: '\e98a'; } /* '' */
.icon-cinema:before { content: '\e98c'; } /* '' */
.icon-college:before { content: '\e98d'; } /* '' */
.icon-commerical-building:before { content: '\e98e'; } /* '' */
.icon-credit-card:before { content: '\e98f'; } /* '' */
.icon-cricket:before { content: '\e990'; } /* '' */
.icon-embassy:before { content: '\e991'; } /* '' */
.icon-fast-food:before { content: '\e9b8'; } /* '' */
.icon-ferry:before { content: '\e9b7'; } /* '' */
.icon-fire-station:before { content: '\e9b4'; } /* '' */
.icon-football:before { content: '\e9b3'; } /* '' */
.icon-fuel:before { content: '\e9b0'; } /* '' */
.icon-garden:before { content: '\e9af'; } /* '' */
.icon-giraffe:before { content: '\e9ac'; } /* '' */
.icon-golf:before { content: '\e9ab'; } /* '' */
.icon-grocery-store:before { content: '\e9a7'; } /* '' */
.icon-harbor:before { content: '\e9a6'; } /* '' */
.icon-heliport:before { content: '\e9a4'; } /* '' */
.icon-hospital:before { content: '\e9a2'; } /* '' */
.icon-industrial-building:before { content: '\e9a0'; } /* '' */
.icon-library:before { content: '\e99e'; } /* '' */
.icon-lodging:before { content: '\e99c'; } /* '' */
.icon-london-underground:before { content: '\e99b'; } /* '' */
.icon-minefield:before { content: '\e998'; } /* '' */
.icon-monument:before { content: '\e995'; } /* '' */
.icon-museum:before { content: '\e994'; } /* '' */
.icon-pharmacy:before { content: '\e992'; } /* '' */
.icon-pitch:before { content: '\e9b9'; } /* '' */
.icon-police:before { content: '\e9b6'; } /* '' */
.icon-post:before { content: '\e9b5'; } /* '' */
.icon-prison:before { content: '\e9b2'; } /* '' */
.icon-rail:before { content: '\e9b1'; } /* '' */
.icon-religious-christian:before { content: '\e9ae'; } /* '' */
.icon-religious-islam:before { content: '\e9ad'; } /* '' */
.icon-religious-jewish:before { content: '\e9aa'; } /* '' */
.icon-restaurant:before { content: '\e9a8'; } /* '' */
.icon-roadblock:before { content: '\e9a9'; } /* '' */
.icon-school:before { content: '\e9a5'; } /* '' */
.icon-shop:before { content: '\e9a3'; } /* '' */
.icon-skiing:before { content: '\e9a1'; } /* '' */
.icon-soccer:before { content: '\e99f'; } /* '' */
.icon-swimming:before { content: '\e99d'; } /* '' */
.icon-tennis:before { content: '\e99a'; } /* '' */
.icon-theatre:before { content: '\e997'; } /* '' */
.icon-toilet:before { content: '\e996'; } /* '' */
.icon-town-hall:before { content: '\e999'; } /* '' */
.icon-trash-5:before { content: '\e993'; } /* '' */
.icon-tree-1:before { content: '\e9ba'; } /* '' */
.icon-tree-2:before { content: '\e9bb'; } /* '' */
.icon-firefox:before { content: '\edad'; } /* '' */
.icon-warehouse:before { content: '\e9bc'; } /* '' */
.icon-chrome-1:before { content: '\edac'; } /* '' */
.icon-opera:before { content: '\edab'; } /* '' */
.icon-ie-1:before { content: '\edaa'; } /* '' */
.icon-down-open-2:before { content: '\ec14'; } /* '' */
.icon-up-open-2:before { content: '\ec11'; } /* '' */
.icon-right-open-4:before { content: '\ec12'; } /* '' */
.icon-left-open-4:before { content: '\ec13'; } /* '' */
.icon-menu-1:before { content: '\ebdf'; } /* '' */
.icon-th-list-5:before { content: '\ebe2'; } /* '' */
.icon-th-thumb:before { content: '\ebe0'; } /* '' */
.icon-th-thumb-empty:before { content: '\ebe1'; } /* '' */
.icon-coverflow:before { content: '\ec3e'; } /* '' */
.icon-pause-4:before { content: '\ec27'; } /* '' */
.icon-play-4:before { content: '\ec26'; } /* '' */
.icon-to-end-3:before { content: '\ec29'; } /* '' */
.icon-to-start-3:before { content: '\ec2a'; } /* '' */
.icon-fast-forward:before { content: '\ec2b'; } /* '' */
.icon-fast-backward:before { content: '\ec2c'; } /* '' */
.icon-upload-cloud-4:before { content: '\ebf7'; } /* '' */
.icon-download-cloud-2:before { content: '\ebe3'; } /* '' */
.icon-data-science:before { content: '\ec31'; } /* '' */
.icon-data-science-inv:before { content: '\ec44'; } /* '' */
.icon-globe-4:before { content: '\ec42'; } /* '' */
.icon-globe-inv:before { content: '\ec41'; } /* '' */
.icon-math:before { content: '\ec3d'; } /* '' */
.icon-math-circled-empty:before { content: '\ec3b'; } /* '' */
.icon-math-circled:before { content: '\ec3c'; } /* '' */
.icon-paper-plane-1:before { content: '\ec3a'; } /* '' */
.icon-paper-plane-alt2:before { content: '\ec38'; } /* '' */
.icon-paper-plane-alt:before { content: '\ec39'; } /* '' */
.icon-color-adjust:before { content: '\ec36'; } /* '' */
.icon-star-half-1:before { content: '\ebd6'; } /* '' */
.icon-star-half_empty:before { content: '\ebd7'; } /* '' */
.icon-ccw-1:before { content: '\ec24'; } /* '' */
.icon-heart-broken:before { content: '\ebd3'; } /* '' */
.icon-hash-1:before { content: '\ec49'; } /* '' */
.icon-reply-4:before { content: '\ebf8'; } /* '' */
.icon-retweet-3:before { content: '\ebfc'; } /* '' */
.icon-login-2:before { content: '\ec1d'; } /* '' */
.icon-logout-3:before { content: '\ec1c'; } /* '' */
.icon-download-5:before { content: '\ebe5'; } /* '' */
.icon-upload-4:before { content: '\ebe4'; } /* '' */
.icon-location-6:before { content: '\ec02'; } /* '' */
.icon-monitor-1:before { content: '\ec2e'; } /* '' */
.icon-tablet-3:before { content: '\ec2f'; } /* '' */
.icon-mobile-5:before { content: '\ec30'; } /* '' */
.icon-connected-object:before { content: '\ec32'; } /* '' */
.icon-isight:before { content: '\ebdd'; } /* '' */
.icon-shuffle-3:before { content: '\ec25'; } /* '' */
.icon-chat-6:before { content: '\ebfe'; } /* '' */
.icon-bell-4:before { content: '\ebff'; } /* '' */
.icon-movie:before { content: '\ebdc'; } /* '' */
.icon-ruler:before { content: '\ec45'; } /* '' */
.icon-vector:before { content: '\ec46'; } /* '' */
.icon-mic-off:before { content: '\ec1a'; } /* '' */
.icon-move:before { content: '\f047'; } /* '' */
.icon-mic-4:before { content: '\ec1b'; } /* '' */
.icon-doc-6:before { content: '\ec04'; } /* '' */
.icon-dribbble-circled-2:before { content: '\ec5e'; } /* '' */
.icon-dribbble-4:before { content: '\ec5f'; } /* '' */
.icon-facebook-circled-2:before { content: '\ec64'; } /* '' */
.icon-facebook-7:before { content: '\ec57'; } /* '' */
.icon-github-circled-alt:before { content: '\ec53'; } /* '' */
.icon-github-circled-3:before { content: '\ec52'; } /* '' */
.icon-github-6:before { content: '\ec51'; } /* '' */
.icon-github-circled-alt2:before { content: '\ec54'; } /* '' */
.icon-twitter-circled-2:before { content: '\ec56'; } /* '' */
.icon-twitter-7:before { content: '\ec55'; } /* '' */
.icon-gplus-circled-1:before { content: '\ec62'; } /* '' */
.icon-gplus-3:before { content: '\ec63'; } /* '' */
.icon-linkedin-circled-2:before { content: '\ec60'; } /* '' */
.icon-linkedin-6:before { content: '\ec61'; } /* '' */
.icon-instagram-1:before { content: '\ec5d'; } /* '' */
.icon-instagram-circled:before { content: '\ec5c'; } /* '' */
.icon-mfg-logo:before { content: '\ec59'; } /* '' */
.icon-mfg-logo-circled:before { content: '\ec58'; } /* '' */
.icon-user-6:before { content: '\ebd8'; } /* '' */
.icon-user-male:before { content: '\ebd9'; } /* '' */
.icon-user-female:before { content: '\ebda'; } /* '' */
.icon-users-3:before { content: '\ebdb'; } /* '' */
.icon-folder-5:before { content: '\ec06'; } /* '' */
.icon-folder-open-1:before { content: '\ec07'; } /* '' */
.icon-folder-empty-2:before { content: '\ec08'; } /* '' */
.icon-attach-5:before { content: '\ebeb'; } /* '' */
.icon-ok-circled:before { content: '\ebf5'; } /* '' */
.icon-cancel-circled-1:before { content: '\ebf3'; } /* '' */
.icon-inbox-2:before { content: '\ec43'; } /* '' */
.icon-trophy:before { content: '\ec2d'; } /* '' */
.icon-lock-open-alt-1:before { content: '\ebe7'; } /* '' */
.icon-link-6:before { content: '\ebec'; } /* '' */
.icon-zoom-in-3:before { content: '\ec16'; } /* '' */
.icon-zoom-out-3:before { content: '\ec15'; } /* '' */
.icon-stop-5:before { content: '\ec28'; } /* '' */
.icon-export-4:before { content: '\ebfa'; } /* '' */
.icon-eye-5:before { content: '\ebe6'; } /* '' */
.icon-trash-6:before { content: '\ec03'; } /* '' */
.icon-hdd-1:before { content: '\ec33'; } /* '' */
.icon-info-circled:before { content: '\ebef'; } /* '' */
.icon-info-circled-alt:before { content: '\ebee'; } /* '' */
.icon-print-4:before { content: '\ebfb'; } /* '' */
.icon-fontsize:before { content: '\ec37'; } /* '' */
.icon-soundcloud-2:before { content: '\ec5b'; } /* '' */
.icon-soundcloud-circled:before { content: '\ec5a'; } /* '' */
.icon-link-1:before { content: '\e80a'; } /* '' */
.icon-check-empty:before { content: '\ea6a'; } /* '' */
.icon-bookmark-empty:before { content: '\ea13'; } /* '' */
.icon-phone-squared:before { content: '\f098'; } /* '' */
.icon-twitter-4:before { content: '\f099'; } /* '' */
.icon-facebook-4:before { content: '\f09a'; } /* '' */
.icon-github-circled:before { content: '\eaad'; } /* '' */
.icon-rss-6:before { content: '\f09e'; } /* '' */
.icon-hdd:before { content: '\ea7a'; } /* '' */
.icon-certificate:before { content: '\ea76'; } /* '' */
.icon-left-circled:before { content: '\f0a8'; } /* '' */
.icon-right-circled:before { content: '\f0a9'; } /* '' */
.icon-up-circled:before { content: '\f0aa'; } /* '' */
.icon-down-circled:before { content: '\f0ab'; } /* '' */
.icon-tasks:before { content: '\ea75'; } /* '' */
.icon-filter:before { content: '\ea74'; } /* '' */
.icon-beaker:before { content: '\ea73'; } /* '' */
.icon-docs-1:before { content: '\f0c5'; } /* '' */
.icon-blank:before { content: '\eab7'; } /* '' */
.icon-menu:before { content: '\f0c9'; } /* '' */
.icon-list-bullet:before { content: '\ea59'; } /* '' */
.icon-list-numbered-1:before { content: '\ea5a'; } /* '' */
.icon-strike:before { content: '\ea5b'; } /* '' */
.icon-underline:before { content: '\ea5c'; } /* '' */
.icon-table:before { content: '\ea5f'; } /* '' */
.icon-magic:before { content: '\ea72'; } /* '' */
.icon-pinterest-circled-1:before { content: '\eac5'; } /* '' */
.icon-pinterest-squared:before { content: '\f0d3'; } /* '' */
.icon-gplus-squared:before { content: '\eab0'; } /* '' */
.icon-gplus-2:before { content: '\eab1'; } /* '' */
.icon-money:before { content: '\ea70'; } /* '' */
.icon-columns:before { content: '\ea60'; } /* '' */
.icon-sort:before { content: '\ea83'; } /* '' */
.icon-sort-down:before { content: '\ea84'; } /* '' */
.icon-sort-up:before { content: '\ea85'; } /* '' */
.icon-mail-alt:before { content: '\f0e0'; } /* '' */
.icon-linkedin-4:before { content: '\eab5'; } /* '' */
.icon-gauge:before { content: '\ea8d'; } /* '' */
.icon-comment-empty:before { content: '\f0e5'; } /* '' */
.icon-chat-empty:before { content: '\f0e6'; } /* '' */
.icon-paste:before { content: '\ea63'; } /* '' */
.icon-exchange-1:before { content: '\ea40'; } /* '' */
.icon-download-cloud-1:before { content: '\ea1d'; } /* '' */
.icon-upload-cloud-2:before { content: '\ea1c'; } /* '' */
.icon-user-md:before { content: '\ea92'; } /* '' */
.icon-stethoscope:before { content: '\eaa5'; } /* '' */
.icon-suitcase:before { content: '\ea65'; } /* '' */
.icon-bell-alt:before { content: '\ea29'; } /* '' */
.icon-coffee:before { content: '\ea8f'; } /* '' */
.icon-food:before { content: '\ea90'; } /* '' */
.icon-doc-text-1:before { content: '\ea4f'; } /* '' */
.icon-building:before { content: '\eaa0'; } /* '' */
.icon-hospital-1:before { content: '\eaa1'; } /* '' */
.icon-ambulance:before { content: '\eaa4'; } /* '' */
.icon-medkit:before { content: '\eaa3'; } /* '' */
.icon-fighter-jet:before { content: '\ea58'; } /* '' */
.icon-beer-1:before { content: '\ea91'; } /* '' */
.icon-h-sigh:before { content: '\eaa2'; } /* '' */
.icon-plus-squared:before { content: '\ea0e'; } /* '' */
.icon-angle-double-left:before { content: '\ea31'; } /* '' */
.icon-angle-double-right:before { content: '\ea36'; } /* '' */
.icon-angle-double-up:before { content: '\ea30'; } /* '' */
.icon-angle-double-down:before { content: '\ea2e'; } /* '' */
.icon-angle-left:before { content: '\ea3a'; } /* '' */
.icon-angle-right:before { content: '\ea39'; } /* '' */
.icon-angle-up:before { content: '\ea38'; } /* '' */
.icon-angle-down:before { content: '\ea37'; } /* '' */
.icon-desktop:before { content: '\ea45'; } /* '' */
.icon-laptop:before { content: '\ea46'; } /* '' */
.icon-tablet-1:before { content: '\ea47'; } /* '' */
.icon-mobile-4:before { content: '\ea48'; } /* '' */
.icon-circle-empty:before { content: '\ea68'; } /* '' */
.icon-quote-left-1:before { content: '\ea17'; } /* '' */
.icon-quote-right-2:before { content: '\ea16'; } /* '' */
.icon-spinner:before { content: '\ea8e'; } /* '' */
.icon-circle:before { content: '\ea69'; } /* '' */
.icon-reply-3:before { content: '\ea1b'; } /* '' */
.icon-github-3:before { content: '\eaac'; } /* '' */
.icon-folder-empty-1:before { content: '\ea4b'; } /* '' */
.icon-folder-open-empty:before { content: '\ea4c'; } /* '' */
.icon-plus-squared-small:before { content: '\ea0d'; } /* '' */
.icon-minus-squared-small:before { content: '\ea11'; } /* '' */
.icon-smile:before { content: '\ea9f'; } /* '' */
.icon-frown:before { content: '\ea9e'; } /* '' */
.icon-meh:before { content: '\ea9d'; } /* '' */
.icon-gamepad:before { content: '\ea25'; } /* '' */
.icon-keyboard-1:before { content: '\ea26'; } /* '' */
.icon-flag-empty:before { content: '\ea28'; } /* '' */
.icon-flag-checkered:before { content: '\ea27'; } /* '' */
.icon-terminal-1:before { content: '\eaaf'; } /* '' */
.icon-code-2:before { content: '\ea15'; } /* '' */
.icon-reply-all-2:before { content: '\ea18'; } /* '' */
.icon-star-half-alt:before { content: '\e8b4'; } /* '' */
.icon-direction-2:before { content: '\ea2b'; } /* '' */
.icon-crop:before { content: '\ea61'; } /* '' */
.icon-fork:before { content: '\ea79'; } /* '' */
.icon-unlink:before { content: '\ea20'; } /* '' */
.icon-help-2:before { content: '\ea12'; } /* '' */
.icon-attention-alt:before { content: '\ea2a'; } /* '' */
.icon-superscript:before { content: '\ea5d'; } /* '' */
.icon-subscript:before { content: '\ea5e'; } /* '' */
.icon-eraser:before { content: '\ea9b'; } /* '' */
.icon-puzzle-1:before { content: '\ea9a'; } /* '' */
.icon-mic-3:before { content: '\ea53'; } /* '' */
.icon-mute:before { content: '\ea52'; } /* '' */
.icon-shield:before { content: '\ea99'; } /* '' */
.icon-extinguisher:before { content: '\ea98'; } /* '' */
.icon-rocket:before { content: '\ea78'; } /* '' */
.icon-maxcdn:before { content: '\eab6'; } /* '' */
.icon-angle-circled-left:before { content: '\ea35'; } /* '' */
.icon-angle-circled-right:before { content: '\ea34'; } /* '' */
.icon-angle-circled-up:before { content: '\ea33'; } /* '' */
.icon-angle-circled-down:before { content: '\ea32'; } /* '' */
.icon-html5-1:before { content: '\eab2'; } /* '' */
.icon-css3:before { content: '\eaa7'; } /* '' */
.icon-anchor:before { content: '\ea9c'; } /* '' */
.icon-lock-open-alt:before { content: '\ea19'; } /* '' */
.icon-bullseye:before { content: '\ea97'; } /* '' */
.icon-ellipsis:before { content: '\ea7e'; } /* '' */
.icon-ellipsis-vert:before { content: '\ea7d'; } /* '' */
.icon-play-circled:before { content: '\ea44'; } /* '' */
.icon-ticket-1:before { content: '\ea66'; } /* '' */
.icon-minus-squared:before { content: '\ea0f'; } /* '' */
.icon-minus-squared-alt:before { content: '\ea10'; } /* '' */
.icon-level-up:before { content: '\ea2f'; } /* '' */
.icon-level-down-1:before { content: '\ea3f'; } /* '' */
.icon-ok-squared:before { content: '\ea21'; } /* '' */
.icon-pencil-squared:before { content: '\ea2d'; } /* '' */
.icon-link-ext-alt:before { content: '\ea1f'; } /* '' */
.icon-export-alt:before { content: '\ea14'; } /* '' */
.icon-compass-3:before { content: '\ea2c'; } /* '' */
.icon-collapse:before { content: '\ea41'; } /* '' */
.icon-collapse-top:before { content: '\ea42'; } /* '' */
.icon-expand:before { content: '\ea43'; } /* '' */
.icon-euro:before { content: '\ea6f'; } /* '' */
.icon-pound:before { content: '\ea6e'; } /* '' */
.icon-dollar-1:before { content: '\ea6d'; } /* '' */
.icon-rupee:before { content: '\ea6c'; } /* '' */
.icon-yen:before { content: '\ea6b'; } /* '' */
.icon-renminbi:before { content: '\ea80'; } /* '' */
.icon-won:before { content: '\ea81'; } /* '' */
.icon-bitcoin-1:before { content: '\ea82'; } /* '' */
.icon-doc-inv-1:before { content: '\ea50'; } /* '' */
.icon-doc-text-inv:before { content: '\ea51'; } /* '' */
.icon-sort-name-up:before { content: '\ea88'; } /* '' */
.icon-sort-name-down:before { content: '\ea89'; } /* '' */
.icon-sort-alt-up:before { content: '\ea86'; } /* '' */
.icon-sort-alt-down:before { content: '\ea87'; } /* '' */
.icon-sort-number-up:before { content: '\ea8a'; } /* '' */
.icon-sort-number-down:before { content: '\ea8b'; } /* '' */
.icon-thumbs-up-alt:before { content: '\ea23'; } /* '' */
.icon-thumbs-down-alt:before { content: '\ea24'; } /* '' */
.icon-youtube-squared:before { content: '\eab9'; } /* '' */
.icon-youtube-2:before { content: '\eaba'; } /* '' */
.icon-xing-1:before { content: '\eabc'; } /* '' */
.icon-xing-squared:before { content: '\eabb'; } /* '' */
.icon-youtube-play:before { content: '\eab8'; } /* '' */
.icon-dropbox-1:before { content: '\eaa9'; } /* '' */
.icon-stackoverflow:before { content: '\eac2'; } /* '' */
.icon-instagramm:before { content: '\eab3'; } /* '' */
.icon-flickr-1:before { content: '\eaaa'; } /* '' */
.icon-adn:before { content: '\ea96'; } /* '' */
.icon-bitbucket-1:before { content: '\ea93'; } /* '' */
.icon-bitbucket-squared:before { content: '\eaa6'; } /* '' */
.icon-tumblr-3:before { content: '\eac0'; } /* '' */
.icon-tumblr-squared:before { content: '\eabf'; } /* '' */
.icon-down-5:before { content: '\ea3e'; } /* '' */
.icon-up-5:before { content: '\ea3b'; } /* '' */
.icon-right-4:before { content: '\ea3c'; } /* '' */
.icon-left-4:before { content: '\ea3d'; } /* '' */
.icon-apple:before { content: '\ea94'; } /* '' */
.icon-windows-1:before { content: '\eabd'; } /* '' */
.icon-android-1:before { content: '\ea95'; } /* '' */
.icon-linux:before { content: '\eab4'; } /* '' */
.icon-dribbble-2:before { content: '\eaa8'; } /* '' */
.icon-skype-4:before { content: '\eac3'; } /* '' */
.icon-foursquare-1:before { content: '\eaab'; } /* '' */
.icon-trello:before { content: '\eac1'; } /* '' */
.icon-female:before { content: '\ea0c'; } /* '' */
.icon-male:before { content: '\ea0b'; } /* '' */
.icon-gittip:before { content: '\eaae'; } /* '' */
.icon-sun-3:before { content: '\ea4a'; } /* '' */
.icon-moon-3:before { content: '\ea56'; } /* '' */
.icon-box-1:before { content: '\ea4d'; } /* '' */
.icon-bug:before { content: '\ea77'; } /* '' */
.icon-vkontakte-1:before { content: '\eabe'; } /* '' */
.icon-weibo-1:before { content: '\eac6'; } /* '' */
.icon-renren-1:before { content: '\eac4'; } /* '' */
.icon-github-4:before { content: '\eadf'; } /* '' */
.icon-github:before { content: '\f300'; } /* '' */
.icon-facebook-1:before { content: '\e928'; } /* '' */
.icon-facebook-2:before { content: '\e96e'; } /* '' */
.icon-facebook-rect-1:before { content: '\e965'; } /* '' */
.icon-facebook-rect:before { content: '\f301'; } /* '' */
.icon-facebook-rect-2:before { content: '\e96f'; } /* '' */
.icon-github-circled-1:before { content: '\eade'; } /* '' */
.icon-twitter-1:before { content: '\f302'; } /* '' */
.icon-twitter-2:before { content: '\e970'; } /* '' */
.icon-twitter-bird-1:before { content: '\e964'; } /* '' */
.icon-twitter-bird-2:before { content: '\e971'; } /* '' */
.icon-flickr-2:before { content: '\eadd'; } /* '' */
.icon-twitter-bird:before { content: '\f303'; } /* '' */
.icon-icq:before { content: '\e977'; } /* '' */
.icon-twitter:before { content: '\f304'; } /* '' */
.icon-flickr-circled:before { content: '\e9f9'; } /* '' */
.icon-yandex:before { content: '\f305'; } /* '' */
.icon-yandex-rect:before { content: '\f306'; } /* '' */
.icon-vimeo-2:before { content: '\e9f8'; } /* '' */
.icon-github-text:before { content: '\f307'; } /* '' */
.icon-vimeo-circled:before { content: '\eaf1'; } /* '' */
.icon-facebook:before { content: '\f308'; } /* '' */
.icon-github-1:before { content: '\e975'; } /* '' */
.icon-twitter-5:before { content: '\eaf2'; } /* '' */
.icon-googleplus-rect:before { content: '\f309'; } /* '' */
.icon-googleplus-rect-1:before { content: '\e974'; } /* '' */
.icon-vkontakte-rect-1:before { content: '\e978'; } /* '' */
.icon-vkontakte-rect:before { content: '\f30a'; } /* '' */
.icon-twitter-circled:before { content: '\eaf3'; } /* '' */
.icon-skype:before { content: '\f30b'; } /* '' */
.icon-skype-1:before { content: '\e976'; } /* '' */
.icon-linkedin:before { content: '\f30c'; } /* '' */
.icon-facebook-5:before { content: '\eaf5'; } /* '' */
.icon-odnoklassniki:before { content: '\e96d'; } /* '' */
.icon-odnoklassniki-rect:before { content: '\f30d'; } /* '' */
.icon-odnoklassniki-rect-1:before { content: '\e96c'; } /* '' */
.icon-facebook-circled:before { content: '\eaf4'; } /* '' */
.icon-facebook-squared:before { content: '\e9ee'; } /* '' */
.icon-vimeo-rect-1:before { content: '\e972'; } /* '' */
.icon-vimeo-rect:before { content: '\f30e'; } /* '' */
.icon-gplus-1:before { content: '\e9ef'; } /* '' */
.icon-vimeo:before { content: '\f30f'; } /* '' */
.icon-tumblr-rect-1:before { content: '\e973'; } /* '' */
.icon-tumblr-rect:before { content: '\e963'; } /* '' */
.icon-gplus-circled:before { content: '\f310'; } /* '' */
.icon-tumblr:before { content: '\f311'; } /* '' */
.icon-friendfeed:before { content: '\e96b'; } /* '' */
.icon-pinterest-1:before { content: '\e9f0'; } /* '' */
.icon-linkedin-rect:before { content: '\f312'; } /* '' */
.icon-youtube:before { content: '\f313'; } /* '' */
.icon-pinterest-circled:before { content: '\e9f1'; } /* '' */
.icon-friendfeed-rect:before { content: '\e96a'; } /* '' */
.icon-blogger:before { content: '\e969'; } /* '' */
.icon-twitter-rect:before { content: '\f314'; } /* '' */
.icon-tumblr-2:before { content: '\e9f2'; } /* '' */
.icon-blogger-rect:before { content: '\f315'; } /* '' */
.icon-tumblr-circled:before { content: '\e9f3'; } /* '' */
.icon-deviantart:before { content: '\f316'; } /* '' */
.icon-jabber:before { content: '\f317'; } /* '' */
.icon-linkedin-3:before { content: '\e9f4'; } /* '' */
.icon-lastfm:before { content: '\f318'; } /* '' */
.icon-lastfm-rect:before { content: '\f319'; } /* '' */
.icon-linkedin-circled:before { content: '\e9f5'; } /* '' */
.icon-linkedin-1:before { content: '\f31a'; } /* '' */
.icon-linkedin-rect-1:before { content: '\f31b'; } /* '' */
.icon-dribbble-1:before { content: '\e9f6'; } /* '' */
.icon-dribbble-circled:before { content: '\e9f7'; } /* '' */
.icon-picasa:before { content: '\f31c'; } /* '' */
.icon-wordpress:before { content: '\f31d'; } /* '' */
.icon-stumbleupon-1:before { content: '\f31e'; } /* '' */
.icon-stumbleupon-circled:before { content: '\f31f'; } /* '' */
.icon-instagram-filled:before { content: '\ec65'; } /* '' */
.icon-diigo:before { content: '\ec66'; } /* '' */
.icon-box-4:before { content: '\ec6b'; } /* '' */
.icon-lastfm-1:before { content: '\f321'; } /* '' */
.icon-lastfm-circled:before { content: '\f322'; } /* '' */
.icon-box-rect:before { content: '\ec67'; } /* '' */
.icon-tudou:before { content: '\ec68'; } /* '' */
.icon-youku:before { content: '\ec69'; } /* '' */
.icon-rdio:before { content: '\f324'; } /* '' */
.icon-rdio-circled:before { content: '\f325'; } /* '' */
.icon-win8:before { content: '\ec6a'; } /* '' */
.icon-spotify-1:before { content: '\f327'; } /* '' */
.icon-spotify-circled:before { content: '\f328'; } /* '' */
.icon-qq:before { content: '\f32a'; } /* '' */
.icon-instagrem:before { content: '\f32d'; } /* '' */
.icon-dropbox:before { content: '\f330'; } /* '' */
.icon-evernote-1:before { content: '\f333'; } /* '' */
.icon-flattr-1:before { content: '\f336'; } /* '' */
.icon-skype-3:before { content: '\f339'; } /* '' */
.icon-skype-circled:before { content: '\f33a'; } /* '' */
.icon-renren:before { content: '\f33c'; } /* '' */
.icon-sina-weibo:before { content: '\f33f'; } /* '' */
.icon-paypal-1:before { content: '\f342'; } /* '' */
.icon-picasa-1:before { content: '\f345'; } /* '' */
.icon-soundcloud-1:before { content: '\f348'; } /* '' */
.icon-mixi:before { content: '\f34b'; } /* '' */
.icon-behance:before { content: '\f34e'; } /* '' */
.icon-google-circles:before { content: '\f351'; } /* '' */
.icon-vkontakte:before { content: '\f354'; } /* '' */
.icon-smashing:before { content: '\f357'; } /* '' */
.icon-comment-5:before { content: '\ebfd'; } /* '' */
.icon-folder-open-empty-1:before { content: '\ec09'; } /* '' */
.icon-calendar-6:before { content: '\ec1e'; } /* '' */
.icon-newspaper-1:before { content: '\ec05'; } /* '' */
.icon-camera-5:before { content: '\ebde'; } /* '' */
.icon-search-6:before { content: '\ebd0'; } /* '' */
.icon-lock-alt:before { content: '\ebe9'; } /* '' */
.icon-lock-7:before { content: '\ebea'; } /* '' */
.icon-lock-open-7:before { content: '\ebe8'; } /* '' */
.icon-fire-1:before { content: '\ec35'; } /* '' */
.icon-chart-bar-5:before { content: '\ec34'; } /* '' */
.icon-spread:before { content: '\ec4c'; } /* '' */
.icon-spinner1:before { content: '\ec4f'; } /* '' */
.icon-spinner2:before { content: '\ec50'; } /* '' */
.icon-logo-entypo:before { content: '\f600'; } /* '' */
.icon-flag-sw:before { content: '\f601'; } /* '' */
.icon-logo-db:before { content: '\f603'; } /* '' */
.icon-globe-1:before { content: '\e8e0'; } /* '' */
.icon-picture-2:before { content: '\e852'; } /* '' */
.icon-picture-1:before { content: '\e808'; } /* '' */
.icon-picture:before { content: '🌄'; } /* '\1f304' */
.icon-picture-3:before { content: '\e931'; } /* '' */
.icon-globe:before { content: '𝌍'; } /* '\1d30d' */
.icon-globe-3:before { content: '\ea49'; } /* '' */
.icon-globe-alt:before { content: '🌐'; } /* '\1f310' */
.icon-globe-2:before { content: '\e924'; } /* '' */
.icon-leaf:before { content: '🍂'; } /* '\1f342' */
.icon-leaf-1:before { content: '\e849'; } /* '' */
.icon-lemon:before { content: '🍋'; } /* '\1f34b' */
.icon-glass:before { content: '🍸'; } /* '\1f378' */
.icon-gift:before { content: '🎁'; } /* '\1f381' */
.icon-graduation-cap:before { content: '\eaec'; } /* '' */
.icon-mic-1:before { content: '\e879'; } /* '' */
.icon-mic:before { content: '🎤'; } /* '\1f3a4' */
.icon-mic-2:before { content: '\e8c1'; } /* '' */
.icon-videocam:before { content: '🎥'; } /* '\1f3a5' */
.icon-videocam-1:before { content: '\e8eb'; } /* '' */
.icon-video-alt:before { content: '🎦'; } /* '\1f3a6' */
.icon-headphones-1:before { content: '\e87c'; } /* '' */
.icon-headphones:before { content: '🎧'; } /* '\1f3a7' */
.icon-palette:before { content: '🎨'; } /* '\1f3a8' */
.icon-ticket:before { content: '🎫'; } /* '\1f3ab' */
.icon-video-1:before { content: '\e807'; } /* '' */
.icon-video:before { content: '🎬'; } /* '\1f3ac' */
.icon-video-4:before { content: '\e930'; } /* '' */
.icon-video-2:before { content: '\e851'; } /* '' */
.icon-target:before { content: '🎯'; } /* '\1f3af' */
.icon-target-2:before { content: '\e88f'; } /* '' */
.icon-target-1:before { content: '\e846'; } /* '' */
.icon-target-3:before { content: '\e8dc'; } /* '' */
.icon-target-4:before { content: '\e95c'; } /* '' */
.icon-music-alt:before { content: '🎵'; } /* '\1f3b5' */
.icon-top-list:before { content: '🏆'; } /* '\1f3c6' */
.icon-award:before { content: '🏉'; } /* '\1f3c9' */
.icon-award-2:before { content: '\e920'; } /* '' */
.icon-award-1:before { content: '\e894'; } /* '' */
.icon-videocam-alt:before { content: '🏹'; } /* '\1f3f9' */
.icon-thumbs-up-3:before { content: '\e8f7'; } /* '' */
.icon-thumbs-up:before { content: '👍'; } /* '\1f44d' */
.icon-thumbs-up-1:before { content: '\e81b'; } /* '' */
.icon-thumbs-up-2:before { content: '\e8a9'; } /* '' */
.icon-thumbs-down-3:before { content: '\eacb'; } /* '' */
.icon-thumbs-down-2:before { content: '\e8f6'; } /* '' */
.icon-thumbs-down:before { content: '👎'; } /* '\1f44e' */
.icon-thumbs-down-1:before { content: '\e8a8'; } /* '' */
.icon-basket:before { content: '\e73d'; } /* '' */
.icon-user-1:before { content: '\e806'; } /* '' */
.icon-user-4:before { content: '\e8e9'; } /* '' */
.icon-user:before { content: '👤'; } /* '\1f464' */
.icon-user-5:before { content: '\e92f'; } /* '' */
.icon-user-2:before { content: '\e850'; } /* '' */
.icon-users-2:before { content: '\ea0a'; } /* '' */
.icon-users:before { content: '👥'; } /* '\1f465' */
.icon-user-woman:before { content: '👩'; } /* '\1f469' */
.icon-user-pair:before { content: '👫'; } /* '\1f46b' */
.icon-lamp-1:before { content: '\e87e'; } /* '' */
.icon-lamp:before { content: '💡'; } /* '\1f4a1' */
.icon-alert:before { content: '\eacd'; } /* '' */
.icon-water:before { content: '💦'; } /* '\1f4a6' */
.icon-droplet:before { content: '💧'; } /* '\1f4a7' */
.icon-credit-card-1:before { content: '💳'; } /* '\1f4b3' */
.icon-credit-card-2:before { content: '\ea7f'; } /* '' */
.icon-dollar:before { content: '💵'; } /* '\1f4b5' */
.icon-monitor:before { content: '💻'; } /* '\1f4bb' */
.icon-bag:before { content: '\e78a'; } /* '' */
.icon-briefcase:before { content: '\ea64'; } /* '' */
.icon-floppy:before { content: '💾'; } /* '\1f4be' */
.icon-floppy-1:before { content: '\ea7c'; } /* '' */
.icon-cd:before { content: '💿'; } /* '\1f4bf' */
.icon-cd-2:before { content: '\e922'; } /* '' */
.icon-cd-1:before { content: '\e892'; } /* '' */
.icon-folder-3:before { content: '\e956'; } /* '' */
.icon-folder-1:before { content: '\e824'; } /* '' */
.icon-folder:before { content: '📁'; } /* '\1f4c1' */
.icon-folder-2:before { content: '\e86d'; } /* '' */
.icon-folder-open:before { content: '📂'; } /* '\1f4c2' */
.icon-folder-empty:before { content: '\e874'; } /* '' */
.icon-doc-3:before { content: '\e908'; } /* '' */
.icon-doc-text:before { content: '📄'; } /* '\1f4c4' */
.icon-doc-1:before { content: '\e825'; } /* '' */
.icon-calendar-2:before { content: '\e878'; } /* '' */
.icon-calendar:before { content: '📅'; } /* '\1f4c5' */
.icon-calendar-3:before { content: '\e90d'; } /* '' */
.icon-calendar-1:before { content: '\e822'; } /* '' */
.icon-calendar-alt:before { content: '📆'; } /* '\1f4c6' */
.icon-chart:before { content: '📈'; } /* '\1f4c8' */
.icon-chart-1:before { content: '\e925'; } /* '' */
.icon-chart-line:before { content: '\e9fc'; } /* '' */
.icon-chart-bar-3:before { content: '\e9fb'; } /* '' */
.icon-chart-bar:before { content: '📊'; } /* '\1f4ca' */
.icon-chart-bar-4:before { content: '\ea67'; } /* '' */
.icon-chart-bar-1:before { content: '\e8e4'; } /* '' */
.icon-chart-bar-2:before { content: '\e926'; } /* '' */
.icon-pin-1:before { content: '\e85f'; } /* '' */
.icon-pin:before { content: '📌'; } /* '\1f4cc' */
.icon-attach-1:before { content: '\e863'; } /* '' */
.icon-attach-2:before { content: '\e947'; } /* '' */
.icon-attach-3:before { content: '\ea1e'; } /* '' */
.icon-attach:before { content: '📎'; } /* '\1f4ce' */
.icon-bookmarks:before { content: '\eac9'; } /* '' */
.icon-book-alt:before { content: '📔'; } /* '\1f4d4' */
.icon-book-2:before { content: '\e923'; } /* '' */
.icon-book-1:before { content: '\e891'; } /* '' */
.icon-book:before { content: '📕'; } /* '\1f4d5' */
.icon-book-3:before { content: '\ead0'; } /* '' */
.icon-book-open:before { content: '📖'; } /* '\1f4d6' */
.icon-book-open-1:before { content: '\e86e'; } /* '' */
.icon-phone-1:before { content: '\e8be'; } /* '' */
.icon-phone-2:before { content: '\e9e8'; } /* '' */
.icon-phone:before { content: '📞'; } /* '\1f4de' */
.icon-megaphone:before { content: '\ea02'; } /* '' */
.icon-bullhorn:before { content: '📣'; } /* '\1f4e3' */
.icon-megaphone-1:before { content: '\ea7b'; } /* '' */
.icon-upload-1:before { content: '\e81d'; } /* '' */
.icon-upload-2:before { content: '\e85b'; } /* '' */
.icon-upload:before { content: '📤'; } /* '\1f4e4' */
.icon-download:before { content: '📥'; } /* '\1f4e5' */
.icon-download-1:before { content: '\e81c'; } /* '' */
.icon-download-3:before { content: '\e8a7'; } /* '' */
.icon-download-4:before { content: '\e8f4'; } /* '' */
.icon-download-2:before { content: '\e85c'; } /* '' */
.icon-box-2:before { content: '\ead6'; } /* '' */
.icon-box:before { content: '📦'; } /* '\1f4e6' */
.icon-newspaper:before { content: '\eace'; } /* '' */
.icon-mobile:before { content: '📱'; } /* '\1f4f1' */
.icon-mobile-1:before { content: '\e893'; } /* '' */
.icon-mobile-2:before { content: '\e8dd'; } /* '' */
.icon-mobile-3:before { content: '\e921'; } /* '' */
.icon-signal-1:before { content: '📶'; } /* '\1f4f6' */
.icon-signal-4:before { content: '\e95b'; } /* '' */
.icon-signal-2:before { content: '\e890'; } /* '' */
.icon-signal:before { content: '\e770'; } /* '' */
.icon-camera-4:before { content: '\e8ec'; } /* '' */
.icon-camera-2:before { content: '\e853'; } /* '' */
.icon-camera:before { content: '📷'; } /* '\1f4f7' */
.icon-camera-1:before { content: '\e809'; } /* '' */
.icon-shuffle-2:before { content: '\e8d5'; } /* '' */
.icon-shuffle:before { content: '🔀'; } /* '\1f500' */
.icon-shuffle-1:before { content: '\e839'; } /* '' */
.icon-loop-alt:before { content: '🔁'; } /* '\1f501' */
.icon-loop-1:before { content: '\e8d4'; } /* '' */
.icon-loop-2:before { content: '\ead8'; } /* '' */
.icon-loop:before { content: '🔄'; } /* '\1f504' */
.icon-arrows-ccw:before { content: '\ead9'; } /* '' */
.icon-light-down:before { content: '🔅'; } /* '\1f505' */
.icon-light-up:before { content: '🔆'; } /* '\1f506' */
.icon-volume-off:before { content: '🔇'; } /* '\1f507' */
.icon-volume-off-4:before { content: '\e90f'; } /* '' */
.icon-volume-off-2:before { content: '\e87a'; } /* '' */
.icon-volume-off-1:before { content: '\e82d'; } /* '' */
.icon-volume-down-1:before { content: '\e91f'; } /* '' */
.icon-volume-down:before { content: '🔉'; } /* '\1f509' */
.icon-volume-up-4:before { content: '\e91b'; } /* '' */
.icon-volume-up:before { content: '🔊'; } /* '\1f50a' */
.icon-volume-up-1:before { content: '\e82e'; } /* '' */
.icon-volume-up-2:before { content: '\e87b'; } /* '' */
.icon-battery:before { content: '🔋'; } /* '\1f50b' */
.icon-search-1:before { content: '\e800'; } /* '' */
.icon-search-4:before { content: '\e8e5'; } /* '' */
.icon-search:before { content: '🔍'; } /* '\1f50d' */
.icon-search-5:before { content: '\e92a'; } /* '' */
.icon-search-2:before { content: '\e84b'; } /* '' */
.icon-key-2:before { content: '\e8e2'; } /* '' */
.icon-key-3:before { content: '\e9fe'; } /* '' */
.icon-key-inv:before { content: '\e896'; } /* '' */
.icon-key:before { content: '🔑'; } /* '\1f511' */
.icon-lock:before { content: '🔒'; } /* '\1f512' */
.icon-lock-1:before { content: '\e816'; } /* '' */
.icon-lock-4:before { content: '\e8fb'; } /* '' */
.icon-lock-5:before { content: '\e944'; } /* '' */
.icon-lock-2:before { content: '\e862'; } /* '' */
.icon-lock-open-3:before { content: '\e8fa'; } /* '' */
.icon-lock-open:before { content: '🔓'; } /* '\1f513' */
.icon-lock-open-4:before { content: '\e948'; } /* '' */
.icon-lock-open-5:before { content: '\ea1a'; } /* '' */
.icon-lock-open-1:before { content: '\e860'; } /* '' */
.icon-bell-2:before { content: '\e9e9'; } /* '' */
.icon-bell-1:before { content: '\e903'; } /* '' */
.icon-bell:before { content: '🔔'; } /* '\1f514' */
.icon-bookmark-1:before { content: '\e819'; } /* '' */
.icon-bookmark-2:before { content: '\e8aa'; } /* '' */
.icon-bookmark:before { content: '🔖'; } /* '\1f516' */
.icon-link-5:before { content: '\ea22'; } /* '' */
.icon-link:before { content: '🔗'; } /* '\1f517' */
.icon-link-2:before { content: '\e864'; } /* '' */
.icon-link-4:before { content: '\e945'; } /* '' */
.icon-back:before { content: '\e706'; } /* '' */
.icon-fire:before { content: '🔥'; } /* '\1f525' */
.icon-search-alt:before { content: '🔎'; } /* '\1f50e' */
.icon-wrench-2:before { content: '\e90b'; } /* '' */
.icon-wrench-3:before { content: '\ea4e'; } /* '' */
.icon-wrench-1:before { content: '\e8c0'; } /* '' */
.icon-wrench:before { content: '🔧'; } /* '\1f527' */
.icon-hammer:before { content: '\ea8c'; } /* '' */
.icon-chart-area:before { content: '🔾'; } /* '\1f53e' */
.icon-clock-alt:before { content: '🕓'; } /* '\1f553' */
.icon-clock-4:before { content: '\e91a'; } /* '' */
.icon-clock:before { content: '🕔'; } /* '\1f554' */
.icon-clock-3:before { content: '\e8d2'; } /* '' */
.icon-clock-1:before { content: '\e82f'; } /* '' */
.icon-clock-2:before { content: '\e87d'; } /* '' */
.icon-clock-5:before { content: '\e950'; } /* '' */
.icon-rocket-1:before { content: '\eaed'; } /* '' */
.icon-truck:before { content: '\ea71'; } /* '' */
.icon-block-4:before { content: '\e94f'; } /* '' */
.icon-block-1:before { content: '\e830'; } /* '' */
.icon-block:before { content: '🚫'; } /* '\1f6ab' */
.icon-block-2:before { content: '\e887'; } /* '' */
.icon-block-3:before { content: '\e8d1'; } /* '' */
/* abeezee-regular - latin */
@font-face {
  font-family: 'ABeeZee';
  font-style: normal;
  font-weight: 400;
  src: url('../../files/cto_layout/fonts/abeezee/abeezee-v22-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../../files/cto_layout/fonts/abeezee/abeezee-v22-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../../files/cto_layout/fonts/abeezee/abeezee-v22-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../../files/cto_layout/fonts/abeezee/abeezee-v22-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../../files/cto_layout/fonts/abeezee/abeezee-v22-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../../files/cto_layout/fonts/abeezee/abeezee-v22-latin-regular.svg#ABeeZee') format('svg'); /* Legacy iOS */
}
/* abeezee-italic - latin */
@font-face {
  font-family: 'ABeeZee';
  font-style: italic;
  font-weight: 400;
  src: url('../../files/cto_layout/fonts/abeezee/abeezee-v22-latin-italic.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../../files/cto_layout/fonts/abeezee/abeezee-v22-latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../../files/cto_layout/fonts/abeezee/abeezee-v22-latin-italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('../../files/cto_layout/fonts/abeezee/abeezee-v22-latin-italic.woff') format('woff'), /* Modern Browsers */
       url('../../files/cto_layout/fonts/abeezee/abeezee-v22-latin-italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../../files/cto_layout/fonts/abeezee/abeezee-v22-latin-italic.svg#ABeeZee') format('svg'); /* Legacy iOS */
}


/* cyrillic-ext */
@font-face {
  font-family: 'Open Sans Condensed';
  font-style: italic;
  font-weight: 300;
  src: local(''),
      url('../../files/cto_layout/fonts/opensanscondensed/z7NHdQDnbTkabZAIOl9il_O6KJj73e7Fd_-7suD8SL2V6As.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Open Sans Condensed';
  font-style: italic;
  font-weight: 300;
  src: local(''),
      url('../../files/cto_layout/fonts/opensanscondensed/z7NHdQDnbTkabZAIOl9il_O6KJj73e7Fd_-7suD8Qb2V6As.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Open Sans Condensed';
  font-style: italic;
  font-weight: 300;
  src: local(''),
      url('../../files/cto_layout/fonts/opensanscondensed/z7NHdQDnbTkabZAIOl9il_O6KJj73e7Fd_-7suD8Sb2V6As.woff2') format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Open Sans Condensed';
  font-style: italic;
  font-weight: 300;
  src: local(''),
      url('../../files/cto_layout/fonts/opensanscondensed/z7NHdQDnbTkabZAIOl9il_O6KJj73e7Fd_-7suD8Rr2V6As.woff2') format('woff2');
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Open Sans Condensed';
  font-style: italic;
  font-weight: 300;
  src: local(''),
      url('../../files/cto_layout/fonts/opensanscondensed/z7NHdQDnbTkabZAIOl9il_O6KJj73e7Fd_-7suD8Sr2V6As.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Open Sans Condensed';
  font-style: italic;
  font-weight: 300;
  src: local(''),
      url('../../files/cto_layout/fonts/opensanscondensed/z7NHdQDnbTkabZAIOl9il_O6KJj73e7Fd_-7suD8S72V6As.woff2') format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Open Sans Condensed';
  font-style: italic;
  font-weight: 300;
  src: local(''),
      url('../../files/cto_layout/fonts/opensanscondensed/z7NHdQDnbTkabZAIOl9il_O6KJj73e7Fd_-7suD8Rb2V.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Open Sans Condensed';
  font-style: normal;
  font-weight: 300;
  src: local(''),
      url('../../files/cto_layout/fonts/opensanscondensed/z7NFdQDnbTkabZAIOl9il_O6KJj73e7Ff1GhDujMR6WR.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Open Sans Condensed';
  font-style: normal;
  font-weight: 300;
  src: local(''),
      url('../../files/cto_layout/fonts/opensanscondensed/z7NFdQDnbTkabZAIOl9il_O6KJj73e7Ff1GhDuHMR6WR.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Open Sans Condensed';
  font-style: normal;
  font-weight: 300;
  src: local(''),
      url('../../files/cto_layout/fonts/opensanscondensed/z7NFdQDnbTkabZAIOl9il_O6KJj73e7Ff1GhDunMR6WR.woff2') format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Open Sans Condensed';
  font-style: normal;
  font-weight: 300;
  src: local(''),
      url('../../files/cto_layout/fonts/opensanscondensed/z7NFdQDnbTkabZAIOl9il_O6KJj73e7Ff1GhDubMR6WR.woff2') format('woff2');
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Open Sans Condensed';
  font-style: normal;
  font-weight: 300;
  src: local(''),
      url('../../files/cto_layout/fonts/opensanscondensed/z7NFdQDnbTkabZAIOl9il_O6KJj73e7Ff1GhDurMR6WR.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Open Sans Condensed';
  font-style: normal;
  font-weight: 300;
  src: local(''),
      url('../../files/cto_layout/fonts/opensanscondensed/z7NFdQDnbTkabZAIOl9il_O6KJj73e7Ff1GhDuvMR6WR.woff2') format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Open Sans Condensed';
  font-style: normal;
  font-weight: 300;
  src: local(''),
      url('../../files/cto_layout/fonts/opensanscondensed/z7NFdQDnbTkabZAIOl9il_O6KJj73e7Ff1GhDuXMRw.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Open Sans Condensed';
  font-style: normal;
  font-weight: 700;
  src: local(''),
      url('../../files/cto_layout/fonts/opensanscondensed/z7NFdQDnbTkabZAIOl9il_O6KJj73e7Ff0GmDujMR6WR.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Open Sans Condensed';
  font-style: normal;
  font-weight: 700;
  src: local(''),
      url('../../files/cto_layout/fonts/opensanscondensed/z7NFdQDnbTkabZAIOl9il_O6KJj73e7Ff0GmDuHMR6WR.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Open Sans Condensed';
  font-style: normal;
  font-weight: 700;
  src: local(''),
      url('../../files/cto_layout/fonts/opensanscondensed/z7NFdQDnbTkabZAIOl9il_O6KJj73e7Ff0GmDunMR6WR.woff2') format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Open Sans Condensed';
  font-style: normal;
  font-weight: 700;
  src: local(''),
      url('../../files/cto_layout/fonts/opensanscondensed/z7NFdQDnbTkabZAIOl9il_O6KJj73e7Ff0GmDubMR6WR.woff2') format('woff2');
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Open Sans Condensed';
  font-style: normal;
  font-weight: 700;
  src: local(''),
      url('../../files/cto_layout/fonts/opensanscondensed/z7NFdQDnbTkabZAIOl9il_O6KJj73e7Ff0GmDurMR6WR.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Open Sans Condensed';
  font-style: normal;
  font-weight: 700;
  src: local(''),
      url('../../files/cto_layout/fonts/opensanscondensed/z7NFdQDnbTkabZAIOl9il_O6KJj73e7Ff0GmDuvMR6WR.woff2') format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Open Sans Condensed';
  font-style: normal;
  font-weight: 700;
  src: local(''),
      url('../../files/cto_layout/fonts/opensanscondensed/z7NFdQDnbTkabZAIOl9il_O6KJj73e7Ff0GmDuXMRw.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* =============================================================================
 * reset & defaults
 * ========================================================================== */

/*     --reset
------------------------------------------------- */
* {margin: 0; padding: 0; border: 0; outline: 0; background-repeat: no-repeat; -webkit-tap-highlight-color: rgba(0, 0, 0, 0);}
* {-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;}
#wrapper .mejs-container *,  #calroot, #theme-menu *, #theme-export, #theme-export * {-webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box;}
ol, ul {list-style: none;}
table {border-spacing: 0;}
body {height: 100%; position: relative;}

/*     --float classes
------------------------------------------------- */
.float-left {float: left;}
.float-right {float: right;}

/*     --helper classes
------------------------------------------------- */
.center {text-align: center;}
.align_right {text-align: right;}
.hide {display: none;}

/*     --lightbox link height
------------------------------------------------- */
.image_container a {line-height: 0;}

/*     --lightbox width
------------------------------------------------- */ 
#mbCenter img {width: auto; max-width: 100%; height: auto; vertical-align: middle;}

/*     --clearings + defaults
------------------------------------------------- */ 
.inside{position:relative;text-align:left}
.block{overflow:hidden}
.clear,#clear{height:0.1px;font-size:0.1px;line-height:0.1px;clear:both}
.invisible{width:0;height:0;left:-1000px;top:-1000px;position:absolute;overflow:hidden;display:inline}
.custom{display:block;text-align:left}
.custom:after{content:".";display:block;height:0;clear:both;visibility:hidden}
*+html #main{position:static}
header,footer,nav,section,aside,article,figure,figcaption{display:block}
#container:after {content: "\0020"; display: block; height: 0; clear: both; visibility: hidden;}

/*     --chromeframe
------------------------------------------------- */
#chromeframe {background: red; padding: 10px; color: #fff; text-align: center; position: relative; z-index: 10000;}

/* =============================================================================
 * general styles & page setup
 * ========================================================================== */

a {color: #555; text-decoration: none;}
.ce_text p a:not(.button) {color: rgb(0,63,91);}
p {margin-bottom: 15px;}
blockquote {font-style: italic; font-size: 16px; margin-bottom: 20px;}
blockquote p {line-height: 22px;}
.image_container img {max-width: 100%;}
code, pre {font-family: monospace;}
abbr {background: #efefef; border-bottom: 1px dashed; cursor: pointer;}

/*     --helper classes
------------------------------------------------- */
.bigtext {font-size: 3em; line-height: 1em; font-weight: 300;}
.center {text-align: center;}
.no_margins p {margin: 0;}
.color {color: rgb(0,63,91);}
.bg_color {background-color: rgb(0,63,91);}
.text_invert, .text_invert h1, .text_invert h2, .text_invert h3, .text_invert h4, .text_invert h5, .text_invert h6, .text_invert a {color: #fff;}
.aligncenter * {text-align: center;}

/*     --margin classes
------------------------------------------------- */
.margin-top10 {margin-top: 10px;}
.margin-top20 {margin-top: 20px;}
.margin-top30 {margin-top: 30px;}
.margin-top40 {margin-top: 40px;}
.margin-top50 {margin-top: 50px;}
.margin-top60 {margin-top: 60px;}
.margin-top70 {margin-top: 70px;}
.margin-top80 {margin-top: 80px;}
.margin-top90 {margin-top: 90px;}
.margin-top100 {margin-top: 100px;}

.margin-bottom10 {margin-bottom: 10px;}
.margin-bottom20 {margin-bottom: 20px;}
.margin-bottom30 {margin-bottom: 30px;}
.margin-bottom40 {margin-bottom: 40px;}
.margin-bottom50 {margin-bottom: 50px;}
.margin-bottom60 {margin-bottom: 60px;}
.margin-bottom70 {margin-bottom: 70px;}
.margin-bottom80 {margin-bottom: 80px;}
.margin-bottom90 {margin-bottom: 90px;}
.margin-bottom100 {margin-bottom: 100px;}

/*     --fontsize classes
------------------------------------------------- */
.fontsize_xxxl {font-size: 100px; line-height: 1em;}
.fontsize_xxl {font-size: 45px; line-height: 60px;}
.fontsize_xl {font-size: 34px; line-height: 50px;}
.fontsize_l {font-size: 28px; line-height: 41px;}
.fontsize_m {font-size: 24px; line-height: 39px;}
.fontsize_s {font-size: 20px; line-height: 31px;}
.fontsize_xs {font-size: 14px; line-height: 22px;}
.fontsize_xxs {font-size: 11px; line-height: 22px;}
.fontsize_xxxs {font-size: 9px; line-height: 20px;}

/*     --border for ce_elements
------------------------------------------------- */
.border-top {border-top: 1px solid #ccc; padding-top: 20px;}
.border-bottom {border-bottom: 1px solid #ccc; padding-bottom: 20px;}

/*     --headlines
------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {padding: 0; line-height: 1.4em; margin-bottom: 0.5em; font-family: 'Open Sans Condensed', sans-serif; color: #4d4f4f; font-weight: 100;}
h1 {font-size: /*36px;*/ 32px;}
h2 {font-size: /*26px;*/ 26px;}
h3 {font-size: /*24px;*/ 20px;}
h4 {font-size: /*20px;*/ 20px;}
h5 {font-size: /*18px;*/ 20px;}
h6 {font-size: /*16px;*/ 20px;}

/*     --h1-h6 as divider
------------------------------------------------- */
.divider .ext_txtpic_headline h1:after, .divider .ext_txtpic_headline h2:after, .divider .ext_txtpic_headline h3:after, .divider .ext_txtpic_headline h4:after, .divider .ext_txtpic_headline h5:after, .divider .ext_txtpic_headline h6:after {content: ''; display: inline-block; height: 2px; background: #ccc; width: 65px; text-align: center; margin-bottom: 20px; margin-top: 15px;}
.divider span {display: block;}
.divider h1, .divider h2, .divider h3, .divider h4, .divider h5, .divider h6 {margin-bottom: 0;}
.divider_2 .ext_txtpic_headline h1, .divider_2 .ext_txtpic_headline h2, .divider_2 .ext_txtpic_headline h3, .divider_2 .ext_txtpic_headline h4, .divider_2 .ext_txtpic_headline h5, .divider_2 .ext_txtpic_headline h6 {background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVgAAAAHCAYAAABNw1XWAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MkI0RkVENTQzRjk0MTFFM0FFMjFFNTMxNkNENzhBQjkiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MkI0RkVENTUzRjk0MTFFM0FFMjFFNTMxNkNENzhBQjkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDoyQjRGRUQ1MjNGOTQxMUUzQUUyMUU1MzE2Q0Q3OEFCOSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDoyQjRGRUQ1MzNGOTQxMUUzQUUyMUU1MzE2Q0Q3OEFCOSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PhTFZn8AAABCSURBVHja7Ni5DQAgDANAghifhppheXZIg7iTsoALK3L0MVcBIF07F2IAyFdFAKBgAZ5yJwIbLIAPFkDBAnxvCzAA9QwDyfsuRn0AAAAASUVORK5CYII=') repeat-x left 50%; line-height: 1.6em; border: 0;}
.divider_2 span {background: #fff; padding: 0 20px 0 20px;}
.divider [class^="icon-"]:before, .divider_2 [class^="icon-"]:before {background: #fff; padding-right: 10px;}
.divider_3 .ext_txtpic_headline {border-bottom: 1px solid #efefef; margin-bottom: 20px;}
.divider_4 .ext_txtpic_headline {border-bottom: 2px solid #efefef; margin-bottom: 20px;}
.divider_5 .ext_txtpic_headline {border-bottom: 3px double #efefef; margin-bottom: 20px;}

/*     --subheadlines
------------------------------------------------- */
.subheadline_h1 {font-size: 18px; color: #acacac; line-height: 1.2em;}
.subheadline_h2 {font-size: 14px; color: #acacac; line-height: 1.2em;}
.subheadline_h3 {font-size: 14px; color: #acacac; line-height: 1.2em;}
.subheadline_h4 {font-size: 13px; color: #acacac; line-height: 1.2em;}
.subheadline_h5 {font-size: 12px; color: #acacac; line-height: 1.2em;}
.subheadline_h6 {font-size: 11px; color: #acacac; line-height: 1.2em;}

/*     --hr divider
------------------------------------------------- */
hr {width: 100%; clear: both;}
hr, hr.divider_1 {padding: 0; border: none; border-top: medium double #ddd; color: #ccc; text-align: center; height: 1px;}
hr.divider_2 {position: relative; height: 7px; line-height: 7px; border: 0; background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAADCAIAAADZSiLoAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2hpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYxIDY0LjE0MDk0OSwgMjAxMC8xMi8wNy0xMDo1NzowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDowMzgwMTE3NDA3MjA2ODExODIyQTlGM0MyNTg5Mjc5RSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoyNUM4QjREMkI1NUUxMUUyQjRFMDk1Qjc3NUNEREM5MyIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoyNUM4QjREMUI1NUUxMUUyQjRFMDk1Qjc3NUNEREM5MyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1LjEgTWFjaW50b3NoIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MDE4MDExNzQwNzIwNjgxMThBNkRFNERCNDlCNzI3RDQiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MDM4MDExNzQwNzIwNjgxMTgyMkE5RjNDMjU4OTI3OUUiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7RQI1BAAAAGklEQVR42mI6cODAfzBgAGIIhwEiAOQABBgAcpsYsYmEevYAAAAASUVORK5CYII='); border-radius: 7px; }
hr.divider_3 {position: relative; height: 11px; line-height: 11px; border: 0; background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA8oAAAALCAYAAACnM3S4AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAB+RJREFUeNrsXe1y2zgMBHP9n7z/U+YJjKZzdzM+H4ndBUDJTqSZttNY4ge+uLuknPH+/v6X/X2Nrz/+z7/qdf/Mqo0htuXks/fjdmIezOeZeQzSPkobbP9M34/zHnc2HsAuq2eyYx+kX+5/Fvl35rPIj4OMhyHaFMVQJiZXfhuL+aI8mY0vsj2638EY1bxjxr265+1hPI9jfwti3kk7vj3UJrVuPf5sFT9O5GVkn8fxzHKYGdsbOVaU10od9MCng1wbZvfNYtQXPh0PbXjge3Xd8iD+UHu+WG+Rb4zwP7LjzAZ/Pr+BuF7N7UbE5Sr2PahDs3HPxrdqbzYeJ8ap2tgFWzJ9j0mbq/naoj7YYt5Mew7+/zi+yNaRDaN48+B5n+TRDfTvk/XPgc99UX990UYUqw7iB9VPA2Of5egtqDGzunYLahPrUzZmDPjdiBri5GdR/rlgb6UP1ZcVm6OfZ+qI+pwVxmfEXKMcNTYWxx1RVoBphigzpNaTfWbvG8FiwRLne9CjEmVE4jLkPCJQj8CXGS/jS5ZsDrI/ltyqIoRPAPAg4z4jUCj+zZLIDtHGiTxmBKQZwakIBIrYYIU5sDViJcioAqMi0iGByE0T9yLyhPKCyUMXchX1HdVm5Fs3TQSL/MsSzse4V21hQBCIfo58hdYwJDKwpJ2x0SAJGwtoIvJsgY+i+x/vi0QJB2R8ADDJkG8GJCLCGokXliRuPiH5TggmLs7dybiIhBL2mVk9uk3m4UK8KvNBeeOE4JMlJyzpUAQXF/I2M1YTP49shIQyRkRT85aZQ9WvGRuv8sIa6lU2FmxhYzdeSJTj5Z4oV3aTo2I6yCSpknG0g6DOyQyr9apdqmOuAn0TxqPMV/0MzUMhyuw8VJCKhBC0082KQWrsK8KTNfVjxDyVPrLtZPrKimPsLq4q3LFiigdClzf7kyF1am1l8tWF2hWJBJmYQMLnjPiivFPmxtjSQY4rfSPizZzGckC+ERBbkcvZDt89QWEIBAOuVvnP7DCxIBORdQ8wBoORnBwnQ3ijHXhGlFDIGdo5V8iyIixkyXW1bYZUMMBeJXtOxhYjKrHkK5oTu0POtJX1B3tiYRh3miKKHSRmRLUiQ+y7ckDpWxVRWIHPCv6uPA/b/kOU30ggyIKwLDllAYVKVFVwlgHlHbtJVRCtgn2V9Kv2qe74dxyhZ+1UsYuTZN2b/MV+7qYTGoYkodg043c5PZmXalyh482WyDVElj0guRXRrqMmjoZ4R4QekdAOkSFLbpTaosZltBOrvN6A1lblCPUgyYolc1Jd812oNR2ENxIU0DgUkKqSCw9EHzPuWHkGrDKEQCE8CPCy9iyBWZKIov6RnTPET91RRfnEEBpl7Ku6rtRVhXhXbKSIDaMwPjXeWIJfIaxKXTRbvzqgEk9GAPVCTbRCfR0H+Oo/RFkFN2ddo/Bc9ph3loB2kX21T2XHpvu4O0NQWPDcTZ5UQhoRoWF4hyVLmiOQW9m1dTCP3eNSY4XJXSfnk8nZIdTBrpMrmb47BQj2aL1ay6K2kM3Vd5IHQTRWi+1I2pux/ez9eBZ8V9ad7JpeASHZcUW1xQkxgiXnEbmozpvd1UMkzYzbCWPFg8rRRHWHjtnJZPtkgXpG0GDvzxJAS9iUPZnhSbGJ8Sljay/kuJ3w7Bl5bcXY7CSj3mgfZTe4y4ddftSB2hdRzoBHF4DDWUQajSFDDhRbdBD67O73CrgxRS5zFFMlF+oXH7G7Lqwdsr5Vj+Rm3733AlHqBtUZgafrWZRnXfl7hG/QDmglVrKfjc22ygopimjLvuOOaipTK3aKxixRZkUH5guhMqKS8o6xF+I3A1wzgJ9dF9UY7AR06phUUpkhV4jU7wL9HWNlBarqDmSWSGXipioUDCFP2JwO8+Lrr+HYbtUdQ2uqLx1+qtSEDIn15PN2os0r60nXGvK/NTRDlHcA7677xknzOLr/HWLEOOnZblIVtbXDR9UTCgwQ7iCBCOCp73uyIILxaSTKqDlQzccd/lS+vKhbRGAIrBfyWwUOO4kmI2yhmGFEhoh87Hz1qApgdsXarv5YO2ePcjOnVFyY3+5dDt+YKwzJzIxRJcUd4gJ7UqC6y7cDrO+wR7b/LpLC4rBDdwk3212pf8orLs9UR3bEylPWzH+JcseR5Os6BhAeBfSzhOwoccCfzO5m+vvBnSQ6swvUDY6PEnWycXKmkLaDJCOCyAoTEcg8q66c5U8EnquE9QhSeQYYYV7zOBoMqSJSty9d8DnKu90AlFlfjoh1RXR9VWL6SkSDFTcycxlPOPfMKZOz6y6K6TPidxxE0o8BIV9E+ZmIJftO2kXm+0DnTrC5AlNniAzRl6Kwxy290M8Vc/zx47NFDrbuvGIdYo9rn3Faxu28UzoWkHFP5nt15+RZQdozg8cjCTnzBW4I33TmjAHBoqv/VyVyPzFmM4JF9pWGn14f0HqmCAzZ/L+uHQue+/ey78fHx6sTiOvaT9qvKwb87IKqLsheICQVMn6dmHnNGMz8TmAVFP5Usld9V/WsuEDfun4Bxv3EquMdy1fbQVV+x3tnf2b4pBrzrvWVG9f108SJ6fX5+Sk3+uuy6+mF9ypgewny7SlB8vHf24c6jH6H5o4dCG/sw4l2D823nyHxfvNZXjr9Zbrr2lGjXxnz7FgfM+vbxJ7LrLtS8ZuTv+vaG++/BRgANSkQ46X6uMgAAAAASUVORK5CYII=') center top no-repeat; background-size: 100%;}
hr.divider_4 {position: relative; height: 11px; line-height: 11px; border: 0; background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAALCAYAAAC+jufvAAAACXBIWXMAAAsTAAALEwEAmpwYAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAgY0hSTQAAeiUAAICDAAD5/wAAgOkAAHUwAADqYAAAOpgAABdvkl/FRgAAACFJREFUeNpi+P//PwMTAwMDMvH48eP/TAwMDIxwMXQuYAAoiwi6xYwSewAAAABJRU5ErkJggg==') center top repeat-x;}

/*     --articlewrapper
------------------------------------------------- */
body.aw_active #container-inside {padding: 0!important; max-width: 100%!important;}
.articlewrapper.typ2 {background: #F8F8F8;}
.articlewrapper.typ3 {background: rgb(0,63,91);}
.articlewrapper.typ3 .servicebox_2[class^="icon-"]:before, .articlewrapper.typ3 .servicebox_2[class*="icon-"]:before {color: rgba(0,0,0,0.5);}
.articlewrapper.typ3, .articlewrapper.typ3 a {color: #fff;}
.articlewrapper.typ3 h1, .articlewrapper.typ3 h2, .articlewrapper.typ3 h3, .articlewrapper.typ3 h4, .articlewrapper.typ3 h5, .articlewrapper.typ3 h6, .articlewrapper.typ3 .subheadline_h1, .articlewrapper.typ3 .subheadline_h3, .articlewrapper.typ3 .subheadline_h3, .articlewrapper.typ3 .subheadline_h4, .articlewrapper.typ3 .subheadline_h5, .articlewrapper.typ3 .subheadline_h6 {color: rgba(0,0,0,0.5);}
.articlewrapper.typ3 .filter li a.selected {border-color: #fff; color: #fff;}
.articlewrapper.typ4 {background: #292929;}
.articlewrapper.typ4 .filter li a.selected {border-color: rgba(255,255,255,0.6); color: #fff; background: rgba(255,255,255,0.3);}
.articlewrapper.typ4 .filter li:hover {border-color: rgba(255,255,255,0.4);}
.articlewrapper.typ5 {border-top: 1px solid #eee;}
.articlewrapper.typ6 {position: relative; overflow: visible;}
.articlewrapper.typ6:after {bottom: 100%;	left: 50%;content: " ";	height: 0; width: 0; position: absolute; margin-left: -30px; border-left: 30px solid transparent; border-top: 30px solid transparent; border-right: 30px solid transparent; border-bottom: 30px solid #fff;}

/*     --body
------------------------------------------------- */
body {color: #555; overflow-x: hidden; font-family: 'Open Sans Condensed', sans-serif; font-size: 20px; line-height: 30px; background-repeat: repeat; background-position: top left; background-attachment: fixed!important; font-weight: 300;}

/*     --page-width
------------------------------------------------- */
#contentwrapper {max-width: 100%; margin: 0 auto; position: relative;}
#top .inside, #header .inside, #footer .inside, #container_before .inside, #teaser_after .inside, #bottom .inside, #container-inside {max-width: 1280px; margin: 0 auto;}

/*     --page-shadow
------------------------------------------------- */
#contentwrapper {box-shadow: 8px 0 5px -6px rgba(0, 0, 0, 0.06), -8px 0 5px -6px rgba(0, 0, 0, 0.06), 0 5px 10px -3px rgba(0, 0, 0, 0.2);}

/*     --top
------------------------------------------------- */
#top {background: rgb(0,63,91); position: relative; z-index: 5100; margin: 0 auto 0 auto; font-size: 12px!important; font-family: Arial, sans-serif!important; line-height: 21px!important;}
#top a:hover, #sidearea-toggler:hover {opacity: 0.8; -webkit-transition: All 0.3s ease; -moz-transition: All 0.3s ease; -o-transition: All 0.3s ease; -ms-transition: All 0.3s ease; transition: All 0.3s ease;}
#top .inside {padding: 0 40px;}
#top, #top a {color: #fff;}
#top .socials {float: left; margin-right: 35px;}
#top .mod_search {float: right;}
#top .socials a:hover {opacity: 1;}
#top .mod_search {margin-top: 7px; margin-left: 20px; margin-bottom: 4px; border-left: 1px solid rgba(255,255,255,0.4);}
#top .mod_search:hover {border-left: 0;}
#top .mod_search input {background: transparent; width: 40px; padding: 6px 25px 6px 6px!important; border-width: 1px; border-color: transparent; color: #fff; -webkit-transition: All 0.3s ease; -moz-transition: All 0.3s ease; -o-transition: All 0.3s ease; -ms-transition: All 0.3s ease; transition: All 0.3s ease;}
#top .mod_search form:hover input {width: 170px; border-color: rgba(255,255,255,0.3); -webkit-transition: All 0.3s ease; -moz-transition: All 0.3s ease; -o-transition: All 0.3s ease; -ms-transition: All 0.3s ease; transition: All 0.3s ease;}
#top .mod_search .submit {opacity: 1; height: 25px; margin-left: -30px; background: transparent; color: #fff; border-color: rgba(255,255,255,0.4);}
#top .mod_search .text {height: 26px;}
#top .mod_search:before {margin-top: 1px;}
#top #hotline {float: right; line-height: 40px;}
#top #hotline span {margin-left: 20px;}
#top i {font-size: 14px; vertical-align: top;}

/*     --socials
------------------------------------------------- */
.socials {overflow: hidden; display: block;}
.socials a {color: #fff; display: inline-block; -webkit-transition: All 0.3s ease; -moz-transition: All 0.3s ease; -o-transition: All 0.3s ease; -ms-transition: All 0.3s ease; transition: All 0.3s ease;}
.socials a:before {line-height: 40px; width: 40px; height: 40px; font-size: 14px; color: #fff; margin: 0;}
.socials a:hover:before {color: #fff!important; -webkit-transition: All 0.3s ease; -moz-transition: All 0.3s ease; -o-transition: All 0.3s ease; -ms-transition: All 0.3s ease; transition: All 0.3s ease;}

/*     --sprachwechsler
------------------------------------------------- */
#top .mod_sprachwechsler {float: left; position: relative; overflow: visible; height: 35px; margin-right: 35px;}
#top .mod_sprachwechsler a {margin-right: 5px; line-height: 30px; padding-right: 8px; border-right: 1px solid #ccc; color: #333;}
#top .mod_sprachwechsler a:last-child {border: 0;}
#top .mod_sprachwechsler a:hover {text-decoration: underline;}
#top .mod_sprachwechsler ul {display: none; position: absolute; left: 0; top: 41px; white-space:nowrap; background: rgba(255,255,255,0.9); padding: 5px 15px; box-shadow: 0px 2px 2px 1px rgba(0,0,0,0.3);}
#top .mod_sprachwechsler:hover ul {display: block; -webkit-animation: fadeIn 300ms ease; -moz-animation: fadeIn 300ms ease; -ms-animation: fadeIn 300ms ease; animation: fadeIn 300ms ease;}
#top .mod_sprachwechsler span {cursor: pointer; line-height: 40px;}
#top .mod_sprachwechsler span:after {font-family: "icons"; content: "\ea09"; display: inline-block; position: relative; margin-left: 10px;}
#top .mod_sprachwechsler img {margin-right: 4px; vertical-align: middle;}

/*     --logo
------------------------------------------------- */
.logo {position: absolute; top: 0; left: 40px; z-index: 100; background-image: url(../../files/cto_layout/img/logo.png); background-repeat: no-repeat!important; background-size: 100%!important; background-position: center; width: 162px; height: 92px; display: table-cell; -webkit-transition: All 0.3s ease; -moz-transition: All 0.3s ease; -o-transition: All 0.3s ease; -ms-transition: All 0.3s ease; transition: All 0.3s ease;}
.logo a {display: block; height: 100%; width: 100%;}


/*     --#headeroffset
------------------------------------------------- */
#headeroffset {position: relative; z-index: 999;}

/*     --header
------------------------------------------------- */
#header {background-repeat: repeat; position: relative; background-color: #fff; z-index: 5000; left: 0; -webkit-backface-visibility: hidden;} 
#header .inside {padding: 0 40px; display: table; width: 100%;}
#header .image_container {margin: 0;} 
#header .socials, #header .mod_sprachwechsler, #header .contentbox {display: none;}

/*     --header on landing-page without navi
------------------------------------------------- */
body.blank #header .inside {height: 90px;}
body.blank #stickyheader .inside {height: 80px;}

/*     --header_after
------------------------------------------------- */
#header_after {display: block; margin-left: auto; margin-right: auto; overflow: hidden; position: relative; z-index: 10;}
#header_after .inside {overflow: hidden!important;}
#header_after .image_container {margin: 0;}

/*     --headerimage
------------------------------------------------- */
.headerimage_content_wrapper {position: absolute; left: 0; top: 0; width: 100%; height: 100%;}
.headerimage_content_outer {margin: 0 auto;max-width: 1280px;display: table; vertical-align: middle; height: 100%; width: 100%;}
.headerimage_content_inner {display: table-cell; vertical-align: middle; padding: 40px;}
.headerimage {line-height: 21px;}
.headerimage.mittig {text-align: center;}
.headerimage.rechts {text-align: right;}
.headerimage.hell, .headerimage.hell h3, .headerimage.hell h4 {color: #fff;}
.headerimage h3 {font-size: 42px; padding: 0; margin: 0;}
.headerimage h4 {font-size: 20px; padding: 0;}
.headerimage img {width: 100%;}

/*     --revolutionslider overwrite default styles
------------------------------------------------- */
.ce_revolutionslider * {-webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box;}
.ce_revolutionslider p {margin: 0;}
.ce_revolutionslider ul {display: none;}
.ce_revolutionslider .image_container img {width: auto; height: auto;}
.ce_revolutionslider .image_container {margin-bottom: 0; width: auto; padding: 0; margin: 0; float: none;}
.ce_revolutionslider {background: #fff; position: relative;}
.ce_revolutionslider .tp-bannertimer {background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAKCAYAAAB10jRKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDowOEEzQjEwNUM0NzcxMUUzQjQ3Q0YyRTlDRUQwRDhBRSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDowOEEzQjEwNkM0NzcxMUUzQjQ3Q0YyRTlDRUQwRDhBRSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjJBQzgwQjNFQzQ2QTExRTNCNDdDRjJFOUNFRDBEOEFFIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjA4QTNCMTA0QzQ3NzExRTNCNDdDRjJFOUNFRDBEOEFFIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+FmUvlQAAABtJREFUeNpi+P//fwMTAxCgEQxACQZsEgABBgDs7QaLN50LOAAAAABJRU5ErkJggg==');}
.ce_revolutionslider video {width: 100%;}
.ce_revolutionslider .rs-container {width: 100%!important; left: 0!important;}
.ce_revolutionslider .tp-leftarrow {left: 0!important;}
.ce_revolutionslider .tp-rightarrow {right: 0!important;}
.ce_revolutionslider .fullscreen {height: 100%;}
.ce_revolutionslider .revicon-right-dir:before {content:'\e912'; margin: 0;}
.ce_revolutionslider .html5vid:hover .tp-video-play-button {display: block!important;}

/*     --layerslider-classes
------------------------------------------------- */
.ce_revolutionslider .tp-caption {line-height: 1.3em;}
.ce_revolutionslider .fontsize18 {font-size: 18px;}
.ce_revolutionslider .fontsize20 {font-size: 20px;}
.ce_revolutionslider .fontsize22 {font-size: 22px;}
.ce_revolutionslider .fontsize24 {font-size: 24px;}
.ce_revolutionslider .fontsize26 {font-size: 26px;}
.ce_revolutionslider .fontsize28 {font-size: 28px;}
.ce_revolutionslider .fontsize30 {font-size: 30px;}
.ce_revolutionslider .fontsize32 {font-size: 32px;}
.ce_revolutionslider .fontsize34 {font-size: 34px;}
.ce_revolutionslider .fontsize36 {font-size: 36px;}
.ce_revolutionslider .fontsize38 {font-size: 38px;}
.ce_revolutionslider .fontsize40 {font-size: 40px;}
.ce_revolutionslider .fontsize42 {font-size: 42px;}
.ce_revolutionslider .fontsize44 {font-size: 44px;}
.ce_revolutionslider .fontsize46 {font-size: 46px;}
.ce_revolutionslider .fontsize48 {font-size: 48px;}
.ce_revolutionslider .fontsize50 {font-size: 50px;}
.ce_revolutionslider .fontsize52 {font-size: 52px;}
.ce_revolutionslider .fontsize54 {font-size: 54px;}
.ce_revolutionslider .fontsize56 {font-size: 56px;}
.ce_revolutionslider .fontsize58 {font-size: 58px;}
.ce_revolutionslider .fontsize60 {font-size: 60px;}
.ce_revolutionslider .fontsize62 {font-size: 62px;}
.ce_revolutionslider .fontsize64 {font-size: 64px;}
.ce_revolutionslider .fontsize66 {font-size: 66px;}
.ce_revolutionslider .fontsize68 {font-size: 68px;}
.ce_revolutionslider .fontsize70 {font-size: 70px;}
.ce_revolutionslider .fontsize72 {font-size: 72px;}
.ce_revolutionslider .fontsize74 {font-size: 74px;}
.ce_revolutionslider .fontsize76 {font-size: 76px;}
.ce_revolutionslider .fontsize78 {font-size: 78px;}
.ce_revolutionslider .fontsize80 {font-size: 80px;}
.ce_revolutionslider .fontsize82 {font-size: 82px;}
.ce_revolutionslider .fontsize84 {font-size: 84px;}
.ce_revolutionslider .fontsize86 {font-size: 86px;}
.ce_revolutionslider .fontsize88 {font-size: 88px;}
.ce_revolutionslider .fontsize90 {font-size: 90px;}
.ce_revolutionslider .fontsize92 {font-size: 92px;}
.ce_revolutionslider .fontsize94 {font-size: 94px;}
.ce_revolutionslider .fontsize96 {font-size: 96px;}
.ce_revolutionslider .fontsize98 {font-size: 98px;}
.ce_revolutionslider .fontsize100 {font-size: 100px;}
.ce_revolutionslider .white {color: #fff;}
.ce_revolutionslider .black-font {color: #333;}
.ce_revolutionslider .italic {font-style: italic; font-family: 'Playfair Display', Georgia, serif; font-style: italic; font-weight: 400;}
.ce_revolutionslider .bold {font-weight: bold;}

/*     --revolutionslider-linkToBottom
------------------------------------------------- */
.ce_revolutionslider #linkToContent {display: none;}
.ce_revolutionslider .fullscreen #linkToContent {display:block; position: absolute; left: 50%; bottom: 80px; margin-left: -35px; width: 70px; height: 70px; z-index: 100; opacity: 1; cursor: pointer;}
.ce_revolutionslider .fullscreen #linkToContent a {background: transparent!important;}
.ce_revolutionslider .fullscreen #linkToContent a:before {font-family: "icons"; content: "\ea09"; opacity: 0.6; display: inline-block; position: relative; margin-right: 5px; font-size: 70px; background: #fff; border-radius: 99px; width: 70px; height: 70px; line-height: 75px; text-align: center; transition: opacity 0.35s; -webkit-transition: opacity 0.35s; -moz-transition: opacity 0.35s; -o-transition: opacity 0.35s; -ms-transition: opacity 0.35s; color: #fff; background: rgba(0,0,0,0.3)!important;}
.ce_revolutionslider .fullscreen #linkToContent a:hover:before {opacity: 1;}

/*     --layerslider-caption (all)
------------------------------------------------- */
.ce_revolutionslider h1 {font-size: 44px;}
.ce_revolutionslider .tp-caption a {color: #fff;}
.ce_revolutionslider .tp-caption a:hover {color: #fff; background: rgba(255,255,255,0.4)!important;}

/*     --bxslider
------------------------------------------------- */
.bxslider {width: 0;}
.bx-wrapper {margin-bottom: 0; position: relative;}
.bx-wrapper .bx-viewport {border:0; left: 0; box-shadow: none; z-index: 200; background: transparent!important;}
.bx-wrapper .bx-prev, .bx-wrapper .bx-next {background: none;}
.bx-wrapper .bx-controls {height: 100%!important; top: 50%; position: static; z-index: 100;}
.bx-wrapper .bx-controls-direction {position: absolute; top: -35px; right:0; width: 65px; overflow: hidden; height: 24px;}
.bx-wrapper .bx-controls-direction a:before {font-family: "icons"; font-size: 24px; line-height: 24px; max-height: 24px; width: inherit; display: inline-block; position: absolute; overflow: hidden; top: 50%; text-align: center; margin-top: -12px; color: #333;} 
.bx-wrapper .bx-controls-direction a.bx-next:before {content: "\ea04";}
.bx-wrapper .bx-controls-direction a.bx-prev:before {content: "\ea03";}
.bx-wrapper .bx-controls-direction a.bx-prev {float: left; background: #fff; left: 0; box-shadow: 5px 0 11px -5px rgba(0,0,0,0.5);}
.bx-wrapper .bx-controls-direction a.bx-next {float: right; background: rgba(0, 0, 0, 0.3); right: 0; background: #fff; box-shadow: -5px 0 11px -5px rgba(0,0,0,0.5);}
.bx-wrapper .bx-controls-direction a {text-indent: 0; margin-top: 0; width: 24px; height: 24px; margin: 0; opacity: 0.7;}
.bx-wrapper .bx-pager, .bx-wrapper .bx-controls-auto {z-index: 1000; bottom: -60px;}
.bx-wrapper .bx-controls-direction a:hover {opacity: 0.9;}
.bx-wrapper .caption {display: none;}
.bx-wrapper .bx-controls-direction a {z-index: 1000;}
.bx-wrapper .bx-pager.bx-default-pager a {background: #ccc; width: 40px; height: 5px; border-radius: 0!important; -webkit-border-radius: 0!important; box-shadow: none;}
.bx-wrapper .bx-pager.bx-default-pager a.active {background: rgb(0,63,91);}

/*     --ce_bxslider
------------------------------------------------- */
.ce_bxslider {padding-bottom: 40px;}
.ce_bxslider .bx-wrapper .bx-controls-direction {top: 0; background: transparent; width: 100%; padding: 0; height: 100%;}
.ce_bxslider .bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {width: 100%; text-align: center; bottom: 5px;}
.ce_bxslider .bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {bottom: 10px; right: 10px;}
.ce_bxslider .bx-wrapper .bx-controls-direction a {height: 66px; top: 50%; margin-top: -33px;}
.ce_bxslider .bx-wrapper .bx-pager .bx-pager-item {padding: 5px 0;}
.ce_bxslider .ce_bxslider_inside div:not(.ce_image) {padding: 40px;}
.ce_bxslider .bx-wrapper .bx-controls-direction a:before {margin-top: -12px;}

/*     --mod_breadcrumb
------------------------------------------------- */
.mod_breadcrumb {color: #5e5e5e; font-size: 11px; text-align: right; white-space: nowrap; float: right;}
.mod_breadcrumb li {display: inline-block; margin-right: 5px;}
.mod_breadcrumb li:before {font-family: "icons"; content: '\ea08'; margin-right: 5px;}
.mod_breadcrumb li.first:before {display: none;}
.mod_breadcrumb a {color: #888888;}
.mod_breadcrumb a:hover {text-decoration: underline;}

/*     --pagetitle
------------------------------------------------- */
#pagetitle {font-size: 20px; display: inline-block; float: left; text-transform: uppercase;}

/*     --wrapper
------------------------------------------------- */
#wrapper {position:relative; z-index: 5;}
body.content_page #wrapper {border-top: 0;background:white;}

/*     --container
------------------------------------------------- */
#container {position: relative; width: 100%; margin: 0; background: #fff;}
.sidebar_right #container{max-width:1200px; width:100%; margin:0 auto;/* padding:0% 1%; */}
#container-inside {padding: 40px; overflow: hidden;} 

/*     --container after // extended
------------------------------------------------- */
#container_after {display: block; position: relative; width: 100%; margin: 10px auto; max-width: 1280px; border: 0px solid #d0d0d0;}

/*     --container before // teaser
------------------------------------------------- */
#container_before .inside {position: relative; margin: 0 auto; overflow: hidden; padding: 20px 40px 10px 40px;}
#container_before {position: relative; display: block; margin: 0 auto 0 auto; width: 100%; background: #fff;}

/*  on content-pages - rootpath*/
.content_page #container_before {background: #FCFCFC; margin: 0; border-bottom: 1px solid #E1E1E1; border-top: 1px solid #E1E1E1;}
.content_page #container_before .inside {padding-top: 20px; padding-bottom: 20px;}

/*     --teaser_after
------------------------------------------------- */
#teaser_after {background: #F7F7F7;}
#teaser_after .inside {position: relative; margin: 0 auto; overflow: hidden; padding: 40px;}

/*     --sidearea
------------------------------------------------- */
#sidearea-toggler {float: right; height: 34px; margin-left: 20px; cursor: pointer;}
#sidearea-toggler:before {font-family: "icons"; content: "\2630"; text-indent: 0; display: inline-block; margin-right: 5px; font-size: 20px; line-height: 40px; cursor: pointer;}
#sidearea {width: 290px; background: #2f2f2f; position: absolute; top: 0; right: 0; height: 100%; z-index: 10000000; display: none;}
#sidearea-close {cursor: pointer; border-bottom: 1px solid #3E3E3E; height: 55px; text-align: center; background: #191919 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB0AAAAdCAYAAABWk2cPAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoxODQ4QTk1ODM1NkExMUUzQkJEN0QxNkQ4MDA3QjUwMiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoxODQ4QTk1OTM1NkExMUUzQkJEN0QxNkQ4MDA3QjUwMiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjg1OTFBNUVCMzU2OTExRTNCQkQ3RDE2RDgwMDdCNTAyIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjg1OTFBNUVDMzU2OTExRTNCQkQ3RDE2RDgwMDdCNTAyIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+JsAdmQAAALxJREFUeNq81dsOhCAMRVHY///POJMY44VLW9rypgIrgZ5a22+UUmrJG40TbFng3+N8yICvE+X2MhJ+XCGvjxHwp2boTPKEu0XKYLIHPEwFk0U78DSGLBZb4GXuEWyigUWNBuFmEljc2VAc2wxWtVKU99WD1b0bQ2XeYdPPAmMkqhXcQdtOjtkMvgnGIfhqGKdOo4Jx7DRiGCdQBeMIimGcQRFMALiECQKnMIHgECYY7MIkgB+YJPABHwIMAJYDPDa14qAJAAAAAElFTkSuQmCC') center center no-repeat;}
#sidearea .inside {padding: 25px;}

/*     --linktotop
------------------------------------------------- */
#linktotop {position: fixed; bottom: 10px; right: 10px; width: 40px; height: 40px; background: rgba(0,0,0,0.5); display: none; text-align: center; cursor: pointer; z-index: 1000;}
#linktotop:before {font-family: "icons"; content: "\e767"; text-indent: 0; display: inline-block; position: relative; top: 0px; left: 0; font-size: 30px; color: #fff; line-height: 40px;}


/* =============================================================================
 * footer
 * ========================================================================== */
#footer {background: rgb(0,63,91); font-size: 0.9em;}
#footer, #footer a {color: #8C8989;}
#footer a:hover {text-decoration: underline;}
#footer .inside  {margin: 0 auto; padding: 80px 40px;}
#footer h1, #footer h2, #footer h3, #footer h4, #footer h5, #footer h6 {color: #fff;}
#footer ul {padding: 0;}
#footer li {margin-bottom: 8px; padding-bottom: 8px; list-style-type: none;}
#footer li:before {font-family: "icons"; content: "\2b"; display: inline-block; position: relative; margin-right: 10px;}
#footer .socials a:before {height: 40px; width: 40px; line-height: 40px; color: #8C8989; background: none; font-size: 18px; margin-right: 1px;}
#footer .socials {display: inline-block;}
#footer .socials a {-webkit-transition: All 0.3s ease; -moz-transition: All 0.3s ease; -o-transition: All 0.3s ease; -ms-transition: All 0.3s ease; transition: All 0.3s ease;}
#footer .socials a:hover {text-decoration: none; opacity: 0.8; -webkit-transition: All 0.3s ease; -moz-transition: All 0.3s ease; -o-transition: All 0.3s ease; -ms-transition: All 0.3s ease; transition: All 0.3s ease;}
#footer .autogrid {padding-left: 2%; padding-right: 2%;}

/*     --footer contact icons
------------------------------------------------- */
#footer [class^="icon-"]:before, #footer [class*="icon-"]:before { font-family:'icons'; font-style:inherit; font-weight:inherit; display:inline-block; text-decoration:inherit; width:1em; margin-right:.5em; text-align:center; line-height:inherit; float: left;} 
#footer [class^="icon-"] p, #footer [class*="icon-"] p {margin-left: 2em; margin-bottom: 0;}

/* =============================================================================
 * bottom, copyright
 * ========================================================================== */

#bottom {background: #fff; font-size: 0.9em;}
#bottom .inside  {max-width: 1280px; margin: 0 auto; padding: 40px;}
#bottom a:hover {text-decoration: underline;}
#bottom .last a {padding: 0 5px;}
#bottom .last a:last-child {padding-right: 0;}


/* =============================================================================
 * menues
 * ========================================================================== */

/*     --mainmenue
------------------------------------------------- */
/*nav.mainmenu a, nav.mainmenu a:hover, nav.mainmenu a span, nav.mainmenu a:hover span {-webkit-transition: All 0.4s ease; -moz-transition: All 0.4s ease; -o-transition: All 0.4s ease; -ms-transition: All 0.4s ease ; transition: All 0.4s ease; -webkit-backface-visibility: hidden; -webkit-perspective: 1000;}*/
/*nav.mainmenu {overflow: visible!important; line-height: 0; display: table-cell; vertical-align: middle;}*/
/*nav.mainmenu ul {position: relative; float: right; -webkit-backface-visibility: hidden; -webkit-perspective: 1000;}*/
/*nav.mainmenu ul ul {float:none;}*/
/*nav.mainmenu .layer_two {min-width: 210px; padding: 0; margin-left: 0; background: rgba(255,255,255,0.95); width: auto; display: none; position: absolute; top: 100%; box-shadow: 0 1px 1px 1px rgba(0,0,0,0.2); -webkit-animation: fadeInUp 300ms ease; -moz-animation: fadeInUp 300ms ease; -ms-animation: fadeInUp 300ms ease; animation: fadeInUp 300ms ease; z-index: 9999;} */
/*nav.mainmenu li.last .layer_two {right: 0;}*/
/*nav.mainmenu ul:after {content: ""; clear: both; display: block;}*/
/*nav.mainmenu ul li {float: left; position: relative;}*/
/*nav.mainmenu ul li.megamenu {position: static;}*/
/*nav.mainmenu ul li:hover .layer_two {display: block;}*/
/*nav.mainmenu ul li a {display: block; text-decoration: none; position: relative; line-height: 24px; min-height: inherit; text-align: left; font-size: 16px; float: none; padding: 28px 0; font-family: "Open Sans Condensed",sans-serif; margin-left: 15px; margin-right: 15px;}*/
/*nav.mainmenu ul li a.last {margin-right: 0;}*/
/*nav.mainmenu ul li ul li a.last {margin-right: 15px;}*/
/*nav.mainmenu ul li > a:before {position: relative; width: 24px!important; line-height: 24px!important; font-size: 24px; vertical-align: middle; margin-right: 10px; font-weight: 300;}*/
/*nav.mainmenu ul ul {border-top: 5px solid rgb(0,63,91);}*/
/*nav.mainmenu ul ul ul {border-top: 0!important;}*/
/*nav.mainmenu ul ul li > a:before {position: absolute; left: 0px; top: 5px;}*/
/*nav.mainmenu ul li a.first {border-top: 0;margin-left:0px;}*/
/*nav.mainmenu ul li.last ul {right: 0;}*/
/*nav.mainmenu ul ul li {float: none; position: relative; line-height: 32px; min-height: 0;}*/
/*@media (min-width:990px){nav.mainmenu ul ul li{min-width:262px;}}*/
/*nav.mainmenu ul ul li a {font-weight: 400; text-transform: none; text-align: left; border-bottom: 1px solid rgba(0,0,0,0.1); line-height: 15px; padding: 16px 25px 12px 20px!important; color: #676767; font-size: 12px!important; margin-left: 15px!important; margin-right: 15px!important;}	*/
/*nav.mainmenu ul ul ul ul li a, nav.mainmenu a.last {border-bottom: 0;}*/
/*nav.mainmenu ul ul li a span {display: block;}*/
/*nav.mainmenu ul ul li a:before{font-size: inherit; height: auto; line-height: 32px!important; width: 20px!important; padding-top: 0;}*/
/*nav.mainmenu ul ul li.last {border:0;}*/
/*nav.mainmenu ul ul ul {position: absolute; left: 100%; top:0;}*/
/*nav.mainmenu ul li.trail ul a:after, nav.mainmenu ul li.active ul a:after {display: none;}*/
/*nav.mainmenu ul ul li a:before {line-height: 21px!important;}*/
/*nav.mainmenu ul li a {position: relative; z-index: 10;}*/
/*nav.mainmenu ul li a:after {display: block; background: rgb(0,63,91); content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 0; -webkit-transition: height 0.3s ease; -moz-transition: height 0.3s ease; -o-transition: height 0.3s ease; -ms-transition: height 0.3s ease; transition: height 0.3s ease; -webkit-backface-visibility: hidden; backface-visibility: hidden;}*/
/*nav.mainmenu ul li:hover a:after,nav.mainmenu ul a.trail:after, nav.mainmenu ul a.active:after, nav.mainmenu ul li.active a:after {z-index: -1; height: 10px; -webkit-backface-visibility: hidden; backface-visibility: hidden; display: block!important;}*/
/*nav.mainmenu ul a.trail:after, nav.mainmenu ul a.active:after {opacity: 0.9;}*/
/*nav.mainmenu ul li:hover ul li a:after {display: none!important;}*/
/*nav.mainmenu ul ul li a:hover, nav.mainmenu ul ul li a.active, nav.mainmenu ul ul li.active a {background: rgb(0,63,91); color: rgba(255, 255, 255, 0.8);}*/
/*nav.mainmenu ul ul li a.active.trail {color: #676767; background: none;}*/
/*nav.mainmenu .level_3 {background: rgba(255,255,255,0.95); box-shadow: 0 1px 1px 1px rgba(0,0,0,0.2); display: none; width: 100%;}*/
/*nav.mainmenu .level_3 {-webkit-animation: fadeInRight 300ms ease; -moz-animation: fadeInRight 300ms ease; -ms-animation: fadeInRight 300ms ease; animation: fadeInRight 300ms ease;}*/
/*nav.mainmenu .level_2 li:hover .level_3 {display: block;}*/
/*nav.mainmenu .level_2 li a.submenu:after {font-family: "icons"; content: "\e75e"; text-indent: 0; display: block!important; position: absolute; top: 50%; left: auto; right: -15px; bottom: auto; background: none; line-height: 0; width: 30px;} */

/* helper classes */
/*nav.mainmenu .noborder_left {border-left: 0!important;}*/
/*nav.mainmenu .noborder_bottom a {border-bottom: 0!important;}*/
/*nav.mainmenu ul li.open_leftside .layer_two {right: 0;}*/
/*nav.mainmenu ul li.open_leftside .level_3 {left: -100%;}*/
/*nav.mainmenu ul li.open_rightside .level_3 {left: 100%;}*/

/* megamenu */
/*nav.mainmenu ul .megamenu ul ul {box-shadow: none;}*/
/*nav.mainmenu ul .megamenu .level_3 {-webkit-animation: none; -moz-animation: none; -ms-animation: none; animation: none;}*/
/*nav.mainmenu ul li.megamenu .layer_two {right: 0; white-space:nowrap;}*/
/*nav.mainmenu ul li.megamenu .layer_two > ul {display: table; padding: 20px 0;}*/
/*nav.mainmenu ul li.megamenu .layer_two > ul > li {display: table-cell; vertical-align: top;}*/
/*nav.mainmenu ul li.megamenu:hover ul {display: block;}*/
/*nav.mainmenu ul li.megamenu ul ul {position: static;}*/
/*nav.mainmenu ul li.megamenu ul li {border-left: 1px solid rgba(0,0,0,0.1);}*/
/*nav.mainmenu ul li.megamenu ul li.first, nav.mainmenu ul li.megamenu ul ul li {border-left: 0;}*/
/*nav.mainmenu ul li.megamenu ul li ul li {float: none; width: auto; overflow: hidden;}*/
/*nav.mainmenu ul li.megamenu ul.level_3, nav.mainmenu ul li.megamenu ul.level_4, nav.mainmenu ul li.megamenu ul.level_5 {background: transparent;}*/
/*nav.mainmenu ul.level_4 li a {margin-left: 20px;}*/
/*nav.mainmenu ul.level_5 li a {margin-left: 30px;}*/
/*nav.mainmenu ul li.megamenu .level_2 li a.submenu:after {content: "\e75c";}*/
/*nav.mainmenu ul li.megamenu .image_container img {max-width: inherit;}*/
/*nav.mainmenu ul li.megamenu .image_container a, nav.mainmenu .image_container a:hover {background: transparent!important; border: 0!important; padding: 0!important; line-height: 0!important;}*/
/*nav.mainmenu ul li.megamenu .level_2 li.submenu a.submenu {text-transform: uppercase; color: rgba(0,0,0,0.4); border: 0;}*/
/*nav.mainmenu ul li.megamenu .level_2 li.submenu a.submenu:hover {color: rgba(255,255,255,0.8);}*/
/*nav.mainmenu ul li.megamenu .level_2 li.submenu a.submenu:after {display: none!important;}*/

/* megamenu helper classes */
/*nav.mainmenu ul li.megamenu .layer_two > ul > li.mm_align_bottom {vertical-align: bottom;}*/
/*nav.mainmenu ul li.megamenu .layer_two > ul > li.mm_align_bottom .ce_image {margin-bottom: -20px;}*/

/* onepagenavigation */
.onepagenavigation li:last-child a {margin-right: 0!important;}

/*     --sticky menu
------------------------------------------------- */
#stickyheader {display: none; position: fixed; left: 0; top: 0; width: 100%; background: rgba(255,255,255,0.9); z-index: 9999;}
#stickyheader {-webkit-animation: fadeInDown 400ms ease; -moz-animation: fadeInDown 400ms ease; -ms-animation: fadeInDown 400ms ease; animation: fadeInDown 400ms ease;}
#stickyheader.stickyheader_on {display: block;}
#stickyheader.animate {-webkit-animation: slideInDown 800ms ease; -moz-animation: slideInDown 800ms ease; -ms-animation: slideInDown 800ms ease; animation: slideInDown 800ms ease;}
#stickyheader .inside {max-width: 1280px; margin: 0 auto; display: table; width: 100%; padding: 0 40px;}
#stickyheader .subline {display: none;}
#stickyheader .logo {height: 60px; position: absolute!important;}
#stickyheader nav.mainmenu {display: table-cell!important;}
#stickyheader nav.mainmenu ul:not(.vlist) {float: right!important;}
#stickyheader nav.mainmenu ul li a {padding-top: 18px; padding-bottom: 18px; }
#stickyheader nav.mainmenu ul li a:before {display: none;}

/*     --subline in mainmenue
------------------------------------------------- */
/*nav.mainmenu span {font-weight: normal; font-size: 10px; text-transform: none; display: block; white-space:nowrap; line-height: normal; color: #999999; font-family: Arial, sans-serif;}*/
/*nav.mainmenu a[class*="icon-"] .subline {margin-left: 37px;}*/
/*nav.mainmenu ul li ul li a:hover span, nav.mainmenu ul li ul li a.active span {color: rgba(255, 255, 255, 0.8);}*/
/*nav.mainmenu ul li ul li a span {margin-left: 0px!important;}*/
/*nav.mainmenu .columheader {font-family: "Open Sans Condensed",sans-serif; font-weight: 300; margin-bottom: 15px; font-size: 17px;}*/
	
/*     --submenu-sidebar
------------------------------------------------- */
#submenu {margin-bottom: 25px;}
#submenu a {position: relative; display: block; padding: 4px 10px 4px 18px; margin-bottom: 0; -webkit-transition: All 0.1s ease; -moz-transition: All 0.1s ease; -o-transition: All 0.1s ease; -ms-transition: All 0.1s ease; transition: All 0.1s ease;} 
#submenu li ul li {border: 0;}
#submenu ul ul {margin-left: 20px;}
#submenu ul ul ul {margin-left: 20px;}
#submenu ul ul li {padding: 0;}
#submenu a:hover, #submenu a.active {color: rgb(0,63,91); background: #f8f8f8;}
#submenu a.active.trail {background: inherit; color: #555;}
#submenu li a[class*="icon-"]:before {position: absolute; left: 10px; top: 10px;}
#submenu li a[class*="icon-"] {padding-left: 30px;}

#submenu ul li:hover > ul, #submenu ul li.active > ul, #submenu ul li.trail > ul {display: block;}
#submenu ul ul {display: none;}
#submenu ul ul ul {display: none;}
#submenu ul ul ul ul {display: none;}

/* =============================================================================
 * mobile menu off canvas
 * ========================================================================== */
#off_canvas .level_1 ul {display: none;}
#off_canvas .level_2 {position: relative;}
#off_canvas {background: #333; font-weight: normal;}
#off_canvas a {color: #c4c4c4; padding: 11px 4px 11px 10px; display: block; font-size: 18px; position: relative;}
#off_canvas span.open_subnav {display: block; z-index: 100; position: absolute; right: 0; top: 0; height: 100%; width: 50px; background: transparent!important; cursor: pointer;}
#off_canvas ul ul span.open_subnav {z-index: 110;}
#off_canvas ul ul ul span.open_subnav {z-index: 120;}
#off_canvas ul ul ul ul span.open_subnav {z-index: 130;}
#off_canvas a.submenu {cursor: pointer; padding-right: 50px;}
#off_canvas a.submenu:after {padding-left: 20px; border-left: 1px solid rgba(0,0,0,0.2); height: 100%; content:'\ea09'; font-family: "icons"; padding-right: 20px; position: absolute; right: 0; font-size: 20px; line-height: 50px; top: 0;}
#off_canvas li {position: relative;}
#off_canvas li.open > a.submenu:after {content: '\ea05'; font-family: "icons"; }
#off_canvas.pushy a {border-top: 0;}
#off_canvas a span {display: none;}
#off_canvas a:before {z-index: 100;}
#off_canvas a:hover, #off_canvas a.active, #off_canvas a.trail {background: #4b4b4b;}
#off_canvas ul ul a {padding-left: 20px;}
#off_canvas ul ul ul a {padding-left: 30px;}
#off_canvas ul ul ul ul a {padding-left: 40px;}
#off_canvas .socials {padding: 5px 0; text-align: center; background: #4b4b4b;  -webkit-box-shadow: inset 0px -1px 3px 0px #333; -moz-box-shadow: inset 0px -1px 3px 0px #333; box-shadow: inset 0px -1px 3px 0px #333;}
#off_canvas .socials a {display: inline-block; border: 0; padding: 3px;}
#nav-open-btn {display: none;  vertical-align: middle;}
#nav-open-btn:before {font-family: "icons"; content: '\2630'; color: #fff; font-size: 20px; line-height: 23px; width: 23px; text-align: center; display: table-cell; background: rgb(0,63,91); padding: 6px; float: right;}
#off_canvas form {text-align: center;}
#off_canvas form button {}
#off_canvas form input {width: 83%!important; border: 0; height: 33px;}
#off_canvas .mod_search {border-bottom: 1px solid #3c3c3c; margin-bottom: 5px; padding: 10px; background: #1a1a1a;}
#off_canvas .sprachwechsler {float: none; padding: 0; border: 0; margin: 0;} 
#off_canvas .sprachwechsler a {background: #4B4B4B; border-right: 0; margin: 0; padding: 7px 12px;}
#off_canvas .sprachwechsler span {display: none;}
#off_canvas .sprachwechsler img {margin-right: 5px;}
#off_canvas .mod_search .submit {height: 33px;}
.pushy, #contentwrapper, .push {-webkit-perspective: inherit!important;}
.pushy, #contentwrapper, .push {-webkit-backface-visibility:inherit!important;}
body.pushy-active .pushy {overflow-x: hidden; overflow-y: scroll;}
body.pushy-active #contentwrapper {position: fixed !important; display: block; top: 0; z-index: -1; height: 100%;}
body.pushy-active .site-overlay {z-index: 10; background: white; left:0; opacity: 0.65;}

/* onepagenav */
/*#off_canvas #onepagenav {float: none;}*/
/*#off_canvas #onepagenav nav.mainmenu {display: block!important;}*/
/*#off_canvas #onepagenav nav.mainmenu ul {float: none;}*/
/*#off_canvas #onepagenav nav.mainmenu ul li {float: none;}*/
/*#off_canvas #onepagenav nav.mainmenu ul li a {padding: 20px 14px;}*/
/*#off_canvas #onepagenav a:hover, #off_canvas #onepagenav nav.mainmenu ul li.current a {background: #4b4b4b; color: #fff;}*/
/*#off_canvas #onepagenav a:after {display: none;}*/

/* =============================================================================
 * features + contao modules
 * ========================================================================== */
 
 /*     --contao content slider
------------------------------------------------- */
.slider-control	{position:static!important; height:0!important;}
.slider-control a {top: 50%!important; opacity: 0.7; margin-top: -35px!important;}
.slider-control a:hover {opacity: 1;}
.slider-menu {bottom: 15px; top: auto!important; font-family: Arial, sans-serif;}
.slider-menu b {margin: 0 2px!important;}
.ce_sliderStart {position: relative!important;}
.slider-next {background: rgba(160, 160, 160, 0.5); right: 0; border-radius: 3px 0 0 3px; z-index: 100; width: 50px; height: 70px; color: rgba(0, 0, 0, 0);}
.slider-next:before {font-family: "icons"; content: "\ea08"; display: block; position: relative; font-size: 30px; line-height: 26px; margin-top: -12px; top: 50%; text-align: center; color: #fff;}
.slider-prev {background: rgba(160, 160, 160, 0.5); left: 0!important; border-radius: 0 3px 3px 0; z-index: 100; width: 50px; height: 70px; color: rgba(0, 0, 0, 0);}
.slider-prev:before {font-family: "icons"; content: "\ea07"; display: block; position: relative; font-size: 30px; line-height: 26px; margin-top: -12px; top: 50%; text-align: center; color: #fff;}
.ce_sliderStart .caption {display: none;}

/* contao content slider in #main  */
#main .slider-next:before, .small_arrows .slider-prev:before {font-size: 18px;}
#main .slider-next, #main .slider-prev, .small_arrows .slider-prev, .small_arrows .slider-next {width: 25px; height: 30px;}
#main .slider-control .slider-menu {bottom: 0px; width: auto; right: 0; left: auto;}

/*     --back links
------------------------------------------------- */
.back a:before {font-family: "icons"; content: '\e881'; margin-right: 5px;}

/*     --extended text & bild custom element
------------------------------------------------- */
.ce_text-mit-bild-erweitert .ext_txtpic {overflow: hidden;}
.ce_text-mit-bild-erweitert .float_left .ext_txtpic_bild {float: left; padding: 0; margin-right: 20px;}
.ce_text-mit-bild-erweitert .float_right .ext_txtpic_bild {float: right; padding: 0; margin-left: 20px;}
.ce_text-mit-bild-erweitert .float_right .image_container {float: right;}
.ce_text-mit-bild-erweitert .ext_txtpic.col_left {display: table;}
.ce_text-mit-bild-erweitert .col_left .ext_txtpic_bild {display: table-cell; vertical-align: top;}
.ce_text-mit-bild-erweitert .col_left .ext_txtpic_bild img {width: 100%; height: auto;}
.ce_text-mit-bild-erweitert .col_left .ext_txtpic_text {display: table-cell;  vertical-align: top;}
.ce_text-mit-bild-erweitert .ext_txtpic.col_left .ce_textarea, .ce_text-mit-bild-erweitert .ext_txtpic.col_left .ext_txtpic_text .ext_txtpic_headline, .ce_text-mit-bild-erweitert .ext_txtpic.col_left .ce_hyperlink {padding-left: 5%;}
.ce_text-mit-bild-erweitert .no_image .ext_txtpic.col_left .ce_textarea, .ce_text-mit-bild-erweitert .no_image .ext_txtpic.col_left .ext_txtpic_text .ext_txtpic_headline, .ce_text-mit-bild-erweitert .no_image .ext_txtpic.col_left .ce_hyperlink {padding-left: 0;}
.ce_text-mit-bild-erweitert .col_right .ext_txtpic_bild {display: table-cell;}
.ce_text-mit-bild-erweitert .col_right .ext_txtpic_bild img {width: 100%; height: auto;}
.ce_text-mit-bild-erweitert .col_right .ext_txtpic_text {display: table-cell;}
.ce_text-mit-bild-erweitert .ext_txtpic.col_right .ce_textarea, .ce_text-mit-bild-erweitert .ext_txtpic.col_right .ext_txtpic_text .ext_txtpic_headline, .ce_text-mit-bild-erweitert .ext_txtpic.col_right .ce_hyperlink {padding-right: 5%;}
.ce_text-mit-bild-erweitert .no_image .ext_txtpic.col_right .ce_textarea, .ce_text-mit-bild-erweitert .no_image .ext_txtpic.col_right .ext_txtpic_text .ext_txtpic_headline, .ce_text-mit-bild-erweitert .no_image .ext_txtpic.col_right .ce_hyperlink {padding-right: 0;}
.ce_text-mit-bild-erweitert .ext_ce_text_oben, .ce_text-mit-bild-erweitert .ext_ce_image_oben {vertical-align: top!important;}
.ce_text-mit-bild-erweitert .ext_ce_text_mittig, .ce_text-mit-bild-erweitert .ext_ce_image_mittig {vertical-align: middle!important;}
.ce_text-mit-bild-erweitert .ext_ce_text_unten, .ce_text-mit-bild-erweitert .ext_ce_image_unten {vertical-align: bottom!important;}
.ce_text-mit-bild-erweitert .headline_beside, .ce_text-mit-bild-erweitert .headline_beside h1, .ce_text-mit-bild-erweitert .headline_beside h2, .ce_text-mit-bild-erweitert .headline_beside h3, .ce_text-mit-bild-erweitert .headline_beside h4, .ce_text-mit-bild-erweitert .headline_beside h5, .ce_text-mit-bild-erweitert .headline_beside h6 {background: none!important; border: 0!important;}
.ce_text-mit-bild-erweitert .headline_beside [class^="icon-"]:before {padding-right: 0;}
.ce_text-mit-bild-erweitert .ext_ce_frame_1 .image_container {border: 1px solid #ccc;}
.ce_text-mit-bild-erweitert .ext_ce_frame_2 .image_container {border: 2px solid #ccc;}
.ce_text-mit-bild-erweitert .ext_ce_frame_3 .image_container {border: 1px dashed #ccc;}
.ce_text-mit-bild-erweitert .ext_ce_frame_4 .image_container {border: 2px dashed #ccc;}
.ce_text-mit-bild-erweitert .image_container {margin-bottom: 0;}
.ce_text-mit-bild-erweitert .ext_txtpic_bild {line-height: 0;}
.ce_text-mit-bild-erweitert .ext_txtpic_bild img {max-width: 100%; height: auto;}
.ce_text-mit-bild-erweitert .txt_right * {text-align: right;}
.ce_text-mit-bild-erweitert .txt_center * {text-align: center;}
.ce_text-mit-bild-erweitert .txt_center .image_container img {display: inline-block;}
.ce_text-mit-bild-erweitert .txt_center .image_container {line-height: 0;}
.ce_text-mit-bild-erweitert .headline_middle {text-align: center;}
.ce_text-mit-bild-erweitert .ce_hyperlink {margin-top: 30px;}

.ce_text-mit-bild-erweitert .bottom_center .ext_txtpic_bild, .ce_text-mit-bild-erweitert .top_center .ext_txtpic_bild {margin-left: auto; margin-right: auto; max-width: 100%; line-height: 0;}

/* CSS3 filter + effects */
.ext_txtpic_bild img, .ext_txtpic_bild img:hover {-webkit-transition: all 0.4s ease; -moz-transition: all 0.4s ease; -ms-transition: all 0.4s ease; -o-transition: all 0.4s ease; transition: all 0.4s ease;}
.ext_ce_gray img, .ext_ce_gray_hover img {filter: Gray(); filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 10+, Firefox on Android */ filter: gray; /* IE6-9 */ -webkit-filter: grayscale(100%); -moz-filter: grayscale(100%); -ms-filter: grayscale(100%); -o-filter: grayscale(100%);} 
.ext_ce_gray_hover img:hover {filter: none; /* IE6-9 */ -webkit-filter: grayscale(0%); -moz-filter: grayscale(0%); -ms-filter: grayscale(0%);}
.ext_ce_opacity img {opacity: 0.8;}
.ext_ce_opacity img:hover {opacity: 1;}
.ext_ce_blur img {-webkit-filter: blur(5px); -moz-filter: blur(5px);}
.ext_ce_blur .image_container {padding: 10px;}
.ext_ce_blur img:hover {-webkit-filter: none; -moz-filter: none;}
.ext_ce_zoomin img {-moz-transform: scale(1.2); -webkit-transform: scale(1.2); -o-transform: scale(1.2); -ms-transform: scale(1.2); transform: scale(1.2);}
.ext_ce_zoomin img:hover {-moz-transform: none; -webkit-transform: none; -o-transform: none; -ms-transform: none; transform: none;}
.ext_ce_zoomout img {-moz-transform: none; -webkit-transform: none; -o-transform: none; -ms-transform: none; transform: none;}
.ext_ce_zoomout img:hover {-moz-transform: scale(1.2); -webkit-transform: scale(1.2); -o-transform: scale(1.2); -ms-transform: scale(1.2); transform: scale(1.2);}

/* CSS3 animation */
.ext_ce_effect_ltr .image_container, .ext_ce_effect_rtl .image_container, .ext_ce_effect_btt .image_container, .ext_ce_effect_ttb .image_container {opacity: 0;}
.ext_ce_effect_ltr .image_container {-webkit-animation: fadeimages-ltr 0.8s 1 cubic-bezier(1,0,0,1); -moz-animation: fadeimages-ltr 0.8s 1 cubic-bezier(1,0,0,1); -o-animation: fadeimages-ltr 0.8s 1 cubic-bezier(1,0,0,1); animation: fadeimages-ltr 0.8s 1 cubic-bezier(1,0,0,1); opacity: 1;}
.ext_ce_effect_rtl .image_container {-webkit-animation: fadeimages-rtl 0.8s 1 cubic-bezier(1,0,0,1); -moz-animation: fadeimages-rtl 0.8s 1 cubic-bezier(1,0,0,1); -o-animation: fadeimages-rtl 0.8s 1 cubic-bezier(1,0,0,1); animation: fadeimages-rtl 0.8s 1 cubic-bezier(1,0,0,1); opacity: 1;}
@-webkit-keyframes fadeimages-ltr{0%{-webkit-transform:translate(-10%,0);opacity:0}100%{-webkit-transform:translate(0,0);opacity:1}}@-moz-keyframes fadeimages-ltr{0%{-moz-transform:translate(-10%,0);opacity:0}100%{-moz-transform:translate(0,0);opacity:1}}@-o-keyframes fadeimages-ltr{0%{-o-transform:translate(-10%,0);opacity:0}100%{-o-transform:translate(0,0);opacity:1}}@keyframes fadeimages-ltr{0%{transform:translate(-10%,0);opacity:0}100%{transform:translate(0,0);opacity:1}}@-webkit-keyframes fadeimages-rtl{0%{-webkit-transform:translate(10%,0);opacity:0}100%{-webkit-transform:translate(0,0);opacity:1}}@-moz-keyframes fadeimages-rtl{0%{-moz-transform:translate(10%,0);opacity:0}100%{-moz-transform:translate(0,0);opacity:1}}@-o-keyframes fadeimages-rtl{0%{-o-transform:translate(10%,0);opacity:0}100%{-o-transform:translate(0,0);opacity:1}}@keyframes fadeimages-rtl{0%{transform:translate(10%,0);opacity:0}100%{transform:translate(0,0);opacity:1}}

/*     --table_simple
------------------------------------------------- */
table {margin-bottom: 10px; border-bottom: solid 3px #E3E3E3; width: 100%;}
table td {border-top: solid 1px #E3E3E3; padding: 0.5em; text-align: left;}
table td p {margin: 0;}
table th {text-align: left; padding: 0.5em;}

/*     --table_striped
------------------------------------------------- */
.table-striped tr.even {background: #f8f8f8;}

/*     --table_blank
------------------------------------------------- */
.table-blank tr, .table-blank td, .table-blank th, .table-blank table {border: 0; padding: 0;}

/*     --table_extended
------------------------------------------------- */
.table-extended table {text-align: center; color: #666; font-size: 12px; text-shadow: 1px 1px 0px #fff; border: 1px solid #e0e0e0;}
.table-extended table td {border-bottom: 1px solid #e0e0e0; border-left: 1px solid #e0e0e0; border-top: 1px solid #ffffff; background: #fafafa;}
.table-extended table th {border-bottom: 1px solid #e0e0e0; border-top: 1px solid #fafafa; background: #ededed;}
.table-extended table th.col_first {text-align: left;}
.table-extended table tr.odd td {background: #f6f6f6;}
.table-extended table td.col_first {text-align: left; border-left: 0;}
.table-extended table .row_last td {border-bottom: 0;}
.table-extended table td:hover {background: #ddd!important;}
.table-extended table td {-webkit-transition:all .4s ease-in-out; -o-transition:all .4s ease-in-out; -moz-transition:all .4s ease-in-out; transition:all .4s ease-in-out;}

/*     --ce_imagemap
------------------------------------------------- */
.ce_imagemap {overflow: visible;}
.ce_imagemap .imagemap_inside {position: relative;}
.ce_imagemap .image_container img {width: 100%;}
.ce_imagemap .hotspot_content {display: none; background: rgba(255,255,255,0.9); padding: 20px; box-shadow: 0 0px 10px rgba(0, 0, 0, 0.3); position: absolute; z-index: 2000; min-width: 250px; text-align: left;}
.ce_imagemap .hotspot_content.left {left: auto; right: 100%; margin-right: -14px; top: -15px; border-radius: 8px 0 8px 8px;}
.ce_imagemap .hotspot_content.left {-webkit-animation: fadeInLeft 500ms ease; -moz-animation: fadeInLeft 500ms ease; -ms-animation: fadeInLeft 500ms ease; animation: fadeInLeft 500ms ease;}
.ce_imagemap .hotspot_content.right {left: 16px; top: -15px; border-radius: 0px 8px 8px 8px;}
.ce_imagemap .hotspot_content.right {-webkit-animation: fadeInRight 500ms ease; -moz-animation: fadeInRight 500ms ease; -ms-animation: fadeInRight 500ms ease; animation: fadeInRight 500ms ease;}
.ce_imagemap .hotspot {position: absolute; z-index: 1000;}
.ce_imagemap .hotspot li {position: relative;}
.ce_imagemap .hotspot:before {font-family: "icons"; content: "+"; text-indent: 0; display: inline-block; position: relative; top: 0px; left: 0; padding: 5px; font-size: 22px; height: 20px; width: 20px; line-height: 20px; text-align: center; color: #000;}
.ce_imagemap .hotspot:hover {z-index: 2100;}
.ce_imagemap .hotspot:hover .hotspot_content {display: block;}
.ce_imagemap .bild {position: relative; z-index: 100;}
.ce_imagemap .imagemap_inside.center {margin: 0 auto;}
.ce_imagemap .circle {border-radius: 100%; width: 36px; height: 36px; border: 2px solid rgba(255,255,255,0.5); position: absolute; left: 50%; top: 50%; margin-left: -18px; margin-top: -18px; display: block; background: rgba(255,255,255,0.3); box-shadow: 0 0 0 4px rgb(0,63,91);}
.ce_imagemap .hotspot:hover .circle {opacity: 0; -moz-transform: scale(1.5); -webkit-transform: scale(1.5); -o-transform: scale(1.5);  -ms-transform: scale(1.5); transform: scale(1.5); -webkit-transition: All 0.8s ease; -moz-transition: All 0.8s ease; -o-transition: All 0.8s ease; -ms-transition: All 0.8s ease; transition: All 0.8s ease;}
.ce_imagemap .hotspot .circle {opacity: 1; -moz-transform: scale(1); -webkit-transform: scale(1); -o-transform: scale(1);  -ms-transform: scale(1); transform: scale(1); -webkit-transition: All 0.8s ease; -moz-transition: All 0.8s ease; -o-transition: All 0.8s ease; -ms-transition: All 0.8s ease; transition: All 0.8s ease;}

/* small */
.ce_imagemap .hotspot.small:before {padding: 5px; font-size: 15px; height: 20px; width: 20px; line-height: 20px;}
.ce_imagemap .hotspot.small .hotspot_content.left {margin-right: -14px; top: -14px;}
.ce_imagemap .hotspot.small .hotspot_content.right {left: 16px; top: -14px;}
.ce_imagemap .hotspot.small .circle {border-radius: 100%; width: 20px; height: 20px; border: 1px solid rgba(255,255,255,0.5); position: absolute; left: 50%; top: 50%; margin-left: -10px; margin-top: -10px; display: block; background: rgba(255,255,255,0.3); box-shadow: 0 0 0 2px rgb(0,63,91);}

/* pointer small */
.ce_imagemap .hotspot.pointer_small:before {content: '\e93d';}
.ce_imagemap .hotspot.pointer_small .circle {display: none;}
.ce_imagemap .hotspot.pointer_small .hotspot_content.left {top: 0; right: 100%; margin: 0 -15px 0 0;}
.ce_imagemap .hotspot.pointer_small .hotspot_content.right {top: 0; left: 15px; margin: 0;}

/* pointer large */
.ce_imagemap .hotspot.pointer_large:before {content: '\e93d'; font-size: 40px;}
.ce_imagemap .hotspot.pointer_large .circle {display: none;}
.ce_imagemap .hotspot.pointer_large .hotspot_content.left {top: 0; right: 100%; margin: 0 -15px 0 0;}
.ce_imagemap .hotspot.pointer_large .hotspot_content.right {top: 0; left: 15px; margin: 0;}

/*     --ce_gallery with responsive grid
------------------------------------------------- */
.ce_gallery .row1	{overflow: hidden; margin-left: 0; width:100%; float:left; margin-bottom: 15px;}
.ce_gallery .row2	{overflow: hidden; margin-left: 4%; width:48%; float:left; margin-bottom: 15px;}
.ce_gallery .row3	{overflow: hidden; margin-left: 5%; width:30%; float:left; margin-bottom: 15px;}
.ce_gallery .row4	{overflow: hidden; margin-left: 4%; width:22%; float:left; margin-bottom: 15px;}
.ce_gallery .row5	{overflow: hidden; margin-left: 5%; width:16%; float:left; margin-bottom: 15px;}
.ce_gallery .row6	{overflow: hidden; margin-left: 2%; width:15%; float:left; margin-bottom: 15px;}
.ce_gallery .row7	{overflow: hidden; margin-left: 1.5%; width:13%; float:left; margin-bottom: 15px;}
.ce_gallery .row8	{overflow: hidden; margin-left: 1.71%; width:11%; float:left;	position:relative;}
.ce_gallery .row9	{overflow: hidden; margin-left: 1.25%; width:10%; float:left;	position:relative;}
.ce_gallery .row10	{overflow: hidden; margin-left: 1%; width:9.1%; float:left;	position:relative;}
.ce_gallery .row11	{overflow: hidden; margin-left: 1.1%; width:8.09%; float:left;	position:relative;}
.ce_gallery .row12	{overflow: hidden; margin-left: 1%; width: 7.41%; float:left;	position:relative;}

.ce_gallery .col_first {margin-left: 0!important; clear: both;}
.ce_gallery li {position: relative;}
.ce_gallery img:not(.iso_image) {max-width: 100%; display: block; height: auto;}
.ce_gallery .caption {letter-spacing: 0; word-spacing: 0; font-size: 12px; line-height: 16px;}

/* special classes for ce_gallery */
.ce_gallery.imageBorder li {border: 2px solid #ddd;}
.rounded-images img {border-radius: 500%;}

/*     --ce_gallery isotope 
------------------------------------------------- */
.ce_gallery .isotope .isotope-item {margin-bottom: 25px;}
.ce_gallery .iso_overlay {background: rgba(0,0,0,0.6); position: absolute; top: 0; left: 0; height: 100%; width: 100%; opacity: 0; -webkit-transition: All 0.3s ease; -moz-transition: All 0.3s ease; -o-transition: All 0.3s ease; -ms-transition: All 0.3s ease; transition: All 0.3s ease;}
.ce_gallery .iso_overlay i {position: absolute; top: 50%; left: 50%; margin-top: -20px; margin-left: -20px; display: block;}
.ce_gallery .iso_overlay i:before {font-size: 15px; color: #fff; width: 40px; height: 40px; line-height: 40px;}
.ce_gallery .iso_overlay .circle {border-radius: 100%; width: 30px; height: 30px; border: 1px solid #fff; position: absolute; left: 50%; top: 50%; margin-left: -15px; margin-top: -15px; display: block;}
.ce_gallery .item:hover a .iso_overlay .circle {opacity: 0; -moz-transform: scale(1.5); -webkit-transform: scale(1.5); -o-transform: scale(1.5);  -ms-transform: scale(1.5); transform: scale(1.5); -webkit-transition: All 0.8s ease; -moz-transition: All 0.8s ease; -o-transition: All 0.8s ease; -ms-transition: All 0.8s ease; transition: All 0.8s ease;}
.ce_gallery .item a .iso_overlay {-webkit-transition: opacity 0.3s ease; -moz-transition: opacity 0.3s ease; -o-transition: opacity 0.3s ease; -ms-transition: opacity 0.3s ease; transition: opacity 0.3s ease;}
.ce_gallery .item:hover a .iso_overlay {opacity: 1; -webkit-transition: opacity 0.3s ease; -moz-transition: opacity 0.3s ease; -o-transition: opacity 0.3s ease; -ms-transition: opacity 0.3s ease; transition: opacity 0.3s ease;}
.ce_gallery .iteminside {position: relative; display: block; -webkit-transform: translateZ(0);}
.ce_gallery.rounded-images .iso_overlay {border-radius: 100%;}

/*     --ce_image
------------------------------------------------- */
.ce_image.imageBorder {border: 1px solid #ddd;}

/*     --image_container
------------------------------------------------- */
.image_container {position: relative; padding: 0; margin-bottom: 10px; overflow: hidden;}
.image_container .caption {background: rgba(255, 255, 255, 0.6); color: #505050; padding: 3px 6px; width: auto!important; font-size: 11px; position: absolute; left: 0; bottom: 0; width: auto!important;}
.image_container.float_right, .image_container.float_left {float: right; width: 45%; padding: 0; margin-bottom: 3%;}
.image_container.float_right {margin-left: 5%; float: right;}
.image_container.float_left {margin-right: 5%; float: left;}
.image_container img {display: block; height: auto;}

/*     --list
------------------------------------------------- */
.ce_text ul, .ce_list ul, .ce_textarea ul, .ce_text ol, .ce_list ol, .ce_textarea ol {margin-bottom: 15px; padding-left: 20px;}
.ce_text li, .ce_list li, .ce_textarea li, .ce_text ol, .ce_list ol, .ce_textarea ol {line-height: 1.8em;}
.ce_text ul li, .ce_list ul li, .ce_textarea ul li {list-style-type: disc; list-style-position: outside;}
.ce_text ol, .ce_list ol, .ce_textarea ol {list-style: decimal; padding-left: 25px;}
.ce_text ol ol, .ce_list ol ol, .ce_textarea ol ol {list-style: upper-alpha;}
.ce_text ol ol ol, .ce_list ol ol ol, .ce_textarea ol ol ol {list-style: lower-roman;}

/*     --blockquote
------------------------------------------------- */
.blockquote-a {padding-left: 35px; position: relative;}
.blockquote-a p{text-align: justify; font-family: Georgia, Times, serif; font-size: 13px; font-style: italic; line-height: 20px;}
.blockquote-a:before {font-family: "icons"; content: "\275e"; text-indent: 0; display: inline-block; position: absolute; top: 0px; left: 0; margin-right: 5px; font-style: normal; font-size: 25px;}
.blockquote-b {padding-left: 35px; position: relative;}
.blockquote-b {font-size: 17px; line-height: 24px;}
.blockquote-b:before {font-family: "icons"; content: "\275c"; text-indent: 0; display: inline-block; position: absolute; top: 0px; left: 0; margin-right: 5px; font-style: normal; font-size: 25px;}

/*     --socialbox
------------------------------------------------- */
.socialbox i {background: #E2E2E2; width: 30px; line-height: 30px; text-align: center; display: inline-block; -webkit-transition: All 0.3s ease; -moz-transition: All 0.3s ease; -o-transition: All 0.3s ease; -ms-transition: All 0.3s ease; transition: All 0.3s ease;}
.socialbox i:before {margin: 0!important;}
.socialbox i:hover {background: #555555; -webkit-transition: All 0.3s ease; -moz-transition: All 0.3s ease; -o-transition: All 0.3s ease; -ms-transition: All 0.3s ease; transition: All 0.3s ease;}
.socialbox i:hover:before {color: #E2E2E2; -webkit-transition: All 0.3s ease; -moz-transition: All 0.3s ease; -o-transition: All 0.3s ease; -ms-transition: All 0.3s ease; transition: All 0.3s ease;}

/*     --ce_comments
------------------------------------------------- */
.ce_comments .widget {margin-bottom: 10px;}

/*     --content-box
------------------------------------------------- */
.content-box-a {background-color: #F9BBB9;	padding: 20px 20px 10px 20px; border-left: 4px solid #E0A7A6;}
.content-box-b {background-color: #C1FFCC;	padding: 20px 20px 10px 20px; border-left: 4px solid #AEE6B8;}
.content-box-c {padding: 20px 20px 10px 20px; border: 1px solid #ccc; border-radius: 10px; -moz-border-radius: 10px; -webkit-border-radius: 10px;}
.content-box-d {padding: 30px 20px 20px 20px; background: #E0F1B5; text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7); color: #4F5F39; text-align: center; font-size: 16px;}
.content-box-e {padding: 30px 20px 20px 20px; background: #F5F6FC; text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7); color: #4671A3; text-align: center; font-size: 16px;}
.content-box-f {padding: 30px 20px 20px 20px; background: #FFF8F4; text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7); color: #AF2C20; text-align: center; font-size: 16px;}
.content-box-g {padding: 30px 20px 20px 20px; background: #FFFDF3; text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7); color: #C96D11; text-align: center; font-size: 16px;}
.content-box-h {padding: 30px 20px 20px 20px; background: #f8f8f8; text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7); color: #444; text-align: center; font-size: 16px;}
.content-box-i {padding: 30px 20px 20px 20px; background: #333; color: #fff; text-align: center; font-size: 16px; font-weight: bold;}
.content-box-j {padding: 30px 20px 20px 20px; background: #F5F6FC; color: #4671A3; text-align: center; font-size: 16px; font-weight: bold; border: 1px dashed #9DADBF;}
.content-box-k {padding: 30px 20px 20px 20px; background: #FFFDF3; color: #C96D11; text-align: center; font-size: 16px; font-weight: bold; border: 1px solid #E6BF4A;}

/*     --list
------------------------------------------------- */
#wrapper .ce_list li[class^="icon-"]:before, #wrapper .ce_list li[class*="icon-"]:before {left: -1.4em; width: 1em; top: 0.5em;}

/*     --calltoaction-box
------------------------------------------------- */
.calltoaction {background-repeat: repeat; padding: 15px; position: relative; margin-bottom: 20px; border-left: 4px solid rgb(0,63,91); display: table; vertical-align: middle; width: 100%;}
.calltoaction strong {font-size: 17px; margin-bottom: 10px; display: block;}
.calltoaction p {font-size: 14px; width: 70%; margin: 0;}
.calltoaction i {font-size: 45px;}
.calltoaction_left, .calltoaction_right {vertical-align: middle; display: table-cell;}
.calltoaction a {white-space: nowrap;}

.calltoaction_2 {width: 100%; background: url(../../files/cto_layout/img/promo.png) repeat; padding: 15px; position: relative; margin-bottom: 20px; text-shadow: 1px 1px 1px #FFF; border-top: 5px solid #444; display: table; vertical-align: middle;}
.calltoaction_2 strong {font-size: 17px; margin-bottom: 10px; display: block;}
.calltoaction_2 p {font-size: 14px; width: 70%; margin: 0;}
.calltoaction_2 i {font-size: 45px;}
.calltoaction_2_left, .calltoaction_2_right {vertical-align: middle; display: table-cell;}

.calltoaction, .calltoaction_2 {background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAAH6Nf8rAAAACXBIWXMAAC4jAAAuIwF4pT92AAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAgY0hSTQAAeiUAAICDAAD5/wAAgOkAAHUwAADqYAAAOpgAABdvkl/FRgAAAGlJREFUeNpi+v//P8P///8ZmBigAAAAAP//YoLzAAAAAP//YoLJ/f//nwEAAAD//2LCVAhjAAAAAP//QlGHoQwZAAAAAP//YmJgYLBAxzhVUiAIAAAA///C6iSinUm0NfRRCAAAAP//AwCuxUX8BSqg7AAAAABJRU5ErkJggg==');}

/*     --dropcaps
------------------------------------------------- */
.dropcap p:first-letter  {font-size: 36px; line-height: 36px; float: left; display:block; margin: 6px 7px 0 0; border-radius: 4px; background: #666666; color: #fff; padding: 2px 5px;}
.dropcap_2 p:first-letter  {font-size: 48px; float: left; display:block; margin:0 7px 0 0; line-height: 1;}
.dropcap_3 p:first-letter  {font-size: 36px; line-height: 1em; width: 1em; float: left; display:block; margin: 6px 7px 0 0; border-radius: 99px; background: #666666; color: #fff; padding: 5px; text-align: center;}
.dropcap_4 p:first-letter  {font-size: 36px; line-height: 1em; width: 1em; float: left; display:block; margin: 6px 7px 0 0; background: #666666; color: #fff; padding: 5px; text-align: center;}

/*     --hyperlinks + buttons
------------------------------------------------- */
.ce_hyperlink.center {text-align: center;}
.ce_hyperlink.right {text-align: right;}
.ce_hyperlink {-webkit-transform: translateZ(0);}

.button:hover:before, .ce_hyperlink a:hover:before {-webkit-animation: rotateIn 500ms ease; -moz-animation: rotateIn 500ms ease; -ms-animation: rotateIn 500ms ease; animation: rotateIn 500ms ease;}
.button, .ce_hyperlink a, .servicebox_4 p a, .servicebox_5 p a, .servicebox_6 p a {font-weight: normal; padding: 0px 6px; text-align: center; display: inline-block; margin-bottom: 4px; background: rgb(0,63,91); color: #fff; white-space:nowrap; font-size:0.8em;}
.button, .ce_hyperlink a { -webkit-transition: All 0.3s ease; -moz-transition: All 0.3s ease; -o-transition: All 0.3s ease; -ms-transition: All 0.3s ease; transition: All 0.3s ease;}
.button:hover, .ce_hyperlink a:hover {opacity: 0.9; -webkit-transition: All 0.3s ease; -moz-transition: All 0.3s ease; -o-transition: All 0.3s ease; -ms-transition: All 0.3s ease; transition: All 0.3s ease;}

/* sizes */
.button.small, .ce_hyperlink.small a {padding: 8px 10px; font-size: 13px;}
.button.big, .ce_hyperlink.big a {padding: 15px 18px; font-size: 18px; line-height: 33px; vertical-align: middle;}

/* rounded corners */
.button.rounded3, .ce_hyperlink.rounded3 a {-webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px;}
.button.rounded5, .ce_hyperlink.rounded5 a {-webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px;}
.button.rounded10, .ce_hyperlink.rounded10 a {-webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px;}
.button.rounded99, .ce_hyperlink.rounded99 a {-webkit-border-radius: 99px; -moz-border-radius: 99px; border-radius: 99px;}
.button.large[class^="icon-"]:before, .button.large[class*=" icon-"]:before {font-size: 33px; line-height: 33px; margin-right: 0.5em; vertical-align: middle;}
.button[class^="icon-"]:before, .button[class*=" icon-"]:before {margin-right: 0.6em;}

/* style2 light*/
.ce_hyperlink.style2_light a {background: none!important; border: 1px solid #fff!important; color: #fff!important; -webkit-transition: All 0.3s ease; -moz-transition: All 0.3s ease; -o-transition: All 0.3s ease; -ms-transition: All 0.3s ease; transition: All 0.3s ease;}
.ce_hyperlink.style2_light a:hover {background: rgba(255,255,255,0.6)!important; opacity: 1!important;}

/* style2 dark*/
.ce_hyperlink.style2_dark a {background: none!important; border: 1px solid #555!important; color: #555!important; -webkit-transition: All 0.3s ease; -moz-transition: All 0.3s ease; -o-transition: All 0.3s ease; -ms-transition: All 0.3s ease; transition: All 0.3s ease;}
.ce_hyperlink.style2_dark a:hover {background: rgba(0,0,0,0.9)!important; opacity: 1!important; color: #fff!important;}

/*     --testimonial
-------------------------------------------------*/
.testimonial_v1 {display: table; vertical-align: top;}
.testimonial_v1 .image_container {display: table-cell; width: 20%;  vertical-align: top; min-width: 85px; margin-right: 20px;}
.testimonial_v1 .image_container img {border-radius: 100%; border: 1px solid #b7b7b7; width: 85%!important;}
.testimonial_v1 .testimonial_content {display: table-cell; vertical-align: top;}
.testimonial_v1 .testimonial_name {font-weight: bold;}
.testimonial_v1 .testimonial_firma {color: #919191;}
.testimonial_v1 a {color:rgb(0,63,91);}

/*     --testimonial_slider
-------------------------------------------------*/
.testimonial_slider .testimonial_text {border: 1px solid #e1e1e1; padding: 15px 15px 0 15px; position: relative; margin-bottom: 15px; background: #FCFCFC;}
.testimonial_slider .arrow {height:10px; width:10px; position: absolute; bottom:-6px; left:32px; margin-left:-5px; -webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); transform: rotate(45deg); border: 1px solid; border-color:  transparent #e1e1e1 #e1e1e1 transparent; background: #fcfcfc;}
.testimonial_slider img {border-radius: 100%; border: 1px solid #E1E1E1; max-width: inherit!important; width: 65px; height: 65px;}
.testimonial_slider .contentwrapper {display: table; vertical-align: middle;}
.testimonial_slider .contentwrapper img, .testimonial_info {display: table-cell; vertical-align: middle;}
.testimonial_slider .testimonial_info {padding-left: 20px;}
.testimonial_slider .testimonial_name {font-weight: bold;}
.testimonial_slider .zusatz {color: #919191;}
.testimonial_slider a {color:rgb(0,63,91);}

/*     --testimonial_slider v2 (simple)
-------------------------------------------------*/
.testimonial_slider_v2 {text-align: center;}
.testimonial_slider_v2 .text {font-size: 1.7em; line-height: 1.5em; font-style: italic;}
.testimonial_slider_v2 .text p:before {content: '"'; display: inline-block; margin-right: 5px;}
.testimonial_slider_v2 .text p:after {content: '"'; display: inline-block; margin-left: 5px;}
.testimonial_slider_v2 .autor {font-size: 1.2em;}
.testimonial_slider_v2 .bx-viewport {overflow: visible!important;}
.ce_testimonial-slider-simple {overflow: visible!important;}
.ce_testimonial-slider-simple .bx-wrapper .bx-controls {bottom: -45px; top: auto; position: relative;}

/*     --team
------------------------------------------------- */
.teambox_1 {transition: all linear 0.25s; -ms-transition: all linear 0.25s; -moz-transition: all linear 0.25s; -webkit-transition: all linear 0.25s; -o-transition: all linear 0.25s; background: #f8f8f8;}
.teambox_1 .teambox_content {padding: 15px;}
.teambox_1 .teambox_socials {margin-top: 15px; border-top: 1px solid #ccc; padding-top: 10px;}
.teambox_1 h3 {margin-bottom: 0; font-size: 16px;}
.teambox_1:hover {background: #F9F9F9; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); border-radius: 6px; } 
.teambox_1 .funktion {color: #999; text-transform: uppercase; font-size: 11px;}
.teambox_1 .beschreibung {line-height: 19px; margin-bottom: 10px; border-bottom: 1px solid #ccc; padding-bottom: 10px; font-size: 12px;}
.teambox_1 .tel:before {font-family: "icons"; content: "\eccc"; text-indent: 0; display: inline-block; position: relative; top: 0px; left: 0; margin-right: 5px;}
.teambox_1 .email:before {font-family: "icons"; content: "\e899"; text-indent: 0; display: inline-block; position: relative; top: 0px; left: 0; margin-right: 5px;}
.teambox_1 i, .teambox_1 a {color: #999; -webkit-transition: All 0.3s ease; -moz-transition: All 0.3s ease; -o-transition: All 0.3s ease; -ms-transition: All 0.3s ease; transition: All 0.3s ease;}
.teambox_1 i:hover {opacity: 0.7; -webkit-transition: All 0.3s ease; -moz-transition: All 0.3s ease; -o-transition: All 0.3s ease; -ms-transition: All 0.3s ease; transition: All 0.3s ease;}
.teambox_1 .email a, .teambox_1 .email {color: #969696;}
.teambox_1 .image_container {margin: 0;}

.teambox_2 {position: relative; line-height: 19px;}
.teambox_2 .funktion {position: absolute; bottom: 0; right: 0; color: rgb(0,63,91); font-size: 12px;}
.teambox_2 .beschreibung {margin-bottom: 10px; font-size: 12px;}
.teambox_2 .tel, .teambox_2 .email {font-size: 12px;}
.teambox_2 i {color: #999;}
.teambox_2 .email {margin-bottom: 10px;}
.teambox_2 a {color: #777;}
.teambox_2 .teambox_socials {margin-top: 15px; border-top: 1px solid #ccc; padding-top: 10px;}
.teambox_2 i:hover {opacity: 0.7; -webkit-transition: All 0.3s ease; -moz-transition: All 0.3s ease; -o-transition: All 0.3s ease; -ms-transition: All 0.3s ease; transition: All 0.3s ease;}
.teambox_2 .email a, .teambox_2 .email {color: #969696;}
.teambox_2 h3 {font-size: 16px;}

.teambox_3 {text-align: center;}
.teambox_3 h3 {font-size: 16px; text-transform: uppercase; letter-spacing: 2px;}
.teambox_3 h3 span {display: block;}
.teambox_3 h3:after {content:''; height: 2px; background: #efefef; display: inline-block; width: 120px; text-align: center;}
.teambox_3 .funktion {text-transform: uppercase; font-size: 11px; color: #848484; margin: 6px 0;}
.teambox_3 .beschreibung, .teambox_3 .tel, .teambox_3 .email {font-size: 13px; line-height: 21px;}
.teambox_3 .teambox_socials {margin-top: 25px;}
.teambox_3 .teambox_socials a {color: #969696; -webkit-transition: All 0.3s ease; -moz-transition: All 0.3s ease; -o-transition: All 0.3s ease; -ms-transition: All 0.3s ease; transition: All 0.3s ease;}
.teambox_3 .teambox_socials a:hover {opacity: 0.8; -webkit-transition: All 0.3s ease; -moz-transition: All 0.3s ease; -o-transition: All 0.3s ease; -ms-transition: All 0.3s ease; transition: All 0.3s ease;}

/*     --counter
------------------------------------------------- */
.ce_counter {text-align: center;}
.ce_counter i {font-size: 45px; margin: 0; line-height: 1em;}
.ce_counter i:before {margin: 0!important;}
.ce_counter .counterwrapper {font-size: 3em; font-weight: 500; line-height: 2em;}
.ce_counter .headline {font-size: 1.3em; line-height:1.3em;}

/*     --ce_countdown
------------------------------------------------- */
.ce_countdown {font-size: 20px;}
.ce_countdown .countdown.center {text-align: center;}
.ce_countdown .countdown.right {text-align: right;}
.ce_countdown .countdown-section {margin-right: 25px;}
.ce_countdown .countdown-amount {margin-right: 4px; font-size: 40px; line-height: 40px;}

/*     --nachrichtenliste
------------------------------------------------- */
.nachrichtenliste {margin-bottom: 65px; overflow: hidden; list-style: none;}
.nachrichtenliste .info {color: #888; margin-top: 10px; white-space: nowrap; font-size: 0.8em;}
.nachrichtenliste .date {display: inline-block; margin-right: 20px;}
.nachrichtenliste .date:before {font-family: "icons"; content: "\1f553"; display: inline-block; margin-right: 5px; font-style: normal;}
.nachrichtenliste .author {display: inline-block; margin-right: 20px;}
.nachrichtenliste .author:before {font-family: "icons"; content: "\e806"; display: inline-block; margin-right: 5px; font-style: normal;}
.nachrichtenliste .comments {display: inline-block;}
.nachrichtenliste .comments:before {font-family: "icons"; content: "\e8b8"; display: inline-block; margin-right: 5px; font-style: normal;}
.nachrichtenliste .more {float: right;}
.nachrichtenliste .more a {color: #fff;}
.nachrichtenliste h2 {border: 0; margin: 0; padding: 0;}
.nachrichtenliste .teaser {margin: 20px 0 0 0;}
.nachrichtenliste .date-wrapper {text-align: center; border-right: 1px solid #EAEAEA;}
.nachrichtenliste .date-wrapper .day {font-size: 28px; padding: 5px; font-weight: 300}
.nachrichtenliste .month {padding: 5px;}
.nachrichtenliste .button {float: right;}
.nachrichtenliste.smallview .two_third {padding-left: 4%;}
.nachrichtenliste.verticalview *:before {display: none;}
.nachrichtenliste.verticalview  .date {margin-right: 10px;}
.nachrichtenliste.verticalview {border-bottom: 1px solid #E5E5E5; padding-bottom: 5px; margin-bottom: 15px;}
.nachrichtenliste .subheadline {color: rgb(0,63,91); margin-bottom: 5px;}

/*     --nachrichtenteaser: slider
------------------------------------------------- */
.ce_nachrichten-teaser {overflow: hidden; position: relative;}
.nachrichtenteaser_slider {padding-top: 35px;}
.link_to_all.nt_slider {top: 0px; right: 65px;}
.nachrichtenteaser_slider .date {font-weight: bold;}
.nachrichtenteaser_slider .date, .nachrichtenteaser_slider .author, .nachrichtenteaser_slider .comment {display: inline-block; margin-right: 5px; white-space: nowrap; font-size: 11px!important; font-family: Arial, sans-serif!important;}
.nachrichtenteaser_slider .info {margin-bottom: 15px;}
.nachrichtenteaser_slider .dot {display: inline-block; margin-right: 5px;}
.nachrichtenteaser_slider .subheadline {color: rgb(0,63,91);}
.nachrichtenteaser_slider .subheadline:before {font-family: "icons"; content: "\eb96"; text-indent: 0; display: inline-block; position: relative; top: 0px; left: 0; margin-right: 5px;}
.nachrichtenteaser_slider .iso_overlay {background: rgba(0,0,0,0.6); position: absolute; top: 0; left: 0; height: 100%; width: 100%; opacity: 0; -webkit-transition: All 0.3s ease; -moz-transition: All 0.3s ease; -o-transition: All 0.3s ease; -ms-transition: All 0.3s ease; transition: All 0.3s ease;}
.nachrichtenteaser_slider .iso_overlay i {position: absolute; top: 50%; left: 50%; margin-top: -20px; margin-left: -20px; display: block;}
.nachrichtenteaser_slider .iso_overlay i:before {font-size: 15px; color: #fff; width: 40px; height: 40px; line-height: 40px;}
.nachrichtenteaser_slider .iso_overlay .circle {border-radius: 100%; width: 30px; height: 30px; border: 1px solid #fff; position: absolute; left: 50%; top: 50%; margin-left: -15px; margin-top: -15px; display: block;}
.nachrichtenteaser_slider .nachrichtenteaser_entry:hover a .iso_overlay .circle {opacity: 0; -moz-transform: scale(1.5); -webkit-transform: scale(1.5); -o-transform: scale(1.5);  -ms-transform: scale(1.5); transform: scale(1.5); -webkit-transition: All 0.8s ease; -moz-transition: All 0.8s ease; -o-transition: All 0.8s ease; -ms-transition: All 0.8s ease; transition: All 0.8s ease;}
.nachrichtenteaser_slider .nachrichtenteaser_entry a .iso_overlay {-webkit-transition: opacity 0.3s ease; -moz-transition: opacity 0.3s ease; -o-transition: opacity 0.3s ease; -ms-transition: opacity 0.3s ease; transition: opacity 0.3s ease;}
.nachrichtenteaser_slider .nachrichtenteaser_entry:hover a .iso_overlay {opacity: 1; -webkit-transition: opacity 0.3s ease; -moz-transition: opacity 0.3s ease; -o-transition: opacity 0.3s ease; -ms-transition: opacity 0.3s ease; transition: opacity 0.3s ease;}
.nachrichtenteaser_slider .bx-wrapper .bx-controls-direction a {top: 0;}

/*     --nachrichtenteaser: set
------------------------------------------------- */
.ce_nachrichtenteaser-set {position: relative;}
.nachrichtenteaser_v2 {overflow: hidden;}
.nachrichtenteaser_v2 .two_third .nachrichtenliste {background: #fafafa; padding: 20px; margin-bottom: 0;}
.nachrichtenteaser_v2 .nachrichtenliste img {border-radius: 5px;}
.nachrichtenteaser_v2 h3 {font-weight: bold; font-size: 14px;}
.nachrichtenteaser_v2 {position: relative; padding-top: 45px;}
.link_to_all {position: absolute; right: 0; top: 0; z-index: 1000;}
.link_to_all a:before {font-family: "icons"; content: "\ec8d"; text-indent: 0; display: inline-block; position: relative; top: 0px; left: 0; margin-right: 0;}
.link_to_all a {color: #717171;}
.link_to_all a:hover {color: #333;}

/*     --nachrichtenteaser: small / big
------------------------------------------------- */
.nachrichtenteaser_v3 {margin-bottom: 40px; border-bottom: 1px solid #E5E5E5; padding-bottom: 30px;}
.nachrichtenteaser_v3 h4 {font-weight: 600; margin: 0;}
.nachrichtenteaser_v3 .info {font-size: 11px; color: #999; line-height: 16px;}
.nachrichtenteaser_v3 .date, .nachrichtenteaser_v3 .author, .nachrichtenteaser_v3 .comment {display: inline-block; white-space:nowrap;}
.nachrichtenteaser_v3 .dot {margin: 0 5px;}
.nachrichtenteaser_v3 .subheadline {color: rgb(0,63,91);}
.nachrichtenteaser_v3 .subheadline:before {font-family: "icons"; content: "\eb96"; text-indent: 0; display: inline-block; position: relative; top: 0px; left: 0; margin-right: 5px;}
.nachrichtenteaser_v3 .linkwrapper a {float: left; font-size: 12px!important;; font-family: Arial, sans-serif!important;}
.nachrichtenteaser_v3 .linkwrapper a:hover {opacity: 0.7;}
.nachrichtenteaser_v3 .linkwrapper a:after {font-family: "icons"; content: "\ec0e"; display: inline-block; margin-left: 5px; font-style: normal;}
.nachrichtenteaser_v3 .linkwrapper .subheadline {float: right;}
.link_to_all_list {border-bottom: 1px dotted #ccc; text-align: right; margin-bottom: 25px;}
.link_to_all_list a:before {font-family: "icons"; content: "\ec8d"; text-indent: 0; display: inline-block; position: relative; top: 0px; left: 0; margin-right: 0;}
.link_to_all_list a {color: #717171;}
.link_to_all_lis a:hover {color: #333;}

/* version 4 */
.small .nachrichtenteaser_v3 {margin-bottom: 15px; padding-bottom: 5px;}
.small .nachrichtenteaser_v3 .autogrid-last {padding-left: 4%;}

/*     --nachrichtenteaser_footer
------------------------------------------------- */
.nachrichtenteaser_footer {margin-bottom: 10px;}

/*     --nachrichtenleser
------------------------------------------------- */
.nachrichtenleser .image_container {margin-bottom: 20px;}
.nachrichtenleser .info {font-size: 16px;}
.nachrichtenleser .date {margin-bottom: 10px; display: inline-block; margin-right: 20px;}
.nachrichtenleser .date:before {font-family: "icons"; content: "\ecda"; display: inline-block; margin-right: 5px; font-style: normal;}
.nachrichtenleser .author {margin-bottom: 10px; display: inline-block; margin-right: 20px; padding: 1px 6px;}
.nachrichtenleser .author:before {font-family: "icons"; content: "\e806"; display: inline-block; margin-right: 5px; font-style: normal;}
.nachrichtenleser .comments {margin-bottom: 10px; display: inline-block; padding: 1px 6px; margin-right: 20px;}
.nachrichtenleser .comments:before {font-family: "icons"; content: "\e8b8"; display: inline-block; margin-right: 5px; font-style: normal;}
.nachrichtenleser .back {padding-top: 10px; margin-top: 10px; border-top: 1px solid #ddd;}
.nachrichtenleser .back a {font-size: 10px; text-transform: uppercase;}
.nachrichtenleser img {border: 1px solid #ddd;}
.nachrichtenleser .subheadline {display: inline-block;}
.nachrichtenleser .subheadline:before {font-family: "icons"; content: "\eb96"; display: inline-block; margin-right: 5px; font-style: normal;}

/*     --blog
------------------------------------------------- */
.ce_blog .blog {margin-bottom: 20px;}
.ce_blog .blog .image_container {margin: 0}
.ce_blog .blog .image_container img {width: 100%;}
.ce_blog .blog .blogwrapper {box-shadow: 0 1px 2px rgba(0,0,0,0.1); margin: 3px;}
.ce_blog .blog_inside {padding: 20px; background: #fff; }
.ce_blog .blog .button {background: none!important; color: #333!important; padding: 0!important; margin-top: 25px;}
.ce_blog .blog .comments {text-align: right; display: none;}
.ce_blog .blog .comments a:before {font-family: "icons"; content: "\e8b8"; display: inline-block; margin-right: 5px; font-style: normal;}
.ce_blog .blog .comments a, .ce_blog .blog .morelink {color: rgb(0,63,91);}
.ce_blog .blog .morelink:after {font-family: "icons"; content: "\ec0e"; display: inline-block; margin-left: 5px; font-style: normal;}
.ce_blog .blog .info {margin-bottom: 10px; white-space: nowrap; font-size: 12px;}
.ce_blog .blog .info span {margin-right: 5px; display: inline-block;}
.ce_blog .blog .info .date:before {font-family: "icons"; content: "\e91a"; text-indent: 0; display: inline-block; position: relative; top: 0px; left: 0; margin-right: 5px;}
.ce_blog .isotope {margin-bottom: 80px;}
.ce_blog .pagination {position: absolute; width: 100%; bottom: -40px; left: 0;}
.ce_blog .pagination p {margin-right: 1%;}
.ce_blog .pagination ul {margin-left: 1%;}

/*     --comment_default
------------------------------------------------- */
.comment_default {padding-bottom: 5px; border-bottom: 1px solid #ddd; margin-bottom: 25px;}

/*     --ce_preistabelle
------------------------------------------------- */
.ce_preistabelle .pricetable {border: 1px solid #efefef;}
.ce_preistabelle .pricetable.hightlight {border: 1px solid #fefefe;}
.ce_preistabelle {text-align: center; overflow: visible; margin: 30px 0 55px 0;}
.ce_preistabelle .titel {font-weight: 300; font-size: 2.5em; color: #fff; background: #363839; padding: 35px 20px;}
.ce_preistabelle .preiswrapper {background: rgb(0,63,91); color: #fff; padding: 25px; opacity: 0.8; -webkit-transition: All 0.3s ease; -moz-transition: All 0.3s ease; -o-transition: All 0.3s ease; -ms-transition: All 0.3s ease; transition: All 0.3s ease;}
.ce_preistabelle .pricetable:hover .preiswrapper {opacity: 1; -webkit-transition: All 0.3s ease; -moz-transition: All 0.3s ease; -o-transition: All 0.3s ease; -ms-transition: All 0.3s ease; transition: All 0.3s ease; -webkit-backface-visibility: hidden;}
.ce_preistabelle .preiswrapper .preis {font-size: 3em; line-height: 0.8em; font-weight: 700;}
.ce_preistabelle .preiswrapper .preis span {font-size: 0.6em; vertical-align: top; line-height: 1em; margin-left: -1em;}
.ce_preistabelle .preiswrapper .preiszusatz {text-transform: uppercase; color: rgba(255,255,255,0.6); font-size: 0.8em;}
.ce_preistabelle ul li {border-bottom: 1px solid #efefef; line-height: 65px; -webkit-transition: All 0.3s ease; -moz-transition: All 0.3s ease; -o-transition: All 0.3s ease; -ms-transition: All 0.3s ease; transition: All 0.3s ease;}
.ce_preistabelle ul li:hover {background: #f8f8f8; -webkit-transition: All 0.3s ease; -moz-transition: All 0.3s ease; -o-transition: All 0.3s ease; -ms-transition: All 0.3s ease; transition: All 0.3s ease;}
.ce_preistabelle ul li.durchgestrichen {text-decoration: line-through; color: rgba(0,0,0,0.4);}
.ce_preistabelle .leistungen {background: #fcfcfc;}
.ce_preistabelle .highlight {box-shadow: 0 0 10px rgba(0,0,0,0.5); position: relative; z-index: 1000; margin-top: -15px;}
.ce_preistabelle .highlight .preiswrapper {opacity: 1;}
.ce_preistabelle .titel .highlight_text {font-size: 0.3em; margin-left: 0.8em; font-weight: bold;}
.ce_preistabelle .link {background: #fcfcfc; padding: 20px 0;}
.ce_preistabelle i:before {width: 1em!important;}

/* col3 */
.pricetable_3col {overflow: visible;}
.pricetable_3col .pricetable {width: 33.33%; float: left;}

/* col4 */
.pricetable_4col .pricetable {width: 25%; float: left;}
.pricetable_4col .titel {font-size: 1.8em;}
.pricetable_4col .pricetable.table_1 {border-right: 1px solid #F0F0F0;}

/*     --login-form
------------------------------------------------- */
#main .mod_login table td, .mod_login table {border: 0;}
#main .mod_login {padding: 30px; border: 1px solid #ddd; background: #f9f9f9; max-width: 350px;}
#main .mod_login input {margin-bottom: 7px;}
#main .mod_login .checkbox_container {margin: 15px 0;}

/*     --login-form top
------------------------------------------------- */
#toplogin {float: left; display: inline-block; position: relative;}
#toplogin span {line-height: 40px; cursor: pointer; display: inline-block; position: relative;}
#toplogin .mod_login {display: none; position: absolute; top: 41px; left: 0; background: rgba(255,255,255,0.9); width: 220px; padding: 15px; box-shadow: 0px 2px 2px 1px rgba(0,0,0,0.3);}
#toplogin.loginbox_open .mod_login {display: block; -webkit-animation: fadeIn 500ms ease; -moz-animation: fadeIn 500ms ease; -ms-animation: fadeIn 500ms ease; animation: fadeIn 500ms ease;}
#toplogin span:after {font-family: "icons"; content: "\ea09"; text-indent: 0; display: inline-block; position: relative; top: 0px; left: 0; margin-left: 10px;}
#toplogin.loginbox_open span:after {content:'x';}
#toplogin input {padding: 3px; margin-bottom: 3px;}
#toplogin input.submit {padding: 5px 10px; font-weight: normal; text-transform: uppercase; font-size: 10px;}
#toplogin label {color: #333; text-transform: uppercase; font-size: 11px;}
#toplogin table td {border: 0;}
#toplogin .checkbox_container {margin: 5px 0; font-size: 10px;}

/*     --ce_accordion
------------------------------------------------- */
.ce_accordion .accordion {border: 0; background: none; padding: 0;}
.ce_accordion .accordion > div {padding: 0;}
.ce_accordion .toggler {border-top: 1px solid #E5E5E5; background: none; background-image: none; box-shadow: 0 0 0 0; text-shadow: none; line-height: 30px; padding: 7px 0; color: #505050; cursor: pointer; font-size:26px;}
.ce_accordion .toggler:hover {color: rgba(0,0,0,0.8);}
.ce_accordion .toggler:before {display: inline-block; font-family: 'icons'; font-style: normal; font-weight: 300; font-size: 16px; line-height: 25px; height: 25px; width: 25px; text-align: center; text-decoration: inherit; border-radius: 25px; padding: 0; float: left; clear:both; margin-right: 15px; margin-top: 3px; content: '\2b';}
.ce_accordion .toggler.ui-state-active:before {content: '\2d';}
.ce_accordion .toggler:after {display: none;} 

/*     --pagination
------------------------------------------------- */
.pagination {clear: both; padding-top: 5px; margin-top: 10px; white-space: nowrap;}
.pagination ul {padding: 0; float: left;}
.pagination p {float: right; background: rgba(0,0,0,0.1); box-shadow: 0 1px 2px rgba(0,0,0,0.3); border-radius: 3px; display: inline-block; padding: 3px 10px;}
.pagination li {background: none; padding: 0; margin: 0 2px 0 0; float: left; list-style-type: none;}
.pagination li:before, .pagination li a:before {content: '';}
.pagination li a,
.pagination li span {background: rgba(0,0,0,0.1); display: block; margin-right: 5px; color: inherit; text-decoration: none; padding: 3px 10px; /* box-shadow: 0 1px 2px rgba(0,0,0,0.3); */ border-radius: 3px;}
.pagination li span.current {background: rgb(0,63,91); color: white;}
.pagination li a:hover {color: rgb(0,63,91);}
.pagination li a.next:after {font-family: "icons"; content: "\e75e"; text-indent: 0; display: inline-block; position: relative; top: 0px; left: 0; margin-left: 10px; line-height: 10px;}

/*     --serviceboxes
------------------------------------------------- */
.servicebox {padding: 25px; text-align: center; position: relative; -webkit-transition: background 0.3s ease; -moz-transition: background 0.3s ease; -o-transition: background 0.3s ease; -ms-transition: background 0.3s ease; transition: background 0.3s ease;}
.servicebox:hover:before{-webkit-animation: rotateIn 500ms ease; -moz-animation: rotateIn 500ms ease; -ms-animation: rotateIn 500ms ease; animation: rotateIn 500ms ease;}
.servicebox[class^="icon-"]:before,
.servicebox[class*="icon-"]:before{padding: 10%; font-size: 65px; margin-right: 0!important; color: #fff;}
.servicebox h1, .servicebox h2, .servicebox h3, .servicebox h4, .servicebox h5, .servicebox h6 {margin-bottom: 10px; padding: 0;}
.servicebox a {display: inline-block; padding: 5px 10px;}
.servicebox:before {display: inline-block; font-size: 64px; padding: 50px; margin-bottom: 26px; color: #FDFDFD; -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; border: 15px solid #f0f0f0; -webkit-transition: all .15s ease-in-out; -moz-transition: all .15s ease-in-out; -ms-transition: all .15s ease-in-out; -o-transition: all .15s ease-in-out; transition: all .15s ease-in-out; background: rgb(0,63,91); background: rgb(0,63,91) -moz-radial-gradient(center, ellipse cover, rgba(0,0,0,0) 25%, rgba(0,0,0,0.15) 100%); background: rgb(0,63,91) -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(25%, rgba(0,0,0,0)), color-stop(100%, rgba(0,0,0,0.15))); background: rgb(0,63,91) -webkit-radial-gradient(center, ellipse cover, rgba(0,0,0,0) 25%, rgba(0,0,0,0.15) 100%); background: rgb(0,63,91) -o-radial-gradient(center, ellipse cover, rgba(0,0,0,0) 25%, rgba(0,0,0,0.15) 100%); background: rgb(0,63,91) -ms-radial-gradient(center, ellipse cover, rgba(0,0,0,0) 25%, rgba(0,0,0,0.15) 100%); background: rgb(0,63,91) radial-gradient(ellipse at center, rgba(0,0,0,0) 25%, rgba(0,0,0,0.15) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#26000000', GradientType=1 );}
.servicebox img {display: inline-block;}

.servicebox_2 {position: relative; padding-left: 50px; text-align: left!important;}
.servicebox_2[class^="icon-"]:before,
.servicebox_2[class*="icon-"]:before {font-size: 35px; margin-right: 15px; color: rgb(0,63,91); position: absolute; left: 0; top: 0; line-height: 35px;}
.servicebox_2 h1, .servicebox_2 h2, .servicebox_2 h3, .servicebox_2 h4, .servicebox_2 h5, .servicebox_2 h6 {padding: 0; color: rgb(0,63,91);}
.servicebox_2 a {text-decoration: underline;}
.servicebox_2.iconright{text-align: right!important; padding-left: 0; padding-right: 70px;}
.servicebox_2.iconright:before, .servicebox_2.iconright .ce_image {left: auto; right: 0;}

/* image */
.servicebox_2 .ce_image {position: absolute; left: 0px; top: 0; width: 35px;}
.servicebox_2 .ce_image img {width: 35px!important; height: auto;}

.servicebox_3 {position: relative; padding-left: 60px; text-align: left!important;}
.servicebox_3[class^="icon-"]:before,
.servicebox_3[class*="icon-"]:before {font-size: 20px; margin-right: 15px; position: absolute; left: 0; top: 0; line-height: 20px; background: #555; border-radius: 99px; padding: 10px; color: #fff;}
.servicebox_3 h1, .servicebox_3 h2, .servicebox_3 h3, .servicebox_3 h4, .servicebox_3 h5, .servicebox_3 h6 {padding: 0;}
.servicebox_3 a {text-decoration: underline;}
.servicebox_3.iconright {text-align: right!important; padding-left: 0; padding-right: 70px;}
.servicebox_3.iconright:before, .servicebox_3.iconright .ce_image {left: auto; right: 0;}

/* image */
.servicebox_3 .ce_image {position: absolute; left: 0px; top: 0; width: 35px;}
.servicebox_3 .ce_image img {width: 35px!important; height: auto; border-radius: 100%;}

.servicebox_4 {text-align: center; padding: 15px; transition: all linear 0.25s; -ms-transition: all linear 0.25s; -moz-transition: all linear 0.25s; -webkit-transition: all linear 0.25s; -o-transition: all linear 0.25s;}
.servicebox_4[class^="icon-"]:before, .servicebox_4[class*="icon-"]:before {padding: 10%; font-size: 32px; margin: 0!important; color: #7F7F7F; border-radius: 100%; text-align: center; }
.servicebox_4:before {border: 3px solid #fff; transition: all linear 0.25s; -ms-transition: all linear 0.25s; -moz-transition: all linear 0.25s; -webkit-transition: all linear 0.25s; -o-transition: all linear 0.25s; background: #F9F9F9; border-radius: 100%; padding: 15px;}
.servicebox_4 h4 {margin-top: 15px;}
.servicebox_4 p {font-family: Arial, Helvetica, sans-serif;}
.servicebox_4 p a {margin: 0; background: rgb(0,63,91);}
.servicebox_4:hover:before {border: 3px solid rgb(0,63,91);}

/* image */
.servicebox_4 .image_container img {border-radius: 100%; width: auto!important; display: inline-block;}
.servicebox_4 .image_container {text-align: center;}

.servicebox_5 {text-align: center; padding: 15px; transition: all linear 0.25s; -ms-transition: all linear 0.25s; -moz-transition: all linear 0.25s; -webkit-transition: all linear 0.25s; -o-transition: all linear 0.25s;}
.servicebox_5:hover {background: #F9F9F9;}
.servicebox_5 .image_container {border-radius: 500%; border: 3px solid #f8f8f8; transition: all linear 0.25s; -ms-transition: all linear 0.25s; -moz-transition: all linear 0.25s; -webkit-transition: all linear 0.25s; -o-transition: all linear 0.25s;}
.servicebox_5 img {border-radius: 500%;}
.servicebox_5 h3 {padding: 0; margin-bottom: 10px;}
.servicebox_5 h5 {margin-bottom: 10px; padding: 0;}
.servicebox_5 p {font-family: Arial, Helvetica, sans-serif;}
.servicebox_5 p a {margin: 0;}
.servicebox_5 p a {background: rgb(0,63,91);}
.servicebox_5:hover .image_container {border: 3px solid rgb(0,63,91);}

.servicebox_6 {text-align: center; padding: 15px; margin-bottom: 15px; transition: all linear 0.25s; -ms-transition: all linear 0.25s; -moz-transition: all linear 0.25s; -webkit-transition: all linear 0.25s; -o-transition: all linear 0.25s;}
.servicebox_6:hover {background: #F9F9F9;}
.servicebox_6 img {border: 3px solid #fff; transition: all linear 0.25s; -ms-transition: all linear 0.25s; -moz-transition: all linear 0.25s; -webkit-transition: all linear 0.25s; -o-transition: all linear 0.25s;}
.servicebox_6 h3 {padding: 0; margin-bottom: 10px;}
.servicebox_6 h5 {margin-bottom: 10px;	padding: 0;}
.servicebox_6 p {font-family: Arial, Helvetica, sans-serif;}
.servicebox_6 p a {margin: 0; background: rgb(0,63,91);}
.servicebox_6:hover img {border: 3px solid rgb(0,63,91);}

.servicebox_7 {border-top: 5px solid #F8F8F8; padding-top: 10px; text-align: left!important;}
.servicebox_7:before {display: none!important;}
.servicebox_7 a:before {font-family: "icons"; content: "\e8c6"; display: inline-block; position: relative; margin-right: 5px;}
.servicebox_7:hover {border-color: rgb(0,63,91);}
.servicebox_7 .ce_image {display: none;}

.servicebox_8 {padding: 25px; text-align: center; position: relative; color: #fff;}
.servicebox_8[class^="icon-"]:before,
.servicebox_8[class*="icon-"]:before{padding: 10%; font-size: 65px; margin: 0!important; color: #fff;}
.servicebox_8 h1, .servicebox_8 h2, .servicebox_8 h3, .servicebox_8 h4, .servicebox_8 h5, .servicebox_8 h6 {margin-bottom: 10px; padding: 0;}
.servicebox_8 h1, .servicebox_8 h2, .servicebox_8 h3, .servicebox_8 h4, .servicebox_8 h5, .servicebox_8 h6, .servicebox_8 h1 a, .servicebox_8 h2 a, .servicebox_8 h3 a, .servicebox_8 h4 a, .servicebox_8 h5 a, .servicebox_8 h6 a {color: #fff;}
.servicebox_8 a {display: inline-block; padding: 5px 10px;}
.servicebox_8 a {background: #fff;}

/*     --colorbox
------------------------------------------------- */
.colorbox {background: #C43434; position: relative;}
.colorbox i {display: block; text-align: center; background: rgba(255, 255, 255, 0.3);}
.colorbox i:before {font-size: 65px; margin: 0!important; color: #fff; padding: 40px 0;}
.colorbox h1, .servicebox h2, .servicebox h3, .servicebox h4, .servicebox h5, .servicebox h6 {margin-bottom: 10px; padding: 0;}
.colorbox .colorbox_content a {border-top: 1px solid #fff;display: inline-block; color: #fff;padding-top: 5px;}
.colorbox .colorbox_content a:after {font-family: "icons"; content: "\ebc9"; display: inline-block; position: relative; margin-left: 5px;}
.colorbox .colorbox_content {padding: 20px; color: #fff;}
.colorbox .colorbox_content h3 {color: #fff;}
.colorbox:hover {opacity: 0.7; -webkit-transition: All 0.6s ease; -moz-transition: All 0.6s ease; -o-transition: All 0.6s ease; -ms-transition: All 0.6s ease; transition: All 0.6s ease;}
.colorbox {-webkit-transition: All 0.6s ease; -moz-transition: All 0.6s ease; -o-transition: All 0.6s ease; -ms-transition: All 0.6s ease; transition: All 0.6s ease;}

/*     --ce_adressblock
------------------------------------------------- */
.ce_adressblock a {display: block; color: inherit;}
.ce_adressblock .adressblock_adresse {padding-left: 30px; position: relative;}
.ce_adressblock .adressblock_adresse:before {font-family: "icons"; content: "\e93d"; text-indent: 0; display: inline-block; position: absolute; top: 0px; left: 0; margin-right: 5px;}
.ce_adressblock .adressblock_tel {padding-left: 30px; position: relative;}
.ce_adressblock .adressblock_tel:before {font-family: "icons"; content: "\e8be"; text-indent: 0; display: inline-block; position: absolute; top: 0px; left: 0; margin-right: 5px;}
.ce_adressblock .adressblock_fax {padding-left: 30px; position: relative;}
.ce_adressblock .adressblock_fax:before {font-family: "icons"; content: "\e716"; text-indent: 0; display: inline-block; position: absolute; top: 0px; left: 0; margin-right: 5px;}
.ce_adressblock .adressblock_email {padding-left: 30px; position: relative;}
.ce_adressblock .adressblock_email:before {font-family: "icons"; content: "\e84c"; text-indent: 0; display: inline-block; position: absolute; top: 0px; left: 0; margin-right: 5px;}
.ce_adressblock .adressblock_webadresse {padding-left: 30px; position: relative;}
.ce_adressblock .adressblock_webadresse:before {font-family: "icons"; content: "\e776"; text-indent: 0; display: inline-block; position: absolute; top: 0px; left: 0; margin-right: 5px;}

/*     --newslist
------------------------------------------------- */
.more a {color: #fff; background-color: rgb(0, 63, 91);  font-weight: normal;padding: 0px 6px; text-align: center; display: inline-block; margin-bottom: 18px;cursor: pointer;} 
.more a:hover {color: #fff; text-decoration: none; opacity:0.9;} 

/*     --portfolioteaser version 1
------------------------------------------------- */
.ce_portfolio-teaser {overflow: visible; position: relative; padding-top: 35px;}
.portfolioteaser li {-webkit-perspective: 1700px; -moz-perspective: 1700px;	perspective: 1700px; -webkit-perspective-origin: 0 50%; -moz-perspective-origin: 0 50%;	perspective-origin: 0 50%; padding: 10px 0;}
.portfolioteaser .bx_inside {-webkit-transform-style: preserve-3d; -moz-transform-style: preserve-3d; transform-style: preserve-3d;}
.portfolioteaser .bx_inside > div {overflow: hidden;}
.portfolioteaser .bx_inside img {-webkit-transition: -webkit-transform 0.3s; -moz-transition: -moz-transform 0.3s; transition: transform 0.3s;}
.portfolioteaser .bx_inside:hover img {-webkit-transform: translateX(25%); -moz-transform: translateX(25%); -ms-transform: translateX(25%);	transform: translateX(25%);}
.portfolioteaser .bx_caption {height: 100%;	width: 100%; opacity: 0; -webkit-backface-visibility: hidden; -moz-backface-visibility: hidden; backface-visibility: hidden;	-webkit-transform-origin: 0 0; -moz-transform-origin: 0 0; transform-origin: 0 0; -webkit-transform: rotateY(-90deg); -moz-transform: rotateY(-90deg); transform: rotateY(-90deg); -webkit-transition: -webkit-transform 0.3s, opacity 0.1s 0.3s; -moz-transition: -moz-transform 0.3s, opacity 0.1s 0.3s; transition: transform 0.3s, opacity 0.1s 0.3s; background: rgb(0,63,91); position: absolute; left: 0;	top: 0;	padding: 20px;}
.portfolioteaser .bx_inside:hover .bx_caption {opacity: 1; -webkit-transform: rotateY(0deg); -moz-transform: rotateY(0deg); transform: rotateY(0deg); -webkit-transition: -webkit-transform 0.3s, opacity 0.1s; -moz-transition: -moz-transform 0.3s, opacity 0.1s; transition: transform 0.3s, opacity 0.1s;}
.portfolioteaser .bx_caption .morelink {position: absolute; bottom: 20px; right: 20px;}
.portfolioteaser .bx_caption .morelink a {background: #fff; color: rgb(0,63,91); padding: 6px 15px; display: inline-block; font-size: 11px; border-radius: 1px; white-space: nowrap; text-transform: uppercase;}
.portfolioteaser .title {color: #fff; font-size: 22px; font-family: "Open Sans Condensed",sans-serif; font-weight: 300;}
.portfolioteaser .title:after {content: ''; width: 45px; height: 1px; background: #fff; display: block; margin-top: 10px;}
.portfolioteaser, .portfolioteaser a {color: rgba(255, 255, 255, 0.7);}
.portfolioteaser .subline {margin-top: 5px;}
.portfolioteaser .link_to_all {position: absolute; right: 60px; top: 0px;}
.portfolioteaser .link_to_all a {color: #717171;}
.portfolioteaser .link_to_all a:hover {color: #333;}
.portfolioteaser .link_to_all a:before {font-family: "icons"; content: "\ec8d"; text-indent: 0; display: inline-block; position: relative; top: 0px; left: 0; margin-right: 15px;}
.portfolioteaser .bx-wrapper .bx-controls-direction a {top: 0;}

/*     --portfolioteaser version 2
------------------------------------------------- */
.portfolioteaser.version_2 .bx_inside {overflow: hidden;}
.portfolioteaser.version_2 .bx_inside img {-webkit-transition: -webkit-transform 0.4s; -moz-transition: -moz-transform 0.4s; transition: transform 0.4s;}
.portfolioteaser.version_2 .bx_inside:hover img {-webkit-transform: translateY(-50px); -moz-transform: translateY(-50px); -ms-transform: translateY(-50px); transform: translateY(-50px);}
.portfolioteaser.version_2 .bx_caption {height: 100px; width: 100%; top: auto; bottom: 0; opacity: 0; -webkit-transform: translateY(100%); -moz-transform: translateY(100%); -ms-transform: translateY(100%); transform: translateY(100%); -webkit-backface-visibility: hidden; -moz-backface-visibility: hidden; backface-visibility: hidden; -webkit-transition: -webkit-transform 0.4s, opacity 0.1s 0.3s; -moz-transition: -moz-transform 0.4s, opacity 0.1s 0.3s; transition: transform 0.4s, opacity 0.1s 0.3s;}
.portfolioteaser.version_2 .bx_inside:hover .bxcaption {opacity: 1; -webkit-transform: translateY(0px);	-moz-transform: translateY(0px); -ms-transform: translateY(0px); transform: translateY(0px); -webkit-transition: -webkit-transform 0.4s, opacity 0.1s; -moz-transition: -moz-transform 0.4s, opacity 0.1s; transition: transform 0.4s, opacity 0.1s;}
.portfolioteaser.version_2 .bxcaption a {position: absolute; bottom: 20px; right: 20px;}
.portfolioteaser.version_2 .morelink {display: none;}
.portfolioteaser.version_2 a:hover {text-decoration: underline;}

/*     --portfolioliste
-------------------------------------------------*/
.isotope {margin: 0 -1%;}
.isotope .block.one_fourth {width: 24.9%;}
.isotope .block.one_third {width: 33.2%;}
.isotope.nopaddings .portfolioliste {padding-left: 0!important; padding-right: 0!important;}
.isotope.nopaddings .portfolioliste_inside {margin: 0!important;}
.isotope.nopaddings .portfolioliste .frontside .image_container {margin: 0!important;}
.isotope, .isotope .mod_newslist {overflow: visible!important;}
.portfolioliste_inside {position: relative;  margin: 10px 0;}
.portfolioliste {overflow: visible!important; list-style: none; -webkit-perspective: 1000px; -moz-perspective: 1000px; -o-perspective: 1000px; perspective: 21000px;}
.portfolioliste .frontside .image_container {margin-bottom: 0; margin-right: 1px;}
.portfolioliste .frontside .title {font-size: 17px; display: table-cell; vertical-align: middle; font-weight: 500;}
.portfolioliste .frontside .subline {color: #ababab; display: table-cell; vertical-align: middle; text-align: right;}
.portfolioliste .frontside .caption {width:100%; padding:19px 0 14px; background: #F6F6F6; display: table; vertical-align: middle; padding: 15px;}
.portfolioliste .frontside .image_container img {width: 100%; height: auto;}
.portfolioliste .backside {display: block; -webkit-transform: rotateY(180deg); -webkit-box-sizing: border-box; -moz-transform: rotateY(180deg); -moz-box-sizing: border-box; -o-transform: rotateY(180deg); -o-box-sizing: border-box; transform: rotateY(180deg); padding: 20px 20px 75px 20px; background-color: rgb(0,63,91); position: absolute; height: 100%; width: 100%; top: 0; left: 0; -webkit-backface-visibility: hidden; -moz-backface-visibility: hidden; -o-backface-visibility: hidden; backface-visibility: hidden; color: #fff;}
.portfolioliste .backside a {color: #fff;}
.portfolioliste .backside .back_title {font-size: 20px; font-weight: 500; margin-bottom: 5px;}
@media (max-width:767px){
.portfolioliste .backside .back_title {font-size: 15px;}
}

.portfolioliste .backside .back_subline {margin-bottom: 15px;}
.portfolioliste .teaser {line-height: 18px!important; display: none;}
.portfolioliste .backside .port_button a {font-weight: bold; color: #fff; border: 2px solid #fff; padding: 6px 12px;position: absolute; right: 20px; bottom: 20px; z-index: 10000; white-space: nowrap; font-size: 12px; text-transform: uppercase;}
.portfolioliste .backside .port_button a {-webkit-transition: All 0.3s ease; -moz-transition: All 0.3s ease; -o-transition: All 0.3s ease; -ms-transition: All 0.3s ease; transition: All 0.3s ease;}
.portfolioliste .backside .port_button a:hover {background: rgba(255,255,255,0.4); -webkit-transition: All 0.3s ease; -moz-transition: All 0.3s ease; -o-transition: All 0.3s ease; -ms-transition: All 0.3s ease; transition: All 0.3s ease;}
.portfolioliste .frontside, .portfolioliste .backside {-webkit-transform-style: preserve-3d; -webkit-transition: all 0.4s linear; -moz-transition: all 0.4s linear; -o-transform-style: preserve-3d; -o-transition: all 0.4s linear; transition: all 0.4s linear; -webkit-backface-visibility: hidden; -moz-backface-visibility: hidden; -o-backface-visibility: hidden; backface-visibility: hidden;}

/* flip */

.portfolioliste.flip:hover .frontside{-webkit-transform: rotateY(180deg); -moz-transform: rotateY(180deg); -o-transform: rotateY(180deg); transform: rotateY(180deg);}


/* overlay */

.portfolioliste.port_overlay:hover .backside {display: block; opacity: 0.9;}
.portfolioliste.port_overlay img {-webkit-transition: All 0.3s ease; -moz-transition: All 0.3s ease; -o-transition: All 0.3s ease; -ms-transition: All 0.3s ease; transition: All 0.3s ease;}
.portfolioliste.port_overlay:hover img {-webkit-transform: scale(1.25); -moz-transform: scale(1.25); -o-transform: scale(1.25); transform: scale(1.25); -webkit-transition: All 0.3s ease; -moz-transition: All 0.3s ease; -o-transition: All 0.3s ease; -ms-transition: All 0.3s ease; transition: All 0.3s ease;}
.portfolioliste.port_overlay:hover .backside .back_title {-webkit-animation: fadeInDown 500ms ease; -moz-animation: fadeInDown 500ms ease; -ms-animation: fadeInDown 500ms ease; animation: fadeInDown 500ms ease;}
.portfolioliste.port_overlay:hover .backside .back_subline {-webkit-animation: fadeInUp 500ms ease; -moz-animation: fadeInUp 500ms ease; -ms-animation: fadeInUp 500ms ease; animation: fadeInUp 500ms ease;}
.portfolioliste.port_overlay:hover .frontside {opacity: 1;}
.portfolioliste.port_overlay .backside {opacity: 0; display: block; -webkit-transform: rotateY(0deg); -moz-transform: rotateY(0deg); -o-transform: rotateY(0deg); transform: rotateY(0deg);}


/* full width */
.ce_portfolioliste-full-width .title {font-size: 22px; margin-bottom: 10px; border-top: 1px solid #ddd; padding-top: 10px;}
.ce_portfolioliste-full-width .teaser {margin: 15px 0 35px 0; display: block;}
.ce_portfolioliste-full-width .portfolioliste {overflow: hidden; margin-bottom: 45px;}
/* hide teaser */
body[class*="sidebar_"] .portfolioliste.one_third .teaser {display: none!important;}

/* fix the width / 3col with sidebar */
.sidebar_right .portfolioliste.one_third, .sidebar_left .portfolioliste.one_third {width: 33%;}

/*     --portfoliodetails
-------------------------------------------------*/
.ce_portfolio-details span {font-weight: bold; display: block;}
.ce_portfolio-details .kunde, .ce_portfolio-details .aufgabe, .ce_portfolio-details .verantwortlich {border-bottom: 1px solid #E0E3E6; padding-bottom: 10px; margin-bottom: 10px;}
.ce_portfolio-details .beschreibung {margin-top: 35px; margin-bottom: 25px;}
.ce_portfolio-details li {margin-bottom: 5px;}
.ce_portfolio-details .link {text-align: right; margin-top: 35px; border-top: 2px solid #E0E3E6; padding-top: 15px;}

/*     --portfoliofilter
------------------------------------------------- */
.filter {overflow: hidden; margin-left: 0; width:100%; position:relative; display: inline-block; text-align: left; margin-bottom: 25px;}
.filter li {display: inline-block; cursor: pointer; margin-right: 3px;}
.filter li a {display: inline-block; white-space: nowrap; padding: 4px 21px; color: #949494; border: 1px solid #efefef;}
.filter li a.selected {border: 1px solid #000; color: #000;}
.filter li a:hover {border: 1px solid #000;}
.filter .all:before {font-family: "icons"; content: "\e708"; line-height: 11px; text-indent: 0; display: inline-block; position: relative; top: 0px; left: 0; margin-right: 5px;}
.filter.center {text-align: center;}
.filter.right {text-align: right;}

/*     --jquery tools - tabs
------------------------------------------------- */
.tabwrapper {overflow: hidden; margin-bottom: 35px;}

.tabs.horizontal, .panes.horizontal {float: none; overflow: hidden;}
.tabs.horizontal {margin-bottom: -1px;}
.panes.horizontal {background: #FCFCFC; padding: 20px; border: 1px solid #E1E1E1;}
.tabs.horizontal ul {float: left; list-style: none outside none; margin: 0; padding: 0; width: 100%;}
.tabs.horizontal ul li {float: left; padding: 0; list-style: none;}
.tabs.horizontal ul li a {background: #fff; float: left; line-height: 30px; margin: 0 3px 0 0; overflow: hidden; padding: 14px 30px 14px; position: relative; border: 1px solid #E1E1E1; color: #919191;}
.tabs.horizontal ul li a:hover {color: #666;}
.tabs.horizontal ul li a.current {background: #FCFCFC; border-bottom: 1px solid #FCFCFC; font-weight: bold;} 

.tabs.horizontal_clean ul {margin-bottom: 35px; overflow: hidden;}
.tabs.horizontal_clean li {float: left;}
.tabs.horizontal_clean li a {font-size: 16px; padding: 20px 0; text-align: center; border-bottom: 1px solid #ccc; border-left: 1px solid #ccc; display: block;}
.tabs.horizontal_clean li:first-child a {border-left: 0;}
.tabs.horizontal_clean ul li a:hover, .tabs.horizontal_clean ul li a.current {background: rgb(0,63,91); color: #fff; font-weight: inherit;}
.tabs.horizontal_clean li.tab_two {width: 50%;}
.tabs.horizontal_clean li.tab_three {width: 33.33%;}
.tabs.horizontal_clean li.tab_fourth {width: 25%;}
.tabs.horizontal_clean li.tab_fifth {width: 20%;}
.tabs.horizontal_clean li.tab_sixth {width: 16.66%;}
.tabs.horizontal_clean li.tab_more_sixth a {padding-left: 20px; padding-right: 20px;}

.tabs.vertikal {width: 30%;}
.tabs.vertikal, .panes.vertikal {float: left;}
.panes.vertikal {padding-left: 20px; width: 70%;}
.tabs.vertikal ul li a, .tabs.vertical ul li {width:100%;}
.tabs.vertikal ul li a {display: block; padding: 12px 16px;}
.tabs.vertikal ul li a:hover, .tabs.vertikal ul li a.current {font-weight: bold;}
.panes.vertikal {box-shadow: -8px 0px 20px -10px rgba(0, 0, 0, 0.2);}
.tabs.vertikal ul li a {border-bottom: 1px solid #e1e1e1;}

.tabs.vertikal_2 {width: 30%; float: right}
.panes.vertikal_2 {float: left;}
.panes.vertikal_2 {padding-right: 20px; width: 70%;}
.tabs.vertikal_2 ul li a, .tabs.vertical ul li {width:100%;}
.tabs.vertikal_2 ul li a {display: block; padding: 12px 16px;}
.panes.vertikal_2 {box-shadow: 5px 0px 8px -4px rgba(0, 0, 0, 0.2);}
.tabs.vertikal_2 ul li a {border-bottom: 1px solid #e1e1e1;}

.tabs ul li a:hover, .tabs.vertikal ul li a.current, .tabs.vertikal_2 ul li a.current {font-weight: bold; position: relative; z-index: 100; background: #fff;}

/*     --jquery tools - tooltip
------------------------------------------------- */
.tooltip {display:none; background: #666666; padding: 5px; z-index: 100; margin-bottom: 15px; position: relative; color: #fff; max-width: 100px;}
.tooltip:after {background: #666666; border: 1px solid; border-color: #666666 transparent transparent #666666; content: ''; display: block; width: 8px; height: 8px; position: absolute; bottom: -4px; left: 50%; margin-left: -4px; -webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg);}

/*     --charts
------------------------------------------------- */
.customelement_layout_charts {text-align: center; position: relative;}
.customelement_layout_charts .chart {position: relative; height: 160px; margin-bottom: 15px;}
.customelement_layout_charts span.prozent {font-size: 2em; position: absolute; top: 50%; left: 0; text-align: center; display: block; width: 100%; margin-top: -1em; line-height: 2em;}
.customelement_layout_charts .title {font-weight: bold; font-size: 1.6em;}
.customelement_layout_charts .subline {font-size: 0.9em; font-style: italic;}
.customelement_layout_charts .text {color: rgba(0,0,0,0.5); line-height: 21px;}

/*     --parallax background
------------------------------------------------- */
.parallax-bg {background-attachment:fixed; background-position: 50% 0; background-size: cover; position: relative; overflow: hidden; min-height: 50px;}
.parallax-bg-inside {max-width: 1150px; margin: 0 auto;}
.parallax-bg.invert, .parallax-bg.invert .filter li a, .parallax-bg.invert h1, .parallax-bg.invert h2, .parallax-bg.invert h3, .parallax-bg.invert h4, .parallax-bg.invert h5, .parallax-bg.invert h6 {color: #fff!important;}
.parallax-bg.nopadding-top .parallax-bg-inside {padding-top: 0;}
.parallax-bg.nopadding-bottom .parallax-bg-inside {padding-bottom: 0;}
.parallax-bg .image_container {margin-bottom: 0.5em;}
.parallax-bg .content_boxed {max-width: 1200px;}
@media (max-width:1180px){

.parallax-bg-inside{
	margin:0px 20px;
	}

}

/*     --parallax bildelement
------------------------------------------------- */
.parallax_image {position: absolute;}
.parallax_image .image_container img {max-width: none;}
.parallax_image.alignbottom {top: auto!important; bottom: 0; width: 100%;}
.parallax_image.alignbottom img {width: 100%;}
.parallax_image.aligntop {top: 0!important; width: 100%;}
.parallax_image.aligntop img {width: 100%;}

/*     --backgroundvideo
------------------------------------------------- */
.backgroundvideo {background-size:cover;}
.backgroundvideo_content_wrapper {position: absolute; left: 0; top: 0; width: 100%; height: 100%;}
.backgroundvideo_content_wrapper.youtube {position: relative; display: table;}
.backgroundvideo {position: relative; line-height: 0;}
.backgroundvideo p {line-height: 1.6em; font-size: 1.3em;}
.backgroundvideo.mittig {text-align: center;}
.backgroundvideo.rechts {text-align: right;}
.backgroundvideo.hell, .backgroundvideo.hell h1, .backgroundvideo.hell h2, .backgroundvideo.hell h3, .backgroundvideo.hell h4, .backgroundvideo.hell h5, .backgroundvideo.hell h6 {color: #fff!important;}
.backgroundvideo video {width: 100%;}
.backgroundvideo.overlay .backgroundvideo_content_wrapper {background: rgb(0,63,91); opacity: 0.8;}
.backgroundvideo .button {background: #76BFC0; margin-top: 25px;}
.backgroundvideo .mobile_poster {display: none;}
.backgroundvideo .content_boxed {display: table-cell; vertical-align: middle;}
.backgroundvideo_maxwidth {max-width: 1200px; margin-left: auto; margin-right: auto;}
.backgroundvideo .backgroundvideo_content_wrapper_inside {display: table; height: 100%; width: 100%;}
.backgroundvideo .youtube .backgroundvideo_content_wrapper_inside {display: table-cell; line-height: 24px;}
.backgroundvideo .backgroundvideo_content_wrapper_inner {display: table-cell; vertical-align: middle;}

/* backgroundvideo in slider */
#slider .backgroundvideo_content_inner {padding: 0;}

/* vidscroller */
#vidscroller {position: relative; width: 32px; height: 46px;  border: 2px solid #fff; border-radius: 15px; position: absolute; bottom: 30px; margin: 0 auto; left: 0; right: 0; z-index: 1000;}
#vidscroller .wheel {display: block; width: 6px; height: 6px; background-color: #fff; border-radius: 50%; margin-left: auto;  margin-right: auto; margin-top: 6px; left: 0; right: 0; -webkit-animation: mousewheel 1.7s infinite ease; animation: mousewheel 1.7s infinite ease;}
@keyframes mousewheel{0%{margin-top:6px;opacity:0}30%{opacity:1}100%{margin-top:18px;opacity:0}}
@-webkit-keyframes mousewheel{0%{margin-top:6px;opacity:0}30%{opacity:1}100%{margin-top:18px;opacity:0}}

/*     --mod_subscribe
------------------------------------------------- */
.mod_subscribe table td,
.mod_subscribe table {border: 0;}
.mod_subscribe input {width: 48%; float: left;}
.mod_subscribe label {display: none;}
.mod_subscribe input.submit:hover {opacity: 0.9;}

/*     --mod_subscribe in sidebar
------------------------------------------------- */
#left .mod_subscribe, #right .mod_subscribe {padding: 5px 0; border-top: 2px solid #E3E3E3; margin-top: 25px;}
#left .mod_subscribe input, #right .mod_subscribe input {width: 100%!important;}
#left .mod_subscribe input.submit, #right .mod_subscribe input.submit {margin: 10px 0 0 0!important;}
#left .mod_subscribe h4, #right .mod_subscribe h4 {font-size: 17px; margin-bottom: 12px; padding: 0; font-weight: normal;}
#left .mod_subscribe label, #right .mod_subscribe label {margin-bottom: 10px;}

/*     --mod_subscribe big
------------------------------------------------- */
.mod_subscribe.big {margin: 0 auto; width: 600px;}
.mod_subscribe.big input {width: 300px; padding: 20px; border: 0; height: 58px;}
.mod_subscribe.big input.text {padding-left: 65px;}
.mod_subscribe.big .formbody {position: relative; overflow: hidden;}
.mod_subscribe.big .formbody:after {font-family: "icons"; content: "\eaf6"; text-indent: 0; display: inline-block; position: absolute; top: 50%; left: 20px; font-size: 24px; margin-top: -12px;}

/*     --mod_subscribe page layout blank
------------------------------------------------- */
.blank .mod_subscribe {background: none; text-align: center; background: #fafafa; padding: 3%;}
.blank .mod_subscribe input {display: block; float: none; width: 45%; margin: 0 auto 10px auto;}
.blank .mod_subscribe h4 {display: none;}

/*     --mod_calendar
------------------------------------------------- */
.mod_calendar table {border-bottom: 1px solid #B9BCBE;}
.mod_calendar td {padding: 1.5%}
.mod_calendar td.col_first {border-left: 1px solid #B9BCBE;}
.mod_calendar th.label {border-bottom: 1px solid #B9BCBE; padding: 10px 0;}
.mod_calendar th.head {padding: 0;}
.mod_calendar th.previous a, .mod_calendar th.next a {padding: 3px; border: 1px solid #b9bcbe; background: #ededed; display: inline-block; white-space: nowrap;}
.mod_calendar th.previous a:hover, .mod_calendar th.next a:hover {border-color: #84898d !important;}
.mod_calendar th.previous a:after, .mod_calendar th.previous a:before, .mod_calendar th.next a:after, .mod_calendar th.next a:before {display: none;}
.mod_calendar th.current {text-align: center;}
.mod_calendar th.next {text-align: right;}
.mod_calendar th.previous {text-align: left;}
.mod_calendar th.label {text-align: center;}
.mod_calendar td {width: 14.28%; border-right: 1px solid #b9bcbe; background: #eaeaea; padding-left: 5px;}	
.mod_calendar td.empty, .mod_calendar td:hover {background: #fff;}
.mod_calendar td.today { color: white !important; background: #969696; -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6) inset;	-moz-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6) inset; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6) inset;}
.mod_calendar td.today a {color: white !important;}
.mod_calendar th.current:before {font-family: "icons"; content: "\1f4c5"; text-indent: 0; display: inline-block; position: relative; top: -1px;	left: 0; margin-right: 5px;}

/*     --mod_eventreader
------------------------------------------------- */
.mod_eventreader .info:before {font-family: "icons"; content: "\1f4c5"; text-indent: 0; display: inline-block; position: relative; top: -1px; left: 0; margin-right: 5px;}

/*     --mod_eventlist
------------------------------------------------- */
.mod_eventlist .event {margin-bottom: 25px;}
.mod_eventlist h2 {margin-bottom: 5px;}
.mod_eventlist p.time {border-top: 1px solid #ededed; border-bottom: 1px solid #ededed; padding: 3px 0;}
.mod_eventlist p.time:before {font-family: "icons"; content: "\e91a"; text-indent: 0; display: inline-block; position: relative; top: 0px; left: 0; margin-right: 5px;}

/*     --mod_sitemap
------------------------------------------------- */
.mod_sitemap ul ul {margin: 8px 0 20px 15px;}
.mod_sitemap ul li {border-bottom: 1px dashed #ddd; padding-bottom: 15px; margin-bottom: 15px; font-weight: normal;}
.mod_sitemap ul li ul li {border: 0; padding-bottom: 0px; margin-bottom: 3px;}
.mod_sitemap li:before {font-family: "icons"; content: '\25b8'; margin-right: 5px;}
.mod_sitemap li.submenu {font-weight: bold;}
.mod_sitemap li.submenu:before {font-family: "icons"; content: '\e824'; margin-right: 5px;}
.mod_sitemap li a:before {content: '';}

/*     --mod_faqlist
------------------------------------------------- */
.mod_faqpage {counter-reset: mod_faqpage;}
.mod_faqpage h2 {margin-bottom: 20px;}
.mod_faqpage section h3::before {counter-increment: mod_faqpage; content: counter(mod_faqpage, decimal); display: inline-block; width: 2em; margin-right: 0.5em; padding: 0.1em; color: white; text-align: center; background: rgb(0,63,91); border-radius: 3px; line-height: 2em;}
.mod_faqpage section {margin-bottom: 35px;}
.mod_faqpage .info {font-size: 11px;}
.mod_faqpage .info:before {font-family: "icons"; content: "\e82f"; text-indent: 0; display: inline-block; position: relative; top: 0px; left: 0; margin-right: 5px;}
.mod_faqpage .toplink {border-bottom: 1px solid #ddd;}
.mod_faqpage .toplink:before {font-family: "icons"; content: "\e911"; text-indent: 0; display: inline-block; position: relative; top: 0px; left: 0; margin-right: 5px;}

/*     --mod_registration
------------------------------------------------- */
.mod_registration {padding: 30px; border: 1px solid #ddd; background: #f9f9f9;}
.mod_registration label {width: 40%; float: left;}
.mod_registration input {width: 60%; float: left;}
.mod_registration .submit_container {width: 100%; margin-top: 0px;}
.mod_registration .submit_container input {width: 60%; float: right;}
.mod_registration .captcha_text {float: left; display: block; margin-left: 40%; color: red; font-size: 14px; margin-top: 5px; margin-bottom: 15px;}
.mod_registration p.error {margin-left: 40%; clear: both;}

/*     --mod_search
------------------------------------------------- */
.mod_search input {width: 45%; float: left;}
.mod_search input[type="search"] {-webkit-appearance: none!important; padding-right: 0!important; border-radius: 0!important;}
.mod_search .even, .mod_search .odd {padding-bottom: 15px; border-bottom: 1px solid #ddd; margin-bottom: 15px;}
.mod_search .relevance {float: right; font-size: 12px;}
.mod_search .submit:before {font-size: 16px; line-height: 1em; font-family: 'icons';  font-style: normal;  font-weight: normal;  speak: none;  display: inline-block;  text-decoration: inherit;  width: 1em; text-align: center; content: '\e92a';}
.mod_search .submit {margin: 0; padding: 5px; display: inline-block; height: 30px; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; opacity: 0.7; cursor: pointer;}
.mod_search .submit:hover {opacity: 1;}
#container .mod_search .submit {height: 39px;}
#container .mod_search form {overflow: hidden;}
#container .mod_search .text,
#container .mod_search .submit {height: 39px;}

/*     --mod_nl_reader
------------------------------------------------- */
.mod_nl_reader #container, body.dark, body.dark .mod_nl_reader #container {background: #fff;}
.mod_nl_reader table {border: 0!important;}
.mod_nl_reader table td {padding: 0; border: 0!important;}

/*     --mod_nl_list
------------------------------------------------- */
.mod_nl_list li {border-bottom: 1px solid #ededed; padding: 15px 0;}
.mod_nl_list li a {margin-left: 40px;}

/*     --404 page
------------------------------------------------- */
#page-404 h1 {font-size: 120px; text-align: center; text-shadow: 0 -1px 1px #666666, 0 1px 1px #FFFFFF; color: #ccc; border: 0; margin: 0;}
#page-404 p {text-transform: uppercase; font-size: 20px; text-align: center;}
#page-404 p a {text-transform: none; margin: 0;}

/*     --ce_downloads
------------------------------------------------- */
.ce_downloads li {border-bottom: 1px dotted #ccc; padding: 8px;}
.ce_downloads img {margin-right: 10px; vertical-align: middle;}
.ce_downloads li span {font-style: italic; font-size: 10px;}


/* =============================================================================
 * --forms
 * ========================================================================== */

/*     --hide br
------------------------------------------------- */
form br {display: none;}

/*     --input-wrapper
------------------------------------------------- */
.input-wrapper {margin-bottom: 12px; position: relative;}
.input-wrapper * {width: 99.9%; margin-left: 0!important;}
.ce_form .full {width: 99.9%;}

/*     --fieldset+legend
------------------------------------------------- */
fieldset {border: 1px solid #ccc; padding: 0.5em; margin-bottom: 20px;}
legend {display: none;}

/*     --input, select, textarea
------------------------------------------------- */
input, select, textarea {width: 100%; padding: 10px; margin: 0; border: 1px solid #E1E1E1; color: #333; background: #FCFCFC; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; line-height: 18px; border-radius: 0;}
input[type="search"] {-webkit-appearance: none; border-radius: 0!important;}
input[type="submit"], input.submit {color: #fff; background: rgb(0,63,91);}
select {height: 40px; padding: 8px;}
textarea {height: 200px; min-height: 80px;}

/*     --radio-buttons
------------------------------------------------- */
.radio_container {margin-top: 1px;}
.radio_container legend span {margin-bottom: 5px; display: inline!important;}
.radio_container label {float: none;}
.radio_container input {width: 20px; padding: 0; box-shadow: none; -webkit-box-shadow: none; border-radius: 100%;}
.radio_container legend {display: block; overflow: hidden;}
.radio_container span {display: block;}
.radio_container.horizontal span {display: inline-block; margin-right: 15px;}

/*     --checkboxes
------------------------------------------------- */
.checkbox_container {margin-top: 1px;}
.checkbox_container legend span {margin-bottom: 5px; display: inline!important;}
.checkbox_container label {float: none;}
.checkbox_container input {width: 20px!important; padding: 0; box-shadow: none; -webkit-box-shadow: none;}
.checkbox_container legend {display: block; overflow: hidden;}
.checkbox_container span {display: block;}
.checkbox_container.horizontal span {display: inline-block; margin-right: 15px;}

/*     --submit-button
------------------------------------------------- */
.submit_container input {width: auto!important;}
.submit {-webkit-appearance:none; -webkit-box-shadow: none; box-shadow: none; border: 0;}
input[type="submit"], input.submit {padding: 10px 12px; text-align: center; display: inline-block; margin-bottom: 4px; background: rgb(0,63,91); color: #fff; cursor: pointer; }
input[type="submit"], input.submit {-webkit-transition: All 0.3s ease; -moz-transition: All 0.3s ease; -o-transition: All 0.3s ease; -ms-transition: All 0.3s ease; transition: All 0.3s ease;}
input[type="submit"]:hover, input.submit:hover {opacity: 0.9; -webkit-transition: All 0.3s ease; -moz-transition: All 0.3s ease; -o-transition: All 0.3s ease; -ms-transition: All 0.3s ease; transition: All 0.3s ease;}

/*     --errors
------------------------------------------------- */
label.error {color: red;}
input.error {border: 1px solid red;}
p.error {color: red; clear: both;}

/*     --captcha
------------------------------------------------- */
.ce_form .captcha {width: 20%;}
.ce_form .captcha-container label {width: 100%; display: block;}
.ce_form .captcha_text {display: block; margin-top: 10px;}
.ce_form .captcha-container {background: #ecd0d0; padding: 2%; margin-bottom: 15px;}

/*     --footer form
------------------------------------------------- */
#footer h1, #footer h2, #footer h3, #footer h4, #footer h5, #footer h6 {margin-bottom: 30px;}
#footer input, #footer textarea  {font-family: inherit; background: rgba(255, 255, 255, 0.2); -webkit-box-shadow: none; box-shadow: none; border-color: rgba(255, 255, 255, 0.2); color: #ddd;} 
#footer textarea {height: 86px;}
#footer .submit_container {margin-top: 0;}
#footer input.submit {font-weight:normal; text-transform: uppercase; float: right; background: none; text-shadow:none; background: rgba(255,255,255,0.3); color: #ddd; border: 1px solid rgba(255, 255, 255, 0.2);}
#footer input, #footer textarea {-webkit-transition: All 0.8s ease; -moz-transition: All 0.8s ease; -o-transition: All 0.8s ease; transition: All 0.8s ease;}
#footer input:hover, #footer input.submit:hover, #footer textarea:hover {background: rgba(255, 255, 255, 0.3); -webkit-transition: All 0.4s ease; -moz-transition: All 0.4s ease; -o-transition: All 0.4s ease; transition: All 0.4s ease;}
#footer input:focus, #footer textarea:focus {background: rgba(255, 255, 255, 0.6);}
#footer *::-webkit-input-placeholder {color: #ddd; font-size: 12px;}
#footer *:-moz-placeholder {color: #ddd; font-size: 12px;}
#footer *::-moz-placeholder {color: #ddd; font-size: 12px;}    
#footer *:-ms-input-placeholder {color: #ddd; font-size: 12px;}

/*     --jquery tools - datepicker
------------------------------------------------- */
input.date {cursor: pointer; background-position: 95% center; background-repeat: no-repeat; background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAQCAYAAAAmlE46AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo5RjExM0E5RjA3RTMxMUUzQTIzNUVDNDkwQURCQjU2OCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo5RjExM0FBMDA3RTMxMUUzQTIzNUVDNDkwQURCQjU2OCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjlGMTEzQTlEMDdFMzExRTNBMjM1RUM0OTBBREJCNTY4IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjlGMTEzQTlFMDdFMzExRTNBMjM1RUM0OTBBREJCNTY4Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+S8AvwQAAAbdJREFUeNqUUk2rQVEUXfd0kkiShJKUj4GpgX/AgLGpgRH/QPgnRqY+Zoz8Eh9lQEShyDf3Wad3bu/1er3ert05+6617trnnG20221sNhvE43FzNBohkUhgPB4bpmmCYRjGN+y9Gn6/H+KNkWF2Oh2kUil0u12Yn6Ex/pwYOe8fKUwuFgvEYjGs12tMp1MEAgGEQiHlpENjwWAQ4XAYk8kE4nq94na7Yb/fo9VqYbfb4Xw+43Q6qZXJbxojlykJcFMulzGbzWCz2WC323kW5fp6vZBMJhGJROB0OhWXGqkde70eHA6HItPN4/FYrfIbMQb5TOn1epHP5/Gf4JklW2Hq6/8rdPvy+XxCi/v9PlarFVwuFwqFgiIOBgMsl0uUSiVLSI14PB5qwzWbzaJYLKqBYM3MZDK4XC5Wzc7Ilyzodr/fMZ/P1SWl02lV6zgej1ZNR2oERdqRj1+pVDAcDi0HCg6Hg1Xro4mvjsztdquIum40Gqqu1+uq1iaSb0ghJ6fZbMLtdiOXyymQUavVrJb1GdXksH8hBHw+H6rV6o+rJ1GvDHKpkRxctqOH+rf3/CqORqP4EGAAqhts6b9NH8cAAAAASUVORK5CYII=');}
#calroot {z-index:10000; margin-top:-1px; width:198px; padding:2px; background-color:#fff; font-size:11px; border:1px solid #ccc; -moz-border-radius:5px; -webkit-border-radius:5px; -moz-box-shadow:0 0 15px #666; -webkit-box-shadow:0 0 15px #666}
#calhead {padding:2px 0; height:22px}
#caltitle{font-size:14px; color:#515347; float:left; text-align:center; width:155px; line-height:20px; text-shadow:0 1px 0 #ddd}
#calnext,#calprev {display:block; width:20px; height:20px; background:transparent url('data:image/gif;base64,R0lGODlhDgAOAOZHAPPz8/Hx8fz8/Pn5+fLy8m5ubvDw8KKiomlpacLCwtvb2+Li4sPDw7i4uG9vb6ampmhoaGpqamxsbIuLi3p6eo+Pj8DAwMXFxZaWlv///4aGhp6enubm5tjY2L+/v9PT02VlZX19fdXV1crKyqGhoenp6erq6t7e3nd3d8TExMbGxpGRkc3Nzd3d3bm5uYWFhaCgoGtra/39/eDg4LCwsG1tbXBwcMHBwfX19cjIyOPj43t7e6ysrP7+/vv7+/b29vr6+vf39/j4+PT09O/v72dnZ2ZmZv///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH/C1hNUCBEYXRhWE1QPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS4zLWMwMTEgNjYuMTQ1NjYxLCAyMDEyLzAyLzA2LTE0OjU2OjI3ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChNYWNpbnRvc2gpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjlGMTEzQTlCMDdFMzExRTNBMjM1RUM0OTBBREJCNTY4IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjlGMTEzQTlDMDdFMzExRTNBMjM1RUM0OTBBREJCNTY4Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6RUE5QzFFMzYwN0Q4MTFFM0EyMzVFQzQ5MEFEQkI1NjgiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6OUYxMTNBOUEwN0UzMTFFM0EyMzVFQzQ5MEFEQkI1NjgiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4B//79/Pv6+fj39vX08/Lx8O/u7ezr6uno5+bl5OPi4eDf3t3c29rZ2NfW1dTT0tHQz87NzMvKycjHxsXEw8LBwL++vby7urm4t7a1tLOysbCvrq2sq6qpqKempaSjoqGgn56dnJuamZiXlpWUk5KRkI+OjYyLiomIh4aFhIOCgYB/fn18e3p5eHd2dXRzcnFwb25tbGtqaWhnZmVkY2JhYF9eXVxbWllYV1ZVVFNSUVBPTk1MS0pJSEdGRURDQkFAPz49PDs6OTg3NjU0MzIxMC8uLSwrKikoJyYlJCMiISAfHh0cGxoZGBcWFRQTEhEQDw4NDAsKCQgHBgUEAwIBAAAh+QQBAABHACwAAAAADgAOAAAHo4BHgkRDQkBAQQCCi0cEAhw0FSsJAQNEiwQ9DQhGRkVFKCI+l0QCDZ5FBSMeRQ4KQkdDCxKeBSo9FzFGLz8GAy6eNQwZFhGfRTpDPg9GEDc9OcbHLD8+PM0PQTMUqEYfP0IMnkYHPgs7nwgmAARDIagHMi0FIDBAlwMdNuMkGEYaAXAMAnJigoRPDjYACMKISJAeChKkKCFgCKNFAcAJGWKAUSAAOw==') no-repeat scroll center center; float:left; cursor:pointer;}
#calnext {background-image: url('data:image/gif;base64,R0lGODlhDgAOAOZHAPPz8/Hx8fz8/Pn5+fLy8m5ubvDw8KKiomlpacLCwtvb2+Li4sPDw7i4uG9vb6ampmhoaGpqamxsbIuLi3p6eo+Pj8DAwMXFxZaWlv///4aGhp6enubm5tjY2L+/v9PT02VlZX19fdXV1crKyqGhoenp6erq6t7e3nd3d8TExMbGxpGRkc3Nzd3d3bm5uYWFhaCgoGtra/39/eDg4LCwsG1tbXBwcMHBwfX19cjIyOPj43t7e6ysrP7+/vv7+/b29vr6+vf39/j4+PT09O/v72dnZ2ZmZv///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH/C1hNUCBEYXRhWE1QPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS4zLWMwMTEgNjYuMTQ1NjYxLCAyMDEyLzAyLzA2LTE0OjU2OjI3ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChNYWNpbnRvc2gpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkVBOUMxRTM0MDdEODExRTNBMjM1RUM0OTBBREJCNTY4IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkVBOUMxRTM1MDdEODExRTNBMjM1RUM0OTBBREJCNTY4Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6RUE5QzFFMzIwN0Q4MTFFM0EyMzVFQzQ5MEFEQkI1NjgiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6RUE5QzFFMzMwN0Q4MTFFM0EyMzVFQzQ5MEFEQkI1NjgiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4B//79/Pv6+fj39vX08/Lx8O/u7ezr6uno5+bl5OPi4eDf3t3c29rZ2NfW1dTT0tHQz87NzMvKycjHxsXEw8LBwL++vby7urm4t7a1tLOysbCvrq2sq6qpqKempaSjoqGgn56dnJuamZiXlpWUk5KRkI+OjYyLiomIh4aFhIOCgYB/fn18e3p5eHd2dXRzcnFwb25tbGtqaWhnZmVkY2JhYF9eXVxbWllYV1ZVVFNSUVBPTk1MS0pJSEdGRURDQkFAPz49PDs6OTg3NjU0MzIxMC8uLSwrKikoJyYlJCMiISAfHh0cGxoZGBcWFRQTEhEQDw4NDAsKCQgHBgUEAwIBAAAh+QQBAABHACwAAAAADgAOAAAHpoBHgkcGQ0JCPwGDi0MCJSkJCj1BRItBABsORUUSEydAlUc4ARpGGCRGRUY2HQNHREAwIAUtMgebRiFDBAAmCJs7Cz4HqUYMiB+pqhQzQQ8QRjw+PyybmxE5PTfQDz5DOtYRFhkMNaouAwY/L0YxFz0qBaoSC0NHQgqaHiPyqg0ClYj4EIEClxEEDXoQGERkQIAEKyrQ4CBg4aIjAIIAASJkSKgjgQAAOw=='); float:right}
#calnext.caldisabled,#calprev.caldisabled {visibility:hidden}
#caltitle select {font-size:10px}
#caldays {height:20px; border-bottom:1px solid #ddd}
#caldays span {display:block;float:left;width:28px;text-align:center}
#calweeks {background-color:#fff;margin-top:4px}
.calweek {clear:left;height:22px}
.calweek a {display:block; float:left; width:27px; height:20px; text-decoration:none; font-size:11px; margin-left:1px; text-align:center; line-height:20px; color:#666; -moz-border-radius:3px; -webkit-border-radius:3px}
.calfocus,.calweek a:hover {background-color:#ddd}
a.calsun {color:red}
a.caloff {color:#ccc}
a.caloff:hover {background-color:#f5f5fa}
a.caldisabled {background-color:#efefef!important; color:#ccc!important; cursor:default}
#calcurrent {background-color:#515347; color:#fff}
#caltoday {background-color:#333; color:#fff}

/*     --icon
------------------------------------------------- */
.input-wrapper:hover span i:before {-webkit-animation: rotateIn 500ms ease; -moz-animation: rotateIn 500ms ease; -ms-animation: rotateIn 500ms ease; animation: rotateIn 500ms ease;}
.input-wrapper-inside[class^="icon-"] span, .input-wrapper-inside[class*="icon-"] span {border-right: 0!important;}

/* =============================================================================
 * media-queries
 * ========================================================================== */


/*     --tablets
------------------------------------------------- */


@media (max-width:1320px){

.sidebar_right.content_page #wrapper, .full_width.content_page #wrapper, 
.home #wrapper .ce_headline.ueberschrift_startseite{
	width:100%;
	padding:10px 20px;
	}

}


@media only screen and (max-width: 990px), screen and (min-device-width : 768px) and (max-device-width : 1024px)  {
	/* body */
	#contentwrapper {padding-top: 0!important;}
	
	/* header */
	#header {width: 100%; position: static!important;}
	#contentwrapper #header .inside {padding-top: 0!important;}
	#header #headerhide, #header .socials, #header .contentbox {display: none!important;}
	body.header_open #top,body.header_open #wrapper,body.header_open footer,body.header_open #bottom,body.header_open #header_after {margin-left: 0!important;}
	body.header_open #header {width: 100%!important;}
	
	body.onepage #header {position: fixed!important; width: 100%; top: 0;}
	#stickyheader {display: none;}

	/* top */
	#top {display: none!important;}
	
	/* teaser */
	#container_before {border-left: 0; border-right: 0; height: auto;}
	#container_before:before,#container_before:after {display: none;}
	
	/* container */
	#container:before {width: 100%;}

	.parallax-bg {background-position: 50% 0!important;}

	/* portfolio */
	.portfolioteaser .port-infos {position: relative;}
	.portfolioteaser .port-infos h2 {font-size: 12px; display: block; background: #ededed;}
	.portfolioliste .port-infos {position: relative;}

	/* video button */
	.mejs-overlay-button {display: none!important;}
		
	/* sublines */
	[class*="subheadline_"] {margin-top: 0px;}
	
	/* menu + mobilemenu */
	/*#header nav.mainmenu {display: none!important;}*/
	#submenu {display: none;}
	#nav-open-btn {display: table-cell; position: relative; z-index: 500000;}
	
	#header .inside, body.blank #header .inside {text-align: left!important; display: table!important; height: 85px!important;}
	body.onepage #headeroffset {height: 85px;}
	
	/* stickyheader */
	#stickyheader {display: none!important}
	
	/* logo */
	.logo {display: table-cell!important; height: 85px; left: 40px; position: absolute!important;}
	
	/* headerimage headlines */
	.headerimage h3 {font-size: 34px;}
	.headerimage h4 {font-size: 18px;}
	
	/* ce_gallery isotope masonry */
	.ce_gallery .isotope .block.autogrid {width: 50%;}
	
	/* portfolioliste */
	.portfolioliste .teaser {display: none;}
	.portfolioliste .frontside .caption{padding:5px;}
	#portfolio_25 .title{padding-left:5px!important;}
	.portfolioliste .frontside .title{font-size:15px!important;}
	
	/* blog */
	.blog.block.one_third {width: 50%;}
	
	/* mod_breadcrumb */
	#pagetitle, .mod_breadcrumb {float: none; text-align: left;}
	
	/* container-inside */
	#container-inside {padding: 40px!important;}
	
	/* #teaser_after .inside */
	#teaser_after .inside {padding: 40px!important;}
	
	/* linktotop */
	#linktotop {display: none!important;}
	
	/* iconsize servicebox */
	.servicebox[class^="icon-"]:before, .servicebox[class*="icon-"]:before {font-size: 40px;}
	
	/* nachrichtenteaser */
	.nachrichtenteaser_v3 h4 {margin-bottom: 3px;}
	
	/* nachrichtenliste */
	.nachrichtenliste .info div {display: block;}
		
	/* pricetables */
	.pricetable i {display: none;}
	
	/* teamboxes */
	.teambox_2 .funktion {position: static;}
	
	/* backgroundvideo */
	.backgroundvideo video {opacity: 0;}
	.backgroundvideo .mobile_poster {display: block; width: 100%; height: auto;}
	.backgroundvideo .mbYTP_wrapper {display: none;}
	.backgroundvideo {height: auto!important;}
	.backgroundvideo_content_wrapper.youtube {position: relative; left: 0; top: 0;}
	.backgroundvideo .content_boxed {padding-left: 20px; padding-right: 20px;}
	.backgroundvideo.ownvideo #vidscroller {display: none;}
	.backgroundvideo .backgroundvideo_content_wrapper {padding: 20px;}
	
	/* parallax-bg */
	.parallax-bg {background-attachment: scroll;}
	.parallax-bg .content_boxed {padding-left: 20px; padding-right: 20px;}
	
	/* hide parallax image element */
	.parallax_image {display: none!important;}
	
	/* hide ce_imagemap hotspots */
	.ce_imagemap .hotspot {display: none;}

}


/*     --phones
------------------------------------------------- */
/*@media only screen and (max-width: 767px) {*/

/* 
.home .portfolioliste_inside{
	padding: 0px 20px;
	}
 */

	/* body */
/*	body {padding: 0;}*/
	
	/* logo */
/*	.logo {width: 140px; height: 85px; left: 20px;}*/
	
	/* wrapper */
/*	#wrapper {width: 100%;}*/

	/* sidebar */
/*	body.sidebar_left #main,*/
/*	body.sidebar_left #left,*/
/*	body.sidebar_right #main,*/
/*	body.sidebar_right #right,*/
/*	body.sidebar_both #main,*/
/*	body.sidebar_both #left,*/
/*	body.sidebar_both #right {width: 100%; margin: 0;}*/
	
/*	body.sidebar_left #left, */
/*	body.sidebar_right #right,*/
/*	body.sidebar_both #left,*/
/*	body.sidebar_both #right {box-shadow: none;}*/
	
/*	body.sidebar_left #main .inside,*/
/*	body.sidebar_left #left .inside,*/
/*	body.sidebar_right #main .inside,*/
/*	body.sidebar_right #right .inside,*/
/*	body.sidebar_both #main .inside,*/
/*	body.sidebar_both #left .inside,*/
/*	body.sidebar_both #right .inside {width: 100%; float: none; padding: 0; border: 0; margin: 0;}*/
/* 	#right {margin-top: 15px!important; padding-top: 15px; border-top: 4px solid #ddd;}*/
/* 	#left {margin-bottom: 15px!important; padding-bottom: 15px; border-bottom: 4px solid #ddd;}*/
 	
 	/* headlines with divider remove lines */
/* 	.divider .ext_txtpic_headline h1, .divider .ext_txtpic_headline h2, .divider .ext_txtpic_headline h3, .divider .ext_txtpic_headline h4, .divider .ext_txtpic_headline h5, .divider .ext_txtpic_headline h6,*/
/* 	.divider_2 .ext_txtpic_headline h1, .divider_2 .ext_txtpic_headline h2, .divider_2 .ext_txtpic_headline h3, .divider_2 .ext_txtpic_headline h4, .divider_2 .ext_txtpic_headline h5, .divider_2 .ext_txtpic_headline h6 {background: none; line-height: 1em;}*/
/* 	.divider span, .divider_2 span {background: none;}*/
 	
 	/* image_container */
/* 	.image_container {margin-bottom: 10px; width: 100%; padding: 0; margin: 0 0 10px 0; float: none;}*/
 	
 	/* container_before - rootpath */
/* 	.content_page #container_before {display: none;}*/
 	
 	/* ce_text */
/* 	#wrapper .ce_text {width: 100%;}*/
 	 	
 	/* footer */
/* 	#footer .inside {text-align: center; padding: 40px 20px;}*/

 	/* disable webkit text size adjust (for iPhone) */
/* 	html {-webkit-text-size-adjust: none;} */
 	
 	/* tables */
/* 	table {font-size: 9px;}*/
 	
 	/* css-framework */
/*	.full, .one_half, .one_third, .two_third, .one_fourth, .two_fourth, .three_fourth, .one_fifth, .two_fifth, .three_fifth, .four_fifth {width: 100%; margin: 0 0  15px 0;}*/
/*	.border-inner {border: 0!important;}*/
	
	/* extension subcolumns */
/* 	.c20r, .c25r, .c33r, .c40r, .c38r, .c50r, .c60r, .c66r, .c62r, .c75r, .c80r, .c15r, .c16r, .c30r, .c45r, .c55r, .c70r, .c85r,*/
/* 	.c20l, .c25l, .c33l, .c40l, .c38l, .c50l, .c60l, .c66l, .c62l, .c75l, .c80l, .c15l, .c16l, .c30l, .c45l, .c55l, .c70l, .c85l {float: none; width: 100%; padding: 0; margin: 0;}*/
/* 	.subcr, .subcl, .subc {padding: 0!important;}*/
 	
 	/* ce_gallery */
/*	.ce_gallery .row2, .ce_gallery .row3, .ce_gallery .row4, .ce_gallery .row5, .ce_gallery .row6, .ce_gallery .row7, .ce_gallery .row8, .ce_gallery .row9, .ce_gallery .row10, .ce_gallery .row11, .ce_gallery .row12 {margin-left: 4%!important; width:48%; float:left!important; position:relative; clear: none!important;}*/
/*	.ce_gallery .row2:nth-child(2n+1), .ce_gallery .row3:nth-child(2n+1), .ce_gallery .row4:nth-child(2n+1), .ce_gallery .row5:nth-child(2n+1), .ce_gallery .row6:nth-child(2n+1), .ce_gallery .row7:nth-child(2n+1), .ce_gallery .row8:nth-child(2n+1), .ce_gallery .row9:nth-child(2n+1), .ce_gallery .row10:nth-child(2n+1), .ce_gallery .row11:nth-child(2n+1), .ce_gallery .row12:nth-child(2n+1) {margin-left: 0!important; clear: left!important;}*/
  	
  	/* ce_countdown */
/*  	.ce_countdown {font-size: 12px;}*/
/*  	.ce_countdown .countdown-section {margin-right: 5px;}*/
/*  	.ce_countdown .countdown-amount {font-size: 14px; line-height: 14px;}*/

  	/* mod_calendar */
/*  	.mod_calendar table {font-size: 7px;}	*/
  	
  	/* iconboxes */
/*  	.servicebox_2.iconright, .servicebox_3.iconright {text-align: left!important; padding-left: 50px; padding-right: 0;}*/
/* 	.servicebox_2.iconright:before, .servicebox_2.iconright .ce_image, .servicebox_3.iconright:before, .servicebox_3.iconright .ce_image {left: 0; right: auto;}*/
  	
	/* search */
/*	#top .mod_search {display: none;}*/
/*	.mod_search input {width: 100%;}*/
/*	#container .mod_search .submit {margin-top: 10px;}*/
	
	/* mod_subscribe */
/*	.mod_subscribe input {width: 100%!important; margin-bottom: 10px;}*/
		
	/* mod_registration */
/*	.mod_registration label, .mod_registration input, .mod_registration .submit_container input, .mod_registration .captcha_text {width: 100%; margin: 0;}*/
/*	.mod_registration .captcha_text {margin: 5px 0 15px 0;}*/
/*	.mod_registration p.error {margin-left: 0;}*/
	
	/* forms */
/*	form label {margin-bottom: 2px!important;}*/
/*	form .captcha_text {line-height: 1em;}*/
/*	.checkbox_container.horizontal span,*/
/*	.radio_container.horizontal span {display: block;}*/
	
	/* footer content */
/*	#footer .submit_container {text-align: center; }*/
/*	#footer input.submit {float: none; } */
/*	#footer .ce_text {margin-bottom: 0px;}*/
	
	/* copyright */
/*	#bottom .float-left, #bottom .float-right {float: none; text-align: center;}*/
/*	#bottom .inside {padding: 20px;}*/
	
	/* video button */
/*	.mejs-overlay-button {display: none!important;}*/
	
	/* ce_adressblock button */
/*	#footer .ce_adressblock .adressblock_adresse, #footer .ce_adressblock .adressblock_tel, #footer .ce_adressblock .adressblock_fax, #footer .ce_adressblock .adressblock_email, #footer .ce_adressblock .adressblock_webadresse {padding-left: 0;}*/
	
	/* nachrichtenliste */
/*	.nachrichtenliste {margin-bottom: 0;}*/
	
	/* more button */
/*	.more a {padding: 0px 6px;}*/

	/* calltoaction */
/*	.calltoaction_left, .calltoaction_right {display: block;}*/
/*	.calltoaction p {width: 100%;}*/
/*	.calltoaction_2:after {right: 10px;}*/
/*	.calltoaction_2 p {width: 80%;}*/
/*	.calltoaction a {width: 100%; margin-top: 15px;}*/
	
	/* ce_hyperlink */
/*	.ce_hyperlink.right {text-align: center;}*/
/*	.ce_hyperlink.left {text-align: center;}*/
	
	/* mod_subscribe */
/*	.mod_subscribe.big {width: 100%;}*/
/*	.mod_subscribe.big .formbody:after {display: none;}*/
/*	.mod_subscribe.big input.text {padding-left: 20px;}*/
/*	.mod_subscribe.big input {width: 100%;}*/
	
	/* css helper class hide for mobile devices */
/*	.mobile_hide, .mobile_hide_img img {display: none!important;}*/
	
	/* header_after ce_text */
/*	#header_after .ce_text.headertext {padding: 0 20px;}*/
	
	/* tabs */
/*	.tabs ul li {float: none;}*/
/*	.tabs ul li a {float: none; display: block; margin: 2px 0;}*/
/*	.tabs ul li a:hover, .tabs.vertikal ul li a.current, .tabs.vertikal_2 ul li a.current {background: #fafafa;}*/
/*	.tabs.horizontal_clean ul li {float: none; display: block;}*/
/*	.tabs.horizontal_clean ul li a, .tabs.horizontal_clean li:first-child a {border: 1px solid #f1f1f1;}*/
/*	.tabs.horizontal_clean li a {text-align: left; padding-left: 10px;}*/

	/* bigtext */
/*	.bigtext {font-size: 18px; line-height: 24px;}*/
	
	/* headline  container_before */
/*	#container_before .inside h1 {font-size: 28px;}*/
	
	/* container */
/*	#container-inside {padding: 40px 20px!important;}*/

	/* container_before */
/*	#container_before .inside {padding: 40px 20px!important;}*/
	
	/* container_before */
/*	#teaser_after .inside {padding: 20px!important;}*/
	
	/* ce_counter */
/*	.ce_counter {margin-bottom: 15px;}*/
/*	.ce_counter .counterwrapper {line-height: 1.3em;}*/
	
	/* header .inside  */
/*	#header .inside {padding: 0 20px;}*/
/*	#header .inside, body.blank #header .inside {height: 70px;}*/
/*	body.onepage #headeroffset {height: 70px;}*/
	
	/* site-font-icon  */
/*	.site-icons .row div {width: 100%!important;}*/
	
	/* button  */
/*	.button, input[type="submit"], input.submit, .submit_container input {display: block; width: 100%!important;}*/
/*	#off_canvas .mod_search .submit {width: auto!important;}*/
	
	/* tabs */
/*	.tabs.vertikal, .panes.vertikal, .tabs.vertikal_2, .panes.vertikal_2 {float: none;}*/
/*	.tabs.vertikal, .tabs.vertikal_2 {width: 100%;}*/
/*	.tabs.vertikal ul li a, .tabs.vertikal_2 ul li a {border: none; background: #efefef; margin-bottom: 1px;}*/
/*	.panes.vertikal, .panes.vertikal_2 {padding: 15px; width: 100%; border: 1px solid #ccc;}*/
/*	.tabs.horizontal ul li {float: none; display: block;}*/
/*	.tabs.horizontal ul li a {display: block; float: none; border: 0; background: #efefef; margin-bottom: 1px; margin: 0 0 1px 0;}*/
/*	.tabs.horizontal_clean li {width: 100%!important;}*/
	
	/* testimonials */
/*	.testimonial_v1 {display: block;}*/
/*	.testimonial_v1 .image_container {display: block; text-align: center; width: 100%;}*/
/*	.testimonial_v1 .image_container img {margin: 0 auto; max-width: 100px;}*/

	/* extended text & bild custom element */
/*	.ext_txtpic.col_right .ce_textarea, .ext_txtpic.col_right .ext_txtpic_text .ext_txtpic_headline, .ext_txtpic.col_right .ce_hyperlink {padding: 0;}*/
/*	.ce_text-mit-bild-erweitert .ext_txtpic.col_left .ce_textarea, .ce_text-mit-bild-erweitert .ext_txtpic.col_left .ext_txtpic_text .ext_txtpic_headline, .ce_text-mit-bild-erweitert .ext_txtpic.col_left .ce_hyperlink {padding: 0;}*/
/*	.float_left .ext_txtpic_bild, .float_right .ext_txtpic_bild {width: 100%!important;}*/
/*	.col_left .ext_txtpic_text, .col_left .ext_txtpic_bild, .col_right .ext_txtpic_text, .col_right .ext_txtpic_bild {display: block!important; margin: 0!important; width: 100%!important;}*/
/*	.ext_txtpic_text, .ext_txtpic_bild, .ext_txtpic.col_right .ce_textarea, .ext_txtpic.col_left .ce_textarea {padding: 0!important;}*/
/*	.ce_text-mit-bild-erweitert .txt_right * {text-align: left;}*/
/*	.ce_text-mit-bild-erweitert .col_right .ext_txtpic_bild {margin-top: 20px!important;}*/
/*	.ce_text-mit-bild-erweitert .col_left .ext_txtpic_bild {margin-bottom: 20px!important;}*/
/*	.ce_text-mit-bild-erweitert .ext_txtpic_bild {width: 100%!important; max-width: 100%!important;}*/
/*	.ce_text-mit-bild-erweitert .ext_txtpic_bild img {max-width: 100%; height: auto;}*/
	
	/* ce_gallery isotope  */  
/*	.ce_gallery .isotope .isotope-item {margin-bottom: 10px;}*/
	
	/* portfolioliste */
/*	.portfolioliste .teaser {display: none;}*/
	 
	/* hide icons in footer */
/*	#footer .ce_adressblock .adressblock_adresse:before, #footer .ce_adressblock .adressblock_tel:before, #footer .ce_adressblock .adressblock_fax:before, #footer .ce_adressblock .adressblock_email:before, #footer .ce_adressblock .adressblock_webadresse:before {display: none;}*/
	 
	/* nachrichtenteaser */
/*	.nachrichtenteaser_v3 h4 {margin-bottom: 5px;}*/
/*	.nachrichtenteaser_v3 .linkwrapper .subheadline {float: none; display: block;}*/
/*	.nachrichtenteaser_v3 .linkwrapper a {float: none;}*/
	 
	/* nachrichtenliste */
/*	.nachrichtenliste .comments, .nachrichtenliste .author, .nachrichtenliste .date {display: block;}*/
/*	.nachrichtenliste.smallview .two_third {padding-left: 1%;}*/
/*	.nachrichtenliste .date-wrapper {display: none;}*/
	 
	/* nachrichtenleser */
/*	.nachrichtenleser .date, .nachrichtenleser .author, .nachrichtenleser .comments {display: block; margin: 0; padding: 0;}*/
/*	.nachrichtenleser .info {margin-bottom: 10px;}*/
	 
	/* portfolioliste */
/*	.isotope.nopaddings .portfolioliste {margin-bottom: 0!important;}*/
/*	.filter li {display: block; margin: 3px 10px;}*/
/*	.filter li a {display: block;}*/
	
	/* pagination */
/*	.pagination ul {width: 100%; float: none;}*/
/*	.pagination p {width: 100%; float: none;}*/
/*	.ce_blog .pagination {bottom: -75px;}*/
	 
	/* pricetables */
/*	.pricetable_3col .pricetable, .pricetable_4col .pricetable {float: none; width: 100%; margin: 0 0 15px 0;}*/
/*	.ce_preistabelle .link {padding: 0;}*/
/*	.ce_preistabelle .link a {margin-bottom: 0;}*/
		
	/* testimonial_slider_v2 */
/*	.testimonial_slider_v2 .text, .testimonial_slider_v2 .autor {font-size: 1em;}*/
	
	/* bxslider */
/*	.bx-wrapper .bx-pager.bx-default-pager a {height: 10px; width: 10px;}*/
	
	/* articlewrapper */
/*	.articlewrapper.boxed, .articlewrapper.fullwidth_contentboxed > .inside {padding-left: 1%!important; padding-right: 1%!important;}*/
	
	/* css helper margins */
/*	.margin-top10 {margin-top: 10px;}*/
/*	.margin-top20 {margin-top: 20px;}*/
/*	.margin-top30 {margin-top: 20px;}*/
/*	.margin-top40 {margin-top: 20px;}*/
/*	.margin-top50 {margin-top: 20px;}*/
/*	.margin-top60 {margin-top: 20px;}*/
/*	.margin-top70 {margin-top: 20px;}*/
/*	.margin-top80 {margin-top: 20px;}*/
/*	.margin-top90 {margin-top: 20px;}*/
/*	.margin-top100 {margin-top: 20px;}*/
	
/*	.margin-bottom10 {margin-bottom: 10px;}*/
/*	.margin-bottom20 {margin-bottom: 20px;}*/
/*	.margin-bottom30 {margin-bottom: 20px;}*/
/*	.margin-bottom40 {margin-bottom: 20px;}*/
/*	.margin-bottom50 {margin-bottom: 20px;}*/
/*	.margin-bottom60 {margin-bottom: 20px;}*/
/*	.margin-bottom70 {margin-bottom: 20px;}*/
/*	.margin-bottom80 {margin-bottom: 20px;}*/
/*	.margin-bottom90 {margin-bottom: 20px;}*/
/*	.margin-bottom100 {margin-bottom: 20px;}*/
	
/*	.phone_no {margin-top: 0;}*/
/*	.phone_no {margin-bottom: 0;}*/
	
	/* headlines */
/*	h1 {font-size: 28px;}*/
/*	h2 {font-size: 23px;}*/
/*	h3 {font-size: 20px;}*/
/*	h4 {font-size: 18px;}*/
/*	h5 {font-size: 16px;}*/
/*	h6 {font-size: 15px;}*/
	
	/* fontsize classes */
/*	.fontsize_xxxl {font-size: 26px; line-height: 1.8em;}*/
/*	.fontsize_xxl {font-size: 24px; line-height: 1.8em;}*/
/*	.fontsize_xl {font-size: 20px; line-height: 1.8em;}*/
/*	.fontsize_l {font-size: 20px; line-height: 1.8em;}*/
/*	.fontsize_m {font-size: 15px; line-height: 1.8em;}*/
/*	.fontsize_s {font-size: 13px; line-height: 1.8em;}*/

/*}*/


/* =============================================================================
 * setting for browsers
 * ========================================================================== */

/* android background fixed bug */
body.android {background-attachment: scroll!important;}

/* safari opacity hover bug */
body.safari * {-webkit-font-smoothing: antialiased;}

/* safari remove input placeholder icon */
body.safari input[placeholder]:before {display: none;}

/* IE input fields */
input::-ms-clear {display: none;}
body.ie .checkbox_container input, body.ie .radio_container input {border: none;}
body.ie #footer input:hover, body.ie input, body.ie #footer textarea {transition: none!important;}
body.ie #footer input:focus, body.ie #footer textarea:focus {padding: 10px; margin: -1px;}

/* IE9 bugs portfolioteaser V2 */
body.ie9 .portfolioteaser.version_2 .bx_caption {top: 0;}
body.ie9 .portfolioliste .backside {display: none;}
/* 
- add your custom css here or use the theme designer in the demo online version
- save this file before you update quatum to a newer version 
*/
/* HINWEIS GOOGLE FONT

Ersetzen Sie den Google Fonts Code in der fe_page.html5 durch:

<link href="http://fonts.googleapis.com/css?family="icons"" rel="stylesheet" type="text/css"/>

Weitere Informationen zu Google Fonts finden Sie hier: https://developers.google.com/fonts/faq
*/

.custom-caption {
	font-weight: 700;
    text-align: center;
    font-size: 0.75em;
}
@charset "UTF-8";
@media screen and (min-width: 601px){.mobile-only{display:none !important}}@media screen and (max-width: 600px){.hide-on-mobile{display:none !important}}@media screen and (max-width: 900px){.desktop-only{display:none !important}}@media screen and (min-width: 901px){.hide-on-desktop{display:none !important}}@media screen and (max-width: 600px){.tablet-only{display:none !important}}@media screen and (min-width: 901px){.tablet-only{display:none !important}}@media screen and (max-width: 900px) and (min-width: 601px){.hide-on-tablet{display:none !important}}.mt-0{margin-top:0px}.mt-5{margin-top:5px}.mt-10{margin-top:10px}.mt-15{margin-top:15px}.mt-20{margin-top:20px}.mt-25{margin-top:25px}.mt-30{margin-top:30px}.mt-35{margin-top:35px}.mt-40{margin-top:40px}.mt-45{margin-top:45px}.mt-50{margin-top:50px}.mt-55{margin-top:55px}.mt-60{margin-top:60px}.mt-65{margin-top:65px}.mt-70{margin-top:70px}.mt-75{margin-top:75px}.mt-80{margin-top:80px}.mr-0{margin-right:0px}.mr-5{margin-right:5px}.mr-10{margin-right:10px}.mr-15{margin-right:15px}.mr-20{margin-right:20px}.mr-25{margin-right:25px}.mr-30{margin-right:30px}.mr-35{margin-right:35px}.mr-40{margin-right:40px}.mr-45{margin-right:45px}.mr-50{margin-right:50px}.mr-55{margin-right:55px}.mr-60{margin-right:60px}.mr-65{margin-right:65px}.mr-70{margin-right:70px}.mr-75{margin-right:75px}.mr-80{margin-right:80px}.mb-0{margin-bottom:0px}.mb-5{margin-bottom:5px}.mb-10{margin-bottom:10px}.mb-15{margin-bottom:15px}.mb-20{margin-bottom:20px}.mb-25{margin-bottom:25px}.mb-30{margin-bottom:30px}.mb-35{margin-bottom:35px}.mb-40{margin-bottom:40px}.mb-45{margin-bottom:45px}.mb-50{margin-bottom:50px}.mb-55{margin-bottom:55px}.mb-60{margin-bottom:60px}.mb-65{margin-bottom:65px}.mb-70{margin-bottom:70px}.mb-75{margin-bottom:75px}.mb-80{margin-bottom:80px}.ml-0{margin-left:0px}.ml-5{margin-left:5px}.ml-10{margin-left:10px}.ml-15{margin-left:15px}.ml-20{margin-left:20px}.ml-25{margin-left:25px}.ml-30{margin-left:30px}.ml-35{margin-left:35px}.ml-40{margin-left:40px}.ml-45{margin-left:45px}.ml-50{margin-left:50px}.ml-55{margin-left:55px}.ml-60{margin-left:60px}.ml-65{margin-left:65px}.ml-70{margin-left:70px}.ml-75{margin-left:75px}.ml-80{margin-left:80px}.m-0{margin:0px}.m-5{margin:5px}.m-10{margin:10px}.m-15{margin:15px}.m-20{margin:20px}.m-25{margin:25px}.m-30{margin:30px}.m-35{margin:35px}.m-40{margin:40px}.m-45{margin:45px}.m-50{margin:50px}.m-55{margin:55px}.m-60{margin:60px}.m-65{margin:65px}.m-70{margin:70px}.m-75{margin:75px}.m-80{margin:80px}.pt-0{padding-top:0px}.pt-5{padding-top:5px}.pt-10{padding-top:10px}.pt-15{padding-top:15px}.pt-20{padding-top:20px}.pt-25{padding-top:25px}.pt-30{padding-top:30px}.pt-35{padding-top:35px}.pt-40{padding-top:40px}.pt-45{padding-top:45px}.pt-50{padding-top:50px}.pt-55{padding-top:55px}.pt-60{padding-top:60px}.pt-65{padding-top:65px}.pt-70{padding-top:70px}.pt-75{padding-top:75px}.pt-80{padding-top:80px}.pr-0{padding-right:0px}.pr-5{padding-right:5px}.pr-10{padding-right:10px}.pr-15{padding-right:15px}.pr-20{padding-right:20px}.pr-25{padding-right:25px}.pr-30{padding-right:30px}.pr-35{padding-right:35px}.pr-40{padding-right:40px}.pr-45{padding-right:45px}.pr-50{padding-right:50px}.pr-55{padding-right:55px}.pr-60{padding-right:60px}.pr-65{padding-right:65px}.pr-70{padding-right:70px}.pr-75{padding-right:75px}.pr-80{padding-right:80px}.pb-0{padding-bottom:0px}.pb-5{padding-bottom:5px}.pb-10{padding-bottom:10px}.pb-15{padding-bottom:15px}.pb-20{padding-bottom:20px}.pb-25{padding-bottom:25px}.pb-30{padding-bottom:30px}.pb-35{padding-bottom:35px}.pb-40{padding-bottom:40px}.pb-45{padding-bottom:45px}.pb-50{padding-bottom:50px}.pb-55{padding-bottom:55px}.pb-60{padding-bottom:60px}.pb-65{padding-bottom:65px}.pb-70{padding-bottom:70px}.pb-75{padding-bottom:75px}.pb-80{padding-bottom:80px}.pl-0{padding-left:0px}.pl-5{padding-left:5px}.pl-10{padding-left:10px}.pl-15{padding-left:15px}.pl-20{padding-left:20px}.pl-25{padding-left:25px}.pl-30{padding-left:30px}.pl-35{padding-left:35px}.pl-40{padding-left:40px}.pl-45{padding-left:45px}.pl-50{padding-left:50px}.pl-55{padding-left:55px}.pl-60{padding-left:60px}.pl-65{padding-left:65px}.pl-70{padding-left:70px}.pl-75{padding-left:75px}.pl-80{padding-left:80px}.p-0{padding:0px}.p-5{padding:5px}.p-10{padding:10px}.p-15{padding:15px}.p-20{padding:20px}.p-25{padding:25px}.p-30{padding:30px}.p-35{padding:35px}.p-40{padding:40px}.p-45{padding:45px}.p-50{padding:50px}.p-55{padding:55px}.p-60{padding:60px}.p-65{padding:65px}.p-70{padding:70px}.p-75{padding:75px}.p-80{padding:80px}@media screen and (min-width:0){.mt-xs-0{margin-top:0rem}}@media screen and (min-width:0){.mt-xs-1{margin-top:1rem}}@media screen and (min-width:0){.mt-xs-2{margin-top:2rem}}@media screen and (min-width:0){.mt-xs-3{margin-top:3rem}}@media screen and (min-width:0){.mt-xs-4{margin-top:4rem}}@media screen and (min-width:0){.mt-xs-5{margin-top:5rem}}@media screen and (min-width:0){.mt-xs-6{margin-top:6rem}}@media screen and (min-width:0){.mt-xs-7{margin-top:7rem}}@media screen and (min-width:0){.mt-xs-8{margin-top:8rem}}@media screen and (min-width:0){.mt-xs-9{margin-top:9rem}}@media screen and (min-width:0){.mt-xs-10{margin-top:10rem}}@media screen and (min-width:34.375rem){.mt-sm-0{margin-top:0rem}}@media screen and (min-width:34.375rem){.mt-sm-1{margin-top:1rem}}@media screen and (min-width:34.375rem){.mt-sm-2{margin-top:2rem}}@media screen and (min-width:34.375rem){.mt-sm-3{margin-top:3rem}}@media screen and (min-width:34.375rem){.mt-sm-4{margin-top:4rem}}@media screen and (min-width:34.375rem){.mt-sm-5{margin-top:5rem}}@media screen and (min-width:34.375rem){.mt-sm-6{margin-top:6rem}}@media screen and (min-width:34.375rem){.mt-sm-7{margin-top:7rem}}@media screen and (min-width:34.375rem){.mt-sm-8{margin-top:8rem}}@media screen and (min-width:34.375rem){.mt-sm-9{margin-top:9rem}}@media screen and (min-width:34.375rem){.mt-sm-10{margin-top:10rem}}@media screen and (min-width:48rem){.mt-md-0{margin-top:0rem}}@media screen and (min-width:48rem){.mt-md-1{margin-top:1rem}}@media screen and (min-width:48rem){.mt-md-2{margin-top:2rem}}@media screen and (min-width:48rem){.mt-md-3{margin-top:3rem}}@media screen and (min-width:48rem){.mt-md-4{margin-top:4rem}}@media screen and (min-width:48rem){.mt-md-5{margin-top:5rem}}@media screen and (min-width:48rem){.mt-md-6{margin-top:6rem}}@media screen and (min-width:48rem){.mt-md-7{margin-top:7rem}}@media screen and (min-width:48rem){.mt-md-8{margin-top:8rem}}@media screen and (min-width:48rem){.mt-md-9{margin-top:9rem}}@media screen and (min-width:48rem){.mt-md-10{margin-top:10rem}}@media screen and (min-width:58.75rem){.mt-lg-0{margin-top:0rem}}@media screen and (min-width:58.75rem){.mt-lg-1{margin-top:1rem}}@media screen and (min-width:58.75rem){.mt-lg-2{margin-top:2rem}}@media screen and (min-width:58.75rem){.mt-lg-3{margin-top:3rem}}@media screen and (min-width:58.75rem){.mt-lg-4{margin-top:4rem}}@media screen and (min-width:58.75rem){.mt-lg-5{margin-top:5rem}}@media screen and (min-width:58.75rem){.mt-lg-6{margin-top:6rem}}@media screen and (min-width:58.75rem){.mt-lg-7{margin-top:7rem}}@media screen and (min-width:58.75rem){.mt-lg-8{margin-top:8rem}}@media screen and (min-width:58.75rem){.mt-lg-9{margin-top:9rem}}@media screen and (min-width:58.75rem){.mt-lg-10{margin-top:10rem}}@media screen and (min-width:68.75rem){.mt-xl-0{margin-top:0rem}}@media screen and (min-width:68.75rem){.mt-xl-1{margin-top:1rem}}@media screen and (min-width:68.75rem){.mt-xl-2{margin-top:2rem}}@media screen and (min-width:68.75rem){.mt-xl-3{margin-top:3rem}}@media screen and (min-width:68.75rem){.mt-xl-4{margin-top:4rem}}@media screen and (min-width:68.75rem){.mt-xl-5{margin-top:5rem}}@media screen and (min-width:68.75rem){.mt-xl-6{margin-top:6rem}}@media screen and (min-width:68.75rem){.mt-xl-7{margin-top:7rem}}@media screen and (min-width:68.75rem){.mt-xl-8{margin-top:8rem}}@media screen and (min-width:68.75rem){.mt-xl-9{margin-top:9rem}}@media screen and (min-width:68.75rem){.mt-xl-10{margin-top:10rem}}@media screen and (min-width:0){.mr-xs-0{margin-right:0rem}}@media screen and (min-width:0){.mr-xs-1{margin-right:1rem}}@media screen and (min-width:0){.mr-xs-2{margin-right:2rem}}@media screen and (min-width:0){.mr-xs-3{margin-right:3rem}}@media screen and (min-width:0){.mr-xs-4{margin-right:4rem}}@media screen and (min-width:0){.mr-xs-5{margin-right:5rem}}@media screen and (min-width:0){.mr-xs-6{margin-right:6rem}}@media screen and (min-width:0){.mr-xs-7{margin-right:7rem}}@media screen and (min-width:0){.mr-xs-8{margin-right:8rem}}@media screen and (min-width:0){.mr-xs-9{margin-right:9rem}}@media screen and (min-width:0){.mr-xs-10{margin-right:10rem}}@media screen and (min-width:34.375rem){.mr-sm-0{margin-right:0rem}}@media screen and (min-width:34.375rem){.mr-sm-1{margin-right:1rem}}@media screen and (min-width:34.375rem){.mr-sm-2{margin-right:2rem}}@media screen and (min-width:34.375rem){.mr-sm-3{margin-right:3rem}}@media screen and (min-width:34.375rem){.mr-sm-4{margin-right:4rem}}@media screen and (min-width:34.375rem){.mr-sm-5{margin-right:5rem}}@media screen and (min-width:34.375rem){.mr-sm-6{margin-right:6rem}}@media screen and (min-width:34.375rem){.mr-sm-7{margin-right:7rem}}@media screen and (min-width:34.375rem){.mr-sm-8{margin-right:8rem}}@media screen and (min-width:34.375rem){.mr-sm-9{margin-right:9rem}}@media screen and (min-width:34.375rem){.mr-sm-10{margin-right:10rem}}@media screen and (min-width:48rem){.mr-md-0{margin-right:0rem}}@media screen and (min-width:48rem){.mr-md-1{margin-right:1rem}}@media screen and (min-width:48rem){.mr-md-2{margin-right:2rem}}@media screen and (min-width:48rem){.mr-md-3{margin-right:3rem}}@media screen and (min-width:48rem){.mr-md-4{margin-right:4rem}}@media screen and (min-width:48rem){.mr-md-5{margin-right:5rem}}@media screen and (min-width:48rem){.mr-md-6{margin-right:6rem}}@media screen and (min-width:48rem){.mr-md-7{margin-right:7rem}}@media screen and (min-width:48rem){.mr-md-8{margin-right:8rem}}@media screen and (min-width:48rem){.mr-md-9{margin-right:9rem}}@media screen and (min-width:48rem){.mr-md-10{margin-right:10rem}}@media screen and (min-width:58.75rem){.mr-lg-0{margin-right:0rem}}@media screen and (min-width:58.75rem){.mr-lg-1{margin-right:1rem}}@media screen and (min-width:58.75rem){.mr-lg-2{margin-right:2rem}}@media screen and (min-width:58.75rem){.mr-lg-3{margin-right:3rem}}@media screen and (min-width:58.75rem){.mr-lg-4{margin-right:4rem}}@media screen and (min-width:58.75rem){.mr-lg-5{margin-right:5rem}}@media screen and (min-width:58.75rem){.mr-lg-6{margin-right:6rem}}@media screen and (min-width:58.75rem){.mr-lg-7{margin-right:7rem}}@media screen and (min-width:58.75rem){.mr-lg-8{margin-right:8rem}}@media screen and (min-width:58.75rem){.mr-lg-9{margin-right:9rem}}@media screen and (min-width:58.75rem){.mr-lg-10{margin-right:10rem}}@media screen and (min-width:68.75rem){.mr-xl-0{margin-right:0rem}}@media screen and (min-width:68.75rem){.mr-xl-1{margin-right:1rem}}@media screen and (min-width:68.75rem){.mr-xl-2{margin-right:2rem}}@media screen and (min-width:68.75rem){.mr-xl-3{margin-right:3rem}}@media screen and (min-width:68.75rem){.mr-xl-4{margin-right:4rem}}@media screen and (min-width:68.75rem){.mr-xl-5{margin-right:5rem}}@media screen and (min-width:68.75rem){.mr-xl-6{margin-right:6rem}}@media screen and (min-width:68.75rem){.mr-xl-7{margin-right:7rem}}@media screen and (min-width:68.75rem){.mr-xl-8{margin-right:8rem}}@media screen and (min-width:68.75rem){.mr-xl-9{margin-right:9rem}}@media screen and (min-width:68.75rem){.mr-xl-10{margin-right:10rem}}@media screen and (min-width:0){.mb-xs-0{margin-bottom:0rem}}@media screen and (min-width:0){.mb-xs-1{margin-bottom:1rem}}@media screen and (min-width:0){.mb-xs-2{margin-bottom:2rem}}@media screen and (min-width:0){.mb-xs-3{margin-bottom:3rem}}@media screen and (min-width:0){.mb-xs-4{margin-bottom:4rem}}@media screen and (min-width:0){.mb-xs-5{margin-bottom:5rem}}@media screen and (min-width:0){.mb-xs-6{margin-bottom:6rem}}@media screen and (min-width:0){.mb-xs-7{margin-bottom:7rem}}@media screen and (min-width:0){.mb-xs-8{margin-bottom:8rem}}@media screen and (min-width:0){.mb-xs-9{margin-bottom:9rem}}@media screen and (min-width:0){.mb-xs-10{margin-bottom:10rem}}@media screen and (min-width:34.375rem){.mb-sm-0{margin-bottom:0rem}}@media screen and (min-width:34.375rem){.mb-sm-1{margin-bottom:1rem}}@media screen and (min-width:34.375rem){.mb-sm-2{margin-bottom:2rem}}@media screen and (min-width:34.375rem){.mb-sm-3{margin-bottom:3rem}}@media screen and (min-width:34.375rem){.mb-sm-4{margin-bottom:4rem}}@media screen and (min-width:34.375rem){.mb-sm-5{margin-bottom:5rem}}@media screen and (min-width:34.375rem){.mb-sm-6{margin-bottom:6rem}}@media screen and (min-width:34.375rem){.mb-sm-7{margin-bottom:7rem}}@media screen and (min-width:34.375rem){.mb-sm-8{margin-bottom:8rem}}@media screen and (min-width:34.375rem){.mb-sm-9{margin-bottom:9rem}}@media screen and (min-width:34.375rem){.mb-sm-10{margin-bottom:10rem}}@media screen and (min-width:48rem){.mb-md-0{margin-bottom:0rem}}@media screen and (min-width:48rem){.mb-md-1{margin-bottom:1rem}}@media screen and (min-width:48rem){.mb-md-2{margin-bottom:2rem}}@media screen and (min-width:48rem){.mb-md-3{margin-bottom:3rem}}@media screen and (min-width:48rem){.mb-md-4{margin-bottom:4rem}}@media screen and (min-width:48rem){.mb-md-5{margin-bottom:5rem}}@media screen and (min-width:48rem){.mb-md-6{margin-bottom:6rem}}@media screen and (min-width:48rem){.mb-md-7{margin-bottom:7rem}}@media screen and (min-width:48rem){.mb-md-8{margin-bottom:8rem}}@media screen and (min-width:48rem){.mb-md-9{margin-bottom:9rem}}@media screen and (min-width:48rem){.mb-md-10{margin-bottom:10rem}}@media screen and (min-width:58.75rem){.mb-lg-0{margin-bottom:0rem}}@media screen and (min-width:58.75rem){.mb-lg-1{margin-bottom:1rem}}@media screen and (min-width:58.75rem){.mb-lg-2{margin-bottom:2rem}}@media screen and (min-width:58.75rem){.mb-lg-3{margin-bottom:3rem}}@media screen and (min-width:58.75rem){.mb-lg-4{margin-bottom:4rem}}@media screen and (min-width:58.75rem){.mb-lg-5{margin-bottom:5rem}}@media screen and (min-width:58.75rem){.mb-lg-6{margin-bottom:6rem}}@media screen and (min-width:58.75rem){.mb-lg-7{margin-bottom:7rem}}@media screen and (min-width:58.75rem){.mb-lg-8{margin-bottom:8rem}}@media screen and (min-width:58.75rem){.mb-lg-9{margin-bottom:9rem}}@media screen and (min-width:58.75rem){.mb-lg-10{margin-bottom:10rem}}@media screen and (min-width:68.75rem){.mb-xl-0{margin-bottom:0rem}}@media screen and (min-width:68.75rem){.mb-xl-1{margin-bottom:1rem}}@media screen and (min-width:68.75rem){.mb-xl-2{margin-bottom:2rem}}@media screen and (min-width:68.75rem){.mb-xl-3{margin-bottom:3rem}}@media screen and (min-width:68.75rem){.mb-xl-4{margin-bottom:4rem}}@media screen and (min-width:68.75rem){.mb-xl-5{margin-bottom:5rem}}@media screen and (min-width:68.75rem){.mb-xl-6{margin-bottom:6rem}}@media screen and (min-width:68.75rem){.mb-xl-7{margin-bottom:7rem}}@media screen and (min-width:68.75rem){.mb-xl-8{margin-bottom:8rem}}@media screen and (min-width:68.75rem){.mb-xl-9{margin-bottom:9rem}}@media screen and (min-width:68.75rem){.mb-xl-10{margin-bottom:10rem}}@media screen and (min-width:0){.ml-xs-0{margin-left:0rem}}@media screen and (min-width:0){.ml-xs-1{margin-left:1rem}}@media screen and (min-width:0){.ml-xs-2{margin-left:2rem}}@media screen and (min-width:0){.ml-xs-3{margin-left:3rem}}@media screen and (min-width:0){.ml-xs-4{margin-left:4rem}}@media screen and (min-width:0){.ml-xs-5{margin-left:5rem}}@media screen and (min-width:0){.ml-xs-6{margin-left:6rem}}@media screen and (min-width:0){.ml-xs-7{margin-left:7rem}}@media screen and (min-width:0){.ml-xs-8{margin-left:8rem}}@media screen and (min-width:0){.ml-xs-9{margin-left:9rem}}@media screen and (min-width:0){.ml-xs-10{margin-left:10rem}}@media screen and (min-width:34.375rem){.ml-sm-0{margin-left:0rem}}@media screen and (min-width:34.375rem){.ml-sm-1{margin-left:1rem}}@media screen and (min-width:34.375rem){.ml-sm-2{margin-left:2rem}}@media screen and (min-width:34.375rem){.ml-sm-3{margin-left:3rem}}@media screen and (min-width:34.375rem){.ml-sm-4{margin-left:4rem}}@media screen and (min-width:34.375rem){.ml-sm-5{margin-left:5rem}}@media screen and (min-width:34.375rem){.ml-sm-6{margin-left:6rem}}@media screen and (min-width:34.375rem){.ml-sm-7{margin-left:7rem}}@media screen and (min-width:34.375rem){.ml-sm-8{margin-left:8rem}}@media screen and (min-width:34.375rem){.ml-sm-9{margin-left:9rem}}@media screen and (min-width:34.375rem){.ml-sm-10{margin-left:10rem}}@media screen and (min-width:48rem){.ml-md-0{margin-left:0rem}}@media screen and (min-width:48rem){.ml-md-1{margin-left:1rem}}@media screen and (min-width:48rem){.ml-md-2{margin-left:2rem}}@media screen and (min-width:48rem){.ml-md-3{margin-left:3rem}}@media screen and (min-width:48rem){.ml-md-4{margin-left:4rem}}@media screen and (min-width:48rem){.ml-md-5{margin-left:5rem}}@media screen and (min-width:48rem){.ml-md-6{margin-left:6rem}}@media screen and (min-width:48rem){.ml-md-7{margin-left:7rem}}@media screen and (min-width:48rem){.ml-md-8{margin-left:8rem}}@media screen and (min-width:48rem){.ml-md-9{margin-left:9rem}}@media screen and (min-width:48rem){.ml-md-10{margin-left:10rem}}@media screen and (min-width:58.75rem){.ml-lg-0{margin-left:0rem}}@media screen and (min-width:58.75rem){.ml-lg-1{margin-left:1rem}}@media screen and (min-width:58.75rem){.ml-lg-2{margin-left:2rem}}@media screen and (min-width:58.75rem){.ml-lg-3{margin-left:3rem}}@media screen and (min-width:58.75rem){.ml-lg-4{margin-left:4rem}}@media screen and (min-width:58.75rem){.ml-lg-5{margin-left:5rem}}@media screen and (min-width:58.75rem){.ml-lg-6{margin-left:6rem}}@media screen and (min-width:58.75rem){.ml-lg-7{margin-left:7rem}}@media screen and (min-width:58.75rem){.ml-lg-8{margin-left:8rem}}@media screen and (min-width:58.75rem){.ml-lg-9{margin-left:9rem}}@media screen and (min-width:58.75rem){.ml-lg-10{margin-left:10rem}}@media screen and (min-width:68.75rem){.ml-xl-0{margin-left:0rem}}@media screen and (min-width:68.75rem){.ml-xl-1{margin-left:1rem}}@media screen and (min-width:68.75rem){.ml-xl-2{margin-left:2rem}}@media screen and (min-width:68.75rem){.ml-xl-3{margin-left:3rem}}@media screen and (min-width:68.75rem){.ml-xl-4{margin-left:4rem}}@media screen and (min-width:68.75rem){.ml-xl-5{margin-left:5rem}}@media screen and (min-width:68.75rem){.ml-xl-6{margin-left:6rem}}@media screen and (min-width:68.75rem){.ml-xl-7{margin-left:7rem}}@media screen and (min-width:68.75rem){.ml-xl-8{margin-left:8rem}}@media screen and (min-width:68.75rem){.ml-xl-9{margin-left:9rem}}@media screen and (min-width:68.75rem){.ml-xl-10{margin-left:10rem}}@media screen and (min-width:0){.m-xs-0{margin:0rem}}@media screen and (min-width:0){.m-xs-1{margin:1rem}}@media screen and (min-width:0){.m-xs-2{margin:2rem}}@media screen and (min-width:0){.m-xs-3{margin:3rem}}@media screen and (min-width:0){.m-xs-4{margin:4rem}}@media screen and (min-width:0){.m-xs-5{margin:5rem}}@media screen and (min-width:0){.m-xs-6{margin:6rem}}@media screen and (min-width:0){.m-xs-7{margin:7rem}}@media screen and (min-width:0){.m-xs-8{margin:8rem}}@media screen and (min-width:0){.m-xs-9{margin:9rem}}@media screen and (min-width:0){.m-xs-10{margin:10rem}}@media screen and (min-width:34.375rem){.m-sm-0{margin:0rem}}@media screen and (min-width:34.375rem){.m-sm-1{margin:1rem}}@media screen and (min-width:34.375rem){.m-sm-2{margin:2rem}}@media screen and (min-width:34.375rem){.m-sm-3{margin:3rem}}@media screen and (min-width:34.375rem){.m-sm-4{margin:4rem}}@media screen and (min-width:34.375rem){.m-sm-5{margin:5rem}}@media screen and (min-width:34.375rem){.m-sm-6{margin:6rem}}@media screen and (min-width:34.375rem){.m-sm-7{margin:7rem}}@media screen and (min-width:34.375rem){.m-sm-8{margin:8rem}}@media screen and (min-width:34.375rem){.m-sm-9{margin:9rem}}@media screen and (min-width:34.375rem){.m-sm-10{margin:10rem}}@media screen and (min-width:48rem){.m-md-0{margin:0rem}}@media screen and (min-width:48rem){.m-md-1{margin:1rem}}@media screen and (min-width:48rem){.m-md-2{margin:2rem}}@media screen and (min-width:48rem){.m-md-3{margin:3rem}}@media screen and (min-width:48rem){.m-md-4{margin:4rem}}@media screen and (min-width:48rem){.m-md-5{margin:5rem}}@media screen and (min-width:48rem){.m-md-6{margin:6rem}}@media screen and (min-width:48rem){.m-md-7{margin:7rem}}@media screen and (min-width:48rem){.m-md-8{margin:8rem}}@media screen and (min-width:48rem){.m-md-9{margin:9rem}}@media screen and (min-width:48rem){.m-md-10{margin:10rem}}@media screen and (min-width:58.75rem){.m-lg-0{margin:0rem}}@media screen and (min-width:58.75rem){.m-lg-1{margin:1rem}}@media screen and (min-width:58.75rem){.m-lg-2{margin:2rem}}@media screen and (min-width:58.75rem){.m-lg-3{margin:3rem}}@media screen and (min-width:58.75rem){.m-lg-4{margin:4rem}}@media screen and (min-width:58.75rem){.m-lg-5{margin:5rem}}@media screen and (min-width:58.75rem){.m-lg-6{margin:6rem}}@media screen and (min-width:58.75rem){.m-lg-7{margin:7rem}}@media screen and (min-width:58.75rem){.m-lg-8{margin:8rem}}@media screen and (min-width:58.75rem){.m-lg-9{margin:9rem}}@media screen and (min-width:58.75rem){.m-lg-10{margin:10rem}}@media screen and (min-width:68.75rem){.m-xl-0{margin:0rem}}@media screen and (min-width:68.75rem){.m-xl-1{margin:1rem}}@media screen and (min-width:68.75rem){.m-xl-2{margin:2rem}}@media screen and (min-width:68.75rem){.m-xl-3{margin:3rem}}@media screen and (min-width:68.75rem){.m-xl-4{margin:4rem}}@media screen and (min-width:68.75rem){.m-xl-5{margin:5rem}}@media screen and (min-width:68.75rem){.m-xl-6{margin:6rem}}@media screen and (min-width:68.75rem){.m-xl-7{margin:7rem}}@media screen and (min-width:68.75rem){.m-xl-8{margin:8rem}}@media screen and (min-width:68.75rem){.m-xl-9{margin:9rem}}@media screen and (min-width:68.75rem){.m-xl-10{margin:10rem}}@media screen and (min-width:0){.pt-xs-0{padding-top:0rem}}@media screen and (min-width:0){.pt-xs-1{padding-top:1rem}}@media screen and (min-width:0){.pt-xs-2{padding-top:2rem}}@media screen and (min-width:0){.pt-xs-3{padding-top:3rem}}@media screen and (min-width:0){.pt-xs-4{padding-top:4rem}}@media screen and (min-width:0){.pt-xs-5{padding-top:5rem}}@media screen and (min-width:0){.pt-xs-6{padding-top:6rem}}@media screen and (min-width:0){.pt-xs-7{padding-top:7rem}}@media screen and (min-width:0){.pt-xs-8{padding-top:8rem}}@media screen and (min-width:0){.pt-xs-9{padding-top:9rem}}@media screen and (min-width:0){.pt-xs-10{padding-top:10rem}}@media screen and (min-width:34.375rem){.pt-sm-0{padding-top:0rem}}@media screen and (min-width:34.375rem){.pt-sm-1{padding-top:1rem}}@media screen and (min-width:34.375rem){.pt-sm-2{padding-top:2rem}}@media screen and (min-width:34.375rem){.pt-sm-3{padding-top:3rem}}@media screen and (min-width:34.375rem){.pt-sm-4{padding-top:4rem}}@media screen and (min-width:34.375rem){.pt-sm-5{padding-top:5rem}}@media screen and (min-width:34.375rem){.pt-sm-6{padding-top:6rem}}@media screen and (min-width:34.375rem){.pt-sm-7{padding-top:7rem}}@media screen and (min-width:34.375rem){.pt-sm-8{padding-top:8rem}}@media screen and (min-width:34.375rem){.pt-sm-9{padding-top:9rem}}@media screen and (min-width:34.375rem){.pt-sm-10{padding-top:10rem}}@media screen and (min-width:48rem){.pt-md-0{padding-top:0rem}}@media screen and (min-width:48rem){.pt-md-1{padding-top:1rem}}@media screen and (min-width:48rem){.pt-md-2{padding-top:2rem}}@media screen and (min-width:48rem){.pt-md-3{padding-top:3rem}}@media screen and (min-width:48rem){.pt-md-4{padding-top:4rem}}@media screen and (min-width:48rem){.pt-md-5{padding-top:5rem}}@media screen and (min-width:48rem){.pt-md-6{padding-top:6rem}}@media screen and (min-width:48rem){.pt-md-7{padding-top:7rem}}@media screen and (min-width:48rem){.pt-md-8{padding-top:8rem}}@media screen and (min-width:48rem){.pt-md-9{padding-top:9rem}}@media screen and (min-width:48rem){.pt-md-10{padding-top:10rem}}@media screen and (min-width:58.75rem){.pt-lg-0{padding-top:0rem}}@media screen and (min-width:58.75rem){.pt-lg-1{padding-top:1rem}}@media screen and (min-width:58.75rem){.pt-lg-2{padding-top:2rem}}@media screen and (min-width:58.75rem){.pt-lg-3{padding-top:3rem}}@media screen and (min-width:58.75rem){.pt-lg-4{padding-top:4rem}}@media screen and (min-width:58.75rem){.pt-lg-5{padding-top:5rem}}@media screen and (min-width:58.75rem){.pt-lg-6{padding-top:6rem}}@media screen and (min-width:58.75rem){.pt-lg-7{padding-top:7rem}}@media screen and (min-width:58.75rem){.pt-lg-8{padding-top:8rem}}@media screen and (min-width:58.75rem){.pt-lg-9{padding-top:9rem}}@media screen and (min-width:58.75rem){.pt-lg-10{padding-top:10rem}}@media screen and (min-width:68.75rem){.pt-xl-0{padding-top:0rem}}@media screen and (min-width:68.75rem){.pt-xl-1{padding-top:1rem}}@media screen and (min-width:68.75rem){.pt-xl-2{padding-top:2rem}}@media screen and (min-width:68.75rem){.pt-xl-3{padding-top:3rem}}@media screen and (min-width:68.75rem){.pt-xl-4{padding-top:4rem}}@media screen and (min-width:68.75rem){.pt-xl-5{padding-top:5rem}}@media screen and (min-width:68.75rem){.pt-xl-6{padding-top:6rem}}@media screen and (min-width:68.75rem){.pt-xl-7{padding-top:7rem}}@media screen and (min-width:68.75rem){.pt-xl-8{padding-top:8rem}}@media screen and (min-width:68.75rem){.pt-xl-9{padding-top:9rem}}@media screen and (min-width:68.75rem){.pt-xl-10{padding-top:10rem}}@media screen and (min-width:0){.pr-xs-0{padding-right:0rem}}@media screen and (min-width:0){.pr-xs-1{padding-right:1rem}}@media screen and (min-width:0){.pr-xs-2{padding-right:2rem}}@media screen and (min-width:0){.pr-xs-3{padding-right:3rem}}@media screen and (min-width:0){.pr-xs-4{padding-right:4rem}}@media screen and (min-width:0){.pr-xs-5{padding-right:5rem}}@media screen and (min-width:0){.pr-xs-6{padding-right:6rem}}@media screen and (min-width:0){.pr-xs-7{padding-right:7rem}}@media screen and (min-width:0){.pr-xs-8{padding-right:8rem}}@media screen and (min-width:0){.pr-xs-9{padding-right:9rem}}@media screen and (min-width:0){.pr-xs-10{padding-right:10rem}}@media screen and (min-width:34.375rem){.pr-sm-0{padding-right:0rem}}@media screen and (min-width:34.375rem){.pr-sm-1{padding-right:1rem}}@media screen and (min-width:34.375rem){.pr-sm-2{padding-right:2rem}}@media screen and (min-width:34.375rem){.pr-sm-3{padding-right:3rem}}@media screen and (min-width:34.375rem){.pr-sm-4{padding-right:4rem}}@media screen and (min-width:34.375rem){.pr-sm-5{padding-right:5rem}}@media screen and (min-width:34.375rem){.pr-sm-6{padding-right:6rem}}@media screen and (min-width:34.375rem){.pr-sm-7{padding-right:7rem}}@media screen and (min-width:34.375rem){.pr-sm-8{padding-right:8rem}}@media screen and (min-width:34.375rem){.pr-sm-9{padding-right:9rem}}@media screen and (min-width:34.375rem){.pr-sm-10{padding-right:10rem}}@media screen and (min-width:48rem){.pr-md-0{padding-right:0rem}}@media screen and (min-width:48rem){.pr-md-1{padding-right:1rem}}@media screen and (min-width:48rem){.pr-md-2{padding-right:2rem}}@media screen and (min-width:48rem){.pr-md-3{padding-right:3rem}}@media screen and (min-width:48rem){.pr-md-4{padding-right:4rem}}@media screen and (min-width:48rem){.pr-md-5{padding-right:5rem}}@media screen and (min-width:48rem){.pr-md-6{padding-right:6rem}}@media screen and (min-width:48rem){.pr-md-7{padding-right:7rem}}@media screen and (min-width:48rem){.pr-md-8{padding-right:8rem}}@media screen and (min-width:48rem){.pr-md-9{padding-right:9rem}}@media screen and (min-width:48rem){.pr-md-10{padding-right:10rem}}@media screen and (min-width:58.75rem){.pr-lg-0{padding-right:0rem}}@media screen and (min-width:58.75rem){.pr-lg-1{padding-right:1rem}}@media screen and (min-width:58.75rem){.pr-lg-2{padding-right:2rem}}@media screen and (min-width:58.75rem){.pr-lg-3{padding-right:3rem}}@media screen and (min-width:58.75rem){.pr-lg-4{padding-right:4rem}}@media screen and (min-width:58.75rem){.pr-lg-5{padding-right:5rem}}@media screen and (min-width:58.75rem){.pr-lg-6{padding-right:6rem}}@media screen and (min-width:58.75rem){.pr-lg-7{padding-right:7rem}}@media screen and (min-width:58.75rem){.pr-lg-8{padding-right:8rem}}@media screen and (min-width:58.75rem){.pr-lg-9{padding-right:9rem}}@media screen and (min-width:58.75rem){.pr-lg-10{padding-right:10rem}}@media screen and (min-width:68.75rem){.pr-xl-0{padding-right:0rem}}@media screen and (min-width:68.75rem){.pr-xl-1{padding-right:1rem}}@media screen and (min-width:68.75rem){.pr-xl-2{padding-right:2rem}}@media screen and (min-width:68.75rem){.pr-xl-3{padding-right:3rem}}@media screen and (min-width:68.75rem){.pr-xl-4{padding-right:4rem}}@media screen and (min-width:68.75rem){.pr-xl-5{padding-right:5rem}}@media screen and (min-width:68.75rem){.pr-xl-6{padding-right:6rem}}@media screen and (min-width:68.75rem){.pr-xl-7{padding-right:7rem}}@media screen and (min-width:68.75rem){.pr-xl-8{padding-right:8rem}}@media screen and (min-width:68.75rem){.pr-xl-9{padding-right:9rem}}@media screen and (min-width:68.75rem){.pr-xl-10{padding-right:10rem}}@media screen and (min-width:0){.pb-xs-0{padding-bottom:0rem}}@media screen and (min-width:0){.pb-xs-1{padding-bottom:1rem}}@media screen and (min-width:0){.pb-xs-2{padding-bottom:2rem}}@media screen and (min-width:0){.pb-xs-3{padding-bottom:3rem}}@media screen and (min-width:0){.pb-xs-4{padding-bottom:4rem}}@media screen and (min-width:0){.pb-xs-5{padding-bottom:5rem}}@media screen and (min-width:0){.pb-xs-6{padding-bottom:6rem}}@media screen and (min-width:0){.pb-xs-7{padding-bottom:7rem}}@media screen and (min-width:0){.pb-xs-8{padding-bottom:8rem}}@media screen and (min-width:0){.pb-xs-9{padding-bottom:9rem}}@media screen and (min-width:0){.pb-xs-10{padding-bottom:10rem}}@media screen and (min-width:34.375rem){.pb-sm-0{padding-bottom:0rem}}@media screen and (min-width:34.375rem){.pb-sm-1{padding-bottom:1rem}}@media screen and (min-width:34.375rem){.pb-sm-2{padding-bottom:2rem}}@media screen and (min-width:34.375rem){.pb-sm-3{padding-bottom:3rem}}@media screen and (min-width:34.375rem){.pb-sm-4{padding-bottom:4rem}}@media screen and (min-width:34.375rem){.pb-sm-5{padding-bottom:5rem}}@media screen and (min-width:34.375rem){.pb-sm-6{padding-bottom:6rem}}@media screen and (min-width:34.375rem){.pb-sm-7{padding-bottom:7rem}}@media screen and (min-width:34.375rem){.pb-sm-8{padding-bottom:8rem}}@media screen and (min-width:34.375rem){.pb-sm-9{padding-bottom:9rem}}@media screen and (min-width:34.375rem){.pb-sm-10{padding-bottom:10rem}}@media screen and (min-width:48rem){.pb-md-0{padding-bottom:0rem}}@media screen and (min-width:48rem){.pb-md-1{padding-bottom:1rem}}@media screen and (min-width:48rem){.pb-md-2{padding-bottom:2rem}}@media screen and (min-width:48rem){.pb-md-3{padding-bottom:3rem}}@media screen and (min-width:48rem){.pb-md-4{padding-bottom:4rem}}@media screen and (min-width:48rem){.pb-md-5{padding-bottom:5rem}}@media screen and (min-width:48rem){.pb-md-6{padding-bottom:6rem}}@media screen and (min-width:48rem){.pb-md-7{padding-bottom:7rem}}@media screen and (min-width:48rem){.pb-md-8{padding-bottom:8rem}}@media screen and (min-width:48rem){.pb-md-9{padding-bottom:9rem}}@media screen and (min-width:48rem){.pb-md-10{padding-bottom:10rem}}@media screen and (min-width:58.75rem){.pb-lg-0{padding-bottom:0rem}}@media screen and (min-width:58.75rem){.pb-lg-1{padding-bottom:1rem}}@media screen and (min-width:58.75rem){.pb-lg-2{padding-bottom:2rem}}@media screen and (min-width:58.75rem){.pb-lg-3{padding-bottom:3rem}}@media screen and (min-width:58.75rem){.pb-lg-4{padding-bottom:4rem}}@media screen and (min-width:58.75rem){.pb-lg-5{padding-bottom:5rem}}@media screen and (min-width:58.75rem){.pb-lg-6{padding-bottom:6rem}}@media screen and (min-width:58.75rem){.pb-lg-7{padding-bottom:7rem}}@media screen and (min-width:58.75rem){.pb-lg-8{padding-bottom:8rem}}@media screen and (min-width:58.75rem){.pb-lg-9{padding-bottom:9rem}}@media screen and (min-width:58.75rem){.pb-lg-10{padding-bottom:10rem}}@media screen and (min-width:68.75rem){.pb-xl-0{padding-bottom:0rem}}@media screen and (min-width:68.75rem){.pb-xl-1{padding-bottom:1rem}}@media screen and (min-width:68.75rem){.pb-xl-2{padding-bottom:2rem}}@media screen and (min-width:68.75rem){.pb-xl-3{padding-bottom:3rem}}@media screen and (min-width:68.75rem){.pb-xl-4{padding-bottom:4rem}}@media screen and (min-width:68.75rem){.pb-xl-5{padding-bottom:5rem}}@media screen and (min-width:68.75rem){.pb-xl-6{padding-bottom:6rem}}@media screen and (min-width:68.75rem){.pb-xl-7{padding-bottom:7rem}}@media screen and (min-width:68.75rem){.pb-xl-8{padding-bottom:8rem}}@media screen and (min-width:68.75rem){.pb-xl-9{padding-bottom:9rem}}@media screen and (min-width:68.75rem){.pb-xl-10{padding-bottom:10rem}}@media screen and (min-width:0){.pl-xs-0{padding-left:0rem}}@media screen and (min-width:0){.pl-xs-1{padding-left:1rem}}@media screen and (min-width:0){.pl-xs-2{padding-left:2rem}}@media screen and (min-width:0){.pl-xs-3{padding-left:3rem}}@media screen and (min-width:0){.pl-xs-4{padding-left:4rem}}@media screen and (min-width:0){.pl-xs-5{padding-left:5rem}}@media screen and (min-width:0){.pl-xs-6{padding-left:6rem}}@media screen and (min-width:0){.pl-xs-7{padding-left:7rem}}@media screen and (min-width:0){.pl-xs-8{padding-left:8rem}}@media screen and (min-width:0){.pl-xs-9{padding-left:9rem}}@media screen and (min-width:0){.pl-xs-10{padding-left:10rem}}@media screen and (min-width:34.375rem){.pl-sm-0{padding-left:0rem}}@media screen and (min-width:34.375rem){.pl-sm-1{padding-left:1rem}}@media screen and (min-width:34.375rem){.pl-sm-2{padding-left:2rem}}@media screen and (min-width:34.375rem){.pl-sm-3{padding-left:3rem}}@media screen and (min-width:34.375rem){.pl-sm-4{padding-left:4rem}}@media screen and (min-width:34.375rem){.pl-sm-5{padding-left:5rem}}@media screen and (min-width:34.375rem){.pl-sm-6{padding-left:6rem}}@media screen and (min-width:34.375rem){.pl-sm-7{padding-left:7rem}}@media screen and (min-width:34.375rem){.pl-sm-8{padding-left:8rem}}@media screen and (min-width:34.375rem){.pl-sm-9{padding-left:9rem}}@media screen and (min-width:34.375rem){.pl-sm-10{padding-left:10rem}}@media screen and (min-width:48rem){.pl-md-0{padding-left:0rem}}@media screen and (min-width:48rem){.pl-md-1{padding-left:1rem}}@media screen and (min-width:48rem){.pl-md-2{padding-left:2rem}}@media screen and (min-width:48rem){.pl-md-3{padding-left:3rem}}@media screen and (min-width:48rem){.pl-md-4{padding-left:4rem}}@media screen and (min-width:48rem){.pl-md-5{padding-left:5rem}}@media screen and (min-width:48rem){.pl-md-6{padding-left:6rem}}@media screen and (min-width:48rem){.pl-md-7{padding-left:7rem}}@media screen and (min-width:48rem){.pl-md-8{padding-left:8rem}}@media screen and (min-width:48rem){.pl-md-9{padding-left:9rem}}@media screen and (min-width:48rem){.pl-md-10{padding-left:10rem}}@media screen and (min-width:58.75rem){.pl-lg-0{padding-left:0rem}}@media screen and (min-width:58.75rem){.pl-lg-1{padding-left:1rem}}@media screen and (min-width:58.75rem){.pl-lg-2{padding-left:2rem}}@media screen and (min-width:58.75rem){.pl-lg-3{padding-left:3rem}}@media screen and (min-width:58.75rem){.pl-lg-4{padding-left:4rem}}@media screen and (min-width:58.75rem){.pl-lg-5{padding-left:5rem}}@media screen and (min-width:58.75rem){.pl-lg-6{padding-left:6rem}}@media screen and (min-width:58.75rem){.pl-lg-7{padding-left:7rem}}@media screen and (min-width:58.75rem){.pl-lg-8{padding-left:8rem}}@media screen and (min-width:58.75rem){.pl-lg-9{padding-left:9rem}}@media screen and (min-width:58.75rem){.pl-lg-10{padding-left:10rem}}@media screen and (min-width:68.75rem){.pl-xl-0{padding-left:0rem}}@media screen and (min-width:68.75rem){.pl-xl-1{padding-left:1rem}}@media screen and (min-width:68.75rem){.pl-xl-2{padding-left:2rem}}@media screen and (min-width:68.75rem){.pl-xl-3{padding-left:3rem}}@media screen and (min-width:68.75rem){.pl-xl-4{padding-left:4rem}}@media screen and (min-width:68.75rem){.pl-xl-5{padding-left:5rem}}@media screen and (min-width:68.75rem){.pl-xl-6{padding-left:6rem}}@media screen and (min-width:68.75rem){.pl-xl-7{padding-left:7rem}}@media screen and (min-width:68.75rem){.pl-xl-8{padding-left:8rem}}@media screen and (min-width:68.75rem){.pl-xl-9{padding-left:9rem}}@media screen and (min-width:68.75rem){.pl-xl-10{padding-left:10rem}}@media screen and (min-width:0){.p-xs-0{padding:0rem}}@media screen and (min-width:0){.p-xs-1{padding:1rem}}@media screen and (min-width:0){.p-xs-2{padding:2rem}}@media screen and (min-width:0){.p-xs-3{padding:3rem}}@media screen and (min-width:0){.p-xs-4{padding:4rem}}@media screen and (min-width:0){.p-xs-5{padding:5rem}}@media screen and (min-width:0){.p-xs-6{padding:6rem}}@media screen and (min-width:0){.p-xs-7{padding:7rem}}@media screen and (min-width:0){.p-xs-8{padding:8rem}}@media screen and (min-width:0){.p-xs-9{padding:9rem}}@media screen and (min-width:0){.p-xs-10{padding:10rem}}@media screen and (min-width:34.375rem){.p-sm-0{padding:0rem}}@media screen and (min-width:34.375rem){.p-sm-1{padding:1rem}}@media screen and (min-width:34.375rem){.p-sm-2{padding:2rem}}@media screen and (min-width:34.375rem){.p-sm-3{padding:3rem}}@media screen and (min-width:34.375rem){.p-sm-4{padding:4rem}}@media screen and (min-width:34.375rem){.p-sm-5{padding:5rem}}@media screen and (min-width:34.375rem){.p-sm-6{padding:6rem}}@media screen and (min-width:34.375rem){.p-sm-7{padding:7rem}}@media screen and (min-width:34.375rem){.p-sm-8{padding:8rem}}@media screen and (min-width:34.375rem){.p-sm-9{padding:9rem}}@media screen and (min-width:34.375rem){.p-sm-10{padding:10rem}}@media screen and (min-width:48rem){.p-md-0{padding:0rem}}@media screen and (min-width:48rem){.p-md-1{padding:1rem}}@media screen and (min-width:48rem){.p-md-2{padding:2rem}}@media screen and (min-width:48rem){.p-md-3{padding:3rem}}@media screen and (min-width:48rem){.p-md-4{padding:4rem}}@media screen and (min-width:48rem){.p-md-5{padding:5rem}}@media screen and (min-width:48rem){.p-md-6{padding:6rem}}@media screen and (min-width:48rem){.p-md-7{padding:7rem}}@media screen and (min-width:48rem){.p-md-8{padding:8rem}}@media screen and (min-width:48rem){.p-md-9{padding:9rem}}@media screen and (min-width:48rem){.p-md-10{padding:10rem}}@media screen and (min-width:58.75rem){.p-lg-0{padding:0rem}}@media screen and (min-width:58.75rem){.p-lg-1{padding:1rem}}@media screen and (min-width:58.75rem){.p-lg-2{padding:2rem}}@media screen and (min-width:58.75rem){.p-lg-3{padding:3rem}}@media screen and (min-width:58.75rem){.p-lg-4{padding:4rem}}@media screen and (min-width:58.75rem){.p-lg-5{padding:5rem}}@media screen and (min-width:58.75rem){.p-lg-6{padding:6rem}}@media screen and (min-width:58.75rem){.p-lg-7{padding:7rem}}@media screen and (min-width:58.75rem){.p-lg-8{padding:8rem}}@media screen and (min-width:58.75rem){.p-lg-9{padding:9rem}}@media screen and (min-width:58.75rem){.p-lg-10{padding:10rem}}@media screen and (min-width:68.75rem){.p-xl-0{padding:0rem}}@media screen and (min-width:68.75rem){.p-xl-1{padding:1rem}}@media screen and (min-width:68.75rem){.p-xl-2{padding:2rem}}@media screen and (min-width:68.75rem){.p-xl-3{padding:3rem}}@media screen and (min-width:68.75rem){.p-xl-4{padding:4rem}}@media screen and (min-width:68.75rem){.p-xl-5{padding:5rem}}@media screen and (min-width:68.75rem){.p-xl-6{padding:6rem}}@media screen and (min-width:68.75rem){.p-xl-7{padding:7rem}}@media screen and (min-width:68.75rem){.p-xl-8{padding:8rem}}@media screen and (min-width:68.75rem){.p-xl-9{padding:9rem}}@media screen and (min-width:68.75rem){.p-xl-10{padding:10rem}}.cw-mw-100 .centered-wrapper-inner{max-width:100px}@media screen and (min-width:100px){.cw-mw-100 .centered-wrapper-inner{margin-left:auto;margin-right:auto}}.mw-100{max-width:100px;margin-left:auto;margin-right:auto}.cw-mw-150 .centered-wrapper-inner{max-width:150px}@media screen and (min-width:150px){.cw-mw-150 .centered-wrapper-inner{margin-left:auto;margin-right:auto}}.mw-150{max-width:150px;margin-left:auto;margin-right:auto}.cw-mw-200 .centered-wrapper-inner{max-width:200px}@media screen and (min-width:200px){.cw-mw-200 .centered-wrapper-inner{margin-left:auto;margin-right:auto}}.mw-200{max-width:200px;margin-left:auto;margin-right:auto}.cw-mw-250 .centered-wrapper-inner{max-width:250px}@media screen and (min-width:250px){.cw-mw-250 .centered-wrapper-inner{margin-left:auto;margin-right:auto}}.mw-250{max-width:250px;margin-left:auto;margin-right:auto}.cw-mw-300 .centered-wrapper-inner{max-width:300px}@media screen and (min-width:300px){.cw-mw-300 .centered-wrapper-inner{margin-left:auto;margin-right:auto}}.mw-300{max-width:300px;margin-left:auto;margin-right:auto}.cw-mw-350 .centered-wrapper-inner{max-width:350px}@media screen and (min-width:350px){.cw-mw-350 .centered-wrapper-inner{margin-left:auto;margin-right:auto}}.mw-350{max-width:350px;margin-left:auto;margin-right:auto}.cw-mw-400 .centered-wrapper-inner{max-width:400px}@media screen and (min-width:400px){.cw-mw-400 .centered-wrapper-inner{margin-left:auto;margin-right:auto}}.mw-400{max-width:400px;margin-left:auto;margin-right:auto}.cw-mw-450 .centered-wrapper-inner{max-width:450px}@media screen and (min-width:450px){.cw-mw-450 .centered-wrapper-inner{margin-left:auto;margin-right:auto}}.mw-450{max-width:450px;margin-left:auto;margin-right:auto}.cw-mw-500 .centered-wrapper-inner{max-width:500px}@media screen and (min-width:500px){.cw-mw-500 .centered-wrapper-inner{margin-left:auto;margin-right:auto}}.mw-500{max-width:500px;margin-left:auto;margin-right:auto}.cw-mw-550 .centered-wrapper-inner{max-width:550px}@media screen and (min-width:550px){.cw-mw-550 .centered-wrapper-inner{margin-left:auto;margin-right:auto}}.mw-550{max-width:550px;margin-left:auto;margin-right:auto}.cw-mw-600 .centered-wrapper-inner{max-width:600px}@media screen and (min-width:600px){.cw-mw-600 .centered-wrapper-inner{margin-left:auto;margin-right:auto}}.mw-600{max-width:600px;margin-left:auto;margin-right:auto}.cw-mw-650 .centered-wrapper-inner{max-width:650px}@media screen and (min-width:650px){.cw-mw-650 .centered-wrapper-inner{margin-left:auto;margin-right:auto}}.mw-650{max-width:650px;margin-left:auto;margin-right:auto}.cw-mw-700 .centered-wrapper-inner{max-width:700px}@media screen and (min-width:700px){.cw-mw-700 .centered-wrapper-inner{margin-left:auto;margin-right:auto}}.mw-700{max-width:700px;margin-left:auto;margin-right:auto}.cw-mw-750 .centered-wrapper-inner{max-width:750px}@media screen and (min-width:750px){.cw-mw-750 .centered-wrapper-inner{margin-left:auto;margin-right:auto}}.mw-750{max-width:750px;margin-left:auto;margin-right:auto}.cw-mw-800 .centered-wrapper-inner{max-width:800px}@media screen and (min-width:800px){.cw-mw-800 .centered-wrapper-inner{margin-left:auto;margin-right:auto}}.mw-800{max-width:800px;margin-left:auto;margin-right:auto}.cw-mw-850 .centered-wrapper-inner{max-width:850px}@media screen and (min-width:850px){.cw-mw-850 .centered-wrapper-inner{margin-left:auto;margin-right:auto}}.mw-850{max-width:850px;margin-left:auto;margin-right:auto}.cw-mw-900 .centered-wrapper-inner{max-width:900px}@media screen and (min-width:900px){.cw-mw-900 .centered-wrapper-inner{margin-left:auto;margin-right:auto}}.mw-900{max-width:900px;margin-left:auto;margin-right:auto}.cw-mw-950 .centered-wrapper-inner{max-width:950px}@media screen and (min-width:950px){.cw-mw-950 .centered-wrapper-inner{margin-left:auto;margin-right:auto}}.mw-950{max-width:950px;margin-left:auto;margin-right:auto}.cw-mw-1000 .centered-wrapper-inner{max-width:1000px}@media screen and (min-width:1000px){.cw-mw-1000 .centered-wrapper-inner{margin-left:auto;margin-right:auto}}.mw-1000{max-width:1000px;margin-left:auto;margin-right:auto}.cw-mw-1050 .centered-wrapper-inner{max-width:1050px}@media screen and (min-width:1050px){.cw-mw-1050 .centered-wrapper-inner{margin-left:auto;margin-right:auto}}.mw-1050{max-width:1050px;margin-left:auto;margin-right:auto}.cw-mw-1100 .centered-wrapper-inner{max-width:1100px}@media screen and (min-width:1100px){.cw-mw-1100 .centered-wrapper-inner{margin-left:auto;margin-right:auto}}.mw-1100{max-width:1100px;margin-left:auto;margin-right:auto}.cw-mw-1150 .centered-wrapper-inner{max-width:1150px}@media screen and (min-width:1150px){.cw-mw-1150 .centered-wrapper-inner{margin-left:auto;margin-right:auto}}.mw-1150{max-width:1150px;margin-left:auto;margin-right:auto}.cw-mw-1200 .centered-wrapper-inner{max-width:1200px}@media screen and (min-width:1200px){.cw-mw-1200 .centered-wrapper-inner{margin-left:auto;margin-right:auto}}.mw-1200{max-width:1200px;margin-left:auto;margin-right:auto}.cw-mw-1250 .centered-wrapper-inner{max-width:1250px}@media screen and (min-width:1250px){.cw-mw-1250 .centered-wrapper-inner{margin-left:auto;margin-right:auto}}.mw-1250{max-width:1250px;margin-left:auto;margin-right:auto}.cw-mw-1300 .centered-wrapper-inner{max-width:1300px}@media screen and (min-width:1300px){.cw-mw-1300 .centered-wrapper-inner{margin-left:auto;margin-right:auto}}.mw-1300{max-width:1300px;margin-left:auto;margin-right:auto}.cw-mw-1350 .centered-wrapper-inner{max-width:1350px}@media screen and (min-width:1350px){.cw-mw-1350 .centered-wrapper-inner{margin-left:auto;margin-right:auto}}.mw-1350{max-width:1350px;margin-left:auto;margin-right:auto}.cw-mw-1400 .centered-wrapper-inner{max-width:1400px}@media screen and (min-width:1400px){.cw-mw-1400 .centered-wrapper-inner{margin-left:auto;margin-right:auto}}.mw-1400{max-width:1400px;margin-left:auto;margin-right:auto}.cw-mw-1450 .centered-wrapper-inner{max-width:1450px}@media screen and (min-width:1450px){.cw-mw-1450 .centered-wrapper-inner{margin-left:auto;margin-right:auto}}.mw-1450{max-width:1450px;margin-left:auto;margin-right:auto}@media screen and (min-width:900px){.mh-d-200 .centered-wrapper-inner{min-height:200px}.mh-d-200{min-height:200px}}@media screen and (min-width:900px){.mh-d-250 .centered-wrapper-inner{min-height:250px}.mh-d-250{min-height:250px}}@media screen and (min-width:900px){.mh-d-300 .centered-wrapper-inner{min-height:300px}.mh-d-300{min-height:300px}}@media screen and (min-width:900px){.mh-d-350 .centered-wrapper-inner{min-height:350px}.mh-d-350{min-height:350px}}@media screen and (min-width:900px){.mh-d-400 .centered-wrapper-inner{min-height:400px}.mh-d-400{min-height:400px}}@media screen and (min-width:900px){.mh-d-450 .centered-wrapper-inner{min-height:450px}.mh-d-450{min-height:450px}}@media screen and (min-width:900px){.mh-d-500 .centered-wrapper-inner{min-height:500px}.mh-d-500{min-height:500px}}@media screen and (min-width:900px){.mh-d-550 .centered-wrapper-inner{min-height:550px}.mh-d-550{min-height:550px}}@media screen and (min-width:900px){.mh-d-600 .centered-wrapper-inner{min-height:600px}.mh-d-600{min-height:600px}}@media screen and (min-width:900px){.mh-d-650 .centered-wrapper-inner{min-height:650px}.mh-d-650{min-height:650px}}@media screen and (min-width:900px){.mh-d-700 .centered-wrapper-inner{min-height:700px}.mh-d-700{min-height:700px}}@media screen and (min-width:900px){.mh-d-750 .centered-wrapper-inner{min-height:750px}.mh-d-750{min-height:750px}}@media screen and (min-width:900px){.mh-d-800 .centered-wrapper-inner{min-height:800px}.mh-d-800{min-height:800px}}@media screen and (min-width:900px){.mh-d-850 .centered-wrapper-inner{min-height:850px}.mh-d-850{min-height:850px}}@media screen and (min-width:900px){.mh-d-900 .centered-wrapper-inner{min-height:900px}.mh-d-900{min-height:900px}}@media screen and (min-width:900px){.mh-d-950 .centered-wrapper-inner{min-height:950px}.mh-d-950{min-height:950px}}@media screen and (min-width:900px){.mh-d-1000 .centered-wrapper-inner{min-height:1000px}.mh-d-1000{min-height:1000px}}@media screen and (max-width:899px) and (min-width:600px){.mh-t-200 .centered-wrapper-inner{min-height:200px}.mh-t-200{min-height:200px}}@media screen and (max-width:899px) and (min-width:600px){.mh-t-250 .centered-wrapper-inner{min-height:250px}.mh-t-250{min-height:250px}}@media screen and (max-width:899px) and (min-width:600px){.mh-t-300 .centered-wrapper-inner{min-height:300px}.mh-t-300{min-height:300px}}@media screen and (max-width:899px) and (min-width:600px){.mh-t-350 .centered-wrapper-inner{min-height:350px}.mh-t-350{min-height:350px}}@media screen and (max-width:899px) and (min-width:600px){.mh-t-400 .centered-wrapper-inner{min-height:400px}.mh-t-400{min-height:400px}}@media screen and (max-width:899px) and (min-width:600px){.mh-t-450 .centered-wrapper-inner{min-height:450px}.mh-t-450{min-height:450px}}@media screen and (max-width:899px) and (min-width:600px){.mh-t-500 .centered-wrapper-inner{min-height:500px}.mh-t-500{min-height:500px}}@media screen and (max-width:899px) and (min-width:600px){.mh-t-550 .centered-wrapper-inner{min-height:550px}.mh-t-550{min-height:550px}}@media screen and (max-width:899px) and (min-width:600px){.mh-t-600 .centered-wrapper-inner{min-height:600px}.mh-t-600{min-height:600px}}@media screen and (max-width:899px) and (min-width:600px){.mh-t-650 .centered-wrapper-inner{min-height:650px}.mh-t-650{min-height:650px}}@media screen and (max-width:899px) and (min-width:600px){.mh-t-700 .centered-wrapper-inner{min-height:700px}.mh-t-700{min-height:700px}}@media screen and (max-width:899px) and (min-width:600px){.mh-t-750 .centered-wrapper-inner{min-height:750px}.mh-t-750{min-height:750px}}@media screen and (max-width:899px) and (min-width:600px){.mh-t-800 .centered-wrapper-inner{min-height:800px}.mh-t-800{min-height:800px}}@media screen and (max-width:899px) and (min-width:600px){.mh-t-850 .centered-wrapper-inner{min-height:850px}.mh-t-850{min-height:850px}}@media screen and (max-width:899px) and (min-width:600px){.mh-t-900 .centered-wrapper-inner{min-height:900px}.mh-t-900{min-height:900px}}@media screen and (max-width:899px) and (min-width:600px){.mh-t-950 .centered-wrapper-inner{min-height:950px}.mh-t-950{min-height:950px}}@media screen and (max-width:899px) and (min-width:600px){.mh-t-1000 .centered-wrapper-inner{min-height:1000px}.mh-t-1000{min-height:1000px}}@media screen and (max-width:599px){.mh-m-200 .centered-wrapper-inner{min-height:200px}.mh-m-200{min-height:200px}}@media screen and (max-width:599px){.mh-m-250 .centered-wrapper-inner{min-height:250px}.mh-m-250{min-height:250px}}@media screen and (max-width:599px){.mh-m-300 .centered-wrapper-inner{min-height:300px}.mh-m-300{min-height:300px}}@media screen and (max-width:599px){.mh-m-350 .centered-wrapper-inner{min-height:350px}.mh-m-350{min-height:350px}}@media screen and (max-width:599px){.mh-m-400 .centered-wrapper-inner{min-height:400px}.mh-m-400{min-height:400px}}@media screen and (max-width:599px){.mh-m-450 .centered-wrapper-inner{min-height:450px}.mh-m-450{min-height:450px}}@media screen and (max-width:599px){.mh-m-500 .centered-wrapper-inner{min-height:500px}.mh-m-500{min-height:500px}}@media screen and (max-width:599px){.mh-m-550 .centered-wrapper-inner{min-height:550px}.mh-m-550{min-height:550px}}@media screen and (max-width:599px){.mh-m-600 .centered-wrapper-inner{min-height:600px}.mh-m-600{min-height:600px}}@media screen and (max-width:599px){.mh-m-650 .centered-wrapper-inner{min-height:650px}.mh-m-650{min-height:650px}}@media screen and (max-width:599px){.mh-m-700 .centered-wrapper-inner{min-height:700px}.mh-m-700{min-height:700px}}@media screen and (max-width:599px){.mh-m-750 .centered-wrapper-inner{min-height:750px}.mh-m-750{min-height:750px}}@media screen and (max-width:599px){.mh-m-800 .centered-wrapper-inner{min-height:800px}.mh-m-800{min-height:800px}}@media screen and (max-width:599px){.mh-m-850 .centered-wrapper-inner{min-height:850px}.mh-m-850{min-height:850px}}@media screen and (max-width:599px){.mh-m-900 .centered-wrapper-inner{min-height:900px}.mh-m-900{min-height:900px}}@media screen and (max-width:599px){.mh-m-950 .centered-wrapper-inner{min-height:950px}.mh-m-950{min-height:950px}}@media screen and (max-width:599px){.mh-m-1000 .centered-wrapper-inner{min-height:1000px}.mh-m-1000{min-height:1000px}}.bg-green{background-color:#28792C}.bg-green a,.bg-green p{color:white}.bg-darkgreen{background-color:#134711}.bg-darkgreen a,.bg-darkgreen p{color:white}.bg-yellow{background-color:#FAF3A5}.bg-yellow a,.bg-yellow p{color:#134711}.bg-white{background-color:#ffffff}.bg-white a,.bg-white p{color:#134711}.bg-primary{background-color:#717c8e}.bg-primary a,.bg-primary p{color:white}.bg-lightergold{background-color:#F9F7F3}.bg-lightergold a,.bg-lightergold p{color:#555555}.bg-lightgold{background-color:#F4F0E8}.bg-lightgold a,.bg-lightgold p{color:#555555}.bg-secondary{background-color:#8570a6}.bg-secondary a,.bg-secondary p{color:#555555}.green{color:#28792C}.strong-green strong,strong.strong-green{color:#28792C}.darkgreen{color:#134711}.strong-darkgreen strong,strong.strong-darkgreen{color:#134711}.yellow{color:#FAF3A5}.strong-yellow strong,strong.strong-yellow{color:#FAF3A5}.white{color:#ffffff}.strong-white strong,strong.strong-white{color:#ffffff}.primary{color:#717c8e}.strong-primary strong,strong.strong-primary{color:#717c8e}.lightergold{color:#F9F7F3}.strong-lightergold strong,strong.strong-lightergold{color:#F9F7F3}.lightgold{color:#F4F0E8}.strong-lightgold strong,strong.strong-lightgold{color:#F4F0E8}.secondary{color:#8570a6}.strong-secondary strong,strong.strong-secondary{color:#8570a6}.hl-green h1,.hl-green h2,.hl-green h3,.hl-green h4,.hl-green h5,.hl-green h6{color:#28792C}h1.hl-green,h2.hl-green,h3.hl-green,h4.hl-green,h5.hl-green,h6.hl-green{color:#28792C}.hl-darkgreen h1,.hl-darkgreen h2,.hl-darkgreen h3,.hl-darkgreen h4,.hl-darkgreen h5,.hl-darkgreen h6{color:#134711}h1.hl-darkgreen,h2.hl-darkgreen,h3.hl-darkgreen,h4.hl-darkgreen,h5.hl-darkgreen,h6.hl-darkgreen{color:#134711}.hl-yellow h1,.hl-yellow h2,.hl-yellow h3,.hl-yellow h4,.hl-yellow h5,.hl-yellow h6{color:#FAF3A5}h1.hl-yellow,h2.hl-yellow,h3.hl-yellow,h4.hl-yellow,h5.hl-yellow,h6.hl-yellow{color:#FAF3A5}.hl-white h1,.hl-white h2,.hl-white h3,.hl-white h4,.hl-white h5,.hl-white h6{color:#ffffff}h1.hl-white,h2.hl-white,h3.hl-white,h4.hl-white,h5.hl-white,h6.hl-white{color:#ffffff}.hl-primary h1,.hl-primary h2,.hl-primary h3,.hl-primary h4,.hl-primary h5,.hl-primary h6{color:#717c8e}h1.hl-primary,h2.hl-primary,h3.hl-primary,h4.hl-primary,h5.hl-primary,h6.hl-primary{color:#717c8e}.hl-lightergold h1,.hl-lightergold h2,.hl-lightergold h3,.hl-lightergold h4,.hl-lightergold h5,.hl-lightergold h6{color:#F9F7F3}h1.hl-lightergold,h2.hl-lightergold,h3.hl-lightergold,h4.hl-lightergold,h5.hl-lightergold,h6.hl-lightergold{color:#F9F7F3}.hl-lightgold h1,.hl-lightgold h2,.hl-lightgold h3,.hl-lightgold h4,.hl-lightgold h5,.hl-lightgold h6{color:#F4F0E8}h1.hl-lightgold,h2.hl-lightgold,h3.hl-lightgold,h4.hl-lightgold,h5.hl-lightgold,h6.hl-lightgold{color:#F4F0E8}.hl-secondary h1,.hl-secondary h2,.hl-secondary h3,.hl-secondary h4,.hl-secondary h5,.hl-secondary h6{color:#8570a6}h1.hl-secondary,h2.hl-secondary,h3.hl-secondary,h4.hl-secondary,h5.hl-secondary,h6.hl-secondary{color:#8570a6}.before-after-image.centered .twentytwenty-container{margin:auto}.brands .brands_gallery{margin:1.2em 0;padding:0;list-style:none}.brands .brands_gallery:before{content:"";display:table}.brands .brands_gallery:after{content:"";display:table;clear:both}.brands .brands_gallery .brands_gallery_item .image-wrapper.-image-circle img{border-radius:100%}.brands .brands_gallery .brands_gallery_item .image-wrapper img{display:block;max-width:100%;height:auto;width:auto;margin:auto}.brands .brands_gallery .brands_gallery_item .image_tags{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.brands .brands_gallery .brands_gallery_item .image_tags .single_tag{margin:0 3px 5px}.brands .brands_gallery .brands_gallery_item.-boxed{padding:5px;background-color:white;border:1px solid rgba(0, 0, 0, 0.4);border-radius:3px;-webkit-box-shadow:2px 2px 2px 2px rgba(0, 0, 0, 0.4);box-shadow:2px 2px 2px 2px rgba(0, 0, 0, 0.4)}.brands .brands_gallery .brands_gallery_item.-align-center{text-align:center}.brands .brands_gallery .brands_gallery_item.-fullwidth .image-wrapper img{width:100%}.multicolumn-icon-lists{margin:0.8em 0 1.6em;zoom:1}.multicolumn-icon-lists:before{content:"";display:table}.multicolumn-icon-lists:after{content:"";display:table;clear:both}.multicolumn-icon-list{float:left;margin:0;padding-right:0.8em;padding-left:0;list-style-type:none}.main-content .multicolumn-icon-list{margin:0}.multicolumn-icon-list>.multicolumn-icon-list-heading{display:block;font-size:1.25em;margin-bottom:0.5em}.multicolumn-icon-list>h1:after,.multicolumn-icon-list>h2:after,.multicolumn-icon-list>h3:after,.multicolumn-icon-list>h4:after,.multicolumn-icon-list>h5:after,.multicolumn-icon-list>h6:after,.multicolumn-icon-list>.multicolumn-icon-list-heading:after{content:"";display:block;width:2.66667em;height:2px;margin-top:0.4em;background:#33b1ec}.-color-inverted.-highlight-color .multicolumn-icon-list>h2:after{background:#3685ab}.multicolumn-icon-list ul{margin:0}.multicolumn-icon-list li:before{color:#33b1ec}.multicolumn-icon-list li a[target="_blank"]:after{content:none}.-columns-1>.multicolumn-icon-list{width:100%}.-columns-2>.multicolumn-icon-list{width:50%}.-columns-3>.multicolumn-icon-list{width:33.33333%}.-columns-4>.multicolumn-icon-list{width:25%}.-columns-5>.multicolumn-icon-list{width:20%}.-columns-6>.multicolumn-icon-list{width:16.66667%}.multicolumn-icon-list:last-of-type{margin-right:-1px}@media screen and (max-width:599px){.multicolumn-icon-list.multicolumn-icon-list{float:none;width:auto}}.multicolumn-icon-lists ul li[data-icon-after]:after{content:attr(data-icon-after);font:100%/1 "RockSolid Icons";-webkit-font-smoothing:antialiased;font-smoothing:antialiased;text-rendering:geometricPrecision;text-indent:0;display:inline-block;position:relative;margin-left:5px;width:0;color:#8570a6}.info-lists{zoom:1}.info-lists:before{content:"";display:table}.info-lists:after{content:"";display:table;clear:both}.info-list{float:left}.-columns-1>.info-list{width:100%}.-columns-2>.info-list{width:50%}.-columns-3>.info-list{width:33.33333%}.-columns-4>.info-list{width:25%}.-columns-5>.info-list{width:20%}.-columns-6>.info-list{width:16.66667%}.info-list:last-of-type{margin-right:-1px}.info-list dt{margin-top:1em;color:#98a0ab;font-size:0.8em;letter-spacing:0.1em;text-transform:uppercase}.info-list dt:first-child{margin-top:0}.info-list dd{margin-left:0}@media screen and (max-width:599px){.info-list.info-list{float:none;width:auto}}.info-list a[target="_blank"]:after{content:none}.fixed-note,.fixed-note-closed{font-size:16px}@media screen and (max-width:900px){.fixed-note .fixed-note-column:last-child,.fixed-note-closed .fixed-note-column:last-child{float:none}}@media screen and (max-width:500px){.fixed-note{position:relative;z-index:500}}.info-map .info-map-gmap{height:25em}.info-map .info-map-boxes .gmap-card-title{font-weight:bold;display:block;margin:0.57143em 0;padding:0 0 0.21429em;border-bottom:1px solid #e5e8ee}.info-map .placecard{position:absolute;top:10px;left:10px;z-index:15;padding:8px;width:300px;background:white;-webkit-box-shadow:0 0 2px rgba(0, 0, 0, 0.3);box-shadow:0 0 2px rgba(0, 0, 0, 0.3);font-size:14px;line-height:1.3}.info-map .placecard h1,.info-map .placecard h2,.info-map .placecard h3,.info-map .placecard h4,.info-map .placecard h5,.info-map .placecard h6,.info-map .placecard .gmap-placecard-title{font-family:"Open Sans", sans-serif;font-weight:bold;color:#555555;margin:0}.info-map .placecard p{color:#5B5B5B;margin:0 0 8px}.info-map .placecard a{color:#3a84df}@media screen and (max-width:600px){.info-map .placecard{position:relative;top:auto;left:auto;margin:10px auto 3px;width:100%}}.fixed-note label{font-size:0.875em;margin:0.42857em 0}.info-map .no-gmap-info{display:block;max-width:500px;margin:auto;position:relative;font-size:15px;border:1px solid orange;padding:1em}.info-map .no-gmap-info span{position:relative;z-index:2;font-size:15px;margin-left:3.7rem;display:block}.info-map .no-gmap-info:before,.info-map .no-gmap-info:after{font:100%/1 "RockSolid Icons";-webkit-font-smoothing:antialiased;font-smoothing:antialiased;text-rendering:geometricPrecision;text-indent:0;display:inline-block;position:relative;margin-right:0;position:absolute;left:1rem;top:1rem;width:calc(100% - 2rem);font-size:3em;z-index:0;opacity:0.6;color:red;text-align:left}.info-map .no-gmap-info:before{content:""}.info-map .no-gmap-info .icon-reload-after:after{content:"↻";font:100%/1 "RockSolid Icons";-webkit-font-smoothing:antialiased;font-smoothing:antialiased;text-rendering:geometricPrecision;text-indent:0;display:inline-block;position:relative;margin-left:0.25em}.info-map .no-gmap-info button{display:block;margin:10px auto 0;position:relative;z-index:2;font-size:15px;max-width:240px}@media screen and (min-width:600px){.info-map .no-gmap-info{margin-bottom:1em;margin-top:1em}}@media screen and (max-width:600px){.info-map .no-gmap-info{max-width:100%;margin-left:0;margin-right:0;font-size:14px}.info-map .no-gmap-info button{font-size:14px;max-width:190px;padding:10px 5px}.info-map .no-gmap-info span{font-size:14px}}@media screen and (max-width:900px){.fixed-note{position:fixed}}.timeline{margin:2.66667em 16.66667%;position:relative}.timeline:before{content:"";position:absolute;bottom:0;left:50%;background:#98a0ab;top:0;width:2px;margin:0 -1px}.timeline:after{content:"";position:absolute;bottom:0;left:50%;background:#98a0ab;width:10px;height:10px;margin:0 -5px;border-radius:99em}.timeline-item{position:relative;min-height:6em;overflow:hidden;padding:0 0 2em}.timeline-item:before{position:absolute;top:1em;left:50%;font-size:2em;border-radius:99em}.timeline-item:not([data-icon]):before{content:"";width:0.66667em;height:0.66667em;margin:-0.4em;border:0.06667em solid #98a0ab;background:white}.timeline-item>.timeline-heading-first{float:left;width:40%;color:#98a0ab;text-align:right;margin-top:1em;margin-bottom:1em;font-size:1.2em;font-weight:bold;letter-spacing:0.1em;text-transform:uppercase;line-height:1.5;display:block}.timeline-item .timeline-heading-second{line-height:1.5;display:block}.timeline-item:nth-of-type(2n)>h3{float:right;text-align:left}.timeline-item:nth-of-type(2n)>.timeline-item-text{float:left;text-align:right}.timeline-item.not-in-view:before{-webkit-transform:scale(0);-moz-transform:scale(0);-ms-transform:scale(0);-o-transform:scale(0);transform:scale(0)}.timeline-item.in-view:before{-webkit-transform:none;-moz-transform:none;-ms-transform:none;-o-transform:none;transform:none;-webkit-transition:-webkit-transform 0.6s ease-out;-moz-transition:-moz-transform 0.6s ease-out;-o-transition:-o-transform 0.6s ease-out;transition:transform 0.6s ease-out}.timeline-item[data-icon]:before{width:2em;height:1.5em;margin:-1em;padding-top:0.5em;color:white;text-align:center;background:#33b1ec}.timeline-item-text{float:right;width:40%}.timeline-item-text .timeline-heading-first{margin-top:1em;margin-bottom:1em;font-size:1.2em;font-weight:bold;letter-spacing:0.1em;text-transform:uppercase}.timeline-item-text .timeline-heading-second{margin-top:1em;margin-bottom:1em;font-size:1.2em;font-weight:bold;letter-spacing:0.1em;text-transform:uppercase}.timeline-image-caption{font-size:0.93333em;color:#98a0ab}@media screen and (max-width:900px){.timeline{margin-right:0;margin-left:0}}@media screen and (max-width:599px){.timeline:before{left:4.54545%}.timeline:after{left:4.54545%}.timeline-item:before{left:4.54545%}.timeline-item>.timeline-heading-first{float:none;width:auto;margin-left:13.63636%;text-align:left}.timeline-item:nth-of-type(2n)>.timeline-heading-first{float:none}.timeline-item:nth-of-type(2n)>.timeline-item-text{float:none;text-align:left}.timeline-item[data-icon]:before{font-size:1.06667em;margin-top:0}.timeline-item-text{float:none;width:auto;margin-left:13.63636%}}@-webkit-keyframes popup-in{0%{opacity:0}100%{opacity:1}}@keyframes popup-in{0%{opacity:0}100%{opacity:1}}@-webkit-keyframes popup-out{0%{opacity:1}99%{opacity:0}100%{opacity:0;display:none;z-index:-1;top:auto;left:auto;width:0;height:0}}@keyframes popup-out{0%{opacity:1}99%{opacity:0}100%{opacity:0;display:none;z-index:-1;top:auto;left:auto;width:0;height:0}}.popup-once{opacity:0;position:fixed;top:0;left:0;right:0;bottom:0;display:inline-block;background-color:rgba(0, 0, 0, 0.2);padding:0;opacity:0;z-index:8000;-webkit-animation:popup-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;animation:popup-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both}.popup-once.closepopup{-webkit-animation:popup-out 0.8s cubic-bezier(0.39, 0.575, 0.565, 1) both;animation:popup-out 0.8s cubic-bezier(0.39, 0.575, 0.565, 1) both}.popupwrapper{margin-top:40px;position:fixed;top:50%;left:50%;display:block;padding:35px;padding-bottom:75px;z-index:8000;width:95vw;max-width:500px;max-height:100vh;overflow-y:auto;background:white;-webkit-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%);-webkit-box-sizing:border-box;box-sizing:border-box}.popup-section .popupwrapper{padding:35px}.popupclose{position:absolute;right:0;top:0;width:26px;height:26px;opacity:0.8;background:rgba(0, 0, 0, 0.9)}.popup-inv{display:none}.popupclose:hover{opacity:1}.popupclose:before,.popupclose:after{position:absolute;left:12px;content:" ";height:26px;width:2px;background-color:white}.popupclose:before{-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.popupclose:after{-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.centered-wrapper.-vertical-centered{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-direction:normal;-moz-box-direction:normal;-webkit-box-orient:vertical;-moz-box-orient:vertical;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-moz-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}@media screen and (min-width:1281px){.centered-wrapper.-vertical-centered>.centered-wrapper-inner:not(.-fullwidth){max-width:1185.1851851852px;width:100%}}.centered-wrapper.-viewport-height{min-height:710px;min-height:calc(100vh - 50px)}@media screen and (max-width:900px){.centered-wrapper.-viewport-height{min-height:100vh}}@media screen and (max-width:599px){.centered-wrapper.-viewport-height{min-height:500px;min-height:100vh}}.centered-wrapper.-fade-in.not-in-view{opacity:0}.centered-wrapper.-fade-in.in-view{-webkit-transition:opacity 1.5s;-moz-transition:opacity 1.5s;-o-transition:opacity 1.5s;transition:opacity 1.5s}.centered-wrapper.wrapper-shadow .centered-wrapper-inner{box-shadow:0 0px 0px 0px white, 5px 9px 15px -4px rgba(0, 0, 0, 0.35), 5px -6px 15px -4px rgba(0, 0, 0, 0.35), -5px -6px 15px -4px rgba(0, 0, 0, 0.35);padding:1em;margin-top:2em;margin-bottom:2em}.no-youtube{display:flex;flex-direction:column;justify-content:center;padding:4.5em;text-align:justify;background:white;color:initial;max-width:100%}.no-youtube button{max-width:20em;margin-left:auto;margin-right:auto}.ce_youtube .video_container iframe{max-width:100%}.main-content fieldset.rating,fieldset.rating{display:inline-block;margin:0;width:auto}.rating>div{width:180px;display:block;height:33px}.rating span{float:right;position:relative;cursor:pointer}.rating span input{position:absolute;top:0px;left:0px;opacity:0}.rating span label{display:inline-block;width:30px;height:30px;text-align:center;font-size:30px;margin-right:5px;line-height:30px;color:#cccccc}.rating span label *[class^="icon-"]:before{margin-right:0}.rating span:hover~span label,.rating span:hover label,.rating span.checked label,.rating span.checked~span label{color:#9a923b}.fading-boxes{zoom:1;margin:2.66667em 0}.fading-boxes:before{content:"";display:table}.fading-boxes:after{content:"";display:table;clear:both}.fading-boxes>h1,.fading-boxes>h2,.fading-boxes>h3,.fading-boxes>h4,.fading-boxes>h5,.fading-boxes>h6{margin-top:0;margin-bottom:1.06667em}.fading-boxes-item{position:relative;z-index:0;color:white;-webkit-transition:-webkit-transform 0.2s linear;-moz-transition:-moz-transform 0.2s linear;-o-transition:-o-transform 0.2s linear;transition:transform 0.2s linear}.fading-boxes-item.-with-link:hover,.fading-boxes-item.-with-link.is-hovered{-webkit-transform:translate3d(0, -2.33333em, 0);-moz-transform:translate3d(0, -2.33333em, 0);-ms-transform:translate3d(0, -2.33333em, 0);-o-transform:translate3d(0, -2.33333em, 0);transform:translate3d(0, -2.33333em, 0)}.fading-boxes-item:hover,.fading-boxes-item.is-hovered{z-index:1}.fading-boxes-item-image{position:relative;z-index:1;background:#33b1ec no-repeat;background-size:cover}.-highlight-color .fading-boxes-item-image{background:#3685ab no-repeat}.fading-boxes-item-image:before{position:absolute;top:2.875em;right:50%;z-index:1;margin:-0.5em;font-size:2.66667em;-webkit-transition:top 0.2s linear, right 0.2s linear, font-size 0.2s linear;-moz-transition:top 0.2s linear, right 0.2s linear, font-size 0.2s linear;-o-transition:top 0.2s linear, right 0.2s linear, font-size 0.2s linear;transition:top 0.2s linear, right 0.2s linear, font-size 0.2s linear}.fading-boxes-item:hover .fading-boxes-item-image:before,.fading-boxes-item.is-hovered .fading-boxes-item-image:before{top:1.25em;right:1.125em;font-size:2.13333em;font-size:32px \9 }@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){.fading-boxes-item:hover .fading-boxes-item-image:before,.fading-boxes-item.is-hovered .fading-boxes-item-image:before{font-size:32px}}.fading-boxes-item-image:after{content:attr(data-headline);position:absolute;top:5.17857em;left:5%;width:90%;font-size:1.86667em;text-align:center;-webkit-transition:opacity 0.1s linear;-moz-transition:opacity 0.1s linear;-o-transition:opacity 0.1s linear;transition:opacity 0.1s linear;-webkit-transition-delay:0.1s;-moz-transition-delay:0.1s;-o-transition-delay:0.1s;transition-delay:0.1s}.fading-boxes-item:hover .fading-boxes-item-image:after,.fading-boxes-item.is-hovered .fading-boxes-item-image:after{opacity:0;-webkit-transition-delay:0s;-moz-transition-delay:0s;-o-transition-delay:0s;transition-delay:0s}.-has-text-shadow .fading-boxes-item-image:after{text-shadow:0 0 5px rgba(0, 0, 0, 0.5)}.fading-boxes-item-text{min-height:19.28571em;overflow:hidden;padding:0 1.42857em;font-size:0.93333em;background:rgba(51, 177, 236, 0.8);opacity:0;-webkit-transition:opacity 0.2s linear;-moz-transition:opacity 0.2s linear;-o-transition:opacity 0.2s linear;transition:opacity 0.2s linear}.fading-boxes-item:hover .fading-boxes-item-text,.fading-boxes-item.is-hovered .fading-boxes-item-text{opacity:1}.fading-boxes-item-text .fading-boxes-item-heading{margin:1em 0 -0.29167em;font-size:1.71429em;font-weight:normal;color:inherit;display:block;line-height:1.5}.fading-boxes-item-text p{margin:1.5em 0}.fading-boxes-item-text a{color:inherit;text-decoration:underline}.fading-boxes-item-text a:hover{text-decoration:none}.fading-boxes-item-link{visibility:hidden;margin:-5.33333em 0 1.33333em;padding:1em 1.33333em;background:#33b1ec;-webkit-transition:margin 0.2s linear, visibility 0s;-webkit-transition-delay:0s, 0.2s;-moz-transition:margin 0.2s linear, visibility 0s 0.2s;-o-transition:margin 0.2s linear, visibility 0s 0.2s;transition:margin 0.2s linear, visibility 0s 0.2s}.fading-boxes-item:hover .fading-boxes-item-link,.fading-boxes-item.is-hovered .fading-boxes-item-link{visibility:visible;margin-top:0;margin-bottom:-4em;-webkit-transition-delay:0s;-moz-transition-delay:0s;-o-transition-delay:0s;transition-delay:0s}.fading-boxes-item-link .button{display:block}.skills{margin:1.6em 0}.skills-item{margin:2.13333em 0}.skills-item:first-child{margin-top:0}.skills-item>a{display:block;color:inherit}.skills-item>a:hover,.skills-item>a:focus{text-decoration:none;opacity:0.6}.skills-item-label,.skills-item-value{margin:0;margin-bottom:16px;font-size:0.93333em;font-weight:bold;letter-spacing:0.1em;color:inherit;text-transform:uppercase}.skills-item-label{float:left}.skills-item-label:after{content:"";display:table}.skills-item-value{color:#98a0ab;text-align:right}.skills-item-meter{clear:both;height:1.6em;overflow:hidden;margin:1.06667em 0;background:gainsboro}.skills-item-meter-inner{height:100%;color:#33b1ec;background-color:currentColor}.skills-item.not-in-view .skills-item-meter-inner{-webkit-transform:translateX(-100%);-moz-transform:translateX(-100%);-ms-transform:translateX(-100%);-o-transform:translateX(-100%);transform:translateX(-100%)}.skills-item.in-view .skills-item-meter-inner{-webkit-transform:none;-moz-transform:none;-ms-transform:none;-o-transform:none;transform:none;-webkit-transition:-webkit-transform 2s ease-out;-moz-transition:-moz-transform 2s ease-out;-o-transition:-o-transform 2s ease-out;transition:transform 2s ease-out}.ce_rsce_h4y_onepagerNav{float:right;height:100%}.ce_rsce_h4y_onepagerNav>ul{margin:0;padding:0;display:flex;align-items:center;height:100%}.ce_rsce_h4y_onepagerNav>ul>li{margin-left:2em;height:100%}.ce_rsce_h4y_onepagerNav>ul>li>.onePageNav-linkContainer{height:100%;display:flex;align-items:center;position:relative}.ce_rsce_h4y_onepagerNav>ul>li>.onePageNav-linkContainer:not(.active):not(:hover)>a{color:inherit}.ce_rsce_h4y_onepagerNav>ul>li>.onePageNav-linkContainer>a{padding:0.25em 0.75em;position:relative;z-index:2}.ce_rsce_h4y_onepagerNav>ul>li>.onePageNav-linkContainer>a:hover,.ce_rsce_h4y_onepagerNav>ul>li>.onePageNav-linkContainer>a:focus{text-decoration:none}.ce_rsce_h4y_onepagerNav>ul>li>.onePageNav-linkContainer>a.highlight{font-weight:bold;border:2px solid}.ce_rsce_h4y_onepagerNav>ul>li>.onePageNav-linkContainer.active:after{content:"";width:1em;height:1em;position:absolute;left:50%;bottom:-0.5em;transform:translateX(-50%) rotate(45deg);box-shadow:2px 2px 2px rgba(0, 0, 0, 0.1);background:white;z-index:0}.counter-boxes .counter-boxes-headline{color:#717c8e;font-size:1.75em;display:block}.counter-boxes .counter-boxes-subheadline{color:#8570a6;font-size:1.25em;display:block}.counter-boxes .counter-boxes-item-heading{display:block;font-weight:bold}.counter-boxes .counter-boxes-item-description{display:block;color:#717c8e}.headline-box .bg-image-text-heading{display:block;font-weight:bold}.headline-box .bg-image-text-subheading{display:block}.headline-box .-small{font-size:0.85em}.headline-box .-medium{font-size:1.25em}.headline-box .-large{font-size:1.5em}.headline-box .-super-size{font-size:1.75em}.icon-boxes .icon-boxes-item-heading{display:block;font-weight:bold;font-size:1.15em;color:#8570a6;margin-top:0.25em}.pricing-table .pricing-table-plan-heading{display:block}.projects-item .projects-item-name{display:block;position:absolute;bottom:-3.125em;left:0;width:100%;margin:0;padding:0.625em 0 0.6875em;font-size:1em;font-weight:bold;color:inherit;text-align:center;background:#ffffff;background:rgba(255, 255, 255, 0.9);-webkit-transition:bottom 0.4s ease-out;-moz-transition:bottom 0.4s ease-out;-o-transition:bottom 0.4s ease-out;transition:bottom 0.4s ease-out}.projects-item .projects-item-name:before{content:"";position:absolute;left:50%;top:-8px;width:0;height:0;border:8px solid transparent;border-color:rgba(255, 255, 255, 0);border-top:0;border-bottom-color:#ffffff;border-bottom-color:rgba(255, 255, 255, 0.9)}.projects-item:hover .projects-item-name,.projects-item:focus .projects-item-name{bottom:0;-webkit-transition-duration:0.2s;-moz-transition-duration:0.2s;-o-transition-duration:0.2s;transition-duration:0.2s}.rotating-boxes .rotating-boxes-item-title{display:block;position:relative;margin:0.66667em 0;font-size:1.5em;color:#8570a6}.team-boxes .team-boxes-name{font-size:1.14286em;margin:0 0 0.33333em;-webkit-transition:color 0.3s ease-out;-moz-transition:color 0.3s ease-out;-o-transition:color 0.3s ease-out;transition:color 0.3s ease-out;line-height:1.5;display:block;color:#717c8e}.team-boxes .team-boxes-position{margin:0;font-size:1em;display:block;line-height:1.5;color:#717c8e}.portfolio-tiles{clear:both;width:100%;overflow:hidden;margin-right:-1%}.portfolio-tiles .portfolio-tiles-item{position:relative;float:left;width:25%}.portfolio-tiles .portfolio-tiles-item>img{display:block;width:100%;height:auto}.portfolio-tiles .portfolio-tiles-item .portfolio-tiles-item-link{position:absolute;top:0;left:0;width:100%;height:100%;padding-top:37.5%;text-align:center;background:rgba(51, 177, 236, 0.8);opacity:0;-webkit-transition:opacity 0.3s linear;-moz-transition:opacity 0.3s linear;-o-transition:opacity 0.3s linear;transition:opacity 0.3s linear}.portfolio-tiles .portfolio-tiles-item .portfolio-tiles-item-link:before{content:"+";display:block;width:1em;margin:-1.25em auto 0.375em;font-size:2.66667em;line-height:1;color:#33b1ec;background:white}.portfolio-tiles .portfolio-tiles-item .portfolio-tiles-item-link:hover,.portfolio-tiles .portfolio-tiles-item .portfolio-tiles-item-link:focus,.portfolio-tiles .portfolio-tiles-item .portfolio-tiles-item-link.is-hovered{text-decoration:none;opacity:1;-webkit-transition:opacity 0.1s linear;-moz-transition:opacity 0.1s linear;-o-transition:opacity 0.1s linear;transition:opacity 0.1s linear}.portfolio-tiles .portfolio-tiles-item .portfolio-tiles-item-link h3{margin:0;font-size:1.33333em;font-weight:bold;color:white;text-transform:uppercase}.portfolio-tiles .portfolio-tiles-item .portfolio-tiles-item-link h4{margin:0;font-size:1em;font-weight:normal;color:#0b577b}@media screen and (max-width:900px){.portfolio-tiles .portfolio-tiles-item{width:33.33333%}}@media screen and (max-width:599px){.portfolio-tiles .portfolio-tiles-item{width:50%;font-size:0.8em}}@media screen and (max-width:399px){.portfolio-tiles .portfolio-tiles-item{width:100%}}.filter-navigation>ul{list-style:none;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-ms-flex-wrap:wrap;flex-wrap:wrap}.filter-navigation>ul>li{margin:4px}.filter-navigation a{text-decoration:none !important;transition:all 0.3s ease;padding:2px;background:#efefef}.filter-navigation a.active{color:white;background:#717c8e}.drop-up-down{position:relative;display:inline-block}.drop-up-down .dropbtn{margin:0}.drop-up-down .drop-menu-links{position:absolute;background-color:#f1f1f1;min-width:160px;z-index:1;margin:0;padding:0;opacity:0;list-style:none;height:0;overflow:hidden;transition:all 0.4s}.drop-up-down .drop-menu-links .drop-menu-item a{color:black;padding:0.4em 0.75em;text-decoration:none;display:block}.drop-up-down .drop-menu-links .drop-menu-item a:hover,.drop-up-down .drop-menu-links .drop-menu-item a:focus{background-color:#d1d1d1}.drop-up-down:hover .drop-menu-links,.drop-up-down:focus .drop-menu-links{opacity:1;height:auto}.dropup .drop-menu-links{bottom:2.4em}.dropdown .drop-menu-links{top:2.4em}.ce_rsce_vicotec_audioplayer{overflow:hidden;background-color:#1a1f28;position:relative;padding:2rem 1rem;max-width:400px;width:auto;height:auto;color:white}.ce_rsce_vicotec_audioplayer .song-info{display:flex;flex-direction:column;align-items:center;justify-content:space-evenly}.ce_rsce_vicotec_audioplayer .song-info .img-container{text-align:center}.ce_rsce_vicotec_audioplayer .song-info .img-container img{width:50%;border-radius:50%;aspect-ratio:1;object-fit:cover;object-position:center}.ce_rsce_vicotec_audioplayer .song-info h2{margin-bottom:0.2rem}.ce_rsce_vicotec_audioplayer .song-info h2,.ce_rsce_vicotec_audioplayer .song-info h3{font-weight:400;text-align:center}.ce_rsce_vicotec_audioplayer .song-info h3{font-size:0.8rem}.ce_rsce_vicotec_audioplayer .player{min-height:7vh;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;width:90%;margin:auto}.ce_rsce_vicotec_audioplayer .player div{width:100%;position:relative;display:flex;align-items:center;justify-content:center;border-radius:0;overflow:hidden}.ce_rsce_vicotec_audioplayer .player div div{min-width:100%;min-height:8px;background-color:#808080;position:absolute;top:0;left:0;bottom:0;pointer-events:none}.ce_rsce_vicotec_audioplayer .player div div:before{content:"";background:#808080;top:0;bottom:0;left:-1px;right:99%}.ce_rsce_vicotec_audioplayer .player input{padding:0;width:100%;max-height:8px;cursor:pointer;-webkit-appearance:none;border-radius:0;appearance:none;outline:none;background:#ffffff;z-index:0;transition:width 0.2s ease;border:none}.ce_rsce_vicotec_audioplayer .player input::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;width:15px;height:15px;border-radius:0;background:#808080;cursor:pointer}.ce_rsce_vicotec_audioplayer .player span{font-size:0.8rem}.ce_rsce_vicotec_audioplayer .player-control{margin-bottom:1rem;display:flex;align-items:center;justify-content:center}.ce_rsce_vicotec_audioplayer .player-control i{cursor:pointer;margin:0 1.5rem;font-size:3rem}.ce_rsce_vicotec_audioplayer .sound-control{display:flex;align-items:center;justify-content:space-between;margin:0.2rem auto;width:60%}.ce_rsce_vicotec_audioplayer .sound-control input{padding:0;flex-grow:1;margin:0 0.5rem;max-height:2px;cursor:pointer;-webkit-appearance:none;appearance:none;background:#808080;border-radius:8px;outline:none}.ce_rsce_vicotec_audioplayer .sound-control input::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;width:10px;height:10px;border-radius:50%;background:#ffffff;cursor:pointer}.ce_rsce_vicotec_audioplayer *[data-icon]:before,.ce_rsce_vicotec_audioplayer *[class^="icon-"]:before,.ce_rsce_vicotec_audioplayer *[class*=" icon-"]:before{margin:0}.rsts-skin-basic{margin:0;overflow:hidden;position:relative}.rsts-skin-basic .rsts-next,.rsts-skin-basic .rsts-prev{overflow:hidden;text-indent:-99em;position:absolute;top:50%;margin-top:-1.5em;line-height:0;border-radius:99em;padding:0.6em 0.75em}.rsts-skin-basic .rsts-next{right:1em;left:auto}.rsts-skin-basic .rsts-next:after{content:"";display:block;width:0px;height:0px;margin-left:0.5em;-webkit-transform:rotate(360deg);border-style:solid;border-width:17px 0 17px 20px;border-color:transparent transparent transparent #ffffff}.rsts-skin-basic .rsts-prev{right:auto;left:1em}.rsts-skin-basic .rsts-prev:after{content:"";display:block;width:0px;height:0px;margin-right:0.5em;-webkit-transform:rotate(360deg);border-style:solid;border-width:17px 20px 17px 0;border-color:transparent #ffffff transparent transparent}.rsts-skin-basic .rsts-caption{font-size:1.2em;position:absolute;top:0;left:0;padding:5px 40px;background:rgba(0, 0, 0, 0.75);color:white;width:100%;max-width:600px}.rsts-skin-basic:hover .rsts-next,.rsts-skin-basic:hover .rsts-prev{background:rgba(0, 0, 0, 0.45)}.rsts-skin-basic .rsts-nav{position:absolute;left:0;bottom:12%;width:100%;opacity:0}@media screen and (max-width:599px){.rsts-skin-basic .rsts-nav{bottom:30px}}.rsts-skin-basic .rsts-nav ul{height:0;margin:0;padding:0;text-align:center}.rsts-skin-basic .rsts-nav li{display:inline}.rsts-skin-basic .rsts-nav a{display:inline-block;outline:none;margin:3px;padding:5px}.rsts-skin-basic .rsts-nav-bullets a{overflow:hidden;width:18px;height:18px;padding:6px;line-height:0;text-indent:-99em}.rsts-skin-basic .rsts-nav-bullets a:after{content:"";display:block;width:6px;height:6px;border:2px solid black;border-radius:100%;background-color:white}.rsts-skin-basic .rsts-nav-bullets a:hover:after,.rsts-skin-basic .rsts-nav-bullets a.active:after{background-color:black}.rsts-skin-basic .rsts-nav-numbers a,.rsts-skin-basic .rsts-nav-tabs a{margin:5px;border:2px solid black;border-radius:3px;font-size:0.8125em;line-height:0.61538em;color:grey;background-color:white}.rsts-skin-basic .rsts-nav-numbers a:hover,.rsts-skin-basic .rsts-nav-numbers a.active,.rsts-skin-basic .rsts-nav-tabs a:hover,.rsts-skin-basic .rsts-nav-tabs a.active{color:white;background-color:black;text-decoration:none}.rsts-skin-basic .rsts-nav-prev,.rsts-skin-basic .rsts-nav-next{display:none !important}.rsts-skin-basic:hover .rsts-nav{opacity:0.8}.eventlist-termine{justify-content:space-between}.eventlist-termine .event{background:white;margin-bottom:2em;margin-right:0 !important;display:flex;flex-direction:column;position:relative}.eventlist-termine .event .image_container{margin-top:0;display:block}.eventlist-termine .event .image_container:hover{opacity:0.8}.eventlist-termine .event .image_container:hover img{-webkit-filter:blur(2px);-moz-filter:blur(2px);filter:blur(2px);-webkit-transform:scale(1.05);-moz-transform:scale(1.05);-ms-transform:scale(1.05);-o-transform:scale(1.05);transform:scale(1.05)}.eventlist-termine .event .event-boxes-details{flex:1 0 auto;font-size:0.9em;padding:0 1em 0 1em}.eventlist-termine .event .event-boxes-details .header{position:absolute;top:1em;left:0;background:red;color:white;padding:8px;text-align:center}.eventlist-termine .event .event-boxes-details .header .date{display:flex;flex-direction:column}.eventlist-termine .event .event-boxes-details .header .date span{font-size:0.75em;line-height:0.9em}.eventlist-termine .event .event-boxes-details .header .date span:first-child{font-size:1.75em;margin-bottom:0.2em}.eventlist-termine .event .event-boxes-details h3{color:black;font-size:inherit;font-weight:bold;margin-top:0}.eventlist-termine .event .event-boxes-details h3 a{color:black;text-decoration:none}.eventlist-termine .event .event-boxes-details h3 a:hover{color:red}.eventlist-termine .event .more{margin:0;padding:0 1em 0.5em 1em}.eventlist-termine .event .more a:after{content:"»";font-size:2em;display:block;color:red;display:inline;margin-left:0.25em;margin-top:-0.5em;position:absolute}.icon-boxes-google:before,.timeline-item-material:before,.counter-boxes-item-google:before,.feature-box-link-google:before,.headline-box-google:before,.headline-box-link-google:before,.highlight-box-link-google:before,.icon-text-block-google:before,.info-list-item-google:before,.info-map-boxes-item-google:before,.icon-buttons a.icon-buttons-item-google:after,.multicolumn-list-item-google:before,.multicolumn-icon-lists ul li[data-icon-after].multicolumn-list-item-google-after:after,.icon-links-item-inner-google:before,.icon-hr-google:before,.-button-icon-google:before,.rotating-boxes-item-google .rotating-boxes-item-cover:before,.rotating-boxes-item-google .rotating-boxes-item-content:before,.tab-navigation-item-link-google:before,.onePage-icon-google:before{font-family:"Material Icons"}.multicolumn-list-item-google:before,.multicolumn-icon-lists ul li[data-icon-after].multicolumn-list-item-google-after:after,.icon-links-item-inner-google:before{font-size:1.25em;top:0.2em}.feature-box-link-google:before,.headline-box-link-google:before,.-button-icon-google:before,.tab-navigation-item-link-google:before,.onePage-icon-google:before{font-size:145%;bottom:-5px;margin-top:-5px}@-webkit-keyframes fade-in-boxen{0%{-webkit-transform:translateY(50px);transform:translateY(50px);opacity:0}100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}@keyframes fade-in-boxen{0%{-webkit-transform:translateY(50px);transform:translateY(50px);opacity:0}100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}.is-animated.-fadeInBoxen .teaser-boxes-item,.is-animated.-fadeInBoxen .team-boxes-item{opacity:0}.is-animated.-fadeInBoxen.in-view .teaser-boxes-item,.is-animated.-fadeInBoxen.in-view .team-boxes-item{-webkit-animation:fade-in-boxen 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;animation:fade-in-boxen 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both}.mobile-navigation-fixed .page-header,.mobile-navigation-fixed .main-navigation-mobile-open{transition:all 0.3s}.mobile-navigation-fixed .scrollFixed{position:fixed;-webkit-transform:translateZ(0);-moz-transform:translateZ(0);-ms-transform:translateZ(0);-o-transform:translateZ(0);transform:translateZ(0);transition:top 0.3s}.mobile-navigation-fixed .scrollFixed.page-header{top:0;left:0;width:100%;overflow:hidden}.mobile-navigation-fixed .scrollFixed:not(.show).page-header,.mobile-navigation-fixed .scrollFixed:not(.show).main-navigation-mobile-open{top:-100vh}.ce_table{overflow:auto}table.responsiv-table{width:100%;border-collapse:collapse}table.responsiv-table tr:nth-of-type(odd){background:#eee}table.responsiv-table tr:hover,table.responsiv-table tr:focus{background:#dedede}table.responsiv-table th{background:#717c8e;color:white;font-weight:bold}table.responsiv-table td,table.responsiv-table th{padding:6px;border:1px solid #ccc;text-align:left}@media only screen and (max-width:760px),(min-device-width:768px) and (max-device-width:1024px){table.responsiv-table{display:block;border:0 none}table.responsiv-table thead,table.responsiv-table tbody,table.responsiv-table th,table.responsiv-table td,table.responsiv-table tr{display:block}table.responsiv-table thead tr{position:absolute;top:-9999px;left:-9999px}table.responsiv-table tr{border:1px solid #ccc;margin-bottom:0.75rem;background:initial}table.responsiv-table tr:nth-of-type(odd),table.responsiv-table tr:hover,table.responsiv-table tr:focus{background:initial}table.responsiv-table td{border:none;border-bottom:1px solid #eee;position:relative;width:100%}table.responsiv-table td::nth-of-type(odd){background:#eee}table.responsiv-table td:hover,table.responsiv-table td:focus{background:#dedede}table.responsiv-table td:before{content:attr(data-title);position:relative;display:block;width:100%;max-width:45%;float:left;padding-right:10px}table.responsiv-table td:after{content:"";display:table;clear:both}}.hl-lighter h1,.hl-lighter h2,.hl-lighter h3,.hl-lighter h4,.hl-lighter h5,.hl-lighter h6{font-weight:lighter !important}.lighter{font-weight:lighter !important}.bold{font-weight:bold !important}h1.hl-lighter,h2.hl-lighter,h3.hl-lighter,h4.hl-lighter,h5.hl-lighter,h6.hl-lighter{font-weight:lighter !important}.bs-bottom{-webkit-box-shadow:0 5px 5px grey;box-shadow:0 5px 5px grey;z-index:10;position:relative}.bs-top{-webkit-box-shadow:0 -5px 5px grey;box-shadow:0 -5px 5px grey;z-index:10;position:relative}.bs-both{-webkit-box-shadow:0 0 5px 5px grey;box-shadow:0 0 5px 5px grey;z-index:10;position:relative}.d-flex{display:-webkit-box;display:-ms-flexbox;display:flex}.f-justify-center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.f-justify-end{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:end}.f-align-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.wrap{-ms-flex-wrap:wrap;flex-wrap:wrap}.supersize{font-size:4em}@media screen and (max-width:899px){.supersize{font-size:3em}}@media screen and (max-width:599px){.supersize{font-size:2.3em}}.dropshadow{text-shadow:2px 2px 2px #555555}@media screen and (max-width:899px){.feature-box.-vertical-centered{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:80px;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;-ms-flex-wrap:wrap;flex-wrap:wrap}.feature-box.-vertical-centered>.feature-box-image,.feature-box.-vertical-centered>.feature-box-text{display:block;padding:0;width:100%}.feature-box.-vertical-centered>.feature-box-text{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.feature-box.-vertical-centered>.feature-box-image{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}}.main-content ul li[data-icon]:before,.main-content ul li[class^="icon-"]:before,.main-content ul li[class*=" icon-"]:before,.main-content ol li[data-icon]:before,.main-content ol li[class^="icon-"]:before,.main-content ol li[class*=" icon-"]:before{top:0.5em;position:absolute}.main-content ul li[data-icon],.main-content ul li[class^="icon-"],.main-content ul li[class*=" icon-"],.main-content ol li[data-icon],.main-content ol li[class^="icon-"],.main-content ol li[class*=" icon-"]{position:relative}.centered-wrapper-inner.-fullwidth-padded{max-width:none;padding-right:2.66667em;padding-left:2.66667em}@media screen and (max-width:1280px){.centered-wrapper-inner.-fullwidth-padded{padding-right:0;padding-left:0}}.page-header{transform:none !important}.header-navigation.navigation-fixed{width:100vw}.logo{display:block}.logo.centered-logo{margin:0;text-align:center}@media screen and (min-width:900px){.logo.centered-logo{top:0;left:50%;bottom:48px;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.logo.centered-logo img{margin:auto}}.main-navigation.mn-split{float:none;margin:auto;padding:0;height:auto;display:block;position:absolute;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);bottom:0;width:100%;height:100%}.main-navigation.mn-split>ul{display:block;width:100%;max-width:1280px;margin:auto;height:100%}.main-navigation.mn-split>ul>li.float_left{float:left}.main-navigation.mn-split>ul>li.float_right{float:right}.main-navigation.mn-split>ul>li:before,.main-navigation.mn-split>ul>li:after{content:none}.main-navigation.mn-split>ul ol{margin:0;padding:0;height:100%}.main-navigation.mn-split>ul ol>li{display:inline-block;height:100%;position:relative}.main-navigation.mn-split>ul ol>li>a,.main-navigation.mn-split>ul ol>li>span{position:relative;height:100%;padding:0 1.2em;font-size:0.875em;float:left}.main-navigation.mn-split>ul ol>li>ul{position:absolute;top:100%;left:0.5em;display:block;overflow:hidden;max-height:0;min-width:11.25em;padding:0;border:solid #e5e8ee;border-width:1px 1px 2px;border-top-color:#e5e8ee;border-radius:0 0 3px 3px;background:#ffffff;opacity:0;box-shadow:inset 0 6px 2px -5px rgba(0, 0, 0, 0.1);-webkit-transition:max-height 0s, padding 0s, opacity 0.3s;-webkit-transition-delay:0.3s, 0.3s, 0s;-moz-transition:max-height 0s 0.3s, padding 0s 0.3s, opacity 0.3s;-o-transition:max-height 0s 0.3s, padding 0s 0.3s, opacity 0.3s;transition:max-height 0s 0.3s, padding 0s 0.3s, opacity 0.3s;pointer-events:none}.main-navigation.mn-split>ul ol>li>ul li{position:relative;display:block;padding:0.125em 0.375em;border-bottom:1px solid #e5e8ee;white-space:nowrap}.main-navigation.mn-split>ul ol>li>a:before,.main-navigation.mn-split>ul ol>li>span:before{content:"";display:block;height:50%;margin-bottom:-0.71429em}.main-navigation.mn-split>ul ol>li>a:after,.main-navigation.mn-split>ul ol>li>span:after{content:"";position:absolute;top:-1px;right:50%;left:50%;border-top:2px solid #717c8e;-webkit-transition:right 0.4s ease-out, left 0.4s ease-out;-moz-transition:right 0.4s ease-out, left 0.4s ease-out;-o-transition:right 0.4s ease-out, left 0.4s ease-out;transition:right 0.4s ease-out, left 0.4s ease-out}.main-navigation.mn-split>ul ol>li:hover>a:after,.main-navigation.mn-split>ul ol>li:hover>span:after{right:1.42857em;left:1.42857em;-webkit-transition-duration:0.1s, 0.1s;-moz-transition-duration:0.1s, 0.1s;-o-transition-duration:0.1s, 0.1s;transition-duration:0.1s, 0.1s}.main-navigation.mn-split>ul ol>li:hover>ul{z-index:1;max-height:9999px;padding:0.875em 1em;opacity:1;-webkit-transition:opacity 0.2s;-moz-transition:opacity 0.2s;-o-transition:opacity 0.2s;transition:opacity 0.2s;pointer-events:auto}.main-navigation.mn-split>ul ol>li:before{position:absolute;top:50%;left:0.5em;margin-top:-0.33333em;font-size:0.75em}.main-navigation.mn-split>ul ol>li:after{content:"";position:absolute;top:50%;right:0;bottom:-2px;left:0;z-index:1;margin-top:0.625em}.main-content{}.main-content h1,.main-content h2,.main-content h3,.main-content h4,.main-content h5,.main-content h6{font-weight:normal}.main-content .v-center{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.main-content .table-no-border table{border:none}.main-content .table-no-border table td{border:none}.main-content .table-no-border{border:none}.main-content .table-no-border td{border:none}.main-content .custom-link a{position:relative}.main-content .custom-link a:after{content:"»";font-size:2em;display:block;color:#6dbfae;position:absolute;right:-0.6em;bottom:-10px}.main-content .mejs__button>button{width:20px;text-shadow:none;box-shadow:none}.main-content .mejs__button>button:hover,.main-content .mejs__button>button:focus{background-image:url(../../assets/mediaelement/images/mejs-controls.svg);border:none}.main-content .mejs__fullscreen-button>button{background-position:-80px 0}.main-content .mejs__unfullscreen>button{background-position:-100px 0}.main-content .mejs__mute>button{background-position:-60px 0}.main-content .mejs__unmute>button{background-position:-40px 0}.main-content .mejs__volume-button{position:relative}.main-content .mejs__pause>button{background-position:-20px 0}.main-content .mejs__play>button{background-position:0 0}.mejs__button>button{width:20px;text-shadow:none;box-shadow:none}.mejs__button>button:hover,.mejs__button>button:focus{background-image:url(../../assets/mediaelement/images/mejs-controls.svg);border:none}.mejs__fullscreen-button>button{background-position:-80px 0}.mejs__unfullscreen>button{background-position:-100px 0}.mejs__mute>button{background-position:-60px 0}.mejs__unmute>button{background-position:-40px 0}.mejs__volume-button{position:relative}.mejs__pause>button{background-position:-20px 0}.mejs__play>button{background-position:0 0}.bg-image-text .image-text-wrapper{min-height:550px;position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-wrap:wrap;flex-wrap:wrap}.bg-image-text .image-text-wrapper .bg-image-text-heading{display:block;font-weight:bold;color:#717c8e}@media screen and (max-width:900px){.bg-image-text .image-text-wrapper .centered-wrapper{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.bg-image-text .image-text-wrapper .bg-image-wrapper{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}}@media screen and (max-width:1440px) and (min-width:1100px){.bg-image-text .image-text-wrapper{min-height:450px}}@media screen and (max-width:1100px) and (min-width:900px){.bg-image-text .image-text-wrapper{min-height:400px}}@media screen and (max-width:899px) and (min-width:650px){.bg-image-text .image-text-wrapper{min-height:350px}}@media screen and (max-width:649px){.bg-image-text .image-text-wrapper{min-height:300px}}.bg-image-text .bg-image-wrapper{position:absolute;height:100%;width:50%}.bg-image-text .bg-image-wrapper.img-left{left:0;right:auto}.bg-image-text .bg-image-wrapper.img-right{left:auto;right:0}@media screen and (max-width:899px){.bg-image-text .bg-image-wrapper{width:100%;position:relative;min-height:350px}}@media screen and (max-width:649px){.bg-image-text .bg-image-wrapper{min-height:300px}}.bg-image-text .centered-wrapper{width:100%}@media screen and (min-width:900px){.bg-image-text .centered-wrapper.p-right{padding-right:50%}.bg-image-text .centered-wrapper.p-left{padding-left:50%}}.bg-image-text .bg-image{position:absolute;top:0;right:0;bottom:0;left:0;overflow:hidden;background:50% 50% no-repeat;background-size:cover}.bg-image-text .centered-wrapper-inner .text-content{max-width:649px}.bg-image-text .centered-wrapper-inner .text-left{margin-left:auto}@media screen and (min-width:900px){.bg-image-text .centered-wrapper-inner{padding:15px 35px}}.main-content .two-columns,.page-footer .two-columns{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:flex-start;-ms-flex-align:flex-start;align-items:flex-start}.main-content .two-columns .widget,.page-footer .two-columns .widget{-ms-flex-preferred-size:100%;flex-basis:100%;margin:10px 0}@media screen and (min-width:600px){.main-content .two-columns .widget,.page-footer .two-columns .widget{-ms-flex-preferred-size:50%;flex-basis:50%}.main-content .two-columns .widget:nth-child(odd),.page-footer .two-columns .widget:nth-child(odd){padding-right:15px}.main-content .two-columns .widget:nth-child(even),.page-footer .two-columns .widget:nth-child(even){padding-left:15px}}.main-content .two-columns input,.main-content .two-columns textarea,.main-content .two-columns select,.main-content .two-columns fieldset,.page-footer .two-columns input,.page-footer .two-columns textarea,.page-footer .two-columns select,.page-footer .two-columns fieldset{width:100%}@media screen and (min-width:600px){.main-content .two-columns,.page-footer .two-columns{width:75%}}.fw-form input,.fw-form textarea,.fw-form select,.fw-form fieldset{width:100%}.fw-form select{padding:0.85714em 1.35714em;line-height:normal}.placeholder-form .widget-select label{position:absolute;top:-0.8em;left:0.9em;background:white;padding:0 0.3em}.footer-form textarea{height:120px}.footer-form input,.footer-form textarea,.footer-form select,.footer-form fieldset{width:100%}.footer-form input,.footer-form textarea{padding:5px 15px}.footer-form .form-row,.footer-form fieldset{margin:1em auto}.footer-form label{color:#555555}.footer-form button{margin-top:0;width:100%;text-transform:initial;font-weight:bold;text-shadow:none;box-shadow:none;background:#555555;border-radius:0;padding:8px;border:none}.footer-form ::placeholder{color:#555555;opacity:1}.footer-form :-ms-input-placeholder{color:#555555}.footer-form ::-ms-input-placeholder{color:#555555}.impressum p,.datenschutz p{word-wrap:break-word;word-break:break-word}.change-privacy-settings{cursor:pointer}.copyright-list ol>li>ul>li{list-style:"© "}.page-footer{font-size:16px}.page-footer .footer-top-link{position:fixed;bottom:-100px;right:10px;border-radius:99em;height:2.875em;font-size:18px;z-index:20}.page-footer .footer-top-link span{color:transparent}.page-footer .footer-top-link:after{border-radius:99em;border:1px solid #b2b9c4;padding-top:0.8em;-webkit-transition:all 0.3s;-o-transition:all 0.3s;transition:all 0.3s}.page-footer .footer-copyright{float:none;margin:10px;padding:0;text-align:center;color:#555555}.page-footer .footer-links{float:none;margin:0;padding:1em 0;text-align:center;color:#555555}.page-footer .footer-links li:before{background:#555555}@media screen and (max-width:599px){.page-footer{padding-bottom:50px}}.contao-cookiebar .cc-btn,.cookiebar_default .cc-group .cc-detail-btn,.cookiebar_default_deny .cc-group .cc-detail-btn{box-shadow:none;text-shadow:none}.tao-onepager>div.page.no-padding-top{padding-top:0 !important}.inverted_accordion{position:relative;padding-bottom:51px;margin-top:-2px}.inverted_accordion .inverted-header{position:absolute;bottom:0;left:0;width:100%;margin-bottom:0}.inverted_accordion .accordion{border-radius:3px 3px 0 0;border-top-color:#b2b9c4;border-bottom-color:#d8dce1}.download_embed{width:100%;height:60rem;max-height:100vh}body[data-frontend-helper] .row{outline:1px dotted blue}body[data-frontend-helper] .row>*{outline:1px dotted red}.table-borders-less table{border-left:none}.table-borders-less table td{border:none}
@charset "UTF-8";
body{font-weight:400;overflow:unset}#wrapper{z-index:unset}#top .inside{align-items:center;gap:10px;height:40px}#top .inside a{text-decoration:none !important}#top,#header{position:sticky;top:0;z-index:1000;transition:all 0.3s ease}.image-logo{transition:opacity 0.1s ease, visibility 0.1s ease, height 0.1s ease}.image-logo.hidden{opacity:0;visibility:hidden;height:0 !important;overflow:hidden;margin:0}#header .inside{display:block}#header .inside .header-logo .image-logo,#header .inside .header-logo .text-logo{height:100px}#header .inside .header-logo .image-logo{margin:1.5rem 0 1rem}#header .inside .header-logo .content-image figure{height:100%}#header .inside .header-logo .content-image figure a{display:block}#header .inside .header-logo .content-image figure a img{max-height:100%;width:auto}#header nav.mainmenu{display:flex;justify-content:center;overflow:visible}#header nav.mainmenu a,#header nav.mainmenu span{text-transform:none}#header nav.mainmenu ul{list-style:none}#header nav.mainmenu ul.level_1>li>a,#header nav.mainmenu ul.level_1>li>span{display:block;text-transform:uppercase;font-size:25px;font-weight:400;padding:20px 0;margin:0;font-weight:300}#header nav.mainmenu ul.level_1>li>a>span{text-transform:uppercase}#header nav.mainmenu a,#header nav.mainmenu span{font-family:"Open Sans Condensed", sans-serif;font-size:25px}.mainmenu ul,.mainmenu li{list-style:none;margin:0;padding:0}.mainmenu ul.level_1{display:flex;flex-wrap:wrap;justify-content:flex-end;align-items:center;gap:20px}.mainmenu li{position:relative}nav.mainmenu ul.level_1>li>a:after,nav.mainmenu ul.level_1>li>span:after{display:block;background:#9B8651;content:"";position:absolute;left:0;bottom:0;width:100%;height:0;-webkit-transition:height 0.3s ease;-moz-transition:height 0.3s ease;-o-transition:height 0.3s ease;-ms-transition:height 0.3s ease;transition:height 0.3s ease;-webkit-backface-visibility:hidden;backface-visibility:hidden}@media screen and (min-width:1041px){#header{box-shadow:0 0 5px 2px rgba(0, 0, 0, 0.5)}nav.mainmenu ul.level_1>li:hover a:after,nav.mainmenu ul.level_1>a.trail:after,nav.mainmenu ul.level_1>a.active:after,nav.mainmenu ul.level_1>li.active a:after,nav.mainmenu ul.level_1>li.trail a:after,nav.mainmenu ul.level_1>span.trail:after,nav.mainmenu ul.level_1>li.trail span:after,nav.mainmenu ul.level_1>span.active:after,nav.mainmenu ul.level_1>li.active span:after{z-index:-1;height:10px;-webkit-backface-visibility:hidden;backface-visibility:hidden;display:block !important}.nav--horizontal{display:flex;justify-content:flex-end;align-items:center;gap:15px}.nav--main{margin-top:20px}.nav--main .level_2{height:0;overflow:hidden;opacity:0;top:84px;transition:all 0.3s;background:white;left:50%;right:auto;transform:translateX(-50%);width:250px;border:0 none;max-height:65vh}.nav--main ul.level_1>li:hover .level_2{height:auto;opacity:1;top:64px;transition:all 0.3s;border-top:5px solid var(--color-brand-primary);overflow-y:auto}.mobile-submenu{display:none !important}}.nav--main .level_2 li{border-bottom:1px solid var(--color-brand-primary)}.nav--main .level_2 li:last-child{border-bottom:0 none}.nav--main .level_2 li.active,.nav--main .level_2 li:hover{background-color:#F9F7F3}.nav--main .level_2 li>a,.nav--main .level_2 li>span{display:block;opacity:1;margin:0;padding:15px 2rem}nav.mainmenu .karriere span{background:var(--color-brand-primary);border-radius:5px;padding:0 0.5rem;color:white}nav.mainmenu .karriere a:after{background:transparent !important}.nav-toggler{display:none}.nav-toggler__button{background:none;border:none;cursor:pointer;padding:10px}.menu-icon{position:relative;width:30px;height:20px}.menu-icon__inner,.menu-icon__inner::before,.menu-icon__inner::after{background-color:#333;content:"";display:block;height:3px;width:100%;position:absolute;transition:all 0.3s ease}.menu-icon__inner{top:50%;transform:translateY(-50%)}@media (max-width:767px){.nav--horizontal{flex-direction:column;align-items:flex-start}.mainmenu{display:none}.mainmenu ul.level_1{flex-direction:column;gap:0}.mainmenu li{width:100%}.nav-toggler{display:block}}@media screen and (max-width:1040px){#header nav.nav--mobile{display:block;z-index:-1;visibility:hidden;font-size:var(--nav-mobile-font-size);position:fixed;left:0;right:0;top:0;bottom:0;opacity:0%;border-top:var(--base-border);background:var(--nav-mobile-background);padding:var(--grid-gutter);overflow-y:auto;-webkit-overflow-scrolling:touch;-ms-touch-action:touch;touch-action:touch;-ms-overflow-style:none;-webkit-transition:opacity 0.3s, visibility 0.3s 0.3s;transition:opacity 0.3s, visibility 0.3s 0.3s ul;transition-flex-direction:column;transition-height:auto;transition-flex-wrap:nowrap}#header nav.nav--mobile .level_1 a,.nav--mobile .level_1 strong{color:var(--nav-mobile-color);text-overflow:ellipsis;overflow:hidden;white-space:nowrap;display:block}#header nav.nav--mobile .level_1 strong{color:var(--nav-main-color-active)}#header nav.nav--mobile .level_2{position:relative;height:0;overflow:hidden}#header nav.nav--mobile .level_2 a::before,.nav--mobile .level_2 strong::before,.nav--mobile .level_2 li>span::before{content:"→";margin-right:var(--base-spacing-unit-xs)}#header nav.nav--mobile--active{z-index:1004;visibility:visible;opacity:100%;-webkit-transition:opacity 0.3s;transition:opacity 0.3s}.nav-toggler{display:block}.html--fixed{overflow:hidden;position:fixed;height:100%;width:100%}.mobile-submenu{display:block;width:40px;height:40px;display:flex;justify-content:end;align-items:center;border-left:1px solid}ul.level_2{transition:all 0.3s}.mainmenu .level_1>li{width:100%;display:flex;align-items:center;flex-wrap:wrap;border-bottom:1px solid}.mainmenu .level_1>li>a,.mainmenu .level_1>li>span{flex:1 0 auto}.mainmenu .level_1>li:last-child{border-bottom:0 none}#header .inside .header-logo .image-logo,#header .inside .header-logo .text-logo{height:70px}}.articlewrapper.fullwidth>.inside{max-width:100%;padding:0}.articlewrapper.fullwidth_contentboxed>.inside{max-width:1280px;margin-left:auto;margin-right:auto}.articlewrapper.boxed{max-width:1280px;margin-left:auto;margin-right:auto}.articlewrapper.boxed>.inside{max-width:100%}.image-fw img{width:100%}.article-nopadding .inside{padding:0 !important}.grid-boxes>div{background:white;padding:2rem;display:flex;flex-direction:column;gap:0.75rem;justify-content:center;text-align:center;align-items:center;color:#11496A;text-transform:uppercase}.grid-boxes>div a{text-decoration:none !important}.grid-boxes>div>.content-text{display:contents}.mod_article>.inside{max-width:1204px}body.sidebar_right #right>.inside{padding-top:calc(1rem * 3.4);padding-bottom:var(--article-spacing-bottom)}body.sidebar_right #right .mod_article>.inside{padding:0}p{margin-bottom:1.5rem;-webkit-hyphens:manual;-moz-hyphens:manual;-ms-hyphens:manual;hyphens:manual;letter-spacing:initial}a{color:var(--color-brand-primary)}.gebiet-boxes{margin-top:1.5rem;margin-bottom:2rem;column-gap:1rem;grid-row-gap:1rem}.gebiet-box{display:block;width:100%;height:100%}.gebiet-box .teaser-boxes-item{display:block;width:100%;height:100%}.gebiet-box .teaser-boxes-item-heading{display:block;margin-top:1.5rem}.gebiet-box a{color:var(--color-brand-secondary)}.headline-emphesis{font-size:2rem;color:var(--color-brand-primary);padding:0 0.5rem;margin:1.5rem 0;text-align:center}.button,button{display:flex;justify-content:center;align-items:center;background:var(--color-brand-primary);border-radius:5px;padding:8px 1.3rem;margin-bottom:auto;line-height:1;font-size:1rem}#footer{border-top:10px solid var(--color-brand-primary)}#footer .inside{padding:0}#footer>.inside{max-width:1204px;margin:0 auto;padding:2rem 1rem 5rem}#footer-bottom>.inside{max-width:1204px;margin:0 auto;padding:1.5rem 1rem}#footer-bottom>.inside{display:flex;flex-wrap:wrap;justify-content:space-between}.footer-content,.footer-content .row,.footer-logo{width:100%}.footer-logo.text-logo{margin:1rem 0 2rem}.footer-copyright{margin-right:1rem;font-size:0.75rem}.footer-links ul{display:flex;flex-wrap:wrap;font-size:0.75rem;grid-column-gap:0;list-style:none}.footer-links ul li>*{font-weight:400 !important;padding:0}.footer-links ul li{position:relative;padding:0 1em}.footer-links ul li a,.footer-links ul li span{color:var(--color-text)}.footer-links ul li:after{content:"";position:absolute;right:0;top:50%;width:1px;height:1em;background:var(--color-text);transform:translateY(-50%)}.footer-links ul li:first-child{padding-left:0}.footer-links ul li:last-child{padding-right:0}.footer-links ul li:last-child:after{content:none}.custom-iconlinks-item .icon-link:before{content:attr(data-icon)}.custom-iconlinks-item a{display:flex}#footer .footer-content .icon-links-label{display:none}#footer .footer-content .custom-iconlinks-item:before{content:none !important}#footer .footer-content .custom-iconlinks-item .icon-link:before{font-style:normal;font-size:1.5rem;line-height:1.8rem;width:1.8rem;color:var(--color-brand-secondary);background:white;border-radius:3px}.footer-content ul{display:flex}.footer-content .footer-oeffnungszeiten table{border:0 none}.footer-content .footer-oeffnungszeiten table td{border-color:white;border-left:0 none;border-right:0 none;border-bottom:0 none}.footer-content .footer-oeffnungszeiten table tr:last-child td{border-color:white;border-bottom:1px solid}#footer p,#footer table,#footer .button{font-size:16px}#footer .footer-content h2{font-size:18px;margin-bottom:16px}@media screen and (min-width:48em){#footer .footer-content .footer-kontakt-2{margin-top:2rem}}.grid-notare,.grid-anwaelte{column-gap:1rem;grid-row-gap:1rem}.grid-notare .ce_nodes,.grid-anwaelte .ce_nodes{padding:1rem;background:#F9F7F3}.grid-notare h2,.grid-anwaelte h2{color:var(--color-brand-primary);font-size:1.5rem;margin-top:0.7rem;margin-bottom:0.7rem}.sidebar-ansprechpartner.headline-hr{font-size:1.1rem}.headline-hr:after{content:"";display:block;width:100%;height:2px;background:#E3E3E3;margin-bottom:5px}.ap-gallery ul{grid-column-gap:0.5rem;grid-row-gap:1rem}.apname{color:var(--color-brand-primary);font-weight:bold;font-size:0.75rem}.sidebar-nav.sidebar-rechtsgebiete:before,.sidebar-nav.sidebar-notargebiete:before{content:"";display:block;width:100%;height:2px;background:#E3E3E3;margin-bottom:1rem}.sidebar-nav.sidebar-rechtsgebiete h2,.sidebar-nav.sidebar-notargebiete h2{font-size:1rem;text-transform:uppercase}.sidebar-nav.sidebar-rechtsgebiete ul,.sidebar-nav.sidebar-notargebiete ul{margin:0;list-style:none}.sidebar-nav.sidebar-rechtsgebiete ul a,.sidebar-nav.sidebar-notargebiete ul a{text-decoration:none;color:var(--color-text)}.sidebar-nav.sidebar-rechtsgebiete ul a:hover,.sidebar-nav.sidebar-notargebiete ul a:hover{text-decoration:underline}.sidebar-nav.sidebar-rechtsgebiete ul .active,.sidebar-nav.sidebar-notargebiete ul .active{font-weight:bold}.visually-hidden{display:none}#scrollTop{font-size:1.5rem;height:2rem;position:fixed;bottom:10px;right:10px;border-radius:0;z-index:20;background:#7F7F7F;padding:0 5px;color:white}#scrollTop i:before{margin:0}.centered-wrapper-background{position:absolute;top:0;right:0;bottom:0;left:0;overflow:hidden;background:50% 50% no-repeat;background-size:cover}.centered-wrapper-inner{position:relative;max-width:1204px;margin:0 auto}@media screen and (max-width:1244px){.centered-wrapper-inner{margin-left:1rem;margin-right:1rem}}.tagline-gebiete .centered-wrapper{min-height:13vw;height:100px}.tagline-gebiete .centered-wrapper .centered-wrapper-inner{display:flex;justify-content:center;align-items:center;width:100%;height:100%;max-width:none;min-height:inherit;background:rgba(0, 0, 0, 0.5);padding:0 1rem;margin:0}.tagline-gebiete .centered-wrapper .tagline-text{font-size:1.3rem;color:white;text-align:center;margin:0}.tagline-gebiete .centered-wrapper .tagline-text p{letter-spacing:1px}body.rechtsgebiete h1,body.notargebiete h1{color:var(--color-brand-primary);font-size:1.3rem;margin-bottom:1.3rem}body.rechtsgebiete em strong,body.notargebiete em strong{text-transform:uppercase;color:var(--color-brand-primary);font-weight:normal;font-style:normal}#main .content-gallery a,#main .content-image a{display:block;overflow:hidden}#main .content-gallery a img,#main .content-image a img{transform:scale(1);transition:all 0.4s}#main .content-gallery a:hover img,#main .content-image a:hover img{transform:scale(1.1);transition:all 0.4s}ul{list-style:disc}.content-text img{margin-left:0;margin-right:0}.ce_adressblock{background-color:var(--color-brand-primary);color:white;padding:2rem;display:flex;flex-direction:column;justify-content:center}.ce_adressblock a{color:white;text-decoration:none}.ce_adressblock .adressblock_adresse,.ce_adressblock .adressblock_email{margin-bottom:1.5rem}.ce_adressblock .adressblock_tel,.ce_adressblock .adressblock_tel p{margin-bottom:0}.ce_adressblock .adressblock_oeffnungszeiten{margin-bottom:0}.ce_adressblock .adressblock_oeffnungszeiten table,.ce_adressblock .adressblock_oeffnungszeiten td{border:0 none;margin-bottom:0}.ce_adressblock .adressblock_oeffnungszeiten table td{padding:0}.ce_adressblock .adressblock_oeffnungszeiten p{margin-bottom:0}.ce_adressblock .adressblock_oeffnungszeiten:before{content:none}.ce_adressblock .adressblock_email:before,.ce_adressblock .adressblock_fax:before,.ce_adressblock .adressblock_tel:before,.ce_adressblock .adressblock_adresse:before,.ce_adressblock .adressblock_oeffnungszeiten:before{color:white}@media screen and (min-width:768px){body.sidebar_left #main{overflow:hidden;width:70%;float:left;position:relative}body.sidebar_left #left{overflow:hidden;margin-right:5%;width:25%;float:left;position:relative;box-shadow:19px 0px 16px -20px rgba(0, 0, 0, 0.2)}body.sidebar_left #left .inside{padding-right:18%}body.sidebar_right #main{overflow:hidden;width:70%;float:left;position:relative;margin-bottom:40px}body.sidebar_right #right{overflow:hidden;margin-left:5%;width:25%;float:left;position:relative;box-shadow:-19px 0px 16px -20px rgba(0, 0, 0, 0.2);margin-top:45px}body.sidebar_right #right .inside{padding-left:10%;padding-bottom:45px}body.sidebar_both #main{overflow:hidden;width:48%;float:left;position:relative}body.sidebar_both #right{overflow:hidden;margin-left:4%;width:22%;float:left;position:relative;box-shadow:-19px 0px 16px -20px rgba(0, 0, 0, 0.2)}body.sidebar_both #right .inside{padding-left:18%}body.sidebar_both #left{overflow:hidden;margin-right:4%;width:22%;float:left;position:relative;box-shadow:19px 0px 16px -20px rgba(0, 0, 0, 0.2)}body.sidebar_both #left .inside{padding-right:18%}}.image-start{border-bottom:1.5rem solid var(--color-brand-secondary)}
