@import url("http://fonts.googleapis.com/css?family=Roboto:300,500,700");
/*  Syntax Quick Reference
  --------------------------
  column($ratios: 1, $offset: 0, $cycle: 0, $uncycle: 0, $gutter: $jeet-gutter)
  span($ratio: 1, $offset: 0)
  shift($ratios: 0, $col_or_span: column, $gutter: $jeet-gutter)
  unshift()
  edit()
  center($max_width: 1410px, $pad: 0)
  stack($pad: 0, $align: false)
  unstack()
  align($direction: both)
  cf()
*/
/**
 * Grid settings.
 * All values are defaults and can therefore be easily overidden.
 */
/**
 * List functions courtesy of the wonderful folks at Team Sass.
 * Check out their awesome grid: Singularity.
 */
/**
 * Get  percentage from a given ratio.
 * @param {number} [$ratio=1] - The column ratio of the element.
 * @returns {number} - The percentage value.
 */
/**
 * Work out the column widths based on the ratio and gutter sizes.
 * @param {number} [$ratios=1] - The column ratio of the element.
 * @param {number} [$gutter=$jeet-gutter] - The gutter for the column.
 * @returns {list} $width $gutter - A list containing the with and gutter for the element.
 */
/**
 * Get the set layout direction for the project.
 * @returns {string} $direction - The layout direction.
 */
/**
 * Replace a specified list value with a new value (uses built in set-nth() if available)
 * @param {list} $list - The list of values you want to alter.
 * @param {number} $index - The index of the list item you want to replace.
 * @param {*} $value - The value you want to replace $index with.
 * @returns {list} $list - The list with the value replaced or removed.
 * @warn if an invalid index is supplied.
 */
/**
 * Reverse a list (progressively enhanced for Sass 3.3)
 * @param {list} $list - The list of values you want to reverse.
 * @returns {list} $result - The reversed list.
 */
/**
 * Get the opposite direction to a given value.
 * @param {string} $dir - The direction you want the opposite of.
 * @returns {string} - The opposite direction to $dir.
 * @warn if an incorrect string is provided.
 */
/**
 * Style an element as a column with a gutter.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [$cycle=0] - Easily create an nth column grid where $cycle equals the number of columns.
 * @param {number} [$uncycle=0] - Undo a previous cycle value to allow for a new one.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column mixin.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Get the width of a column and nothing else.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Get the gutter size of a column and nothing else.
 * @param {number} [ratios=1] - A width relative to its container as a fraction.
 * @param {number} [gutter=jeet.gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column-width function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * An alias for the column-gutter function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Style an element as a column without any gutters for a seamless row.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [cycle=0] - Easily create an nth column grid where cycle equals the number of columns.
 * @param {number} [uncycle=0] - Undo a previous cycle value to allow for a new one.
 */
/**
 * Reorder columns without altering the HTML.
 * @param {number} [$ratios=0] - Specify how far along you want the element to move.
 * @param {string} [$col-or-span=column] - Specify whether the element has a gutter or not.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Reset an element that has had shift() applied to it.
 */
/**
 * View the grid and its layers for easy debugging.
 * @param {string} [$color=black] - The background tint applied.
 * @param {boolean} [$important=false] - Whether to apply the style as !important.
 */
/**
 *  Alias for edit().
 */
/**
 * Horizontally center an element.
 * @param {number} [$max-width=1410px] - The max width the element can be.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 */
/**
 * Uncenter an element.
 */
/**
 * Stack an element so that nothing is either side of it.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 * @param {boolean/string} [$align=false] - Specify the text align for the element.
 */
/**
 * Unstack an element.
 */
/**
 * Center an element on either or both axes.
 * @requires A parent container with relative positioning.
 * @param {string} [$direction=both] - Specify which axes to center the element on.
 */
/**
 * Apply a clearfix to an element.
 */
/*
 * Retina Backgrounds for Compass
 * by:              Gaya Kessler
 * last update:     03/11/14
 *
 * Usage:
 * 1. create background image for pixel ratio 1 screens and put it somewhere in your images folder.
 * 2. create background image for pixel ratio 2 screens and put it somewhere in your images folder.
 * 3. include the background-image property in your Sass/Scss using: '@include background-retina(<ratio-1-imagefile>, <ratio-2-imagefile>)'
 */
/*
 * Retina Sprites for Compass
 * by:              Gaya Kessler
 * last update:     03/11/14
 *
 * Usage:
 * 1. create two folders in your image directory (in this case 'icons' and 'icons-2x').
 * 2. adjust the foldernames defined below if you use different names.
 * 3. create sprite images for pixel ratio 1 screens and put them in the first folder.
 * 4. create sprite images for pixel ratio 2 screens and put them in the second folder, use the same filenames.
 * 5. use the sprite-image in your Sass/Scss using: '@include use-sprite(<sprite-name>)'
 */
/*======================================================================
  Selectric
======================================================================*/
.selectricWrapper {
  position: relative;
  margin: 0 0 10px;
  width: 300px;
  cursor: pointer; }

.selectricResponsive {
  width: 100%; }

.selectric {
  border: 1px solid #DDD;
  background: #FFF;
  position: relative;
  border-radius: 2px; }
  .selectric .label {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    margin: 0 30px 0 0;
    padding: 6px;
    font-size: 12px;
    line-height: 18px;
    color: #444;
    min-height: 18px; }
  .selectric .button {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 30px;
    height: 30px;
    color: #BBB;
    text-align: center;
    font: 0/0 a;
    /* IE Fix */
    *font: 20px/30px Lucida Sans Unicode, Arial Unicode MS, Arial; }
    .selectric .button:after {
      content: " ";
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      margin: auto;
      width: 0;
      height: 0;
      border: 4px solid transparent;
      border-top-color: #BBB;
      border-bottom: none; }

