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;
}

header,footer,nav,section,aside,main,article,figure,figcaption{display:block}body,div,h1,h2,h3,h4,h5,h6,p,blockquote,pre,code,ol,ul,li,dl,dt,dd,figure,table,th,td,form,fieldset,legend,input,textarea{margin:0;padding:0}table{border-spacing:0;border-collapse:collapse}caption,th,td{text-align:left;text-align:start;vertical-align:top}abbr,acronym{font-variant:normal;border-bottom:1px dotted #666;cursor:help}blockquote,q{quotes:none}fieldset,img,iframe{border:0}ul{list-style-type:none}sup{vertical-align:text-top}sub{vertical-align:text-bottom}del{text-decoration:line-through}ins{text-decoration:none}body{font:12px/1 "Lucida Grande","Lucida Sans Unicode",Verdana,sans-serif;color:#000}input,button,textarea,select{font-family:inherit;font-size:99%;font-weight:inherit}pre,code{font-family:Monaco,monospace}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:400}h1{font-size:1.8333em}h2{font-size:1.6667em}h3{font-size:1.5em}h4{font-size:1.3333em}table{font-size:inherit}caption,th{font-weight:700}a{color:#00f}h1,h2,h3,h4,h5,h6{margin-top:1em}h1,h2,h3,h4,h5,h6,p,pre,blockquote,table,ol,ul,form{margin-bottom:12px}
.download-element{padding:3px 6px 3px 22px;background:url(../../assets/contao/images/iconPLAIN.svg) left center no-repeat}ul.enclosure{padding-left:0}li.download-element{list-style-type:none}.ext-xl{background-image:url(../../assets/contao/images/iconXL.svg)}.ext-xls{background-image:url(../../assets/contao/images/iconXLS.svg)}.ext-xlsx{background-image:url(../../assets/contao/images/iconXLSX.svg)}.ext-hqx{background-image:url(../../assets/contao/images/iconHQX.svg)}.ext-cpt{background-image:url(../../assets/contao/images/iconCPT.svg)}.ext-bin{background-image:url(../../assets/contao/images/iconBIN.svg)}.ext-doc{background-image:url(../../assets/contao/images/iconDOC.svg)}.ext-docx{background-image:url(../../assets/contao/images/iconDOCX.svg)}.ext-word{background-image:url(../../assets/contao/images/iconWORD.svg)}.ext-cto{background-image:url(../../assets/contao/images/iconCTO.svg)}.ext-dms{background-image:url(../../assets/contao/images/iconDMS.svg)}.ext-lha{background-image:url(../../assets/contao/images/iconLHA.svg)}.ext-lzh{background-image:url(../../assets/contao/images/iconLZH.svg)}.ext-exe{background-image:url(../../assets/contao/images/iconEXE.svg)}.ext-class{background-image:url(../../assets/contao/images/iconCLASS.svg)}.ext-so{background-image:url(../../assets/contao/images/iconSO.svg)}.ext-sea{background-image:url(../../assets/contao/images/iconSEA.svg)}.ext-dll{background-image:url(../../assets/contao/images/iconDLL.svg)}.ext-oda{background-image:url(../../assets/contao/images/iconODA.svg)}.ext-pdf{background-image:url(../../assets/contao/images/iconPDF.svg)}.ext-ai{background-image:url(../../assets/contao/images/iconAI.svg)}.ext-eps{background-image:url(../../assets/contao/images/iconEPS.svg)}.ext-ps{background-image:url(../../assets/contao/images/iconPS.svg)}.ext-pps{background-image:url(../../assets/contao/images/iconPPS.svg)}.ext-ppt{background-image:url(../../assets/contao/images/iconPPT.svg)}.ext-pptx{background-image:url(../../assets/contao/images/iconPPTX.svg)}.ext-smi{background-image:url(../../assets/contao/images/iconSMI.svg)}.ext-smil{background-image:url(../../assets/contao/images/iconSMIL.svg)}.ext-mif{background-image:url(../../assets/contao/images/iconMIF.svg)}.ext-odc{background-image:url(../../assets/contao/images/iconODC.svg)}.ext-odf{background-image:url(../../assets/contao/images/iconODF.svg)}.ext-odg{background-image:url(../../assets/contao/images/iconODG.svg)}.ext-odi{background-image:url(../../assets/contao/images/iconODI.svg)}.ext-odp{background-image:url(../../assets/contao/images/iconODP.svg)}.ext-ods{background-image:url(../../assets/contao/images/iconODS.svg)}.ext-odt{background-image:url(../../assets/contao/images/iconODT.svg)}.ext-wbxml{background-image:url(../../assets/contao/images/iconWBXML.svg)}.ext-wmlc{background-image:url(../../assets/contao/images/iconWMLC.svg)}.ext-dmg{background-image:url(../../assets/contao/images/iconDMG.svg)}.ext-dcr{background-image:url(../../assets/contao/images/iconDCR.svg)}.ext-dir{background-image:url(../../assets/contao/images/iconDIR.svg)}.ext-dxr{background-image:url(../../assets/contao/images/iconDXR.svg)}.ext-dvi{background-image:url(../../assets/contao/images/iconDVI.svg)}.ext-gtar{background-image:url(../../assets/contao/images/iconGTAR.svg)}.ext-inc{background-image:url(../../assets/contao/images/iconINC.svg)}.ext-php{background-image:url(../../assets/contao/images/iconPHP.svg)}.ext-php3{background-image:url(../../assets/contao/images/iconPHP3.svg)}.ext-php4{background-image:url(../../assets/contao/images/iconPHP4.svg)}.ext-php5{background-image:url(../../assets/contao/images/iconPHP5.svg)}.ext-phtml{background-image:url(../../assets/contao/images/iconPHTML.svg)}.ext-phps{background-image:url(../../assets/contao/images/iconPHPS.svg)}.ext-js{background-image:url(../../assets/contao/images/iconJS.svg)}.ext-psd{background-image:url(../../assets/contao/images/iconPSD.svg)}.ext-rar{background-image:url(../../assets/contao/images/iconRAR.svg)}.ext-fla{background-image:url(../../assets/contao/images/iconFLA.svg)}.ext-swf{background-image:url(../../assets/contao/images/iconSWF.svg)}.ext-sit{background-image:url(../../assets/contao/images/iconSIT.svg)}.ext-tar{background-image:url(../../assets/contao/images/iconTAR.svg)}.ext-tgz{background-image:url(../../assets/contao/images/iconTGZ.svg)}.ext-xhtml{background-image:url(../../assets/contao/images/iconXHTML.svg)}.ext-xht{background-image:url(../../assets/contao/images/iconXHT.svg)}.ext-zip{background-image:url(../../assets/contao/images/iconZIP.svg)}.ext-m4a{background-image:url(../../assets/contao/images/iconM4A.svg)}.ext-mp3{background-image:url(../../assets/contao/images/iconMP3.svg)}.ext-wma{background-image:url(../../assets/contao/images/iconWMA.svg)}.ext-mpeg{background-image:url(../../assets/contao/images/iconMPEG.svg)}.ext-wav{background-image:url(../../assets/contao/images/iconWAV.svg)}.ext-ogg{background-image:url(../../assets/contao/images/iconOGG.svg)}.ext-mid{background-image:url(../../assets/contao/images/iconMID.svg)}.ext-midi{background-image:url(../../assets/contao/images/iconMIDI.svg)}.ext-aif{background-image:url(../../assets/contao/images/iconAIF.svg)}.ext-aiff{background-image:url(../../assets/contao/images/iconAIFF.svg)}.ext-aifc{background-image:url(../../assets/contao/images/iconAIFC.svg)}.ext-ram{background-image:url(../../assets/contao/images/iconRAM.svg)}.ext-rm{background-image:url(../../assets/contao/images/iconRM.svg)}.ext-rpm{background-image:url(../../assets/contao/images/iconRPM.svg)}.ext-ra{background-image:url(../../assets/contao/images/iconRA.svg)}.ext-bmp{background-image:url(../../assets/contao/images/iconBMP.svg)}.ext-gif{background-image:url(../../assets/contao/images/iconGIF.svg)}.ext-jpeg{background-image:url(../../assets/contao/images/iconJPEG.svg)}.ext-jpg{background-image:url(../../assets/contao/images/iconJPG.svg)}.ext-jpe{background-image:url(../../assets/contao/images/iconJPE.svg)}.ext-png{background-image:url(../../assets/contao/images/iconPNG.svg)}.ext-tiff{background-image:url(../../assets/contao/images/iconTIFF.svg)}.ext-tif{background-image:url(../../assets/contao/images/iconTIF.svg)}.ext-svg{background-image:url(../../assets/contao/images/iconSVG.svg)}.ext-svgz{background-image:url(../../assets/contao/images/iconSVGZ.svg)}.ext-webp{background-image:url(../../assets/contao/images/iconWEBP.svg)}.ext-avif{background-image:url(../../assets/contao/images/iconAVIF.svg)}.ext-heic{background-image:url(../../assets/contao/images/iconHEIC.svg)}.ext-jxl{background-image:url(../../assets/contao/images/iconJXL.svg)}.ext-eml{background-image:url(../../assets/contao/images/iconEML.svg)}.ext-asp{background-image:url(../../assets/contao/images/iconASP.svg)}.ext-css{background-image:url(../../assets/contao/images/iconCSS.svg)}.ext-scss{background-image:url(../../assets/contao/images/iconSCSS.svg)}.ext-less{background-image:url(../../assets/contao/images/iconLESS.svg)}.ext-html{background-image:url(../../assets/contao/images/iconHTML.svg)}.ext-htm{background-image:url(../../assets/contao/images/iconHTM.svg)}.ext-md{background-image:url(../../assets/contao/images/iconMD.svg)}.ext-shtml{background-image:url(../../assets/contao/images/iconSHTML.svg)}.ext-txt{background-image:url(../../assets/contao/images/iconTXT.svg)}.ext-text{background-image:url(../../assets/contao/images/iconTEXT.svg)}.ext-log{background-image:url(../../assets/contao/images/iconLOG.svg)}.ext-rtx{background-image:url(../../assets/contao/images/iconRTX.svg)}.ext-rtf{background-image:url(../../assets/contao/images/iconRTF.svg)}.ext-xml{background-image:url(../../assets/contao/images/iconXML.svg)}.ext-xsl{background-image:url(../../assets/contao/images/iconXSL.svg)}.ext-mp4{background-image:url(../../assets/contao/images/iconMP4.svg)}.ext-m4v{background-image:url(../../assets/contao/images/iconM4V.svg)}.ext-mov{background-image:url(../../assets/contao/images/iconMOV.svg)}.ext-wmv{background-image:url(../../assets/contao/images/iconWMV.svg)}.ext-webm{background-image:url(../../assets/contao/images/iconWEBM.svg)}.ext-qt{background-image:url(../../assets/contao/images/iconQT.svg)}.ext-rv{background-image:url(../../assets/contao/images/iconRV.svg)}.ext-avi{background-image:url(../../assets/contao/images/iconAVI.svg)}.ext-ogv{background-image:url(../../assets/contao/images/iconOGV.svg)}.ext-movie{background-image:url(../../assets/contao/images/iconMOVIE.svg)}
.rsts-main,.rsts-main *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.rsts-header,.rsts-footer,.rsts-thumbs-header,.rsts-thumbs-footer{overflow:hidden}.rsts-view,.rsts-thumbs-view{position:relative}@media print{.rsts-view,.rsts-thumbs-view{position:static}}.rsts-crop,.rsts-thumbs-crop{position:relative;overflow:hidden}@media print{.rsts-crop,.rsts-thumbs-crop{position:static;overflow:visible;width:auto !important;height:auto !important;transform:none !important}}.rsts-slides,.rsts-slide,.rsts-thumbs-slides,.rsts-thumbs-slide{position:absolute;left:0;top:0}@media print{.rsts-slides,.rsts-slide,.rsts-thumbs-slides,.rsts-thumbs-slide{position:static;width:auto !important;height:auto !important;transform:none !important}.rsts-slides.rsts-slide-image img,.rsts-slides.rsts-slide-video img,.rsts-slides.rsts-thumbs-slide-image img,.rsts-slides.rsts-thumbs-slide-video img,.rsts-slide.rsts-slide-image img,.rsts-slide.rsts-slide-video img,.rsts-slide.rsts-thumbs-slide-image img,.rsts-slide.rsts-thumbs-slide-video img,.rsts-thumbs-slides.rsts-slide-image img,.rsts-thumbs-slides.rsts-slide-video img,.rsts-thumbs-slides.rsts-thumbs-slide-image img,.rsts-thumbs-slides.rsts-thumbs-slide-video img,.rsts-thumbs-slide.rsts-slide-image img,.rsts-thumbs-slide.rsts-slide-video img,.rsts-thumbs-slide.rsts-thumbs-slide-image img,.rsts-thumbs-slide.rsts-thumbs-slide-video img{width:100% !important;height:auto !important;margin:0 !important}}.rsts-slide,.rsts-thumbs-slide{overflow:hidden}@media print{.rsts-slide,.rsts-thumbs-slide{position:static}}.rsts-video-iframe,.rsts-thumbs-video-iframe{position:absolute;top:0;left:0;width:100%;height:100%}.rsts-type-slide .rsts-view,.rsts-thumbs-type-slide .rsts-thumbs-view{cursor:url("../../bundles/rocksolidslider/img/openhand.cur"),default;cursor:-webkit-grab;cursor:-moz-grab;cursor:-ms-grab;cursor:-o-grab;cursor:grab}.rsts-type-slide.rsts-dragging .rsts-view,.rsts-thumbs-type-slide.rsts-thumbs-dragging .rsts-thumbs-view{cursor:url("../../bundles/rocksolidslider/img/closedhand.cur"),default;cursor:-webkit-grabbing;cursor:-moz-grabbing;cursor:-ms-grabbing;cursor:-o-grabbing;cursor:grabbing;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.rsts-type-slide.rsts-dragging-disabled .rsts-view,.rsts-thumbs-type-slide.rsts-thumbs-dragging-disabled .rsts-thumbs-view{cursor:auto}@media print{.rsts-nav,.rsts-prev,.rsts-next,.rsts-overlay-prev,.rsts-overlay-next,.rsts-progress,.rsts-thumbs-nav,.rsts-thumbs-prev,.rsts-thumbs-next,.rsts-thumbs-overlay-prev,.rsts-thumbs-overlay-next,.rsts-thumbs-progress{display:none !important}}

table.sortable thead th{background-image:url(../../assets/tablesorter/images/default.svg);background-repeat:no-repeat;background-position:center right}table.sortable thead th.tablesorter-headerDesc{background-image:url(../../assets/tablesorter/images/asc.svg)}table.sortable thead th.tablesorter-headerAsc{background-image:url(../../assets/tablesorter/images/desc.svg)}
.twentytwenty-horizontal .twentytwenty-handle:before, .twentytwenty-horizontal .twentytwenty-handle:after, .twentytwenty-vertical .twentytwenty-handle:before, .twentytwenty-vertical .twentytwenty-handle:after {
  content: " ";
  display: block;
  background: white;
  position: absolute;
  z-index: 30;
  -webkit-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
  -moz-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5); }

.twentytwenty-horizontal .twentytwenty-handle:before, .twentytwenty-horizontal .twentytwenty-handle:after {
  width: 3px;
  height: 9999px;
  left: 50%;
  margin-left: -1.5px; }

.twentytwenty-vertical .twentytwenty-handle:before, .twentytwenty-vertical .twentytwenty-handle:after {
  width: 9999px;
  height: 3px;
  top: 50%;
  margin-top: -1.5px; }

.twentytwenty-before-label, .twentytwenty-after-label, .twentytwenty-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%; }

.twentytwenty-before-label, .twentytwenty-after-label, .twentytwenty-overlay {
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  transition-duration: 0.5s; }

.twentytwenty-before-label, .twentytwenty-after-label {
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  transition-property: opacity; }

.twentytwenty-before-label:before, .twentytwenty-after-label:before {
  color: white;
  font-size: 13px;
  letter-spacing: 0.1em; }

.twentytwenty-before-label:before, .twentytwenty-after-label:before {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  line-height: 38px;
  padding: 0 20px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px; }

.twentytwenty-horizontal .twentytwenty-before-label:before, .twentytwenty-horizontal .twentytwenty-after-label:before {
  top: 50%;
  margin-top: -19px; }

.twentytwenty-vertical .twentytwenty-before-label:before, .twentytwenty-vertical .twentytwenty-after-label:before {
  left: 50%;
  margin-left: -45px;
  text-align: center;
  width: 90px; }

.twentytwenty-left-arrow, .twentytwenty-right-arrow, .twentytwenty-up-arrow, .twentytwenty-down-arrow {
  width: 0;
  height: 0;
  border: 6px inset transparent;
  position: absolute; }

.twentytwenty-left-arrow, .twentytwenty-right-arrow {
  top: 50%;
  margin-top: -6px; }

.twentytwenty-up-arrow, .twentytwenty-down-arrow {
  left: 50%;
  margin-left: -6px; }

.twentytwenty-container {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  z-index: 0;
  overflow: hidden;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none; }
  .twentytwenty-container img {
    max-width: 100%;
    position: absolute;
    top: 0;
    display: block; }
  .twentytwenty-container.active .twentytwenty-overlay, .twentytwenty-container.active :hover.twentytwenty-overlay {
    background: rgba(0, 0, 0, 0); }
    .twentytwenty-container.active .twentytwenty-overlay .twentytwenty-before-label,
    .twentytwenty-container.active .twentytwenty-overlay .twentytwenty-after-label, .twentytwenty-container.active :hover.twentytwenty-overlay .twentytwenty-before-label,
    .twentytwenty-container.active :hover.twentytwenty-overlay .twentytwenty-after-label {
      opacity: 0; }
  .twentytwenty-container * {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box; }

.twentytwenty-before-label {
  opacity: 0; }
  .twentytwenty-before-label:before {
    content: attr(data-content); }

.twentytwenty-after-label {
  opacity: 0; }
  .twentytwenty-after-label:before {
    content: attr(data-content); }

.twentytwenty-horizontal .twentytwenty-before-label:before {
  left: 10px; }

.twentytwenty-horizontal .twentytwenty-after-label:before {
  right: 10px; }

.twentytwenty-vertical .twentytwenty-before-label:before {
  top: 10px; }

.twentytwenty-vertical .twentytwenty-after-label:before {
  bottom: 10px; }

.twentytwenty-overlay {
  -webkit-transition-property: background;
  -moz-transition-property: background;
  transition-property: background;
  background: rgba(0, 0, 0, 0);
  z-index: 25; }
  .twentytwenty-overlay:hover {
    background: rgba(0, 0, 0, 0.5); }
    .twentytwenty-overlay:hover .twentytwenty-after-label {
      opacity: 1; }
    .twentytwenty-overlay:hover .twentytwenty-before-label {
      opacity: 1; }

.twentytwenty-before {
  z-index: 20; }

.twentytwenty-after {
  z-index: 10; }

.twentytwenty-handle {
  height: 38px;
  width: 38px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -22px;
  margin-top: -22px;
  border: 3px solid white;
  -webkit-border-radius: 1000px;
  -moz-border-radius: 1000px;
  border-radius: 1000px;
  -webkit-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
  -moz-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
  z-index: 40;
  cursor: pointer; }

.twentytwenty-horizontal .twentytwenty-handle:before {
  bottom: 50%;
  margin-bottom: 22px;
  -webkit-box-shadow: 0 3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  -moz-box-shadow: 0 3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: 0 3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5); }
.twentytwenty-horizontal .twentytwenty-handle:after {
  top: 50%;
  margin-top: 22px;
  -webkit-box-shadow: 0 -3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  -moz-box-shadow: 0 -3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: 0 -3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5); }

.twentytwenty-vertical .twentytwenty-handle:before {
  left: 50%;
  margin-left: 22px;
  -webkit-box-shadow: 3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  -moz-box-shadow: 3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: 3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5); }
.twentytwenty-vertical .twentytwenty-handle:after {
  right: 50%;
  margin-right: 22px;
  -webkit-box-shadow: -3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  -moz-box-shadow: -3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: -3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5); }

.twentytwenty-left-arrow {
  border-right: 6px solid white;
  left: 50%;
  margin-left: -17px; }

.twentytwenty-right-arrow {
  border-left: 6px solid white;
  right: 50%;
  margin-right: -17px; }

.twentytwenty-up-arrow {
  border-bottom: 6px solid white;
  top: 50%;
  margin-top: -17px; }

.twentytwenty-down-arrow {
  border-top: 6px solid white;
  bottom: 50%;
  margin-bottom: -17px; }

body.compensate-for-scrollbar{overflow:hidden}.fancybox-active{height:auto}.fancybox-is-hidden{left:-9999px;margin:0;position:absolute!important;top:-9999px;visibility:hidden}.fancybox-container{-webkit-backface-visibility:hidden;height:100%;left:0;outline:none;position:fixed;-webkit-tap-highlight-color:transparent;top:0;-ms-touch-action:manipulation;touch-action:manipulation;transform:translateZ(0);width:100%;z-index:99992}.fancybox-container *{box-sizing:border-box}.fancybox-bg,.fancybox-inner,.fancybox-outer,.fancybox-stage{bottom:0;left:0;position:absolute;right:0;top:0}.fancybox-outer{-webkit-overflow-scrolling:touch;overflow-y:auto}.fancybox-bg{background:#1e1e1e;opacity:0;transition-duration:inherit;transition-property:opacity;transition-timing-function:cubic-bezier(.47,0,.74,.71)}.fancybox-is-open .fancybox-bg{opacity:.9;transition-timing-function:cubic-bezier(.22,.61,.36,1)}.fancybox-caption,.fancybox-infobar,.fancybox-navigation .fancybox-button,.fancybox-toolbar{direction:ltr;opacity:0;position:absolute;transition:opacity .25s ease,visibility 0s ease .25s;visibility:hidden;z-index:99997}.fancybox-show-caption .fancybox-caption,.fancybox-show-infobar .fancybox-infobar,.fancybox-show-nav .fancybox-navigation .fancybox-button,.fancybox-show-toolbar .fancybox-toolbar{opacity:1;transition:opacity .25s ease 0s,visibility 0s ease 0s;visibility:visible}.fancybox-infobar{color:#ccc;font-size:13px;-webkit-font-smoothing:subpixel-antialiased;height:44px;left:0;line-height:44px;min-width:44px;mix-blend-mode:difference;padding:0 10px;pointer-events:none;top:0;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fancybox-toolbar{right:0;top:0}.fancybox-stage{direction:ltr;overflow:visible;transform:translateZ(0);z-index:99994}.fancybox-is-open .fancybox-stage{overflow:hidden}.fancybox-slide{-webkit-backface-visibility:hidden;display:none;height:100%;left:0;outline:none;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:absolute;text-align:center;top:0;transition-property:transform,opacity;white-space:normal;width:100%;z-index:99994}.fancybox-slide:before{content:"";display:inline-block;font-size:0;height:100%;vertical-align:middle;width:0}.fancybox-is-sliding .fancybox-slide,.fancybox-slide--current,.fancybox-slide--next,.fancybox-slide--previous{display:block}.fancybox-slide--image{overflow:hidden;padding:44px 0}.fancybox-slide--image:before{display:none}.fancybox-slide--html{padding:6px}.fancybox-content{background:#fff;display:inline-block;margin:0;max-width:100%;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:relative;text-align:left;vertical-align:middle}.fancybox-slide--image .fancybox-content{animation-timing-function:cubic-bezier(.5,0,.14,1);-webkit-backface-visibility:hidden;background:transparent;background-repeat:no-repeat;background-size:100% 100%;left:0;max-width:none;overflow:visible;padding:0;position:absolute;top:0;transform-origin:top left;transition-property:transform,opacity;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:99995}.fancybox-can-zoomOut .fancybox-content{cursor:zoom-out}.fancybox-can-zoomIn .fancybox-content{cursor:zoom-in}.fancybox-can-pan .fancybox-content,.fancybox-can-swipe .fancybox-content{cursor:grab}.fancybox-is-grabbing .fancybox-content{cursor:grabbing}.fancybox-container [data-selectable=true]{cursor:text}.fancybox-image,.fancybox-spaceball{background:transparent;border:0;height:100%;left:0;margin:0;max-height:none;max-width:none;padding:0;position:absolute;top:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:100%}.fancybox-spaceball{z-index:1}.fancybox-slide--iframe .fancybox-content,.fancybox-slide--map .fancybox-content,.fancybox-slide--pdf .fancybox-content,.fancybox-slide--video .fancybox-content{height:100%;overflow:visible;padding:0;width:100%}.fancybox-slide--video .fancybox-content{background:#000}.fancybox-slide--map .fancybox-content{background:#e5e3df}.fancybox-slide--iframe .fancybox-content{background:#fff}.fancybox-iframe,.fancybox-video{background:transparent;border:0;display:block;height:100%;margin:0;overflow:hidden;padding:0;width:100%}.fancybox-iframe{left:0;position:absolute;top:0}.fancybox-error{background:#fff;cursor:default;max-width:400px;padding:40px;width:100%}.fancybox-error p{color:#444;font-size:16px;line-height:20px;margin:0;padding:0}.fancybox-button{background:rgba(30,30,30,.6);border:0;border-radius:0;box-shadow:none;cursor:pointer;display:inline-block;height:44px;margin:0;padding:10px;position:relative;transition:color .2s;vertical-align:top;visibility:inherit;width:44px}.fancybox-button,.fancybox-button:link,.fancybox-button:visited{color:#ccc}.fancybox-button:hover{color:#fff}.fancybox-button:focus{outline:none}.fancybox-button.fancybox-focus{outline:1px dotted}.fancybox-button[disabled],.fancybox-button[disabled]:hover{color:#888;cursor:default;outline:none}.fancybox-button div{height:100%}.fancybox-button svg{display:block;height:100%;overflow:visible;position:relative;width:100%}.fancybox-button svg path{fill:currentColor;stroke-width:0}.fancybox-button--fsenter svg:nth-child(2),.fancybox-button--fsexit svg:first-child,.fancybox-button--pause svg:first-child,.fancybox-button--play svg:nth-child(2){display:none}.fancybox-progress{background:#ff5268;height:2px;left:0;position:absolute;right:0;top:0;transform:scaleX(0);transform-origin:0;transition-property:transform;transition-timing-function:linear;z-index:99998}.fancybox-close-small{background:transparent;border:0;border-radius:0;color:#ccc;cursor:pointer;opacity:.8;padding:8px;position:absolute;right:-12px;top:-44px;z-index:401}.fancybox-close-small:hover{color:#fff;opacity:1}.fancybox-slide--html .fancybox-close-small{color:currentColor;padding:10px;right:0;top:0}.fancybox-slide--image.fancybox-is-scaling .fancybox-content{overflow:hidden}.fancybox-is-scaling .fancybox-close-small,.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small{display:none}.fancybox-navigation .fancybox-button{background-clip:content-box;height:100px;opacity:0;position:absolute;top:calc(50% - 50px);width:70px}.fancybox-navigation .fancybox-button div{padding:7px}.fancybox-navigation .fancybox-button--arrow_left{left:0;left:env(safe-area-inset-left);padding:31px 26px 31px 6px}.fancybox-navigation .fancybox-button--arrow_right{padding:31px 6px 31px 26px;right:0;right:env(safe-area-inset-right)}.fancybox-caption{background:linear-gradient(0deg,rgba(0,0,0,.85) 0,rgba(0,0,0,.3) 50%,rgba(0,0,0,.15) 65%,rgba(0,0,0,.075) 75.5%,rgba(0,0,0,.037) 82.85%,rgba(0,0,0,.019) 88%,transparent);bottom:0;color:#eee;font-size:14px;font-weight:400;left:0;line-height:1.5;padding:75px 44px 25px;pointer-events:none;right:0;text-align:center;z-index:99996}@supports (padding:max(0px)){.fancybox-caption{padding:75px max(44px,env(safe-area-inset-right)) max(25px,env(safe-area-inset-bottom)) max(44px,env(safe-area-inset-left))}}.fancybox-caption--separate{margin-top:-50px}.fancybox-caption__body{max-height:50vh;overflow:auto;pointer-events:all}.fancybox-caption a,.fancybox-caption a:link,.fancybox-caption a:visited{color:#ccc;text-decoration:none}.fancybox-caption a:hover{color:#fff;text-decoration:underline}.fancybox-loading{animation:a 1s linear infinite;background:transparent;border:4px solid #888;border-bottom-color:#fff;border-radius:50%;height:50px;left:50%;margin:-25px 0 0 -25px;opacity:.7;padding:0;position:absolute;top:50%;width:50px;z-index:99999}@keyframes a{to{transform:rotate(1turn)}}.fancybox-animated{transition-timing-function:cubic-bezier(0,0,.25,1)}.fancybox-fx-slide.fancybox-slide--previous{opacity:0;transform:translate3d(-100%,0,0)}.fancybox-fx-slide.fancybox-slide--next{opacity:0;transform:translate3d(100%,0,0)}.fancybox-fx-slide.fancybox-slide--current{opacity:1;transform:translateZ(0)}.fancybox-fx-fade.fancybox-slide--next,.fancybox-fx-fade.fancybox-slide--previous{opacity:0;transition-timing-function:cubic-bezier(.19,1,.22,1)}.fancybox-fx-fade.fancybox-slide--current{opacity:1}.fancybox-fx-zoom-in-out.fancybox-slide--previous{opacity:0;transform:scale3d(1.5,1.5,1.5)}.fancybox-fx-zoom-in-out.fancybox-slide--next{opacity:0;transform:scale3d(.5,.5,.5)}.fancybox-fx-zoom-in-out.fancybox-slide--current{opacity:1;transform:scaleX(1)}.fancybox-fx-rotate.fancybox-slide--previous{opacity:0;transform:rotate(-1turn)}.fancybox-fx-rotate.fancybox-slide--next{opacity:0;transform:rotate(1turn)}.fancybox-fx-rotate.fancybox-slide--current{opacity:1;transform:rotate(0deg)}.fancybox-fx-circular.fancybox-slide--previous{opacity:0;transform:scale3d(0,0,0) translate3d(-100%,0,0)}.fancybox-fx-circular.fancybox-slide--next{opacity:0;transform:scale3d(0,0,0) translate3d(100%,0,0)}.fancybox-fx-circular.fancybox-slide--current{opacity:1;transform:scaleX(1) translateZ(0)}.fancybox-fx-tube.fancybox-slide--previous{transform:translate3d(-100%,0,0) scale(.1) skew(-10deg)}.fancybox-fx-tube.fancybox-slide--next{transform:translate3d(100%,0,0) scale(.1) skew(10deg)}.fancybox-fx-tube.fancybox-slide--current{transform:translateZ(0) scale(1)}@media (max-height:576px){.fancybox-slide{padding-left:6px;padding-right:6px}.fancybox-slide--image{padding:6px 0}.fancybox-close-small{right:-6px}.fancybox-slide--image .fancybox-close-small{background:#4e4e4e;color:#f2f4f6;height:36px;opacity:1;padding:6px;right:0;top:0;width:36px}.fancybox-caption{padding-left:12px;padding-right:12px}@supports (padding:max(0px)){.fancybox-caption{padding-left:max(12px,env(safe-area-inset-left));padding-right:max(12px,env(safe-area-inset-right))}}}.fancybox-share{background:#f4f4f4;border-radius:3px;max-width:90%;padding:30px;text-align:center}.fancybox-share h1{color:#222;font-size:35px;font-weight:700;margin:0 0 20px}.fancybox-share p{margin:0;padding:0}.fancybox-share__button{border:0;border-radius:3px;display:inline-block;font-size:14px;font-weight:700;line-height:40px;margin:0 5px 10px;min-width:130px;padding:0 15px;text-decoration:none;transition:all .2s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap}.fancybox-share__button:link,.fancybox-share__button:visited{color:#fff}.fancybox-share__button:hover{text-decoration:none}.fancybox-share__button--fb{background:#3b5998}.fancybox-share__button--fb:hover{background:#344e86}.fancybox-share__button--pt{background:#bd081d}.fancybox-share__button--pt:hover{background:#aa0719}.fancybox-share__button--tw{background:#1da1f2}.fancybox-share__button--tw:hover{background:#0d95e8}.fancybox-share__button svg{height:25px;margin-right:7px;position:relative;top:-1px;vertical-align:middle;width:25px}.fancybox-share__button svg path{fill:#fff}.fancybox-share__input{background:transparent;border:0;border-bottom:1px solid #d7d7d7;border-radius:0;color:#5d5b5b;font-size:14px;margin:10px 0 0;outline:none;padding:10px 15px;width:100%}.fancybox-thumbs{background:#ddd;bottom:0;display:none;margin:0;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;padding:2px 2px 4px;position:absolute;right:0;-webkit-tap-highlight-color:rgba(0,0,0,0);top:0;width:212px;z-index:99995}.fancybox-thumbs-x{overflow-x:auto;overflow-y:hidden}.fancybox-show-thumbs .fancybox-thumbs{display:block}.fancybox-show-thumbs .fancybox-inner{right:212px}.fancybox-thumbs__list{font-size:0;height:100%;list-style:none;margin:0;overflow-x:hidden;overflow-y:auto;padding:0;position:absolute;position:relative;white-space:nowrap;width:100%}.fancybox-thumbs-x .fancybox-thumbs__list{overflow:hidden}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar{width:7px}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track{background:#fff;border-radius:10px;box-shadow:inset 0 0 6px rgba(0,0,0,.3)}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb{background:#2a2a2a;border-radius:10px}.fancybox-thumbs__list a{-webkit-backface-visibility:hidden;backface-visibility:hidden;background-color:rgba(0,0,0,.1);background-position:50%;background-repeat:no-repeat;background-size:cover;cursor:pointer;float:left;height:75px;margin:2px;max-height:calc(100% - 8px);max-width:calc(50% - 4px);outline:none;overflow:hidden;padding:0;position:relative;-webkit-tap-highlight-color:transparent;width:100px}.fancybox-thumbs__list a:before{border:6px solid #ff5268;bottom:0;content:"";left:0;opacity:0;position:absolute;right:0;top:0;transition:all .2s cubic-bezier(.25,.46,.45,.94);z-index:99991}.fancybox-thumbs__list a:focus:before{opacity:.5}.fancybox-thumbs__list a.fancybox-thumbs-active:before{opacity:1}@media (max-width:576px){.fancybox-thumbs{width:110px}.fancybox-show-thumbs .fancybox-inner{right:110px}.fancybox-thumbs__list a{max-width:calc(100% - 10px)}}
@charset "UTF-8";
.contao-cookiebar {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9999;
  font-size: 0;
  letter-spacing: 0;
  text-align: center;
  padding: 15px;
  max-height: 100vh;
  box-sizing: border-box;
  pointer-events: none;
  overflow: hidden; }
  .contao-cookiebar * {
    box-sizing: border-box; }
  .contao-cookiebar:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle; }
  .contao-cookiebar .cc-inner {
    display: inline-block;
    overflow-y: auto;
    max-height: 100%;
    max-width: 100%;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    font-size: 1rem;
    text-align: left; }
  .contao-cookiebar.cc-top .cc-inner {
    vertical-align: top; }
  .contao-cookiebar.cc-top.cc-active .cc-inner {
    animation: cookiebar-top-in 0.5s ease-in-out forwards; }
  .contao-cookiebar.cc-top.cc-saved .cc-inner {
    animation: cookiebar-top-out 0.5s ease-in-out forwards; }
  .contao-cookiebar.cc-bottom .cc-inner {
    vertical-align: bottom; }
  .contao-cookiebar.cc-bottom.cc-active .cc-inner {
    animation: cookiebar-bottom-in 0.5s ease-in-out forwards; }
  .contao-cookiebar.cc-bottom.cc-saved .cc-inner {
    animation: cookiebar-bottom-out 0.5s ease-in-out forwards; }
  .contao-cookiebar.cc-middle .cc-inner {
    vertical-align: middle; }
  .contao-cookiebar.cc-middle.cc-active .cc-inner {
    animation: cookiebar-middle-in 0.5s ease-in-out forwards; }
  .contao-cookiebar.cc-middle.cc-saved .cc-inner {
    animation: cookiebar-middle-out 0.5s ease-in-out forwards; }
  .contao-cookiebar.cc-left {
    text-align: left; }
  .contao-cookiebar.cc-right {
    text-align: right; }
  .contao-cookiebar .cc-head h1:first-child, .contao-cookiebar .cc-head h2:first-child, .contao-cookiebar .cc-head h3:first-child, .contao-cookiebar .cc-head h4:first-child, .contao-cookiebar .cc-head h5:first-child, .contao-cookiebar .cc-head h6:first-child {
    margin-top: 0; }
  .contao-cookiebar .cc-head p {
    margin-bottom: 15px; }
  .contao-cookiebar .cc-btn {
    display: inline-block;
    cursor: pointer;
    width: 100%;
    padding: 8px 14px;
    margin-bottom: 8px;
    font-size: 15px;
    outline: 0 none;
    border: 1px solid #cfcfcf;
    border-radius: 4px;
    color: #444;
    background: #f5f5f5; }
    .contao-cookiebar .cc-btn:hover {
      background: #ececec; }
    .contao-cookiebar .cc-btn:last-child {
      margin-bottom: 0; }
  .contao-cookiebar .grayscale .cc-btn {
    background: #f1efef; }
    .contao-cookiebar .grayscale .cc-btn:hover {
      background: #ececec; }
    .contao-cookiebar .grayscale .cc-btn.success {
      background: #fbfbfb; }
      .contao-cookiebar .grayscale .cc-btn.success:hover {
        background: #f7f7f7; }
  .contao-cookiebar .highlight .cc-btn.success {
    background: #4e9e3e;
    border-color: #3e7830;
    color: #fff; }
    .contao-cookiebar .highlight .cc-btn.success:hover {
      background: #4c933f; }
  .contao-cookiebar label {
    position: relative;
    display: block;
    padding: 8px 13px 8px 0;
    line-height: 1.2rem; }
    .contao-cookiebar label.group {
      font-weight: 600; }
  .contao-cookiebar input {
    position: absolute;
    width: 1px;
    height: 1px;
    outline: 0 none;
    opacity: 0; }
    .contao-cookiebar input + label {
      padding: 8px 13px 8px 50px;
      cursor: pointer; }
      .contao-cookiebar input + label:before {
        content: '';
        position: absolute;
        top: 6px;
        left: 0;
        width: 35px;
        height: 18px;
        margin: 0;
        box-sizing: content-box;
        border-radius: 10px;
        background: #fff;
        border: 2px solid #9c9b99;
        transition: border-color .2s; }
      .contao-cookiebar input + label:after {
        display: block;
        content: '';
        position: absolute;
        top: 10px;
        left: 4px;
        width: 14px;
        height: 14px;
        border-radius: 10px;
        background: #9c9b99;
        transition: background .2s, margin-left .2s, padding .2s; }
      .contao-cookiebar input + label:active:after {
        padding-left: 5px; }
    .contao-cookiebar input.cc-group-half + label:after {
      background: linear-gradient(to right, #9c9b99 0%, #9c9b99 50%, #399d32 50%, #399d32 100%); }
    .contao-cookiebar input:checked + label:after {
      background: #399d32;
      margin-left: 17px; }
    .contao-cookiebar input:checked + label:active:after {
      margin-left: 12px; }
    .contao-cookiebar input:checked + label:before {
      background: #dcf3db;
      border-color: #399d32; }
    .contao-cookiebar input:disabled + label {
      pointer-events: none; }
      .contao-cookiebar input:disabled + label:after {
        background: #c8c7c5; }
      .contao-cookiebar input:disabled + label:before {
        background: #f4f4f4;
        border-color: #c8c7c5; }
  .contao-cookiebar.cc-active .cc-inner {
    opacity: 1;
    pointer-events: auto;
    visibility: visible; }
  .contao-cookiebar.cc-active.cc-blocked {
    pointer-events: auto;
    animation: cookiebar-overlay-in 0.5s ease-in-out forwards; }
  .contao-cookiebar.cc-saved.cc-inner {
    opacity: 0;
    pointer-events: none;
    visibility: hidden; }
  .contao-cookiebar.cc-saved.cc-blocked {
    pointer-events: none;
    animation: cookiebar-overlay-out 0.5s ease-in-out forwards; }

@media (min-width: 768px) {
  .contao-cookiebar .cc-btn {
    width: auto;
    margin-bottom: 0; }
  .contao-cookiebar .cc-inner {
    max-width: 750px; } }

@keyframes cookiebar-overlay-in {
  0% {
    background: rgba(0, 0, 0, 0); }
  100% {
    background: rgba(0, 0, 0, 0.75); } }

@keyframes cookiebar-overlay-out {
  0% {
    background: rgba(0, 0, 0, 0.75); }
  100% {
    background: rgba(0, 0, 0, 0);
    visibility: hidden; } }

@keyframes cookiebar-top-in {
  0% {
    opacity: 0;
    transform: translateY(-100%); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

@keyframes cookiebar-top-out {
  0% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); }
  100% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%); } }

@keyframes cookiebar-middle-in {
  0% {
    opacity: 0;
    transform: scale(0); }
  100% {
    opacity: 1;
    transform: scale(1); } }

@keyframes cookiebar-middle-out {
  0% {
    opacity: 1;
    visibility: visible;
    transform: scale(1); }
  100% {
    opacity: 0;
    visibility: hidden;
    transform: scale(0); } }

@keyframes cookiebar-bottom-in {
  0% {
    opacity: 0;
    transform: translateY(100%); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

@keyframes cookiebar-bottom-out {
  0% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); }
  100% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%); } }

.contao-cookiebar {
  color: #444444; }
  .contao-cookiebar p {
    color: #868686;
    line-height: 1.4; }
  .contao-cookiebar .cc-inner {
    padding: 25px;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
    background: #fff; }
  .contao-cookiebar .cc-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
    position: relative;
    border: 1px solid #d0d0d0;
    border-radius: 5px;
    margin-bottom: 10px; }
    .contao-cookiebar .cc-group > label {
      flex-grow: 1;
      margin: 5px 0 5px 10px; }
    .contao-cookiebar .cc-group .cc-detail-btn {
      border: 0 none;
      outline: 0 none;
      background: transparent;
      font-size: 13px;
      letter-spacing: 0;
      text-transform: initial;
      cursor: pointer;
      color: #a2a2a2;
      padding: 8px 10px;
      line-height: 1.2rem; }
      .contao-cookiebar .cc-group .cc-detail-btn span:nth-child(2) {
        display: none; }
      .contao-cookiebar .cc-group .cc-detail-btn.cc-active span:nth-child(1) {
        display: none; }
      .contao-cookiebar .cc-group .cc-detail-btn.cc-active span:nth-child(2) {
        display: inline; }
      .contao-cookiebar .cc-group .cc-detail-btn:hover {
        color: #717171; }
    .contao-cookiebar .cc-group .cc-detail-btn-details {
      display: inline-block;
      border: 0 none;
      outline: 0 none;
      background: transparent;
      font-size: 13px;
      letter-spacing: 0;
      text-transform: initial;
      cursor: pointer;
      color: #a2a2a2;
      text-decoration: underline;
      padding: 0;
      margin: 0 0 10px; }
      .contao-cookiebar .cc-group .cc-detail-btn-details span:nth-child(2) {
        display: none; }
      .contao-cookiebar .cc-group .cc-detail-btn-details.cc-active span:nth-child(1) {
        display: none; }
      .contao-cookiebar .cc-group .cc-detail-btn-details.cc-active span:nth-child(2) {
        display: inline; }
      .contao-cookiebar .cc-group .cc-detail-btn-details:hover {
        color: #717171; }
  .contao-cookiebar .cc-cookies {
    display: none;
    width: 100%;
    background: #fbfbfb;
    border-radius: 0 0 5px 5px; }
    .contao-cookiebar .cc-cookies > p {
      font-size: 0.875rem; }
    .contao-cookiebar .cc-cookies > p, .contao-cookiebar .cc-cookies > .cc-cookie {
      margin: 0;
      padding: 15px;
      border-top: 1px solid #e6e6e6; }
    .contao-cookiebar .cc-cookies .cc-cookie .cc-cookie-info {
      font-size: 0.875rem;
      background: #fff;
      padding: 10px;
      border-radius: 5px;
      border: 1px solid #efefef; }
      .contao-cookiebar .cc-cookies .cc-cookie .cc-cookie-info > div > span {
        font-weight: 600; }
      .contao-cookiebar .cc-cookies .cc-cookie .cc-cookie-info > div + div {
        margin-top: 5px;
        word-wrap: break-word; }
      .contao-cookiebar .cc-cookies .cc-cookie .cc-cookie-info + button.cc-detail-btn-details {
        margin-top: 15px; }
    .contao-cookiebar .cc-cookies .cc-cookie .cc-cookie-desc > p {
      margin-bottom: 0; }
    .contao-cookiebar .cc-cookies .cc-cookie label.cookie + p, .contao-cookiebar .cc-cookies .cc-cookie label.cookie + .cc-cookie-info, .contao-cookiebar .cc-cookies .cc-cookie label.cookie + button.cc-detail-btn-details {
      margin-top: 10px; }
    .contao-cookiebar .cc-cookies .cc-cookie p {
      margin: 0 0 15px;
      font-size: 0.875rem; }
  .contao-cookiebar .cc-footer, .contao-cookiebar .cc-info {
    text-align: center; }
  .contao-cookiebar .cc-info {
    margin-top: 15px; }
    .contao-cookiebar .cc-info > p {
      font-size: 0.875rem; }
    .contao-cookiebar .cc-info > a {
      display: inline-block;
      font-size: 0.813rem;
      color: #a2a2a2;
      text-decoration: none; }
      .contao-cookiebar .cc-info > a:hover {
        color: #717171; }
      .contao-cookiebar .cc-info > a + a:before {
        display: inline-block;
        content: '·';
        margin-right: 5px; }

/* normalize.css 2012-03-11T12:53 UTC - http://github.com/necolas/normalize.css */
/* =============================================================================
 * HTML5 display definitions
 * ========================================================================== */
/* Corrects block display not defined in IE6/7/8/9 & FF3 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
	display: block;
}

/* Corrects inline-block display not defined in IE6/7/8/9 & FF3 */
audio,
canvas,
video {
	display: inline-block;
	*display: inline;
	*zoom: 1;
}

/* Prevents modern browsers from displaying 'audio' without controls
 * Remove excess height in iOS5 devices */
audio:not([controls]) {
	display: none;
	height: 0;
}

/* Addresses styling for 'hidden' attribute not present in IE7/8/9, FF3, S4
 * Known issue: no IE6 support */
[hidden] {
	display: none;
}

/* =============================================================================
 * Base
 * ========================================================================== */
/* 1. Corrects text resizing oddly in IE6/7 when body font-size is set using em units
 *    http://clagnut.com/blog/348/#c790
 * 2. Prevents iOS text size adjust after orientation change, without disabling user zoom
 *    www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
html {
	font-size: 100%;
	/* 1 */
	-webkit-text-size-adjust: 100%;
	/* 2 */
	-ms-text-size-adjust: 100%;
	/* 2 */
	font-family: sans-serif;
}

/* Addresses font-family inconsistency between 'textarea' and other form elements. */
button,
input,
select,
textarea {
	font-family: sans-serif;
}

/* Addresses margins handled incorrectly in IE6/7 */
body {
	margin: 0;
}

/* =============================================================================
 * Links
 * ========================================================================== */
/* Addresses outline displayed oddly in Chrome */
a:focus {
	outline: thin dotted;
}
a:hover,
a:active {
	outline: 0;
}

/* Improves readability when focused and also mouse hovered in all browsers
 * people.opera.com/patrickl/experiments/keyboard/test */
/* =============================================================================
 * Typography
 * ========================================================================== */
/* Addresses font sizes and margins set differently in IE6/7
 * Addresses font sizes within 'section' and 'article' in FF4+, Chrome, S5 */
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

h2 {
	font-size: 1.5em;
	margin: 0.83em 0;
}

h3 {
	font-size: 1.17em;
	margin: 1em 0;
}

h4 {
	font-size: 1em;
	margin: 1.33em 0;
}

h5 {
	font-size: 0.83em;
	margin: 1.67em 0;
}

h6 {
	font-size: 0.75em;
	margin: 2.33em 0;
}

/* Addresses styling not present in IE7/8/9, S5, Chrome */
abbr[title] {
	border-bottom: 1px dotted;
}

/* Addresses style set to 'bolder' in FF3+, S4/5, Chrome */
b,
strong {
	font-weight: bold;
}

blockquote {
	margin: 1em 40px;
}

/* Addresses styling not present in S5, Chrome */
dfn {
	font-style: italic;
}

/* Addresses styling not present in IE6/7/8/9 */
mark {
	background: yellow;
	color: black;
}

/* Addresses margins set differently in IE6/7 */
p {
	margin: 1em 0;
}

pre {
	margin: 1em 0;
	font-family: monospace, serif;
	_font-family: "courier new", monospace;
	font-size: 1em;
}

/* Corrects font family set oddly in IE6, S4/5, Chrome
 * en.wikipedia.org/wiki/User:Davidgothberg/Test59 */
code,
kbd,
samp {
	font-family: monospace, serif;
	_font-family: "courier new", monospace;
	font-size: 1em;
}

/* Improves readability of pre-formatted text in all browsers */
pre {
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word;
}

/* 1. Addresses CSS quotes not supported in IE6/7
 * 2. Addresses quote property not supported in S4 */
/* 1 */
q {
	quotes: none;
}
q:before,
q:after {
	content: "";
	content: none;
}

/* 2 */
small {
	font-size: 75%;
}

/* Prevents sub and sup affecting line-height in all browsers
 * gist.github.com/413930 */
sub {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
	top: -0.25em;
}

sub {
	bottom: -0.2em;
}

/* =============================================================================
 * Lists
 * ========================================================================== */
/* Addresses margins set differently in IE6/7 */
dl,
menu,
ol,
ul {
	margin: 1em 0;
}

dd {
	margin: 0 0 0 40px;
}

/* Addresses paddings set differently in IE6/7 */
menu,
ol,
ul {
	padding: 0 0 0 40px;
}

/* Corrects list images handled incorrectly in IE7 */
nav ul,
nav ol {
	list-style: none;
	list-style-image: none;
}

/* =============================================================================
 * Embedded content
 * ========================================================================== */
/* 1. Removes border when inside 'a' element in IE6/7/8/9, FF3
 * 2. Improves image quality when scaled in IE7
 *    code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
img {
	border: 0;
	/* 1 */
	-ms-interpolation-mode: bicubic;
	/* 2 */
}

/* Corrects overflow displayed oddly in IE9 */
svg:not(:root) {
	overflow: hidden;
}

/* =============================================================================
 * Figures
 * ========================================================================== */
/* Addresses margin not present in IE6/7/8/9, S5, O11 */
figure,
form {
	margin: 0;
}

/* =============================================================================
 * Forms
 * ========================================================================== */
/* Corrects margin displayed oddly in IE6/7 */
/* Define consistent border, margin, and padding */
fieldset {
	border: 1px solid silver;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

/* 1. Corrects color not being inherited in IE6/7/8/9
 * 2. Corrects text not wrapping in FF3
 * 3. Corrects alignment displayed oddly in IE6/7 */
legend {
	border: 0;
	/* 1 */
	padding: 0;
	white-space: normal;
	/* 2 */
	*margin-left: -7px;
	/* 3 */
}

/* 1. Corrects font size not being inherited in all browsers
 * 2. Addresses margins set differently in IE6/7, FF3+, S5, Chrome
 * 3. Improves appearance and consistency in all browsers */
button,
input,
select,
textarea {
	font-size: 100%;
	/* 1 */
	margin: 0;
	/* 2 */
	vertical-align: baseline;
	/* 3 */
	*vertical-align: middle;
	/* 3 */
}

/* Addresses FF3/4 setting line-height on 'input' using !important in the UA stylesheet */
button,
input {
	line-height: normal;
	/* 1 */
}

/* 1. Improves usability and consistency of cursor style between image-type 'input' and others
 * 2. Corrects inability to style clickable 'input' types in iOS
 * 3. Removes inner spacing in IE7 without affecting normal text inputs
 *    Known issue: inner spacing remains in IE6 */
button {
	cursor: pointer;
	/* 1 */
	-webkit-appearance: button;
	/* 2 */
	*overflow: visible;
	/* 3 */
}

input[type="button"],
input[type="reset"],
input[type="submit"] {
	cursor: pointer;
	/* 1 */
	-webkit-appearance: button;
	/* 2 */
	*overflow: visible;
	/* 3 */
}

/* Re-set default cursor for disabled elements */
button[disabled] {
	cursor: default;
}

input[disabled] {
	cursor: default;
}
input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	/* 1 */
	padding: 0;
	/* 2 */
	*height: 13px;
	/* 3 */
	*width: 13px;
	/* 3 */
}
input[type="search"] {
	-webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
	-webkit-appearance: none;
}

/* 1. Addresses box sizing set to content-box in IE8/9
 * 2. Removes excess padding in IE8/9
 * 3. Removes excess padding in IE7
 *    Known issue: excess padding remains in IE6 */
/* 1. Addresses appearance set to searchfield in S5, Chrome
 * 2. Addresses box-sizing set to border-box in S5, Chrome (include -moz to future-proof) */
/* Removes inner padding and search cancel button in S5, Chrome on OS X */
/* Removes inner padding and border in FF3+
 * www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

/* 1. Removes default vertical scrollbar in IE6/7/8/9
 * 2. Improves readability and alignment in all browsers */
textarea {
	overflow: auto;
	/* 1 */
	vertical-align: top;
	/* 2 */
}

/* =============================================================================
 * Tables
 * ========================================================================== */
/* Remove most spacing between table cells */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* ===========================================
 * Icon classes
 * ======================================== */
.icon-3d:before {
	content: "\e150";
}

.icon-addressbook:before {
	content: "\e001";
}

.icon-airplane:before {
	content: "\e002";
}

.icon-amazon:before {
	content: "\e004";
}

.icon-amazon-2:before {
	content: "\e003";
}

.icon-ampersand:before {
	content: "\26";
}

.icon-anchor:before {
	content: "\e005";
}

.icon-android:before {
	content: "\e006";
}

.icon-aperture:before {
	content: "\e007";
}

.icon-apple:before {
	content: "\e008";
}

.icon-arrow-2-down:before {
	content: "\e009";
}

.icon-arrow-2-left:before {
	content: "\e00a";
}

.icon-arrow-2-right:before {
	content: "\e00b";
}

.icon-arrow-2-up:before {
	content: "\e00c";
}

.icon-arrow-3-down:before {
	content: "\2193";
}

.icon-arrow-3-down-left:before {
	content: "\e00d";
}

.icon-arrow-3-down-right:before {
	content: "\e00e";
}

.icon-arrow-3-left:before {
	content: "\2190";
}

.icon-arrow-3-right:before {
	content: "\2192";
}

.icon-arrow-3-up:before {
	content: "\2191";
}

.icon-arrow-3-up-left:before {
	content: "\e00f";
}

.icon-arrow-3-up-right:before {
	content: "\e010";
}

.icon-arrow-4-down:before {
	content: "\e011";
}

.icon-arrow-4-left:before {
	content: "\e012";
}

.icon-arrow-4-right:before {
	content: "\e013";
}

.icon-arrow-4-up:before {
	content: "\e014";
}

.icon-arrow-5-down:before {
	content: "\e015";
}

.icon-arrow-5-first:before {
	content: "\e016";
}

.icon-arrow-5-last:before {
	content: "\e017";
}

.icon-arrow-5-left:before {
	content: "\e018";
}

.icon-arrow-5-right:before {
	content: "\e019";
}

.icon-arrow-5-up:before {
	content: "\e01a";
}

.icon-arrow-down:before {
	content: "\e01d";
}

.icon-arrow-down-left:before {
	content: "\e01b";
}

.icon-arrow-down-right:before {
	content: "\e01c";
}

.icon-arrow-left:before {
	content: "\e01e";
}

.icon-arrow-right:before {
	content: "\e01f";
}

.icon-arrow-up:before {
	content: "\e022";
}

.icon-arrow-up-left:before {
	content: "\e020";
}

.icon-arrow-up-right:before {
	content: "\e021";
}

.icon-at:before {
	content: "\40";
}

.icon-award:before {
	content: "\e023";
}

.icon-backspace:before {
	content: "\e024";
}

.icon-baidu:before {
	content: "\e025";
}

.icon-bars:before {
	content: "\e026";
}

.icon-basket:before {
	content: "\e027";
}

.icon-beaker:before {
	content: "\e028";
}

.icon-bell:before {
	content: "\e029";
}

.icon-binoculars:before {
	content: "\e02a";
}

.icon-blogger:before {
	content: "\e02c";
}

.icon-blogger-2:before {
	content: "\e02b";
}

.icon-bluetooth:before {
	content: "\e02d";
}

.icon-bolt:before {
	content: "\2301";
}

.icon-bolt-2:before {
	content: "\e02e";
}

.icon-book:before {
	content: "\e031";
}

.icon-book-2:before {
	content: "\e02f";
}

.icon-book-3:before {
	content: "\e030";
}

.icon-bookmark:before {
	content: "\e032";
}

.icon-box:before {
	content: "\e033";
}

.icon-brush:before {
	content: "\e034";
}

.icon-calc:before {
	content: "\e035";
}

.icon-calendar:before {
	content: "\e037";
}

.icon-calendar-stroke:before {
	content: "\e036";
}

.icon-camera:before {
	content: "\e038";
}

.icon-cart:before {
	content: "\e03a";
}

.icon-cart-2:before {
	content: "\e039";
}

.icon-case:before {
	content: "\e03b";
}

.icon-cc:before {
	content: "\e03c";
}

.icon-cd:before {
	content: "\e03d";
}

.icon-chart:before {
	content: "\25d5";
}

.icon-chart-down:before {
	content: "\e03f";
}

.icon-chart-down-2:before {
	content: "\e03e";
}

.icon-chart-up:before {
	content: "\e041";
}

.icon-chart-up-2:before {
	content: "\e040";
}

.icon-chat:before {
	content: "\e043";
}

.icon-chat-stroke:before {
	content: "\e042";
}

.icon-check:before {
	content: "\2713";
}

.icon-check-2:before {
	content: "\e044";
}

.icon-check-3:before {
	content: "\2714";
}

.icon-chrome:before {
	content: "\e045";
}

.icon-clef:before {
	content: "\e047";
}

.icon-clef-2:before {
	content: "\e046";
}

.icon-clipboard:before {
	content: "\e048";
}

.icon-clock:before {
	content: "\e049";
}

.icon-cloud:before {
	content: "\2601";
}

.icon-cloud-download:before {
	content: "\e04a";
}

.icon-cloud-upload:before {
	content: "\e04b";
}

.icon-code:before {
	content: "\e04c";
}

.icon-coffee:before {
	content: "\e04d";
}

.icon-cog:before {
	content: "\2699";
}

.icon-cogs:before {
	content: "\e04e";
}

.icon-command:before {
	content: "\e04f";
}

.icon-comment:before {
	content: "\e053";
}

.icon-comment-2:before {
	content: "\e051";
}

.icon-comment-2-stroke:before {
	content: "\e050";
}

.icon-comment-stroke:before {
	content: "\e052";
}

.icon-cone:before {
	content: "\e055";
}

.icon-cone-2:before {
	content: "\e054";
}

.icon-contao:before {
	content: "\e056";
}

.icon-contrast:before {
	content: "\e057";
}

.icon-creditcard:before {
	content: "\e059";
}

.icon-creditcard-2:before {
	content: "\e058";
}

.icon-css3:before {
	content: "\e05a";
}

.icon-cursor:before {
	content: "\2196";
}

.icon-curved-arrow:before {
	content: "\e05b";
}

.icon-delicious:before {
	content: "\e05c";
}

.icon-denied:before {
	content: "\2298";
}

.icon-deviantart:before {
	content: "\e05e";
}

.icon-deviantart-2:before {
	content: "\e05d";
}

.icon-direction:before {
	content: "\e05f";
}

.icon-document:before {
	content: "\e06a";
}

.icon-document-add:before {
	content: "\e060";
}

.icon-document-css:before {
	content: "\e061";
}

.icon-document-excel:before {
	content: "\e062";
}

.icon-document-openoffice:before {
	content: "\e063";
}

.icon-document-pdf:before {
	content: "\e064";
}

.icon-document-powerpoint:before {
	content: "\e065";
}

.icon-document-remove:before {
	content: "\e066";
}

.icon-document-word:before {
	content: "\e067";
}

.icon-document-xml:before {
	content: "\e068";
}

.icon-document-zip:before {
	content: "\e069";
}

.icon-documents:before {
	content: "\e06c";
}

.icon-documents-2:before {
	content: "\e06b";
}

.icon-download:before {
	content: "\e06d";
}

.icon-download:before {
	content: "\2913";
}

.icon-dribbble:before {
	content: "\e06f";
}

.icon-dribbble-2:before {
	content: "\e06e";
}

.icon-dropbox:before {
	content: "\e070";
}

.icon-eject:before {
	content: "\23cf";
}

.icon-ember:before {
	content: "\e071";
}

.icon-equalizer:before {
	content: "\e072";
}

.icon-external:before {
	content: "\e151";
}

.icon-eye:before {
	content: "\e073";
}

.icon-eyedropper:before {
	content: "\e074";
}

.icon-facebook:before {
	content: "\e076";
}

.icon-facebook-2:before {
	content: "\e075";
}

.icon-fan:before {
	content: "\e077";
}

.icon-fax:before {
	content: "\e078";
}

.icon-feed:before {
	content: "\e07a";
}

.icon-feed-2:before {
	content: "\e079";
}

.icon-female:before {
	content: "\e07b";
}

.icon-firefox:before {
	content: "\e07c";
}

.icon-firewire:before {
	content: "\e07d";
}

.icon-first:before {
	content: "\21e4";
}

.icon-flag:before {
	content: "\e07f";
}

.icon-flag-2:before {
	content: "\e07e";
}

.icon-flickr:before {
	content: "\e081";
}

.icon-flickr-2:before {
	content: "\e080";
}

.icon-floppy:before {
	content: "\e082";
}

.icon-folder:before {
	content: "\e083";
}

.icon-folders:before {
	content: "\e084";
}

.icon-font:before {
	content: "\e086";
}

.icon-font-2:before {
	content: "\e085";
}

.icon-fork:before {
	content: "\2443";
}

.icon-forrst:before {
	content: "\e088";
}

.icon-forrst-2:before {
	content: "\e087";
}

.icon-fullscreen:before {
	content: "\e08a";
}

.icon-fullscreen-exit:before {
	content: "\e089";
}

.icon-funnel:before {
	content: "\e08b";
}

.icon-gallery:before {
	content: "\e08c";
}

.icon-game:before {
	content: "\e08d";
}

.icon-git:before {
	content: "\e090";
}

.icon-git-2:before {
	content: "\e08e";
}

.icon-git-3:before {
	content: "\e08f";
}

.icon-github:before {
	content: "\e093";
}

.icon-github-2:before {
	content: "\e091";
}

.icon-github-cat:before {
	content: "\e092";
}

.icon-glasses:before {
	content: "\e094";
}

.icon-globe:before {
	content: "\e095";
}

.icon-gplus:before {
	content: "\e098";
}

.icon-gplus-2:before {
	content: "\e096";
}

.icon-gplus-3:before {
	content: "\e097";
}

.icon-grid:before {
	content: "\e09a";
}

.icon-grid-2:before {
	content: "\e099";
}

.icon-hash:before {
	content: "\23";
}

.icon-hd:before {
	content: "\e09b";
}

.icon-headphones:before {
	content: "\e09c";
}

.icon-heart:before {
	content: "\e09e";
}

.icon-heart-stroke:before {
	content: "\e09d";
}

.icon-heartbeat:before {
	content: "\e09f";
}

.icon-help:before {
	content: "\e0a0";
}

.icon-home:before {
	content: "\2302";
}

.icon-home-2:before {
	content: "\e0a1";
}

.icon-html5:before {
	content: "\e0a3";
}

.icon-html5-stroke:before {
	content: "\e0a2";
}

.icon-ie:before {
	content: "\e0a4";
}

.icon-infinity:before {
	content: "\e0a5";
}

.icon-info:before {
	content: "\2139";
}

.icon-info-2:before {
	content: "\e0a6";
}

.icon-ipad:before {
	content: "\e0a7";
}

.icon-iphone:before {
	content: "\e0a8";
}

.icon-ipod:before {
	content: "\e0a9";
}

.icon-key:before {
	content: "\e0ab";
}

.icon-key-stroke:before {
	content: "\e0aa";
}

.icon-laptop:before {
	content: "\e0ad";
}

.icon-laptop-2:before {
	content: "\e0ac";
}

.icon-last:before {
	content: "\21e5";
}

.icon-lastfm:before {
	content: "\e0af";
}

.icon-lastfm-2:before {
	content: "\e0ae";
}

.icon-layers:before {
	content: "\e0b0";
}

.icon-leave:before {
	content: "\e0b1";
}

.icon-left-quote:before {
	content: "\201c";
}

.icon-left-quote-2:before {
	content: "\e0b2";
}

.icon-like:before {
	content: "\e0b3";
}

.icon-link:before {
	content: "\e0b5";
}

.icon-link-2:before {
	content: "\e0b4";
}

.icon-linkedin:before {
	content: "\e0b6";
}

.icon-list:before {
	content: "\e0b8";
}

.icon-list-2:before {
	content: "\e0b7";
}

.icon-load-0:before {
	content: "\e0b9";
}

.icon-load-1:before {
	content: "\e0ba";
}

.icon-load-2:before {
	content: "\e0bb";
}

.icon-load-3:before {
	content: "\e0bc";
}

.icon-load-4:before {
	content: "\e0bd";
}

.icon-load-5:before {
	content: "\e0be";
}

.icon-load-6:before {
	content: "\e0bf";
}

.icon-load-7:before {
	content: "\e0c0";
}

.icon-lock:before {
	content: "\e0c3";
}

.icon-lock-2:before {
	content: "\e0c1";
}

.icon-lock-stroke:before {
	content: "\e0c2";
}

.icon-loop:before {
	content: "\27f3";
}

.icon-loop-double:before {
	content: "\e0c4";
}

.icon-loop-left:before {
	content: "\e0c6";
}

.icon-loop-left-2:before {
	content: "\e0c5";
}

.icon-loop-right:before {
	content: "\e0c8";
}

.icon-loop-right-2:before {
	content: "\e0c7";
}

.icon-magnifying-glass:before {
	content: "\e0cb";
}

.icon-magnifying-glass-2:before {
	content: "\e0c9";
}

.icon-magnifying-glass-3:before {
	content: "\e0ca";
}

.icon-mail:before {
	content: "\2709";
}

.icon-mail-2:before {
	content: "\e0cc";
}

.icon-mail-3:before {
	content: "\e0cd";
}

.icon-mail-stroke:before {
	content: "\e0ce";
}

.icon-male:before {
	content: "\e0cf";
}

.icon-map-pin:before {
	content: "\e0d3";
}

.icon-map-pin-2:before {
	content: "\e0d1";
}

.icon-map-pin-2-stroke:before {
	content: "\e0d0";
}

.icon-map-pin-stroke:before {
	content: "\e0d2";
}

.icon-megaphone:before {
	content: "\e0d4";
}

.icon-mic:before {
	content: "\e0d6";
}

.icon-mic-2:before {
	content: "\e0d5";
}

.icon-minus:before {
	content: "\2212";
}

.icon-minus-2:before {
	content: "\2296";
}

.icon-monitor:before {
	content: "\e0d7";
}

.icon-moon:before {
	content: "\e0d8";
}

.icon-moon-stroke:before {
	content: "\263e";
}

.icon-mouse:before {
	content: "\e0d9";
}

.icon-move:before {
	content: "\e0da";
}

.icon-move-horizontal:before {
	content: "\2194";
}

.icon-move-vertical:before {
	content: "\2195";
}

.icon-movie:before {
	content: "\e0db";
}

.icon-new-window:before {
	content: "\e0dc";
}

.icon-news:before {
	content: "\e0dd";
}

.icon-opera:before {
	content: "\e0de";
}

.icon-paperclip:before {
	content: "\e0df";
}

.icon-paperplane:before {
	content: "\e0e0";
}

.icon-pause:before {
	content: "\e0e2";
}

.icon-pause-2:before {
	content: "\e0e1";
}

.icon-pen:before {
	content: "\270f";
}

.icon-pen-2:before {
	content: "\e0e4";
}

.icon-pen-2-stroke:before {
	content: "\e0e3";
}

.icon-pen-3:before {
	content: "\e0e5";
}

.icon-phone:before {
	content: "\e0e8";
}

.icon-phone-2:before {
	content: "\e0e6";
}

.icon-phone-mobile:before {
	content: "\e0e7";
}

.icon-picasa:before {
	content: "\e0ea";
}

.icon-picasa-2:before {
	content: "\e0e9";
}

.icon-pilcrow:before {
	content: "\b6";
}

.icon-pin:before {
	content: "\e0eb";
}

.icon-pinterest:before {
	content: "\e0ed";
}

.icon-pinterest-2:before {
	content: "\e0ec";
}

.icon-play:before {
	content: "\25b6";
}

.icon-play-2:before {
	content: "\e0ee";
}

.icon-plus:before {
	content: "\2b";
}

.icon-plus-2:before {
	content: "\e0ef";
}

.icon-plus-3:before {
	content: "\2295";
}

.icon-podcast:before {
	content: "\e0f1";
}

.icon-podcast-2:before {
	content: "\e0f0";
}

.icon-polaroids:before {
	content: "\e0f2";
}

.icon-power:before {
	content: "\e0f3";
}

.icon-printer:before {
	content: "\e0f5";
}

.icon-printer-2:before {
	content: "\e0f4";
}

.icon-puzzle:before {
	content: "\e0f6";
}

.icon-question:before {
	content: "\e0f7";
}

.icon-question-mark:before {
	content: "\3f";
}

.icon-rain:before {
	content: "\e0f8";
}

.icon-read:before {
	content: "\e0f9";
}

.icon-recycle:before {
	content: "\e0fa";
}

.icon-reload:before {
	content: "\21bb";
}

.icon-responsive:before {
	content: "\e0fb";
}

.icon-right-quote:before {
	content: "\201d";
}

.icon-right-quote-2:before {
	content: "\e0fc";
}

.icon-rocket:before {
	content: "\e0fd";
}

.icon-rss:before {
	content: "\e0ff";
}

.icon-rss-2:before {
	content: "\e0fe";
}

.icon-ruler:before {
	content: "\e100";
}

.icon-safari:before {
	content: "\e101";
}

.icon-save:before {
	content: "\e102";
}

.icon-seo:before {
	content: "\e103";
}

.icon-share:before {
	content: "\e105";
}

.icon-share-2:before {
	content: "\e104";
}

.icon-shield:before {
	content: "\e108";
}

.icon-shield-2:before {
	content: "\e107";
}

.icon-shield-2-stroke:before {
	content: "\e106";
}

.icon-shuffle:before {
	content: "\e109";
}

.icon-skype:before {
	content: "\e10a";
}

.icon-smiles:before {
	content: "\e10b";
}

.icon-snowflake:before {
	content: "\e10c";
}

.icon-soundcloud:before {
	content: "\e10e";
}

.icon-soundcloud-2:before {
	content: "\e10d";
}

.icon-speedometer:before {
	content: "\e112";
}

.icon-speedometer-2:before {
	content: "\e111";
}

.icon-speedometer-2-low:before {
	content: "\e10f";
}

.icon-speedometer-2-medium:before {
	content: "\e110";
}

.icon-spin:before {
	content: "\e113";
}

.icon-star:before {
	content: "\2605";
}

.icon-star-2:before {
	content: "\e116";
}

.icon-star-2-half:before {
	content: "\e114";
}

.icon-star-2-stroke:before {
	content: "\e115";
}

.icon-star-half:before {
	content: "\e117";
}

.icon-star-stroke:before {
	content: "\e118";
}

.icon-stop:before {
	content: "\25a0";
}

.icon-stop-2:before {
	content: "\e119";
}

.icon-stumbleupon:before {
	content: "\e11b";
}

.icon-stumbleupon-2:before {
	content: "\e11a";
}

.icon-sun:before {
	content: "\2600";
}

.icon-sun-stroke:before {
	content: "\263c";
}

.icon-support:before {
	content: "\e11c";
}

.icon-tag:before {
	content: "\e120";
}

.icon-tag-left:before {
	content: "\e11d";
}

.icon-tag-right:before {
	content: "\e11e";
}

.icon-tag-stroke:before {
	content: "\e11f";
}

.icon-target:before {
	content: "\e122";
}

.icon-target-2:before {
	content: "\e121";
}

.icon-temperature:before {
	content: "\e124";
}

.icon-temperature-2:before {
	content: "\e123";
}

.icon-thumb-down:before {
	content: "\e125";
}

.icon-thumb-up:before {
	content: "\e126";
}

.icon-tie:before {
	content: "\e127";
}

.icon-tools:before {
	content: "\e129";
}

.icon-tools-2:before {
	content: "\e128";
}

.icon-transfer:before {
	content: "\21c4";
}

.icon-trash:before {
	content: "\e12d";
}

.icon-trash-2:before {
	content: "\e12a";
}

.icon-trash-3:before {
	content: "\e12c";
}

.icon-trash-3-stroke:before {
	content: "\e12b";
}

.icon-truck:before {
	content: "\e12e";
}

.icon-tumblr:before {
	content: "\e130";
}

.icon-tumblr-2:before {
	content: "\e12f";
}

.icon-twitter-bird:before {
	content: "\e132";
}

.icon-twitter-bird-2:before {
	content: "\e131";
}

.icon-umbrella:before {
	content: "\2602";
}

.icon-undo:before {
	content: "\238c";
}

.icon-unlock:before {
	content: "\e134";
}

.icon-unlock-stroke:before {
	content: "\e133";
}

.icon-upload:before {
	content: "\e135";
}

.icon-upload:before {
	content: "\2912";
}

.icon-usb:before {
	content: "\e136";
}

.icon-user:before {
	content: "\e138";
}

.icon-user-2:before {
	content: "\e137";
}

.icon-users:before {
	content: "\e139";
}

.icon-vcard:before {
	content: "\e13a";
}

.icon-vector:before {
	content: "\e13c";
}

.icon-vector-2:before {
	content: "\e13b";
}

.icon-video:before {
	content: "\e13d";
}

.icon-vimeo:before {
	content: "\e13f";
}

.icon-vimeo-2:before {
	content: "\e13e";
}

.icon-volume:before {
	content: "\e141";
}

.icon-volume-mute:before {
	content: "\e140";
}

.icon-wand:before {
	content: "\e142";
}

.icon-warning:before {
	content: "\e144";
}

.icon-warning-2:before {
	content: "\e143";
}

.icon-windows:before {
	content: "\e145";
}

.icon-wireless:before {
	content: "\e146";
}

.icon-wordpress:before {
	content: "\e148";
}

.icon-wordpress-2:before {
	content: "\e147";
}

.icon-wrench:before {
	content: "\e149";
}

.icon-x:before {
	content: "\d7";
}

.icon-x-2:before {
	content: "\2297";
}

.icon-x-2-stroke:before {
	content: "\e14a";
}

.icon-xing:before {
	content: "\e14b";
}

.icon-yahoo:before {
	content: "\e14d";
}

.icon-yahoo-2:before {
	content: "\e14c";
}

.icon-youtube:before {
	content: "\e14f";
}

.icon-youtube-2:before {
	content: "\e14e";
}

/*
 * Main Stylesheet
 *
 * @copyright Copyright (c) 2012 rocksolidthemes.com
 * @license   http://rocksolidthemes.com/agb   No free usage allowed
 */
/* ===========================================
 * # Index: The structure of this stylesheet
 *
 * - Imports (Sass only)
 * - Fonts
 * - Basic settings (Sass only)
 * - Colors (Sass only)
 * - General
 * - Buttons
 * - Wrapper elements
 * - Layout in order of appearance in HTML
 * - Content
 * - Forms
 * - Content elements
 * - Modules (Search, FAQ, News, Events, Comments)
 * - Sidebar / Widgets
 * - Footer
 * - Slider
 * - Grid (design + production helper)
 * ======================================== */
/* ===========================================
 * Fonts
 * ======================================== */
@font-face {
	font-family: "RockSolid Icons";
	src: url("../../files/tao/fonts/rocksolid-icons.eot");
	src: url("../../files/tao/fonts/rocksolid-icons.eot?#iefix") format('eot'), url("../../files/tao/fonts/rocksolid-icons.woff") format('woff'), url("../../files/tao/fonts/rocksolid-icons.ttf") format('truetype'), url("../../files/tao/fonts/rocksolid-icons.svg") format('svg');
	font-weight: normal;
	font-style: normal;
}

/* ===========================================
 * General
 * ======================================== */
html {
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-tap-highlight-color: #184a98;
}

body {
	font: 22px/1.6 "Montserrat",'Helvetica-Neue',Helvetica,Arial, sans-serif;
	color: #242424;
	background: #ffffff none 50% 0 no-repeat scroll;
	background-size: auto;
}
@media screen and (max-width: 599px) {
	body {
		font-size: 20px;
	}
}
body[class^="icon-"]:before,
body[class*=" icon-"]:before {
	/* Ignore icon classes on the body element */
	content: none;
}
body.background-variation-1 {
	background: url("../../files/tao/img/demo/background-1.jpg") 50% 0 no-repeat;
	background-attachment: fixed;
}
body.background-variation-2 {
	background: url("../../files/tao/img/demo/background-10.jpg") 50% 0 no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

* {
	-webkit-box-sizing: inherit;
	-moz-box-sizing: inherit;
	box-sizing: inherit;
}

.rs-columns {
	clear: both;
	display: inline-block;
	vertical-align: top;
	width: 100%;
}

.rs-column {
	float: left;
	width: 100%;
	margin-top: 6.25%;
	margin-right: 6.25%;
}
.rs-column.-large-first {
	clear: left;
}
.rs-column.-large-last {
	margin-right: -5px;
}
.rs-column.-large-first-row {
	margin-top: 0;
}
.rs-column.-large-col-1-1 {
	width: 100%;
}
.rs-column.-large-col-2-1 {
	width: 46.875%;
}
.rs-column.-large-col-2-2 {
	width: 100%;
}
.rs-column.-large-col-3-1 {
	width: 29.16667%;
}
.rs-column.-large-col-3-2 {
	width: 64.58333%;
}
.rs-column.-large-col-3-3 {
	width: 100%;
}
.rs-column.-large-col-4-1 {
	width: 20.3125%;
}
.rs-column.-large-col-4-2 {
	width: 46.875%;
}
.rs-column.-large-col-4-3 {
	width: 73.4375%;
}
.rs-column.-large-col-4-4 {
	width: 100%;
}
.rs-column.-large-col-5-1 {
	width: 15%;
}
.rs-column.-large-col-5-2 {
	width: 36.25%;
}
.rs-column.-large-col-5-3 {
	width: 57.5%;
}
.rs-column.-large-col-5-4 {
	width: 78.75%;
}
.rs-column.-large-col-5-5 {
	width: 100%;
}
.rs-column.-large-col-6-1 {
	width: 11.45833%;
}
.rs-column.-large-col-6-2 {
	width: 29.16667%;
}
.rs-column.-large-col-6-3 {
	width: 46.875%;
}
.rs-column.-large-col-6-4 {
	width: 64.58333%;
}
.rs-column.-large-col-6-5 {
	width: 82.29167%;
}
.rs-column.-large-col-6-6 {
	width: 100%;
}
.rs-column.-large-col-7-1 {
	width: 8.92857%;
}
.rs-column.-large-col-7-2 {
	width: 24.10714%;
}
.rs-column.-large-col-7-3 {
	width: 39.28571%;
}
.rs-column.-large-col-7-4 {
	width: 54.46429%;
}
.rs-column.-large-col-7-5 {
	width: 69.64286%;
}
.rs-column.-large-col-7-6 {
	width: 84.82143%;
}
.rs-column.-large-col-7-7 {
	width: 100%;
}
.tao-no-sidebar .rs-column,
.mega-dropdown .rs-column,
.page-footer .rs-column {
	margin-top: 4%;
	margin-right: 4%;
}
.tao-no-sidebar .rs-column.-large-last,
.mega-dropdown .rs-column.-large-last,
.page-footer .rs-column.-large-last {
	margin-right: -5px;
}
.tao-no-sidebar .rs-column.-large-first-row,
.mega-dropdown .rs-column.-large-first-row,
.page-footer .rs-column.-large-first-row {
	margin-top: 0;
}
.tao-no-sidebar .rs-column.-large-col-1-1,
.mega-dropdown .rs-column.-large-col-1-1,
.page-footer .rs-column.-large-col-1-1 {
	width: 100%;
}
.tao-no-sidebar .rs-column.-large-col-2-1,
.mega-dropdown .rs-column.-large-col-2-1,
.page-footer .rs-column.-large-col-2-1 {
	width: 48%;
}
.tao-no-sidebar .rs-column.-large-col-2-2,
.mega-dropdown .rs-column.-large-col-2-2,
.page-footer .rs-column.-large-col-2-2 {
	width: 100%;
}
.tao-no-sidebar .rs-column.-large-col-3-1,
.mega-dropdown .rs-column.-large-col-3-1,
.page-footer .rs-column.-large-col-3-1 {
	width: 30.66667%;
}
.tao-no-sidebar .rs-column.-large-col-3-2,
.mega-dropdown .rs-column.-large-col-3-2,
.page-footer .rs-column.-large-col-3-2 {
	width: 65.33333%;
}
.tao-no-sidebar .rs-column.-large-col-3-3,
.mega-dropdown .rs-column.-large-col-3-3,
.page-footer .rs-column.-large-col-3-3 {
	width: 100.0%;
}
.tao-no-sidebar .rs-column.-large-col-4-1,
.mega-dropdown .rs-column.-large-col-4-1,
.page-footer .rs-column.-large-col-4-1 {
	width: 22%;
}
.tao-no-sidebar .rs-column.-large-col-4-2,
.mega-dropdown .rs-column.-large-col-4-2,
.page-footer .rs-column.-large-col-4-2 {
	width: 48%;
}
.tao-no-sidebar .rs-column.-large-col-4-3,
.mega-dropdown .rs-column.-large-col-4-3,
.page-footer .rs-column.-large-col-4-3 {
	width: 74%;
}
.tao-no-sidebar .rs-column.-large-col-4-4,
.mega-dropdown .rs-column.-large-col-4-4,
.page-footer .rs-column.-large-col-4-4 {
	width: 100%;
}
.tao-no-sidebar .rs-column.-large-col-5-1,
.mega-dropdown .rs-column.-large-col-5-1,
.page-footer .rs-column.-large-col-5-1 {
	width: 16.8%;
}
.tao-no-sidebar .rs-column.-large-col-5-2,
.mega-dropdown .rs-column.-large-col-5-2,
.page-footer .rs-column.-large-col-5-2 {
	width: 37.6%;
}
.tao-no-sidebar .rs-column.-large-col-5-3,
.mega-dropdown .rs-column.-large-col-5-3,
.page-footer .rs-column.-large-col-5-3 {
	width: 58.4%;
}
.tao-no-sidebar .rs-column.-large-col-5-4,
.mega-dropdown .rs-column.-large-col-5-4,
.page-footer .rs-column.-large-col-5-4 {
	width: 79.2%;
}
.tao-no-sidebar .rs-column.-large-col-5-5,
.mega-dropdown .rs-column.-large-col-5-5,
.page-footer .rs-column.-large-col-5-5 {
	width: 100.0%;
}
.tao-no-sidebar .rs-column.-large-col-6-1,
.mega-dropdown .rs-column.-large-col-6-1,
.page-footer .rs-column.-large-col-6-1 {
	width: 13.33333%;
}
.tao-no-sidebar .rs-column.-large-col-6-2,
.mega-dropdown .rs-column.-large-col-6-2,
.page-footer .rs-column.-large-col-6-2 {
	width: 30.66667%;
}
.tao-no-sidebar .rs-column.-large-col-6-3,
.mega-dropdown .rs-column.-large-col-6-3,
.page-footer .rs-column.-large-col-6-3 {
	width: 48.0%;
}
.tao-no-sidebar .rs-column.-large-col-6-4,
.mega-dropdown .rs-column.-large-col-6-4,
.page-footer .rs-column.-large-col-6-4 {
	width: 65.33333%;
}
.tao-no-sidebar .rs-column.-large-col-6-5,
.mega-dropdown .rs-column.-large-col-6-5,
.page-footer .rs-column.-large-col-6-5 {
	width: 82.66667%;
}
.tao-no-sidebar .rs-column.-large-col-6-6,
.mega-dropdown .rs-column.-large-col-6-6,
.page-footer .rs-column.-large-col-6-6 {
	width: 100%;
}
.tao-no-sidebar .rs-column.-large-col-7-1,
.mega-dropdown .rs-column.-large-col-7-1,
.page-footer .rs-column.-large-col-7-1 {
	width: 10.85714%;
}
.tao-no-sidebar .rs-column.-large-col-7-2,
.mega-dropdown .rs-column.-large-col-7-2,
.page-footer .rs-column.-large-col-7-2 {
	width: 25.71429%;
}
.tao-no-sidebar .rs-column.-large-col-7-3,
.mega-dropdown .rs-column.-large-col-7-3,
.page-footer .rs-column.-large-col-7-3 {
	width: 40.57143%;
}
.tao-no-sidebar .rs-column.-large-col-7-4,
.mega-dropdown .rs-column.-large-col-7-4,
.page-footer .rs-column.-large-col-7-4 {
	width: 55.42857%;
}
.tao-no-sidebar .rs-column.-large-col-7-5,
.mega-dropdown .rs-column.-large-col-7-5,
.page-footer .rs-column.-large-col-7-5 {
	width: 70.28571%;
}
.tao-no-sidebar .rs-column.-large-col-7-6,
.mega-dropdown .rs-column.-large-col-7-6,
.page-footer .rs-column.-large-col-7-6 {
	width: 85.14286%;
}
.tao-no-sidebar .rs-column.-large-col-7-7,
.mega-dropdown .rs-column.-large-col-7-7,
.page-footer .rs-column.-large-col-7-7 {
	width: 100%;
}
@media screen and (max-width: 900px) {
	.rs-column,
	.tao-no-sidebar .rs-column,
	.mega-dropdown .rs-column,
	.page-footer .rs-column {
		margin-top: 6.25%;
		margin-right: 6.25%;
	}
	.rs-column.-large-first,
	.tao-no-sidebar .rs-column.-large-first,
	.mega-dropdown .rs-column.-large-first,
	.page-footer .rs-column.-large-first {
		clear: none;
	}
	.rs-column.-large-last,
	.tao-no-sidebar .rs-column.-large-last,
	.mega-dropdown .rs-column.-large-last,
	.page-footer .rs-column.-large-last {
		margin-right: 6.25%;
	}
	.rs-column.-large-first-row,
	.tao-no-sidebar .rs-column.-large-first-row,
	.mega-dropdown .rs-column.-large-first-row,
	.page-footer .rs-column.-large-first-row {
		margin-top: 6.25%;
	}
	.rs-column.-medium-first,
	.tao-no-sidebar .rs-column.-medium-first,
	.mega-dropdown .rs-column.-medium-first,
	.page-footer .rs-column.-medium-first {
		clear: left;
	}
	.rs-column.-medium-last,
	.tao-no-sidebar .rs-column.-medium-last,
	.mega-dropdown .rs-column.-medium-last,
	.page-footer .rs-column.-medium-last {
		margin-right: -5px;
	}
	.rs-column.-medium-first-row,
	.tao-no-sidebar .rs-column.-medium-first-row,
	.mega-dropdown .rs-column.-medium-first-row,
	.page-footer .rs-column.-medium-first-row {
		margin-top: 0;
	}
	.rs-column.-medium-col-1-1,
	.tao-no-sidebar .rs-column.-medium-col-1-1,
	.mega-dropdown .rs-column.-medium-col-1-1,
	.page-footer .rs-column.-medium-col-1-1 {
		width: 100%;
	}
	.rs-column.-medium-col-2-1,
	.tao-no-sidebar .rs-column.-medium-col-2-1,
	.mega-dropdown .rs-column.-medium-col-2-1,
	.page-footer .rs-column.-medium-col-2-1 {
		width: 46.875%;
	}
	.rs-column.-medium-col-2-2,
	.tao-no-sidebar .rs-column.-medium-col-2-2,
	.mega-dropdown .rs-column.-medium-col-2-2,
	.page-footer .rs-column.-medium-col-2-2 {
		width: 100%;
	}
	.rs-column.-medium-col-3-1,
	.tao-no-sidebar .rs-column.-medium-col-3-1,
	.mega-dropdown .rs-column.-medium-col-3-1,
	.page-footer .rs-column.-medium-col-3-1 {
		width: 29.16667%;
	}
	.rs-column.-medium-col-3-2,
	.tao-no-sidebar .rs-column.-medium-col-3-2,
	.mega-dropdown .rs-column.-medium-col-3-2,
	.page-footer .rs-column.-medium-col-3-2 {
		width: 64.58333%;
	}
	.rs-column.-medium-col-3-3,
	.tao-no-sidebar .rs-column.-medium-col-3-3,
	.mega-dropdown .rs-column.-medium-col-3-3,
	.page-footer .rs-column.-medium-col-3-3 {
		width: 100%;
	}
	.rs-column.-medium-col-4-1,
	.tao-no-sidebar .rs-column.-medium-col-4-1,
	.mega-dropdown .rs-column.-medium-col-4-1,
	.page-footer .rs-column.-medium-col-4-1 {
		width: 20.3125%;
	}
	.rs-column.-medium-col-4-2,
	.tao-no-sidebar .rs-column.-medium-col-4-2,
	.mega-dropdown .rs-column.-medium-col-4-2,
	.page-footer .rs-column.-medium-col-4-2 {
		width: 46.875%;
	}
	.rs-column.-medium-col-4-3,
	.tao-no-sidebar .rs-column.-medium-col-4-3,
	.mega-dropdown .rs-column.-medium-col-4-3,
	.page-footer .rs-column.-medium-col-4-3 {
		width: 73.4375%;
	}
	.rs-column.-medium-col-4-4,
	.tao-no-sidebar .rs-column.-medium-col-4-4,
	.mega-dropdown .rs-column.-medium-col-4-4,
	.page-footer .rs-column.-medium-col-4-4 {
		width: 100%;
	}
	.rs-column.-medium-col-5-1,
	.tao-no-sidebar .rs-column.-medium-col-5-1,
	.mega-dropdown .rs-column.-medium-col-5-1,
	.page-footer .rs-column.-medium-col-5-1 {
		width: 15%;
	}
	.rs-column.-medium-col-5-2,
	.tao-no-sidebar .rs-column.-medium-col-5-2,
	.mega-dropdown .rs-column.-medium-col-5-2,
	.page-footer .rs-column.-medium-col-5-2 {
		width: 36.25%;
	}
	.rs-column.-medium-col-5-3,
	.tao-no-sidebar .rs-column.-medium-col-5-3,
	.mega-dropdown .rs-column.-medium-col-5-3,
	.page-footer .rs-column.-medium-col-5-3 {
		width: 57.5%;
	}
	.rs-column.-medium-col-5-4,
	.tao-no-sidebar .rs-column.-medium-col-5-4,
	.mega-dropdown .rs-column.-medium-col-5-4,
	.page-footer .rs-column.-medium-col-5-4 {
		width: 78.75%;
	}
	.rs-column.-medium-col-5-5,
	.tao-no-sidebar .rs-column.-medium-col-5-5,
	.mega-dropdown .rs-column.-medium-col-5-5,
	.page-footer .rs-column.-medium-col-5-5 {
		width: 100%;
	}
	.rs-column.-medium-col-6-1,
	.tao-no-sidebar .rs-column.-medium-col-6-1,
	.mega-dropdown .rs-column.-medium-col-6-1,
	.page-footer .rs-column.-medium-col-6-1 {
		width: 11.45833%;
	}
	.rs-column.-medium-col-6-2,
	.tao-no-sidebar .rs-column.-medium-col-6-2,
	.mega-dropdown .rs-column.-medium-col-6-2,
	.page-footer .rs-column.-medium-col-6-2 {
		width: 29.16667%;
	}
	.rs-column.-medium-col-6-3,
	.tao-no-sidebar .rs-column.-medium-col-6-3,
	.mega-dropdown .rs-column.-medium-col-6-3,
	.page-footer .rs-column.-medium-col-6-3 {
		width: 46.875%;
	}
	.rs-column.-medium-col-6-4,
	.tao-no-sidebar .rs-column.-medium-col-6-4,
	.mega-dropdown .rs-column.-medium-col-6-4,
	.page-footer .rs-column.-medium-col-6-4 {
		width: 64.58333%;
	}
	.rs-column.-medium-col-6-5,
	.tao-no-sidebar .rs-column.-medium-col-6-5,
	.mega-dropdown .rs-column.-medium-col-6-5,
	.page-footer .rs-column.-medium-col-6-5 {
		width: 82.29167%;
	}
	.rs-column.-medium-col-6-6,
	.tao-no-sidebar .rs-column.-medium-col-6-6,
	.mega-dropdown .rs-column.-medium-col-6-6,
	.page-footer .rs-column.-medium-col-6-6 {
		width: 100%;
	}
	.rs-column.-medium-col-7-1,
	.tao-no-sidebar .rs-column.-medium-col-7-1,
	.mega-dropdown .rs-column.-medium-col-7-1,
	.page-footer .rs-column.-medium-col-7-1 {
		width: 8.92857%;
	}
	.rs-column.-medium-col-7-2,
	.tao-no-sidebar .rs-column.-medium-col-7-2,
	.mega-dropdown .rs-column.-medium-col-7-2,
	.page-footer .rs-column.-medium-col-7-2 {
		width: 24.10714%;
	}
	.rs-column.-medium-col-7-3,
	.tao-no-sidebar .rs-column.-medium-col-7-3,
	.mega-dropdown .rs-column.-medium-col-7-3,
	.page-footer .rs-column.-medium-col-7-3 {
		width: 39.28571%;
	}
	.rs-column.-medium-col-7-4,
	.tao-no-sidebar .rs-column.-medium-col-7-4,
	.mega-dropdown .rs-column.-medium-col-7-4,
	.page-footer .rs-column.-medium-col-7-4 {
		width: 54.46429%;
	}
	.rs-column.-medium-col-7-5,
	.tao-no-sidebar .rs-column.-medium-col-7-5,
	.mega-dropdown .rs-column.-medium-col-7-5,
	.page-footer .rs-column.-medium-col-7-5 {
		width: 69.64286%;
	}
	.rs-column.-medium-col-7-6,
	.tao-no-sidebar .rs-column.-medium-col-7-6,
	.mega-dropdown .rs-column.-medium-col-7-6,
	.page-footer .rs-column.-medium-col-7-6 {
		width: 84.82143%;
	}
	.rs-column.-medium-col-7-7,
	.tao-no-sidebar .rs-column.-medium-col-7-7,
	.mega-dropdown .rs-column.-medium-col-7-7,
	.page-footer .rs-column.-medium-col-7-7 {
		width: 100%;
	}
}
@media screen and (max-width: 599px) {
	.rs-column,
	.tao-no-sidebar .rs-column,
	.page-footer .rs-column {
		margin-right: 6.25%;
	}
	.rs-column.-medium-first,
	.tao-no-sidebar .rs-column.-medium-first,
	.page-footer .rs-column.-medium-first {
		clear: none;
	}
	.rs-column.-medium-last,
	.tao-no-sidebar .rs-column.-medium-last,
	.page-footer .rs-column.-medium-last {
		margin-right: 6.25%;
	}
	.rs-column.-medium-first-row,
	.tao-no-sidebar .rs-column.-medium-first-row,
	.page-footer .rs-column.-medium-first-row {
		margin-top: 6.25%;
	}
	.rs-column.-small-first,
	.tao-no-sidebar .rs-column.-small-first,
	.page-footer .rs-column.-small-first {
		clear: left;
	}
	.rs-column.-small-last,
	.tao-no-sidebar .rs-column.-small-last,
	.page-footer .rs-column.-small-last {
		margin-right: -5px;
	}
	.rs-column.-small-first-row,
	.tao-no-sidebar .rs-column.-small-first-row,
	.page-footer .rs-column.-small-first-row {
		margin-top: 0;
	}
	.rs-column.-small-col-1-1,
	.tao-no-sidebar .rs-column.-small-col-1-1,
	.page-footer .rs-column.-small-col-1-1 {
		width: 100%;
	}
	.rs-column.-small-col-2-1,
	.tao-no-sidebar .rs-column.-small-col-2-1,
	.page-footer .rs-column.-small-col-2-1 {
		width: 46.875%;
	}
	.rs-column.-small-col-2-2,
	.tao-no-sidebar .rs-column.-small-col-2-2,
	.page-footer .rs-column.-small-col-2-2 {
		width: 100%;
	}
	.rs-column.-small-col-3-1,
	.tao-no-sidebar .rs-column.-small-col-3-1,
	.page-footer .rs-column.-small-col-3-1 {
		width: 29.16667%;
	}
	.rs-column.-small-col-3-2,
	.tao-no-sidebar .rs-column.-small-col-3-2,
	.page-footer .rs-column.-small-col-3-2 {
		width: 64.58333%;
	}
	.rs-column.-small-col-3-3,
	.tao-no-sidebar .rs-column.-small-col-3-3,
	.page-footer .rs-column.-small-col-3-3 {
		width: 100%;
	}
	.rs-column.-small-col-4-1,
	.tao-no-sidebar .rs-column.-small-col-4-1,
	.page-footer .rs-column.-small-col-4-1 {
		width: 20.3125%;
	}
	.rs-column.-small-col-4-2,
	.tao-no-sidebar .rs-column.-small-col-4-2,
	.page-footer .rs-column.-small-col-4-2 {
		width: 46.875%;
	}
	.rs-column.-small-col-4-3,
	.tao-no-sidebar .rs-column.-small-col-4-3,
	.page-footer .rs-column.-small-col-4-3 {
		width: 73.4375%;
	}
	.rs-column.-small-col-4-4,
	.tao-no-sidebar .rs-column.-small-col-4-4,
	.page-footer .rs-column.-small-col-4-4 {
		width: 100%;
	}
	.rs-column.-small-col-5-1,
	.tao-no-sidebar .rs-column.-small-col-5-1,
	.page-footer .rs-column.-small-col-5-1 {
		width: 15%;
	}
	.rs-column.-small-col-5-2,
	.tao-no-sidebar .rs-column.-small-col-5-2,
	.page-footer .rs-column.-small-col-5-2 {
		width: 36.25%;
	}
	.rs-column.-small-col-5-3,
	.tao-no-sidebar .rs-column.-small-col-5-3,
	.page-footer .rs-column.-small-col-5-3 {
		width: 57.5%;
	}
	.rs-column.-small-col-5-4,
	.tao-no-sidebar .rs-column.-small-col-5-4,
	.page-footer .rs-column.-small-col-5-4 {
		width: 78.75%;
	}
	.rs-column.-small-col-5-5,
	.tao-no-sidebar .rs-column.-small-col-5-5,
	.page-footer .rs-column.-small-col-5-5 {
		width: 100%;
	}
	.rs-column.-small-col-6-1,
	.tao-no-sidebar .rs-column.-small-col-6-1,
	.page-footer .rs-column.-small-col-6-1 {
		width: 11.45833%;
	}
	.rs-column.-small-col-6-2,
	.tao-no-sidebar .rs-column.-small-col-6-2,
	.page-footer .rs-column.-small-col-6-2 {
		width: 29.16667%;
	}
	.rs-column.-small-col-6-3,
	.tao-no-sidebar .rs-column.-small-col-6-3,
	.page-footer .rs-column.-small-col-6-3 {
		width: 46.875%;
	}
	.rs-column.-small-col-6-4,
	.tao-no-sidebar .rs-column.-small-col-6-4,
	.page-footer .rs-column.-small-col-6-4 {
		width: 64.58333%;
	}
	.rs-column.-small-col-6-5,
	.tao-no-sidebar .rs-column.-small-col-6-5,
	.page-footer .rs-column.-small-col-6-5 {
		width: 82.29167%;
	}
	.rs-column.-small-col-6-6,
	.tao-no-sidebar .rs-column.-small-col-6-6,
	.page-footer .rs-column.-small-col-6-6 {
		width: 100%;
	}
	.rs-column.-small-col-7-1,
	.tao-no-sidebar .rs-column.-small-col-7-1,
	.page-footer .rs-column.-small-col-7-1 {
		width: 8.92857%;
	}
	.rs-column.-small-col-7-2,
	.tao-no-sidebar .rs-column.-small-col-7-2,
	.page-footer .rs-column.-small-col-7-2 {
		width: 24.10714%;
	}
	.rs-column.-small-col-7-3,
	.tao-no-sidebar .rs-column.-small-col-7-3,
	.page-footer .rs-column.-small-col-7-3 {
		width: 39.28571%;
	}
	.rs-column.-small-col-7-4,
	.tao-no-sidebar .rs-column.-small-col-7-4,
	.page-footer .rs-column.-small-col-7-4 {
		width: 54.46429%;
	}
	.rs-column.-small-col-7-5,
	.tao-no-sidebar .rs-column.-small-col-7-5,
	.page-footer .rs-column.-small-col-7-5 {
		width: 69.64286%;
	}
	.rs-column.-small-col-7-6,
	.tao-no-sidebar .rs-column.-small-col-7-6,
	.page-footer .rs-column.-small-col-7-6 {
		width: 84.82143%;
	}
	.rs-column.-small-col-7-7,
	.tao-no-sidebar .rs-column.-small-col-7-7,
	.page-footer .rs-column.-small-col-7-7 {
		width: 100%;
	}
}

/* Resetting box model for moo_mediabox,  moo_slimbox and j_colorbox */
#mbCenter,
#colorbox,
#lbCenter,
#lbBottomContainer {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

::selection {
	background: #37aadf;
	color: #ffffff;
	text-shadow: none !important;
}

::-moz-selection {
	background: #37aadf;
	color: #ffffff;
	text-shadow: none !important;
}

button,
input,
select,
textarea {
	font-family: inherit;
}

table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	border: 1px solid #b2b9c4;
	border-radius: 3px;
	background: #ffffff;
}
table th,
table td {
	border: solid #e5e8ee;
	border-width: 1px 0 0 1px;
}
table th:first-child,
table td:first-child {
	border-left: 0;
}
table > thead > tr:first-child > th,
table > thead > tr:first-child > td,
table > tbody:first-child > tr:first-child > th,
table > tbody:first-child > tr:first-child > td,
table > tfoot:first-child + tbody > tr:first-child > th,
table > tfoot:first-child + tbody > tr:first-child > td {
	/* First row of the table */
	border-top: 0;
}
table th {
	padding: 0.375em 0.625em;
	font-weight: bold;
	text-align: left;
}
table td {
	padding: 0.375em 0.625em;
}
table thead {
	background: rgba(0, 0, 0, 0.02);
}
table tfoot td {
	font-style: italic;
}

strong,
b {
	font-weight: bold;
}

a {
	color: #184a98;
	text-decoration: none;
}
a:hover,
a:focus {
	text-decoration: underline;
}
a:hover,
a:active {
	outline: 0;
}
a.external-link:after {
	font: 0.8125em/1 "RockSolid Icons";
	content: "\e151";
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	margin-left: 0.25em;
}

/* Icon attribute */
*[data-icon]:before,
*[class^="icon-"]:before,
*[class*=" icon-"]:before {
	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.25em;
}

*[data-icon]:before {
	content: attr(data-icon);
}
*[data-icon].after:before {
	content: none;
}
*[data-icon].after:after {
	font: 100%/1 "RockSolid Icons";
	content: attr(data-icon);
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	margin-left: 0.25em;
}

.clear {
	clear: both;
}

.invisible {
	position: absolute;
	height: 1px !important;
	width: 1px !important;
	clip: rect(0 0 0 0);
	margin: -1px;
	padding: 0 !important;
	overflow: hidden;
	border: 0;
}

.-no-border {
	border: 0 !important;
}

.no-margin {
	margin: 0 !important;
}

.no-margin-top {
	margin-top: 0 !important;
}

.no-margin-bottom {
	margin-bottom: 0 !important;
}

.centered {
	display: block;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.pdf_link {
	margin: 0.75em 0 0 1.25em;
	float: right;
}
.pdf_link a {
	margin-left: 0.125em;
}

.mime_icon {
	margin-bottom: -0.25em;
}

.ce_toplink,
.toplink {
	overflow: hidden;
	margin: 1.5em 0;
}
.ce_toplink:after,
.toplink:after {
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 100%;
	height: 0;
	overflow: visible;
	margin: 0 -100% 0 0.625em;
	border-top: 1px solid #b2b9c4;
}

.ce_toplink > a:before,
.toplink > a:before {
	font: 100%/1 "RockSolid Icons";
	content: "\e00c";
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	margin-right: 0.3125em;
}

/* Style for dlh_googlemaps (if you don't use the plugin, you might want to delete this) */
.dlh_googlemap {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

.main-content .dlh_googlemap,
.sidebar .dlh_googlemap {
	/* Setting the maps max-width to 100% is best practice, since it becomes fluid that way */
	max-width: 100%;
}

.main-content .dlh_googlemap img {
	max-width: none;
}

hr,
.headline-hr:before,
.headline-hr:after {
	clear: both;
	height: 0;
	overflow: visible;
	margin: 2.25em 0;
	border: 0;
	border-top: 1px solid #b2b9c4;
}

hr.-hr-dotted,
.headline-hr.-hr-dotted:before,
.headline-hr.-hr-dotted:after {
	border-top-style: dotted;
	border-top-color: #717c8e;
}

hr.-hr-shadow,
.headline-hr.-hr-shadow:before,
.headline-hr.-hr-shadow:after {
	height: 8px;
	background: -webkit-radial-gradient(rgba(0, 0, 0, 0.1), rgba(255, 255, 255, 0) 60%);
	background: -moz-radial-gradient(rgba(0, 0, 0, 0.1), rgba(255, 255, 255, 0) 60%);
	background: -o-radial-gradient(rgba(0, 0, 0, 0.1), rgba(255, 255, 255, 0) 60%);
	background: radial-gradient(rgba(0, 0, 0, 0.1), rgba(255, 255, 255, 0) 60%);
	background-size: 100% 16px;
	background-position: 50% -8px;
}

.headline-hr {
	overflow: hidden;
}
.headline-hr:before,
.headline-hr:after {
	display: inline-block;
	vertical-align: middle;
	width: 100%;
	margin: 0 0.625em 0 -100%;
}
.headline-hr:after {
	content: "";
	margin: 0 -100% 0 0.625em;
}
.headline-hr.-centered {
	text-align: center;
}
.headline-hr.-centered:before {
	content: "";
}
.headline-hr.-align-right {
	text-align: right;
}
.headline-hr.-align-right:before {
	content: "";
}
.headline-hr.-align-right:after {
	content: none;
}

.icon-hr {
	display: block;
}
.icon-hr:before {
	position: relative;
	display: block;
	bottom: -0.5em;
	width: 1.875em;
	margin: 0;
	background: #ffffff;
}
.icon-hr.-centered:before {
	width: 2.25em;
	margin: 0 auto;
	text-align: center;
}
.icon-hr.-align-right:before {
	margin: 0 0 0 auto;
	text-align: right;
}
.icon-hr hr {
	margin: 0;
}

.confirmation {
	color: #b5da44;
}

.information {
	color: #37aadf;
}

.warning {
	color: #df3763;
}

p.confirmation,
p.information,
p.warning,
div.confirmation,
div.information,
div.warning,
span.confirmation,
span.information,
span.warning {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 1.5625em 0;
	padding: 1em 6.25% 1em 12.5%;
	border: 1px solid #b2b9c4;
	border-radius: 3px;
	color: #dfefae;
	background: #ffffff;
}
@media screen and (max-width: 599px) {
	p.confirmation,
	p.information,
	p.warning,
	div.confirmation,
	div.information,
	div.warning,
	span.confirmation,
	span.information,
	span.warning {
		padding-left: 4em;
	}
}
p.confirmation:before,
p.information:before,
p.warning:before,
div.confirmation:before,
div.information:before,
div.warning:before,
span.confirmation:before,
span.information:before,
span.warning:before {
	font: 1.5em/1 "RockSolid Icons";
	content: "\e044";
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	position: absolute;
	top: 50%;
	left: -0.41667em;
	width: 1.16667em;
	height: 1.16667em;
	margin: -1.25em 0 0;
	padding: 0.66667em;
	border-radius: 100%;
	color: #ffffff;
	text-align: center;
	background: #b5da44;
}
p.information,
div.information,
span.information {
	color: #a5d9f1;
}
p.information:before,
div.information:before,
span.information:before {
	content: "\e0a6";
	background: #37aadf;
}
p.warning,
div.warning,
span.warning {
	color: #f1a5b9;
}
p.warning:before,
div.warning:before,
span.warning:before {
	content: "\e143";
	background: #df3763;
}

p.drop-cap:first-letter,
span.drop-cap {
	float: left;
	margin: 0.11111em 0.33333em 0 0;
	padding: 0.19444em;
	border: 1px solid #b2b9c4;
	border-radius: 3px;
	font-size: 2.25em;
	font-weight: normal;
	/* Fixes line-height difference between gecko and webkit */
	line-height: 0.7;
	background: #ffffff;
	background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.05));
	background-image: -moz-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.05));
	background-image: -o-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.05));
	background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.05));
}

p.drop-cap:first-letter {
	/* IE8 and IE9 calculate em's from the parent element */
	margin: 0.25em 0.75em 0 0 \9;
}

code {
	padding: 0.14286em 0.35714em;
	font-family: "Lucida Console", monospace;
	font-size: 0.875em;
	line-height: 1.35786;
	background-color: #e5e8ee;
	border-radius: 3px;
}

pre {
	margin: 1.71429em 0;
	padding: 0.5em 1em;
	display: block;
	overflow: auto;
	border-radius: 3px;
	font-family: "Lucida Console", monospace;
	font-size: 0.875em;
	line-height: 1.715;
	background-color: #e5e8ee;
}
pre code {
	font-size: 1em;
	padding: 0;
	line-height: inherit;
	background-color: transparent;
}

/* ===========================================
 * Buttons
 * ======================================== */
button.-secondary, .button.-secondary, input[type="submit"].-secondary, .header-login .formbody input[type=submit],
.header-dropdown > ul input[type=submit],
.pricing-table-plan.-highlighted a,
.feature-box-link.-secondary,
.headline-box-link.-secondary,
button.-tertiary,
.button.-tertiary,
input[type="submit"].-tertiary,
.rotating-boxes-item-content .rotating-boxes-item-link,
.pricing-table-plan a,
.feature-box-link.-tertiary,
.headline-box-link.-tertiary,
button.-quaternary,
.button.-quaternary,
input[type="submit"].-quaternary,
.feature-box-link.-quaternary,
.headline-box-link.-quaternary,
.highlight-box-link,
.feature-box-link,
.headline-box-link,
.footer-bar input[type=submit],
.footer-bar button,
button,
.button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
	position: relative;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: inline-block;
	padding: 0.64286em 1.42857em;
	border: 1px solid;
	border-color: #23a0da #1f90c4 #1c80ae;
	border-radius: 3px;
	outline: none;
	font-size: 0.875em;
	line-height: 1.42929;
	color: #ffffff;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	text-shadow: 0 -1px 0 #1f90c4;
	background: #37aadf;
	background: -webkit-linear-gradient(#4db3e3, #2aa4dd);
	background: -moz-linear-gradient(#4db3e3, #2aa4dd);
	background: -o-linear-gradient(#4db3e3, #2aa4dd);
	background: linear-gradient(#4db3e3, #2aa4dd);
	box-shadow: inset 0 1px #73c3e8;
}
button.-secondary:hover, .button.-secondary:hover, input[type="submit"].-secondary:hover, .header-login .formbody input[type=submit]:hover,
.header-dropdown > ul input[type=submit]:hover, button.-tertiary:hover, .button.-tertiary:hover, input[type="submit"].-tertiary:hover, .rotating-boxes-item-content .rotating-boxes-item-link:hover, .pricing-table-plan a:hover, button.-quaternary:hover, .button.-quaternary:hover, input[type="submit"].-quaternary:hover, .highlight-box-link:hover, .feature-box-link:hover, .headline-box-link:hover, .footer-bar input[type=submit]:hover, .footer-bar button:hover, button.-secondary:focus, .button.-secondary:focus, input[type="submit"].-secondary:focus, .header-login .formbody input[type=submit]:focus,
.header-dropdown > ul input[type=submit]:focus,
button.-tertiary:focus,
.button.-tertiary:focus,
input[type="submit"].-tertiary:focus,
.rotating-boxes-item-content .rotating-boxes-item-link:focus,
.pricing-table-plan a:focus,
button.-quaternary:focus,
.button.-quaternary:focus,
input[type="submit"].-quaternary:focus,
.highlight-box-link:focus,
.feature-box-link:focus,
.headline-box-link:focus,
.footer-bar input[type=submit]:focus,
.footer-bar button:focus,
button:hover,
button:focus,
.button:hover,
.button:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="reset"]:hover,
input[type="reset"]:focus,
input[type="button"]:hover,
input[type="button"]:focus {
	border-color: #187098 #155f82 #114f6c;
	text-decoration: none;
	background: -webkit-linear-gradient(#5ab9e5, #229dd5);
	background: -moz-linear-gradient(#5ab9e5, #229dd5);
	background: -o-linear-gradient(#5ab9e5, #229dd5);
	background: linear-gradient(#5ab9e5, #229dd5);
}
button.-secondary:active, .button.-secondary:active, input[type="submit"].-secondary:active, .header-login .formbody input[type=submit]:active,
.header-dropdown > ul input[type=submit]:active,
button.-tertiary:active,
.button.-tertiary:active,
input[type="submit"].-tertiary:active,
.rotating-boxes-item-content .rotating-boxes-item-link:active,
.pricing-table-plan a:active,
button.-quaternary:active,
.button.-quaternary:active,
input[type="submit"].-quaternary:active,
.highlight-box-link:active,
.feature-box-link:active,
.headline-box-link:active,
.footer-bar input[type=submit]:active,
.footer-bar button:active,
button:active,
.button:active,
input[type="submit"]:active,
input[type="reset"]:active,
input[type="button"]:active {
	background: -webkit-linear-gradient(#44b0e1, #33a8de);
	background: -moz-linear-gradient(#44b0e1, #33a8de);
	background: -o-linear-gradient(#44b0e1, #33a8de);
	background: linear-gradient(#44b0e1, #33a8de);
}
#colorbox button.-secondary, #colorbox .button.-secondary, #colorbox input[type="submit"].-secondary, #colorbox .header-login .formbody input[type=submit], .header-login .formbody #colorbox input[type=submit],
#colorbox .header-dropdown > ul input[type=submit],
.header-dropdown > ul #colorbox input[type=submit],
#colorbox button.-tertiary,
#colorbox .button.-tertiary,
#colorbox input[type="submit"].-tertiary,
#colorbox .rotating-boxes-item-content .rotating-boxes-item-link,
.rotating-boxes-item-content #colorbox .rotating-boxes-item-link,
#colorbox .pricing-table-plan a,
.pricing-table-plan #colorbox a,
#colorbox button.-quaternary,
#colorbox .button.-quaternary,
#colorbox input[type="submit"].-quaternary,
#colorbox .highlight-box-link,
#colorbox .feature-box-link,
#colorbox .headline-box-link,
#colorbox .footer-bar input[type=submit],
.footer-bar #colorbox input[type=submit],
#colorbox .footer-bar button,
.footer-bar #colorbox button,
#colorbox button,
#colorbox .button,
#colorbox input[type="submit"],
#colorbox input[type="reset"],
#colorbox input[type="button"] {
	/* Fix colorbox close button */
	box-shadow: none;
}

button.-quaternary:hover,
button.-quaternary:focus,
.button.-quaternary:hover,
.button.-quaternary:focus,
input[type="submit"].-quaternary:hover,
input[type="submit"].-quaternary:focus {
	border-color: currentColor;
}
button.-single,
.button.-single,
input[type="submit"].-single {
	margin: 0.75em 0;
}
button.-small,
.button.-small,
input[type="submit"].-small {
	padding: 0.41667em 0.83333em;
	font-size: 0.75em;
}

button.-secondary, .button.-secondary, input[type="submit"].-secondary, .header-login .formbody input[type=submit],
.header-dropdown > ul input[type=submit],
.pricing-table-plan.-highlighted a,
.feature-box-link.-secondary,
.headline-box-link.-secondary {
	border-color: #78619c #6c578c #604d7c;
	color: #ffffff;
	text-shadow: 0 -1px 0 #6c578c;
	background: #8570a6;
	background: -webkit-linear-gradient(#9280b0, #7d67a0);
	background: -moz-linear-gradient(#9280b0, #7d67a0);
	background: -o-linear-gradient(#9280b0, #7d67a0);
	background: linear-gradient(#9280b0, #7d67a0);
	box-shadow: inset 0 1px #a99ac0;
}
button.-secondary:hover, .button.-secondary:hover, input[type="submit"].-secondary:hover, .header-login .formbody input[type=submit]:hover,
.header-dropdown > ul input[type=submit]:hover, .pricing-table-plan.-highlighted a:hover, .feature-box-link.-secondary:hover, .headline-box-link.-secondary:hover, button.-secondary:focus, .button.-secondary:focus, input[type="submit"].-secondary:focus, .header-login .formbody input[type=submit]:focus,
.header-dropdown > ul input[type=submit]:focus,
.pricing-table-plan.-highlighted a:focus,
.feature-box-link.-secondary:focus,
.headline-box-link.-secondary:focus {
	border-color: #53446c #473a5d #3b304d;
	background: -webkit-linear-gradient(#9a89b6, #755f98);
	background: -moz-linear-gradient(#9a89b6, #755f98);
	background: -o-linear-gradient(#9a89b6, #755f98);
	background: linear-gradient(#9a89b6, #755f98);
}
button.-secondary:active, .button.-secondary:active, input[type="submit"].-secondary:active, .header-login .formbody input[type=submit]:active,
.header-dropdown > ul input[type=submit]:active,
.pricing-table-plan.-highlighted a:active,
.feature-box-link.-secondary:active,
.headline-box-link.-secondary:active {
	background: -webkit-linear-gradient(#8d79ac, #826da4);
	background: -moz-linear-gradient(#8d79ac, #826da4);
	background: -o-linear-gradient(#8d79ac, #826da4);
	background: linear-gradient(#8d79ac, #826da4);
}

button.-tertiary,
.button.-tertiary,
input[type="submit"].-tertiary,
.rotating-boxes-item-content .rotating-boxes-item-link,
.pricing-table-plan a,
.feature-box-link.-tertiary,
.headline-box-link.-tertiary {
	border-color: #c5c9d7 #b6bbcc #a7adc2;
	color: #717c8e;
	text-shadow: 0 -1px 0 #d4d7e1;
	background: #f2f3f6;
	background: -webkit-linear-gradient(#ffffff, #e9ebf0);
	background: -moz-linear-gradient(#ffffff, #e9ebf0);
	background: -o-linear-gradient(#ffffff, #e9ebf0);
	background: linear-gradient(#ffffff, #e9ebf0);
	box-shadow: none;
}
button.-tertiary:hover,
.button.-tertiary:hover,
input[type="submit"].-tertiary:hover,
.rotating-boxes-item-content .rotating-boxes-item-link:hover,
.pricing-table-plan a:hover,
.feature-box-link.-tertiary:hover,
.headline-box-link.-tertiary:hover,
button.-tertiary:focus,
.button.-tertiary:focus,
input[type="submit"].-tertiary:focus,
.rotating-boxes-item-content .rotating-boxes-item-link:focus,
.pricing-table-plan a:focus,
.feature-box-link.-tertiary:focus,
.headline-box-link.-tertiary:focus {
	border-color: #b6bbcc #a7adc2 #98a0b7;
	background: -webkit-linear-gradient(#ffffff, #e0e2e9);
	background: -moz-linear-gradient(#ffffff, #e0e2e9);
	background: -o-linear-gradient(#ffffff, #e0e2e9);
	background: linear-gradient(#ffffff, #e0e2e9);
}
button.-tertiary:active,
.button.-tertiary:active,
input[type="submit"].-tertiary:active,
.rotating-boxes-item-content .rotating-boxes-item-link:active,
.pricing-table-plan a:active,
.feature-box-link.-tertiary:active,
.headline-box-link.-tertiary:active {
	background: -webkit-linear-gradient(#fbfbfc, #eff0f4);
	background: -moz-linear-gradient(#fbfbfc, #eff0f4);
	background: -o-linear-gradient(#fbfbfc, #eff0f4);
	background: linear-gradient(#fbfbfc, #eff0f4);
}

button.-quaternary,
.button.-quaternary,
input[type="submit"].-quaternary,
.feature-box-link.-quaternary,
.headline-box-link.-quaternary {
	border: 2px solid #242424;
	border-color: currentColor;
	border-radius: 6px;
	color: inherit;
	text-shadow: none;
	background: none;
	box-shadow: none;
}
button.-quaternary:after,
.button.-quaternary:after,
input[type="submit"].-quaternary:after,
.feature-box-link.-quaternary:after,
.headline-box-link.-quaternary:after {
	content: "";
	position: absolute;
	top: 100%;
	right: 0;
	bottom: 0;
	left: 0;
	background: currentColor;
	opacity: 0.15;
	-webkit-transition: top 0.4s ease-in;
	-moz-transition: top 0.4s ease-in;
	-o-transition: top 0.4s ease-in;
	transition: top 0.4s ease-in;
}
button.-quaternary:hover,
.button.-quaternary:hover,
input[type="submit"].-quaternary:hover,
.feature-box-link.-quaternary:hover,
.headline-box-link.-quaternary:hover,
button.-quaternary:focus,
.button.-quaternary:focus,
input[type="submit"].-quaternary:focus,
.feature-box-link.-quaternary:focus,
.headline-box-link.-quaternary:focus {
	background: none;
}
button.-quaternary:hover:after,
.button.-quaternary:hover:after,
input[type="submit"].-quaternary:hover:after,
.feature-box-link.-quaternary:hover:after,
.headline-box-link.-quaternary:hover:after,
button.-quaternary:focus:after,
.button.-quaternary:focus:after,
input[type="submit"].-quaternary:focus:after,
.feature-box-link.-quaternary:focus:after,
.headline-box-link.-quaternary:focus:after {
	top: 0;
	-webkit-transition: top 0.2s ease-out;
	-moz-transition: top 0.2s ease-out;
	-o-transition: top 0.2s ease-out;
	transition: top 0.2s ease-out;
}

/* ===========================================
 * Wrapper Elements
 * ======================================== */
.header-bar-inner,
.header-navigation-inner,
.content-wrapper {
	max-width: 1640px;
	margin-right: auto;
	margin-left: auto;
}

.centered-wrapper-inner,
.info-map-boxes {
	max-width: 1518.5185185185px;
	margin-right: auto;
	margin-left: auto;
}
@media screen and (max-width: 1640px) {
	.centered-wrapper-inner,
	.info-map-boxes {
		max-width: none;
		margin-right: 3.7037%;
		margin-left: 3.7037%;
	}
}
@media screen and (max-width: 900px) {
	.centered-wrapper-inner,
	.info-map-boxes {
		margin-right: 5.55556%;
		margin-left: 5.55556%;
	}
}

.page {
	zoom: 1;
	position: relative;
	margin: 0 auto;
	background: #ffffff;
}
.page:before {
	content: "";
	display: table;
}
.page:after {
	content: "";
	display: table;
	clear: both;
}
.tao-boxed .page {
	max-width: 1640px;
	border: solid #b2b9c4;
	border-width: 0 1px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1280px) {
	.page {
	}
	.tao-boxed .page {
		border: 0;
		box-shadow: none;
	}
}
.tao-not-boxed .page {
	max-width: none;
	border: 0;
	box-shadow: none;
}

/* ===========================================
 * Layout in order of appearance in HTML
 * ======================================== */
.page-header {
	position: relative;
	z-index: 20;
}
.page-header.is-fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-o-transform: translateZ(0);
	transform: translateZ(0);
}

.header-bar {
	zoom: 1;
	border-bottom: 1px solid #e5e8ee;
	font-size: 0.8125em;
	background: #f5f5f5;
}
.header-bar:before {
	content: "";
	display: table;
}
.header-bar:after {
	content: "";
	display: table;
	clear: both;
}
@media screen and (max-width: 599px) {
	.header-bar {
		display: none;
	}
}
.tao-boxed .header-bar {
	max-width: 1640px;
	margin-right: auto;
	margin-left: auto;
	border-right: 1px solid #b2b9c4;
	border-left: 1px solid #b2b9c4;
}
@media screen and (max-width: 1280px) {
	.header-bar {
	}
	.tao-boxed .header-bar {
		border-right: 0;
		border-left: 0;
	}
}
.tao-not-boxed .header-bar {
	max-width: none;
	border-right: 0;
	border-left: 0;
}

.header-bar-inner {
	color: #98a0ab;
}
@media screen and (max-width: 900px) {
	.header-bar-inner {
		padding-right: 5.55556%;
		padding-left: 5.55556%;
	}
}

.header-links {
	float: left;
	margin: 0 0 0 3.7037%;
	padding: 0.61538em 0;
}
@media screen and (max-width: 900px) {
	.header-links {
		float: none;
		margin-left: 0;
	}
}
.header-links.-right {
	float: right;
	margin: 0 3.7037% 0 0;
}
@media screen and (max-width: 900px) {
	.header-links.-right {
		float: none;
		margin-right: 0;
	}
}
.header-links.-right a {
	margin-right: 0;
	margin-left: 1em;
}
.header-links li {
	display: inline;
}
.header-links a {
	display: inline-block;
	color: inherit;
	margin-right: 1em;
}
.header-links .icon-links-label {
	color: inherit;
}
.header-links.-secondary {
	padding-top: 0;
	padding-bottom: 0;
}
@media screen and (max-width: 900px) {
	.header-links.-secondary > li:first-child > a {
		margin-left: -0.625em;
	}
}
.header-links.-secondary a {
	float: left;
	position: relative;
	width: 2.76923em;
	height: 2.76923em;
	overflow: hidden;
	margin: 0;
	line-height: 0;
	/* Fixes Chrome bug */
	letter-spacing: -1em;
	color: #98a0ab;
	text-indent: -99em;
	text-decoration: none;
}
.header-links.-secondary a:before,
.header-links.-secondary a:after {
	font: 1.15385em/1 "RockSolid Icons";
	content: attr(data-icon);
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	padding-top: 0.06667em;
	line-height: 2.40067;
	letter-spacing: 0;
	text-align: center;
	background: #f5f5f5;
	-webkit-transition: top 0.2s ease-out;
	-moz-transition: top 0.2s ease-out;
	-o-transition: top 0.2s ease-out;
	transition: top 0.2s ease-out;
}
.header-links.-secondary a:after {
	top: 100%;
	color: #ffffff;
	background: transparent;
}
.header-links.-secondary a:hover:before,
.header-links.-secondary a:focus:before {
	top: -100%;
}
.header-links.-secondary a:hover:after,
.header-links.-secondary a:focus:after {
	top: 0;
}

.header-login,
.header-dropdown {
	position: relative;
	float: right;
	z-index: 4;
	margin: 0.30769em 0.76923em -0.15385em 0;
}
@media screen and (max-width: 900px) {
	.header-login,
	.header-dropdown {
		margin-right: -0.61538em;
		margin-left: 1em;
	}
}
.header-login > h1, .header-login > h2, .header-login > h3, .header-login > h4, .header-login > h5, .header-login > h6,
.header-dropdown > h1,
.header-dropdown > h2,
.header-dropdown > h3,
.header-dropdown > h4,
.header-dropdown > h5,
.header-dropdown > h6 {
	position: relative;
	z-index: 1;
	margin: 0;
	padding: 0.38462em 0.76923em 0.61538em;
	border: 1px solid transparent;
	border-bottom: 0;
	border-radius: 3px 3px 0 0;
	outline: none;
	font-weight: normal;
	font-size: inherit;
	line-height: 1.5;
	color: inherit;
	cursor: pointer;
}
.header-login > h1:hover, .header-login > h1:focus, .header-login > h2:hover, .header-login > h2:focus, .header-login > h3:hover, .header-login > h3:focus, .header-login > h4:hover, .header-login > h4:focus, .header-login > h5:hover, .header-login > h5:focus, .header-login > h6:hover, .header-login > h6:focus,
.header-dropdown > h1:hover,
.header-dropdown > h1:focus,
.header-dropdown > h2:hover,
.header-dropdown > h2:focus,
.header-dropdown > h3:hover,
.header-dropdown > h3:focus,
.header-dropdown > h4:hover,
.header-dropdown > h4:focus,
.header-dropdown > h5:hover,
.header-dropdown > h5:focus,
.header-dropdown > h6:hover,
.header-dropdown > h6:focus {
	text-decoration: underline;
}
.header-login > h1:hover:after, .header-login > h1:focus:after, .header-login > h2:hover:after, .header-login > h2:focus:after, .header-login > h3:hover:after, .header-login > h3:focus:after, .header-login > h4:hover:after, .header-login > h4:focus:after, .header-login > h5:hover:after, .header-login > h5:focus:after, .header-login > h6:hover:after, .header-login > h6:focus:after,
.header-dropdown > h1:hover:after,
.header-dropdown > h1:focus:after,
.header-dropdown > h2:hover:after,
.header-dropdown > h2:focus:after,
.header-dropdown > h3:hover:after,
.header-dropdown > h3:focus:after,
.header-dropdown > h4:hover:after,
.header-dropdown > h4:focus:after,
.header-dropdown > h5:hover:after,
.header-dropdown > h5:focus:after,
.header-dropdown > h6:hover:after,
.header-dropdown > h6:focus:after {
	text-decoration: none !important;
}
.header-login > h1:after, .header-login > h2:after, .header-login > h3:after, .header-login > h4:after, .header-login > h5:after, .header-login > h6:after,
.header-dropdown > h1:after,
.header-dropdown > h2:after,
.header-dropdown > h3:after,
.header-dropdown > h4:after,
.header-dropdown > h5:after,
.header-dropdown > h6:after {
	font: 0.69231em/1 "RockSolid Icons";
	content: "\e015";
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	top: -0.11111em;
	margin-left: 0.44444em;
}

.header-dropdown:hover {
	color: #717c8e;
}

.header-login .formbody,
.header-dropdown > ul {
	position: absolute;
	top: 100%;
	right: 0;
	display: none;
	margin-top: -1px;
	padding: 1em 1.53846em 1.38462em;
	border: 1px solid #b2b9c4;
	border-radius: 3px 0 3px 3px;
	color: #717c8e;
	background: #ffffff;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}
.header-login .formbody .error,
.header-dropdown > ul .error {
	margin-top: 0;
	min-width: 21.53846em;
}
.header-login .formbody .login_info,
.header-dropdown > ul .login_info {
	margin-top: 0;
	white-space: nowrap;
}
.header-login .formbody label,
.header-dropdown > ul label {
	display: block;
	margin: 0 0 0.3em;
	font-size: 0.76923em;
	text-transform: uppercase;
}
.header-login .formbody input,
.header-dropdown > ul input {
	width: 100%;
	margin: 0 0 1.07692em;
	padding: 0.46154em 0.92308em;
	border-radius: 0;
	font-size: 1em;
}
.header-login .formbody input[type=submit],
.header-dropdown > ul input[type=submit] {
	margin: 0;
}
.header-login .formbody .checkbox_container,
.header-dropdown > ul .checkbox_container {
	margin: 0 0 1.07692em;
}
.header-login .formbody .checkbox_container input,
.header-dropdown > ul .checkbox_container input {
	margin-bottom: 0;
}
.header-login .formbody .checkbox_container label,
.header-dropdown > ul .checkbox_container label {
	display: inline;
}

.header-login .formbody {
	min-width: 16.92308em;
}

.header-dropdown > ul {
	min-width: 150%;
	padding: 0.76923em 0;
	list-style: none;
}
.header-dropdown > ul li:before {
	content: none;
}
.header-dropdown > ul a,
.header-dropdown > ul span.trail,
.header-dropdown > ul span.active,
.header-dropdown > ul span.forward {
	display: block;
	padding: 0.30769em 1.53846em;
	color: inherit;
	text-decoration: none;
}
.header-dropdown > ul a:hover,
.header-dropdown > ul a:focus {
	text-decoration: underline;
}
.header-dropdown > ul span.trail,
.header-dropdown > ul span.active,
.header-dropdown > ul span.forward {
	font-weight: bold;
}

.header-login.is-active > h1, .header-login.is-active > h2, .header-login.is-active > h3, .header-login.is-active > h4, .header-login.is-active > h5, .header-login.is-active > h6,
.header-dropdown:hover > h1,
.header-dropdown:hover > h2,
.header-dropdown:hover > h3,
.header-dropdown:hover > h4,
.header-dropdown:hover > h5,
.header-dropdown:hover > h6,
.header-dropdown:focus > h1,
.header-dropdown:focus > h2,
.header-dropdown:focus > h3,
.header-dropdown:focus > h4,
.header-dropdown:focus > h5,
.header-dropdown:focus > h6 {
	border-color: #b2b9c4;
	color: #717c8e;
	background-color: #ffffff;
}

.header-login.is-active > h1:after,
.header-login.is-active > h2:after,
.header-login.is-active > h3:after,
.header-login.is-active > h4:after,
.header-login.is-active > h5:after,
.header-login.is-active > h6:after {
	content: "\d7";
}

.header-login.is-active .formbody,
.header-dropdown:hover > ul,
.header-dropdown:focus > ul {
	display: block;
}

.header-navigation {
	zoom: 1;
	position: relative;
	border-bottom: 1px solid #e5e8ee;
	background: #184a98;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.header-navigation:before {
	content: "";
	display: table;
}
.header-navigation:after {
	content: "";
	display: table;
	clear: both;
}
.tao-boxed .header-navigation {
	max-width: 1640px;
	margin-right: auto;
	margin-left: auto;
	border-right: 1px solid #b2b9c4;
	border-left: 1px solid #b2b9c4;
}
@media screen and (max-width: 1280px) {
	.header-navigation {
	}
	.tao-boxed .header-navigation {
		border-right: 0;
		border-left: 0;
	}
}
.tao-not-boxed .header-navigation {
	max-width: none;
	border-right: 0;
	border-left: 0;
}

.header-navigation-inner {
	position: relative;
	height: 5.25em;
	min-height: 3.125em;
	color: #ffffff;
}
@media screen and (max-width: 900px) {
	.header-navigation-inner {
		height: auto;
		min-height: 0;
	}
}

.logo {
	position: absolute;
	top: 17.5%;
	bottom: 17.5%;
	left: 3.7037%;
	margin: 0;
	font-size: inherit;
}
@media screen and (max-width: 900px) {
	.logo {
		position: static;
		margin-left: 5.55556%;
		padding-top: 1.5em;
		padding-bottom: 0.75em;
	}
}
@media screen and (max-width: 599px) {
	.logo {
		text-align: center;
		margin-left: 0;
		padding-top: 0.75em;
	}
}
.logo a {
	display: block;
	height: 100%;
}
@media screen and (max-width: 900px) {
	.logo a {
		display: inline;
	}
}
.logo img {
	display: block;
	width: auto;
	height: 100%;
}
@media screen and (max-width: 900px) {
	.logo img {
		display: inline;
		height: auto;
		max-height: 4.0625em;
	}
}

.main-navigation-wrapper {
	position: relative;
	clear: both;
	border: 1px solid #b2b9c4;
	background: #184a98;
	background: -webkit-linear-gradient(#194ea1, #17468f);
	background: -moz-linear-gradient(#194ea1, #17468f);
	background: -o-linear-gradient(#194ea1, #17468f);
	background: linear-gradient(#194ea1, #17468f);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.main-navigation {
	float: right;
	height: 100%;
	margin-right: 5.55556%;
	padding-right: 2.75em;
}
@media screen and (max-width: 900px) {
	.main-navigation {
		position: relative;
		float: none;
		height: 3.125em;
		margin-right: 0;
		padding-right: 1.5em;
		padding-left: 1.5em;
	}
}
@media screen and (max-width: 599px) {
	.main-navigation {
		display: none;
	}
}
.main-navigation a:before,
.main-navigation span.active:before,
.main-navigation span.trail:before,
.main-navigation span.forward:before {
	content: none;
	display: none;
}
.main-navigation ul {
	display: inline;
	margin: 0;
	padding: 0;
}
.main-navigation > ul > li {
	position: relative;
	float: left;
	height: 100%;
}
.main-navigation > ul > li.-mega {
	position: static;
}
.main-navigation > ul > li:before {
	position: absolute;
	top: 50%;
	left: 0.5em;
	margin-top: -0.33333em;
	font-size: 0.75em;
}
.main-navigation > ul > li > a,
.main-navigation > ul > li > span.active,
.main-navigation > ul > li > span.trail,
.main-navigation > ul > li > span.forward {
	position: relative;
	float: left;
	height: 100%;
	padding: 0 1.429em;
	font-size: 0.875em;
	color: #ffffff;
}
.main-navigation > ul > li > a:before,
.main-navigation > ul > li > span.active:before,
.main-navigation > ul > li > span.trail:before,
.main-navigation > ul > li > span.forward:before {
	content: "";
	display: block;
	height: 50%;
	margin-bottom: -0.71429em;
}
.main-navigation > ul > li > a:after,
.main-navigation > ul > li > span.active:after,
.main-navigation > ul > li > span.trail:after,
.main-navigation > ul > li > span.forward:after {
	content: "";
	position: absolute;
	top: -1px;
	right: 50%;
	left: 50%;
	border-top: 2px solid #ffffff;
	-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;
}
@media screen and (max-width: 900px) {
	.main-navigation > ul > li > a:after,
	.main-navigation > ul > li > span.active:after,
	.main-navigation > ul > li > span.trail:after,
	.main-navigation > ul > li > span.forward:after {
		top: auto;
		bottom: -1px;
	}
}
.main-navigation > ul > li > a:hover,
.main-navigation > ul > li > a:focus {
	color: #ffffff;
	text-decoration: none;
}
.main-navigation > ul > li > a.active,
.main-navigation > ul > li > a.trail,
.main-navigation > ul > li > a.forward,
.main-navigation > ul > li span.active,
.main-navigation > ul > li span.trail,
.main-navigation > ul > li span.forward {
	color: #ffffff;
}
.main-navigation > ul > 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 > ul > li > ul li {
	position: relative;
	display: block;
	padding: 0.125em 0.375em;
	border-bottom: 1px solid #e5e8ee;
	white-space: nowrap;
}
.main-navigation > ul > li > ul li li {
	margin: 0 -0.375em;
	border: 0;
}
.main-navigation > ul > li > ul li[data-icon]:before,
.main-navigation > ul > li > ul li[class^="icon-"]:before,
.main-navigation > ul > li > ul li[class*=" icon-"]:before {
	position: absolute;
	top: 0.64286em;
	left: 0.28571em;
	z-index: 1;
	font-size: 0.875em;
}
.main-navigation > ul > li > ul li[data-icon] a,
.main-navigation > ul > li > ul li[data-icon] span.active,
.main-navigation > ul > li > ul li[data-icon] span.trail,
.main-navigation > ul > li > ul li[data-icon] span.forward,
.main-navigation > ul > li > ul li[class^="icon-"] a,
.main-navigation > ul > li > ul li[class^="icon-"] span.active,
.main-navigation > ul > li > ul li[class^="icon-"] span.trail,
.main-navigation > ul > li > ul li[class^="icon-"] span.forward,
.main-navigation > ul > li > ul li[class*=" icon-"] a,
.main-navigation > ul > li > ul li[class*=" icon-"] span.active,
.main-navigation > ul > li > ul li[class*=" icon-"] span.trail,
.main-navigation > ul > li > ul li[class*=" icon-"] span.forward {
	padding-left: 1.71429em;
}
.main-navigation > ul > li > ul a,
.main-navigation > ul > li > ul span.active,
.main-navigation > ul > li > ul span.trail,
.main-navigation > ul > li > ul span.forward {
	position: relative;
	display: block;
	padding: 0.21429em 0.42857em;
	margin: 0 -0.42857em;
	font-size: 0.875em;
}
.main-navigation > ul > li > ul a {
	border-radius: 3px;
	color: #1782c5;
	-webkit-transition: background-color 0.6s ease-in, color 0.6s ease-in;
	-moz-transition: background-color 0.6s ease-in, color 0.6s ease-in;
	-o-transition: background-color 0.6s ease-in, color 0.6s ease-in;
	transition: background-color 0.6s ease-in, color 0.6s ease-in;
}
.main-navigation > ul > li > ul a:hover {
	text-decoration: none;
	color: #126498;
	background-color: #e5e8ee;
	-webkit-transition-duration: 0.05s;
	-moz-transition-duration: 0.05s;
	-o-transition-duration: 0.05s;
	transition-duration: 0.05s;
}
.main-navigation > ul > li > ul span.active,
.main-navigation > ul > li > ul span.trail,
.main-navigation > ul > li > ul span.forward {
	color: #717c8e;
}
.main-navigation > ul > li > ul ul {
	display: block;
	padding-left: 0.625em;
}
.main-navigation > ul > li:hover:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	margin-top: 0.625em;
}
.main-navigation > ul > li:hover > a,
.main-navigation > ul > li:hover > span.active,
.main-navigation > ul > li:hover > span.trail,
.main-navigation > ul > li:hover > span.forward {
	z-index: 2;
}
.main-navigation > ul > li:hover > a:after,
.main-navigation > ul > li:hover > span.active:after,
.main-navigation > ul > li:hover > span.trail:after,
.main-navigation > ul > li:hover > span.forward: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 > ul > 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 > ul > li.last > ul {
	left: auto;
	right: -0.125em;
}

.mega-dropdown {
	position: absolute;
	top: 100%;
	left: 3.7037%;
	display: block;
	width: 92.59259%;
	max-height: 0;
	padding: 0;
	overflow: hidden;
	border: solid #e5e8ee;
	border-width: 1px 1px 2px;
	border-top-color: #e5e8ee;
	border-radius: 0 0 3px 3px;
	font-size: 0.875em;
	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;
	/* Fixes chrome text flicker */
	-webkit-backface-visibility: hidden;
}
@media screen and (max-width: 900px) {
	.mega-dropdown {
		background-image: none !important;
		left: 0;
		width: 100%;
	}
}
li:hover > .mega-dropdown {
	z-index: 1;
	max-height: 9999px;
	overflow: visible;
	padding: 1.57143em 3.7037%;
	opacity: 1;
	-webkit-transition: opacity 0.2s;
	-moz-transition: opacity 0.2s;
	-o-transition: opacity 0.2s;
	transition: opacity 0.2s;
	pointer-events: auto;
}

.mega-dropdown-column h1,
.mega-dropdown-column h2,
.mega-dropdown-column h3 {
	margin: 0 0 0.71429em;
	font-size: inherit;
	font-weight: bold;
	color: #126498;
}
.mega-dropdown-column h1 a,
.mega-dropdown-column h2 a,
.mega-dropdown-column h3 a {
	color: inherit;
}
.mega-dropdown-column p {
	margin: 1em 0;
}
.mega-dropdown-column ul a {
	display: inline-block;
	padding: 0.28571em 0 0.21429em;
	color: #1782c5;
}
.mega-dropdown-column ul a:hover {
	color: #126498;
}

.mega-dropdown-image {
	margin: 1.42857em 0;
}
.mega-dropdown-image img {
	display: block;
	width: 100%;
	height: auto;
}

.main-navigation-search {
	position: absolute;
	top: 50%;
	right: 3.7037%;
	z-index: 3;
	height: 2.85714em;
	min-width: 3.42857em;
	margin-top: -1.35714em;
	border-radius: 3px;
	overflow: hidden;
	font-size: 0.875em;
	background: #184a98;
}
@media screen and (max-width: 900px) {
	.main-navigation-search {
		right: 5.55556%;
		top: auto;
		bottom: 4.6875em;
		margin-top: 0;
		z-index: 0;
	}
}
@media screen and (max-width: 599px) {
	.main-navigation-search {
		display: none;
	}
}
.main-navigation-search:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	height: 1.07143em;
	margin: -0.5em 0 0;
	border-left: 1px solid #e5e8ee;
}
.main-navigation-search input {
	/* Fixes border-radius on iOS 7 */
	-webkit-appearance: none;
	float: right;
	width: 11.78571em;
	margin: 0.57143em 0.85714em 0 -10.35714em;
	padding: 0.14286em 0 0.21429em;
	border: 0;
	border-bottom: 1px solid #184a98;
	border-radius: 0;
	font-size: inherit;
	background: none;
	box-shadow: none;
	-webkit-transition: margin-left 0.2s ease-out;
	-moz-transition: margin-left 0.2s ease-out;
	-o-transition: margin-left 0.2s ease-out;
	transition: margin-left 0.2s ease-out;
}
.main-navigation-search:hover,
.main-navigation-search.focus {
	margin-right: -1px;
	border: 1px solid #e5e8ee;
}
.main-navigation-search:hover input,
.main-navigation-search.focus input {
	margin-left: 0.85714em;
	border-color: #b2b9c4;
	box-shadow: none;
}
.main-navigation-search:hover:after,
.main-navigation-search.focus:after {
	content: none;
}
@media screen and (max-width: 900px) {
	.main-navigation-search {
		margin-right: -1px;
		border: 1px solid #e5e8ee;
	}
	.main-navigation-search input {
		margin-left: 0.85714em;
		border-color: #b2b9c4;
		box-shadow: none;
	}
	.main-navigation-search:after {
		content: none;
	}
}
.main-navigation-search button {
	position: absolute;
	top: 0;
	right: 0;
	width: 3.57143em;
	height: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	color: #ffffff;
	text-align: left;
	text-indent: -99em;
	text-shadow: none;
	line-height: 0;
	background: none;
	box-shadow: none;
}
.main-navigation-search button:after {
	font: 1.14286em/1 "RockSolid Icons";
	content: "\e0cb";
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	display: block;
	text-align: center;
}
.main-navigation-search button:hover,
.main-navigation-search button:focus {
	color: #ffffff;
}

.main-navigation-mobile-open {
	position: absolute;
	top: 41px;
	left: 6.66667%;
	width: 44px;
	height: 39px;
	margin: -20px 0 0 -11px;
	padding: 11px;
	display: none;
	z-index: 200;
	text-indent: -99em;
	line-height: 0;
}
.main-navigation-mobile-open:after {
	content: "";
	display: block;
	height: 3px;
	border-radius: 2px;
	background: #ffffff;
	box-shadow: 0 7px #ffffff, 0 14px #ffffff;
}
@media screen and (max-width: 599px) {
	.main-navigation-mobile-open {
		display: block;
	}
}

.main-navigation-mobile-close {
	position: absolute;
	top: 0;
	right: -17.64706%;
	display: none;
	width: 17.64706%;
	height: 100%;
	overflow: hidden;
	margin: 0;
	padding: 0;
	border: 0 !important;
	text-indent: -99em;
	background: none !important;
	box-shadow: none !important;
}
.is-active > .main-navigation-mobile-close {
	display: block;
}

.main-navigation-mobile {
	/* Hide mobile navigation by default */
	display: none;
	padding: 0;
	border-top: 1px solid #000000;
	color: #ffffff;
	background: #184a98;
}
@media screen and (max-width: 599px) {
	.main-navigation-mobile {
		display: block;
	}
}
.modernizr-js .main-navigation-mobile {
	display: none;
}
.main-navigation-mobile.is-enabled {
	position: absolute;
	top: 0;
	left: -85%;
	z-index: 201;
	width: 85%;
	min-height: 100%;
	-webkit-transition: left 0.2s ease-out;
	-moz-transition: left 0.2s ease-out;
	-o-transition: left 0.2s ease-out;
	transition: left 0.2s ease-out;
}
@media screen and (max-width: 599px) {
	.main-navigation-mobile.is-enabled {
		display: block;
	}
}
.modernizr-csstransforms3d .main-navigation-mobile.is-enabled {
	left: 0;
	-webkit-transform: translate3d(-100%, 0, 0);
	-moz-transform: translate3d(-100%, 0, 0);
	-ms-transform: translate3d(-100%, 0, 0);
	-o-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
	-webkit-transition: -webkit-transform 0.2s ease-out;
	-moz-transition: -moz-transform 0.2s ease-out;
	-o-transition: -o-transform 0.2s ease-out;
	transition: transform 0.2s ease-out;
}
.main-navigation-mobile.is-active {
	left: 0;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.modernizr-csstransforms3d .main-navigation-mobile.is-active {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.main-navigation-mobile ul {
	display: block;
	margin: 0;
	padding: 0;
}
.main-navigation-mobile ul ul {
	background: #184a98;
	box-shadow: inset 0 40px 40px -20px rgba(0, 0, 0, 0.04), inset 0 -40px 40px -20px rgba(0, 0, 0, 0.04);
}
.main-navigation-mobile .is-collapsed > ul {
	display: none;
}
.main-navigation-mobile li {
	position: relative;
	display: block;
}
.main-navigation-mobile li:before {
	content: none;
}
.main-navigation-mobile a,
.main-navigation-mobile span.active,
.main-navigation-mobile span.trail,
.main-navigation-mobile span.forward {
	display: block;
	padding: 0.64286em 0.92857em 0.57143em;
	border-bottom: 1px solid #000000;
	color: inherit;
	background-color: #184a98;
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
	-webkit-transition: background-color 0.6s ease-out;
	-moz-transition: background-color 0.6s ease-out;
	-o-transition: background-color 0.6s ease-out;
	transition: background-color 0.6s ease-out;
}
.main-navigation-mobile a:before,
.main-navigation-mobile span.active:before,
.main-navigation-mobile span.trail:before,
.main-navigation-mobile span.forward:before {
	margin-right: 0.42857em;
}
.main-navigation-mobile a:hover,
.main-navigation-mobile a:focus,
.main-navigation-mobile span.active:hover,
.main-navigation-mobile span.active:focus,
.main-navigation-mobile span.trail:hover,
.main-navigation-mobile span.trail:focus,
.main-navigation-mobile span.forward:hover,
.main-navigation-mobile span.forward:focus {
	outline: none;
	text-decoration: none;
	background-color: #153f82;
	-webkit-transition: background-color 0.2s ease-out;
	-moz-transition: background-color 0.2s ease-out;
	-o-transition: background-color 0.2s ease-out;
	transition: background-color 0.2s ease-out;
}
.main-navigation-mobile a.active,
.main-navigation-mobile a.trail,
.main-navigation-mobile span.active,
.main-navigation-mobile span.trail,
.main-navigation-mobile span.forward {
	font-weight: bold;
}
.main-navigation-mobile a.active,
.main-navigation-mobile span.active {
	background-color: #1e5bbb;
	box-shadow: inset 0 0 5px #184a98;
}
.main-navigation-mobile li li {
	color: #bfbfbf;
}
.main-navigation-mobile li li a,
.main-navigation-mobile li li span.active,
.main-navigation-mobile li li span.trail,
.main-navigation-mobile li li span.forward {
	padding-left: 1.85714em;
}
.main-navigation-mobile li li li a,
.main-navigation-mobile li li li span.active,
.main-navigation-mobile li li li span.trail,
.main-navigation-mobile li li li span.forward {
	padding-left: 2.78571em;
}
.main-navigation-mobile li li li li a,
.main-navigation-mobile li li li li span.active,
.main-navigation-mobile li li li li span.trail,
.main-navigation-mobile li li li li span.forward {
	padding-left: 3.71429em;
}
.main-navigation-mobile li li li li li a,
.main-navigation-mobile li li li li li span.active,
.main-navigation-mobile li li li li li span.trail,
.main-navigation-mobile li li li li li span.forward {
	padding-left: 4.64286em;
}
.main-navigation-mobile .main-navigation-mobile-expand {
	position: absolute;
	top: 0.21429em;
	right: 0;
	overflow: hidden;
	margin: 0;
	padding: 0.57143em 0.92857em;
	border: solid transparent;
	border-width: 0.21429em 0;
	box-shadow: inset 1px 0 #1f1f1f;
	border-radius: 0;
	outline: none;
	line-height: 0;
	color: inherit;
	text-indent: -99em;
	text-shadow: none;
	background: none;
}
.main-navigation-mobile .main-navigation-mobile-expand:after {
	font: 1.14286em/1 "RockSolid Icons";
	content: "\e009";
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	display: block;
}
.main-navigation-mobile .is-expanded > .main-navigation-mobile-expand:after {
	content: "\e00c";
}

.main-navigation-mobile-search {
	position: relative;
	margin: 5%;
}
.main-navigation-mobile-search input,
.main-navigation-mobile-search input:hover,
.main-navigation-mobile-search input:focus {
	width: 100%;
	border: 1px solid #000000;
	background: transparent;
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
}
.main-navigation-mobile-search button {
	position: absolute;
	top: 0.07143em;
	right: 0;
	width: 3.57143em;
	height: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	text-align: left;
	text-indent: -99em;
	text-shadow: none;
	line-height: 0;
	background: none;
	box-shadow: none;
}
.main-navigation-mobile-search button:after {
	font: 1.14286em/1 "RockSolid Icons";
	content: "\e0cb";
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	display: block;
	text-align: center;
}

.main-navigation-mobile-icons.main-navigation-mobile-icons {
	margin: 1em 0;
	text-align: center;
}
.main-navigation-mobile-icons.main-navigation-mobile-icons li {
	display: inline;
	padding: 0;
}
.main-navigation-mobile-icons.main-navigation-mobile-icons a {
	display: inline-block;
	width: 2.85714em;
	height: 2.85714em;
	overflow: hidden;
	padding: 0;
	border: 0;
	border-radius: 3px;
	box-shadow: none;
}
.main-navigation-mobile-icons.main-navigation-mobile-icons a:before {
	font-size: 1.28571em;
	line-height: 2.22278;
	margin: 0 0 100%;
	color: #ffffff !important;
}
.main-navigation-mobile-icons.main-navigation-mobile-icons a:hover:before {
	color: inherit !important;
}

.tagline {
	zoom: 1;
	border-bottom: 1px solid #e5e8ee;
	background: #ffffff;
}
.tagline:before {
	content: "";
	display: table;
}
.tagline:after {
	content: "";
	display: table;
	clear: both;
}
.tagline .page-title {
	float: left;
	font-size: 20px;
	font-weight: normal;
	margin-top: 1.15789em;
}
@media screen and (max-width: 599px) {
	.tagline .page-title {
		float: none;
		text-align: center;
	}
}
.tagline .mod_breadcrumb {
	float: right;
	margin: 0;
	padding: 2.15385em 0 1.84615em;
}
@media screen and (max-width: 599px) {
	.tagline .mod_breadcrumb {
		float: none;
		margin: 1.69231em 0;
		padding: 0;
		text-align: center;
	}
}
.tagline .image_container {
	display: block;
	clear: both;
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	box-shadow: none;
}
.tagline img {
	display: block;
}
.tagline-no-border .tagline {
	border: 0;
}

.tagline-inner {
	position: relative;
	/* clearfix */
	overflow: hidden;
	color: #98a0ab;
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-o-transform: translateZ(0);
	transform: translateZ(0);
}

.content-wrapper {
	zoom: 1;
}
.content-wrapper:before {
	content: "";
	display: table;
}
.content-wrapper:after {
	content: "";
	display: table;
	clear: both;
}
.tao-fullwidth .content-wrapper {
	max-width: none;
}

.centered-wrapper {
	zoom: 1;
	position: relative;
	clear: both;
	background: 50% 50% no-repeat;
	background-size: cover;
}
.centered-wrapper:before {
	content: "";
	display: table;
}
.centered-wrapper:after {
	content: "";
	display: table;
	clear: both;
}
.centered-wrapper.-border-top {
	border-top: 1px solid #b2b9c4;
}
.centered-wrapper.-border-bottom {
	border-bottom: 1px solid #b2b9c4;
}
.centered-wrapper.-color-inverted {
	color: #ffffff;
}
.centered-wrapper.-highlight-color {
	background-color: #8570a6;
}
.centered-wrapper.-background-color-1 {
	background-color: #353d47;
}
.centered-wrapper.-background-color-2 {
	background-color: #f5f5f5;
}
.centered-wrapper.-small {
	min-height: 300px;
}
@media screen and (max-width: 599px) {
	.centered-wrapper.-small {
		min-height: 200px;
	}
}
.centered-wrapper.-medium {
	min-height: 600px;
}
@media screen and (max-width: 599px) {
	.centered-wrapper.-medium {
		min-height: 400px;
	}
}
.centered-wrapper.-large {
	min-height: 900px;
}
@media screen and (max-width: 599px) {
	.centered-wrapper.-large {
		min-height: 600px;
	}
}
.centered-wrapper.-background-mousemove,
.centered-wrapper.-background-mousemove-inverted,
.centered-wrapper.-background-parallax {
	overflow: hidden;
}

.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-background video {
	/* Change this to `object-fit: cover;` once all browsers support it, */
	/* see http://stackoverflow.com/a/20851590 */
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.-background-mousemove > .centered-wrapper-background,
.-background-mousemove-inverted > .centered-wrapper-background {
	right: -12%;
}

.centered-wrapper-inner {
	position: relative;
}
.centered-wrapper-inner.-fullwidth {
	max-width: none;
	margin: 0;
}

/* ===========================================
 * Content
 * ======================================== */
h1,
h2 {
	line-height: 1.3;
}

h3,
h4,
h5,
h6 {
	line-height: 1.5;
	font-weight: normal;
}

.main-content {
	float: right;
	width: 59.25926%;
	margin: 1.5em 7.40741% 3.75em 0;
}
@media screen and (max-width: 900px) {
	.main-content {
		float: none;
		width: auto;
		margin-right: 5.55556%;
		margin-left: 5.55556%;
	}
}
.tao-no-sidebar .main-content {
	float: none;
	width: auto;
	margin-left: 3.57143%;
	margin-right: 3.57143%;
}
@media screen and (max-width: 900px) {
	.tao-no-sidebar .main-content {
		margin-right: 5.55556%;
		margin-left: 5.55556%;
	}
}
.tao-sidebar-right .main-content {
	float: left;
	margin-right: 0;
	margin-left: 7.40741%;
}
@media screen and (max-width: 900px) {
	.tao-sidebar-right .main-content {
		float: none;
		margin-right: 5.55556%;
		margin-left: 5.55556%;
	}
}
.tao-fullwidth .main-content {
	margin: 0;
}
.tao-3-columns .main-content {
	width: 48.14815%;
	margin-right: 25.92593%;
}
@media screen and (max-width: 900px) {
	.tao-3-columns .main-content {
		width: auto;
		margin-right: 5.55556%;
	}
}
.main-content p,
.main-content ul,
.main-content ol,
.main-content table,
.main-content form,
.main-content fieldset {
	margin-top: 0.75em;
	margin-bottom: 1.5em;
}
.main-content p > span[style] {
	padding: 0 0.1875em;
}
.main-content h1,
.main-content h2,
.main-content h3,
.main-content h4,
.main-content h5,
.main-content h6 {
	margin-top: 0.75em;
	margin-bottom: 0.3em;
	font-weight: normal;
}
.main-content h1 {
	font-size: 2em;
	font-weight: bold;
	color: #717c8e;
}
.main-content .-color-inverted h1 {
	color: #ffffff;
}
.main-content h2 {
	font-size: 1.5em;
	color: #717c8e;
}
.main-content .-color-inverted h2 {
	color: #b2b9c4;
}
.main-content h3 {
	font-size: 1.3em;
}
.main-content h4 {
	font-size: 1.1em;
}
.main-content h5 {
	font-size: 1em;
	line-height: 1.50056;
}
.main-content h6 {
	font-size: 0.8em;
	line-height: 1.50063;
	letter-spacing: 0.0625em;
	color: #717c8e;
	text-transform: uppercase;
}
.-color-inverted .main-content h6 {
	color: #b2b9c4;
}
.main-content ul,
.main-content ol {
	padding-left: 1.25em;
}
.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-"] {
	list-style: none;
}
.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 {
	left: -1.25em;
	width: 0;
	color: #8570a6;
}
.main-content ul {
	list-style: disc;
}
.main-content ul ul {
	margin-top: 0;
}
.main-content ol {
	padding-left: 1.25em;
	list-style: decimal;
}
.main-content ol ol,
.main-content ol ul {
	margin-top: 0;
}
.main-content ol ol {
	padding-left: 1.5em;
	list-style: upper-alpha;
}
.main-content ol ol ol {
	list-style: lower-roman;
}
.main-content ol ol ol ol {
	list-style: lower-alpha;
}
.main-content blockquote {
	position: relative;
	margin: 1.28571em 0 1.28571em 1.90476em;
	font-size: 1.3125em;
	line-height: 1.33381;
	color: #717c8e;
}
.-color-inverted .main-content blockquote {
	color: #b2b9c4;
}
@media screen and (max-width: 599px) {
	.main-content blockquote {
		margin-left: 12.5%;
	}
}
.main-content blockquote small,
.main-content blockquote i,
.main-content blockquote em {
	font-size: 0.7619em;
	line-height: 1.6;
	font-style: normal;
}
.main-content blockquote:before {
	content: "\201c";
	position: absolute;
	top: 0;
	left: -0.47619em;
	margin: 0.47619em 0 0 -0.08333em;
	font-size: 4em;
	font-weight: bold;
	line-height: 0;
	opacity: 0.5;
}
@media screen and (max-width: 599px) {
	.main-content blockquote:before {
		left: -12.5%;
		margin-left: -0.11905em;
	}
}
.main-content img {
	max-width: 100%;
	height: auto;
}
.main-content .gm-style img {
	max-width: none;
}
.main-content .rsts-main {
	margin: 24px 0;
}
.main-content .main-slider {
	margin: 0;
}

/* ===========================================
 * Forms
 * ======================================== */
form h1,
form h2,
form h3,
form h4,
form h5,
form h6 {
	clear: both;
}
form .form-row {
	position: relative;
	clear: both;
}
form p b.error,
form p.error {
	margin: 0;
	display: block;
	color: #df3763;
}

input,
textarea {
	padding: 0.85714em 1.35714em;
	line-height: normal;
	border: 1px solid #b2b9c4;
	border-bottom-color: #a4acb9;
	border-radius: 3px;
	font-size: 0.875em;
	color: inherit;
	background: #ffffff;
}
.valid input,
.valid textarea {
	border-color: #b5da44;
}
.invalid input,
input.error,
.invalid textarea,
textarea.error {
	border-color: #df3763;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	/* multiple rules, because user agents are required to ignore a rule with an unknown selector */
	color: #98a0ab;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
	color: #98a0ab;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	color: #98a0ab;
}
input::placeholder,
textarea::placeholder {
	color: #98a0ab;
}
input:hover,
textarea:hover {
	border-color: #a4acb9 #a4acb9 #98a1b0;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}
input:focus,
textarea:focus {
	border-color: #8570a6;
}
.-color-inverted input,
.-color-inverted textarea {
	background: #353d47;
}

input[type="text"],
input[type="search"],
input[type="email"],
input[type="password"],
input[type="url"] {
	outline: none;
}
input[type="checkbox"],
input[type="radio"],
input[type="image"] {
	width: auto !important;
	height: auto !important;
	margin: 0;
	padding: 0;
	border: 0;
	box-shadow: none;
}
input[type="checkbox"] {
	vertical-align: middle;
	-webkit-appearance: checkbox;
	-moz-appearance: checkbox;
	appearance: checkbox;
}
input[type="radio"] {
	vertical-align: middle;
	-webkit-appearance: radio;
	-moz-appearance: radio;
	appearance: radio;
	background: none;
}

input[type="file"] {
	height: auto;
	padding: 0;
	border: 0;
	/* IE8 and IE9 */
	border: 1px solid #b2b9c4 \9;
	background: none;
	box-shadow: none;
}

button,
input[type="submit"] {
	margin-top: 1.125em;
}

textarea {
	height: 200px;
	resize: vertical;
	line-height: 1.5;
	outline: none;
}

fieldset {
	margin: 1.125em 0;
	border: 1px solid #b2b9c4;
}
fieldset legend {
	padding: 0 0.3125em;
}
fieldset + br {
	/* Kill <br> that Contao injects */
	display: none;
}

.main-content form .form-row {
	margin-top: 1.125em;
	margin-bottom: 1.125em;
}
.main-content label {
	display: block;
	margin-bottom: 0.35714em;
	font-size: 0.875em;
	color: #717c8e;
}
.-color-inverted .main-content label {
	color: #b2b9c4;
}
.main-content label .mandatory {
	margin-left: 0.14286em;
	color: #8570a6;
}
.main-content input[type="checkbox"] + label {
	display: inline;
}
.main-content fieldset p {
	margin: 0;
}
.main-content fieldset label {
	display: inline;
	margin: 0;
}
.main-content fieldset label:after {
	/* add line break after label */
	content: "\A";
	white-space: pre;
}
.main-content input,
.main-content textarea,
.main-content select,
.main-content fieldset {
	width: 75%;
}
@media screen and (max-width: 599px) {
	.main-content input,
	.main-content textarea,
	.main-content select,
	.main-content fieldset {
		width: 100%;
	}
}
.main-content button,
.main-content input[type="submit"] {
	width: auto;
}
@media screen and (max-width: 599px) {
	.main-content button,
	.main-content input[type="submit"] {
		width: 100%;
	}
}

.explanation p,
.captcha_text p {
	margin: 0;
}

.explanation {
	font-size: 0.875em;
	margin: -0.85714em 0 1.71429em;
	color: #717c8e;
}
.-color-inverted .explanation {
	color: #b2b9c4;
}

.captcha_text {
	display: block;
}
label .captcha_text {
	display: inline;
}

.sidebar form input,
.sidebar form textarea,
.sidebar form select,
.sidebar form fieldset,
.sidebar form button {
	width: 100%;
}
.sidebar form label {
	display: block;
	margin-bottom: 0.3125em;
	font-size: 1em;
}
.sidebar form input[type="checkbox"],
.sidebar form input[type="radio"],
.sidebar form input[type="image"] {
	width: auto;
}

/* ===========================================
 * Content elements
 * ======================================== */
.image_container {
	position: relative;
	display: inline-block;
}
.image_container.no-border,
.no-border .image_container {
	padding: 0;
	border: 0;
	box-shadow: none;
	background: none;
}
.image_container.float_above {
	margin-top: 1.5em;
}
.image_container.float_below {
	margin-bottom: 1.5em;
}
.image_container img {
	display: block;
	width: 100%;
	height: auto;
}
.image_container a {
	position: relative;
	display: block;
	overflow: hidden;
	/* Fixes IE bug */
	text-decoration: none;
}
.image_container a:hover:before,
.image_container a:focus:before {
}
.image_container a:hover:after,
.image_container a:focus:after {
}
.image_container a:hover img,
.image_container a:focus img {
}
.image_container figcaption,
.image_container .caption {
	/* overwrite elements style attribute */
	width: 100% !important;
	padding: 0.42857em 0 0;
	font-size: 0.875em;
	color: #717c8e;
}

.image_container.float_right,
.image_container.float_left {
	float: right;
	width: 37.5% !important;
	margin: 1.5em 0 1.125em 6.25%;
}
@media screen and (max-width: 599px) {
	.image_container.float_right,
	.image_container.float_left {
		margin-left: 0;
		float: none !important;
		width: auto !important;
		width: auto !important;
	}
}
.tao-no-sidebar .image_container.float_right,
.tao-no-sidebar .image_container.float_left {
	margin: 0.5em 0 1em 4%;
	width: 24% !important;
}
@media screen and (max-width: 900px) {
	.tao-no-sidebar .image_container.float_right,
	.tao-no-sidebar .image_container.float_left {
		margin-left: 6.25%;
		width: 37.5% !important;
	}
}
@media screen and (max-width: 599px) {
	.tao-no-sidebar .image_container.float_right,
	.tao-no-sidebar .image_container.float_left {
		margin-left: 0;
		width: auto !important;
	}
}
.no-resize .image_container.float_right,
.tao-no-sidebar .no-resize .image_container.float_right,
.image_container.float_right.no-resize,
.tao-no-sidebar .image_container.float_right.no-resize,
.no-resize .image_container.float_left,
.tao-no-sidebar .no-resize .image_container.float_left,
.image_container.float_left.no-resize,
.tao-no-sidebar .image_container.float_left.no-resize {
	width: auto !important;
}

.image_container.float_left {
	float: left;
	margin: 0.5em 6.25% 1em 0;
}
@media screen and (max-width: 599px) {
	.image_container.float_left {
		margin-right: 0;
	}
}
.tao-no-sidebar .image_container.float_left {
	margin: 0.5em 3.84615% 1em 0;
}
@media screen and (max-width: 900px) {
	.tao-no-sidebar .image_container.float_left {
		margin-right: 6.25%;
	}
}
@media screen and (max-width: 599px) {
	.tao-no-sidebar .image_container.float_left {
		margin-right: 0;
	}
}

.ce_youtube-wrapper {
	position: relative;
	margin: 1.5em 0;
	/* ratio 16 to 9 */
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}
.ce_youtube-wrapper iframe,
.ce_youtube-wrapper object,
.ce_youtube-wrapper embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.mejs-video,
.mejs-audio {
	margin: 1.25em 0;
	background: transparent;
}
.mejs-video button,
.mejs-audio button {
	-webkit-appearance: button;
	-moz-appearance: button;
	appearance: button;
	border-radius: 0;
	box-shadow: none;
}

.ce_gallery > ul.cols_1 > li {
	width: 100%;
}
.ce_gallery > ul.cols_2 > li {
	width: 49.25%;
}
.ce_gallery > ul.cols_3 > li {
	width: 32.33333%;
}
.ce_gallery > ul.cols_4 > li {
	width: 23.875%;
}
.ce_gallery > ul.cols_5 > li {
	width: 18.8%;
}
.ce_gallery > ul.cols_6 > li {
	width: 15.41667%;
}
.ce_gallery > ul.cols_7 > li {
	width: 13%;
}
.ce_gallery > ul.cols_8 > li {
	width: 11.1875%;
}
.ce_gallery > ul.cols_9 > li {
	width: 9.77778%;
}
.ce_gallery > ul.cols_10 > li {
	width: 8.65%;
}
.ce_gallery > ul.cols_11 > li {
	width: 7.72727%;
}
.ce_gallery > ul.cols_12 > li {
	width: 6.95833%;
}
@media screen and (max-width: 599px) {
	.ce_gallery.ce_gallery > ul > li {
		/* doubled class for specificity */
		width: auto;
	}
}
.ce_gallery.no-resize > ul > li {
	width: auto;
}
.main-content .ce_gallery {
	margin: 1.5em 0;
}
.ce_gallery > ul {
	zoom: 1;
	margin: 0 !important;
	padding: 0 0 1.5% 0 !important;
	list-style: none !important;
}
.ce_gallery > ul:before {
	content: "";
	display: table;
}
.ce_gallery > ul:after {
	content: "";
	display: table;
	clear: both;
}
.ce_gallery > ul > li {
	float: left;
	width: 23.875%;
	margin: 1.5% 0 0 1.5%;
}
@media screen and (max-width: 599px) {
	.ce_gallery > ul > li {
		margin-left: 0;
		margin-right: 1.5%;
	}
}
.ce_gallery > ul > li.col_first {
	clear: left;
	margin-left: 0;
}
@media screen and (max-width: 599px) {
	.ce_gallery > ul > li.col_first {
		clear: none;
	}
}
.ce_gallery > ul > li.col_last {
	/* for rounding failures */
	margin-right: -1%;
}
@media screen and (max-width: 599px) {
	.ce_gallery > ul > li.col_last {
		margin-right: 1.5%;
	}
}
.ce_gallery > ul > li > .image_container {
	display: block;
	width: 100%;
}
.ce_gallery img {
	width: 100%;
	height: auto;
}

.enclosure,
.sidebar .enclosure,
.ce_downloads,
.sidebar .ce_downloads {
	margin: 1.6875em 0;
	padding: 1.25em 1.875em;
	border: 1px solid #b2b9c4;
	border-radius: 3px;
}
.enclosure h1, .enclosure h2, .enclosure h3, .enclosure h4, .enclosure h5, .enclosure h6,
.sidebar .enclosure h1,
.sidebar .enclosure h2,
.sidebar .enclosure h3,
.sidebar .enclosure h4,
.sidebar .enclosure h5,
.sidebar .enclosure h6,
.ce_downloads h1,
.ce_downloads h2,
.ce_downloads h3,
.ce_downloads h4,
.ce_downloads h5,
.ce_downloads h6,
.sidebar .ce_downloads h1,
.sidebar .ce_downloads h2,
.sidebar .ce_downloads h3,
.sidebar .ce_downloads h4,
.sidebar .ce_downloads h5,
.sidebar .ce_downloads h6 {
	margin: -1.75em -2.58333em 1.66667em;
	padding: 0.66667em 1.66667em;
	border-radius: 3px 3px 0 0;
	font-size: 0.75em;
	font-weight: bold;
	letter-spacing: 0.08333em;
	color: #ffffff;
	text-transform: uppercase;
	background: #717c8e;
}
.enclosure h1:before, .enclosure h2:before, .enclosure h3:before, .enclosure h4:before, .enclosure h5:before, .enclosure h6:before,
.sidebar .enclosure h1:before,
.sidebar .enclosure h2:before,
.sidebar .enclosure h3:before,
.sidebar .enclosure h4:before,
.sidebar .enclosure h5:before,
.sidebar .enclosure h6:before,
.ce_downloads h1:before,
.ce_downloads h2:before,
.ce_downloads h3:before,
.ce_downloads h4:before,
.ce_downloads h5:before,
.ce_downloads h6:before,
.sidebar .ce_downloads h1:before,
.sidebar .ce_downloads h2:before,
.sidebar .ce_downloads h3:before,
.sidebar .ce_downloads h4:before,
.sidebar .ce_downloads h5:before,
.sidebar .ce_downloads h6:before {
	font: 1.16667em/1 "RockSolid Icons";
	content: "\e06d";
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	top: 0.07143em;
	float: right;
}
.enclosure ul, .enclosure p,
.sidebar .enclosure ul,
.sidebar .enclosure p,
.ce_downloads ul,
.ce_downloads p,
.sidebar .ce_downloads ul,
.sidebar .ce_downloads p {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ce_accordion {
	color: #717c8e;
}
.ce_accordion[data-icon],
.ce_accordion[class^="icon-"],
.ce_accordion[class*=" icon-"] {
	position: relative;
}
.ce_accordion[data-icon]:before,
.ce_accordion[class^="icon-"]:before,
.ce_accordion[class*=" icon-"]:before {
	position: absolute;
	top: 0.75em;
	left: 1em;
	z-index: 1;
	font-size: 1.25em;
}
.ce_accordion[data-icon] .toggler,
.ce_accordion[class^="icon-"] .toggler,
.ce_accordion[class*=" icon-"] .toggler {
	padding-left: 3.125em;
}
.ce_accordion .toggler {
	position: relative;
	/* collapse borders */
	margin-bottom: -2px;
	padding: 0.6875em 2.5em 0.8125em 1.25em;
	border: 1px solid #b2b9c4;
	border-radius: 3px;
	outline: none;
	font-weight: bold;
	cursor: pointer;
	background: #ffffff;
}
.ce_accordion .toggler:after {
	font: 0.8125em/1 "RockSolid Icons";
	content: "\2b";
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	position: absolute;
	top: 1.38462em;
	right: 1.53846em;
}
.ce_accordion .toggler:hover {
	color: #184a98;
	text-decoration: none;
}
.ce_accordion .toggler.ui-accordion-header-active:after {
	content: "\2212";
}
.ce_accordion + .ce_accordion .toggler {
	border-radius: 0 0 3px 3px;
}
.ce_accordion .accordion {
	position: relative;
	/* collapse borders */
	margin-bottom: -2px;
	padding: 0.0625em 1.25em;
	border: 1px solid #b2b9c4;
	border-top-color: #d8dce1;
	border-radius: 0 0 3px 3px;
	background: #e5e5e5;
}

.icon-boxes {
	zoom: 1;
	margin: 2.75em 0;
}
.icon-boxes:before {
	content: "";
	display: table;
}
.icon-boxes:after {
	content: "";
	display: table;
	clear: both;
}
.icon-boxes > h1,
.icon-boxes > h2,
.icon-boxes > h3,
.icon-boxes > h4,
.icon-boxes > h5,
.icon-boxes > h6 {
	margin-top: 0;
	margin-bottom: 1em;
}

.icon-boxes-item {
	position: relative;
	display: block;
	font-size: 0.875em;
	color: #717c8e;
	text-align: center;
	text-decoration: none;
}
.icon-boxes-item.-align-left {
	text-align: left;
}
.icon-boxes-item.-align-right {
	text-align: right;
}
.icon-boxes-item.-color-inverted,
.-color-inverted .icon-boxes-item {
	color: #ffffff;
}
.icon-boxes-item.-color-inverted:before,
.icon-boxes-item.-color-inverted.-inverted-icon:before,
.-color-inverted .icon-boxes-item:before,
.-color-inverted .icon-boxes-item.-inverted-icon:before {
	border-color: #ffffff;
	color: #ffffff;
	background-color: transparent;
}
.icon-boxes-item.-color-inverted h3,
.-color-inverted .icon-boxes-item h3 {
	color: #ffffff;
}
.icon-boxes-item.-boxed {
	top: 1.78571em;
	/* margin-top can not be used here because it's set by .rs-column */
	margin-bottom: 1.78571em;
	padding: 0 1.42857em 1.42857em;
	border: 1px solid #b2b9c4;
	border-radius: 3px;
}
.icon-boxes-item.-boxed.-headline-icon {
	top: auto;
	margin-bottom: 0;
	padding-top: 1.42857em;
}
.icon-boxes-item.-boxed:before {
	top: -0.46875em;
	margin-top: -0.46875em;
	margin-bottom: 0.125em;
}
.icon-boxes-item.-background-color {
	padding: 1.42857em;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 3px;
}
.icon-boxes-item.-background-color:before {
	background-color: inherit;
}
.icon-boxes-item.-background-color:hover:before,
.icon-boxes-item.-background-color:focus:before {
	background-color: inherit;
}
.icon-boxes-item.-boxed.-background-color {
	padding: 0 1.42857em 1.42857em;
}
.icon-boxes-item:hover,
.icon-boxes-item:focus {
	text-decoration: none;
}
.icon-boxes-item:before {
	width: 1em;
	height: 1em;
	margin: 0 0 0.59375em;
	padding: 0.34375em;
	border: 0.09375em solid #8570a6;
	border-radius: 100%;
	font-size: 2.28571em;
	color: #8570a6;
	text-align: center;
	background: transparent;
	-webkit-transition-property: opacity, -webkit-transform, color, background;
	-moz-transition-property: opacity, -moz-transform, color, background;
	-o-transition-property: opacity, -o-transform, color, background;
	transition-property: opacity, transform, color, background;
	-webkit-transition-duration: 0.2s, 0.2s, 0.2s, 0.8s;
	-moz-transition-duration: 0.2s, 0.2s, 0.2s, 0.8s;
	-o-transition-duration: 0.2s, 0.2s, 0.2s, 0.8s;
	transition-duration: 0.2s, 0.2s, 0.2s, 0.8s;
}
.not-in-view > .icon-boxes-item:before,
.does-repeat.not-in-view > .icon-boxes-item:before,
.does-repeat .not-in-view > .icon-boxes-item:before {
	opacity: 0;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
}
.does-repeat.in-view > .icon-boxes-item:before,
.does-repeat .in-view > .icon-boxes-item:before,
.has-shown > .icon-boxes-item:before {
	opacity: 1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}
.icon-boxes-item:nth-of-type(12n+1):before {
	-webkit-transition-delay: 0.1s, 0.1s, 0, 0;
	-moz-transition-delay: 0.1s, 0.1s, 0, 0;
	-o-transition-delay: 0.1s, 0.1s, 0, 0;
	transition-delay: 0.1s, 0.1s, 0, 0;
}
.icon-boxes-item:nth-of-type(12n+2):before {
	-webkit-transition-delay: 0.2s, 0.2s, 0, 0;
	-moz-transition-delay: 0.2s, 0.2s, 0, 0;
	-o-transition-delay: 0.2s, 0.2s, 0, 0;
	transition-delay: 0.2s, 0.2s, 0, 0;
}
.icon-boxes-item:nth-of-type(12n+3):before {
	-webkit-transition-delay: 0.3s, 0.3s, 0, 0;
	-moz-transition-delay: 0.3s, 0.3s, 0, 0;
	-o-transition-delay: 0.3s, 0.3s, 0, 0;
	transition-delay: 0.3s, 0.3s, 0, 0;
}
.icon-boxes-item:nth-of-type(12n+4):before {
	-webkit-transition-delay: 0.4s, 0.4s, 0, 0;
	-moz-transition-delay: 0.4s, 0.4s, 0, 0;
	-o-transition-delay: 0.4s, 0.4s, 0, 0;
	transition-delay: 0.4s, 0.4s, 0, 0;
}
.icon-boxes-item:nth-of-type(12n+5):before {
	-webkit-transition-delay: 0.5s, 0.5s, 0, 0;
	-moz-transition-delay: 0.5s, 0.5s, 0, 0;
	-o-transition-delay: 0.5s, 0.5s, 0, 0;
	transition-delay: 0.5s, 0.5s, 0, 0;
}
.icon-boxes-item:nth-of-type(12n+6):before {
	-webkit-transition-delay: 0.6s, 0.6s, 0, 0;
	-moz-transition-delay: 0.6s, 0.6s, 0, 0;
	-o-transition-delay: 0.6s, 0.6s, 0, 0;
	transition-delay: 0.6s, 0.6s, 0, 0;
}
.icon-boxes-item:nth-of-type(12n+7):before {
	-webkit-transition-delay: 0.7s, 0.7s, 0, 0;
	-moz-transition-delay: 0.7s, 0.7s, 0, 0;
	-o-transition-delay: 0.7s, 0.7s, 0, 0;
	transition-delay: 0.7s, 0.7s, 0, 0;
}
.icon-boxes-item:nth-of-type(12n+8):before {
	-webkit-transition-delay: 0.8s, 0.8s, 0, 0;
	-moz-transition-delay: 0.8s, 0.8s, 0, 0;
	-o-transition-delay: 0.8s, 0.8s, 0, 0;
	transition-delay: 0.8s, 0.8s, 0, 0;
}
.icon-boxes-item:nth-of-type(12n+9):before {
	-webkit-transition-delay: 0.9s, 0.9s, 0, 0;
	-moz-transition-delay: 0.9s, 0.9s, 0, 0;
	-o-transition-delay: 0.9s, 0.9s, 0, 0;
	transition-delay: 0.9s, 0.9s, 0, 0;
}
.icon-boxes-item:nth-of-type(12n+10):before {
	-webkit-transition-delay: 1s, 1s, 0, 0;
	-moz-transition-delay: 1s, 1s, 0, 0;
	-o-transition-delay: 1s, 1s, 0, 0;
	transition-delay: 1s, 1s, 0, 0;
}
.icon-boxes-item:nth-of-type(12n+11):before {
	-webkit-transition-delay: 1.1s, 1.1s, 0, 0;
	-moz-transition-delay: 1.1s, 1.1s, 0, 0;
	-o-transition-delay: 1.1s, 1.1s, 0, 0;
	transition-delay: 1.1s, 1.1s, 0, 0;
}
.icon-boxes-item:nth-of-type(12n+12):before {
	-webkit-transition-delay: 1.2s, 1.2s, 0, 0;
	-moz-transition-delay: 1.2s, 1.2s, 0, 0;
	-o-transition-delay: 1.2s, 1.2s, 0, 0;
	transition-delay: 1.2s, 1.2s, 0, 0;
}
.icon-boxes-item.-inverted-icon:before {
	border-color: #8570a6;
	color: #ffffff;
	background-color: #8570a6;
}
.icon-boxes-item.-large-icon:before {
	font-size: 2.71429em;
	/* IE9 - IE11 */
	font-size: 2.375rem;
}
.icon-boxes-item.-headline-icon {
	text-align: left;
}
.icon-boxes-item.-headline-icon:before {
	float: left;
	top: 0;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: none;
}
.icon-boxes-item.-headline-icon h3 {
	padding: 0.09524em 0 0 2.19048em;
}
.icon-boxes-item:hover:before,
.icon-boxes-item:focus:before {
	color: #ffffff;
	background-color: #8570a6;
}
.icon-boxes-item:hover.-inverted-icon:before,
.icon-boxes-item:focus.-inverted-icon:before {
	color: #8570a6;
	background-color: #ffffff;
}
.icon-boxes-item:hover.-headline-icon:before,
.icon-boxes-item:focus.-headline-icon:before {
	color: #8570a6;
	background: none;
}
.icon-boxes-item h3 {
	margin: 0 0 0.66667em;
	font-family: "Montserrat",'Helvetica-Neue',Helvetica,Arial, sans-serif;
	font-style: normal;
	font-size: 1.5em;
	color: #242424;
}
.icon-boxes-item p {
	margin: 0.5em 0;
}

.icon-boxes-item-link.-link {
	color: #184a98;
}
.icon-boxes-item:hover > .icon-boxes-item-link.-link,
.icon-boxes-item:focus > .icon-boxes-item-link.-link {
	text-decoration: underline;
}
.-color-inverted .icon-boxes-item-link {
	color: #ffffff;
}

.rotating-boxes {
	zoom: 1;
	margin: 4% 0;
}
.rotating-boxes:before {
	content: "";
	display: table;
}
.rotating-boxes:after {
	content: "";
	display: table;
	clear: both;
}

.rotating-boxes-item {
	position: relative;
	color: #717c8e;
	text-decoration: none;
	-webkit-perspective: 750px;
	-moz-perspective: 750px;
	-ms-perspective: 750px;
	-o-perspective: 750px;
	perspective: 750px;
}
.rotating-boxes-item:hover,
.rotating-boxes-item:focus,
.rotating-boxes-item.hover {
	text-decoration: none;
}
.rotating-boxes-item:hover > .rotating-boxes-item-cover,
.rotating-boxes-item:focus > .rotating-boxes-item-cover,
.rotating-boxes-item.hover > .rotating-boxes-item-cover {
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	transform: rotateY(180deg);
}
.rotating-boxes-item:hover > .rotating-boxes-item-content,
.rotating-boxes-item:focus > .rotating-boxes-item-content,
.rotating-boxes-item.hover > .rotating-boxes-item-content {
	-webkit-transform: rotateY(360deg);
	-moz-transform: rotateY(360deg);
	-ms-transform: rotateY(360deg);
	-o-transform: rotateY(360deg);
	transform: rotateY(360deg);
}

.rotating-boxes-item-cover,
.rotating-boxes-item-content {
	position: relative;
	border: 1px solid #b2b9c4;
	border-radius: 3px;
	background: #ffffff;
	box-shadow: 0 0 7px rgba(0, 0, 0, 0.15);
	-webkit-transition: -webkit-transform 0.3s;
	-moz-transition: -moz-transform 0.3s;
	-o-transition: -o-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: rotateY(0deg);
	-moz-transform: rotateY(0deg);
	-ms-transform: rotateY(0deg);
	-o-transform: rotateY(0deg);
	transform: rotateY(0deg);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-o-backface-visibility: hidden;
	backface-visibility: hidden;
}

.rotating-boxes-item-cover {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	color: #8570a6;
}
.rotating-boxes-item-cover:before,
.rotating-boxes-item-cover:after {
	position: absolute;
	top: 50%;
	left: 50%;
}
.rotating-boxes-item-cover:before {
	margin: -1em 0 0 -0.5em;
	font-size: 2.625em;
}
.rotating-boxes-item-cover:after {
	content: attr(data-headline);
	left: 0;
	width: 100%;
	margin: 0.35714em 0 0;
	font-size: 1.75em;
	text-align: center;
}

.rotating-boxes-item-content {
	overflow: hidden;
	margin: -1em;
	padding: 1em 3.14286em;
	font-size: 0.875em;
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	transform: rotateY(180deg);
}
.rotating-boxes-item-content:before {
	position: absolute;
	top: 0;
	right: 0;
	margin: -0.3em;
	font-size: 14.28571em;
	color: #8570a6;
	opacity: 0.2;
}
.rotating-boxes-item-content h3 {
	position: relative;
	margin: 0.66667em 0;
	font-size: 1.5em;
	color: #8570a6;
}
.-color-inverted .rotating-boxes-item-content h3 {
	color: #8570a6;
}
.rotating-boxes-item-content p {
	position: relative;
	margin: 1em 0;
}
.rotating-boxes-item-content .rotating-boxes-item-link {
	margin-top: 0;
}

.teaser-boxes,
.team-boxes {
	margin: 2.5em 0;
	zoom: 1;
}
.teaser-boxes:before,
.team-boxes:before {
	content: "";
	display: table;
}
.teaser-boxes:after,
.team-boxes:after {
	content: "";
	display: table;
	clear: both;
}
.teaser-boxes > h1,
.team-boxes > h1,
.teaser-boxes > h2,
.team-boxes > h2,
.teaser-boxes > h3,
.team-boxes > h3,
.teaser-boxes > h4,
.team-boxes > h4,
.teaser-boxes > h5,
.team-boxes > h5,
.teaser-boxes > h6,
.team-boxes > h6 {
	margin-top: 0;
	margin-bottom: 1.5em;
}

.teaser-boxes-item,
.team-boxes-item {
	font-size: 0.875em;
	text-decoration: none;
	color: inherit;
	outline: none;
}
.teaser-boxes-item.-align-center,
.-align-center.team-boxes-item {
	text-align: center;
}
.teaser-boxes-item.-align-right,
.-align-right.team-boxes-item {
	text-align: right;
}
.-color-inverted .teaser-boxes-item,
.-color-inverted .team-boxes-item {
	color: #b2b9c4;
}
.-boxed > .teaser-boxes-item,
.-boxed > .team-boxes-item {
	color: #717c8e;
}
.teaser-boxes-item .image-wrapper,
.team-boxes-item .image-wrapper {
	position: relative;
	display: block;
	overflow: hidden;
	outline: none;
}
.teaser-boxes-item .image-wrapper.-image-circle,
.team-boxes-item .image-wrapper.-image-circle {
	border-radius: 99em;
	overflow: hidden;
	/* Fixes hover in Chrome */
	opacity: 0.99;
}
.teaser-boxes-item .image-wrapper.-image-circle img,
.team-boxes-item .image-wrapper.-image-circle img {
	/* Fixes android bug with border-radius and overflow */
	border-radius: 99em;
}
.teaser-boxes-item .image-wrapper,
.team-boxes-item .image-wrapper,
.teaser-boxes-item .no-image,
.team-boxes-item .no-image {
	margin-bottom: 1.28571em;
}
.-boxed > .teaser-boxes-item .image-wrapper,
.-boxed > .team-boxes-item .image-wrapper,
.-boxed > .teaser-boxes-item .no-image,
.-boxed > .team-boxes-item .no-image {
	margin: -1.42857em -1.42857em 1.28571em;
}
.-boxed > .teaser-boxes-item,
.-boxed > .team-boxes-item {
	overflow: hidden;
	padding: 1.42857em;
	border: 1px solid #b2b9c4;
	border-radius: 3px;
	outline: none;
	background-color: #ffffff;
}
.teaser-boxes-item img,
.team-boxes-item img {
	display: block;
	width: 100%;
	height: auto;
}
.teaser-boxes-item .no-image,
.team-boxes-item .no-image {
	display: block;
	padding-top: 75%;
	background: #e5e8ee;
}
.teaser-boxes-item h3,
.team-boxes-item h3 {
	margin: 0 0 0.33333em;
	font-size: 1.28571em;
	font-weight: bold;
	-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;
}
.-color-inverted .teaser-boxes-item h3,
.-color-inverted .team-boxes-item h3 {
	color: #ffffff;
}
.-color-inverted .-boxed .teaser-boxes-item h3,
.-color-inverted .-boxed .team-boxes-item h3 {
	color: #242424;
}
.teaser-boxes-item h4,
.team-boxes-item h4 {
	margin: 0;
	font-size: 1em;
	font-weight: normal;
}
.teaser-boxes-item p,
.team-boxes-item p,
.teaser-boxes-item ul,
.team-boxes-item ul,
.teaser-boxes-item ol,
.team-boxes-item ol {
	margin: 0.42857em 0;
}
.teaser-boxes-item a,
.team-boxes-item a {
	margin-top: 0.57143em;
}
.-color-inverted .teaser-boxes-item a,
.-color-inverted .team-boxes-item a {
	color: inherit;
}
.teaser-boxes-item .image-wrapper.-has-hover:hover, .team-boxes-item .image-wrapper.-has-hover:hover,
.teaser-boxes-item .image-wrapper.-has-hover:focus,
.team-boxes-item .image-wrapper.-has-hover:focus {
	outline: none;
}
.teaser-boxes-item .image-wrapper.-has-hover:hover:before, .team-boxes-item .image-wrapper.-has-hover:hover:before,
.teaser-boxes-item .image-wrapper.-has-hover:focus:before,
.team-boxes-item .image-wrapper.-has-hover:focus:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.3);
}
.teaser-boxes-item .image-wrapper.-has-hover:hover img, .team-boxes-item .image-wrapper.-has-hover:hover img,
.teaser-boxes-item .image-wrapper.-has-hover:focus img,
.team-boxes-item .image-wrapper.-has-hover:focus 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);
}
.teaser-boxes-item a.image-wrapper.-has-hover:hover, .team-boxes-item a.image-wrapper.-has-hover:hover,
.teaser-boxes-item a.image-wrapper.-has-hover:focus,
.team-boxes-item a.image-wrapper.-has-hover:focus {
	/* Fixes IE bug */
	text-decoration: none;
}
.teaser-boxes-item a.image-wrapper.-has-hover:hover:after, .team-boxes-item a.image-wrapper.-has-hover:hover:after,
.teaser-boxes-item a.image-wrapper.-has-hover:focus:after,
.team-boxes-item a.image-wrapper.-has-hover:focus:after {
	font: 1.5em/1 "RockSolid Icons";
	content: "\2b";
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	margin: -0.5em;
	color: #ffffff;
	text-shadow: 0 0 2px rgba(0, 0, 0, 0.35);
}

.team-boxes-item h3 {
	font-size: 1.14286em;
}
.team-boxes-item .hover-image {
	position: absolute;
	top: auto;
	bottom: -100%;
	left: 0;
	width: 100%;
	-webkit-transition: bottom 0.2s ease-out;
	-moz-transition: bottom 0.2s ease-out;
	-o-transition: bottom 0.2s ease-out;
	transition: bottom 0.2s ease-out;
}
.team-boxes-item:hover .hover-image {
	bottom: 0;
}
.team-boxes-item > ul {
	margin: 0.57143em 0;
	padding: 0;
	list-style-type: none;
}
.team-boxes-item > ul li {
	display: inline;
}
.team-boxes-item > ul a {
	display: inline-block;
	overflow: hidden;
	padding: 0.57143em 0.57143em 0 0.07143em;
	outline: none;
	line-height: 0;
	/* Fixes Chrome bug */
	letter-spacing: -1em;
	text-indent: -99em;
	text-decoration: none;
}
.team-boxes-item > ul a:before {
	content: none;
}
.team-boxes-item > ul a:after {
	font: 1.28571em/1 "RockSolid Icons";
	content: attr(data-icon);
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	display: block;
	letter-spacing: 0;
	color: #aab0bb !important;
}
.team-boxes-item > ul a:hover:after,
.team-boxes-item > ul a:focus:after {
	color: inherit !important;
}

.highlight-box {
	/* clearfix */
	overflow: hidden;
	display: table;
	width: 100%;
	margin: 1.5em 0;
	padding: 1.11111em 1.11111em;
	border: 1px solid #b2b9c4;
	border-radius: 3px;
	font-size: 1.125em;
	line-height: 1.50056;
	color: #717c8e;
}

.highlight-box-inner {
	display: table-cell;
	vertical-align: middle;
	text-align: right;
}
@media screen and (max-width: 599px) {
	.highlight-box-inner {
		display: block;
		margin-top: 1em;
		text-align: left;
	}
}
.highlight-box-inner:first-child {
	width: 65%;
	text-align: left;
}
@media screen and (max-width: 599px) {
	.highlight-box-inner:first-child {
		width: auto;
		margin-top: 0;
	}
}
.highlight-box-inner h1:first-child,
.highlight-box-inner h2:first-child,
.highlight-box-inner h3:first-child,
.highlight-box-inner h4:first-child,
.highlight-box-inner p:first-child,
.highlight-box-inner ul:first-child,
.highlight-box-inner ol:first-child {
	margin: 0;
}
.highlight-box-inner p:last-child {
	margin-bottom: 0;
}

.highlight-box-link {
	font-size: 0.77778em;
}

.testimonial,
.main-content .testimonial {
	margin: 1.5em 0;
	font-size: 1em;
	line-height: 1.56313;
}
.testimonial:before,
.main-content .testimonial:before {
	content: none;
}
.-color-inverted .testimonial,
.-color-inverted .main-content .testimonial {
	color: #ffffff;
}
.testimonial > p,
.main-content .testimonial > p {
	position: relative;
	margin: 0;
	padding: 1.0625em 1.25em 1.125em;
	border: 1px solid #b2b9c4;
	border-radius: 3px;
}
.testimonial > p:before,
.testimonial > p:after,
.main-content .testimonial > p:before,
.main-content .testimonial > p:after {
	content: "";
	position: absolute;
	top: 100%;
	left: 4.375em;
	width: 0;
	height: 0;
	border: solid transparent;
	border-top-color: #a4acb9;
	border-style: solid;
	border-width: 16px 16px 0 0;
}
@media screen and (max-width: 599px) {
	.testimonial > p:before,
	.testimonial > p:after,
	.main-content .testimonial > p:before,
	.main-content .testimonial > p:after {
		content: none;
	}
}
.testimonial > p:after,
.main-content .testimonial > p:after {
	margin-left: 1px;
	border-top-color: #ffffff;
	border-width: 14px 14px 0 0;
}
.testimonial.-large,
.main-content .testimonial.-large {
	margin: 2em 0;
	font-size: 1.125em;
	text-align: center;
}
.testimonial.-large:before,
.main-content .testimonial.-large:before {
	content: "\201c";
	position: static;
	display: block;
	margin: 0 0 -0.05556em;
	line-height: 1;
}
.testimonial.-large > p,
.main-content .testimonial.-large > p {
	padding: 0;
	border: 0;
	font-size: 1.33333em;
	font-weight: 300;
}
@media screen and (max-width: 599px) {
	.testimonial.-large > p,
	.main-content .testimonial.-large > p {
		font-size: 1.11111em;
	}
}
.testimonial.-large > p:before,
.testimonial.-large > p:after,
.main-content .testimonial.-large > p:before,
.main-content .testimonial.-large > p:after {
	content: none;
}

.testimonial-author,
.testimonial .testimonial-author {
	/* clearfix */
	overflow: hidden;
	padding: 1em 0 0 0;
	font-size: 1em;
}
.testimonial-author img,
.testimonial .testimonial-author img {
	float: left;
	width: 3.25em;
	height: auto;
	margin-left: 1.3125em;
	border: 1px solid #e5e8ee;
	border: 1px solid rgba(113, 124, 142, 0.5);
	border-radius: 100%;
}
@media screen and (max-width: 599px) {
	.testimonial-author img,
	.testimonial .testimonial-author img {
		margin-left: 0;
	}
}
.testimonial-author > small,
.testimonial .testimonial-author > small {
	float: left;
	margin: 0.375em 0 0 1.25em;
	font-size: inherit;
	line-height: 1.2;
}
.testimonial-author > small b,
.testimonial .testimonial-author > small b {
	display: block;
	font-size: 0.875em;
	font-weight: 300;
}
.testimonial-author > img + small,
.testimonial-author > picture + small,
.testimonial .testimonial-author > img + small,
.testimonial .testimonial-author > picture + small {
	margin-left: 0.875em;
}

.testimonial.-large .testimonial-author {
	display: inline-block;
	min-height: 5.33333em;
	padding-top: 2em;
	text-align: left;
}
@media screen and (max-width: 599px) {
	.testimonial.-large .testimonial-author {
		text-align: center;
	}
}
.testimonial.-large .testimonial-author > small {
	margin-left: 0;
	text-align: center;
}
.testimonial.-large .testimonial-author img {
	margin-left: 0;
}
@media screen and (max-width: 599px) {
	.testimonial.-large .testimonial-author img {
		display: block;
		float: none;
		margin-right: auto;
		margin-left: auto;
	}
}
.testimonial.-large .testimonial-author > img + small,
.testimonial.-large .testimonial-author > picture + small {
	margin-left: 0.875em;
	text-align: left;
}
@media screen and (max-width: 599px) {
	.testimonial.-large .testimonial-author > img + small,
	.testimonial.-large .testimonial-author > picture + small {
		margin-left: 0;
		text-align: center;
	}
}

.pricing-table {
	zoom: 1;
	margin: 2.75em 0;
}
.pricing-table:before {
	content: "";
	display: table;
}
.pricing-table:after {
	content: "";
	display: table;
	clear: both;
}
.pricing-table > h1,
.pricing-table > h2,
.pricing-table > h3,
.pricing-table > h4,
.pricing-table > h5,
.pricing-table > h6 {
	margin-top: 0;
}

.pricing-table-plan {
	position: relative;
	float: left;
	width: 33.33333%;
	margin: 0.875em -1px 0 0;
	border: 1px solid #b2b9c4;
	text-align: center;
}
@media screen and (max-width: 599px) {
	.pricing-table-plan {
		float: none;
		width: auto !important;
		border-radius: 3px;
		margin-bottom: 1.6875em;
	}
}
.pricing-table-plan:first-of-type {
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
}
.pricing-table-plan:last-of-type {
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
}
@media screen and (max-width: 599px) {
	.pricing-table-plan:last-of-type {
		margin-bottom: 0;
	}
}
.-columns-1 > .pricing-table-plan {
	width: 100%;
}
.-columns-1 > .pricing-table-plan.-highlighted {
	width: 103%;
}
.-columns-2 > .pricing-table-plan {
	width: 50%;
}
.-columns-2 > .pricing-table-plan.-highlighted {
	width: 53%;
}
.-columns-3 > .pricing-table-plan {
	width: 33.33333%;
}
.-columns-3 > .pricing-table-plan.-highlighted {
	width: 36.33333%;
}
.-columns-4 > .pricing-table-plan {
	width: 25%;
}
.-columns-4 > .pricing-table-plan.-highlighted {
	width: 28%;
}
.-columns-5 > .pricing-table-plan {
	width: 20%;
}
.-columns-5 > .pricing-table-plan.-highlighted {
	width: 23%;
}
.-columns-6 > .pricing-table-plan {
	width: 16.66667%;
}
.-columns-6 > .pricing-table-plan.-highlighted {
	width: 19.66667%;
}
.pricing-table-plan.-highlighted {
	z-index: 1;
	width: 36.33333%;
	margin-right: -1.5%;
	margin-left: -1.5%;
	padding-bottom: 1.25em;
	border-radius: 3px;
	background: #ffffff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.pricing-table-plan.-highlighted h3 {
	margin: -0.9375em -1px 0;
	padding-top: 1.8125em;
	border-radius: 3px 3px 0 0;
	color: #ffffff;
	background: #8570a6;
}
.pricing-table-plan h3 {
	margin: 0;
	padding: 0.875em 0;
	border-bottom: 1px solid #e5e8ee;
	font-size: inherit;
	font-weight: bold;
	color: inherit;
}
.pricing-table-plan p {
	margin: 0;
	padding: 0.375em 0;
	border-bottom: 1px solid #e5e8ee;
	font-size: 3em;
	line-height: 1;
}
.pricing-table-plan p b {
	display: inline-block;
	vertical-align: super;
	margin-left: -0.83333em;
	font-weight: normal;
	font-size: 0.5em;
	color: #717c8e;
}
.pricing-table-plan p i {
	display: block;
	font-style: normal;
	font-size: 0.29167em;
	color: #717c8e;
}
.pricing-table-plan ul {
	margin: 0 0 -1px 0;
	padding: 0;
	list-style: none;
	font-size: 0.875em;
	color: #717c8e;
}
.pricing-table-plan li {
	display: block;
	padding: 0.5em;
	border-bottom: 1px solid #e5e8ee;
	-webkit-transition: background-color 0.3s ease-in;
	-moz-transition: background-color 0.3s ease-in;
	-o-transition: background-color 0.3s ease-in;
	transition: background-color 0.3s ease-in;
}
.pricing-table-plan li:hover {
	background-color: #e5e8ee;
	-webkit-transition-duration: 0.05s;
	-moz-transition-duration: 0.05s;
	-o-transition-duration: 0.05s;
	transition-duration: 0.05s;
}
.pricing-table-plan a {
	font-size: 0.75em;
	margin: 1.5em 0;
	padding: 0.83333em 1.66667em 0.75em;
}

.info-table {
	overflow: auto;
	border: 0;
}
.info-table td,
.info-table th {
	border-width: 0 0 1px;
}
.info-table .image-cell {
	padding: 20% 10%;
	text-align: center;
}
@media screen and (max-width: 900px) {
	.info-table .image-cell {
		padding: 0 0 5%;
	}
}

.feature-box {
	zoom: 1;
	position: relative;
	overflow: hidden;
}
.feature-box:before {
	content: "";
	display: table;
}
.feature-box:after {
	content: "";
	display: table;
	clear: both;
}
.feature-box.-image-centered {
	text-align: center;
}
.feature-box.-vertical-centered {
	display: table;
	table-layout: fixed;
	/* Fixes IE bug */
	width: 100%;
}
.feature-box.-small {
	min-height: 300px;
}
.feature-box.-small.-vertical-centered {
	height: 300px;
}
@media screen and (max-width: 599px) {
	.feature-box.-small {
		min-height: 200px;
	}
	.feature-box.-small.-vertical-centered {
		height: 200px;
	}
}
.feature-box.-medium {
	min-height: 600px;
}
.feature-box.-medium.-vertical-centered {
	height: 600px;
}
@media screen and (max-width: 599px) {
	.feature-box.-medium {
		min-height: 400px;
	}
	.feature-box.-medium.-vertical-centered {
		height: 400px;
	}
}
.feature-box.-large {
	min-height: 900px;
}
.feature-box.-large.-vertical-centered {
	height: 900px;
}
@media screen and (max-width: 599px) {
	.feature-box.-large {
		min-height: 600px;
	}
	.feature-box.-large.-vertical-centered {
		height: 600px;
	}
}
.feature-box.-headline-dropshadow h1,
.feature-box.-headline-dropshadow h2,
.feature-box.-headline-dropshadow h3 {
	text-shadow: 0 0 3px rgba(0, 0, 0, 0.45);
}

.feature-box-text {
	margin: 6.25em 48% 6.25em 0;
	color: #717c8e;
}
@media screen and (max-width: 900px) {
	.feature-box-text {
		margin-right: 37.5%;
	}
}
@media screen and (max-width: 599px) {
	.feature-box-text {
		margin: 2.25em 0;
	}
}
.-image-left > .feature-box-text {
	margin-right: 0;
	margin-left: 48%;
}
@media screen and (max-width: 900px) {
	.-image-left > .feature-box-text {
		margin-left: 37.5%;
	}
}
@media screen and (max-width: 599px) {
	.-image-left > .feature-box-text {
		margin-left: 0;
	}
}
.-image-centered > .feature-box-text {
	margin-right: 16%;
	margin-left: 16%;
}
@media screen and (max-width: 900px) {
	.-image-centered > .feature-box-text {
		margin-right: 0;
		margin-left: 0;
	}
}
.-image-centered > .feature-box-text + .feature-box-image {
	margin-top: -2.25em;
}
@media screen and (max-width: 599px) {
	.-image-centered > .feature-box-text + .feature-box-image {
		margin-top: 0;
	}
}
.-vertical-centered > .feature-box-text {
	display: table-cell;
	vertical-align: middle;
	width: 56.0%;
	margin: 0;
	padding: 4.5em 4% 4.5em 0;
}
@media screen and (max-width: 900px) {
	.-vertical-centered > .feature-box-text {
		width: 68.75%;
	}
}
@media screen and (max-width: 599px) {
	.-vertical-centered > .feature-box-text {
		display: block;
		width: auto;
		padding-right: 0;
	}
}
.-vertical-centered.-image-left > .feature-box-text {
	padding-right: 0;
	padding-left: 4%;
}
@media screen and (max-width: 599px) {
	.-vertical-centered.-image-left > .feature-box-text {
		padding-left: 0;
	}
}
.-vertical-centered.-image-centered > .feature-box-text {
	width: 100%;
	padding-right: 20%;
	padding-left: 20%;
}
@media screen and (max-width: 900px) {
	.-vertical-centered.-image-centered > .feature-box-text {
		padding-right: 0;
		padding-left: 0;
	}
}
.-no-image > .feature-box-text {
	width: 100%;
}
.-color-inverted .feature-box-text {
	color: #ffffff;
}
.no-margin .feature-box-text {
	margin: 0;
	padding: 0;
}
.no-margin-top .feature-box-text {
	margin-top: 0;
	padding-top: 0;
}
.no-margin-bottom .feature-box-text {
	margin-bottom: 0;
	padding-bottom: 0;
}
.feature-box-text h1,
.feature-box-text h2,
.feature-box-text h3 {
	margin: 0;
	color: #242424;
	font-size: 2em;
	font-weight: bold;
}
@media screen and (max-width: 599px) {
	.feature-box-text h1,
	.feature-box-text h2,
	.feature-box-text h3 {
		font-size: 1.57143em;
	}
}
.feature-box-text h1 + a,
.feature-box-text h2 + a,
.feature-box-text h3 + a {
	margin-top: 1.71429em;
}
.-color-inverted .feature-box-text h1,
.-color-inverted .feature-box-text h2,
.-color-inverted .feature-box-text h3 {
	color: #ffffff;
}
.feature-box-text h1.-small,
.feature-box-text h2.-small,
.feature-box-text h3.-small {
	font-size: 1.3125em;
}
.feature-box-text h1.-medium,
.feature-box-text h2.-medium,
.feature-box-text h3.-medium {
	font-size: 2.375em;
}
@media screen and (max-width: 599px) {
	.feature-box-text h1.-medium,
	.feature-box-text h2.-medium,
	.feature-box-text h3.-medium {
		font-size: 1.875em;
	}
}
.feature-box-text h1.-large,
.feature-box-text h2.-large,
.feature-box-text h3.-large {
	font-size: 2.875em;
}
@media screen and (max-width: 599px) {
	.feature-box-text h1.-large,
	.feature-box-text h2.-large,
	.feature-box-text h3.-large {
		font-size: 2em;
	}
}
.feature-box-text h1.-super-size,
.feature-box-text h2.-super-size,
.feature-box-text h3.-super-size {
	font-size: 3.625em;
}
@media screen and (max-width: 599px) {
	.feature-box-text h1.-super-size,
	.feature-box-text h2.-super-size,
	.feature-box-text h3.-super-size {
		font-size: 2.25em;
	}
}
.feature-box-text p {
	font-size: 1.125em;
}

.feature-box-image {
	display: block;
	float: right;
	width: 44%;
	margin: 3em 0 3em 4%;
}
@media screen and (max-width: 900px) {
	.feature-box-image {
		width: 31.25%;
	}
}
@media screen and (max-width: 599px) {
	.feature-box-image {
		width: 100%;
	}
}
.-image-left > .feature-box-image {
	float: left;
	margin-right: 4%;
	margin-left: 0;
}
@media screen and (max-width: 599px) {
	.-image-left > .feature-box-image {
		float: none;
		margin-right: 0;
	}
}
.-image-centered > .feature-box-image {
	float: none;
	width: 64%;
	margin-right: auto;
	margin-left: auto;
}
@media screen and (max-width: 900px) {
	.-image-centered > .feature-box-image {
		width: 100%;
	}
}
.-image-centered > .feature-box-image + .feature-box-text {
	margin-top: 3em;
}
.-image-top > .feature-box-image {
	margin-top: 0;
}
.-image-bottom > .feature-box-image {
	position: absolute;
	bottom: 0;
	right: 0;
	margin: 0;
}
@media screen and (max-width: 599px) {
	.-image-bottom > .feature-box-image {
		position: static;
		margin-bottom: 3em;
	}
}
.-image-bottom.-image-left > .feature-box-image {
	right: auto;
	left: 0;
}
.-vertical-centered > .feature-box-image {
	display: table-cell;
	vertical-align: middle;
	float: none;
	margin: 0;
	padding: 3em 0;
}
@media screen and (max-width: 599px) {
	.-vertical-centered > .feature-box-image {
		display: block;
		padding-top: 1.5em;
		padding-bottom: 1.5em;
	}
}
.-image-rounded > .feature-box-image img {
	border-radius: 99em;
}

.in-view > .feature-box-text,
.in-view > .feature-box-image {
	-webkit-transition: opacity 0.6s linear, -webkit-transform 0.6s ease-out;
	-moz-transition: opacity 0.6s linear, -moz-transform 0.6s ease-out;
	-o-transition: opacity 0.6s linear, -o-transform 0.6s ease-out;
	transition: opacity 0.6s linear, transform 0.6s ease-out;
}
.not-in-view > .feature-box-text.-fade,
.not-in-view > .feature-box-image.-fade {
	opacity: 0;
}
.in-view > .feature-box-text.-fade,
.in-view > .feature-box-image.-fade {
	opacity: 1;
}
.not-in-view > .feature-box-text.-move,
.not-in-view > .feature-box-image.-move {
	-webkit-transform: translate(100%, 0);
	-moz-transform: translate(100%, 0);
	-ms-transform: translate(100%, 0);
	-o-transform: translate(100%, 0);
	transform: translate(100%, 0);
}
.not-in-view > .feature-box-text.-move-right,
.not-in-view > .feature-box-image.-move-right {
	-webkit-transform: translate(-100%, 0);
	-moz-transform: translate(-100%, 0);
	-ms-transform: translate(-100%, 0);
	-o-transform: translate(-100%, 0);
	transform: translate(-100%, 0);
}
.not-in-view > .feature-box-text.-move-top,
.not-in-view > .feature-box-image.-move-top {
	-webkit-transform: translate(0, 100%);
	-moz-transform: translate(0, 100%);
	-ms-transform: translate(0, 100%);
	-o-transform: translate(0, 100%);
	transform: translate(0, 100%);
}
.not-in-view > .feature-box-text.-move-bottom,
.not-in-view > .feature-box-image.-move-bottom {
	-webkit-transform: translate(0, -100%);
	-moz-transform: translate(0, -100%);
	-ms-transform: translate(0, -100%);
	-o-transform: translate(0, -100%);
	transform: translate(0, -100%);
}
.in-view > .feature-box-text.-move,
.in-view > .feature-box-image.-move {
	-webkit-transform: translate(0, 0);
	-moz-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	transform: translate(0, 0);
}
.feature-box-text img,
.feature-box-image img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}

.counter-boxes {
	zoom: 1;
	text-align: center;
	margin: 3.125em 0;
}
.counter-boxes:before {
	content: "";
	display: table;
}
.counter-boxes:after {
	content: "";
	display: table;
	clear: both;
}
.counter-boxes > h2 {
	margin: 0 0 1.1875em 0;
	font-size: 1.75em;
	font-weight: bold;
	color: inherit;
}
.-color-inverted .counter-boxes > h2 {
	color: #ffffff;
}
.counter-boxes > h3 {
	margin: 0 0 1.80952em 0;
	font-size: 1.3125em;
	color: #717c8e;
}
.-color-inverted .counter-boxes > h3 {
	color: #b2b9c4;
}
.-color-inverted.-highlight-color .counter-boxes > h3 {
	color: #3b304d;
}
.counter-boxes > h2 + h3 {
	margin-top: -1.33333em;
}

.counter-boxes-item {
	text-decoration: none;
	color: inherit;
}
.counter-boxes-item:link:hover,
.counter-boxes-item:link:focus {
	text-decoration: none;
}
.counter-boxes-item:link:hover:before,
.counter-boxes-item:link:focus:before {
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	-o-transform: scale(1.2);
	transform: scale(1.2);
}
.counter-boxes-item:before {
	margin: 0;
	font-size: 2.25em;
	color: #717c8e;
}
.-color-inverted .counter-boxes-item:before {
	color: #b2b9c4;
}
.-color-inverted.-highlight-color .counter-boxes-item:before {
	color: #3b304d;
}
.counter-boxes-item p {
	margin: 0.06944em -0.5em 0.16667em;
	font-size: 4.5em;
	line-height: 1;
	color: #8570a6;
	font-weight: 300;
}
@media screen and (max-width: 900px) {
	.counter-boxes-item p {
		font-size: 2.875em;
	}
}
@media screen and (max-width: 599px) {
	.counter-boxes-item p {
		font-size: 2.25em;
	}
}
.-color-inverted.-highlight-color .counter-boxes-item p {
	color: #3b304d;
}
.counter-boxes-item h3 {
	margin: 0;
	font-size: 1.5em;
	font-weight: bold;
	color: inherit;
}
@media screen and (max-width: 900px) {
	.counter-boxes-item h3 {
		font-size: 1.25em;
	}
}
.counter-boxes-item h4 {
	margin: 0.28571em 0 0;
	font-size: 0.875em;
	color: #717c8e;
}
.-color-inverted .counter-boxes-item h4 {
	color: #b2b9c4;
}

.headline-box {
	margin: 2.25em 0;
	text-align: center;
}
.headline-box.-align-left {
	text-align: left;
}
.headline-box.-align-right {
	text-align: right;
}
.headline-box:before {
	display: block;
	width: 1.95455em;
	height: 1.95455em;
	margin: 0 auto 0.27273em auto;
	border-radius: 100%;
	font-size: 2.75em;
	font-weight: normal;
	line-height: 2.00023;
	text-align: center;
	background: #ffffff;
	background: rgba(255, 255, 255, 0.6);
}
.-color-inverted .headline-box:before {
	background: #353d47;
	background: rgba(53, 61, 71, 0.6);
}
.headline-box h2 {
	margin: 0;
	font-size: 1.5em;
	font-weight: normal;
	color: inherit;
}
.-color-inverted .headline-box h2 {
	color: inherit;
}
@media screen and (max-width: 599px) {
	.headline-box h2 {
		font-size: 1.3125em;
	}
}
.headline-box h2.-bold {
	font-weight: bold;
}
.headline-box h2.-small {
	font-size: 1.5em;
}
.headline-box h2.-medium {
	font-size: 2em;
}
@media screen and (max-width: 599px) {
	.headline-box h2.-medium {
		font-size: 1.5em;
	}
}
.headline-box h2.-large {
	font-size: 2.25em;
}
@media screen and (max-width: 599px) {
	.headline-box h2.-large {
		font-size: 1.75em;
	}
}
.headline-box h2.-super-size {
	font-size: 2.625em;
}
@media screen and (max-width: 599px) {
	.headline-box h2.-super-size {
		font-size: 2em;
	}
}
.headline-box h3 {
	margin: 0.44444em 0 0;
	font-size: 1.125em;
	font-weight: normal;
	line-height: 1.5;
	color: #717c8e;
}
.-color-inverted.-highlight-color .headline-box h3 {
	color: #3b304d;
}
.-color-inverted .headline-box h3 {
	color: #b2b9c4;
}
.headline-box h3.-small {
	font-size: 1.125em;
}
.headline-box h3.-medium {
	font-size: 1.5em;
}
@media screen and (max-width: 599px) {
	.headline-box h3.-medium {
		font-size: 1.3125em;
	}
}
.headline-box h3.-large {
	font-size: 1.75em;
}
@media screen and (max-width: 599px) {
	.headline-box h3.-large {
		font-size: 1.5em;
	}
}
.headline-box h3.-super-size {
	font-size: 2.25em;
}
@media screen and (max-width: 599px) {
	.headline-box h3.-super-size {
		font-size: 1.625em;
	}
}
.headline-box.-button-inline h2,
.headline-box.-button-inline h3 {
	display: inline;
}
@media screen and (max-width: 599px) {
	.headline-box.-button-inline h2,
	.headline-box.-button-inline h3 {
		display: block;
	}
}

h2 + .headline-box-link,
h3 + .headline-box-link {
	margin-top: 1.92857em;
}
.headline-box-link.-quaternary {
	color: inherit;
}
.-align-left > .headline-box-link {
	float: right;
	margin: -0.14286em 0 0 3.14286em;
}
@media screen and (max-width: 599px) {
	.-align-left > .headline-box-link {
		float: none;
		margin: 0 0 1em;
	}
}
.-align-right > .headline-box-link {
	float: left;
	margin: -0.14286em 3.14286em 0 0;
}
@media screen and (max-width: 599px) {
	.-align-right > .headline-box-link {
		float: none;
		margin: 0 0 1em;
	}
}
.-button-inline > .headline-box-link {
	margin: 0 0 0 2.14286em;
}
@media screen and (max-width: 599px) {
	.-button-inline > .headline-box-link {
		margin: 1em 0 0;
	}
}

.projects {
	zoom: 1;
	clear: both;
}
.projects:before {
	content: "";
	display: table;
}
.projects:after {
	content: "";
	display: table;
	clear: both;
}

.projects-item {
	position: relative;
	float: left;
	overflow: hidden;
	border-top: 5px solid #e5e8ee;
	color: inherit;
}
.projects-item:nth-of-type(even) {
	border-top-color: #b2b9c4;
}
.projects-item.-large-col-1-1 {
	width: 100%;
}
.projects-item.-large-col-2-1 {
	width: 50%;
}
.projects-item.-large-col-3-1 {
	width: 33.33333%;
}
.projects-item.-large-col-4-1 {
	width: 25%;
}
.projects-item.-large-col-5-1 {
	width: 20%;
}
.projects-item.-large-col-6-1 {
	width: 16.66667%;
}
.projects-item.-large-col-7-1 {
	width: 14.28571%;
}
.projects-item.-large-col-8-1 {
	width: 12.5%;
}
.projects-item.-large-col-9-1 {
	width: 11.11111%;
}
.projects-item.-large-col-10-1 {
	width: 10%;
}
@media screen and (min-width: 1640px) {
	.projects-item.-verylarge-col-1-1 {
		width: 100%;
	}
	.projects-item.-verylarge-col-2-1 {
		width: 50%;
	}
	.projects-item.-verylarge-col-3-1 {
		width: 33.33333%;
	}
	.projects-item.-verylarge-col-4-1 {
		width: 25%;
	}
	.projects-item.-verylarge-col-5-1 {
		width: 20%;
	}
	.projects-item.-verylarge-col-6-1 {
		width: 16.66667%;
	}
	.projects-item.-verylarge-col-7-1 {
		width: 14.28571%;
	}
	.projects-item.-verylarge-col-8-1 {
		width: 12.5%;
	}
	.projects-item.-verylarge-col-9-1 {
		width: 11.11111%;
	}
	.projects-item.-verylarge-col-10-1 {
		width: 10%;
	}
}
@media screen and (max-width: 900px) {
	.projects-item.-medium-col-1-1 {
		width: 100%;
	}
	.projects-item.-medium-col-2-1 {
		width: 50%;
	}
	.projects-item.-medium-col-3-1 {
		width: 33.33333%;
	}
	.projects-item.-medium-col-4-1 {
		width: 25%;
	}
	.projects-item.-medium-col-5-1 {
		width: 20%;
	}
	.projects-item.-medium-col-6-1 {
		width: 16.66667%;
	}
	.projects-item.-medium-col-7-1 {
		width: 14.28571%;
	}
	.projects-item.-medium-col-8-1 {
		width: 12.5%;
	}
	.projects-item.-medium-col-9-1 {
		width: 11.11111%;
	}
	.projects-item.-medium-col-10-1 {
		width: 10%;
	}
}
@media screen and (max-width: 599px) {
	.projects-item.-small-col-1-1 {
		width: 100%;
	}
	.projects-item.-small-col-2-1 {
		width: 50%;
	}
	.projects-item.-small-col-3-1 {
		width: 33.33333%;
	}
	.projects-item.-small-col-4-1 {
		width: 25%;
	}
	.projects-item.-small-col-5-1 {
		width: 20%;
	}
	.projects-item.-small-col-6-1 {
		width: 16.66667%;
	}
	.projects-item.-small-col-7-1 {
		width: 14.28571%;
	}
	.projects-item.-small-col-8-1 {
		width: 12.5%;
	}
	.projects-item.-small-col-9-1 {
		width: 11.11111%;
	}
	.projects-item.-small-col-10-1 {
		width: 10%;
	}
}
.projects-item h3 {
	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 h3: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 h3,
.projects-item:focus h3 {
	bottom: 0;
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	-o-transition-duration: 0.2s;
	transition-duration: 0.2s;
}

.projects-item-image {
	position: relative;
	display: block;
	overflow: hidden;
}
.projects-item-image img {
	display: block;
	width: 100%;
	height: auto;
}

.projects-item-image-hover {
	position: absolute;
	top: -100%;
	left: 0;
	width: 100%;
	-webkit-transition: top 0.4s ease-out;
	-moz-transition: top 0.4s ease-out;
	-o-transition: top 0.4s ease-out;
	transition: top 0.4s ease-out;
}
.projects-item:hover .projects-item-image-hover,
.projects-item:focus .projects-item-image-hover {
	top: 0;
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	-o-transition-duration: 0.2s;
	transition-duration: 0.2s;
}

.google-map {
	position: relative;
	padding-bottom: 56.25%;
}
.google-map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.info-map {
	position: relative;
	clear: both;
}

.info-map-gmap {
	height: 29.375em;
}
@media screen and (max-width: 599px) {
	.info-map-gmap {
		height: 20em;
		/* Add area for touch scrolling */
		margin-right: 5.55556%;
		margin-left: 5.55556%;
	}
}
.info-map-gmap:hover ~ .info-map-boxes {
	opacity: 0.2;
}
.info-map-gmap.-no-hover:hover ~ .info-map-boxes {
	opacity: 1;
}

.info-map-boxes {
	zoom: 1;
	position: relative;
	margin-top: -7.25em;
	margin-bottom: 2.75em;
	-webkit-transition: opacity 0.2s linear;
	-moz-transition: opacity 0.2s linear;
	-o-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
}
.info-map-boxes:before {
	content: "";
	display: table;
}
.info-map-boxes:after {
	content: "";
	display: table;
	clear: both;
}
@media screen and (max-width: 599px) {
	.info-map-boxes {
		margin-top: 1.375em;
	}
}

.info-map-boxes-item {
	padding: 0.71429em 1.42857em;
	border-radius: 3px;
	font-size: 0.875em;
	color: inherit;
	background: #ffffff;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 0 7px rgba(0, 0, 0, 0.15);
}
.info-map-boxes-item:before {
	float: right;
	margin: 0;
	padding: 0.15152em 0 0.45455em 0.30303em;
	font-size: 4.71429em;
	color: #8570a6;
	background: #ffffff;
}
.info-map-boxes-item:hover,
.info-map-boxes-item:focus {
	text-decoration: none;
}
.info-map-boxes-item h3 {
	margin: 0.57143em 0;
	padding: 0 0 0.21429em;
	border-bottom: 1px solid #e5e8ee;
	color: #8570a6;
	font-size: 1em;
	font-weight: bold;
	text-transform: uppercase;
}
.info-map-boxes-item p {
	margin: 0.57143em 0;
}

.info-map-boxes-item-link {
	color: #184a98;
}

.icon-buttons {
	text-align: center;
	margin: 2.25em 0;
}
.icon-buttons h3 {
	margin: 0;
	font-size: 1.125em;
	font-weight: normal;
}
.icon-buttons ul {
	margin: 1.25em 0;
	padding: 0;
	list-style: none;
}
.icon-buttons li {
	display: inline;
}
.icon-buttons a {
	display: inline-block;
	width: 2.5em;
	height: 2.5em;
	overflow: hidden;
	margin: 0 0.5em;
	border: 2px solid #242424;
	border-radius: 3px;
	color: inherit;
	text-indent: -99em;
	line-height: 0;
}
.icon-buttons a:before {
	content: none;
}
.icon-buttons a:after {
	font: 1.5em/1 "RockSolid Icons";
	content: attr(data-icon);
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	display: block;
	line-height: 1.58375;
}
.icon-buttons a:hover,
.icon-buttons a:focus {
	text-decoration: none;
	background: #242424;
	background: rgba(36, 36, 36, 0.25);
}
.-color-inverted .icon-buttons a {
	border-color: #ffffff;
}
.-color-inverted .icon-buttons a:hover,
.-color-inverted .icon-buttons a:focus {
	background: #ffffff;
	background: rgba(255, 255, 255, 0.25);
}

.icon-links li {
	padding-bottom: 0.4375em;
}
.icon-links a {
	text-decoration: none;
}
.icon-links a:hover span {
	text-decoration: underline;
}

.icon-links-label {
	color: #184a98;
}

.tab-navigation {
	margin: 2.25em 0 0;
	border: 1px solid transparent;
	border-bottom-color: #b2b9c4;
	text-align: center;
}
.tab-navigation ul,
.tab-navigation li {
	margin: 0;
	padding: 0;
}
.tab-navigation ul {
	display: table;
	table-layout: fixed;
	width: 100%;
}
@media screen and (max-width: 599px) {
	.tab-navigation ul {
		display: inline;
	}
}
.tab-navigation li {
	display: table-cell;
	list-style-type: none;
	vertical-align: bottom;
}
@media screen and (max-width: 599px) {
	.tab-navigation li {
		display: block;
	}
}
.tab-navigation li:first-child a {
	margin-left: -1px;
}
.tab-navigation a {
	position: relative;
	display: block;
	margin: -1px -1px 0 0;
	padding: 0.5625em 1.75em;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	outline: none;
	border: 1px solid #b2b9c4;
	border-bottom-width: 0;
	background-color: #ffffff;
}
@media screen and (max-width: 599px) {
	.tab-navigation a {
		margin: 0 -1px;
	}
}
.tab-navigation a:hover,
.tab-navigation a:focus {
	text-decoration: none;
}
.tab-navigation a.is-active {
	z-index: 1;
	box-shadow: 0 10px 0 -1px #ffffff, 0 -3px #184a98, -3px 0 3px -1px rgba(0, 0, 0, 0.1), 3px 0 3px -1px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 599px) {
	.tab-navigation a.is-active {
		border-color: #184a98;
		color: #ffffff;
		background: #184a98;
		box-shadow: 0 1px #184a98;
	}
}
.tab-navigation.-image-tabs {
	border: 0;
}
.tab-navigation.-image-tabs ul,
.tab-navigation.-image-tabs li {
	display: inline;
}
.tab-navigation.-image-tabs a {
	display: inline-block;
	margin: 0;
	padding: 0.5625em 1.75em;
	border: 0;
	font-size: 1em;
	color: inherit;
	background: none;
}
.tab-navigation.-image-tabs a:hover,
.tab-navigation.-image-tabs a:focus {
	color: #184a98;
}
.tab-navigation.-image-tabs a.is-active {
	color: #184a98;
	box-shadow: none;
}
.tab-navigation.-image-tabs a.is-active:after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -0.4375em;
	border: 0.4375em solid transparent;
	border-top-color: #184a98;
	border-bottom: 0;
}
.tab-navigation.-image-tabs a:before {
	display: block;
	margin: 0 auto 0.25em;
	font-size: 3em;
	color: #8570a6;
}
.tab-navigation.-image-tabs a img {
	display: block;
	margin: 0 auto 0.75em;
}

.-columns-1 .tab-navigation-item {
	width: 100%;
}
.-columns-2 .tab-navigation-item {
	width: 50%;
}
.-columns-3 .tab-navigation-item {
	width: 33.33333%;
}
.-columns-4 .tab-navigation-item {
	width: 25%;
}
.-columns-5 .tab-navigation-item {
	width: 20%;
}
.-columns-6 .tab-navigation-item {
	width: 16.66667%;
}
@media screen and (max-width: 599px) {
	.tab-navigation-item.tab-navigation-item {
		width: auto;
	}
}

.tab-start.-has-border {
	margin-top: -1px;
	border: 1px solid #b2b9c4;
	padding-right: 2.5em;
	padding-left: 2.5em;
}

/* ===========================================
 * Modules (Search, FAQ, News, Events, Comments, Sitemap etc.)
 * ======================================== */
.fixed-note {
	position: fixed;
	display: table;
	top: auto;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	min-height: 3.75em;
	padding: 0.75em 1.25em 0.75em 5em;
	border-top: 1px solid #b2b9c4;
	z-index: 99;
	background-color: #ffffff;
	box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 900px) {
	.fixed-note {
		position: relative;
	}
}
@media screen and (max-width: 599px) {
	.fixed-note {
		display: block;
		padding-left: 1.25em;
	}
}
.fixed-note:before {
	position: absolute;
	top: 50%;
	margin-top: -0.5em;
	left: 0.83333em;
	font-size: 2.25em;
	color: #8570a6;
}
@media screen and (max-width: 900px) {
	.fixed-note:before {
		top: 0.66667em;
		margin-top: 0;
	}
}
@media screen and (max-width: 599px) {
	.fixed-note:before {
		position: static;
	}
}
.fixed-note h1,
.fixed-note h2,
.fixed-note h3 {
	font-size: 0.9375em;
	margin: 0.4em 0;
}
.fixed-note p {
	font-size: 0.875em;
	margin: 0.42857em 0;
}
@media screen and (max-width: 599px) {
	.fixed-note p {
		font-size: 1em;
	}
}

.fixed-note-column {
	display: table-cell;
	vertical-align: middle;
	padding: 0 0.625em;
}
.fixed-note-column:last-child {
	text-align: right;
}
@media screen and (max-width: 900px) {
	.fixed-note-column:last-child {
		text-align: left;
	}
}
@media screen and (max-width: 900px) {
	.fixed-note-column {
		display: block;
		margin: 0.75em 0;
		padding: 0;
	}
}

.fixed-note-link,
.fixed-note-button {
	white-space: nowrap;
}

.fixed-note-button {
	margin: 0;
}

.fixed-note-closed {
	position: fixed;
	right: 1.875em;
	bottom: 0;
	z-index: 99;
	padding: 0.5em 0.75em;
	color: #ffffff;
	text-decoration: none;
	background: #37aadf;
	box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1280px) {
	.fixed-note-closed {
		right: 0;
	}
}
@media screen and (max-width: 900px) {
	.fixed-note-closed {
		position: absolute;
		top: 0.75em;
		right: 0.75em;
		bottom: auto;
		padding: 0.25em 0.75em;
		font-size: 0.875em;
	}
}
@media screen and (max-width: 599px) {
	.fixed-note-closed {
		font-size: 1em;
	}
}
.fixed-note-closed:hover,
.fixed-note-closed:focus {
	background-color: #1f90c4;
}
.fixed-note-closed:before {
	font: 100%/1 "RockSolid Icons";
	content: "\e0a6";
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
}
.fixed-note-closed > span {
	display: none;
}

.mod_breadcrumb {
	font-size: 0.8125em;
}
.mod_breadcrumb ul,
.mod_breadcrumb li {
	display: inline;
	margin: 0;
	padding: 0;
}
.mod_breadcrumb li:before {
	content: " \A0 / \A0 ";
}
.mod_breadcrumb li:first-child:before {
	content: none;
}
.mod_breadcrumb a {
	color: inherit;
	text-decoration: underline;
}
.mod_breadcrumb a:hover {
	text-decoration: none;
}

.back a:before,
.previous a:before,
.next a:after {
	font: 0.75em/1 "RockSolid Icons";
	content: "\e018";
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	top: -0.16667em;
	margin-right: 0.5em;
	vertical-align: middle;
}

.next a:after {
	content: "\e019";
	margin-right: 0;
	margin-left: 0.5em;
}

.pagination > p {
	text-align: center;
}
.pagination ul {
	list-style-type: none !important;
	text-align: center;
}
.pagination li {
	display: inline-block;
}
.pagination li a,
.pagination li span {
	padding: 4px 12px;
	background-color: #ffffff;
}
.pagination li .current {
	border-bottom: 1px solid #e5e8ee;
	background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.02));
	background-image: -moz-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.02));
	background-image: -o-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.02));
	background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.02));
}

.news-image-teaser {
	position: relative;
	margin: 2.25em 0;
	padding-left: 12.5%;
}
@media screen and (max-width: 599px) {
	.news-image-teaser {
		padding-left: 0;
	}
}
.news-image-teaser a {
	-webkit-transition: color 0.3s;
	-moz-transition: color 0.3s;
	-o-transition: color 0.3s;
	transition: color 0.3s;
}
.news-image-teaser img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
}
.news-image-teaser h2 {
	display: block;
	margin: 0.75em 0 0.25em;
	padding: 0 0 0.41667em;
	border-bottom: 1px solid #e5e8ee;
	font-size: 1.5em;
	font-weight: bold;
	color: inherit;
}
.news-image-teaser h2 a {
	color: inherit;
}
.news-image-teaser h2 a:hover {
	color: #184a98;
	text-decoration: none;
}
.news-image-teaser p {
	margin: 0.625em 0;
	color: #717c8e;
}
.news-image-teaser .news-image-teaser-info {
	margin: 0 0 0.93333em;
	font-size: 0.9375em;
	color: #717c8e;
}

.news-image-teaser-meta {
	float: left;
	position: relative;
	left: -12.5%;
	width: 9.375%;
	margin-bottom: -6.25em;
	line-height: 1;
	text-align: center;
	border-right: 1px solid #e5e8ee;
}
@media screen and (max-width: 599px) {
	.news-image-teaser-meta {
		position: absolute;
		top: 0;
		left: 0;
		width: 18.75%;
		border-right: 0;
		background: #ffffff;
	}
	.news-image-teaser-meta + h2 {
		padding-top: 3.75em;
	}
}
.news-image-teaser-meta time {
	font-size: 2.125em;
	font-weight: bold;
}
.news-image-teaser-meta b {
	display: block;
	margin: -0.05556em 0 0.44444em;
	font-size: 0.52941em;
	font-weight: inherit;
	color: #717c8e;
	text-transform: uppercase;
}
.news-image-teaser-meta .comment-count {
	display: block;
	padding: 0.25em 0;
	border-top: 1px solid #e5e8ee;
	color: #717c8e;
}
.news-image-teaser-meta .comment-count:before {
	font: 100%/1 "RockSolid Icons";
	content: "\e053";
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	bottom: 0.0625em;
	margin-right: 0.16667em;
	font-size: 0.75em;
}
.news-image-teaser-meta .comment-count:hover {
	color: #184a98;
	text-decoration: none;
}

.news-list-boxed {
	zoom: 1;
	margin: 2.75em 0;
}
.news-list-boxed:before {
	content: "";
	display: table;
}
.news-list-boxed:after {
	content: "";
	display: table;
	clear: both;
}

.news-list-boxed-item {
	padding: 1.07143em;
	border: 1px solid #b2b9c4;
	border-radius: 3px;
	font-size: 0.875em;
	color: #717c8e;
}
.news-list-boxed-item h3 {
	margin: 0.38095em 0 0;
	font-size: 1.5em;
	font-weight: bold;
	line-height: 1.38143;
	color: #717c8e;
}
.news-list-boxed-item h3 a {
	color: inherit;
	-webkit-transition: color 0.3s;
	-moz-transition: color 0.3s;
	-o-transition: color 0.3s;
	transition: color 0.3s;
}
.news-list-boxed-item h3 a:hover {
	color: #184a98;
	text-decoration: none;
}
.news-list-boxed-item p {
	margin: 1em 0;
}
.news-list-boxed-item .news-list-boxed-item-info {
	margin-top: 0.66667em;
	padding-bottom: 0.5em;
	font-size: 0.85714em;
	border-bottom: 1px solid #e5e8ee;
}

.news-list-boxed-item-image {
	position: relative;
	display: block;
	overflow: hidden;
}
.news-list-boxed-item-image.-no-image {
	padding-bottom: 56.81818%;
	background: #717c8e;
}
.news-list-boxed-item-image:hover,
.news-list-boxed-item-image:focus {
	opacity: 0.8;
}
.news-list-boxed-item-image:hover img,
.news-list-boxed-item-image:focus 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);
}
.news-list-boxed-item-image img {
	display: block;
	width: 100%;
	height: auto;
}
.news-list-boxed-item-image time {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	margin: -0.77778em 0 0;
	font-size: 2.57143em;
	font-weight: bold;
	color: #ffffff;
	text-align: center;
	text-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}

.news-boxes {
	zoom: 1;
	margin: 2.75em 0;
}
.news-boxes:before {
	content: "";
	display: table;
}
.news-boxes:after {
	content: "";
	display: table;
	clear: both;
}

.news-boxes-item h3 {
	margin: 0;
	font-size: 1.125em;
	font-weight: bold;
	color: inherit;
}
.news-boxes-item h3 a {
	display: block;
	color: inherit;
	text-decoration: none;
}
.news-boxes-item h3 a:hover,
.news-boxes-item h3 a:focus {
	color: #184a98;
}
.news-boxes-item p {
	margin: 0.5em 0;
}
.news-boxes-item .news-boxes-item-more {
	position: relative;
	margin: -0.9375em 0 0 0;
}
.news-boxes-item .news-boxes-item-more a {
	position: relative;
	top: 0;
	display: block;
	height: 2.0625em;
	color: #ffffff;
	color: transparent;
	text-decoration: none;
	background: #ffffff;
	box-shadow: 0 -7px 10px -7px rgba(0, 0, 0, 0.2), 0 -8px 10px 7px rgba(255, 255, 255, 0.5);
	-webkit-transition: top 0.2s ease-out;
	-moz-transition: top 0.2s ease-out;
	-o-transition: top 0.2s ease-out;
	transition: top 0.2s ease-out;
}
.news-boxes-item .news-boxes-item-more a:after {
	font: 1.5em/1 "RockSolid Icons";
	content: "\e009";
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	position: absolute;
	top: 0;
	left: 50%;
	width: 3.66667em;
	height: 100%;
	margin: 0 0 0 -1.83333em;
	padding: 0.20833em 0 0;
	border: 1px solid #e5e8ee;
	border-top: 0;
	border-radius: 0 0 1px 1px;
	color: #242424;
	text-align: center;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
}
.news-boxes-item .news-boxes-item-more a:hover,
.news-boxes-item .news-boxes-item-more a:focus {
	top: 1.25em;
}
.news-boxes-item .news-boxes-item-more a:hover:before,
.news-boxes-item .news-boxes-item-more a:focus:before {
	content: "";
	position: absolute;
	top: -1.25em;
	left: 0;
	height: 1.25em;
	width: 100%;
}
.news-boxes-item .news-boxes-item-more a:hover:after,
.news-boxes-item .news-boxes-item-more a:focus:after {
	color: #184a98;
}

.news-boxes-item-image {
	display: block;
	overflow: hidden;
}
.news-boxes-item-image.-no-image {
	padding-bottom: 56.81818%;
	background: #717c8e;
}
.news-boxes-item-image:hover,
.news-boxes-item-image:focus {
	opacity: 0.8;
}
.news-boxes-item-image:hover img,
.news-boxes-item-image:focus 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);
}
.news-boxes-item-image img {
	display: block;
	width: 100%;
	height: auto;
}

.news-boxes-item-info {
	margin: 0;
	font-size: 0.875em;
	color: #717c8e;
}

.main-content .mod_calendar {
	margin: 1.5em 0;
}
.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 {
	border-right: 0;
	border-left: 0;
	text-align: center;
}
.mod_calendar th.current:before {
	font: 16px/1 "RockSolid Icons";
	content: "\e037";
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	margin-right: 6px;
}
.mod_calendar th.previous {
	border-right: 0;
}
.mod_calendar th.next {
	border-left: 0;
	text-align: right;
}
.mod_calendar th.label {
	font-size: 0.75em;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.07143em;
}
@media screen and (max-width: 599px) {
	.mod_calendar th.label > span {
		display: none;
	}
}
.mod_calendar td {
	vertical-align: top;
	width: 14.28571%;
}
@media screen and (max-width: 599px) {
	.mod_calendar td {
		text-align: center;
	}
}
.mod_calendar td.today {
	font-weight: bold;
	background-color: #b2b9c4;
}
.mod_calendar .event {
	font-size: 0.75em;
}
.mod_calendar .minicalendar td {
	padding: 0.1875em;
	text-align: center;
}

.mod_eventlist > .header {
	font-weight: bold;
}
.mod_eventlist .event > h2 {
	margin-top: 0;
	font-size: 1.5em;
}

.mod_faqlist ul {
	list-style: none;
	padding-left: 0;
}
.mod_faqlist li:before {
	font: 100%/1 "RockSolid Icons";
	content: "\e0f7";
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	margin-right: 0.5em;
}

.mod_faqpage section {
	margin: 2.25em 0;
	padding-left: 4.5em;
}
.mod_faqpage h3 {
	position: relative;
	margin: 1em 0;
	padding: 0.47619em 0 0.71429em;
	border-bottom: 1px solid #e5e8ee;
	font-size: 1.3125em;
}
.mod_faqpage h3:before,
.mod_faqpage h3 + *:before {
	content: "Q";
	position: absolute;
	top: 0;
	left: -2.57143em;
	width: 1em;
	padding: 0.35714em 0.39286em 0.42857em;
	border-radius: 100%;
	font-size: 1.33333em;
	line-height: 1;
	color: #ffffff;
	text-align: center;
	background: #8570a6;
}
.mod_faqpage h3 + * {
	position: relative;
}
.mod_faqpage h3 + *:before {
	content: "A";
	left: -3.75em;
	font-size: 1em;
}
.mod_faqpage p {
	margin-top: 0.75em;
	margin-bottom: 0.75em;
}
.mod_faqpage .info {
	font-size: 0.8125em;
	color: #717c8e;
}

.mod_faqreader .info {
	font-size: 0.8125em;
	color: #717c8e;
}

.mod_login form p.error {
	float: none;
	width: auto;
	margin: 1.125em 0;
}
.mod_login input {
	width: 80%;
}
@media screen and (max-width: 599px) {
	.mod_login input {
		width: 100%;
	}
}
.mod_login table {
	border: 0;
	box-shadow: none;
}
.mod_login table td {
	border: 0;
	padding: 0.375em 0;
}

.mod_search {
	margin: 1.6875em 0;
}
.mod_search form input {
	vertical-align: middle;
}
.mod_search form input[type="search"] {
	width: 74.375%;
	margin: 0;
	padding-top: 0.75em;
	padding-bottom: 0.75em;
}
.mod_search form input[type="submit"] {
	width: 25%;
	margin: 0 -2% 0 0;
}
@media screen and (max-width: 599px) {
	.mod_search form input[type="submit"] {
		padding-right: 0;
		padding-left: 0;
	}
}
.mod_search .relevance {
	float: right;
	margin-top: 0.71429em;
	font-size: 0.58333em;
}
.mod_search .header {
	padding-bottom: 0.3125em;
	border-bottom: 1px solid #b2b9c4;
	color: #717c8e;
}
.mod_search .highlight {
	padding: 0 0.25em;
	font-weight: bold;
	background: #d0daea;
}
.mod_search .url {
	padding-bottom: 1.42857em;
	border-bottom: 1px dotted #b2b9c4;
	font-size: 0.875em;
	color: #717c8e;
}
.mod_search .url:before {
	font: 100%/1 "RockSolid Icons";
	content: "\e0b5";
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	margin-right: 0.35714em;
}
.mod_search .url .filesize {
	font-size: 0.85714em;
}

.comment_default {
	margin: 1.6875em 0;
	padding: 1.25em 6.25% 0;
	border: 1px solid #b2b9c4;
	border-radius: 3px;
	font-size: 1em;
	background: #ffffff;
	background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.02));
	background-image: -moz-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.02));
	background-image: -o-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.02));
	background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.02));
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.comment_default .info {
	margin-top: 0;
	border-bottom: 1px solid #b2b9c4;
}
.comment_default .reply {
	margin-left: 6.66667%;
}
.comment_default .reply .info {
	font-weight: bold;
}

.ce_comments .form {
	margin-top: 2.25em;
}
.ce_comments .form .widget {
	margin-top: 1.5em;
}
.ce_comments .form .widget:nth-of-type(-n+4) {
	float: left;
	width: 46.66667%;
}
@media screen and (max-width: 599px) {
	.ce_comments .form .widget:nth-of-type(-n+4) {
		width: 100%;
	}
}
.ce_comments .form .widget:nth-of-type(-2n+4) {
	margin-right: -1%;
	margin-left: 6.66667%;
}
@media screen and (max-width: 599px) {
	.ce_comments .form .widget:nth-of-type(-2n+4) {
		margin-right: 0;
		margin-left: 0;
	}
}
.ce_comments .form .widget:nth-of-type(5) {
	clear: both;
	padding-top: 1.5em;
}
.ce_comments .form .widget input {
	width: 100%;
}
.ce_comments .form .widget textarea {
	width: 100%;
}
.ce_comments .form .checkbox_container {
	margin: 0;
	border: 0;
	margin-top: -1.125em;
	padding: 0;
}
.ce_comments h2 + .form,
.ce_comments h2 + .form > form {
	margin-top: 0;
}

.mod_sitemap ul {
	padding-left: 0;
	list-style-type: none;
}
.mod_sitemap ul li:before {
	content: none;
}
.mod_sitemap ul li li {
	padding: 0.1875em 0 0.1875em 1.75em;
	font-size: 1em;
}
.mod_sitemap ul li li.submenu ul {
	margin: 0;
}
.mod_sitemap > ul > li:before {
	font: 100%/1 "RockSolid Icons";
	content: "\e083";
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	margin-right: 0.625em;
	color: #184a98;
}
.mod_sitemap a:before {
	margin-right: 0.5em;
}

.mod_subscribe {
	position: relative;
}
.mod_subscribe input[type=text],
.mod_subscribe input[type=email] {
	width: 75%;
}
@media screen and (max-width: 599px) {
	.mod_subscribe input[type=text],
	.mod_subscribe input[type=email] {
		display: block;
		margin: 0 auto 0.625em;
	}
}
.mod_subscribe .submit {
	vertical-align: top;
	overflow: hidden;
	width: 20%;
	margin-top: 0;
	padding: 0.875em 1.25em 0.625em;
	text-align: center;
}
.mod_subscribe.-centered {
	text-align: center;
}
.centered-wrapper .mod_subscribe input[type=text],
.centered-wrapper .mod_subscribe input[type=email] {
	width: 30%;
	min-width: 16.25em;
}
.centered-wrapper .mod_subscribe .submit {
	width: auto;
}
.sidebar .mod_subscribe input[type=text],
.sidebar .mod_subscribe input[type=email] {
	width: 75%;
}
@media screen and (max-width: 599px) {
	.sidebar .mod_subscribe input[type=text],
	.sidebar .mod_subscribe input[type=email] {
		display: inline;
		margin: 0;
	}
}
.sidebar .mod_subscribe .submit {
	width: 20%;
	padding: 1em 0 0.78571em;
	text-indent: -99em;
	line-height: 0;
}
.sidebar .mod_subscribe .submit:after {
	font: 100%/1 "RockSolid Icons";
	content: "\e0ce";
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	left: 1px;
	display: block;
	font-size: 1.14286em;
}

/* ===========================================
 * Sidebar / Widgets
 * ======================================== */
.sidebar {
	position: relative;
	float: left;
	width: 22.22222%;
	margin: 2.5em 0 0 3.7037%;
	font-size: 0.875em;
}
@media screen and (max-width: 900px) {
	.sidebar {
		float: none;
		clear: both;
		width: auto;
		margin-right: 0;
		margin-left: 0;
	}
}
@media screen and (max-width: 599px) {
	.sidebar {
		margin-right: 5.55556%;
		margin-left: 5.55556%;
	}
}
.tao-sidebar-right .sidebar {
	float: right;
	margin-right: 3.7037%;
	margin-left: 0;
}
@media screen and (max-width: 900px) {
	.tao-sidebar-right .sidebar {
		float: none;
		margin-right: 0;
		margin-left: 0;
	}
}
@media screen and (max-width: 599px) {
	.tao-sidebar-right .sidebar {
		margin-right: 5.55556%;
		margin-left: 5.55556%;
	}
}
.tao-3-columns .sidebar {
	width: 18.51852%;
}
@media screen and (max-width: 900px) {
	.tao-3-columns .sidebar {
		width: auto;
	}
}
.tao-3-columns .sidebar.-right {
	left: 51.85185%;
	margin-right: -18.51852%;
}
@media screen and (max-width: 900px) {
	.tao-3-columns .sidebar.-right {
		left: auto;
		clear: none;
		margin-right: 0;
	}
}
@media screen and (max-width: 599px) {
	.tao-3-columns .sidebar.-right {
		margin-right: 5.55556%;
	}
}
.sidebar h1,
.sidebar h2,
.sidebar h3,
.sidebar h4 {
	margin: 2em 0 0.5em;
	padding: 0 0 0.42857em;
	font-size: 1em;
	font-weight: bold;
	color: #717c8e;
}
.sidebar p,
.sidebar ul,
.sidebar ol,
.sidebar table,
.sidebar blockquote,
.sidebar fieldset,
.sidebar form {
	margin: 1em 0;
}
.sidebar ul,
.sidebar ol {
	padding: 0;
	list-style-type: none;
}
.sidebar > .block {
	margin: 1.25em 0;
}
@media screen and (max-width: 900px) {
	.sidebar > .block {
		float: left;
		width: 41.66667%;
		margin-left: 5.55556%;
	}
}
@media screen and (max-width: 599px) {
	.sidebar > .block {
		float: none;
		width: auto;
		margin-left: 0;
	}
}
.sidebar .ce_youtube-wrapper {
	margin: 0.75em 0;
}
.sidebar .image_container {
	margin: 0.75em 0 0;
}

@media screen and (max-width: 599px) {
	.sub-navigation {
		display: none;
	}
}
.sub-navigation > ul > li > a {
	color: #242424;
}
.sub-navigation ul {
	margin: 0;
	padding: 0;
}
.sub-navigation ul a,
.sub-navigation ul span.trail,
.sub-navigation ul span.active,
.sub-navigation ul span.forward {
	position: relative;
	display: block;
	margin: 0 -0.28571em;
	padding: 0.28571em;
	color: #717c8e;
	-webkit-transition: background-color 0.6s ease-in, color 0.6s ease-in;
	-moz-transition: background-color 0.6s ease-in, color 0.6s ease-in;
	-o-transition: background-color 0.6s ease-in, color 0.6s ease-in;
	transition: background-color 0.6s ease-in, color 0.6s ease-in;
}
.sub-navigation ul a:hover,
.sub-navigation ul span.trail:hover,
.sub-navigation ul span.active:hover,
.sub-navigation ul span.forward:hover {
	border-radius: 3px;
	color: #242424;
	text-decoration: none;
	background-color: #e5e8ee;
	-webkit-transition-duration: 0.05s;
	-moz-transition-duration: 0.05s;
	-o-transition-duration: 0.05s;
	transition-duration: 0.05s;
}
.sub-navigation ul a:before,
.sub-navigation ul span.trail:before,
.sub-navigation ul span.active:before,
.sub-navigation ul span.forward:before {
	margin-right: 0.42857em;
}
.sub-navigation ul a.active,
.sub-navigation ul span.active {
	color: #e6e6e6;
}
.sub-navigation ul a.trail,
.sub-navigation ul span.trail {
	color: #ffffff;
}
.sub-navigation ul ul {
	margin-left: 0.85714em;
}
.sub-navigation li {
	padding: 0.14286em 0.42857em;
	border-top: 1px solid #e5e8ee;
}
.sub-navigation li:before {
	content: none;
}
.sub-navigation li:first-child,
.sub-navigation li li li {
	border: 0;
}
.sub-navigation li li {
	margin-right: -0.42857em;
}

/* ===========================================
 * Footer
 * ======================================== */
.footer-bar {
	padding: 1.71429em 0;
	font-size: 0.875em;
	color: #717c8e;
}
.footer-bar.-color-inverted {
	color: #ffffff;
	background: #353d47;
}
.footer-bar h1,
.footer-bar h2,
.footer-bar h3 {
	margin: 1em 0;
	padding-bottom: 0.21429em;
	border-bottom: 1px solid #b2b9c4;
	font-size: 1em;
	font-weight: bold;
}
.footer-bar ul {
	list-style: none;
	padding: 0;
}
.footer-bar .form-row {
	margin: 1em 0;
}
.footer-bar label {
	display: block;
}
.footer-bar input,
.footer-bar textarea,
.footer-bar select,
.footer-bar fieldset {
	display: block;
	width: 100%;
}
.footer-bar input[type=submit],
.footer-bar button {
	margin-top: 0.375em;
}
.footer-bar textarea {
	height: 6.25em;
}

.icon-text-block {
	position: relative;
	padding-left: 1.875em;
}
.icon-text-block:before {
	position: absolute;
	top: 0.21429em;
	left: 0;
}

.footer-news h1,
.footer-news h2,
.footer-news h3 {
	margin-bottom: 1.14286em;
}

.news-footer-item {
	margin: 0.57143em 0;
	min-height: 2.57143em;
}
.news-footer-item:hover time:before {
	top: 0.4em;
}
.news-footer-item:hover b {
	margin-top: 40px;
}
.news-footer-item time {
	position: relative;
	float: left;
	width: 3.6em;
	height: 3.6em;
	padding: 0.6em 0 0;
	overflow: hidden;
	font-size: 0.71429em;
	font-weight: bold;
	line-height: 1;
	color: #ffffff;
	text-transform: uppercase;
	text-align: center;
	background: #353d47;
}
.news-footer-item time:before {
	font: 2em/1 "RockSolid Icons";
	content: "\e0dd";
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	position: absolute;
	top: -1em;
	left: 0.4em;
	-webkit-transition: top 0.2s ease-out;
	-moz-transition: top 0.2s ease-out;
	-o-transition: top 0.2s ease-out;
	transition: top 0.2s ease-out;
}
.news-footer-item time b {
	display: block;
	font-size: 1.4em;
	font-weight: inherit;
	-webkit-transition: margin 0.2s ease-out;
	-moz-transition: margin 0.2s ease-out;
	-o-transition: margin 0.2s ease-out;
	transition: margin 0.2s ease-out;
}
.-color-inverted .news-footer-item time {
	background: #ffffff;
	color: #242424;
}
.news-footer-item a {
	display: block;
	line-height: 1.28571em;
}
.news-footer-item time + a {
	padding-left: 3.1875em;
}

.footer-navigation {
	float: left;
	margin: 0;
	font-size: 0.875em;
	color: #717c8e;
}
@media screen and (max-width: 599px) {
	.footer-navigation {
		float: none;
		padding: 0.5em 0;
		text-align: center;
	}
}
.footer-navigation ul,
.footer-navigation li {
	display: inline;
	margin: 0;
	padding: 0;
}
.footer-navigation > ul > li:before {
	font-size: 0.75em;
}
.footer-navigation > ul > li a,
.footer-navigation > ul > li span.trail,
.footer-navigation > ul > li span.active,
.footer-navigation > ul > li span.forward {
	position: relative;
	display: inline-block;
	padding: 2.14286em 0;
	margin-right: 3.14286em;
	color: inherit;
}
@media screen and (max-width: 900px) {
	.footer-navigation > ul > li a,
	.footer-navigation > ul > li span.trail,
	.footer-navigation > ul > li span.active,
	.footer-navigation > ul > li span.forward {
		margin-right: 1.57143em;
	}
}
@media screen and (max-width: 599px) {
	.footer-navigation > ul > li a,
	.footer-navigation > ul > li span.trail,
	.footer-navigation > ul > li span.active,
	.footer-navigation > ul > li span.forward {
		margin: 0 0.78571em;
		padding: 0.5em 0;
	}
}
.footer-navigation > ul > li a:before,
.footer-navigation > ul > li span.trail:before,
.footer-navigation > ul > li span.active:before,
.footer-navigation > ul > li span.forward:before {
	content: none;
}
.footer-navigation > ul > li a:after,
.footer-navigation > ul > li span.trail:after,
.footer-navigation > ul > li span.active:after,
.footer-navigation > ul > li span.forward:after {
	content: "";
	position: absolute;
	top: auto;
	bottom: -1px;
	right: 50%;
	left: 50%;
	border-top: 2px solid #ffffff;
	-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;
}
.footer-navigation > ul > li a:hover,
.footer-navigation > ul > li span.trail:hover,
.footer-navigation > ul > li span.active:hover,
.footer-navigation > ul > li span.forward:hover {
	text-decoration: none;
}
.footer-navigation > ul > li a:hover:after,
.footer-navigation > ul > li span.trail:hover:after,
.footer-navigation > ul > li span.active:hover:after,
.footer-navigation > ul > li span.forward:hover:after {
	right: 0;
	left: 0;
	-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;
}

.footer-icon-links {
	float: right;
	margin: 0;
	padding: 0;
	border-right: 1px solid #b2b9c4;
}
@media screen and (max-width: 599px) {
	.footer-icon-links {
		float: none;
		border-right: 0;
		text-align: center;
	}
}
.footer-icon-links li {
	display: inline;
}
.footer-icon-links a {
	float: left;
	position: relative;
	width: 2.75em;
	height: 5.0625em;
	overflow: hidden;
	border-left: 1px solid #b2b9c4;
	line-height: 0;
	/* Fixes Chrome bug */
	letter-spacing: -1em;
	color: #717c8e;
	text-indent: -99em;
	text-decoration: none;
}
@media screen and (max-width: 599px) {
	.footer-icon-links a {
		display: inline-block;
		float: none;
		height: 2.75em;
		border-left: 0;
	}
}
.footer-icon-links a:before,
.footer-icon-links a:after {
	font: 1.375em/1 "RockSolid Icons";
	content: attr(data-icon);
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	padding-top: 0.04545em;
	line-height: 3.68227;
	letter-spacing: 0;
	text-align: center;
	background: #ffffff;
	-webkit-transition: top 0.5s ease-out;
	-moz-transition: top 0.5s ease-out;
	-o-transition: top 0.5s ease-out;
	transition: top 0.5s ease-out;
}
@media screen and (max-width: 599px) {
	.footer-icon-links a:before,
	.footer-icon-links a:after {
		line-height: 2.00045;
	}
}
.footer-icon-links a:after {
	top: 100%;
	color: #ffffff;
	background: transparent;
}
.footer-icon-links a:hover:before,
.footer-icon-links a:hover:after,
.footer-icon-links a:focus:before,
.footer-icon-links a:focus:after {
	-webkit-transition: top 0.2s ease-out;
	-moz-transition: top 0.2s ease-out;
	-o-transition: top 0.2s ease-out;
	transition: top 0.2s ease-out;
}
.footer-icon-links a:hover:before,
.footer-icon-links a:focus:before {
	top: -100%;
}
.footer-icon-links a:hover:after,
.footer-icon-links a:focus:after {
	top: 0;
}

.footer-copyright {
	float: left;
	margin: 0;
	padding: 2.14286em 0;
	font-size: 0.875em;
	color: #717c8e;
}
.footer-copyright .rocksolid-copyright {
	color: inherit;
	opacity: 0.6;
}
@media screen and (max-width: 900px) {
	.footer-copyright {
		float: none;
		padding-bottom: 1em;
	}
}

.footer-links {
	float: right;
	margin: 0;
	padding: 2.14286em 0;
	font-size: 0.875em;
	color: #717c8e;
}
@media screen and (max-width: 900px) {
	.footer-links {
		float: none;
		padding-top: 0;
	}
}
.footer-links ul,
.footer-links li {
	display: inline;
	margin: 0;
	padding: 0;
}
.footer-links li:before {
	content: "";
	display: inline-block;
	width: 1px;
	height: 0.78571em;
	margin: 0 0.57143em 0 0.35714em;
	background: #717c8e;
}
.footer-links li:first-child:before {
	content: none;
}
.footer-links a,
.footer-links span.trail,
.footer-links span.active,
.footer-links span.forward {
	color: inherit;
}

.footer-top-link {
	position: relative;
	display: block;
	width: 2.875em;
	height: 2.875em;
	margin: 0 auto;
	color: #242424;
	white-space: nowrap;
}
.footer-top-link:after {
	font: 1em/1 "RockSolid Icons";
	content: "\e01a";
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding-top: 0.9375em;
	border: 1px solid #b2b9c4;
	border-bottom: 0;
	border-radius: 1px 1px 0 0;
	text-align: center;
	background: #ffffff;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	box-shadow: 0 0 7px rgba(0, 0, 0, 0.15);
}
.footer-top-link > span {
	position: absolute;
	top: 0;
	right: 0;
	margin: 1em 0.71429em 0;
	font-size: 0.875em;
	color: #717c8e;
	opacity: 0;
	pointer-events: none;
	-webkit-transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
	transition: all 0.4s ease-out;
}
.footer-top-link > span + span {
	right: auto;
	left: 0;
}
.footer-top-link:hover,
.footer-top-link:focus {
	/* Fixes IE bug */
	text-decoration: none;
}
.footer-top-link:hover > span,
.footer-top-link:focus > span {
	right: 100%;
	opacity: 1;
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	-o-transition-duration: 0.2s;
	transition-duration: 0.2s;
}
.footer-top-link:hover > span + span,
.footer-top-link:focus > span + span {
	right: auto;
	left: 100%;
}

/* ===========================================
 * Slider
 * ======================================== */
.main-slider {
	height: 600px;
}
@media screen and (max-width: 599px) {
	.main-slider {
		height: auto;
	}
	.main-slider img {
		max-width: 100%;
		height: auto;
	}
}

.rsts-skin-testimonials .testimonial {
	margin: 0;
}
.rsts-skin-testimonials.rsts-main {
	position: relative;
	margin: 1.6875em 0;
	padding: 2em 0 0 0;
}
.rsts-skin-testimonials .rsts-header {
	margin-top: -2em;
}
.rsts-skin-testimonials .rsts-header h1,
.rsts-skin-testimonials .rsts-header h2,
.rsts-skin-testimonials .rsts-header h3,
.rsts-skin-testimonials .rsts-header h4,
.rsts-skin-testimonials .rsts-header h5,
.rsts-skin-testimonials .rsts-header h6 {
	margin: 0 0 1em;
	padding: 0 5em;
	font-size: 0.875em;
	font-weight: bold;
	color: #717c8e;
	text-align: center;
}
.rsts-skin-testimonials .rsts-prev,
.rsts-skin-testimonials .rsts-next {
	position: absolute;
	top: -2.375em;
	right: 1.375em;
	overflow: hidden;
	text-indent: -99em;
	line-height: 0;
}
.rsts-skin-testimonials .rsts-prev:hover,
.rsts-skin-testimonials .rsts-prev:focus,
.rsts-skin-testimonials .rsts-next:hover,
.rsts-skin-testimonials .rsts-next:focus {
	text-decoration: none;
}
.rsts-skin-testimonials .rsts-prev:after,
.rsts-skin-testimonials .rsts-next:after {
	font: 0.875em/1 "RockSolid Icons";
	content: "\e018";
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	display: block;
	padding: 0.57143em;
	color: #b2b9c4;
}
.rsts-skin-testimonials .rsts-prev:hover:after,
.rsts-skin-testimonials .rsts-prev:focus:after,
.rsts-skin-testimonials .rsts-next:hover:after,
.rsts-skin-testimonials .rsts-next:focus:after {
	color: #959fae;
}
.rsts-skin-testimonials .rsts-next {
	right: -0.5625em;
}
.rsts-skin-testimonials .rsts-next:after {
	content: "\e019";
}
.rsts-skin-testimonials .rsts-nav {
	position: absolute;
	left: -4px;
	top: 0;
	line-height: 0;
}
.rsts-skin-testimonials .rsts-nav ul {
	margin: 0;
	padding: 0;
}
.rsts-skin-testimonials .rsts-nav li {
	display: inline;
}
.rsts-skin-testimonials .rsts-nav a {
	float: left;
	width: 18px;
	height: 18px;
	overflow: hidden;
	outline: none;
	padding: 5px;
	text-indent: -99em;
}
.rsts-skin-testimonials .rsts-nav a:after {
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	border: 1px solid #b2b9c4;
	border-radius: 100%;
	background: #b2b9c4;
	background: rgba(178, 185, 196, 0.5);
}
.rsts-skin-testimonials .rsts-nav a:hover:after,
.rsts-skin-testimonials .rsts-nav a.active:after {
	background-color: #b2b9c4;
}
.rsts-skin-testimonials .rsts-nav-prev,
.rsts-skin-testimonials .rsts-nav-next {
	display: none !important;
}

.rsts-skin-tao.rsts-main {
	position: relative;
}
.rsts-skin-tao .rsts-caption {
	position: absolute;
	top: 1.25em;
	left: 1.25em;
	padding: 0.1875em 0.625em;
	color: white;
	border-radius: 3px;
	background-color: #8570a6;
	opacity: 0;
	-webkit-transition: opacity 0.2s;
	-moz-transition: opacity 0.2s;
	-o-transition: opacity 0.2s;
	transition: opacity 0.2s;
}
.rsts-skin-tao .rsts-prev,
.rsts-skin-tao .rsts-next,
.rsts-skin-tao .rsts-video-play,
.rsts-skin-tao .rsts-video-stop {
	position: absolute;
	top: 50%;
	left: 1.25em;
	margin-top: -1.375em;
	border-radius: 3px;
	overflow: hidden;
	text-indent: -99em;
	line-height: 0;
	background-color: #8570a6;
	opacity: 0;
	-webkit-transition: opacity 0.2s;
	-moz-transition: opacity 0.2s;
	-o-transition: opacity 0.2s;
	transition: opacity 0.2s;
}
.rsts-skin-tao .rsts-prev:hover,
.rsts-skin-tao .rsts-prev:focus,
.rsts-skin-tao .rsts-next:hover,
.rsts-skin-tao .rsts-next:focus,
.rsts-skin-tao .rsts-video-play:hover,
.rsts-skin-tao .rsts-video-play:focus,
.rsts-skin-tao .rsts-video-stop:hover,
.rsts-skin-tao .rsts-video-stop:focus {
	text-decoration: none;
}
.sidebar .rsts-skin-tao .rsts-prev,
.sidebar .rsts-skin-tao .rsts-next,
.sidebar .rsts-skin-tao .rsts-video-play,
.sidebar .rsts-skin-tao .rsts-video-stop {
	bottom: 0.375em;
}
.rsts-skin-tao .rsts-prev:after,
.rsts-skin-tao .rsts-next:after,
.rsts-skin-tao .rsts-video-play:after,
.rsts-skin-tao .rsts-video-stop:after {
	font: 0.875em/1 "RockSolid Icons";
	content: "\e018";
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	display: block;
	padding: 1.07143em;
	color: white;
}
.rsts-skin-tao:hover .rsts-prev,
.rsts-skin-tao:hover .rsts-next,
.rsts-skin-tao:hover .rsts-nav,
.rsts-skin-tao:hover .rsts-caption {
	opacity: 0.8;
}
.rsts-skin-tao:hover .rsts-prev:hover,
.rsts-skin-tao:hover .rsts-next:hover,
.rsts-skin-tao:hover .rsts-nav:hover,
.rsts-skin-tao:hover .rsts-caption:hover {
	opacity: 1;
}
.rsts-skin-tao .rsts-next {
	left: auto;
	right: 1.25em;
}
.rsts-skin-tao .rsts-next:after {
	content: "\e019";
}
.tao-fullwidth .tagline .rsts-skin-tao .rsts-prev {
	left: 0;
	border-radius: 0 3px 3px 0;
}
.tao-fullwidth .tagline .rsts-skin-tao .rsts-next {
	right: 0;
	border-radius: 3px 0 0 3px;
}
.rsts-skin-tao .rsts-nav {
	position: absolute;
	left: 0;
	bottom: 12%;
	width: 100%;
	opacity: 0;
}
@media screen and (max-width: 599px) {
	.rsts-skin-tao .rsts-nav {
		bottom: 30px;
	}
}
.rsts-skin-tao .rsts-nav ul {
	/* Setting height to zero to fix click area */
	height: 0;
	margin: 0;
	padding: 0;
	text-align: center;
}
.rsts-skin-tao .rsts-nav li {
	display: inline;
}
.rsts-skin-tao .rsts-nav a {
	display: inline-block;
	outline: none;
	margin: 3px;
	padding: 5px;
}
.rsts-skin-tao .rsts-nav-bullets a {
	overflow: hidden;
	width: 18px;
	height: 18px;
	padding: 6px;
	line-height: 0;
	text-indent: -99em;
}
.rsts-skin-tao .rsts-nav-bullets a:after {
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	border: 2px solid #8570a6;
	border-radius: 100%;
	background-color: white;
}
.rsts-skin-tao .rsts-nav-bullets a:hover:after,
.rsts-skin-tao .rsts-nav-bullets a.active:after {
	background-color: #8570a6;
}
.rsts-skin-tao .rsts-nav-numbers a,
.rsts-skin-tao .rsts-nav-tabs a {
	margin: 5px;
	border: 2px solid #8570a6;
	border-radius: 3px;
	font-size: 0.8125em;
	line-height: 0.61538em;
	color: #717c8e;
	background-color: white;
}
.rsts-skin-tao .rsts-nav-numbers a:hover,
.rsts-skin-tao .rsts-nav-numbers a.active,
.rsts-skin-tao .rsts-nav-tabs a:hover,
.rsts-skin-tao .rsts-nav-tabs a.active {
	color: white;
	background-color: #8570a6;
	text-decoration: none;
}
.rsts-skin-tao .rsts-nav-prev,
.rsts-skin-tao .rsts-nav-next {
	display: none !important;
}
.rsts-skin-tao .rsts-video-play,
.rsts-skin-tao .rsts-video-stop {
	opacity: 1;
}
.rsts-skin-tao .rsts-video-play {
	top: 50%;
	right: auto;
	bottom: auto;
	left: 50%;
	width: 5.25em;
	height: 5.25em;
	margin: -2.625em 0 0 -2.625em;
	border: 3px solid #8570a6;
	border-radius: 100%;
	background-color: rgba(133, 112, 166, 0.6);
	-webkit-transition: background-color 0.3s;
	-moz-transition: background-color 0.3s;
	-o-transition: background-color 0.3s;
	transition: background-color 0.3s;
}
.rsts-skin-tao .rsts-video-play:after {
	content: "\25b6";
	padding: 0;
	margin-left: 0.21429em;
	font-size: 1.75em;
	line-height: 2.78571em;
	text-align: center;
}
.rsts-skin-tao .rsts-video-play:hover {
	background-color: #8570a6;
}
.rsts-skin-tao .rsts-video-stop {
	top: 20px;
	right: 20px;
	left: auto;
	margin-top: 0;
	border-radius: 3px;
}
.rsts-skin-tao .rsts-video-stop:after {
	content: "\d7";
	color: white;
	padding: 0.78571em;
}
.rsts-skin-tao .rsts-video-youtube > .rsts-video-stop {
	top: 30px;
	right: 10px;
	background-color: #1b1b1b;
}
.rsts-skin-tao .rsts-video-youtube > .rsts-video-stop:hover {
	background-color: #cc181e;
}
.rsts-skin-tao .rsts-video-vimeo > .rsts-video-stop {
	top: 10px;
	right: auto;
	left: 10px;
	background-color: #111a19;
}
.rsts-skin-tao .rsts-video-vimeo > .rsts-video-stop:hover {
	background-color: #00adef;
}
.rsts-skin-tao .rsts-video-ipad > .rsts-video-iframe {
	padding-top: 38px;
	background-color: black;
}
.rsts-skin-tao .rsts-video-ipad > .rsts-video-stop {
	top: 1px;
	right: 10px;
	left: auto;
}
.rsts-skin-tao.rsts-video-playing .rsts-nav,
.rsts-skin-tao.rsts-video-playing .rsts-prev,
.rsts-skin-tao.rsts-video-playing .rsts-next {
	display: none;
}
.rsts-skin-tao.rsts-touch .rsts-nav {
	opacity: 1;
}
.rsts-skin-tao .rsts-progress {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 2px;
	background-color: black;
	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;
}
.rsts-skin-tao .rsts-progress div {
	height: 100%;
	background-color: white;
}
.rsts-skin-tao .rsts-progress.rsts-progress-active {
	opacity: 0.3;
}

.rsts-skin-testimonials-centered.rsts-main,
.rsts-skin-partner.rsts-main,
.rsts-skin-mega-dropdown.rsts-main {
	position: relative;
	margin: 2.25em 0;
}
.rsts-skin-testimonials-centered .rsts-view,
.rsts-skin-partner .rsts-view,
.rsts-skin-mega-dropdown .rsts-view {
	padding: 0 3.75em;
}
@media screen and (max-width: 599px) {
	.rsts-skin-testimonials-centered .rsts-view,
	.rsts-skin-partner .rsts-view,
	.rsts-skin-mega-dropdown .rsts-view {
		padding-right: 1.875em;
		padding-left: 1.875em;
	}
}
.rsts-skin-testimonials-centered .rsts-nav ul,
.rsts-skin-partner .rsts-nav ul,
.rsts-skin-mega-dropdown .rsts-nav ul {
	height: 0;
	margin: 0;
}
.rsts-skin-testimonials-centered .rsts-prev,
.rsts-skin-testimonials-centered .rsts-next,
.rsts-skin-partner .rsts-prev,
.rsts-skin-partner .rsts-next,
.rsts-skin-mega-dropdown .rsts-prev,
.rsts-skin-mega-dropdown .rsts-next {
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -1em;
	border: 1px solid #e5e8ee;
	overflow: hidden;
	text-indent: -99em;
	line-height: 0;
	background-color: #ffffff;
}
.rsts-skin-testimonials-centered .rsts-prev:hover,
.rsts-skin-testimonials-centered .rsts-prev:focus,
.rsts-skin-testimonials-centered .rsts-next:hover,
.rsts-skin-testimonials-centered .rsts-next:focus,
.rsts-skin-partner .rsts-prev:hover,
.rsts-skin-partner .rsts-prev:focus,
.rsts-skin-partner .rsts-next:hover,
.rsts-skin-partner .rsts-next:focus,
.rsts-skin-mega-dropdown .rsts-prev:hover,
.rsts-skin-mega-dropdown .rsts-prev:focus,
.rsts-skin-mega-dropdown .rsts-next:hover,
.rsts-skin-mega-dropdown .rsts-next:focus {
	text-decoration: none;
}
.sidebar .rsts-skin-testimonials-centered .rsts-prev,
.sidebar .rsts-skin-testimonials-centered .rsts-next,
.sidebar .rsts-skin-partner .rsts-prev,
.sidebar .rsts-skin-partner .rsts-next,
.sidebar .rsts-skin-mega-dropdown .rsts-prev,
.sidebar .rsts-skin-mega-dropdown .rsts-next {
	bottom: 0.375em;
}
.rsts-skin-testimonials-centered .rsts-prev:after,
.rsts-skin-testimonials-centered .rsts-next:after,
.rsts-skin-partner .rsts-prev:after,
.rsts-skin-partner .rsts-next:after,
.rsts-skin-mega-dropdown .rsts-prev:after,
.rsts-skin-mega-dropdown .rsts-next:after {
	font: 0.875em/1 "RockSolid Icons";
	content: "\e018";
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	display: block;
	padding: 0.57143em;
	color: #717c8e;
}
.rsts-skin-testimonials-centered .rsts-prev:hover:after,
.rsts-skin-testimonials-centered .rsts-prev:focus:after,
.rsts-skin-testimonials-centered .rsts-next:hover:after,
.rsts-skin-testimonials-centered .rsts-next:focus:after,
.rsts-skin-partner .rsts-prev:hover:after,
.rsts-skin-partner .rsts-prev:focus:after,
.rsts-skin-partner .rsts-next:hover:after,
.rsts-skin-partner .rsts-next:focus:after,
.rsts-skin-mega-dropdown .rsts-prev:hover:after,
.rsts-skin-mega-dropdown .rsts-prev:focus:after,
.rsts-skin-mega-dropdown .rsts-next:hover:after,
.rsts-skin-mega-dropdown .rsts-next:focus:after {
	color: #5a6372;
}
.rsts-skin-testimonials-centered .rsts-next,
.rsts-skin-partner .rsts-next,
.rsts-skin-mega-dropdown .rsts-next {
	left: auto;
	right: 0;
}
.rsts-skin-testimonials-centered .rsts-next:after,
.rsts-skin-partner .rsts-next:after,
.rsts-skin-mega-dropdown .rsts-next:after {
	content: "\e019";
}
.rsts-skin-testimonials-centered .rsts-nav-prev,
.rsts-skin-testimonials-centered .rsts-nav-next,
.rsts-skin-partner .rsts-nav-prev,
.rsts-skin-partner .rsts-nav-next,
.rsts-skin-mega-dropdown .rsts-nav-prev,
.rsts-skin-mega-dropdown .rsts-nav-next {
	display: none !important;
}

.rsts-skin-testimonials-centered .rsts-nav,
.rsts-skin-partner .rsts-nav,
.rsts-skin-mega-dropdown .rsts-nav,
.rsts-skin-carousel .rsts-nav {
	line-height: 0;
}
.rsts-skin-testimonials-centered .rsts-nav ul,
.rsts-skin-partner .rsts-nav ul,
.rsts-skin-mega-dropdown .rsts-nav ul,
.rsts-skin-carousel .rsts-nav ul {
	padding: 0;
	text-align: center;
}
.rsts-skin-testimonials-centered .rsts-nav .rsts-nav-item,
.rsts-skin-partner .rsts-nav .rsts-nav-item,
.rsts-skin-mega-dropdown .rsts-nav .rsts-nav-item,
.rsts-skin-carousel .rsts-nav .rsts-nav-item {
	display: inline;
}
.rsts-skin-testimonials-centered .rsts-nav .rsts-nav-item a,
.rsts-skin-partner .rsts-nav .rsts-nav-item a,
.rsts-skin-mega-dropdown .rsts-nav .rsts-nav-item a,
.rsts-skin-carousel .rsts-nav .rsts-nav-item a {
	display: inline-block;
	vertical-align: middle;
	width: 18px;
	height: 18px;
	overflow: hidden;
	outline: none;
	padding: 5px;
	text-indent: -99em;
}
.rsts-skin-testimonials-centered .rsts-nav .rsts-nav-item a:after,
.rsts-skin-partner .rsts-nav .rsts-nav-item a:after,
.rsts-skin-mega-dropdown .rsts-nav .rsts-nav-item a:after,
.rsts-skin-carousel .rsts-nav .rsts-nav-item a:after {
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	border: 1px solid #b2b9c4;
	border-radius: 100%;
	background: #b2b9c4;
	background: rgba(178, 185, 196, 0.5);
}
.rsts-skin-testimonials-centered .rsts-nav .rsts-nav-item a:hover,
.rsts-skin-testimonials-centered .rsts-nav .rsts-nav-item a.active,
.rsts-skin-partner .rsts-nav .rsts-nav-item a:hover,
.rsts-skin-partner .rsts-nav .rsts-nav-item a.active,
.rsts-skin-mega-dropdown .rsts-nav .rsts-nav-item a:hover,
.rsts-skin-mega-dropdown .rsts-nav .rsts-nav-item a.active,
.rsts-skin-carousel .rsts-nav .rsts-nav-item a:hover,
.rsts-skin-carousel .rsts-nav .rsts-nav-item a.active {
	text-decoration: none;
}
.rsts-skin-testimonials-centered .rsts-nav .rsts-nav-item a:hover:after,
.rsts-skin-testimonials-centered .rsts-nav .rsts-nav-item a.active:after,
.rsts-skin-partner .rsts-nav .rsts-nav-item a:hover:after,
.rsts-skin-partner .rsts-nav .rsts-nav-item a.active:after,
.rsts-skin-mega-dropdown .rsts-nav .rsts-nav-item a:hover:after,
.rsts-skin-mega-dropdown .rsts-nav .rsts-nav-item a.active:after,
.rsts-skin-carousel .rsts-nav .rsts-nav-item a:hover:after,
.rsts-skin-carousel .rsts-nav .rsts-nav-item a.active:after {
	background-color: #b2b9c4;
}

.rsts-skin-partner .rsts-nav {
	margin: 1.5em 0;
}

.rsts-skin-mega-dropdown.rsts-main {
	margin: 0;
}
.rsts-skin-mega-dropdown .rsts-view {
	padding: 0;
}
.rsts-skin-mega-dropdown .rsts-prev {
	left: -6%;
	right: auto;
}
.rsts-skin-mega-dropdown .rsts-next {
	left: auto;
	right: -6%;
}
.rsts-skin-mega-dropdown .rsts-nav {
	text-align: center;
}

.rsts-skin-carousel .rsts-nav ul {
	margin: 0.375em 0;
}
.rsts-skin-carousel .rsts-prev,
.rsts-skin-carousel .rsts-next {
	display: none !important;
}
.rsts-skin-carousel .rsts-nav-prev,
.rsts-skin-carousel .rsts-nav-next {
	display: inline;
	margin-right: 1.25em;
}
.rsts-skin-carousel .rsts-nav-prev a,
.rsts-skin-carousel .rsts-nav-next a {
	display: inline-block;
	vertical-align: middle;
	overflow: hidden;
	text-indent: -99em;
	line-height: 0;
}
.rsts-skin-carousel .rsts-nav-prev a:after,
.rsts-skin-carousel .rsts-nav-next a:after {
	font: 1em/1 "RockSolid Icons";
	content: "\e018";
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	display: block;
	padding: 0.5em;
	color: #717c8e;
}
.rsts-skin-carousel .rsts-nav-prev a:hover,
.rsts-skin-carousel .rsts-nav-prev a:focus,
.rsts-skin-carousel .rsts-nav-next a:hover,
.rsts-skin-carousel .rsts-nav-next a:focus {
	text-decoration: none;
}
.rsts-skin-carousel .rsts-nav-prev a:hover:after,
.rsts-skin-carousel .rsts-nav-prev a:focus:after,
.rsts-skin-carousel .rsts-nav-next a:hover:after,
.rsts-skin-carousel .rsts-nav-next a:focus:after {
	color: #5a6372;
}
.rsts-skin-carousel .rsts-nav-next {
	margin-left: 1.25em;
	margin-right: 0;
}
.rsts-skin-carousel .rsts-nav-next a:after {
	content: "\e019";
}

.rsts-skin-light .rsts-nav {
	position: absolute;
	bottom: 20px;
	margin: 0;
	width: 100%;
}


@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 !important}}@media screen and (min-width:0){.mt-xs-1{margin-top:1rem !important}}@media screen and (min-width:0){.mt-xs-2{margin-top:2rem !important}}@media screen and (min-width:0){.mt-xs-3{margin-top:3rem !important}}@media screen and (min-width:0){.mt-xs-4{margin-top:4rem !important}}@media screen and (min-width:0){.mt-xs-5{margin-top:5rem !important}}@media screen and (min-width:0){.mt-xs-6{margin-top:6rem !important}}@media screen and (min-width:0){.mt-xs-7{margin-top:7rem !important}}@media screen and (min-width:0){.mt-xs-8{margin-top:8rem !important}}@media screen and (min-width:0){.mt-xs-9{margin-top:9rem !important}}@media screen and (min-width:0){.mt-xs-10{margin-top:10rem !important}}@media screen and (min-width:34.375rem){.mt-sm-0{margin-top:0rem !important}}@media screen and (min-width:34.375rem){.mt-sm-1{margin-top:1rem !important}}@media screen and (min-width:34.375rem){.mt-sm-2{margin-top:2rem !important}}@media screen and (min-width:34.375rem){.mt-sm-3{margin-top:3rem !important}}@media screen and (min-width:34.375rem){.mt-sm-4{margin-top:4rem !important}}@media screen and (min-width:34.375rem){.mt-sm-5{margin-top:5rem !important}}@media screen and (min-width:34.375rem){.mt-sm-6{margin-top:6rem !important}}@media screen and (min-width:34.375rem){.mt-sm-7{margin-top:7rem !important}}@media screen and (min-width:34.375rem){.mt-sm-8{margin-top:8rem !important}}@media screen and (min-width:34.375rem){.mt-sm-9{margin-top:9rem !important}}@media screen and (min-width:34.375rem){.mt-sm-10{margin-top:10rem !important}}@media screen and (min-width:48rem){.mt-md-0{margin-top:0rem !important}}@media screen and (min-width:48rem){.mt-md-1{margin-top:1rem !important}}@media screen and (min-width:48rem){.mt-md-2{margin-top:2rem !important}}@media screen and (min-width:48rem){.mt-md-3{margin-top:3rem !important}}@media screen and (min-width:48rem){.mt-md-4{margin-top:4rem !important}}@media screen and (min-width:48rem){.mt-md-5{margin-top:5rem !important}}@media screen and (min-width:48rem){.mt-md-6{margin-top:6rem !important}}@media screen and (min-width:48rem){.mt-md-7{margin-top:7rem !important}}@media screen and (min-width:48rem){.mt-md-8{margin-top:8rem !important}}@media screen and (min-width:48rem){.mt-md-9{margin-top:9rem !important}}@media screen and (min-width:48rem){.mt-md-10{margin-top:10rem !important}}@media screen and (min-width:58.75rem){.mt-lg-0{margin-top:0rem !important}}@media screen and (min-width:58.75rem){.mt-lg-1{margin-top:1rem !important}}@media screen and (min-width:58.75rem){.mt-lg-2{margin-top:2rem !important}}@media screen and (min-width:58.75rem){.mt-lg-3{margin-top:3rem !important}}@media screen and (min-width:58.75rem){.mt-lg-4{margin-top:4rem !important}}@media screen and (min-width:58.75rem){.mt-lg-5{margin-top:5rem !important}}@media screen and (min-width:58.75rem){.mt-lg-6{margin-top:6rem !important}}@media screen and (min-width:58.75rem){.mt-lg-7{margin-top:7rem !important}}@media screen and (min-width:58.75rem){.mt-lg-8{margin-top:8rem !important}}@media screen and (min-width:58.75rem){.mt-lg-9{margin-top:9rem !important}}@media screen and (min-width:58.75rem){.mt-lg-10{margin-top:10rem !important}}@media screen and (min-width:68.75rem){.mt-xl-0{margin-top:0rem !important}}@media screen and (min-width:68.75rem){.mt-xl-1{margin-top:1rem !important}}@media screen and (min-width:68.75rem){.mt-xl-2{margin-top:2rem !important}}@media screen and (min-width:68.75rem){.mt-xl-3{margin-top:3rem !important}}@media screen and (min-width:68.75rem){.mt-xl-4{margin-top:4rem !important}}@media screen and (min-width:68.75rem){.mt-xl-5{margin-top:5rem !important}}@media screen and (min-width:68.75rem){.mt-xl-6{margin-top:6rem !important}}@media screen and (min-width:68.75rem){.mt-xl-7{margin-top:7rem !important}}@media screen and (min-width:68.75rem){.mt-xl-8{margin-top:8rem !important}}@media screen and (min-width:68.75rem){.mt-xl-9{margin-top:9rem !important}}@media screen and (min-width:68.75rem){.mt-xl-10{margin-top:10rem !important}}@media screen and (min-width:0){.mr-xs-0{margin-right:0rem !important}}@media screen and (min-width:0){.mr-xs-1{margin-right:1rem !important}}@media screen and (min-width:0){.mr-xs-2{margin-right:2rem !important}}@media screen and (min-width:0){.mr-xs-3{margin-right:3rem !important}}@media screen and (min-width:0){.mr-xs-4{margin-right:4rem !important}}@media screen and (min-width:0){.mr-xs-5{margin-right:5rem !important}}@media screen and (min-width:0){.mr-xs-6{margin-right:6rem !important}}@media screen and (min-width:0){.mr-xs-7{margin-right:7rem !important}}@media screen and (min-width:0){.mr-xs-8{margin-right:8rem !important}}@media screen and (min-width:0){.mr-xs-9{margin-right:9rem !important}}@media screen and (min-width:0){.mr-xs-10{margin-right:10rem !important}}@media screen and (min-width:34.375rem){.mr-sm-0{margin-right:0rem !important}}@media screen and (min-width:34.375rem){.mr-sm-1{margin-right:1rem !important}}@media screen and (min-width:34.375rem){.mr-sm-2{margin-right:2rem !important}}@media screen and (min-width:34.375rem){.mr-sm-3{margin-right:3rem !important}}@media screen and (min-width:34.375rem){.mr-sm-4{margin-right:4rem !important}}@media screen and (min-width:34.375rem){.mr-sm-5{margin-right:5rem !important}}@media screen and (min-width:34.375rem){.mr-sm-6{margin-right:6rem !important}}@media screen and (min-width:34.375rem){.mr-sm-7{margin-right:7rem !important}}@media screen and (min-width:34.375rem){.mr-sm-8{margin-right:8rem !important}}@media screen and (min-width:34.375rem){.mr-sm-9{margin-right:9rem !important}}@media screen and (min-width:34.375rem){.mr-sm-10{margin-right:10rem !important}}@media screen and (min-width:48rem){.mr-md-0{margin-right:0rem !important}}@media screen and (min-width:48rem){.mr-md-1{margin-right:1rem !important}}@media screen and (min-width:48rem){.mr-md-2{margin-right:2rem !important}}@media screen and (min-width:48rem){.mr-md-3{margin-right:3rem !important}}@media screen and (min-width:48rem){.mr-md-4{margin-right:4rem !important}}@media screen and (min-width:48rem){.mr-md-5{margin-right:5rem !important}}@media screen and (min-width:48rem){.mr-md-6{margin-right:6rem !important}}@media screen and (min-width:48rem){.mr-md-7{margin-right:7rem !important}}@media screen and (min-width:48rem){.mr-md-8{margin-right:8rem !important}}@media screen and (min-width:48rem){.mr-md-9{margin-right:9rem !important}}@media screen and (min-width:48rem){.mr-md-10{margin-right:10rem !important}}@media screen and (min-width:58.75rem){.mr-lg-0{margin-right:0rem !important}}@media screen and (min-width:58.75rem){.mr-lg-1{margin-right:1rem !important}}@media screen and (min-width:58.75rem){.mr-lg-2{margin-right:2rem !important}}@media screen and (min-width:58.75rem){.mr-lg-3{margin-right:3rem !important}}@media screen and (min-width:58.75rem){.mr-lg-4{margin-right:4rem !important}}@media screen and (min-width:58.75rem){.mr-lg-5{margin-right:5rem !important}}@media screen and (min-width:58.75rem){.mr-lg-6{margin-right:6rem !important}}@media screen and (min-width:58.75rem){.mr-lg-7{margin-right:7rem !important}}@media screen and (min-width:58.75rem){.mr-lg-8{margin-right:8rem !important}}@media screen and (min-width:58.75rem){.mr-lg-9{margin-right:9rem !important}}@media screen and (min-width:58.75rem){.mr-lg-10{margin-right:10rem !important}}@media screen and (min-width:68.75rem){.mr-xl-0{margin-right:0rem !important}}@media screen and (min-width:68.75rem){.mr-xl-1{margin-right:1rem !important}}@media screen and (min-width:68.75rem){.mr-xl-2{margin-right:2rem !important}}@media screen and (min-width:68.75rem){.mr-xl-3{margin-right:3rem !important}}@media screen and (min-width:68.75rem){.mr-xl-4{margin-right:4rem !important}}@media screen and (min-width:68.75rem){.mr-xl-5{margin-right:5rem !important}}@media screen and (min-width:68.75rem){.mr-xl-6{margin-right:6rem !important}}@media screen and (min-width:68.75rem){.mr-xl-7{margin-right:7rem !important}}@media screen and (min-width:68.75rem){.mr-xl-8{margin-right:8rem !important}}@media screen and (min-width:68.75rem){.mr-xl-9{margin-right:9rem !important}}@media screen and (min-width:68.75rem){.mr-xl-10{margin-right:10rem !important}}@media screen and (min-width:0){.mb-xs-0{margin-bottom:0rem !important}}@media screen and (min-width:0){.mb-xs-1{margin-bottom:1rem !important}}@media screen and (min-width:0){.mb-xs-2{margin-bottom:2rem !important}}@media screen and (min-width:0){.mb-xs-3{margin-bottom:3rem !important}}@media screen and (min-width:0){.mb-xs-4{margin-bottom:4rem !important}}@media screen and (min-width:0){.mb-xs-5{margin-bottom:5rem !important}}@media screen and (min-width:0){.mb-xs-6{margin-bottom:6rem !important}}@media screen and (min-width:0){.mb-xs-7{margin-bottom:7rem !important}}@media screen and (min-width:0){.mb-xs-8{margin-bottom:8rem !important}}@media screen and (min-width:0){.mb-xs-9{margin-bottom:9rem !important}}@media screen and (min-width:0){.mb-xs-10{margin-bottom:10rem !important}}@media screen and (min-width:34.375rem){.mb-sm-0{margin-bottom:0rem !important}}@media screen and (min-width:34.375rem){.mb-sm-1{margin-bottom:1rem !important}}@media screen and (min-width:34.375rem){.mb-sm-2{margin-bottom:2rem !important}}@media screen and (min-width:34.375rem){.mb-sm-3{margin-bottom:3rem !important}}@media screen and (min-width:34.375rem){.mb-sm-4{margin-bottom:4rem !important}}@media screen and (min-width:34.375rem){.mb-sm-5{margin-bottom:5rem !important}}@media screen and (min-width:34.375rem){.mb-sm-6{margin-bottom:6rem !important}}@media screen and (min-width:34.375rem){.mb-sm-7{margin-bottom:7rem !important}}@media screen and (min-width:34.375rem){.mb-sm-8{margin-bottom:8rem !important}}@media screen and (min-width:34.375rem){.mb-sm-9{margin-bottom:9rem !important}}@media screen and (min-width:34.375rem){.mb-sm-10{margin-bottom:10rem !important}}@media screen and (min-width:48rem){.mb-md-0{margin-bottom:0rem !important}}@media screen and (min-width:48rem){.mb-md-1{margin-bottom:1rem !important}}@media screen and (min-width:48rem){.mb-md-2{margin-bottom:2rem !important}}@media screen and (min-width:48rem){.mb-md-3{margin-bottom:3rem !important}}@media screen and (min-width:48rem){.mb-md-4{margin-bottom:4rem !important}}@media screen and (min-width:48rem){.mb-md-5{margin-bottom:5rem !important}}@media screen and (min-width:48rem){.mb-md-6{margin-bottom:6rem !important}}@media screen and (min-width:48rem){.mb-md-7{margin-bottom:7rem !important}}@media screen and (min-width:48rem){.mb-md-8{margin-bottom:8rem !important}}@media screen and (min-width:48rem){.mb-md-9{margin-bottom:9rem !important}}@media screen and (min-width:48rem){.mb-md-10{margin-bottom:10rem !important}}@media screen and (min-width:58.75rem){.mb-lg-0{margin-bottom:0rem !important}}@media screen and (min-width:58.75rem){.mb-lg-1{margin-bottom:1rem !important}}@media screen and (min-width:58.75rem){.mb-lg-2{margin-bottom:2rem !important}}@media screen and (min-width:58.75rem){.mb-lg-3{margin-bottom:3rem !important}}@media screen and (min-width:58.75rem){.mb-lg-4{margin-bottom:4rem !important}}@media screen and (min-width:58.75rem){.mb-lg-5{margin-bottom:5rem !important}}@media screen and (min-width:58.75rem){.mb-lg-6{margin-bottom:6rem !important}}@media screen and (min-width:58.75rem){.mb-lg-7{margin-bottom:7rem !important}}@media screen and (min-width:58.75rem){.mb-lg-8{margin-bottom:8rem !important}}@media screen and (min-width:58.75rem){.mb-lg-9{margin-bottom:9rem !important}}@media screen and (min-width:58.75rem){.mb-lg-10{margin-bottom:10rem !important}}@media screen and (min-width:68.75rem){.mb-xl-0{margin-bottom:0rem !important}}@media screen and (min-width:68.75rem){.mb-xl-1{margin-bottom:1rem !important}}@media screen and (min-width:68.75rem){.mb-xl-2{margin-bottom:2rem !important}}@media screen and (min-width:68.75rem){.mb-xl-3{margin-bottom:3rem !important}}@media screen and (min-width:68.75rem){.mb-xl-4{margin-bottom:4rem !important}}@media screen and (min-width:68.75rem){.mb-xl-5{margin-bottom:5rem !important}}@media screen and (min-width:68.75rem){.mb-xl-6{margin-bottom:6rem !important}}@media screen and (min-width:68.75rem){.mb-xl-7{margin-bottom:7rem !important}}@media screen and (min-width:68.75rem){.mb-xl-8{margin-bottom:8rem !important}}@media screen and (min-width:68.75rem){.mb-xl-9{margin-bottom:9rem !important}}@media screen and (min-width:68.75rem){.mb-xl-10{margin-bottom:10rem !important}}@media screen and (min-width:0){.ml-xs-0{margin-left:0rem !important}}@media screen and (min-width:0){.ml-xs-1{margin-left:1rem !important}}@media screen and (min-width:0){.ml-xs-2{margin-left:2rem !important}}@media screen and (min-width:0){.ml-xs-3{margin-left:3rem !important}}@media screen and (min-width:0){.ml-xs-4{margin-left:4rem !important}}@media screen and (min-width:0){.ml-xs-5{margin-left:5rem !important}}@media screen and (min-width:0){.ml-xs-6{margin-left:6rem !important}}@media screen and (min-width:0){.ml-xs-7{margin-left:7rem !important}}@media screen and (min-width:0){.ml-xs-8{margin-left:8rem !important}}@media screen and (min-width:0){.ml-xs-9{margin-left:9rem !important}}@media screen and (min-width:0){.ml-xs-10{margin-left:10rem !important}}@media screen and (min-width:34.375rem){.ml-sm-0{margin-left:0rem !important}}@media screen and (min-width:34.375rem){.ml-sm-1{margin-left:1rem !important}}@media screen and (min-width:34.375rem){.ml-sm-2{margin-left:2rem !important}}@media screen and (min-width:34.375rem){.ml-sm-3{margin-left:3rem !important}}@media screen and (min-width:34.375rem){.ml-sm-4{margin-left:4rem !important}}@media screen and (min-width:34.375rem){.ml-sm-5{margin-left:5rem !important}}@media screen and (min-width:34.375rem){.ml-sm-6{margin-left:6rem !important}}@media screen and (min-width:34.375rem){.ml-sm-7{margin-left:7rem !important}}@media screen and (min-width:34.375rem){.ml-sm-8{margin-left:8rem !important}}@media screen and (min-width:34.375rem){.ml-sm-9{margin-left:9rem !important}}@media screen and (min-width:34.375rem){.ml-sm-10{margin-left:10rem !important}}@media screen and (min-width:48rem){.ml-md-0{margin-left:0rem !important}}@media screen and (min-width:48rem){.ml-md-1{margin-left:1rem !important}}@media screen and (min-width:48rem){.ml-md-2{margin-left:2rem !important}}@media screen and (min-width:48rem){.ml-md-3{margin-left:3rem !important}}@media screen and (min-width:48rem){.ml-md-4{margin-left:4rem !important}}@media screen and (min-width:48rem){.ml-md-5{margin-left:5rem !important}}@media screen and (min-width:48rem){.ml-md-6{margin-left:6rem !important}}@media screen and (min-width:48rem){.ml-md-7{margin-left:7rem !important}}@media screen and (min-width:48rem){.ml-md-8{margin-left:8rem !important}}@media screen and (min-width:48rem){.ml-md-9{margin-left:9rem !important}}@media screen and (min-width:48rem){.ml-md-10{margin-left:10rem !important}}@media screen and (min-width:58.75rem){.ml-lg-0{margin-left:0rem !important}}@media screen and (min-width:58.75rem){.ml-lg-1{margin-left:1rem !important}}@media screen and (min-width:58.75rem){.ml-lg-2{margin-left:2rem !important}}@media screen and (min-width:58.75rem){.ml-lg-3{margin-left:3rem !important}}@media screen and (min-width:58.75rem){.ml-lg-4{margin-left:4rem !important}}@media screen and (min-width:58.75rem){.ml-lg-5{margin-left:5rem !important}}@media screen and (min-width:58.75rem){.ml-lg-6{margin-left:6rem !important}}@media screen and (min-width:58.75rem){.ml-lg-7{margin-left:7rem !important}}@media screen and (min-width:58.75rem){.ml-lg-8{margin-left:8rem !important}}@media screen and (min-width:58.75rem){.ml-lg-9{margin-left:9rem !important}}@media screen and (min-width:58.75rem){.ml-lg-10{margin-left:10rem !important}}@media screen and (min-width:68.75rem){.ml-xl-0{margin-left:0rem !important}}@media screen and (min-width:68.75rem){.ml-xl-1{margin-left:1rem !important}}@media screen and (min-width:68.75rem){.ml-xl-2{margin-left:2rem !important}}@media screen and (min-width:68.75rem){.ml-xl-3{margin-left:3rem !important}}@media screen and (min-width:68.75rem){.ml-xl-4{margin-left:4rem !important}}@media screen and (min-width:68.75rem){.ml-xl-5{margin-left:5rem !important}}@media screen and (min-width:68.75rem){.ml-xl-6{margin-left:6rem !important}}@media screen and (min-width:68.75rem){.ml-xl-7{margin-left:7rem !important}}@media screen and (min-width:68.75rem){.ml-xl-8{margin-left:8rem !important}}@media screen and (min-width:68.75rem){.ml-xl-9{margin-left:9rem !important}}@media screen and (min-width:68.75rem){.ml-xl-10{margin-left:10rem !important}}@media screen and (min-width:0){.m-xs-0{margin:0rem !important}}@media screen and (min-width:0){.m-xs-1{margin:1rem !important}}@media screen and (min-width:0){.m-xs-2{margin:2rem !important}}@media screen and (min-width:0){.m-xs-3{margin:3rem !important}}@media screen and (min-width:0){.m-xs-4{margin:4rem !important}}@media screen and (min-width:0){.m-xs-5{margin:5rem !important}}@media screen and (min-width:0){.m-xs-6{margin:6rem !important}}@media screen and (min-width:0){.m-xs-7{margin:7rem !important}}@media screen and (min-width:0){.m-xs-8{margin:8rem !important}}@media screen and (min-width:0){.m-xs-9{margin:9rem !important}}@media screen and (min-width:0){.m-xs-10{margin:10rem !important}}@media screen and (min-width:34.375rem){.m-sm-0{margin:0rem !important}}@media screen and (min-width:34.375rem){.m-sm-1{margin:1rem !important}}@media screen and (min-width:34.375rem){.m-sm-2{margin:2rem !important}}@media screen and (min-width:34.375rem){.m-sm-3{margin:3rem !important}}@media screen and (min-width:34.375rem){.m-sm-4{margin:4rem !important}}@media screen and (min-width:34.375rem){.m-sm-5{margin:5rem !important}}@media screen and (min-width:34.375rem){.m-sm-6{margin:6rem !important}}@media screen and (min-width:34.375rem){.m-sm-7{margin:7rem !important}}@media screen and (min-width:34.375rem){.m-sm-8{margin:8rem !important}}@media screen and (min-width:34.375rem){.m-sm-9{margin:9rem !important}}@media screen and (min-width:34.375rem){.m-sm-10{margin:10rem !important}}@media screen and (min-width:48rem){.m-md-0{margin:0rem !important}}@media screen and (min-width:48rem){.m-md-1{margin:1rem !important}}@media screen and (min-width:48rem){.m-md-2{margin:2rem !important}}@media screen and (min-width:48rem){.m-md-3{margin:3rem !important}}@media screen and (min-width:48rem){.m-md-4{margin:4rem !important}}@media screen and (min-width:48rem){.m-md-5{margin:5rem !important}}@media screen and (min-width:48rem){.m-md-6{margin:6rem !important}}@media screen and (min-width:48rem){.m-md-7{margin:7rem !important}}@media screen and (min-width:48rem){.m-md-8{margin:8rem !important}}@media screen and (min-width:48rem){.m-md-9{margin:9rem !important}}@media screen and (min-width:48rem){.m-md-10{margin:10rem !important}}@media screen and (min-width:58.75rem){.m-lg-0{margin:0rem !important}}@media screen and (min-width:58.75rem){.m-lg-1{margin:1rem !important}}@media screen and (min-width:58.75rem){.m-lg-2{margin:2rem !important}}@media screen and (min-width:58.75rem){.m-lg-3{margin:3rem !important}}@media screen and (min-width:58.75rem){.m-lg-4{margin:4rem !important}}@media screen and (min-width:58.75rem){.m-lg-5{margin:5rem !important}}@media screen and (min-width:58.75rem){.m-lg-6{margin:6rem !important}}@media screen and (min-width:58.75rem){.m-lg-7{margin:7rem !important}}@media screen and (min-width:58.75rem){.m-lg-8{margin:8rem !important}}@media screen and (min-width:58.75rem){.m-lg-9{margin:9rem !important}}@media screen and (min-width:58.75rem){.m-lg-10{margin:10rem !important}}@media screen and (min-width:68.75rem){.m-xl-0{margin:0rem !important}}@media screen and (min-width:68.75rem){.m-xl-1{margin:1rem !important}}@media screen and (min-width:68.75rem){.m-xl-2{margin:2rem !important}}@media screen and (min-width:68.75rem){.m-xl-3{margin:3rem !important}}@media screen and (min-width:68.75rem){.m-xl-4{margin:4rem !important}}@media screen and (min-width:68.75rem){.m-xl-5{margin:5rem !important}}@media screen and (min-width:68.75rem){.m-xl-6{margin:6rem !important}}@media screen and (min-width:68.75rem){.m-xl-7{margin:7rem !important}}@media screen and (min-width:68.75rem){.m-xl-8{margin:8rem !important}}@media screen and (min-width:68.75rem){.m-xl-9{margin:9rem !important}}@media screen and (min-width:68.75rem){.m-xl-10{margin:10rem !important}}@media screen and (min-width:0){.pt-xs-0{padding-top:0rem !important}}@media screen and (min-width:0){.pt-xs-1{padding-top:1rem !important}}@media screen and (min-width:0){.pt-xs-2{padding-top:2rem !important}}@media screen and (min-width:0){.pt-xs-3{padding-top:3rem !important}}@media screen and (min-width:0){.pt-xs-4{padding-top:4rem !important}}@media screen and (min-width:0){.pt-xs-5{padding-top:5rem !important}}@media screen and (min-width:0){.pt-xs-6{padding-top:6rem !important}}@media screen and (min-width:0){.pt-xs-7{padding-top:7rem !important}}@media screen and (min-width:0){.pt-xs-8{padding-top:8rem !important}}@media screen and (min-width:0){.pt-xs-9{padding-top:9rem !important}}@media screen and (min-width:0){.pt-xs-10{padding-top:10rem !important}}@media screen and (min-width:34.375rem){.pt-sm-0{padding-top:0rem !important}}@media screen and (min-width:34.375rem){.pt-sm-1{padding-top:1rem !important}}@media screen and (min-width:34.375rem){.pt-sm-2{padding-top:2rem !important}}@media screen and (min-width:34.375rem){.pt-sm-3{padding-top:3rem !important}}@media screen and (min-width:34.375rem){.pt-sm-4{padding-top:4rem !important}}@media screen and (min-width:34.375rem){.pt-sm-5{padding-top:5rem !important}}@media screen and (min-width:34.375rem){.pt-sm-6{padding-top:6rem !important}}@media screen and (min-width:34.375rem){.pt-sm-7{padding-top:7rem !important}}@media screen and (min-width:34.375rem){.pt-sm-8{padding-top:8rem !important}}@media screen and (min-width:34.375rem){.pt-sm-9{padding-top:9rem !important}}@media screen and (min-width:34.375rem){.pt-sm-10{padding-top:10rem !important}}@media screen and (min-width:48rem){.pt-md-0{padding-top:0rem !important}}@media screen and (min-width:48rem){.pt-md-1{padding-top:1rem !important}}@media screen and (min-width:48rem){.pt-md-2{padding-top:2rem !important}}@media screen and (min-width:48rem){.pt-md-3{padding-top:3rem !important}}@media screen and (min-width:48rem){.pt-md-4{padding-top:4rem !important}}@media screen and (min-width:48rem){.pt-md-5{padding-top:5rem !important}}@media screen and (min-width:48rem){.pt-md-6{padding-top:6rem !important}}@media screen and (min-width:48rem){.pt-md-7{padding-top:7rem !important}}@media screen and (min-width:48rem){.pt-md-8{padding-top:8rem !important}}@media screen and (min-width:48rem){.pt-md-9{padding-top:9rem !important}}@media screen and (min-width:48rem){.pt-md-10{padding-top:10rem !important}}@media screen and (min-width:58.75rem){.pt-lg-0{padding-top:0rem !important}}@media screen and (min-width:58.75rem){.pt-lg-1{padding-top:1rem !important}}@media screen and (min-width:58.75rem){.pt-lg-2{padding-top:2rem !important}}@media screen and (min-width:58.75rem){.pt-lg-3{padding-top:3rem !important}}@media screen and (min-width:58.75rem){.pt-lg-4{padding-top:4rem !important}}@media screen and (min-width:58.75rem){.pt-lg-5{padding-top:5rem !important}}@media screen and (min-width:58.75rem){.pt-lg-6{padding-top:6rem !important}}@media screen and (min-width:58.75rem){.pt-lg-7{padding-top:7rem !important}}@media screen and (min-width:58.75rem){.pt-lg-8{padding-top:8rem !important}}@media screen and (min-width:58.75rem){.pt-lg-9{padding-top:9rem !important}}@media screen and (min-width:58.75rem){.pt-lg-10{padding-top:10rem !important}}@media screen and (min-width:68.75rem){.pt-xl-0{padding-top:0rem !important}}@media screen and (min-width:68.75rem){.pt-xl-1{padding-top:1rem !important}}@media screen and (min-width:68.75rem){.pt-xl-2{padding-top:2rem !important}}@media screen and (min-width:68.75rem){.pt-xl-3{padding-top:3rem !important}}@media screen and (min-width:68.75rem){.pt-xl-4{padding-top:4rem !important}}@media screen and (min-width:68.75rem){.pt-xl-5{padding-top:5rem !important}}@media screen and (min-width:68.75rem){.pt-xl-6{padding-top:6rem !important}}@media screen and (min-width:68.75rem){.pt-xl-7{padding-top:7rem !important}}@media screen and (min-width:68.75rem){.pt-xl-8{padding-top:8rem !important}}@media screen and (min-width:68.75rem){.pt-xl-9{padding-top:9rem !important}}@media screen and (min-width:68.75rem){.pt-xl-10{padding-top:10rem !important}}@media screen and (min-width:0){.pr-xs-0{padding-right:0rem !important}}@media screen and (min-width:0){.pr-xs-1{padding-right:1rem !important}}@media screen and (min-width:0){.pr-xs-2{padding-right:2rem !important}}@media screen and (min-width:0){.pr-xs-3{padding-right:3rem !important}}@media screen and (min-width:0){.pr-xs-4{padding-right:4rem !important}}@media screen and (min-width:0){.pr-xs-5{padding-right:5rem !important}}@media screen and (min-width:0){.pr-xs-6{padding-right:6rem !important}}@media screen and (min-width:0){.pr-xs-7{padding-right:7rem !important}}@media screen and (min-width:0){.pr-xs-8{padding-right:8rem !important}}@media screen and (min-width:0){.pr-xs-9{padding-right:9rem !important}}@media screen and (min-width:0){.pr-xs-10{padding-right:10rem !important}}@media screen and (min-width:34.375rem){.pr-sm-0{padding-right:0rem !important}}@media screen and (min-width:34.375rem){.pr-sm-1{padding-right:1rem !important}}@media screen and (min-width:34.375rem){.pr-sm-2{padding-right:2rem !important}}@media screen and (min-width:34.375rem){.pr-sm-3{padding-right:3rem !important}}@media screen and (min-width:34.375rem){.pr-sm-4{padding-right:4rem !important}}@media screen and (min-width:34.375rem){.pr-sm-5{padding-right:5rem !important}}@media screen and (min-width:34.375rem){.pr-sm-6{padding-right:6rem !important}}@media screen and (min-width:34.375rem){.pr-sm-7{padding-right:7rem !important}}@media screen and (min-width:34.375rem){.pr-sm-8{padding-right:8rem !important}}@media screen and (min-width:34.375rem){.pr-sm-9{padding-right:9rem !important}}@media screen and (min-width:34.375rem){.pr-sm-10{padding-right:10rem !important}}@media screen and (min-width:48rem){.pr-md-0{padding-right:0rem !important}}@media screen and (min-width:48rem){.pr-md-1{padding-right:1rem !important}}@media screen and (min-width:48rem){.pr-md-2{padding-right:2rem !important}}@media screen and (min-width:48rem){.pr-md-3{padding-right:3rem !important}}@media screen and (min-width:48rem){.pr-md-4{padding-right:4rem !important}}@media screen and (min-width:48rem){.pr-md-5{padding-right:5rem !important}}@media screen and (min-width:48rem){.pr-md-6{padding-right:6rem !important}}@media screen and (min-width:48rem){.pr-md-7{padding-right:7rem !important}}@media screen and (min-width:48rem){.pr-md-8{padding-right:8rem !important}}@media screen and (min-width:48rem){.pr-md-9{padding-right:9rem !important}}@media screen and (min-width:48rem){.pr-md-10{padding-right:10rem !important}}@media screen and (min-width:58.75rem){.pr-lg-0{padding-right:0rem !important}}@media screen and (min-width:58.75rem){.pr-lg-1{padding-right:1rem !important}}@media screen and (min-width:58.75rem){.pr-lg-2{padding-right:2rem !important}}@media screen and (min-width:58.75rem){.pr-lg-3{padding-right:3rem !important}}@media screen and (min-width:58.75rem){.pr-lg-4{padding-right:4rem !important}}@media screen and (min-width:58.75rem){.pr-lg-5{padding-right:5rem !important}}@media screen and (min-width:58.75rem){.pr-lg-6{padding-right:6rem !important}}@media screen and (min-width:58.75rem){.pr-lg-7{padding-right:7rem !important}}@media screen and (min-width:58.75rem){.pr-lg-8{padding-right:8rem !important}}@media screen and (min-width:58.75rem){.pr-lg-9{padding-right:9rem !important}}@media screen and (min-width:58.75rem){.pr-lg-10{padding-right:10rem !important}}@media screen and (min-width:68.75rem){.pr-xl-0{padding-right:0rem !important}}@media screen and (min-width:68.75rem){.pr-xl-1{padding-right:1rem !important}}@media screen and (min-width:68.75rem){.pr-xl-2{padding-right:2rem !important}}@media screen and (min-width:68.75rem){.pr-xl-3{padding-right:3rem !important}}@media screen and (min-width:68.75rem){.pr-xl-4{padding-right:4rem !important}}@media screen and (min-width:68.75rem){.pr-xl-5{padding-right:5rem !important}}@media screen and (min-width:68.75rem){.pr-xl-6{padding-right:6rem !important}}@media screen and (min-width:68.75rem){.pr-xl-7{padding-right:7rem !important}}@media screen and (min-width:68.75rem){.pr-xl-8{padding-right:8rem !important}}@media screen and (min-width:68.75rem){.pr-xl-9{padding-right:9rem !important}}@media screen and (min-width:68.75rem){.pr-xl-10{padding-right:10rem !important}}@media screen and (min-width:0){.pb-xs-0{padding-bottom:0rem !important}}@media screen and (min-width:0){.pb-xs-1{padding-bottom:1rem !important}}@media screen and (min-width:0){.pb-xs-2{padding-bottom:2rem !important}}@media screen and (min-width:0){.pb-xs-3{padding-bottom:3rem !important}}@media screen and (min-width:0){.pb-xs-4{padding-bottom:4rem !important}}@media screen and (min-width:0){.pb-xs-5{padding-bottom:5rem !important}}@media screen and (min-width:0){.pb-xs-6{padding-bottom:6rem !important}}@media screen and (min-width:0){.pb-xs-7{padding-bottom:7rem !important}}@media screen and (min-width:0){.pb-xs-8{padding-bottom:8rem !important}}@media screen and (min-width:0){.pb-xs-9{padding-bottom:9rem !important}}@media screen and (min-width:0){.pb-xs-10{padding-bottom:10rem !important}}@media screen and (min-width:34.375rem){.pb-sm-0{padding-bottom:0rem !important}}@media screen and (min-width:34.375rem){.pb-sm-1{padding-bottom:1rem !important}}@media screen and (min-width:34.375rem){.pb-sm-2{padding-bottom:2rem !important}}@media screen and (min-width:34.375rem){.pb-sm-3{padding-bottom:3rem !important}}@media screen and (min-width:34.375rem){.pb-sm-4{padding-bottom:4rem !important}}@media screen and (min-width:34.375rem){.pb-sm-5{padding-bottom:5rem !important}}@media screen and (min-width:34.375rem){.pb-sm-6{padding-bottom:6rem !important}}@media screen and (min-width:34.375rem){.pb-sm-7{padding-bottom:7rem !important}}@media screen and (min-width:34.375rem){.pb-sm-8{padding-bottom:8rem !important}}@media screen and (min-width:34.375rem){.pb-sm-9{padding-bottom:9rem !important}}@media screen and (min-width:34.375rem){.pb-sm-10{padding-bottom:10rem !important}}@media screen and (min-width:48rem){.pb-md-0{padding-bottom:0rem !important}}@media screen and (min-width:48rem){.pb-md-1{padding-bottom:1rem !important}}@media screen and (min-width:48rem){.pb-md-2{padding-bottom:2rem !important}}@media screen and (min-width:48rem){.pb-md-3{padding-bottom:3rem !important}}@media screen and (min-width:48rem){.pb-md-4{padding-bottom:4rem !important}}@media screen and (min-width:48rem){.pb-md-5{padding-bottom:5rem !important}}@media screen and (min-width:48rem){.pb-md-6{padding-bottom:6rem !important}}@media screen and (min-width:48rem){.pb-md-7{padding-bottom:7rem !important}}@media screen and (min-width:48rem){.pb-md-8{padding-bottom:8rem !important}}@media screen and (min-width:48rem){.pb-md-9{padding-bottom:9rem !important}}@media screen and (min-width:48rem){.pb-md-10{padding-bottom:10rem !important}}@media screen and (min-width:58.75rem){.pb-lg-0{padding-bottom:0rem !important}}@media screen and (min-width:58.75rem){.pb-lg-1{padding-bottom:1rem !important}}@media screen and (min-width:58.75rem){.pb-lg-2{padding-bottom:2rem !important}}@media screen and (min-width:58.75rem){.pb-lg-3{padding-bottom:3rem !important}}@media screen and (min-width:58.75rem){.pb-lg-4{padding-bottom:4rem !important}}@media screen and (min-width:58.75rem){.pb-lg-5{padding-bottom:5rem !important}}@media screen and (min-width:58.75rem){.pb-lg-6{padding-bottom:6rem !important}}@media screen and (min-width:58.75rem){.pb-lg-7{padding-bottom:7rem !important}}@media screen and (min-width:58.75rem){.pb-lg-8{padding-bottom:8rem !important}}@media screen and (min-width:58.75rem){.pb-lg-9{padding-bottom:9rem !important}}@media screen and (min-width:58.75rem){.pb-lg-10{padding-bottom:10rem !important}}@media screen and (min-width:68.75rem){.pb-xl-0{padding-bottom:0rem !important}}@media screen and (min-width:68.75rem){.pb-xl-1{padding-bottom:1rem !important}}@media screen and (min-width:68.75rem){.pb-xl-2{padding-bottom:2rem !important}}@media screen and (min-width:68.75rem){.pb-xl-3{padding-bottom:3rem !important}}@media screen and (min-width:68.75rem){.pb-xl-4{padding-bottom:4rem !important}}@media screen and (min-width:68.75rem){.pb-xl-5{padding-bottom:5rem !important}}@media screen and (min-width:68.75rem){.pb-xl-6{padding-bottom:6rem !important}}@media screen and (min-width:68.75rem){.pb-xl-7{padding-bottom:7rem !important}}@media screen and (min-width:68.75rem){.pb-xl-8{padding-bottom:8rem !important}}@media screen and (min-width:68.75rem){.pb-xl-9{padding-bottom:9rem !important}}@media screen and (min-width:68.75rem){.pb-xl-10{padding-bottom:10rem !important}}@media screen and (min-width:0){.pl-xs-0{padding-left:0rem !important}}@media screen and (min-width:0){.pl-xs-1{padding-left:1rem !important}}@media screen and (min-width:0){.pl-xs-2{padding-left:2rem !important}}@media screen and (min-width:0){.pl-xs-3{padding-left:3rem !important}}@media screen and (min-width:0){.pl-xs-4{padding-left:4rem !important}}@media screen and (min-width:0){.pl-xs-5{padding-left:5rem !important}}@media screen and (min-width:0){.pl-xs-6{padding-left:6rem !important}}@media screen and (min-width:0){.pl-xs-7{padding-left:7rem !important}}@media screen and (min-width:0){.pl-xs-8{padding-left:8rem !important}}@media screen and (min-width:0){.pl-xs-9{padding-left:9rem !important}}@media screen and (min-width:0){.pl-xs-10{padding-left:10rem !important}}@media screen and (min-width:34.375rem){.pl-sm-0{padding-left:0rem !important}}@media screen and (min-width:34.375rem){.pl-sm-1{padding-left:1rem !important}}@media screen and (min-width:34.375rem){.pl-sm-2{padding-left:2rem !important}}@media screen and (min-width:34.375rem){.pl-sm-3{padding-left:3rem !important}}@media screen and (min-width:34.375rem){.pl-sm-4{padding-left:4rem !important}}@media screen and (min-width:34.375rem){.pl-sm-5{padding-left:5rem !important}}@media screen and (min-width:34.375rem){.pl-sm-6{padding-left:6rem !important}}@media screen and (min-width:34.375rem){.pl-sm-7{padding-left:7rem !important}}@media screen and (min-width:34.375rem){.pl-sm-8{padding-left:8rem !important}}@media screen and (min-width:34.375rem){.pl-sm-9{padding-left:9rem !important}}@media screen and (min-width:34.375rem){.pl-sm-10{padding-left:10rem !important}}@media screen and (min-width:48rem){.pl-md-0{padding-left:0rem !important}}@media screen and (min-width:48rem){.pl-md-1{padding-left:1rem !important}}@media screen and (min-width:48rem){.pl-md-2{padding-left:2rem !important}}@media screen and (min-width:48rem){.pl-md-3{padding-left:3rem !important}}@media screen and (min-width:48rem){.pl-md-4{padding-left:4rem !important}}@media screen and (min-width:48rem){.pl-md-5{padding-left:5rem !important}}@media screen and (min-width:48rem){.pl-md-6{padding-left:6rem !important}}@media screen and (min-width:48rem){.pl-md-7{padding-left:7rem !important}}@media screen and (min-width:48rem){.pl-md-8{padding-left:8rem !important}}@media screen and (min-width:48rem){.pl-md-9{padding-left:9rem !important}}@media screen and (min-width:48rem){.pl-md-10{padding-left:10rem !important}}@media screen and (min-width:58.75rem){.pl-lg-0{padding-left:0rem !important}}@media screen and (min-width:58.75rem){.pl-lg-1{padding-left:1rem !important}}@media screen and (min-width:58.75rem){.pl-lg-2{padding-left:2rem !important}}@media screen and (min-width:58.75rem){.pl-lg-3{padding-left:3rem !important}}@media screen and (min-width:58.75rem){.pl-lg-4{padding-left:4rem !important}}@media screen and (min-width:58.75rem){.pl-lg-5{padding-left:5rem !important}}@media screen and (min-width:58.75rem){.pl-lg-6{padding-left:6rem !important}}@media screen and (min-width:58.75rem){.pl-lg-7{padding-left:7rem !important}}@media screen and (min-width:58.75rem){.pl-lg-8{padding-left:8rem !important}}@media screen and (min-width:58.75rem){.pl-lg-9{padding-left:9rem !important}}@media screen and (min-width:58.75rem){.pl-lg-10{padding-left:10rem !important}}@media screen and (min-width:68.75rem){.pl-xl-0{padding-left:0rem !important}}@media screen and (min-width:68.75rem){.pl-xl-1{padding-left:1rem !important}}@media screen and (min-width:68.75rem){.pl-xl-2{padding-left:2rem !important}}@media screen and (min-width:68.75rem){.pl-xl-3{padding-left:3rem !important}}@media screen and (min-width:68.75rem){.pl-xl-4{padding-left:4rem !important}}@media screen and (min-width:68.75rem){.pl-xl-5{padding-left:5rem !important}}@media screen and (min-width:68.75rem){.pl-xl-6{padding-left:6rem !important}}@media screen and (min-width:68.75rem){.pl-xl-7{padding-left:7rem !important}}@media screen and (min-width:68.75rem){.pl-xl-8{padding-left:8rem !important}}@media screen and (min-width:68.75rem){.pl-xl-9{padding-left:9rem !important}}@media screen and (min-width:68.75rem){.pl-xl-10{padding-left:10rem !important}}@media screen and (min-width:0){.p-xs-0{padding:0rem !important}}@media screen and (min-width:0){.p-xs-1{padding:1rem !important}}@media screen and (min-width:0){.p-xs-2{padding:2rem !important}}@media screen and (min-width:0){.p-xs-3{padding:3rem !important}}@media screen and (min-width:0){.p-xs-4{padding:4rem !important}}@media screen and (min-width:0){.p-xs-5{padding:5rem !important}}@media screen and (min-width:0){.p-xs-6{padding:6rem !important}}@media screen and (min-width:0){.p-xs-7{padding:7rem !important}}@media screen and (min-width:0){.p-xs-8{padding:8rem !important}}@media screen and (min-width:0){.p-xs-9{padding:9rem !important}}@media screen and (min-width:0){.p-xs-10{padding:10rem !important}}@media screen and (min-width:34.375rem){.p-sm-0{padding:0rem !important}}@media screen and (min-width:34.375rem){.p-sm-1{padding:1rem !important}}@media screen and (min-width:34.375rem){.p-sm-2{padding:2rem !important}}@media screen and (min-width:34.375rem){.p-sm-3{padding:3rem !important}}@media screen and (min-width:34.375rem){.p-sm-4{padding:4rem !important}}@media screen and (min-width:34.375rem){.p-sm-5{padding:5rem !important}}@media screen and (min-width:34.375rem){.p-sm-6{padding:6rem !important}}@media screen and (min-width:34.375rem){.p-sm-7{padding:7rem !important}}@media screen and (min-width:34.375rem){.p-sm-8{padding:8rem !important}}@media screen and (min-width:34.375rem){.p-sm-9{padding:9rem !important}}@media screen and (min-width:34.375rem){.p-sm-10{padding:10rem !important}}@media screen and (min-width:48rem){.p-md-0{padding:0rem !important}}@media screen and (min-width:48rem){.p-md-1{padding:1rem !important}}@media screen and (min-width:48rem){.p-md-2{padding:2rem !important}}@media screen and (min-width:48rem){.p-md-3{padding:3rem !important}}@media screen and (min-width:48rem){.p-md-4{padding:4rem !important}}@media screen and (min-width:48rem){.p-md-5{padding:5rem !important}}@media screen and (min-width:48rem){.p-md-6{padding:6rem !important}}@media screen and (min-width:48rem){.p-md-7{padding:7rem !important}}@media screen and (min-width:48rem){.p-md-8{padding:8rem !important}}@media screen and (min-width:48rem){.p-md-9{padding:9rem !important}}@media screen and (min-width:48rem){.p-md-10{padding:10rem !important}}@media screen and (min-width:58.75rem){.p-lg-0{padding:0rem !important}}@media screen and (min-width:58.75rem){.p-lg-1{padding:1rem !important}}@media screen and (min-width:58.75rem){.p-lg-2{padding:2rem !important}}@media screen and (min-width:58.75rem){.p-lg-3{padding:3rem !important}}@media screen and (min-width:58.75rem){.p-lg-4{padding:4rem !important}}@media screen and (min-width:58.75rem){.p-lg-5{padding:5rem !important}}@media screen and (min-width:58.75rem){.p-lg-6{padding:6rem !important}}@media screen and (min-width:58.75rem){.p-lg-7{padding:7rem !important}}@media screen and (min-width:58.75rem){.p-lg-8{padding:8rem !important}}@media screen and (min-width:58.75rem){.p-lg-9{padding:9rem !important}}@media screen and (min-width:58.75rem){.p-lg-10{padding:10rem !important}}@media screen and (min-width:68.75rem){.p-xl-0{padding:0rem !important}}@media screen and (min-width:68.75rem){.p-xl-1{padding:1rem !important}}@media screen and (min-width:68.75rem){.p-xl-2{padding:2rem !important}}@media screen and (min-width:68.75rem){.p-xl-3{padding:3rem !important}}@media screen and (min-width:68.75rem){.p-xl-4{padding:4rem !important}}@media screen and (min-width:68.75rem){.p-xl-5{padding:5rem !important}}@media screen and (min-width:68.75rem){.p-xl-6{padding:6rem !important}}@media screen and (min-width:68.75rem){.p-xl-7{padding:7rem !important}}@media screen and (min-width:68.75rem){.p-xl-8{padding:8rem !important}}@media screen and (min-width:68.75rem){.p-xl-9{padding:9rem !important}}@media screen and (min-width:68.75rem){.p-xl-10{padding:10rem !important}}.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}@media screen and (max-width: 599px){.bg-green-mobile{background-color:#28792C}.bg-green-mobile a,.bg-green-mobile p{color:white}}.bg-darkgreen{background-color:#134711}.bg-darkgreen a,.bg-darkgreen p{color:white}@media screen and (max-width: 599px){.bg-darkgreen-mobile{background-color:#134711}.bg-darkgreen-mobile a,.bg-darkgreen-mobile p{color:white}}.bg-yellow{background-color:#FFC734}.bg-yellow a,.bg-yellow p{color:#184A98}@media screen and (max-width: 599px){.bg-yellow-mobile{background-color:#FFC734}.bg-yellow-mobile a,.bg-yellow-mobile p{color:#184A98}}.bg-blue{background-color:#184A98}.bg-blue a,.bg-blue p{color:white}@media screen and (max-width: 599px){.bg-blue-mobile{background-color:#184A98}.bg-blue-mobile a,.bg-blue-mobile p{color:white}}.bg-red{background-color:#D9000D}.bg-red a,.bg-red p{color:white}@media screen and (max-width: 599px){.bg-red-mobile{background-color:#D9000D}.bg-red-mobile a,.bg-red-mobile p{color:white}}.bg-gray{background-color:#A3A3A3}.bg-gray a,.bg-gray p{color:white}@media screen and (max-width: 599px){.bg-gray-mobile{background-color:#A3A3A3}.bg-gray-mobile a,.bg-gray-mobile p{color:white}}.bg-lightgray{background-color:#E4E4E4}.bg-lightgray a,.bg-lightgray p{color:#184A98}@media screen and (max-width: 599px){.bg-lightgray-mobile{background-color:#E4E4E4}.bg-lightgray-mobile a,.bg-lightgray-mobile p{color:#184A98}}.bg-black{background-color:#000000}.bg-black a,.bg-black p{color:white}@media screen and (max-width: 599px){.bg-black-mobile{background-color:#000000}.bg-black-mobile a,.bg-black-mobile p{color:white}}.bg-white{background-color:#ffffff}.bg-white a,.bg-white p{color:#184A98}@media screen and (max-width: 599px){.bg-white-mobile{background-color:#ffffff}.bg-white-mobile a,.bg-white-mobile p{color:#184A98}}.bg-primary{background-color:#FFC734}.bg-primary a,.bg-primary p{color:#184A98}@media screen and (max-width: 599px){.bg-primary-mobile{background-color:#FFC734}.bg-primary-mobile a,.bg-primary-mobile p{color:#184A98}}.bg-secondary{background-color:#184A98}.bg-secondary a,.bg-secondary p{color:white}@media screen and (max-width: 599px){.bg-secondary-mobile{background-color:#184A98}.bg-secondary-mobile a,.bg-secondary-mobile p{color:white}}.green{color:#28792C}.strong-green strong,strong.strong-green{color:#28792C}.darkgreen{color:#134711}.strong-darkgreen strong,strong.strong-darkgreen{color:#134711}.yellow{color:#FFC734}.strong-yellow strong,strong.strong-yellow{color:#FFC734}.blue{color:#184A98}.strong-blue strong,strong.strong-blue{color:#184A98}.red{color:#D9000D}.strong-red strong,strong.strong-red{color:#D9000D}.gray{color:#A3A3A3}.strong-gray strong,strong.strong-gray{color:#A3A3A3}.lightgray{color:#E4E4E4}.strong-lightgray strong,strong.strong-lightgray{color:#E4E4E4}.black{color:#000000}.strong-black strong,strong.strong-black{color:#000000}.white{color:#ffffff}.strong-white strong,strong.strong-white{color:#ffffff}.primary{color:#FFC734}.strong-primary strong,strong.strong-primary{color:#FFC734}.secondary{color:#184A98}.strong-secondary strong,strong.strong-secondary{color:#184A98}.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:#FFC734}h1.hl-yellow,h2.hl-yellow,h3.hl-yellow,h4.hl-yellow,h5.hl-yellow,h6.hl-yellow{color:#FFC734}.hl-blue h1,.hl-blue h2,.hl-blue h3,.hl-blue h4,.hl-blue h5,.hl-blue h6{color:#184A98}h1.hl-blue,h2.hl-blue,h3.hl-blue,h4.hl-blue,h5.hl-blue,h6.hl-blue{color:#184A98}.hl-red h1,.hl-red h2,.hl-red h3,.hl-red h4,.hl-red h5,.hl-red h6{color:#D9000D}h1.hl-red,h2.hl-red,h3.hl-red,h4.hl-red,h5.hl-red,h6.hl-red{color:#D9000D}.hl-gray h1,.hl-gray h2,.hl-gray h3,.hl-gray h4,.hl-gray h5,.hl-gray h6{color:#A3A3A3}h1.hl-gray,h2.hl-gray,h3.hl-gray,h4.hl-gray,h5.hl-gray,h6.hl-gray{color:#A3A3A3}.hl-lightgray h1,.hl-lightgray h2,.hl-lightgray h3,.hl-lightgray h4,.hl-lightgray h5,.hl-lightgray h6{color:#E4E4E4}h1.hl-lightgray,h2.hl-lightgray,h3.hl-lightgray,h4.hl-lightgray,h5.hl-lightgray,h6.hl-lightgray{color:#E4E4E4}.hl-black h1,.hl-black h2,.hl-black h3,.hl-black h4,.hl-black h5,.hl-black h6{color:#000000}h1.hl-black,h2.hl-black,h3.hl-black,h4.hl-black,h5.hl-black,h6.hl-black{color:#000000}.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:#FFC734}h1.hl-primary,h2.hl-primary,h3.hl-primary,h4.hl-primary,h5.hl-primary,h6.hl-primary{color:#FFC734}.hl-secondary h1,.hl-secondary h2,.hl-secondary h3,.hl-secondary h4,.hl-secondary h5,.hl-secondary h6{color:#184A98}h1.hl-secondary,h2.hl-secondary,h3.hl-secondary,h4.hl-secondary,h5.hl-secondary,h6.hl-secondary{color:#184A98}.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:#000000;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}.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:92.5926vw;width:100%}}@media screen and (min-width:1700px){.centered-wrapper.-vertical-centered>.centered-wrapper-inner:not(.-fullwidth){max-width:1640px;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:#FFC734;font-size:1.75em;display:block}.counter-boxes .counter-boxes-subheadline{color:#184A98;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:#FFC734}.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:#184A98;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:#FFC734}.team-boxes .team-boxes-position{margin:0;font-size:1em;display:block;line-height:1.5;color:#FFC734}.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:#FFC734}.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}.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}.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}.rsts-skin-karriere{margin-bottom:85px !important}.rsts-skin-karriere .bg-image-text .centered-wrapper.p-left .centered-wrapper-inner{padding:7rem}.rsts-skin-karriere .bg-image-text .centered-wrapper.p-left .centered-wrapper-inner .bg-image-text-heading{color:#184A98;text-transform:uppercase;font-size:40px;font-weight:800}.rsts-skin-karriere .bg-image-text .centered-wrapper.p-left .centered-wrapper-inner a{font-weight:bold;text-transform:uppercase;border-bottom:3px solid #184A98;text-decoration:none !important}.rsts-skin-karriere .bg-image-text .centered-wrapper.p-left .centered-wrapper-inner a:after{content:"";background-image:url("/files/projektordner/uploads/Statisch/Polygon 1@2x.png");position:relative;display:inline-block;height:0.75em;width:1em;background-position:center;background-size:contain;background-repeat:no-repeat;margin-left:0.25em}.rsts-skin-karriere .rsts-nav-numbers>ul{display:flex;justify-content:center;align-items:center}.rsts-skin-karriere .rsts-nav-numbers>ul>li{margin:6px}.rsts-skin-karriere .rsts-nav-numbers>ul>li:before{display:none}.rsts-skin-karriere .rsts-nav-numbers>ul>li .active{font-weight:bold}.rsts-skin-karriere .rsts-nav-numbers>ul>li.rsts-nav-prev>a,.rsts-skin-karriere .rsts-nav-numbers>ul>li.rsts-nav-next>a{background-image:url("/files/projektordner/uploads/Statisch/Gruppe 330@2x.png");width:45px;height:45px;color:transparent;display:block;background-size:contain;background-repeat:no-repeat;background-position:center}.rsts-skin-karriere .rsts-nav-numbers>ul>li.rsts-nav-next>a{background-image:url("/files/projektordner/uploads/Statisch/Gruppe 331@2x.png")}.rsts-skin-karriere .rsts-nav-numbers>ul>li.rsts-nav-prev{margin-right:40px}.rsts-skin-karriere .rsts-nav-numbers>ul>li.rsts-nav-next{margin-left:40px}@media screen and (max-width:68.75em){.rsts-skin-karriere .bg-image-text .image-text-wrapper .centered-wrapper{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.rsts-skin-karriere .bg-image-text .centered-wrapper.p-left .centered-wrapper-inner{padding:1rem}.rsts-skin-karriere .bg-image-text .centered-wrapper.p-left .centered-wrapper-inner .bg-image-text-heading{font-size:30px}.rsts-skin-karriere .bg-image-text .centered-wrapper.p-left{padding-left:0}.rsts-skin-karriere .bg-image-text .bg-image-wrapper{width:100%;position:relative;min-height:350px}}.rsts-skin-projekte .rsts-slide{padding:30px 0}.rsts-skin-projekte .rsts-slide h1,.rsts-skin-projekte .rsts-slide h2,.rsts-skin-projekte .rsts-slide h3,.rsts-skin-projekte .rsts-slide h4,.rsts-skin-projekte .rsts-slide h5,.rsts-skin-projekte .rsts-slide h6,.rsts-skin-projekte .rsts-slide p{color:#184A98}.rsts-skin-projekte .rsts-view .rsts-prev,.rsts-skin-projekte .rsts-view .rsts-next{opacity:0;display:none}.rsts-skin-projekte .rsts-nav{margin-top:8rem;position:relative;z-index:0}.rsts-skin-projekte .rsts-nav .rsts-prev,.rsts-skin-projekte .rsts-nav .rsts-next{opacity:1;display:block;transition:opacity 0.2s;width:65px;height:65px;top:25%;position:absolute;background-position:center;background-repeat:no-repeat;background-size:contain}.rsts-skin-projekte .rsts-nav .rsts-prev>span,.rsts-skin-projekte .rsts-nav .rsts-next>span{display:none}.rsts-skin-projekte .rsts-nav .rsts-prev{background-image:url("/files/projektordner/uploads/Statisch/Gruppe 30@2x.png");left:-80px}.rsts-skin-projekte .rsts-nav .rsts-next{background-image:url("/files/projektordner/uploads/Statisch/Gruppe 29@2x.png");right:-80px}.rsts-skin-projekte .rsts-nav:after{content:"";display:block;position:absolute;width:200%;background:white;top:10%;bottom:-50%;z-index:-1;left:-50%}.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}@-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:#FFC734;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}}html{--grid__gutter: 1rem}.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-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 #000000}@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{border-bottom:none}.header-navigation.navigation-fixed{width:100vw}.header-navigation .header-navigation-inner{max-height:72px;min-height:72px;display:flex;align-items:center}.header-navigation .header-navigation-inner .logo{height:38px;inset:0;position:relative;margin-left:9%}@media screen and (max-width:900px){.header-navigation .header-navigation-inner .logo{margin-left:5.55556%;padding:0}.header-navigation .header-navigation-inner .logo img{max-height:100%}}.header-navigation .main-navigation{margin-left:3%;float:none;margin-right:0;padding-right:0;font-weight:bold;text-transform:uppercase}.main-navigation>ul>li>a:after,.main-navigation>ul>li>span.active:after,.main-navigation>ul>li>span.trail:after,.main-navigation>ul>li>span.forward:after{top:auto;bottom:0;border-width:10px;border-color:#D9000D}.main-navigation>ul>li.trail:after{content:"";position:absolute;right:0;left:0;z-index:1;margin-top:0.625em;top:auto;bottom:0;border-width:10px;border-color:#D9000D}.main-navigation>ul>li.trail>a: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>ul>li>span.active:after{left:1.42857em;right:1.42857em}.logo{display:block}.main-navigation-mobile-open{width:52px;height:38px;padding:0;left:auto;right:18px;margin:0;top:18px}.main-navigation-mobile-open:after{border-radius:0;background:#ffffff;box-shadow:0 17px #ffffff, 0 33px #ffffff;height:5px}.main-navigation-mobile a,.main-navigation-mobile span.active,.main-navigation-mobile span.trail,.main-navigation-mobile span.forward{border:none}.main-navigation-mobile{position:fixed !important}.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}@media screen and (max-width:1199px){.main-navigation{display:none !important}.main-navigation-mobile-open,.main-navigation-mobile.is-enabled{display:block !important;position:fixed}}.main-content{}.main-content h3,.main-content h4,.main-content h5,.main-content h6{font-weight:normal}.main-content h1,.main-content h2{font-weight:800;text-transform:uppercase}.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}.main-content ul{padding-left:2em;margin-top:2.5em}.main-content ul li{margin-bottom:2rem;list-style:none;position:relative}.main-content ul li:before{content:"";background:#184A98;width:0.65em;height:0.65em;border-radius:100em;position:absolute;left:-2em;margin-top:0.5em}@media screen and (max-width:599px){.main-content ul li:before{width:0.85em;height:0.85em;margin-top:0.4em}}.main-content .ce_gallery>ul>li:before{display:none}.main-content form .widget{margin:0}.main-content form .widget input,.main-content form .widget textarea,.main-content form .widget select{padding:1em;border-radius:0;border:none;color:#184A98;font-weight:500;box-shadow:inset 0 3px 6px 0 rgba(0, 0, 0, 0.16);font-size:1em}.main-content form .widget input option,.main-content form .widget textarea option,.main-content form .widget select option{padding:0}.main-content form .widget input[type="text"]{text-overflow:ellipsis;white-space:nowrap}.main-content form .widget fieldset{margin:0;padding:0;border:none !important}.main-content form .widget fieldset a{font-weight:normal;text-decoration:underline}.main-content form .widget fieldset input[type="checkbox"]{width:1.5em !important;height:1.5em !important;margin-right:0.5em;position:relative;color:#184A98}.main-content form .widget fieldset input[type="checkbox"]:after{content:"";background:white;box-shadow:inset 0 3px 6px 0 rgba(0, 0, 0, 0.16);position:absolute;inset:0;pointer-events:none;line-height:1.5}.main-content form .widget fieldset input[type="checkbox"]:checked:after{content:"✓";font-family:"Rocksolid Icons";text-align:center}.main-content form .widget select{font-weight:bold;-webkit-appearance:none;background-image:url("/files/projektordner/uploads/Statisch/select-down.png");background-repeat:no-repeat;background-size:auto;background-origin:padding-box;background-position:calc(100% - 1em) center;padding-right:3em;text-overflow:ellipsis;white-space:nowrap}.main-content form .widget label{color:#184A98;font-size:1em}.main-content form .widget .submit{background:#184A98 !important;border:none;border-radius:0;box-shadow:none;text-shadow:none;font-weight:bold;font-size:1.364em;padding:0.25em 3em;margin:0}@media screen and (max-width:599px){.main-content form .widget .submit{display:block}}@media screen and (max-width:599px){.main-content form .widget.widget-checkbox>fieldset>span{display:flex}.main-content form .widget.widget-checkbox>fieldset>span input[type="checkbox"]{flex-shrink: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:#FFC734}@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}.main-content .form-fields-bordered .widget input,.main-content .form-fields-bordered .widget textarea,.main-content .form-fields-bordered .widget fieldset,.main-content .form-fields-bordered .widget input[type="checkbox"]:after{border:1px solid #A3A3A3;box-shadow:none}.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:#000000}.footer-form button{margin-top:0;width:100%;text-transform:initial;font-weight:bold;text-shadow:none;box-shadow:none;background:#000000;border-radius:0;padding:8px;border:none}.footer-form ::placeholder{color:#000000;opacity:1}.footer-form :-ms-input-placeholder{color:#000000}.footer-form ::-ms-input-placeholder{color:#000000}.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 .footer-info .centered-wrapper-inner{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between}.page-footer .footer-info .footer-links{font-size:20px}.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;background:#184A98;color:white}.page-footer .footer-copyright{float:none;margin:10px;padding:0;text-align:center}.page-footer .footer-links{float:none;margin:0;padding:1em 0;text-align:center}.page-footer .footer-links span.active{color:white}.page-footer .footer-links li{margin-right:1em}.page-footer .footer-links li:before{display:none}.page-footer .footer-bar{color:black;font-size:1em}.page-footer .footer-bar .ce_text *:first-child{margin-top:0}.page-footer .footer-bar strong{text-transform:uppercase}@media screen and (max-width:599px){.page-footer .footer-info{padding-bottom:50px}.page-footer .footer-info .centered-wrapper-inner{margin-left:0;margin-right:0;display:flex;flex-direction:column-reverse}.page-footer .footer-info .centered-wrapper-inner .footer-copyright{margin-right:5.55556%;margin-left:5.55556%}.page-footer .footer-info .centered-wrapper-inner .footer-links{width:100%;padding:0;border-bottom:2rem solid white}.page-footer .footer-info .centered-wrapper-inner .footer-links li{display:block;width:100%;padding:0.5rem 5.55556%;text-align:left;border-bottom:1px solid white}}.footer-bar a{color:black}.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}.text-lg{font-size:30px}@media screen and (max-width:599px){.text-lg{font-size:20px}}.tagline{border-bottom:none}.tagline-text{line-height:1.15}.tagline-text.white{text-shadow:0 0 20px rgba(0, 0, 0, 0.25)}.tagline-text h1{font-weight:800;font-size:1.67em;text-transform:uppercase}.btn-flat{font-size:1em;font-weight:600;padding:0.25em 0.75em;display:block;border-radius:100em;border:none;box-shadow:none !important;text-shadow:none !important;background:#FFC734 !important;color:#184A98}@media screen and (max-width:599px){.btn-flat{padding:0.5em}}.btn-flat.btn-white{background:white !important}@media screen and (max-width:599px){.btn-flat.btn-white{border:1px solid #184A98}}.btn-flat.btn-blue{background:#184A98 !important;color:white}.text-white p{color:white}.hl-50 h1,.hl-50 h2,.hl-50 h3,.hl-50 h4,.hl-50 h5,.hl-50 h6{font-size:50px}@media screen and (max-width:599px){.hl-50 h1,.hl-50 h2,.hl-50 h3,.hl-50 h4,.hl-50 h5,.hl-50 h6{font-size:30px}}.hl-40 h1,.hl-40 h2,.hl-40 h3,.hl-40 h4,.hl-40 h5,.hl-40 h6{font-size:40px}@media screen and (max-width:599px){.hl-40 h1,.hl-40 h2,.hl-40 h3,.hl-40 h4,.hl-40 h5,.hl-40 h6{font-size:30px}}h1.hl-50,h2.hl-50,h3.hl-50,h4.hl-50,h5.hl-50,h6.hl-50{font-size:50px}@media screen and (max-width:599px){h1.hl-50,h2.hl-50,h3.hl-50,h4.hl-50,h5.hl-50,h6.hl-50{font-size:30px}}h1.hl-40,h2.hl-40,h3.hl-40,h4.hl-40,h5.hl-40,h6.hl-40{font-size:40px}@media screen and (max-width:599px){h1.hl-40,h2.hl-40,h3.hl-40,h4.hl-40,h5.hl-40,h6.hl-40{font-size:30px}}h1.hl-uppercase,h2.hl-uppercase,h3.hl-uppercase,h4.hl-uppercase,h5.hl-uppercase,h6.hl-uppercase{text-transform:uppercase}.hl-uppercase h1,.hl-uppercase h2,.hl-uppercase h3,.hl-uppercase h4,.hl-uppercase h5,.hl-uppercase h6{text-transform:uppercase}h1.hl-extrabold,h2.hl-extrabold,h3.hl-extrabold,h4.hl-extrabold,h5.hl-extrabold,h6.hl-extrabold{font-weight:800}.hl-extrabold h1,.hl-extrabold h2,.hl-extrabold h3,.hl-extrabold h4,.hl-extrabold h5,.hl-extrabold h6{font-weight:800}.text-boxed{padding:6rem 8rem;position:relative;z-index:1}@media screen and (max-width:599px){.text-boxed{padding:0}}.newscategories-stellen{background:#184A98}.newscategories-stellen>ul{padding:0;display:flex;max-width:1640px;margin:auto;justify-content:center;flex-wrap:wrap;align-items:center}.newscategories-stellen>ul>li{margin:0;width:16em;height:9em;list-style:none}.newscategories-stellen>ul>li.active strong:after,.newscategories-stellen>ul>li.active a:after{content:"";background:#D9000D;position:absolute;bottom:-10px;left:0;right:0;height:10px}@media screen and (max-width:599px){.newscategories-stellen>ul>li.active strong:after,.newscategories-stellen>ul>li.active a:after{bottom:3px}}.newscategories-stellen>ul>li:before,.newscategories-stellen>ul>li:last-of-type:after{background:white;content:"";width:3px;top:10%;height:80%;position:absolute;border-radius:0;left:-1.5px;margin:0}@media screen and (max-width:599px){.newscategories-stellen>ul>li:before,.newscategories-stellen>ul>li:last-of-type:after{top:auto;bottom:0;left:0;right:0;width:auto;height:3px}}@media screen and (min-width:600px){.newscategories-stellen>ul>li:last-of-type:after{left:auto;right:-1.5px}}.newscategories-stellen>ul>li a,.newscategories-stellen>ul>li strong{padding:2em;color:white;display:flex;justify-content:center;align-items:center;text-transform:uppercase;font-weight:600;height:100%;font-size:25px;text-align:center}@media screen and (max-width:599px){.newscategories-stellen>ul>li a,.newscategories-stellen>ul>li strong{font-size:20px;padding:1.5rem}}@media screen and (max-width:599px){.newscategories-stellen>ul>li{width:100%;height:auto}}.wrapper-stelle{margin-top:19rem;padding-top:10rem;padding-bottom:10rem;max-width:calc(1640px + (100% - 1640px)/2)}.wrapper-stelle:after{content:"";background:white}.wrapper-stelle .centered-wrapper-inner{max-width:1640px;margin-right:0}.wrapper-stelle .ce_text{position:relative;font-weight:500}.wrapper-stelle .ce_text>.image_container.float_above{position:absolute;margin:0;top:-4rem;left:-4rem;pointer-events:none}@media screen and (max-width:599px){.wrapper-stelle .ce_text>.image_container.float_above{top:-3rem;left:-3rem}}.wrapper-stelle .text-stellentitel{font-weight:bold;text-transform:uppercase}.wrapper-stelle .text-stellentitel strong{font-size:50px;font-weight:800}@media screen and (max-width:939px){.wrapper-stelle .text-stellentitel strong{font-size:35px}}@media screen and (max-width:399px){.wrapper-stelle .text-stellentitel strong{font-size:30px}}@media screen and (max-width:939px){.wrapper-stelle .text-stellentitel{font-size:20px;margin-left:3rem;margin-right:3rem}}@media screen and (max-width:939px){.wrapper-stelle{margin-top:5rem;padding-top:7rem;padding-bottom:4rem;max-width:unset}.wrapper-stelle>.centered-wrapper-inner{margin-right:5.55556%}}.uppercase{text-transform:uppercase}.strong-uppercase strong{text-transform:uppercase;font-size:1.364em;font-weight:600}@media screen and (max-width:599px){.strong-uppercase strong{font-size:1em}}.button-inline-block{display:inline-block;padding-left:2em;padding-right:2em}.btn-shadow{box-shadow:0 3px 6px 0 rgba(0, 0, 0, 0.16) !important}.link-underline a{text-decoration:underline}.p-relative{position:relative}.img-stelle{margin-top:-15rem;margin-bottom:2rem}@media screen and (max-width:599px){.img-stelle{margin-top:2rem}}.text-left{text-align:left !important}.headline-box h3{margin-top:0;font-weight:300}.fineuploader-wrapper .qq-upload-button,.fineuploader-wrapper .qq-upload-drop-area{display:block;text-align:center;color:#A3A3A3;background:white;border:none;box-shadow:inset 0 3px 6px 0 rgba(0, 0, 0, 0.16);padding:20px}.fineuploader-wrapper .qq-upload-drop-area:before{content:"";background:url("/files/projektordner/uploads/Statisch/Gruppe 205@2x.png");background-size:contain;background-repeat:no-repeat;background-position:center;position:relative;width:70px;height:75px;display:block;margin:auto}.fineuploader-wrapper ul>li:before{display:none}.text-img-corner-top-left{position:relative;margin-top:4rem}.text-img-corner-top-left .image_container{position:absolute;margin:0;top:-4rem;left:-4rem}@media screen and (max-width:58.75em){.text-img-corner-top-left{margin-left:3rem;margin-top:3rem}.text-img-corner-top-left .image_container{top:-3rem;left:-3rem}}.img-cornered figure{position:relative}.img-cornered figure:before{content:"";position:absolute;background:url("/files/projektordner/uploads/Statisch/Gruppe 284@2x.png");top:-30px;right:-30px;width:130px;height:130px;background-size:contain;background-position:right top;background-repeat:no-repeat;pointer-events:none}.img-cornered figure:after{content:"";position:absolute;background:url("/files/projektordner/uploads/Statisch/Gruppe 283@2x.png");bottom:-30px;left:-30px;width:130px;height:130px;background-size:contain;background-position:left bottom;background-repeat:no-repeat;pointer-events:none}.img-cornered.img-cornered-padded{padding:30px}.overflow-hidden{overflow:hidden !important}.text-medium p,.text-medium ul,.text-medium li,.text-medium ol{font-weight:500}.text-img-box-projekt{background:#184A98;color:white;height:100%}.text-img-box-projekt>*:not(figure){padding-left:2rem;padding-right:2rem}.text-img-box-projekt figure{margin-top:0 !important}.text-img-box-projekt figure>a{transition:all 0.3s ease;opacity:0.4}.text-img-box-projekt figure>a:hover{opacity:1}.text-img-box-projekt p:first-of-type{margin-bottom:0}.text-img-box-projekt p:last-of-type{margin-top:0}.link-custom-a a{text-transform:uppercase;font-weight:bold;position:relative;text-decoration:none !important;border-bottom:3px solid #184A98}.link-custom-a a:before{content:"";background-image:url("/files/projektordner/uploads/Statisch/Polygon 1.png");background-repeat:no-repeat;background-position:center left;background-size:contain;display:inline-block;width:1em;height:0.75em}.white.link-custom-a a{color:white !important;border-bottom-color:white}.white.link-custom-a a:before{background-image:url("/files/projektordner/uploads/Statisch/Polygon 1-w.png")}.text-date p{background:#FFC734;color:#184A98;display:inline-block;margin:0;padding:0 0.125em}.galery-colcrete ul>li{margin-top:0;margin-bottom:16px}.galery-colcrete ul>li:before{display:none}@media screen and (max-width:599px){.galery-colcrete>ul{display:grid;grid-template-columns:repeat(var(--grid__columns), minmax(0, 1fr));grid-gap:var(--grid__gutter);grid-auto-columns:1fr}.galery-colcrete>ul:before,.galery-colcrete>ul:after{display:none}.galery-colcrete>ul>li{grid-column:span 6 / span 6;margin:0 !important;padding:0 !important}}.text-boxed-image{padding:4rem}.text-boxed-image>figure{margin:-4rem -4rem 0 -4rem !important}@media screen and (max-width:599px){.text-boxed-image{padding:0;padding-bottom:2rem}.text-boxed-image>*:not(figure){margin-left:5.55556%;margin-right:5.55556%}.text-boxed-image>figure{margin:0 !important}}.overflow-x-hidden{overflow-x:hidden}.img-block figure{display:block}@media screen and (max-width:1599px) and (min-width:600px){.newscategories-stellen>ul{padding-left:3.7037%;padding-right:3.7037%}.newscategories-stellen>ul>li{height:auto;width:50%}.newscategories-stellen>ul>li>a,.newscategories-stellen>ul>li>strong{padding:1em}.newscategories-stellen>ul>li:nth-of-type(2n):after{background:white;content:"";width:3px;top:10%;height:80%;position:absolute;border-radius:0;left:auto;right:-1.5px;margin:0}.rsts-skin-karriere .bg-image-text .centered-wrapper.p-left .centered-wrapper-inner{padding:3rem}.text-boxed{padding:3rem 4rem}}.bg-wrapper-bg-y-25 .bg-image{background-position-y:25% !important}@media screen and (max-width:1499px){.projekte-inhalt .hl-50 h2{font-size:40px}}@media screen and (max-width:1099px){.img-colcrete-logo{display:none !important}}@media screen and (min-width:68.75em){.pt-xl--80pc{margin-top:-80%}}@media screen and (max-width:58.75em){.centered-wrapper-fullwidth-small>.centered-wrapper-inner{margin-left:0;margin-right:0}}@media screen and (min-width:58.75em){.pt-lg--80pc{margin-top:-80%}}@media screen and (min-width:48em) and (max-width:68.75em){.wrapper-stelle .text-stellentitel strong{font-size:35px}}.centered-wrapper-vertical-bottom{justify-content:end !important}.textbox-notfall .image-text-wrapper>.centered-wrapper>.centered-wrapper-inner{padding:140px 70px}@media screen and (max-width:900px){.textbox-notfall .image-text-wrapper>.centered-wrapper>.centered-wrapper-inner{padding:40px 20px}}.textbox-notfall .image-text-wrapper>.centered-wrapper>.centered-wrapper-inner h1{margin-top:0}.textbox-notfall .image-text-wrapper>.centered-wrapper>.centered-wrapper-inner p:last-of-type{margin-bottom:0}.tabnav-yellow{margin:0;background:#FFC734;border:none}.tabnav-yellow>ul{margin:0;padding:0;display:flex;justify-content:center;align-items:center}.tabnav-yellow>ul>li{padding:0 1em;width:auto;display:block;width:auto !important}.tabnav-yellow>ul>li:before{display:none}.tabnav-yellow>ul>li>a{padding:0;background:none;border:none;box-shadow:none !important;width:60px;height:60px}.tabnav-yellow>ul>li>a:before{content:"";background:url("/files/projektordner/uploads/Statisch/Gruppe 331@2x.png");display:block;height:60px;background-repeat:no-repeat;background-position:center;background-size:contain;width:60px}.tabnav-yellow>ul>li>a.is-active{pointer-events:none}.tabnav-yellow>ul>li>a.is-active:before{filter:grayscale(1) brightness(2.5)}.tabnav-yellow>ul>li:first-of-type>a:before{background-image:url("/files/projektordner/uploads/Statisch/Gruppe 330@2x.png")}.colcrete-list-subpages{display:contents}.colcrete-list-subpages>ul{display:flex;padding-left:1.5rem;padding-right:1.5rem;margin:0;align-items:center;color:#184A98;font-size:1.15em}.colcrete-list-subpages>ul>li{margin-bottom:0;padding-left:0.5rem;padding-right:0.5rem}.colcrete-list-subpages>ul>li:before{display:none}.d-none{display:none !important}.stellen-orte-filter{margin:3rem;text-transform:uppercase;font-weight:bold;display:flex;justify-content:center;align-items:center}.stellen-orte-filter>label{display:inline-block;color:#184A98;margin-bottom:0;margin-right:0.5rem;font-size:1em}.stellen-orte-filter>select{width:auto;border:none;color:#184A98;text-decoration:underline;text-transform:uppercase;outline:none !important;-webkit-appearance:none;background-image:url(/files/projektordner/uploads/Statisch/select-down.png);background-repeat:no-repeat;background-size:18px;background-origin:padding-box;background-position:right center;padding-right:1.25em;text-overflow:ellipsis;white-space:nowrap}.footer-icon-links{border:none;margin:0.5rem;display:flex}.footer-icon-links .icon-links-item{display:inline-block;padding:0;margin-right:0.25rem}.footer-icon-links .icon-links-item>a{border:none;height:2.75em;transition:all 0.4s}.footer-icon-links .icon-links-item>a:before{background:transparent;top:0;line-height:1;display:flex;justify-content:center;align-items:center}.footer-icon-links .icon-links-item>a:after{display:none}.footer-icon-links .icon-links-item a:not(:hover){background:transparent !important}@media screen and (max-width:599px){.tab-navigation a.is-active{background:none}}.logbuch>.toggler{background:#184A98;border:none;border-radius:0;color:white !important;text-transform:uppercase;text-align:center;margin:0;padding:0.75rem;font-size:40px;display:flex;justify-content:center;align-items:center}.logbuch>.toggler:after{background-image:url(/files/projektordner/uploads/Statisch/arrowdown_w.png);content:"" !important;background-repeat:no-repeat;width:28px;min-width:28px;position:relative;display:inline-block;inset:0;height:18px;margin-left:1rem;transform:scaleY(1);transition:transform 0.3s ease}.logbuch>.toggler.ui-accordion-header-active:after{transform:scaleY(-1)}.logbuch>.accordion{background:white;padding:0;border:none;color:#184A98}.logbuch>.accordion>div{overflow:hidden}.logbuch>.accordion h1,.logbuch>.accordion h2,.logbuch>.accordion h3,.logbuch>.accordion h4,.logbuch>.accordion h5,.logbuch>.accordion h6{color:#184A98;margin:1rem 0}.logbuch>.accordion table{height:auto !important;margin:auto;border:none;max-width:1300px}.logbuch>.accordion table tbody>tr{height:auto !important}.logbuch>.accordion table tbody>tr:nth-child(odd){background:#E8EDF5;z-index:0;position:relative}.logbuch>.accordion table tbody>tr:nth-child(odd):after{content:"";background:#E8EDF5;position:absolute;width:200%;height:100%;left:-50%;z-index:-1}.logbuch>.accordion table tbody>tr td{background:transparent;border:none;width:50% !important;height:auto !important;padding:1rem}.logbuch>.accordion table tbody>tr td ul{margin:0}.logbuch>.accordion table tbody>tr td ul li:last-child{margin-bottom:0}.logbuch>.accordion table tbody>tr td[colspan="2"]{width:100% !important}@media screen and (max-width:899px){.logbuch>.accordion table,.logbuch>.accordion tbody{display:contents !important}.logbuch>.accordion table tr,.logbuch>.accordion table td,.logbuch>.accordion tbody tr,.logbuch>.accordion tbody td{display:block !important}.logbuch>.accordion table tr:after,.logbuch>.accordion table td:after,.logbuch>.accordion tbody tr:after,.logbuch>.accordion tbody td:after{display:none !important}.logbuch>.accordion table>tbody>tr>td{width:100% !important}}.main-content .ce_gallery.flex-gallery{margin:0}.main-content .ce_gallery.flex-gallery>ul{display:flex;flex-wrap:wrap;justify-content:center;align-items:center;margin:0 -1rem !important}.main-content .ce_gallery.flex-gallery>ul>li{max-width:400px;padding:0 1rem;max-height:200px;display:block;margin:0 0 1rem 0 !important}.main-content .ce_gallery.flex-gallery>ul>li>figure>img{max-height:200px;object-fit:contain}.footer-vfb-oldenburg{border-top:1px solid #184A98}.footer-vfb-oldenburg>.centered-wrapper-inner{margin-left:auto;margin-right:auto}.footer-vfb-oldenburg .vfb-logo{max-width:200px;margin:auto}.footer-vfb-oldenburg .vfb-logo .image_container{display:block}.footer-vfb-oldenburg .vfb-text{margin-left:2rem;font-size:0.875em;text-align:center}@media screen and (min-width:700px){.footer-vfb-oldenburg>.centered-wrapper-inner{max-width:650px;display:flex;flex-wrap:wrap;justify-content:flex-end;align-items:center}.footer-vfb-oldenburg .vfb-logo{margin-right:0}}