.selectricHover .selectric {
  border-color: #CCC; }
  .selectricHover .selectric .button {
    color: #888; }
    .selectricHover .selectric .button:after {
      border-top-color: #888; }

.selectricOpen {
  z-index: 9999; }
  .selectricOpen .selectric {
    border-color: #CCC;
    background: #F0F0F0; }
  .selectricOpen .selectricItems {
    display: block; }

.selectricDisabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default;
  -webkit-touch-callout: none;
  user-select: none; }

.selectricHideSelect {
  position: relative;
  overflow: hidden;
  width: 0;
  height: 0; }
  .selectricHideSelect select {
    position: absolute;
    left: -100%;
    display: none; }

.selectricInput {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 1px !important;
  height: 1px !important;
  outline: none !important;
  border: none !important;
  *font: 0/0 a !important;
  background: none !important; }

.selectricTempShow {
  position: absolute !important;
  visibility: hidden !important;
  display: block !important; }

/* Items box */
.selectricItems {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #5588B0;
  z-index: -1;
  box-shadow: 0 0 10px -6px;
  margin-top: -1px; }
  .selectricItems .selectricScroll {
    height: 100%;
    overflow: auto; }
  .selectricAbove .selectricItems {
    top: auto;
    bottom: 100%; }
  .selectricItems ul, .selectricItems li {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 12px;
    line-height: 20px;
    min-height: 20px; }
  .selectricItems li {
    display: block;
    border-top: 1px solid #FFF;
    border-bottom: 1px solid #EEE;
    color: #666;
    cursor: pointer; }
    .selectricItems li.selected {
      background: #EFEFEF;
      color: #444;
      border-top-color: #E0E0E0; }
    .selectricItems li:hover {
      background: #5588B0;
      color: white; }
    .selectricItems li.disabled {
      background: #F5F5F5;
      color: #BBB;
      border-top-color: #FAFAFA;
      cursor: default; }

.footer .container article .text-spacing.left .subline, .footer .container article .text-spacing.right .subline {
  font-size: 12px;
  line-height: 22px;
  margin: 68px 0 0 0; }

.teaser .wrap .left h1 {
  font-family: "Roboto", sans-serif;
  font-size: 41px;
  font-size: 2.5625rem;
  text-transform: none;
  line-height: 50px;
  width: 90%; }

.advert-teaser {
  width: 157px;
  height: 118px;
  display: inline-block;
  padding-right: 15px; }

.noCatWrapper {
  margin-bottom: 40px; }

.noCat {
  display: inline-block;
  width: 50%;
  box-sizing: border-box;
  padding-right: 10px; }
  .noCat .advert-teaser {
    display: table-cell;
    vertical-align: top; }
  .noCat .content {
    display: table-cell;
    vertical-align: top; }

#content .choose-category .selectricWrapper .selectricItems {
  width: 265px !important;
  height: auto !important; }

#content .choose-category .selectricWrapper.xlarge.selectricOpen .selectricItems {
  width: 370px !important;
  border: 1px solid #97d1da; }
  #content .choose-category .selectricWrapper.xlarge.selectricOpen .selectricItems.selectricItems {
    width: 250px; }

.selectricWrapper.xlarge.selectricOpen .selectricItems .selectricScroll {
  height: auto;
  width: 370px; }

/* iCheck plugin flat skin, black
----------------------------------- */
.icheckbox,
.iradio {
  display: inline-block;
  *display: inline;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  width: 20px;
  height: 20px;
  background: url(/images/flat-icheck.png) no-repeat;
  border: none;
  cursor: pointer; }

.icheckbox {
  background-position: 0 0; }

.icheckbox.checked {
  background-position: -22px 0; }

.icheckbox.disabled {
  background-position: -44px 0;
  cursor: default; }

.icheckbox.checked.disabled {
  background-position: -66px 0; }

.iradio {
  background-position: -88px 0; }

.iradio.checked {
  background-position: -110px 0; }

.iradio.disabled {
  background-position: -132px 0;
  cursor: default; }

.iradio.checked.disabled {
  background-position: -154px 0; }

/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5 / 4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
  .icheckbox,
  .iradio {
    background-image: url(/images/flat-icheck@2x.png);
    -webkit-background-size: 176px 22px;
    background-size: 176px 22px; } }
* {
  margin: 0;
  padding: 0;
  vertical-align: top; }

body {
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 300;
  color: #484C52; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 400; }

h1 {
  font-family: "Roboto", sans-serif;
  font-size: 41px;
  font-size: 2.5625rem;
  text-transform: uppercase;
  line-height: 50px;
  width: 90%; }
  @media only screen and (max-width: 960px) {
    h1 {
      font-family: "Roboto", sans-serif;
      font-size: 30px;
      font-size: 1.875rem;
      line-height: 45px;
      width: 100%; } }
  @media only screen and (max-width: 750px) {
    h1 {
      font-size: 30px; } }
  @media only screen and (max-width: 480px) {
    h1 {
      font-family: "Roboto", sans-serif;
      font-size: 14px;
      font-size: 0.875rem;
      line-height: 26px;
      margin-top: 25px; } }

h2 {
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 400;
  color: #484C52;
  text-decoration: none; }
  @media only screen and (max-width: 1024px) {
    h2 {
      font-family: "Roboto", sans-serif;
      font-size: 25px;
      font-size: 1.5625rem; } }
  @media only screen and (max-width: 750px) {
    h2 {
      font-family: "Roboto", sans-serif;
      font-size: 25px;
      font-size: 1.5625rem; } }
  @media only screen and (max-width: 480px) {
    h2 {
      font-family: "Roboto", sans-serif;
      font-size: 22px;
      font-size: 1.375rem;
      margin-bottom: 20px; } }

h3 {
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  font-size: 1.875rem;
  padding-top: 15px;
  line-height: 57px;
  color: #fff;
  text-transform: uppercase; }
  @media only screen and (max-width: 1024px) {
    h3 {
      font-family: "Roboto", sans-serif;
      font-size: 14px;
      font-size: 0.875rem;
      padding: 0; } }
  @media only screen and (max-width: 750px) {
    h3 {
      font-family: "Roboto", sans-serif;
      font-size: 14px;
      font-size: 0.875rem; } }
  @media only screen and (max-width: 480px) {
    h3 {
      font-family: "Roboto", sans-serif;
      font-size: 12px;
      font-size: 0.75rem;
      line-height: 16px;
      margin-bottom: 10px;
      margin-top: 10px; } }

h4 {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 25px;
  font-size: 1.5625rem;
  font-weight: 500; }

h5 {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 500;
  padding-bottom: 10px; }
  @media only screen and (max-width: 1024px) {
    h5 {
      padding-bottom: 5px; } }

a {
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 300;
  text-decoration: none;
  color: #97d1da; }

p {
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 23px; }

li {
  list-style-type: none; }

input[type=submit] {
  cursor: pointer; }

img {
  max-width: 100%; }

input[placeholder] {
  color: #97d1da; }

.wrapper {
  *zoom: 1;
  margin-bottom: 60px; }
  .wrapper:before, .wrapper:after {
    content: '';
    display: table; }
  .wrapper:after {
    clear: both; }

.label {
  margin: 0 0 17px 0; }
  .label span {
    font-family: "Roboto", sans-serif;
    font-size: 22px;
    font-size: 1.375rem;
    border-radius: 25px;
    background-color: #97d1da;
    text-align: center;
    color: #FFFFFF;
    min-width: 140px;
    padding: 10px 14px;
    display: inline-block;
    margin-right: 0;
    line-height: 20px; }
    .label span li {
      float: none; }

.ad-label {
  margin: 0px 0 17px 0; }
  .ad-label span {
    font-family: "Roboto", sans-serif;
    font-size: 17px;
    font-size: 1.0625rem;
    border-radius: 10px;
    min-width: 63px;
    height: 19px;
    padding: 2px 12px 0 12px;
    line-height: 18px;
    background: #97d1da;
    color: #97d1da; }
  @media only screen and (max-width: 480px) {
    .ad-label {
      margin: 10px 0 17px 0; } }

.big-label {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  font-size: 1.375rem;
  border-radius: 25px;
  background-color: #97d1da;
  text-align: center;
  color: #fff;
  width: 140px;
  padding: 7px 20px;
  margin-right: 12px;
  float: left; }
  @media only screen and (max-width: 480px) {
    .big-label {
      float: none;
      margin-bottom: 20px; } }

.teaser {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 100%;
  margin-left: 0%;
  margin-right: 3%;
  background: #97d1da;
  height: 252px;
  margin-bottom: 40px;
  display: inline-block; }
  .teaser:before, .teaser:after {
    content: '';
    display: table; }
  .teaser:after {
    clear: both; }
  .teaser:last-child {
    margin-right: 0%; }
  @media only screen and (max-width: 1024px) {
    .teaser {
      height: 252px; } }
  @media only screen and (max-width: 480px) {
    .teaser {
      height: 100%; } }
  .teaser .wrap {
    *zoom: 1;
    width: auto;
    max-width: 1123px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 30px;
    padding-right: 30px;
    color: #fff;
    height: 252px; }
    .teaser .wrap:before, .teaser .wrap:after {
      content: '';
      display: table; }
    .teaser .wrap:after {
      clear: both; }
    @media only screen and (max-width: 480px) {
      .teaser .wrap {
        height: 100%; } }
    .teaser .wrap .left {
      float: left;
      width: 66%;
      left: 0;
      height: 252px; }
      @media only screen and (max-width: 480px) {
        .teaser .wrap .left {
          height: auto;
          width: 100%; } }
      .teaser .wrap .left div {
        position: relative;
        top: 33%;
        transform: translateY(-25%); }
        @media only screen and (max-width: 1024px) {
          .teaser .wrap .left div {
            top: 25%;
            transform: translateY(-25%); } }
        @media only screen and (max-width: 480px) {
          .teaser .wrap .left div {
            top: 0;
            transform: translateY(0); } }
    .teaser .wrap .right {
      width: 33%;
      float: left;
      vertical-align: middle;
      height: 100%;
      position: relative; }
      .teaser .wrap .right img {
        position: absolute;
        left: 0;
        bottom: 0; }
      @media only screen and (max-width: 480px) {
        .teaser .wrap .right {
          width: 100%;
          text-align: center;
          position: static; }
          .teaser .wrap .right img {
            position: static;
            padding-top: 20px 0; } }
    .teaser .wrap .text {
      margin-top: 38px;
      margin-bottom: 20px;
      float: left;
      min-width: 268px; }
      .teaser .wrap .text .text-padding {
        padding-right: 25px; }

.center {
  background: #97d1da;
  position: fixed;
  z-index: 1;
  top: 0;
  width: 100%;
  text-align: left;
  /* newsletter registration */ }
  @media only screen and (max-width: 750px) {
    .center {
      width: auto; } }
  @media only screen and (max-width: 480px) {
    .center {
      position: inherit; } }
  .center .LogicalSubscribeSendGrid {
    position: absolute;
    background-color: #97d1da;
    top: 0;
    display: inline-block;
    max-width: 371px;
    width: 100%; }
    @media only screen and (max-width: 1024px) {
      .center .LogicalSubscribeSendGrid {
        max-width: 311px; } }
    @media only screen and (max-width: 960px) {
      .center .LogicalSubscribeSendGrid {
        max-width: 288px; } }
    @media only screen and (max-width: 750px) {
      .center .LogicalSubscribeSendGrid {
        position: static;
        max-width: 218px; } }
    @media only screen and (max-width: 480px) {
      .center .LogicalSubscribeSendGrid {
        right: auto;
        top: auto;
        left: 0;
        position: static;
        max-width: none; } }
    .center .LogicalSubscribeSendGrid .signin-state {
      font-family: "Roboto", sans-serif;
      font-size: 41px;
      font-size: 2.5625rem; }
    .center .LogicalSubscribeSendGrid .error {
      padding-top: 10px; }
      .center .LogicalSubscribeSendGrid .error p {
        color: red; }
    .center .LogicalSubscribeSendGrid .signin {
      padding: 10px;
      background: #97d1da; }
      @media only screen and (max-width: 750px) {
        .center .LogicalSubscribeSendGrid .signin {
          padding: 10px; } }
      @media only screen and (max-width: 480px) {
        .center .LogicalSubscribeSendGrid .signin {
          padding: 10px 0px; } }
      .center .LogicalSubscribeSendGrid .signin input[type=text] {
        font-family: "Roboto", sans-serif;
        font-size: 14px;
        font-size: 0.875rem;
        width: 85%;
        border: 0;
        padding: 10px;
        margin-top: 5px;
        box-sizing: border-box; }
        .center .LogicalSubscribeSendGrid .signin input[type=text].error {
          color: red;
          border: 1px solid red;
          box-sizing: border-box; }
        @media only screen and (max-width: 750px) {
          .center .LogicalSubscribeSendGrid .signin input[type=text] {
            width: 75%; } }
        @media only screen and (max-width: 750px) {
          .center .LogicalSubscribeSendGrid .signin input[type=text] {
            width: 85%; } }
      .center .LogicalSubscribeSendGrid .signin input.subscribe {
        background-image: url('../images/icons-s7fe3a85ef8.png');
        background-position: 0 -270px;
        background-repeat: no-repeat;
        overflow: hidden;
        display: block;
        height: 37px;
        width: 37px;
        border: 0;
        display: inline-block;
        background-color: transparent;
        box-sizing: border-box;
        margin-top: 5px; }
        @media (min-device-pixel-ratio: 2), (min-resolution: 144dppx) {
          .center .LogicalSubscribeSendGrid .signin input.subscribe {
            background-image: url('../images/icons-2x-sc05eedd096.png');
            background-size: 18.5px 153.5px;
            background-position: 0 -135px;
            height: 18.5px;
            width: 18.5px; } }

#content {
  *zoom: 1;
  *zoom: 1;
  width: auto;
  max-width: 1123px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 30px;
  padding-right: 30px; }
  #content:before, #content:after {
    content: '';
    display: table; }
  #content:after {
    clear: both; }
  #content:before, #content:after {
    content: '';
    display: table; }
  #content:after {
    clear: both; }
  #content h3 {
    font-family: "Roboto", sans-serif;
    font-size: 22px;
    font-size: 1.375rem;
    color: #97d1da;
    line-height: 34px;
    font-weight: 300;
    text-transform: capitalize;
    margin-bottom: 22px;
    padding: 0; }
  @media only screen and (max-width: 960px) {
    #content p {
      margin-bottom: 20px; } }
  @media only screen and (max-width: 480px) {
    #content p {
      margin-bottom: 20px; } }
  #content .current-date {
    font-family: "Roboto", sans-serif;
    font-size: 30px;
    font-size: 1.875rem;
    display: inline-block;
    vertical-align: middle;
    text-align: right;
    color: #97d1da;
    line-height: 40px;
    width: 39%; }
    @media only screen and (max-width: 480px) {
      #content .current-date {
        text-align: left;
        width: 100%; } }
  #content .jobs {
    display: inline-block;
    float: right; }
    #content .jobs .current-date {
      display: inline-block;
      vertical-align: middle;
      text-align: right;
      width: 100%;
      font-weight: 500; }
  #content .category {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 100%;
    margin-left: 0%;
    margin-right: 3%;
    max-width: 100%; }
    #content .category:before, #content .category:after {
      content: '';
      display: table; }
    #content .category:after {
      clear: both; }
    #content .category:last-child {
      margin-right: 0%; }
    @media only screen and (max-width: 1024px) {
      #content .category {
        *zoom: 1;
        float: left;
        clear: none;
        text-align: inherit;
        width: 100%;
        margin-left: 0%;
        margin-right: 3%; }
        #content .category:before, #content .category:after {
          content: '';
          display: table; }
        #content .category:after {
          clear: both; }
        #content .category:nth-of-type(2n) {
          margin-right: 3%;
          float: left; }
        #content .category:nth-of-type(2n + 1) {
          clear: none; }
        #content .category:last-child {
          margin-right: 0%; } }
  #content .LogicalArticle img {
    margin-bottom: 22px; }
  #content .column-left {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 65.66667%;
    margin-left: 0%;
    margin-right: 3%; }
    #content .column-left:before, #content .column-left:after {
      content: '';
      display: table; }
    #content .column-left:after {
      clear: both; }
    #content .column-left:last-child {
      margin-right: 0%; }
    @media only screen and (max-width: 480px) {
      #content .column-left {
        display: block;
        clear: both;
        float: none;
        width: 100%;
        margin-left: auto;
        margin-right: auto; }
        #content .column-left:first-child {
          margin-left: auto; }
        #content .column-left:last-child {
          margin-right: auto; } }
  #content .column-right {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 31.33333%;
    margin-left: 0%;
    margin-right: 3%; }
    #content .column-right:before, #content .column-right:after {
      content: '';
      display: table; }
    #content .column-right:after {
      clear: both; }
    #content .column-right:last-child {
      margin-right: 0%; }
    @media only screen and (max-width: 480px) {
      #content .column-right {
        display: block;
        clear: both;
        float: none;
        width: 100%;
        margin-left: auto;
        margin-right: auto; }
        #content .column-right:first-child {
          margin-left: auto; }
        #content .column-right:last-child {
          margin-right: auto; } }
    @media only screen and (max-width: 480px) {
      #content .column-right .tagcloud {
        margin-top: 10px; } }
  #content .fullwidth-category .inhaltHeadline {
    font-family: "Roboto", sans-serif;
    font-size: 22px;
    font-size: 1.375rem;
    background: none;
    color: #97d1da;
    min-width: 1px;
    text-align: left;
    font-weight: 300;
    display: block;
    line-height: 34px;
    margin-bottom: 10px; }
    #content .fullwidth-category .inhaltHeadline a {
      font-family: "Roboto", sans-serif;
      font-size: 22px;
      font-size: 1.375rem;
      line-height: 27px;
      font-weight: 300;
      color: #97d1da; }
    @media only screen and (max-width: 480px) {
      #content .fullwidth-category .inhaltHeadline {
        margin-left: 0px;
        padding-left: 0px;
        display: block; } }
  #content .fullwidth-category .cat-left, #content .fullwidth-category .cat-right {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 100%;
    margin-left: 0%;
    margin-right: 3%;
    margin-bottom: 40px; }
    #content .fullwidth-category .cat-left:before, #content .fullwidth-category .cat-left:after, #content .fullwidth-category .cat-right:before, #content .fullwidth-category .cat-right:after {
      content: '';
      display: table; }
    #content .fullwidth-category .cat-left:after, #content .fullwidth-category .cat-right:after {
      clear: both; }
    #content .fullwidth-category .cat-left:last-child, #content .fullwidth-category .cat-right:last-child {
      margin-right: 0%; }
    #content .fullwidth-category .cat-left .title, #content .fullwidth-category .cat-right .title {
      margin-bottom: 22px;
      font-family: "Roboto", sans-serif;
      font-size: 22px;
      font-size: 1.375rem;
      font-weight: 400;
      color: #97d1da;
      text-decoration: none; }
      #content .fullwidth-category .cat-left .title .title2, #content .fullwidth-category .cat-right .title .title2 {
        margin-top: 10px; }
      @media only screen and (max-width: 1024px) {
        #content .fullwidth-category .cat-left .title, #content .fullwidth-category .cat-right .title {
          font-family: "Roboto", sans-serif;
          font-size: 25px;
          font-size: 1.5625rem; } }
      @media only screen and (max-width: 750px) {
        #content .fullwidth-category .cat-left .title, #content .fullwidth-category .cat-right .title {
          font-family: "Roboto", sans-serif;
          font-size: 25px;
          font-size: 1.5625rem; } }
      @media only screen and (max-width: 480px) {
        #content .fullwidth-category .cat-left .title, #content .fullwidth-category .cat-right .title {
          font-family: "Roboto", sans-serif;
          font-size: 22px;
          font-size: 1.375rem;
          margin-bottom: 20px; } }
    #content .fullwidth-category .cat-left .pilot, #content .fullwidth-category .cat-right .pilot {
      *zoom: 1;
      float: left;
      clear: none;
      text-align: inherit;
      width: 22.75%;
      margin-left: 0%;
      margin-right: 3%; }
      #content .fullwidth-category .cat-left .pilot:before, #content .fullwidth-category .cat-left .pilot:after, #content .fullwidth-category .cat-right .pilot:before, #content .fullwidth-category .cat-right .pilot:after {
        content: '';
        display: table; }
      #content .fullwidth-category .cat-left .pilot:after, #content .fullwidth-category .cat-right .pilot:after {
        clear: both; }
      #content .fullwidth-category .cat-left .pilot:last-child, #content .fullwidth-category .cat-right .pilot:last-child {
        margin-right: 0%; }
    #content .fullwidth-category .cat-left .content, #content .fullwidth-category .cat-right .content {
      *zoom: 1;
      float: left;
      clear: none;
      text-align: inherit;
      width: 74.25%;
      margin-left: 0%;
      margin-right: 3%; }
      #content .fullwidth-category .cat-left .content:before, #content .fullwidth-category .cat-left .content:after, #content .fullwidth-category .cat-right .content:before, #content .fullwidth-category .cat-right .content:after {
        content: '';
        display: table; }
      #content .fullwidth-category .cat-left .content:after, #content .fullwidth-category .cat-right .content:after {
        clear: both; }
      #content .fullwidth-category .cat-left .content:last-child, #content .fullwidth-category .cat-right .content:last-child {
        margin-right: 0%; }
  #content .fullwidth-category .subtitle {
    font-family: "Roboto", sans-serif;
    font-size: 22px;
    font-size: 1.375rem;
    background: none;
    color: #97d1da;
    min-width: 1px;
    margin-left: 20px;
    font-weight: 300;
    text-align: left;
    display: block;
    line-height: 34px; }
    #content .fullwidth-category .subtitle a {
      font-family: "Roboto", sans-serif;
      font-size: 22px;
      font-size: 1.375rem;
      line-height: 27px;
      font-weight: 300;
      color: #97d1da; }
    @media only screen and (max-width: 480px) {
      #content .fullwidth-category .subtitle {
        margin-left: 0px;
        padding-left: 0px;
        display: block; } }
  #content .fullwidth-category .weekly {
    margin-bottom: 8px; }
    #content .fullwidth-category .weekly:nth-last-child(1) {
      margin-bottom: 0px; }
    @media only screen and (max-width: 480px) {
      #content .fullwidth-category .weekly {
        margin-bottom: 25px; } }
    #content .fullwidth-category .weekly .subtitle, #content .fullwidth-category .weekly .author, #content .fullwidth-category .weekly .heading {
      display: inline-block;
      margin-right: 3%;
      vertical-align: baseline;
      line-height: 100%; }
      @media only screen and (max-width: 480px) {
        #content .fullwidth-category .weekly .subtitle, #content .fullwidth-category .weekly .author, #content .fullwidth-category .weekly .heading {
          margin-bottom: 10px; } }
    #content .fullwidth-category .weekly .subtitle {
      width: 200px; }
    #content .fullwidth-category .weekly .author {
      width: 225px; }
    #content .fullwidth-category .weekly .heading {
      width: auto; }
      @media only screen and (max-width: 480px) {
        #content .fullwidth-category .weekly .heading {
          line-height: 150%; } }
  #content .hr {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 100%;
    margin-left: 0%;
    margin-right: 3%;
    height: 1px;
    margin: 40px 0;
    background-image: linear-gradient(to right, #666666 0%, #666666 60%, rgba(0, 0, 0, 0) 60%);
    background-position: 0 bottom;
    background-size: 5px 1px;
    background-repeat: repeat-x; }
    #content .hr:before, #content .hr:after {
      content: '';
      display: table; }
    #content .hr:after {
      clear: both; }
    #content .hr:last-child {
      margin-right: 0%; }
    #content .hr.medium-viewport, #content .hr.small-viewport {
      display: none; }
    @media only screen and (max-width: 480px) {
      #content .hr {
        margin-top: 33px; } }
  #content .login-area {
    visibility: hidden;
    height: 0px;
    opacity: 0;
    -moz-transition: height 0.5s ease-in-out, visibility 0.5s ease-in-out, opacity 0.5s ease-in-out;
    -o-transition: height 0.5s ease-in-out, visibility 0.5s ease-in-out, opacity 0.5s ease-in-out;
    -webkit-transition: height 0.5s ease-in-out, visibility 0.5s ease-in-out, opacity 0.5s ease-in-out;
    transition: height 0.5s ease-in-out, visibility 0.5s ease-in-out, opacity 0.5s ease-in-out; }
    #content .login-area .small-text a {
      font-family: "Roboto", sans-serif;
      font-size: 41px;
      font-size: 2.5625rem; }
    #content .login-area .layout {
      display: inline-block;
      margin-right: 25px; }
      #content .login-area .layout label {
        width: 100px;
        margin-right: 20px;
        font-family: "Roboto", sans-serif;
        font-family: "Roboto", sans-serif;
        font-size: 12px;
        font-size: 0.75rem;
        font-size: 0.75rem;
        border-radius: 10px;
        padding: 2px 12px 0 12px;
        height: 19px;
        min-width: 88px;
        float: none;
        display: inline-block;
        text-align: center;
        background: #97d1da;
        line-height: 16px;
        color: #fff;
        font-weight: 300; }
      #content .login-area .layout input {
        width: 221px;
        height: 32px;
        margin-bottom: 20px;
        border: 1px solid #97d1da;
        padding: 0 17px; }
  #content .login {
    text-align: right; }
    #content .login > div {
      cursor: pointer;
      display: inline-block;
      margin: 0px 53px 20px 0px; }
      #content .login > div:nth-last-child(1) {
        margin-right: 0px; }
  #content .toggle-login {
    color: #97d1da; }
  #content .closed {
    height: 0;
    visibility: hidden;
    -moz-transition-delay: 0s, 0.25s;
    -o-transition-delay: 0s, 0.25s;
    -webkit-transition-delay: 0s, 0.25s;
    transition-delay: 0s, 0.25s; }
  #content .on {
    text-align: right; }
    #content .on .user, #content .on .loginLogoutBtn, #content .on div {
      display: inline-block;
      cursor: pointer;
      margin: 0px 53px 20px 0px; }
      #content .on .user:nth-last-child(1), #content .on .loginLogoutBtn:nth-last-child(1), #content .on div:nth-last-child(1) {
        margin-right: 0px; }
  #content .choose-category {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 39.91667%;
    margin-left: 0%;
    margin-right: 3%;
    text-align: left;
    display: inline-block; }
    #content .choose-category:before, #content .choose-category:after {
      content: '';
      display: table; }
    #content .choose-category:after {
      clear: both; }
    #content .choose-category:last-child {
      margin-right: 0%; }
    #content .choose-category .selectricWrapper {
      width: auto; }
      @media only screen and (max-width: 480px) {
        #content .choose-category .selectricWrapper {
          width: 100%; } }
    #content .choose-category .selectric {
      border: none;
      background: none;
      display: inline-block;
      cursor: pointer; }
      @media only screen and (max-width: 480px) {
        #content .choose-category .selectric {
          width: 100%; } }
      #content .choose-category .selectric .label {
        font-family: "Roboto", sans-serif;
        font-size: 22px;
        font-size: 1.375rem;
        border-radius: 25px;
        background-color: #97d1da;
        text-align: center;
        color: #FFFFFF;
        min-width: 140px;
        padding: 10px 14px;
        display: inline-block;
        margin-right: 0;
        line-height: 20px;
        min-width: inherit;
        margin-right: 30px;
        overflow: visible;
        position: relative;
        width: 100%; }
        #content .choose-category .selectric .label:after {
          content: '';
          background-image: url('../images/icons-s7fe3a85ef8.png');
          background-position: -22px 0;
          background-repeat: no-repeat;
          overflow: hidden;
          display: block;
          height: 22px;
          width: 8px;
          -webkit-transform: rotate(90deg);
          -ms-transform: rotate(90deg);
          transform: rotate(90deg);
          display: inline-block;
          margin-top: 10px;
          position: absolute;
          right: -20px;
          top: 2px; }
          @media (min-device-pixel-ratio: 2), (min-resolution: 144dppx) {
            #content .choose-category .selectric .label:after {
              background-image: url('../images/icons-2x-sc05eedd096.png');
              background-size: 18.5px 153.5px;
              background-position: -11px 0;
              height: 11px;
              width: 4px; } }
          @media only screen and (max-width: 480px) {
            #content .choose-category .selectric .label:after {
              margin-top: 0px; } }
        @media only screen and (max-width: 480px) {
          #content .choose-category .selectric .label {
            font-family: "Roboto", sans-serif;
            font-size: 14px;
            font-size: 0.875rem;
            padding: 2px 0;
            margin-bottom: 0;
            width: 80%;
            margin-right: 10px; } }
    #content .choose-category .selectricAbove .selectricItems {
      top: auto;
      bottom: -15px; }
      #content .choose-category .selectricAbove .selectricItems ul {
        margin-top: 0px;
        margin-bottom: 60px; }
    #content .choose-category .selectricItems {
      border: 1px solid #97d1da;
      top: -15px;
      left: -10px;
      width: 230px !important; }
      #content .choose-category .selectricItems ul {
        margin-top: 60px; }
      #content .choose-category .selectricItems .selectricScroll li {
        font-family: "Roboto", sans-serif;
        font-size: 17px;
        font-size: 1.0625rem;
        padding-left: 22px;
        background: #fff;
        color: #97d1da;
        border: none;
        line-height: 45px;
        height: 45px; }
        #content .choose-category .selectricItems .selectricScroll li a {
          display: block;
          width: 100%;
          height: 100%; }
        #content .choose-category .selectricItems .selectricScroll li:hover {
          background: #dceff2;
          color: #97d1da;
          overflow: hidden; }
      #content .choose-category .selectricItems .selectricScroll .selectricInput {
        color: transparent;
        display: none; }
      #content .choose-category .selectricItems .selectricScroll .selected {
        display: none; }
  #content .category-filter-head {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 100%;
    margin-left: 0%;
    margin-right: 3%;
    border-bottom: 1px dashed #484C52;
    margin-bottom: 28px;
    position: relative;
    text-align: right;
    margin-top: 33px; }
    #content .category-filter-head:before, #content .category-filter-head:after {
      content: '';
      display: table; }
    #content .category-filter-head:after {
      clear: both; }
    #content .category-filter-head:last-child {
      margin-right: 0%; }
    @media only screen and (max-width: 480px) {
      #content .category-filter-head {
        margin-top: 30px; } }
    #content .category-filter-head .ui-datepicker {
      padding: 10px;
      border: 1px solid #484C52;
      background-color: #fff;
      border-top: 3px solid #97d1da; }
    #content .category-filter-head .ui-datepicker-title {
      text-align: center; }
    #content .category-filter-head .date {
      color: #97d1da;
      font-family: "Roboto", sans-serif;
      font-size: 30px;
      font-size: 1.875rem;
      display: inline-block;
      cursor: pointer;
      font-weight: 500; }
      #content .category-filter-head .date:after {
        content: '';
        background-image: url('../images/icons-s7fe3a85ef8.png');
        background-position: 0 0;
        background-repeat: no-repeat;
        overflow: hidden;
        display: block;
        height: 8px;
        width: 22px;
        display: inline-block; }
        @media (min-device-pixel-ratio: 2), (min-resolution: 144dppx) {
          #content .category-filter-head .date:after {
            background-image: url('../images/icons-2x-sc05eedd096.png');
            background-size: 18.5px 153.5px;
            background-position: 0 0;
            height: 4px;
            width: 11px; } }
      @media only screen and (max-width: 750px) {
        #content .category-filter-head .date {
          display: inline-block;
          vertical-align: middle;
          margin-bottom: 1px; } }
      @media only screen and (max-width: 480px) {
        #content .category-filter-head .date {
          font-family: "Roboto", sans-serif;
          font-size: 17px;
          font-size: 1.0625rem;
          display: inherit;
          text-align: right;
          line-height: 16px;
          display: inline-block;
          vertical-align: middle;
          margin-bottom: 1px; } }
    #content .category-filter-head .datepicker-container {
      height: 28px;
      position: absolute;
      top: 40px;
      right: 0; }
      @media only screen and (max-width: 480px) {
        #content .category-filter-head .datepicker-container {
          top: 30px;
          width: 100%; } }
      #content .category-filter-head .datepicker-container .ui-datepicker-prev {
        float: left;
        cursor: pointer;
        display: inline-block; }
        #content .category-filter-head .datepicker-container .ui-datepicker-prev:before {
          content: '';
          background-image: url('../images/icons-s7fe3a85ef8.png');
          background-position: -22px 0;
          background-repeat: no-repeat;
          overflow: hidden;
          display: block;
          height: 22px;
          width: 8px;
          -webkit-transform: rotate(180deg);
          -ms-transform: rotate(180deg);
          transform: rotate(180deg);
          display: inline-block;
          margin-right: 5px; }
          @media (min-device-pixel-ratio: 2), (min-resolution: 144dppx) {
            #content .category-filter-head .datepicker-container .ui-datepicker-prev:before {
              background-image: url('../images/icons-2x-sc05eedd096.png');
              background-size: 18.5px 153.5px;
              background-position: -11px 0;
              height: 11px;
              width: 4px; } }
      #content .category-filter-head .datepicker-container .ui-datepicker-next {
        cursor: pointer;
        display: inline-block;
        float: right; }
        #content .category-filter-head .datepicker-container .ui-datepicker-next:after {
          content: '';
          background-image: url('../images/icons-s7fe3a85ef8.png');
          background-position: -22px 0;
          background-repeat: no-repeat;
          overflow: hidden;
          display: block;
          height: 22px;
          width: 8px;
          display: inline-block;
          margin-left: 5px; }
          @media (min-device-pixel-ratio: 2), (min-resolution: 144dppx) {
            #content .category-filter-head .datepicker-container .ui-datepicker-next:after {
              background-image: url('../images/icons-2x-sc05eedd096.png');
              background-size: 18.5px 153.5px;
              background-position: -11px 0;
              height: 11px;
              width: 4px; } }
      #content .category-filter-head .datepicker-container .ui-datepicker-current-day a {
        font-weight: bold; }
      #content .category-filter-head .datepicker-container .ui-widget-header .ui-state-disabled {
        visibility: hidden; }
    #content .category-filter-head .ui-datepicker-calendar {
      border-collapse: collapse;
      width: 526px;
      background: #fff; }
      @media only screen and (max-width: 960px) {
        #content .category-filter-head .ui-datepicker-calendar {
          width: 400px; } }
      @media only screen and (max-width: 750px) {
        #content .category-filter-head .ui-datepicker-calendar {
          width: 300px; } }
      @media only screen and (max-width: 480px) {
        #content .category-filter-head .ui-datepicker-calendar {
          width: 100%; } }
      #content .category-filter-head .ui-datepicker-calendar th {
        text-align: center;
        font-weight: 300;
        height: 35px;
        vertical-align: middle; }
        #content .category-filter-head .ui-datepicker-calendar th span {
          font-family: "Roboto", sans-serif;
          font-size: 14px;
          font-size: 0.875rem; }
      #content .category-filter-head .ui-datepicker-calendar td {
        text-align: center;
        border: 1px solid #484C52;
        height: 28px;
        vertical-align: middle; }
        #content .category-filter-head .ui-datepicker-calendar td span {
          font-family: "Roboto", sans-serif;
          font-size: 14px;
          font-size: 0.875rem; }
        #content .category-filter-head .ui-datepicker-calendar td a {
          font-family: "Roboto", sans-serif;
          font-size: 14px;
          font-size: 0.875rem; }
      #content .category-filter-head .ui-datepicker-calendar .ui-datepicker-today {
        border-bottom: 3px solid #97d1da; }
        #content .category-filter-head .ui-datepicker-calendar .ui-datepicker-today a {
          color: #97d1da;
          font-weight: 500; }
  #content .teamTable {
    margin-top: 30px; }
    #content .teamTable > div {
      *zoom: 1; }
      #content .teamTable > div:before, #content .teamTable > div:after {
        content: '';
        display: table; }
      #content .teamTable > div:after {
        clear: both; }
    #content .teamTable .image {
      *zoom: 1;
      float: left;
      clear: none;
      text-align: inherit;
      width: 17.6%;
      margin-left: 0%;
      margin-right: 3%;
      display: inline-block;
      max-width: 130px;
      margin-right: 20px;
      margin-bottom: 50px; }
      #content .teamTable .image:before, #content .teamTable .image:after {
        content: '';
        display: table; }
      #content .teamTable .image:after {
        clear: both; }
      #content .teamTable .image:last-child {
        margin-right: 0%; }
      @media only screen and (max-width: 480px) {
        #content .teamTable .image {
          display: block;
          clear: both;
          float: none;
          width: 100%;
          margin-left: auto;
          margin-right: auto; }
          #content .teamTable .image:first-child {
            margin-left: auto; }
          #content .teamTable .image:last-child {
            margin-right: auto; } }
    #content .teamTable .content {
      *zoom: 1;
      float: left;
      clear: none;
      text-align: inherit;
      width: 79.4%;
      margin-left: 0%;
      margin-right: 3%;
      display: inline-block;
      vertical-align: top; }
      #content .teamTable .content:before, #content .teamTable .content:after {
        content: '';
        display: table; }
      #content .teamTable .content:after {
        clear: both; }
      #content .teamTable .content:last-child {
        margin-right: 0%; }
      @media only screen and (max-width: 480px) {
        #content .teamTable .content {
          display: block;
          clear: both;
          float: none;
          width: 100%;
          margin-left: auto;
          margin-right: auto; }
          #content .teamTable .content:first-child {
            margin-left: auto; }
          #content .teamTable .content:last-child {
            margin-right: auto; } }
  #content .teamWidth {
    max-width: 900px; }

.page-content .articleSearchResult, .layout1Column .articleSearchResult {
  margin-bottom: 25px; }
  .page-content .articleSearchResult a, .layout1Column .articleSearchResult a {
    font-family: "Roboto", sans-serif;
    font-size: 22px;
    font-size: 1.375rem; }
    .page-content .articleSearchResult a .result-title, .layout1Column .articleSearchResult a .result-title {
      margin-bottom: 10px; }
  .page-content .articleSearchResult .result-content, .layout1Column .articleSearchResult .result-content {
    font-family: "Roboto", sans-serif;
    font-size: 17px;
    font-size: 1.0625rem;
    margin-bottom: 40px; }
.page-content .cat-left, .page-content .cat-right, .layout1Column .cat-left, .layout1Column .cat-right {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 48.5%;
  margin-left: 0%;
  margin-right: 3%; }
  .page-content .cat-left:before, .page-content .cat-left:after, .page-content .cat-right:before, .page-content .cat-right:after, .layout1Column .cat-left:before, .layout1Column .cat-left:after, .layout1Column .cat-right:before, .layout1Column .cat-right:after {
    content: '';
    display: table; }
  .page-content .cat-left:after, .page-content .cat-right:after, .layout1Column .cat-left:after, .layout1Column .cat-right:after {
    clear: both; }
  .page-content .cat-left:nth-of-type(2n), .page-content .cat-right:nth-of-type(2n), .layout1Column .cat-left:nth-of-type(2n), .layout1Column .cat-right:nth-of-type(2n) {
    margin-right: 0%;
    float: right; }
  .page-content .cat-left:nth-of-type(2n + 1), .page-content .cat-right:nth-of-type(2n + 1), .layout1Column .cat-left:nth-of-type(2n + 1), .layout1Column .cat-right:nth-of-type(2n + 1) {
    clear: both; }
  .page-content .cat-left h2, .page-content .cat-right h2, .layout1Column .cat-left h2, .layout1Column .cat-right h2 {
    padding-bottom: 17px; }
  .page-content .cat-left .cat-title, .page-content .cat-right .cat-title, .layout1Column .cat-left .cat-title, .layout1Column .cat-right .cat-title {
    margin-top: 50px; }
    @media only screen and (max-width: 480px) {
      .page-content .cat-left .cat-title, .page-content .cat-right .cat-title, .layout1Column .cat-left .cat-title, .layout1Column .cat-right .cat-title {
        margin-top: 0; } }
  @media only screen and (max-width: 750px) {
    .page-content .cat-left, .page-content .cat-right, .layout1Column .cat-left, .layout1Column .cat-right {
      *zoom: 1;
      float: left;
      clear: none;
      text-align: inherit;
      width: 100%;
      margin-left: 0%;
      margin-right: 3%; }
      .page-content .cat-left:before, .page-content .cat-left:after, .page-content .cat-right:before, .page-content .cat-right:after, .layout1Column .cat-left:before, .layout1Column .cat-left:after, .layout1Column .cat-right:before, .layout1Column .cat-right:after {
        content: '';
        display: table; }
      .page-content .cat-left:after, .page-content .cat-right:after, .layout1Column .cat-left:after, .layout1Column .cat-right:after {
        clear: both; }
      .page-content .cat-left:nth-of-type(2n), .page-content .cat-right:nth-of-type(2n), .layout1Column .cat-left:nth-of-type(2n), .layout1Column .cat-right:nth-of-type(2n) {
        margin-right: 3%;
        float: left; }
      .page-content .cat-left:nth-of-type(2n + 1), .page-content .cat-right:nth-of-type(2n + 1), .layout1Column .cat-left:nth-of-type(2n + 1), .layout1Column .cat-right:nth-of-type(2n + 1) {
        clear: none; }
      .page-content .cat-left:last-child, .page-content .cat-right:last-child, .layout1Column .cat-left:last-child, .layout1Column .cat-right:last-child {
        margin-right: 0%; } }
  @media only screen and (max-width: 1024px) {
    .page-content .cat-left, .page-content .cat-right, .layout1Column .cat-left, .layout1Column .cat-right {
      min-height: 0px; } }
  @media only screen and (max-width: 1024px) {
    .page-content .cat-left, .page-content .cat-right, .layout1Column .cat-left, .layout1Column .cat-right {
      margin-bottom: 35px; } }
.page-content .more-category-link, .layout1Column .more-category-link {
  *zoom: 1;
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 100%;
  margin-left: 0%;
  margin-right: 3%;
  text-align: right;
  margin-top: 26px; }
  .page-content .more-category-link:before, .page-content .more-category-link:after, .layout1Column .more-category-link:before, .layout1Column .more-category-link:after {
    content: '';
    display: table; }
  .page-content .more-category-link:after, .layout1Column .more-category-link:after {
    clear: both; }
  .page-content .more-category-link:before, .page-content .more-category-link:after, .layout1Column .more-category-link:before, .layout1Column .more-category-link:after {
    content: '';
    display: table; }
  .page-content .more-category-link:after, .layout1Column .more-category-link:after {
    clear: both; }
  .page-content .more-category-link:last-child, .layout1Column .more-category-link:last-child {
    margin-right: 0%; }
  @media only screen and (max-width: 480px) {
    .page-content .more-category-link, .layout1Column .more-category-link {
      margin-top: 0px; } }
  .page-content .more-category-link a, .layout1Column .more-category-link a {
    font-weight: 500;
    line-height: 20px; }
  .page-content .more-category-link .arrow, .layout1Column .more-category-link .arrow {
    background-image: url('../images/icons-s7fe3a85ef8.png');
    background-position: -22px 0;
    background-repeat: no-repeat;
    overflow: hidden;
    display: block;
    height: 22px;
    width: 8px;
    margin: 0 0 0 6px;
    display: inline-block;
    padding-right: 4px; }
    @media (min-device-pixel-ratio: 2), (min-resolution: 144dppx) {
      .page-content .more-category-link .arrow, .layout1Column .more-category-link .arrow {
        background-image: url('../images/icons-2x-sc05eedd096.png');
        background-size: 18.5px 153.5px;
        background-position: -11px 0;
        height: 11px;
        width: 4px; } }
    @media only screen and (max-width: 1024px) {
      .page-content .more-category-link .arrow, .layout1Column .more-category-link .arrow {
        margin-left: 4px;
        padding-right: 0; } }
    @media only screen and (max-width: 960px) {
      .page-content .more-category-link .arrow, .layout1Column .more-category-link .arrow {
        padding-right: 0; } }
    @media only screen and (max-width: 480px) {
      .page-content .more-category-link .arrow, .layout1Column .more-category-link .arrow {
        margin-left: 4px;
        padding-right: 0; } }

.arrow-down {
  background-image: url('../images/icons-s7fe3a85ef8.png');
  background-position: -22px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 22px;
  width: 8px;
  display: inline-block;
  vertical-align: baseline; }
  @media (min-device-pixel-ratio: 2), (min-resolution: 144dppx) {
    .arrow-down {
      background-image: url('../images/icons-2x-sc05eedd096.png');
      background-size: 18.5px 153.5px;
      background-position: -11px 0;
      height: 11px;
      width: 4px; } }

.resultlist {
  min-height: 160px;
  background-color: #97d1da; }

.pager {
  margin-top: 20px; }

.pagination .paginator-small {
  clear: both;
  display: block;
  margin-bottom: 20px;
  text-align: left; }
  .pagination .paginator-small a {
    font-family: "Roboto", sans-serif;
    font-size: 17px;
    font-size: 1.0625rem;
    vertical-align: baseline;
    margin-right: 20px;
    color: #97d1da; }
  .pagination .paginator-small:nth-last-child(1) {
    margin-right: 0; }
.pagination .current {
  color: #97d1da;
  text-decoration: underline; }
.pagination .prev:before {
  background-image: url('../images/icons-s7fe3a85ef8.png');
  background-position: -22px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 22px;
  width: 8px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  content: '';
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 2px;
  vertical-align: middle; }
  @media (min-device-pixel-ratio: 2), (min-resolution: 144dppx) {
    .pagination .prev:before {
      background-image: url('../images/icons-2x-sc05eedd096.png');
      background-size: 18.5px 153.5px;
      background-position: -11px 0;
      height: 11px;
      width: 4px; } }
.pagination .next:after {
  background-image: url('../images/icons-s7fe3a85ef8.png');
  background-position: -22px 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 22px;
  width: 8px;
  content: '';
  display: inline-block;
  margin-left: 5px;
  margin-bottom: 2px;
  vertical-align: middle; }
  @media (min-device-pixel-ratio: 2), (min-resolution: 144dppx) {
    .pagination .next:after {
      background-image: url('../images/icons-2x-sc05eedd096.png');
      background-size: 18.5px 153.5px;
      background-position: -11px 0;
      height: 11px;
      width: 4px; } }
.pagination a, .pagination span {
  margin-right: 10px; }
  .pagination a:nth-child(1), .pagination span:nth-child(1) {
    margin-right: 10px; }
  .pagination a:nth-last-child(1), .pagination span:nth-last-child(1) {
    margin: 0; }

.highlight {
  vertical-align: baseline; }

.selectricInput {
  color: transparent;
  display: none; }

.selectricItems {
  border: 1px solid #97d1da; }

.menu-small {
  display: none; }
  @media only screen and (max-width: 480px) {
    .menu-small {
      display: block;
      border: 1px solid #97d1da;
      margin-top: 33px; } }
  .menu-small ul.navVor9navigation {
    display: none; }
    .menu-small ul.navVor9navigation li {
      line-height: 40px; }
      .menu-small ul.navVor9navigation li a {
        display: block;
        width: 100%; }
      .menu-small ul.navVor9navigation li:nth-child(1) {
        border-top: 1px solid #97d1da; }
  .menu-small .menu-trigger {
    width: 100%;
    height: 45px;
    display: none;
    line-height: 45px; }
    @media only screen and (max-width: 480px) {
      .menu-small .menu-trigger {
        display: block; } }
    .menu-small .menu-trigger:after {
      background-image: url('../images/icons-s7fe3a85ef8.png');
      background-position: 0 0;
      background-repeat: no-repeat;
      overflow: hidden;
      display: block;
      height: 8px;
      width: 22px;
      content: '';
      display: inline-block;
      margin-left: 5px; }
      @media (min-device-pixel-ratio: 2), (min-resolution: 144dppx) {
        .menu-small .menu-trigger:after {
          background-image: url('../images/icons-2x-sc05eedd096.png');
          background-size: 18.5px 153.5px;
          background-position: 0 0;
          height: 4px;
          width: 11px; } }

.reise, .counter, .bt, .mw {
  max-width: 100%;
  max-height: 100%;
  width: 185px;
  height: 114px;
  display: inline-block;
  background-size: 100%;
  background-repeat: no-repeat; }

.reise {
  background-image: url("../images/img-2x/logo-reise.png"); }
  .reise:hover {
    background-image: url("../images/img-2x/logo.png"); }

.counter {
  background-image: url("../images/img-2x/logo-counter.png"); }
  .counter:hover {
    background-image: url("../images/img-2x/logo.png"); }

.bt {
  background-image: url("../images/img-2x/logo-business-travel.png"); }
  .bt:hover {
    background-image: url("../images/img-2x/logo.png"); }

.mw {
  background-image: url("../images/img-2x/logo-managerwissen.png"); }
  .mw:hover {
    background-image: url("../images/img-2x/logo.png"); }

.media {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 100%;
  margin-left: 0%;
  margin-right: 3%;
  margin-bottom: 23px; }
  .media:before, .media:after {
    content: '';
    display: table; }
  .media:after {
    clear: both; }
  .media:last-child {
    margin-right: 0%; }
  .media .media-headline {
    color: #97d1da;
    font-weight: 500;
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%; }
    .media .media-headline:before, .media .media-headline:after {
      content: '';
      display: table; }
    .media .media-headline:after {
      clear: both; }
    .media .media-headline:last-child {
      margin-right: 0%; }
  .media .media-download {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%;
    text-align: right; }
    .media .media-download:before, .media .media-download:after {
      content: '';
      display: table; }
    .media .media-download:after {
      clear: both; }
    .media .media-download:last-child {
      margin-right: 0%; }
    .media .media-download a {
      display: inline-block; }
      .media .media-download a:after {
        background-image: url('../images/icons-s7fe3a85ef8.png');
        background-position: -22px 0;
        background-repeat: no-repeat;
        overflow: hidden;
        display: block;
        height: 22px;
        width: 8px;
        content: '';
        display: inline-block;
        margin-left: 10px; }
        @media (min-device-pixel-ratio: 2), (min-resolution: 144dppx) {
          .media .media-download a:after {
            background-image: url('../images/icons-2x-sc05eedd096.png');
            background-size: 18.5px 153.5px;
            background-position: -11px 0;
            height: 11px;
            width: 4px; } }

.accordion-title {
  border-radius: 25px;
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  font-size: 1.0625rem;
  width: calc(100% - 30px);
  padding: 4px 15px 0px 15px;
  display: inline-block;
  border-bottom: 1px solid #fff;
  background: #97d1da;
  transition: all linear 0.15s;
  /* Type */
  color: #fff; }
  .accordion-title:before {
    background: url("../images/icons/arrow.png");
    background-repeat: no-repeat;
    display: inline-block;
    content: '';
    width: 38px;
    height: 30px;
    transform: rotate(90deg);
    vertical-align: middle; }
  .accordion-title .arrow {
    background: url("../images/icons/arrow-right.png");
    background-repeat: no-repeat;
    display: inline-block;
    width: 22px;
    height: 18px;
    content: '';
    background-size: 40%;
    margin-right: 10px;
    transform: rotate(90deg);
    margin-top: 8px; }
    @media only screen and (max-width: 480px) {
      .accordion-title .arrow {
        width: 20px; } }

.accordion-title.active {
  /* Type */
  text-decoration: none; }

.accordion-section:last-child .accordion-title {
  border-bottom: none; }

.accordion-content {
  padding: 32px 15px 47px 15px;
  display: none; }
  .accordion-content .table-left {
    max-width: 40%;
    display: inline-block;
    margin-right: 3%; }
    @media only screen and (max-width: 480px) {
      .accordion-content .table-left {
        margin-right: 0px;
        margin-bottom: 25px;
        max-width: 100%; } }
  .accordion-content .table-right {
    max-width: 57%;
    display: inline-block; }
    @media only screen and (max-width: 480px) {
      .accordion-content .table-right {
        margin: 0px;
        max-width: 100%; } }
  .accordion-content em {
    font-style: normal;
    color: #97d1da; }

.home-left-headline {
  display: inline-block;
  text-align: left;
  width: 75%;
  margin-bottom: 20px; }

.home-right-download {
  display: inline-block;
  text-align: right;
  width: 24%; }
  .home-right-download:after {
    background-image: url('../images/icons-s7fe3a85ef8.png');
    background-position: -22px 0;
    background-repeat: no-repeat;
    overflow: hidden;
    display: block;
    height: 22px;
    width: 8px;
    margin: 0 0 0 6px;
    content: '';
    display: inline-block; }
    @media (min-device-pixel-ratio: 2), (min-resolution: 144dppx) {
      .home-right-download:after {
        background-image: url('../images/icons-2x-sc05eedd096.png');
        background-size: 18.5px 153.5px;
        background-position: -11px 0;
        height: 11px;
        width: 4px; } }

#contactForm {
  max-width: 750px; }
  #contactForm label, #contactForm input, #contactForm textarea {
    display: inline-block;
    vertical-align: top; }
  #contactForm label {
    width: 100px;
    margin-right: 20px;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-size: 0.75rem;
    border-radius: 10px;
    padding: 2px 12px 0 12px;
    height: 19px;
    min-width: 88px;
    float: none;
    display: inline-block;
    text-align: center;
    background-color: #97d1da;
    line-height: 16px;
    color: #fff;
    font-weight: 300; }
    @media only screen and (max-width: 960px) {
      #contactForm label {
        width: 90px; } }
    @media only screen and (max-width: 480px) {
      #contactForm label {
        width: 90px;
        margin-bottom: 10px; } }
  #contactForm input, #contactForm textarea {
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-size: 0.75rem;
    width: 221px;
    height: 48px;
    margin-bottom: 25px;
    border: 1px solid #484C52;
    padding: 0 17px; }
    @media only screen and (max-width: 480px) {
      #contactForm input, #contactForm textarea {
        width: 85%; } }
  #contactForm input[type=submit] {
    font-family: "Roboto", sans-serif;
    font-size: 17px;
    font-size: 1.0625rem;
    font-weight: 300;
    color: #97d1da;
    border: none;
    width: auto;
    height: 29px;
    background-color: #fff; }
    @media only screen and (max-width: 480px) {
      #contactForm input[type=submit] {
        margin-left: 0;
        width: 40%; } }
    @media only screen and (max-width: 960px) {
      #contactForm input[type=submit] {
        margin-left: 124px; } }
  #contactForm textarea {
    vertical-align: middle;
    padding: 17px;
    height: 50px; }
  #contactForm #recaptcha {
    vertical-align: middle;
    width: 72.5%;
    display: inline-block; }
  #contactForm .send {
    padding: 0 17px;
    text-align: right;
    clear: both; }
    #contactForm .send input {
      padding: 0 5px;
      border: none;
      background: #fff; }
    #contactForm .send .send-arrow {
      background-image: url('../images/icons-s7fe3a85ef8.png');
      background-position: -22px 0;
      background-repeat: no-repeat;
      overflow: hidden;
      display: block;
      height: 22px;
      width: 8px;
      float: right;
      position: relative;
      top: 5px;
      left: 6px; }
      @media (min-device-pixel-ratio: 2), (min-resolution: 144dppx) {
        #contactForm .send .send-arrow {
          background-image: url('../images/icons-2x-sc05eedd096.png');
          background-size: 18.5px 153.5px;
          background-position: -11px 0;
          height: 11px;
          width: 4px; } }
  #contactForm .errors-go-here {
    float: none;
    margin-bottom: 50px; }
  #contactForm .contact-error {
    color: red;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-size: 0.75rem; }
  #contactForm #recaptcha_image {
    margin-bottom: 18px;
    height: 48px !important;
    width: 255px !important; }
    #contactForm #recaptcha_image img {
      border: 1px solid #666;
      cursor: pointer;
      height: 48px !important;
      width: 255px !important; }
      @media only screen and (max-width: 835px) {
        #contactForm #recaptcha_image img {
          height: 48px !important;
          width: 255px !important; } }
  #contactForm .cdfDivRow2, #contactForm .cdfDivRow3 {
    display: inline-block; }
    @media only screen and (max-width: 480px) {
      #contactForm .cdfDivRow2, #contactForm .cdfDivRow3 {
        display: block; } }
  @media only screen and (max-width: 480px) {
    #contactForm .cdfDivRow {
      width: 100%; } }

.tagcloud {
  text-align: center; }
  @media only screen and (max-width: 480px) {
    .tagcloud {
      padding: 25px 0px; } }
  .tagcloud ul {
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-size: 0.75rem; }
    .tagcloud ul li {
      display: inline-block;
      margin-right: 15px; }
  .tagcloud > a {
    border-radius: 25px;
    margin: 35px 5px 0px 0px;
    display: inline-block;
    background: #97d1da;
    color: #fff;
    padding: 3px 15px; }
  .tagcloud .tag, .tagcloud .tag1 a, .tagcloud .tag2 a, .tagcloud .tag3 a, .tagcloud .tag4 a, .tagcloud .tag5 a, .tagcloud .tag6 a {
    vertical-align: bottom;
    line-height: 18px; }
  .tagcloud .tag1 a {
    font-weight: 300; }
  .tagcloud .tag2 a {
    font-size: 120%; }
  .tagcloud .tag3 a {
    font-size: 140%;
    font-weight: 500; }
  .tagcloud .tag4 a {
    font-weight: 500; }
  .tagcloud .tag5 a {
    font-size: 180%;
    font-weight: 700; }
  .tagcloud .tag6 a {
    font-weight: 700; }

input[placeholder] {
  font-size: 17px;
  color: #97d1da;
  padding: 10px; }
  @media only screen and (max-width: 1024px) {
    input[placeholder] {
      width: 135px; } }
  @media only screen and (max-width: 750px) {
    input[placeholder] {
      width: 135px; } }
  @media only screen and (max-width: 750px) {
    input[placeholder] {
      width: 100%; } }
  @media only screen and (max-width: 480px) {
    input[placeholder] {
      width: auto; } }

header {
  *zoom: 1;
  width: 100%;
  /*-----------------------Positioning Main Menu Start---------------------*/
  /* main end */ }
  header:before, header:after {
    content: '';
    display: table; }
  header:after {
    clear: both; }
  header .wrap {
    height: 51px;
    background-color: #484C52; }
    header .wrap .meta-nav {
      *zoom: 1;
      width: auto;
      max-width: 1123px;
      float: none;
      display: block;
      margin-right: auto;
      margin-left: auto;
      padding-left: 30px;
      padding-right: 30px; }
      header .wrap .meta-nav:before, header .wrap .meta-nav:after {
        content: '';
        display: table; }
      header .wrap .meta-nav:after {
        clear: both; }
      header .wrap .meta-nav a {
        font-family: "Roboto", sans-serif;
        font-size: 12px;
        font-size: 0.75rem;
        font-weight: 300;
        color: #fff;
        line-height: 51px;
        text-decoration: none; }
      header .wrap .meta-nav ul li {
        margin-right: 56px;
        float: left; }
        header .wrap .meta-nav ul li.active {
          text-decoration: underline; }
      @media only screen and (max-width: 480px) {
        header .wrap .meta-nav {
          max-width: none;
          margin-right: 0;
          margin-left: 0;
          padding-left: 0;
          padding-right: 0;
          position: relative; }
          header .wrap .meta-nav li {
            width: 100%;
            float: none; }
          header .wrap .meta-nav a {
            line-height: 40px; } }
      header .wrap .meta-nav .meta-nav-left {
        *zoom: 1;
        float: left;
        clear: none;
        text-align: inherit;
        width: 65.66667%;
        margin-left: 0%;
        margin-right: 3%; }
        header .wrap .meta-nav .meta-nav-left:before, header .wrap .meta-nav .meta-nav-left:after {
          content: '';
          display: table; }
        header .wrap .meta-nav .meta-nav-left:after {
          clear: both; }
        header .wrap .meta-nav .meta-nav-left:last-child {
          margin-right: 0%; }
        @media only screen and (max-width: 480px) {
          header .wrap .meta-nav .meta-nav-left {
            *zoom: 1;
            float: left;
            clear: none;
            text-align: inherit;
            width: 100%;
            margin-left: 0%;
            margin-right: 3%;
            background-color: #97d1da; }
            header .wrap .meta-nav .meta-nav-left:before, header .wrap .meta-nav .meta-nav-left:after {
              content: '';
              display: table; }
            header .wrap .meta-nav .meta-nav-left:after {
              clear: both; }
            header .wrap .meta-nav .meta-nav-left:last-child {
              margin-right: 0%; }
            header .wrap .meta-nav .meta-nav-left li {
              border-bottom: 1px solid #97d1da; } }
        header .wrap .meta-nav .meta-nav-left .meta-nav-smart {
          display: none; }
          @media only screen and (max-width: 480px) {
            header .wrap .meta-nav .meta-nav-left .meta-nav-smart {
              display: block;
              color: #fff;
              background: #97d1da;
              padding: 15px; }
              header .wrap .meta-nav .meta-nav-left .meta-nav-smart span {
                background-image: url('../images/icons-s7fe3a85ef8.png');
                background-position: 0 -22px;
                background-repeat: no-repeat;
                overflow: hidden;
                display: block;
                height: 19px;
                width: 26px;
                margin: 0 auto;
                -webkit-tap-highlight-color: none;
                -webkit-touch-callout: none; } }
    @media only screen and (max-width: 480px) and (min-device-pixel-ratio: 2), only screen and (max-width: 480px) and (min-resolution: 144dppx) {
      header .wrap .meta-nav .meta-nav-left .meta-nav-smart span {
        background-image: url('../images/icons-2x-sc05eedd096.png');
        background-size: 18.5px 153.5px;
        background-position: 0 -11px;
        height: 9.5px;
        width: 13px; } }

        @media only screen and (max-width: 480px) {
          header .wrap .meta-nav .meta-nav-left .navTopnavigation {
            -moz-transition: all 0.25s linear;
            -o-transition: all 0.25s linear;
            -webkit-transition: all 0.25s linear;
            transition: all 0.25s linear;
            text-align: center;
            overflow-y: hidden;
            max-height: 0px; } }
        @media only screen and (max-width: 480px) {
          header .wrap .meta-nav .meta-nav-left .show {
            -moz-transition: all 0.5s linear;
            -o-transition: all 0.5s linear;
            -webkit-transition: all 0.5s linear;
            transition: all 0.5s linear;
            max-height: 150px; } }
  header .main {
    *zoom: 1;
    width: auto;
    max-width: 1123px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 30px;
    padding-right: 30px;
    padding: 20px 30px 12px 30px;
    text-align: justify;
    /* small menu for smartphone*/ }
    header .main:before, header .main:after {
      content: '';
      display: table; }
    header .main:after {
      clear: both; }
    @media only screen and (max-width: 480px) {
      header .main {
        text-align: center; } }
    @media only screen and (max-width: 480px) {
      header .main .menu-small .search-input {
        display: none; } }
    header .main:after {
      content: '';
      display: inline-block;
      width: 100%;
      height: 0;
      font-size: 0;
      line-height: 0; }
    header .main .logo {
      max-width: 185px;
      padding-top: 11px; }
      header .main .logo img {
        max-width: 100%; }
    header .main .logo, header .main nav {
      display: inline-block;
      vertical-align: middle; }
    header .main nav {
      font-family: "Roboto", sans-serif;
      font-size: 22px;
      font-size: 1.375rem;
      font-weight: 300;
      color: #97d1da;
      line-height: 21px;
      padding-right: 10px;
      /* main menu */ }
      @media only screen and (max-width: 480px) {
        header .main nav {
          display: none; } }
      header .main nav ul li {
        display: inline-block;
        padding: 0 20px; }
        header .main nav ul li .search-widget {
          display: inline-block;
          font-weight: 300; }
          header .main nav ul li .search-widget form {
            display: inline-block;
            width: 100%; }
        header .main nav ul li .search {
          background-image: url('../images/icons-s7fe3a85ef8.png');
          background-position: 0 -41px;
          background-repeat: no-repeat;
          overflow: hidden;
          display: block;
          height: 19px;
          width: 19px;
          display: inline-block;
          border: none;
          background-color: #fff; }
          @media (min-device-pixel-ratio: 2), (min-resolution: 144dppx) {
            header .main nav ul li .search {
              background-image: url('../images/icons-2x-sc05eedd096.png');
              background-size: 18.5px 153.5px;
              background-position: 0 -20px;
              height: 9.5px;
              width: 9.5px; } }
        header .main nav ul li:last-child {
          padding-right: 0; }
        header .main nav ul li.active {
          text-decoration: underline; }
      header .main nav #q {
        font-family: "Roboto", sans-serif;
        font-size: 17px;
        font-size: 1.0625rem;
        font-weight: 300;
        padding: 0 5px;
        border: none;
        background: #fff;
        width: 100px; }
      header .main nav .toggleSearchfield {
        -moz-transition-delay: 0s, 1s;
        -o-transition-delay: 0s, 1s;
        -webkit-transition-delay: 0s, 1s;
        transition-delay: 0s, 1s;
        width: 120px !important;
        opacity: 1 !important;
        visibility: visible !important;
        margin-right: 18px !important;
        padding: 0 5px; }
    header .main .selectric-menu-small {
      display: none;
      margin-top: 30px;
      width: 100%; }
      @media only screen and (max-width: 480px) {
        header .main .selectric-menu-small {
          display: block;
          margin-top: 33px; } }
      header .main .selectric-menu-small .selectric {
        border: 1px solid #97d1da;
        border-radius: 0;
        background-color: white;
        text-align: center; }
        header .main .selectric-menu-small .selectric .label {
          font-family: "Roboto", sans-serif;
          font-size: 12px;
          font-size: 0.75rem;
          margin: 0;
          line-height: 30px;
          display: inline-block; }
          header .main .selectric-menu-small .selectric .label:after {
            content: '';
            background-image: url('../images/icons-s7fe3a85ef8.png');
            background-position: -22px 0;
            background-repeat: no-repeat;
            overflow: hidden;
            display: block;
            height: 22px;
            width: 8px;
            -webkit-transform: rotate(90deg);
            -ms-transform: rotate(90deg);
            display: inline-block;
            margin-left: 15px;
            transform: rotate(90deg);
            position: relative;
            top: 6px; }
            @media (min-device-pixel-ratio: 2), (min-resolution: 144dppx) {
              header .main .selectric-menu-small .selectric .label:after {
                background-image: url('../images/icons-2x-sc05eedd096.png');
                background-size: 18.5px 153.5px;
                background-position: -11px 0;
                height: 11px;
                width: 4px; } }
      header .main .selectric-menu-small .selectricItems li {
        text-align: center; }
        header .main .selectric-menu-small .selectricItems li.search-input {
          display: none; }
        header .main .selectric-menu-small .selectricItems li:hover {
          background-color: #fff; }
      header .main .selectric-menu-small.selectricOpen .selectric {
        background: #fff; }
      header .main .selectric-menu-small .selectricScroll ul {
        overflow: hidden; }
        header .main .selectric-menu-small .selectricScroll ul li {
          width: 100%;
          padding-top: 10px;
          padding-bottom: 10px;
          border: none; }
          header .main .selectric-menu-small .selectricScroll ul li:nth-child(1), header .main .selectric-menu-small .selectricScroll ul li:nth-child(2) {
            display: none; }
          header .main .selectric-menu-small .selectricScroll ul li:hover {
            background-color: #97d1da; }
            header .main .selectric-menu-small .selectricScroll ul li:hover a {
              color: #fff; }
      header .main .selectric-menu-small .search-input {
        visibility: visible; }
  header .listSuche {
    float: right; }

.footer .upper {
  *zoom: 1;
  background-color: #97d1da;
  padding: 30px 0px; }
  .footer .upper:before, .footer .upper:after {
    content: '';
    display: table; }
  .footer .upper:after {
    clear: both; }
  .footer .upper .container {
    *zoom: 1;
    width: auto;
    max-width: 1123px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 30px;
    padding-right: 30px; }
    .footer .upper .container:before, .footer .upper .container:after {
      content: '';
      display: table; }
    .footer .upper .container:after {
      clear: both; }
.footer .bottom-bar {
  width: 100%;
  float: left;
  display: block;
  background-color: #484C52; }
  .footer .bottom-bar .social-media {
    text-align: right; }
    @media only screen and (max-width: 480px) {
      .footer .bottom-bar .social-media {
        text-align: center;
        padding: 10px 0px; } }
    .footer .bottom-bar .social-media .icon {
      display: inline-block;
      width: 32px;
      height: 32px;
      margin-right: 18px; }
      .footer .bottom-bar .social-media .icon:nth-last-child(1) {
        margin-right: 0px; }
    .footer .bottom-bar .social-media .facebook {
      background-image: url('../images/icons-s7fe3a85ef8.png');
      background-position: 0 -137px;
      background-repeat: no-repeat;
      overflow: hidden;
      display: block;
      height: 32px;
      width: 32px;
      display: inline-block; }
      @media (min-device-pixel-ratio: 2), (min-resolution: 144dppx) {
        .footer .bottom-bar .social-media .facebook {
          background-image: url('../images/icons-2x-sc05eedd096.png');
          background-size: 18.5px 153.5px;
          background-position: 0 -68px;
          height: 16px;
          width: 16px; } }
      .footer .bottom-bar .social-media .facebook:hover {
        background-image: url('../images/icons-s7fe3a85ef8.png');
        background-position: 0 -169px;
        background-repeat: no-repeat;
        overflow: hidden;
        display: block;
        height: 32px;
        width: 32px;
        display: inline-block; }
        @media (min-device-pixel-ratio: 2), (min-resolution: 144dppx) {
          .footer .bottom-bar .social-media .facebook:hover {
            background-image: url('../images/icons-2x-sc05eedd096.png');
            background-size: 18.5px 153.5px;
            background-position: 0 -84px;
            height: 16px;
            width: 16px; } }
    .footer .bottom-bar .social-media .twitter {
      background-image: url('../images/icons-s7fe3a85ef8.png');
      background-position: 0 -105px;
      background-repeat: no-repeat;
      overflow: hidden;
      display: block;
      height: 32px;
      width: 32px;
      display: inline-block; }
      @media (min-device-pixel-ratio: 2), (min-resolution: 144dppx) {
        .footer .bottom-bar .social-media .twitter {
          background-image: url('../images/icons-2x-sc05eedd096.png');
          background-size: 18.5px 153.5px;
          background-position: 0 -52px;
          height: 16px;
          width: 16px; } }
      .footer .bottom-bar .social-media .twitter:hover {
        background-image: url('../images/icons-s7fe3a85ef8.png');
        background-position: 0 -201px;
        background-repeat: no-repeat;
        overflow: hidden;
        display: block;
        height: 32px;
        width: 32px;
        display: inline-block; }
        @media (min-device-pixel-ratio: 2), (min-resolution: 144dppx) {
          .footer .bottom-bar .social-media .twitter:hover {
            background-image: url('../images/icons-2x-sc05eedd096.png');
            background-size: 18.5px 153.5px;
            background-position: 0 -100px;
            height: 16px;
            width: 16px; } }
.footer .container {
  *zoom: 1;
  width: auto;
  max-width: 1123px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 30px;
  padding-right: 30px;
  padding: 10px 0px;
  min-height: 32px; }
  .footer .container:before, .footer .container:after {
    content: '';
    display: table; }
  .footer .container:after {
    clear: both; }
  @media only screen and (max-width: 750px) {
    .footer .container {
      padding: 0px; } }
.footer a {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  text-decoration: underline; }
.footer .footer-left, .footer .footer-right {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 48.5%;
  margin-left: 0%;
  margin-right: 3%; }
  .footer .footer-left:before, .footer .footer-left:after, .footer .footer-right:before, .footer .footer-right:after {
    content: '';
    display: table; }
  .footer .footer-left:after, .footer .footer-right:after {
    clear: both; }
  .footer .footer-left:nth-of-type(2n), .footer .footer-right:nth-of-type(2n) {
    margin-right: 0%;
    float: right; }
  .footer .footer-left:nth-of-type(2n + 1), .footer .footer-right:nth-of-type(2n + 1) {
    clear: both; }
  @media only screen and (max-width: 750px) {
    .footer .footer-left, .footer .footer-right {
      text-align: center;
      *zoom: 1;
      float: left;
      clear: none;
      text-align: inherit;
      width: 100%;
      margin-left: 0%;
      margin-right: 3%;
      display: block;
      clear: both;
      float: none;
      width: 100%;
      margin-left: auto;
      margin-right: auto;
      *zoom: 1;
      width: auto;
      max-width: 1410px;
      float: none;
      display: block;
      margin-right: auto;
      margin-left: auto;
      padding-left: 0;
      padding-right: 0; }
      .footer .footer-left:before, .footer .footer-left:after, .footer .footer-right:before, .footer .footer-right:after {
        content: '';
        display: table; }
      .footer .footer-left:after, .footer .footer-right:after {
        clear: both; }
      .footer .footer-left:nth-of-type(2n), .footer .footer-right:nth-of-type(2n) {
        margin-right: 3%;
        float: left; }
      .footer .footer-left:nth-of-type(2n + 1), .footer .footer-right:nth-of-type(2n + 1) {
        clear: none; }
      .footer .footer-left:nth-of-type(1n), .footer .footer-right:nth-of-type(1n) {
        margin-right: 0%;
        float: right; }
      .footer .footer-left:nth-of-type(1n + 1), .footer .footer-right:nth-of-type(1n + 1) {
        clear: both; }
      .footer .footer-left:first-child, .footer .footer-right:first-child {
        margin-left: auto; }
      .footer .footer-left:last-child, .footer .footer-right:last-child {
        margin-right: auto; }
      .footer .footer-left:before, .footer .footer-left:after, .footer .footer-right:before, .footer .footer-right:after {
        content: '';
        display: table; }
      .footer .footer-left:after, .footer .footer-right:after {
        clear: both; } }
  @media only screen and (max-width: 480px) {
    .footer .footer-left, .footer .footer-right {
      *zoom: 1;
      float: left;
      clear: none;
      text-align: inherit;
      width: 100%;
      margin-left: 0%;
      margin-right: 3%;
      text-align: center; }
      .footer .footer-left:before, .footer .footer-left:after, .footer .footer-right:before, .footer .footer-right:after {
        content: '';
        display: table; }
      .footer .footer-left:after, .footer .footer-right:after {
        clear: both; }
      .footer .footer-left:last-child, .footer .footer-right:last-child {
        margin-right: 0%; } }
  @media only screen and (max-width: 960px) {
    .footer .footer-left .image-left, .footer .footer-left .image-right, .footer .footer-right .image-left, .footer .footer-right .image-right {
      text-align: center; } }
  .footer .footer-left .graphics, .footer .footer-right .graphics {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 31.33333%;
    margin-left: 0%;
    margin-right: 3%; }
    .footer .footer-left .graphics:before, .footer .footer-left .graphics:after, .footer .footer-right .graphics:before, .footer .footer-right .graphics:after {
      content: '';
      display: table; }
    .footer .footer-left .graphics:after, .footer .footer-right .graphics:after {
      clear: both; }
    .footer .footer-left .graphics:nth-of-type(2n), .footer .footer-right .graphics:nth-of-type(2n) {
      margin-right: 0%;
      float: right; }
    .footer .footer-left .graphics:nth-of-type(2n + 1), .footer .footer-right .graphics:nth-of-type(2n + 1) {
      clear: both; }
    @media only screen and (max-width: 750px) {
      .footer .footer-left .graphics, .footer .footer-right .graphics {
        *zoom: 1;
        float: left;
        clear: none;
        text-align: inherit;
        width: 100%;
        margin-left: 0%;
        margin-right: 3%;
        text-align: center; }
        .footer .footer-left .graphics:before, .footer .footer-left .graphics:after, .footer .footer-right .graphics:before, .footer .footer-right .graphics:after {
          content: '';
          display: table; }
        .footer .footer-left .graphics:after, .footer .footer-right .graphics:after {
          clear: both; }
        .footer .footer-left .graphics:nth-of-type(2n), .footer .footer-right .graphics:nth-of-type(2n) {
          margin-right: 3%;
          float: left; }
        .footer .footer-left .graphics:nth-of-type(2n + 1), .footer .footer-right .graphics:nth-of-type(2n + 1) {
          clear: none; }
        .footer .footer-left .graphics:nth-of-type(1n), .footer .footer-right .graphics:nth-of-type(1n) {
          margin-right: 0%;
          float: right; }
        .footer .footer-left .graphics:nth-of-type(1n + 1), .footer .footer-right .graphics:nth-of-type(1n + 1) {
          clear: both; } }
@media only screen and (max-width: 750px) {
  .footer .footer-left {
    padding-bottom: 53px; } }
@media only screen and (max-width: 480px) {
  .footer .footer-left {
    padding-bottom: 53px; } }
@media only screen and (max-width: 480px) {
  .footer .footer-right {
    padding-bottom: 21px; }
    .footer .footer-right .text-spacing {
      margin-bottom: 15px; }
      .footer .footer-right .text-spacing .heading {
        min-height: 1px; } }
.footer .image-left {
  width: 125px;
  height: 125px;
  display: inline-block;
  margin-right: 22px;
  margin-bottom: 20px;
  background: url("../images/img/footer-portrait.png") no-repeat;
  background-size: 125px 125px;
  background-position: 50% 50%;
  border-radius: 50%;
  border: 15px solid #dceff2;
  overflow: hidden;
  background-color: #dceff2; }
  @media only screen and (max-width: 1024px) {
    .footer .image-left {
      width: 90px;
      height: 90px;
      background-size: 100% 100%; } }
  @media only screen and (max-width: 960px) {
    .footer .image-left {
      width: 60px;
      height: 60px;
      background-size: 100% 100%; } }
  @media only screen and (max-width: 750px) {
    .footer .image-left {
      width: 90px;
      height: 90px;
      background-size: 100%; } }
  @media only screen and (max-width: 480px) {
    .footer .image-left {
      margin-left: 22px;
      margin-top: 8px;
      margin-bottom: 16px;
      border: 10px solid #666; } }
.footer .image-right {
  width: 155px;
  height: 155px;
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 20px;
  background: url("../../images/img/bullseye.png") no-repeat; }
  @media only screen and (max-width: 1024px) {
    .footer .image-right {
      width: 120px;
      height: 120px;
      background-size: 100% 100%; } }
  @media only screen and (max-width: 960px) {
    .footer .image-right {
      width: 90px;
      height: 90px;
      background-size: 100%; } }
  @media only screen and (max-width: 750px) {
    .footer .image-right {
      background-size: 100%;
      width: 120px;
      height: 120px; } }
  @media only screen and (max-width: 480px) {
    .footer .image-right {
      margin-right: 0;
      margin-bottom: 12px; } }
.footer article {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 65.66667%;
  margin-left: 0%;
  margin-right: 3%;
  display: inline-block;
  line-height: 22px;
  color: #fff; }
  .footer article:before, .footer article:after {
    content: '';
    display: table; }
  .footer article:after {
    clear: both; }
  .footer article:last-child {
    margin-right: 0%; }
  @media only screen and (max-width: 750px) {
    .footer article {
      *zoom: 1;
      float: left;
      clear: none;
      text-align: inherit;
      width: 100%;
      margin-left: 0%;
      margin-right: 3%;
      text-align: center; }
      .footer article:before, .footer article:after {
        content: '';
        display: table; }
      .footer article:after {
        clear: both; }
      .footer article:last-child {
        margin-right: 0%; } }
  @media only screen and (max-width: 480px) {
    .footer article {
      *zoom: 1;
      float: left;
      clear: none;
      text-align: inherit;
      width: 100%;
      margin-left: 0%;
      margin-right: 3%;
      line-height: 17px; }
      .footer article:before, .footer article:after {
        content: '';
        display: table; }
      .footer article:after {
        clear: both; }
      .footer article:last-child {
        margin-right: 0%; } }
  .footer article .text-spacing.left, .footer article .text-spacing.right {
    min-height: 2px; }
    .footer article .text-spacing.left .heading, .footer article .text-spacing.right .heading {
      font-family: "Roboto", sans-serif;
      font-size: 30px;
      font-size: 1.875rem;
      line-height: 30px;
      font-weight: 500;
      letter-spacing: 1px; }
      @media only screen and (max-width: 960px) {
        .footer article .text-spacing.left .heading, .footer article .text-spacing.right .heading {
          font-family: "Roboto", sans-serif;
          font-size: 22px;
          font-size: 1.375rem; } }
    .footer article .text-spacing.left .subline, .footer article .text-spacing.right .subline {
      font-family: "Roboto", sans-serif;
      font-size: 14px;
      font-size: 0.875rem;
      font-weight: 300;
      line-height: 14px;
      margin-top: 5px;
      margin-bottom: 15px; }
      @media only screen and (max-width: 480px) {
        .footer article .text-spacing.left .subline, .footer article .text-spacing.right .subline {
          margin-top: 0; } }
  .footer article .text-spacing.right {
    margin-bottom: 34px; }

.ad {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 48.5%;
  margin-left: 0%;
  margin-right: 3%;
  margin-bottom: 25px; }
  .ad:before, .ad:after {
    content: '';
    display: table; }
  .ad:after {
    clear: both; }
  .ad:nth-of-type(2n) {
    margin-right: 0%;
    float: right; }
  .ad:nth-of-type(2n + 1) {
    clear: both; }
  @media only screen and (max-width: 750px) {
    .ad {
      display: block;
      clear: both;
      float: none;
      width: 100%;
      margin-left: auto;
      margin-right: auto; }
      .ad:first-child {
        margin-left: auto; }
      .ad:last-child {
        margin-right: auto; } }
  @media only screen and (max-width: 480px) {
    .ad {
      display: block;
      clear: both;
      float: none;
      width: 100%;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 0px; }
      .ad:first-child {
        margin-left: auto; }
      .ad:last-child {
        margin-right: auto; } }

.adWithoutLogo {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 100%;
  margin-left: 0%;
  margin-right: 3%; }
  .adWithoutLogo:before, .adWithoutLogo:after {
    content: '';
    display: table; }
  .adWithoutLogo:after {
    clear: both; }
  .adWithoutLogo:last-child {
    margin-right: 0%; }
  @media only screen and (max-width: 480px) {
    .adWithoutLogo {
      *zoom: 1;
      float: left;
      clear: none;
      text-align: inherit;
      width: 100%;
      margin-left: 0%;
      margin-right: 3%; }
      .adWithoutLogo:before, .adWithoutLogo:after {
        content: '';
        display: table; }
      .adWithoutLogo:after {
        clear: both; }
      .adWithoutLogo:last-child {
        margin-right: 0%; } }

.adWithLogo {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 48.5%;
  margin-left: 0%;
  margin-right: 3%;
  margin-bottom: 35px; }
  .adWithLogo:before, .adWithLogo:after {
    content: '';
    display: table; }
  .adWithLogo:after {
    clear: both; }
  .adWithLogo:nth-of-type(2n) {
    margin-right: 0%;
    float: right; }
  .adWithLogo:nth-of-type(2n + 1) {
    clear: both; }
  @media only screen and (max-width: 480px) {
    .adWithLogo {
      *zoom: 1;
      float: left;
      clear: none;
      text-align: inherit;
      width: 100%;
      margin-left: 0%;
      margin-right: 3%;
      margin-bottom: 0; }
      .adWithLogo:before, .adWithLogo:after {
        content: '';
        display: table; }
      .adWithLogo:after {
        clear: both; }
      .adWithLogo:last-child {
        margin-right: 0%; } }
  .adWithLogo .adImage {
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px; }
    @media only screen and (max-width: 480px) {
      .adWithLogo .adImage {
        /*width:31%;
        margin-right:3%;*/
        display: block;
        clear: both;
        float: none;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding-bottom: 15px; }
        .adWithLogo .adImage:first-child {
          margin-left: auto; }
        .adWithLogo .adImage:last-child {
          margin-right: auto; } }
  .adWithLogo .adText {
    display: inline-block;
    vertical-align: middle;
    max-width: 380px;
    width: 60%; }
    @media only screen and (max-width: 960px) {
      .adWithLogo .adText {
        max-width: 180px; } }
    @media only screen and (max-width: 750px) {
      .adWithLogo .adText {
        max-width: 380px;
        max-width: none; } }
    @media only screen and (max-width: 480px) {
      .adWithLogo .adText {
        width: 65%;
        display: block;
        clear: both;
        float: none;
        width: 100%;
        margin-left: auto;
        margin-right: auto; }
        .adWithLogo .adText:first-child {
          margin-left: auto; }
        .adWithLogo .adText:last-child {
          margin-right: auto; } }
    .adWithLogo .adText p, .adWithLogo .adText a {
      font-family: "Roboto", sans-serif;
      font-size: 17px;
      font-size: 1.0625rem;
      line-height: 23px;
      margin: 0px; }

.adWithoutNavigation .adBanner {
  display: inline-block;
  vertical-align: middle;
  width: 60%; }
  @media only screen and (max-width: 480px) {
    .adWithoutNavigation .adBanner {
      width: 100%;
      margin: 15px 0; } }
.adWithoutNavigation .current-date {
  float: none; }

.jobs .adWithLogo {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 100%;
  margin-left: 0%;
  margin-right: 3%; }
  .jobs .adWithLogo:before, .jobs .adWithLogo:after {
    content: '';
    display: table; }
  .jobs .adWithLogo:after {
    clear: both; }
  .jobs .adWithLogo:last-child {
    margin-right: 0%; }
