@charset "UTF-8";
/* Bourbon 4.0.2
 * http://bourbon.io
 * Copyright 2011-2014 thoughtbot, inc.
 * MIT License */
/* Neat 1.7.0.pre
 * http://neat.bourbon.io
 * Copyright 2012-2014 thoughtbot, inc.
 * MIT License */
/**
 * Returns a media context (media query / grid context) that can be stored in a variable and passed to `media()` as a single-keyword argument. Media contexts defined using `new-breakpoint` are used by the visual grid, as long as they are defined before importing Neat.
 *
 * @param {List} $query
 *   - A list of media query features and values. Each `$feature` should have a corresponding `$value`. If there is only a single `$value` in `$query`, `$default-feature` is going to be used. The number of total columns in the grid can be set by passing `$columns` at the end of the list (overrides `$total-columns`). For a list of valid values for `$feature`, click [here](http://www.w3.org/TR/css3-mediaqueries/#media1).
 *
 * @param {Number (unitless)} $total-columns ($grid-columns)
 *   - Number of columns to use in the new grid context. Can be set as a shorthand in the first parameter.
 *
 * @example scss - Usage
 *   $mobile: new-breakpoint(max-width 480px 4);
 *
 *   .element {
 *     @include media($mobile) {
 *       @include span-columns(4);
 *     }
 *   }
 *
 * @example css - CSS Output
 *   @media screen and (max-width: 480px) {
 *     .element {
 *       display: block;
 *       float: left;
 *       margin-right: 7.42297%;
 *       width: 100%;
 *     }
 *     .element:last-child {
 *       margin-right: 0;
 *     }
 *   }
 */
/**
 * Sets the relative width of a single grid column. The unit used should be the same one used to define `$gutter`. To learn more about golden-ratio() see [Bourbon docs](http://bourbon.io/docs/#golden-ratio). Set with a `!global` flag.
 *
 * @type Number (Unit)
 */
/**
 * Sets the relative width of a single grid gutter. The unit used should be the same one used to define `$column`. To learn more about golden-ratio() see [Bourbon docs](http://bourbon.io/docs/#golden-ratio). Set with the `!global` flag.
 *
 * @type Number (Unit)
 */
/**
 * Sets the total number of columns in the grid. Its value can be overridden inside a media query using the `media()` mixin. Set with the `!global` flag.
 *
 * @type Number (Unitless)
 */
/**
 * Sets the max-width property of the element that includes `outer-container()`. To learn more about `em()` see [Bourbon docs](http://bourbon.io/docs/#px-to-em). Set with the `!global` flag.
 *
 * @type Number (Unit)
 */
/**
 * When set to true, it sets the box-sizing property of all elements to `border-box`. Set with a `!global` flag.
 *
 * @type Bool
 *
 * @example css - CSS Output
 *   * {
 *     -webkit-box-sizing: border-box;
 *     -moz-box-sizing: border-box;
 *     box-sizing: border-box;
 *   }
 */
/**
 * Sets the default [media feature](http://www.w3.org/TR/css3-mediaqueries/#media) that `media()` and `new-breakpoint()` revert to when only a breakpoint value is passed. Set with a `!global` flag.
 *
 * @type String
 */
/**
 * Sets the default layout direction of the grid. Can be `LTR` or `RTL`. Set with a `!global` flag.
 *
 * @type String
 */
/**
 * Displays the visual grid when set to true. The overlaid grid may be few pixels off depending on the browser's rendering engine and pixel rounding algorithm. Set with the `!global` flag.
 *
 * @type Bool
 */
/**
 * Sets the visual grid color. Set with `!global` flag.
 *
 * @type Color
 */
/**
 * Sets the `z-index` property of the visual grid. Can be `back` (behind content) or `front` (in front of content). Set with `!global` flag.
 *
 * @type String
 */
/**
 * Sets the opacity property of the visual grid. Set with `!global` flag.
 *
 * @type Number (unitless)
 */
/**
 * Disable all deprecation warnings. Defaults to `false`. Set with a `!global` flag.
 *
 * @type Bool
 */
@import url("https://fast.fonts.net/t/1.css?apiType=css&projectid=7d2da34c-5422-403f-ac97-0f24835b4749");
@import url(style.css);
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

*, *:before, *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit; }

/**
 * Removes the element's gutter margin, regardless of its position in the grid hierarchy or display property. It can target a specific element, or every `nth-child` occurrence. Works only with `block` layouts.
 *
 * @param {List} $query (block)
 *   List of arguments. Supported arguments are `nth-child` selectors (targets a specific pseudo element) and `auto` (targets `last-child`).
 *
 *   When passed an `nth-child` argument of type `*n` with `block` display, the omega mixin automatically adds a clear to the `*n+1` th element. Note that composite arguments such as `2n+1` do not support this feature.
 *
 *   **Deprecation warning**: The omega mixin will no longer take a `$direction` argument. To change the layout direction, use `row($direction)` or set `$default-layout-direction` instead.
 *
 * @example scss - Usage
 *   .element {
 *     @include omega;
 *   }
 *
 *   .nth-element {
 *     @include omega(4n);
 *   }
 *
 * @example css - CSS Output
 *   .element {
 *     margin-right: 0;
 *   }
 *
 *   .nth-element:nth-child(4n) {
 *     margin-right: 0;
 *   }
 *
 *   .nth-element:nth-child(4n+1) {
 *     clear: left;
 *   }
 */
/**
 * Makes an element a outer container by centring it in the viewport, clearing its floats, and setting its `max-width`.
 * Although optional, using `outer-container` is recommended. The mixin can be called on more than one element per page, as long as they are not nested.
 *
 * @param {Number (unit)} $local-max-width ($max-width)
 *   Max width to be applied to the element. Can be a percentage or a measure.
 *
 * @example scss - Usage
 *   .element {
 *     @include outer-container(100%);
 *   }
 *
 * @example css - CSS Output
 *   .element {
 *     *zoom: 1;
 *     max-width: 100%;
 *     margin-left: auto;
 *     margin-right: auto;
 *   }
 *
 *   .element:before, .element:after {
 *     content: " ";
 *     display: table;
 *   }
 *
 *   .element:after {
 *     clear: both;
 *   }
 */
/**
 * Specifies the number of columns an element should span. If the selector is nested the number of columns of its parent element should be passed as an argument as well.
 *
 * @param {List} $span
 *   A list containing `$columns`, the unitless number of columns the element spans (required), and `$container-columns`, the number of columns the parent element spans (optional).
 *
 *   If only one value is passed, it is assumed that it's `$columns` and that that `$container-columns` is equal to `$grid-columns`, the total number of columns in the grid.
 *
 *   The values can be separated with any string such as `of`, `/`, etc.
 *
 * @param {String} $display (block)
 *   Sets the display property of the element. By default it sets the display propert of the element to `block`.
 *
 *   If passed `block-collapse`, it also removes the margin gutter by adding it to the element width.
 *
 *   If passed `table`, it sets the display property to `table-cell` and calculates the width of the element without taking gutters into consideration. The result does not align with the block-based grid.
 *
 * @example scss - Usage
 *   .element {
 *     @include span-columns(6);

 *    .nested-element {
 *      @include span-columns(2 of 6);
 *    }
 *  }
 *
 * @example css - CSS Output
 *   .element {
 *     display: block;
 *     float: left;
 *     margin-right: 2.35765%;
 *     width: 48.82117%;
 *   }
 *
 *   .element:last-child {
 *     margin-right: 0;
 *   }
 *
 *   .element .nested-element {
 *     display: block;
 *     float: left;
 *     margin-right: 4.82916%;
 *     width: 30.11389%;
 *   }
 *
 *   .element .nested-element:last-child {
 *     margin-right: 0;
 *   }
 */
/**
 * Designates the element as a row of columns in the grid layout. It clears the floats on the element and sets its display property. Rows can't be nested, but there can be more than one row element—with different display properties—per layout.
 *
 * @param {String} $display (default)
 *   Sets the display property of the element and the display context that will be used by its children. Can be `block` or `table`.
 *
 * @param {String} $direction ($default-layout-direction)
 *   Sets the layout direction. Can be `LTR` (left-to-right) or `RTL` (right-to-left).
 *
 * @example scss - Usage
 *   .element {
 *     @include row();
 *   }
 *
 * @example css - CSS Output
 *   .element {
 *     *zoom: 1;
 *     display: block;
 *   }
 *
 *  .element:before, .element:after {
 *    content: " ";
 *    display: table;
 *  }
 *
 *  .element:after {
 *    clear: both;
 *  }
 */
/**
 * Translates an element horizontally by a number of columns. Positive arguments shift the element to the active layout direction, while negative ones shift it to the opposite direction.
 *
 * @param {Number (unitless)} $n-columns (1)
 *   Number of columns by which the element shifts.
 *
 * @example scss - Usage
 *   .element {
 *     @include shift(-3);
 *   }
 *
 * @example css - CSS output
 *   .element {
 *     margin-left: -25.58941%;
 *   }
 */
/**
 * Translates an element horizontally by a number of columns, in a specific nesting context.
 *
 * @param {List} $shift
 *   A list containing the number of columns to shift (`$columns`) and the number of columns of the parent element (`$container-columns`).
 *
 *   The two values can be separated with any string such as `of`, `/`, etc.
 *
 * @example scss - Usage
 *   .element {
 *     @include shift(-3 of 6);
 *   }
 *
 * @example css - CSS output
 *   .element {
 *     margin-left: -52.41458%;
 *   }
 */
/**
 * Adds padding to the element.
 *
 * @param {List} $padding (flex-gutter())
 *   A list of padding value(s) to use. Passing `default` in the list will result in using the gutter width as a padding value.
 *
 * @example scss - Usage
 *   .element {
 *     @include pad(30px -20px 10px default);
 *   }
 *
 * @example css - CSS Output
 *   .element {
 *     padding: 30px -20px 10px 2.35765%;
 *   }
 */
/**
 * Forces the element to fill its parent container.
 *
 * @example scss - Usage
 *   .element {
 *     @include fill-parent;
 *   }
 *
 * @example css - CSS Output
 *   .element {
 *     width: 100%;
 *     -webkit-box-sizing: border-box;
 *     -moz-box-sizing: border-box;
 *     box-sizing: border-box;
 *   }
 */
/**
 * Outputs a media-query block with an optional grid context (the total number of columns used in the grid).
 *
 * @param {List} $query
 *   A list of media query features and values, where each `$feature` should have a corresponding `$value`.
 *   For a list of valid values for `$feature`, click [here](http://www.w3.org/TR/css3-mediaqueries/#media1).
 *
 *   If there is only a single `$value` in `$query`, `$default-feature` is going to be used.
 *
 *   The number of total columns in the grid can be set by passing `$columns` at the end of the list (overrides `$total-columns`).
 *
 *
 * @param {Number (unitless)} $total-columns ($grid-columns)
 *   - Number of columns to use in the new grid context. Can be set as a shorthand in the first parameter.
 *
 * @example scss - Usage
 *   .responsive-element {
 *      @include media(769px) {
 *        @include span-columns(6);
 *      }
 *   }
 *
 *  .new-context-element {
 *    @include media(min-width 320px max-width 480px, 6) {
 *      @include span-columns(6);
 *    }
 *  }
 *
 * @example css - CSS Output
 *  @media screen and (min-width: 769px) {
 *    .responsive-element {
 *      display: block;
 *      float: left;
 *      margin-right: 2.35765%;
 *      width: 48.82117%;
 *    }
 *
 *    .responsive-element:last-child {
 *      margin-right: 0;
 *    }
 *  }
 *
 *  @media screen and (min-width: 320px) and (max-width: 480px) {
 *    .new-context-element {
 *      display: block;
 *      float: left;
 *      margin-right: 4.82916%;
 *      width: 100%;
 *    }
 *
 *    .new-context-element:last-child {
 *      margin-right: 0;
 *    }
 *  }
 */
/**
 * Resets the active display property to `block`. Particularly useful when changing the display property in a single row.
 *
 * @example scss - Usage
 *   .element {
 *     @include row(table);
 *     // Context changed to table display
 *   }
 *
 *   @include reset-display;
 *   // Context is reset to block display
 */
/**
 * Resets the active layout direction to the default value set in `$default-layout-direction`. Particularly useful when changing the layout direction in a single row.
 *
 * @example scss - Usage
 *   .element {
 *     @include row($direction: RTL);
 *     // Context changed to right-to-left
 *   }
 *
 *   @include reset-layout-direction;
 *   // Context is reset to left-to-right
 */
/**
 * Resets both the active layout direction and the active display property.
 *
 * @example scss - Usage
 *   .element {
 *     @include row(table, RTL);
 *     // Context changed to table table and right-to-left
 *   }
 *
 *   @include reset-all;
 *   // Context is reset to block display and left-to-right
 */
/**
 * Changes the display property used by other mixins called in the code block argument.
 *
 * @param {String} $display (block)
 *   Display value to be used within the block. Can be `table` or `block`.
 *
 * @example scss
 *   @include display(table) {
 *    .display-table {
 *      @include span-columns(6);
 *     }
 *   }
 *
 * @example css
 *   .display-table {
 *      display: table-cell;
 *      ...
 *   }
 */
/**
 * Changes the direction property used by other mixins called in the code block argument.
 *
 * @param {String} $direction (left-to-right)
 *   Layout direction to be used within the block. Can be `left-to-right` or `right-to-left`.
 *
 * @example scss - Usage
 *   @include direction(right-to-left) {
 *    .right-to-left-block {
 *      @include span-columns(6);
 *     }
 *   }
 *
 * @example css - CSS Output
 *   .right-to-left-block {
 *     float: right;
 *      ...
 *   }
 */
@font-face {
  font-family: "Core Sans N W10_77 Cn XBold";
  src: url("fonts/11a66d5e-0610-4272-accd-3ad6f71c1087.eot?#iefix");
  src: url("fonts/11a66d5e-0610-4272-accd-3ad6f71c1087.eot?#iefix") format("eot"), url("fonts/50379336-ded8-4f06-a3ae-daf0c10710ae.woff2") format("woff2"), url("fonts/af1f3253-7396-419f-a4c9-2945f13c7d6b.woff") format("woff"), url("fonts/481b290f-2515-4669-963b-3ce52b0e57e9.ttf") format("truetype"), url("fonts/95612853-992b-46df-95f0-92e146523351.svg#95612853-992b-46df-95f0-92e146523351") format("svg"); }
@font-face {
  font-family: "Helvetica W02 Light";
  src: url("fonts/ff80873b-6ac3-44f7-b029-1b4111beac76.eot?#iefix");
  src: url("fonts/ff80873b-6ac3-44f7-b029-1b4111beac76.eot?#iefix") format("eot"), url("fonts/5f69edb2-7ba6-4bcf-9266-186b412dc27c.woff2") format("woff2"), url("fonts/80c34ad2-27c2-4d99-90fa-985fd64ab81a.woff") format("woff"), url("fonts/b8cb02c2-5b58-48d8-9501-8d02869154c2.ttf") format("truetype"), url("fonts/92c941ea-2b06-4b72-9165-17476d424d6c.svg#92c941ea-2b06-4b72-9165-17476d424d6c") format("svg"); }
@font-face {
  font-family: "Helvetica W02 Light Obl";
  src: url("fonts/c6648626-1057-4900-9634-8d0b31c2ec9f.eot?#iefix");
  src: url("fonts/c6648626-1057-4900-9634-8d0b31c2ec9f.eot?#iefix") format("eot"), url("fonts/1dda8126-37c1-457a-be04-5172a3d0a4b8.woff2") format("woff2"), url("fonts/848388c9-dc1e-4912-aa30-43fbea5e7815.woff") format("woff"), url("fonts/6c9b0075-9466-4bdd-8eb3-bff349eafd38.ttf") format("truetype"), url("fonts/bc7eeacf-e01a-4c89-bcf1-437b146ecf6d.svg#bc7eeacf-e01a-4c89-bcf1-437b146ecf6d") format("svg"); }
@font-face {
  font-family: "Helvetica W02 Roman";
  src: url("fonts/e4bd4516-4480-43df-aa6e-4e9b9029f53e.eot?#iefix");
  src: url("fonts/e4bd4516-4480-43df-aa6e-4e9b9029f53e.eot?#iefix") format("eot"), url("fonts/e7752667-9e25-430d-bba5-da23d55d5d08.woff2") format("woff2"), url("fonts/b56b944e-bbe0-4450-a241-de2125d3e682.woff") format("woff"), url("fonts/7da02f05-ae8b-43a1-aeb9-83b3c0527c06.ttf") format("truetype"), url("fonts/66cac56e-d017-4544-9d0c-f7d978f0c5c2.svg#66cac56e-d017-4544-9d0c-f7d978f0c5c2") format("svg"); }
@font-face {
  font-family: "Helvetica W02 Bold";
  src: url("fonts/8c0d8b0f-d7d6-4a72-a418-c2373e4cbf27.eot?#iefix");
  src: url("fonts/8c0d8b0f-d7d6-4a72-a418-c2373e4cbf27.eot?#iefix") format("eot"), url("fonts/3d4237ae-3020-42eb-aad1-240e9fa5790c.woff2") format("woff2"), url("fonts/192dac76-a6d9-413d-bb74-22308f2e0cc5.woff") format("woff"), url("fonts/47584448-98c4-436c-89b9-8d6fbeb2a776.ttf") format("truetype"), url("fonts/375c70e5-6822-492b-8408-7cd350440af7.svg#375c70e5-6822-492b-8408-7cd350440af7") format("svg"); }
@font-face {
  font-family: "HelveticaW02-BoldItalic";
  src: url("fonts/0ad54cc8-de30-4466-81af-d32c31af36f3.eot?#iefix");
  src: url("fonts/0ad54cc8-de30-4466-81af-d32c31af36f3.eot?#iefix") format("eot"), url("fonts/a53693d4-c5bc-4bad-920b-248b53ece287.woff2") format("woff2"), url("fonts/04574f67-b3a9-478e-a45a-8788f152805a.woff") format("woff"), url("fonts/24e326d3-2a80-4d43-8626-1cee1da2db15.ttf") format("truetype"), url("fonts/25bfaeec-398f-41e5-9e64-9971dba5a437.svg#25bfaeec-398f-41e5-9e64-9971dba5a437") format("svg"); }
@font-face {
  font-family: "Helvetica W02 Blk Cn";
  src: url("fonts/b5341fad-b3e0-4fc0-ad6a-37e8064e149d.eot?#iefix");
  src: url("fonts/b5341fad-b3e0-4fc0-ad6a-37e8064e149d.eot?#iefix") format("eot"), url("fonts/ab097670-02a8-48dc-bd91-5f7fda7e2f6e.woff2") format("woff2"), url("fonts/b1dc6af4-e159-4de5-9a56-fba1e2f6316d.woff") format("woff"), url("fonts/354b2be7-3f8d-4222-b185-8445e0104200.ttf") format("truetype"), url("fonts/daea9df1-f3c1-4cbe-9302-636114bf4f38.svg#daea9df1-f3c1-4cbe-9302-636114bf4f38") format("svg"); }
@font-face {
  font-family: "HelveticaInseratW02-Rg";
  src: url("fonts/587205bb-8c49-42f1-ab0e-2999261a68ae.eot?#iefix");
  src: url("fonts/587205bb-8c49-42f1-ab0e-2999261a68ae.eot?#iefix") format("eot"), url("fonts/064a049c-2d5d-4ab6-82a5-c3e75711d2eb.woff2") format("woff2"), url("fonts/d96cc531-89bd-4418-8215-b65f7a264899.woff") format("woff"), url("fonts/8429e589-a631-410b-9509-96c854937e81.ttf") format("truetype"), url("fonts/15ecca8c-04fe-4369-bc15-e597888f9ae2.svg#15ecca8c-04fe-4369-bc15-e597888f9ae2") format("svg"); }
@font-face {
  font-family: "ITCSerifGothicW01-Black";
  src: url("fonts/373a91d0-8d7f-4f33-9433-e2bbf0f79ff7.eot?#iefix");
  src: url("fonts/373a91d0-8d7f-4f33-9433-e2bbf0f79ff7.eot?#iefix") format("eot"), url("fonts/8bbd8365-6cc8-4a1e-8698-2729effb5487.woff2") format("woff2"), url("fonts/425996ce-501b-494e-b044-77e3adc0556c.woff") format("woff"), url("fonts/ee212464-b4b4-4113-bc94-18b318a140a4.ttf") format("truetype"), url("fonts/1d7bb53b-6127-4c57-ade8-807d2de0fc06.svg#1d7bb53b-6127-4c57-ade8-807d2de0fc06") format("svg"); }
@media screen and (max-width: 640px) {
  body {
    content: 'mobile'; } }
@media screen and (min-width: 641px) and (max-width: 802px) {
  body {
    content: 'tablet'; } }
@media screen and (min-width: 803px) {
  body {
    content: 'desktop';
    min-width: 802px; } }

.col {
  float: left; }
  .col:after {
    content: "";
    display: table;
    clear: both; }
  .col:last-of-type {
    margin-right: 0; }

.col-1-4 {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 23.2317613015%; }
  @media screen and (max-width: 640px) {
    .col-1-4 {
      float: left;
      display: block;
      margin-right: 2.3576515979%;
      width: 100%; } }

.col-2-4 {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 48.821174201%; }
  @media screen and (max-width: 640px) {
    .col-2-4 {
      float: left;
      display: block;
      margin-right: 2.3576515979%;
      width: 100%; } }

.col-3-4 {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 74.4105871005%; }
  @media screen and (max-width: 640px) {
    .col-3-4 {
      float: left;
      display: block;
      margin-right: 2.3576515979%;
      width: 100%; } }

.col-3-4-right {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 74.4105871005%; }
  @media screen and (max-width: 640px) {
    .col-3-4-right {
      float: left;
      display: block;
      margin-right: 2.3576515979%;
      width: 100%; } }

.col-4-4 {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 100%; }

.col-4-5 {
  width: 80%; }

.col-1-2 {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 48.821174201%; }
  @media screen and (max-width: 640px) {
    .col-1-2 {
      float: left;
      display: block;
      margin-right: 2.3576515979%;
      width: 100%; } }

.col-1-3 {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 31.7615656014%; }
  @media screen and (max-width: 640px) {
    .col-1-3 {
      float: left;
      display: block;
      margin-right: 2.3576515979%;
      width: 100%; } }

.col-2-3 {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 65.8807828007%; }
  @media screen and (max-width: 640px) {
    .col-2-3 {
      float: left;
      display: block;
      margin-right: 2.3576515979%;
      width: 100%; } }

.col-3-3 {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 100%; }

@media screen and (max-width: 640px) {
  .container-wrapper .col {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 100%;
    margin-right: 0;
    padding-right: 0 !important; } }

.last {
  margin-right: 0 !important; }

/* 
 * 	Core Owl Carousel CSS File
 *	v1.3.3
 */
/* clearfix */
.owl-carousel .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

/* display none until init */
.owl-carousel {
  display: none;
  position: relative;
  width: 100%;
  -ms-touch-action: pan-y; }

.owl-carousel .owl-wrapper {
  display: none;
  position: relative;
  -webkit-transform: translate3d(0px, 0px, 0px); }

.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%; }

.owl-carousel .owl-wrapper-outer.autoHeight {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out; }

.owl-carousel .owl-item {
  float: left; }

.owl-controls .owl-page,
.owl-controls .owl-buttons div {
  cursor: pointer; }

.owl-controls {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent; }

/* mouse grab icon */
.grabbing {
  cursor: url(../img/grabbing.png) 8 8, move; }

/* fix */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0); }

/*
* 	Owl Carousel Owl Demo Theme 
*	v1.3.3
*/
.owl-theme .owl-controls {
  margin-top: 10px;
  text-align: center; }

/* Styling Next and Prev buttons */
.owl-theme .owl-controls .owl-buttons div {
  color: #FFF;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /*IE7 life-saver */
  margin: 5px;
  padding: 3px 10px;
  font-size: 12px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background: #869791;
  filter: Alpha(Opacity=50);
  /*IE7 fix*/
  opacity: 0.5; }

/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover {
  filter: Alpha(Opacity=100);
  /*IE7 fix*/
  opacity: 1;
  text-decoration: none; }

/* Styling Pagination*/
.owl-theme .owl-controls .owl-page {
  display: inline-block;
  zoom: 1;
  *display: inline;
  /*IE7 life-saver */ }

.owl-theme .owl-controls .owl-page span {
  display: block;
  width: 12px;
  height: 12px;
  margin: 5px 7px;
  filter: Alpha(Opacity=50);
  /*IE7 fix*/
  opacity: 0.5;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  background: #869791; }

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
  filter: Alpha(Opacity=100);
  /*IE7 fix*/
  opacity: 1; }

/* If PaginationNumbers is true */
.owl-theme .owl-controls .owl-page span.owl-numbers {
  height: auto;
  width: auto;
  color: #FFF;
  padding: 2px 10px;
  font-size: 12px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px; }

/* preloading images */
.owl-item.loading {
  min-height: 150px;
  background: url(AjaxLoader.gif) no-repeat center center; }

/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top; }

.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8020; }
  .fancybox-wrap .floatleft {
    width: 100%; }

.fancybox-skin {
  position: relative;
  background: #f9f9f9;
  color: #444;
  text-shadow: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px; }

.fancybox-opened {
  z-index: 8030; }

.fancybox-opened .fancybox-skin {
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); }

.fancybox-outer, .fancybox-inner {
  position: relative; }

.fancybox-inner {
  overflow: hidden; }

.fancybox-type-iframe .fancybox-inner {
  -webkit-overflow-scrolling: touch; }

.fancybox-error {
  color: #444;
  margin: 0;
  padding: 15px;
  white-space: nowrap; }

.fancybox-image, .fancybox-iframe {
  display: block;
  width: 100%;
  height: 100%; }

.fancybox-image {
  max-width: 100%;
  max-height: 100%; }

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
  background-image: url("../img/fancybox_sprite.png"); }

#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  background-position: 0 -108px;
  opacity: 0.8;
  cursor: pointer;
  z-index: 8060; }

#fancybox-loading div {
  width: 44px;
  height: 44px;
  background: url("../img/fancybox_loading.gif") center center no-repeat; }

.fancybox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 8040; }

.fancybox-nav {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  background: transparent url("blank.gif");
  /* helps IE */
  -webkit-tap-highlight-color: transparent;
  z-index: 8040; }

.fancybox-prev {
  left: 0; }

.fancybox-next {
  right: 0; }

.fancybox-nav span {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 34px;
  margin-top: -18px;
  cursor: pointer;
  z-index: 8040;
  visibility: hidden; }

.fancybox-prev span {
  left: 10px;
  background-position: 0 -36px; }

.fancybox-next span {
  right: 10px;
  background-position: 0 -72px; }

.fancybox-nav:hover span {
  visibility: visible; }

.fancybox-tmp {
  position: absolute;
  top: -99999px;
  left: -99999px;
  visibility: hidden;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important; }

/* Overlay helper */
.fancybox-lock {
  overflow: hidden !important;
  width: auto; }

.fancybox-lock body {
  overflow: hidden !important; }

.fancybox-lock-test {
  overflow-y: hidden !important; }

.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 8010;
  background-color: rgba(51, 105, 73, 0.7); }

.fancybox-overlay-fixed {
  position: fixed;
  bottom: 0;
  right: 0; }

.fancybox-lock .fancybox-overlay {
  overflow: auto;
  overflow-y: scroll; }

/* Title helper */
.fancybox-title {
  visibility: hidden;
  position: relative;
  text-shadow: none;
  z-index: 8050; }

.fancybox-opened .fancybox-title {
  visibility: visible; }

.fancybox-title-float-wrap {
  position: absolute;
  bottom: 0;
  right: 50%;
  margin-bottom: -35px;
  z-index: 8050;
  text-align: center; }

.fancybox-title-float-wrap .child {
  display: inline-block;
  margin-right: -100%;
  padding: 2px 20px;
  background: transparent;
  /* Fallback for web browsers that doesn't support RGBa */
  background: rgba(0, 0, 0, 0.8);
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  text-shadow: 0 1px 2px #222;
  color: #FFF;
  font-weight: bold;
  line-height: 24px;
  white-space: nowrap; }

.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff; }

.fancybox-title-inside-wrap {
  padding-top: 10px; }

.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: #000;
  background: rgba(0, 0, 0, 0.8); }

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  #fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
    background-image: url("../img/fancybox_sprite@2x.png");
    background-size: 44px 152px;
    /*The size of the normal image, half the size of the hi-res image*/ }

  #fancybox-loading div {
    background-image: url("../img/fancybox_loading@2x.gif");
    background-size: 24px 24px;
    /*The size of the normal image, half the size of the hi-res image*/ } }
.border-bottom {
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 5px; }

h1 {
  font-family: "Helvetica W02 Blk Cn";
  letter-spacing: -0.02em;
  font-weight: normal;
  font-size: 40px;
  color: #646464;
  margin: 0 0 5px 0;
  line-height: 0.9;
  text-transform: uppercase; }
  @media screen and (max-width: 640px) {
    h1 {
      font-size: 36px;
      line-height: 1;
      margin-bottom: 10px; } }
  h1.single {
    margin-bottom: 25px; }

h2 {
  font-family: "Helvetica W02 Blk Cn";
  letter-spacing: normal;
  font-weight: normal;
  font-size: 22px;
  color: #646464;
  margin: 0 0 25px 0;
  text-transform: uppercase;
  line-height: 1.1; }

h3 {
  font-family: "Helvetica W02 Light";
  font-size: 22px;
  font-weight: normal;
  color: #646464;
  margin: 0 0 25px 0;
  line-height: 1.1; }
  h3 > a {
    text-decoration: none; }
  h3.no-margin {
    margin: 0; }

h4 {
  font-family: "Helvetica W02 Bold";
  font-size: 16px;
  font-weight: normal;
  color: #646464;
  margin: 0 0 25px 0;
  line-height: 1.1; }
  h4 > a {
    text-decoration: none; }

p {
  color: #646464;
  margin: 0 0 25px 0;
  font-size: 16px;
  line-height: 1.4; }
  p.content-subline {
    font-size: 16px;
    font-family: "Helvetica W02 Light";
    color: #646464;
    margin: 0 0 25px 0; }

ul {
  margin: 0 0 25px 0;
  color: #646464; }
  ul.bulletlist li {
    margin-bottom: 10px; }

strong {
  font-family: "Helvetica W02 Bold";
  font-weight: normal; }

h2.widget-headline {
  font-family: "Helvetica W02 Blk Cn";
  margin: 0 0 17px 0;
  color: #646464;
  font-weight: normal;
  text-transform: uppercase; }
  @media screen and (min-width: 641px) and (max-width: 802px) {
    h2.widget-headline {
      font-size: 16px; } }
  @media screen and (max-width: 640px) {
    h2.widget-headline {
      font-size: 18px !important; } }
  h2.widget-headline a {
    color: #646464;
    display: block !important;
    cursor: pointer; }
    h2.widget-headline a:hover {
      color: #75c045; }

.eoee-edit {
  height: 36px;
  width: 36px;
  border-radius: 36px;
  position: absolute;
  background-color: #00b9d2;
  z-index: 10;
  top: 21px;
  left: -50px;
  padding: 2px;
  box-shadow: 0 0 7px 2px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  cursor: pointer; }
  .eoee-edit:hover .the-eoe-icon:before {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 0; }
  .eoee-edit:hover .the-pen-icon:before {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  .eoee-edit .the-eoe-icon {
    height: 36px;
    width: 36px;
    border-radius: 18px;
    overflow: hidden;
    display: block;
    position: absolute;
    background-color: #00b9d2; }
    .eoee-edit .the-eoe-icon:before {
      display: block;
      position: absolute;
      left: 3px;
      top: 2px;
      color: #fff;
      font-size: 27px;
      opacity: 1;
      z-index: 1;
      -webkit-transition: all 0.25s ease-in-out;
      -moz-transition: all 0.25s ease-in-out;
      transition: all 0.25s ease-in-out; }
  .eoee-edit .the-pen-icon {
    height: 36px;
    width: 36px;
    padding: 2px;
    border-radius: 36px;
    overflow: hidden;
    top: 0;
    left: 0;
    position: absolute; }
    .eoee-edit .the-pen-icon:before {
      height: 36px;
      width: 36px;
      padding: 1px;
      display: block;
      position: absolute;
      color: #ffffff;
      font-size: 30px;
      opacity: 0;
      z-index: 2;
      -webkit-transform: scale(2);
      -moz-transform: scale(2);
      -ms-transform: scale(2);
      -o-transform: scale(2);
      transform: scale(2);
      -webkit-transition: all 0.25s ease-in-out;
      -moz-transition: all 0.25s ease-in-out;
      transition: all 0.25s ease-in-out; }

.home .widgets, .home .news {
  float: left;
  display: block;
  width: 34.1192171993%;
  margin-right: 0; }
  .home .widgets:last-child, .home .news:last-child {
    width: 31.7615656014%; }
  @media screen and (max-width: 640px) {
    .home .widgets, .home .news {
      width: 100% !important;
      float: left;
      display: block;
      width: 102.3576515979%; }
      .home .widgets:last-child, .home .news:last-child {
        width: 100%; } }

.floatleft {
  float: left; }

.imagefloat {
  margin: 0 15px 10px 0; }

.fsc-file:before {
  font-family: 'fsc';
  position: absolute;
  color: #929292;
  left: 0;
  top: 0px;
  font-size: 30px; }

small {
  font-family: "Helvetica W02 Roman";
  display: inline-block;
  font-size: 12px;
  line-height: 1.4; }

ul.linklist {
  margin: 0 0 20px 0;
  padding: 0;
  clear: both;
  list-style: none; }
  ul.linklist li {
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 1px dotted #e6e6e6; }
    ul.linklist li:after {
      content: "";
      display: table;
      clear: both; }
    ul.linklist li:first-child a {
      padding-top: 0; }
      ul.linklist li:first-child a.fsc-file:before {
        top: -1px; }
      ul.linklist li:first-child a.arrow-link:before {
        top: 2px; }
      ul.linklist li:first-child a.no-access:after {
        top: -5px; }
    ul.linklist li:last-child {
      border-bottom: none; }
      ul.linklist li:last-child a {
        padding-bottom: 0; }
    ul.linklist li a {
      position: relative;
      -webkit-transition: all 0.25s ease-in-out;
      -moz-transition: all 0.25s ease-in-out;
      transition: all 0.25s ease-in-out;
      color: #646464;
      display: block;
      text-decoration: none;
      padding: 10px 0 10px 0;
      font-size: 16px;
      font-family: "Helvetica W02 Light";
      line-height: 1.2; }
      ul.linklist li a:before {
        font-family: 'fsc';
        font-size: 12px;
        position: absolute;
        color: #a4a4a4;
        text-align: center;
        -webkit-transition: all 0.25s ease-in-out;
        -moz-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out; }
      ul.linklist li a.fsc-file {
        padding-left: 30px; }
        ul.linklist li a.fsc-file:before {
          top: 9px;
          font-size: 33px; }
      ul.linklist li a.no-access:after {
        font-family: 'fsc';
        content: "\f023";
        font-size: 12px;
        position: absolute;
        padding-top: 3px;
        left: -5px;
        top: 5px;
        color: #ffffff;
        text-align: center;
        background-color: #b90000;
        height: 20px;
        width: 20px;
        border-radius: 15px; }
      ul.linklist li a.arrow-link {
        padding-left: 17px; }
        ul.linklist li a.arrow-link:before {
          left: 0;
          top: 13px;
          content: "\e604"; }
      ul.linklist li a:not(.no-access):hover {
        color: #75c045 !important; }
        ul.linklist li a:not(.no-access):hover.arrow-link:before {
          left: 5px; }
        ul.linklist li a:not(.no-access):hover:before {
          -webkit-transition: all 0.25s ease-in-out;
          -moz-transition: all 0.25s ease-in-out;
          transition: all 0.25s ease-in-out;
          color: #75c045 !important; }

.cookies {
  padding: 0;
  position: fixed;
  left: 0;
  top: -60px;
  background-color: rgba(255, 243, 138, 0.95);
  z-index: 9999;
  overflow: hidden;
  font-family: "Helvetica W02 Light";
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  height: 60px;
  width: 100%;
  -webkit-transition: margin 0.5 linear;
  -moz-transition: margin 0.5 linear;
  transition: margin 0.5 linear; }
  @media screen and (max-width: 640px) {
    .cookies {
      padding: 10px 20px;
      height: 120px;
      width: 100%; } }
  @media screen and (min-width: 641px) and (max-width: 802px) {
    .cookies {
      padding: 10px 20px;
      height: 120px;
      width: 100%; } }
  .cookies #content {
    padding: 0 !important; }
    .cookies #content .content {
      position: relative;
      height: 60px; }
  .cookies p {
    color: #8a7c00 !important;
    position: absolute;
    width: 80%;
    margin: 0;
    line-height: 1.2em; }
    @media screen and (min-width: 641px) and (max-width: 802px) {
      .cookies p {
        position: relative;
        width: 100%;
        display: block; } }
    @media screen and (max-width: 640px) {
      .cookies p {
        position: relative;
        width: 100%;
        display: block; } }
  .cookies a.cookies-learn-more {
    text-decoration: none;
    color: #8a7c00 !important;
    border-bottom: 1px solid #bda900 !important; }
    .cookies a.cookies-learn-more:hover {
      color: #574e00 !important;
      border-bottom: 1px solid #574e00 !important; }
  .cookies a.cookies-accepted {
    display: block;
    text-decoration: none;
    position: absolute;
    cursor: pointer;
    height: 25px;
    right: 0;
    top: 50%;
    margin-top: -12px;
    font-family: "Helvetica W02 Light"; }
    @media screen and (max-width: 640px) {
      .cookies a.cookies-accepted {
        position: relative;
        display: block;
        top: inherit;
        padding-top: 5px;
        float: right;
        height: inherit !important;
        margin: 20px 0 0 0 !important; } }
    @media screen and (min-width: 641px) and (max-width: 802px) {
      .cookies a.cookies-accepted {
        position: relative;
        display: block;
        top: inherit;
        padding-top: 5px;
        float: right;
        height: inherit !important;
        margin: 20px 0 0 0 !important; } }
    .cookies a.cookies-accepted span {
      display: inline-block;
      position: relative;
      top: -2px;
      color: #8a7c00 !important; }
    .cookies a.cookies-accepted.fsc-accept {
      margin-right: 30px;
      height: 100px; }
    .cookies a.cookies-accepted:before {
      font-size: 20px;
      margin-right: 10px;
      color: #8a7c00 !important;
      font-family: "fsc"; }
    .cookies a.cookies-accepted:hover span, .cookies a.cookies-accepted:hover:before {
      color: #574e00 !important; }

.alert {
  padding: 10px 15px;
  font-family: "Helvetica W02 Light";
  border-radius: 5px;
  font-size: 16px !important; }
  .alert.notice {
    color: #8a7c00 !important;
    background-color: #fff5a4; }
  .alert.error {
    color: #860000 !important;
    background-color: #ffd3d3; }

.lightbox-youtube:before {
  font-family: 'fsc';
  content: "\e617" !important;
  font-size: 26px !important;
  line-height: 1;
  text-align: center;
  position: absolute;
  padding: 13px 0 0 4px !important;
  margin: -25px 0 0 -25px !important;
  bottom: inherit !important;
  top: 50% !important;
  left: 50% !important;
  background-color: rgba(255, 255, 255, 0.7);
  color: #333333;
  border-radius: 30px;
  width: 50px !important;
  height: 50px !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out; }

#lightbox-download {
  width: 600px;
  font-size: 14px; }
  #lightbox-download h4 {
    font-size: 22px;
    font-family: "Helvetica W02 Light";
    line-height: 1.1;
    padding: 20px 20px 0 20px;
    margin: 0;
    font-weight: normal; }
  #lightbox-download p {
    padding: 0 20px 0 20px; }
    #lightbox-download p small {
      margin-top: 15px;
      color: #7e7e7e; }
  #lightbox-download hr {
    margin: 20px 0;
    width: 100%;
    height: 1px; }
  #lightbox-download .lightbox-action-wrapper {
    padding: 0 20px 10px 20px; }
    #lightbox-download .lightbox-action-wrapper:after {
      content: "";
      display: table;
      clear: both; }
    #lightbox-download .lightbox-action-wrapper .lightbox-action {
      display: block;
      float: left;
      position: relative;
      width: 33.33%;
      height: 40px;
      background-color: #ccc;
      text-decoration: none;
      padding: 13px 15px 12px 40px;
      color: #484848;
      -webkit-transition: background-color 0.25s ease-in-out;
      -moz-transition: background-color 0.25s ease-in-out;
      transition: background-color 0.25s ease-in-out;
      font-family: "Helvetica W02 Light"; }
      #lightbox-download .lightbox-action-wrapper .lightbox-action.lightbox-download {
        border-radius: 30px 0 0 30px; }
      #lightbox-download .lightbox-action-wrapper .lightbox-action.lightbox-preview {
        border-left: 1px solid #b3b3b3;
        box-shadow: inset 1px 0 0 #d9d9d9, inset -1px 0 0 #d9d9d9;
        border-right: 1px solid #b3b3b3; }
      #lightbox-download .lightbox-action-wrapper .lightbox-action.lightbox-cancel {
        border-radius: 0 30px 30px 0; }
        #lightbox-download .lightbox-action-wrapper .lightbox-action.lightbox-cancel:before {
          font-size: 9px;
          padding: 9px 0 0 0; }
      #lightbox-download .lightbox-action-wrapper .lightbox-action:before {
        font-family: 'fsc';
        position: absolute;
        color: #000;
        border-radius: 30px;
        top: 8px;
        left: 8px;
        text-align: center;
        padding: 5px 0 0 0;
        height: 25px;
        width: 25px; }
      #lightbox-download .lightbox-action-wrapper .lightbox-action:hover {
        background-color: #75c045;
        color: #ffffff;
        -webkit-transition: background-color 0.25s ease-in-out;
        -moz-transition: background-color 0.25s ease-in-out;
        transition: background-color 0.25s ease-in-out; }
        #lightbox-download .lightbox-action-wrapper .lightbox-action:hover:before {
          color: #ffffff; }

hr {
  margin: 0 0 25px 0;
  height: 1px;
  border: 0;
  border-top: 1px solid #e6e6e6;
  width: 100%;
  display: inline-block; }

.accordion {
  list-style: none;
  padding: 0; }
  .accordion .accordion-slidedown {
    border-bottom: 1px dotted #e6e6e6; }
    .accordion .accordion-slidedown .accordion-trigger {
      position: relative;
      color: #646464;
      display: block;
      text-decoration: none;
      padding: 10px 0 10px 25px;
      font-size: 18px !important;
      line-height: 1.2 !important;
      margin: 0 0 -1px 0 !important;
      cursor: pointer;
      border-bottom: 1px dotted #e6e6e6; }
      .accordion .accordion-slidedown .accordion-trigger.motion-passed {
        padding: 15px 0 15px 50px !important;
        font-size: 18px !important; }
        .accordion .accordion-slidedown .accordion-trigger.motion-passed.open:before {
          -webkit-transform: rotate(-45deg) !important;
          -moz-transform: rotate(-45deg) !important;
          -ms-transform: rotate(-45deg) !important;
          -o-transform: rotate(-45deg) !important;
          transform: rotate(-45deg) !important;
          top: 15px; }
        .accordion .accordion-slidedown .accordion-trigger.motion-passed.motion-not-passed:before {
          padding-top: 10px !important;
          content: '\e622' !important;
          background-color: #b90000; }
        .accordion .accordion-slidedown .accordion-trigger.motion-passed:before {
          height: 40px;
          width: 40px;
          border-radius: 20px;
          top: 15px;
          color: #ffffff !important;
          font-size: 18px !important;
          background-color: #75c045;
          content: '\e621' !important;
          padding: 9px 0 0 0 !important; }
      .accordion .accordion-slidedown .accordion-trigger:before {
        font-family: 'fsc';
        content: '\e615';
        font-size: 16px;
        position: absolute;
        color: #646464;
        top: 8px;
        left: 0px;
        text-align: center;
        padding: 5px 0 0 0;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: -webkit-transform 0.5s ease-in-out, top 0.5s ease-in-out;
        -moz-transition: -moz-transform 0.5s ease-in-out, top 0.5s ease-in-out;
        transition: transform 0.5s ease-in-out, top 0.5s ease-in-out; }
      .accordion .accordion-slidedown .accordion-trigger.open:before {
        top: 10px;
        -webkit-transform: rotate(-180deg);
        -moz-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        -o-transform: rotate(-180deg);
        transform: rotate(-180deg); }
      .accordion .accordion-slidedown .accordion-trigger:hover {
        color: #75c045 !important; }
        .accordion .accordion-slidedown .accordion-trigger:hover:before {
          color: #75c045; }
    .accordion .accordion-slidedown .accordion-content {
      padding: 20px 0 0 25px;
      display: none; }
      .accordion .accordion-slidedown .accordion-content.motions {
        padding: 20px 0 0 50px; }

.showhide {
  width: 100%;
  display: block;
  color: #646464;
  padding: 10px 20px;
  border-radius: 7px;
  margin-bottom: 20px;
  font-style: normal;
  background-color: #f0f0f0;
  cursor: pointer; }
  .showhide:hover {
    color: #ffffff;
    background-color: #75c045; }

.answer {
  display: block; }
  .answer p {
    display: block; }

.clearfix:after {
  content: "";
  display: table;
  clear: both; }

.nomargin {
  margin: 0 !important; }

.nopadding {
  padding: 0 !important; }

.news-read-more {
  color: #5e9d35;
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  padding: 4px 0 0 0;
  font-size: 12px; }

.kimshead {
  padding-left: 65px;
  position: relative; }
  .kimshead:before {
    height: 80px;
    width: 80px;
    border-radius: 40px;
    left: -20px;
    top: -41px;
    content: '';
    position: absolute;
    background-image: url("../img/kim-carstensen-headshot.jpg");
    background-size: cover;
    box-shadow: 0 0 8px #646464;
    background-color: white; }
  @media screen and (max-width: 640px) {
    .kimshead {
      padding-left: 55px; }
      .kimshead:before {
        height: 60px;
        width: 60px;
        border-radius: 30px;
        top: -20px; } }
  @media screen and (min-width: 641px) and (max-width: 802px) {
    .kimshead {
      padding-left: 55px; }
      .kimshead:before {
        height: 60px;
        width: 60px;
        border-radius: 30px;
        top: -25px; } }

.home .kimshead {
  padding-left: 60px; }
  .home .kimshead:before {
    height: 60px;
    width: 60px;
    border-radius: 30px;
    left: -10px;
    top: -10px;
    content: ''; }

.greybox {
  background-color: rgba(0, 0, 0, 0.05);
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 6px; }
  .greybox p {
    margin-bottom: 0; }

/*
Make the Facebook Like box responsive (fluid width)
https://developers.facebook.com/docs/reference/plugins/like-box/
*/
/* This element holds injected scripts inside iframes that in some cases may stretch layouts. So, we're just hiding it. */
#fb-root {
  display: none; }

/* To fill the container and nothing else */
.fb_iframe_widget, .fb_iframe_widget span, .fb_iframe_widget span iframe[style] {
  width: 100% !important; }

.eoe-mobile-search {
  display: none;
  background-color: #f00; }

.obfuma a {
  word-break: break-all; }

.breanchor {
  word-break: break-all; }

#scroller {
  margin: 5px 0 5px 0;
  padding: 20px 0;
  list-style: none;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6; }
  #scroller li {
    display: inline;
    margin: 0;
    padding: 0; }

/* FORMULARE =========================================================================================================================== */
*:focus {
  outline: none; }

span.sentvalue {
  font-family: 'Helvetica W02 Bold'; }

.your_url {
  display: none; }

form {
  padding: 0;
  margin: 0; }

form img {
  border: none;
  margin: 0; }

form .hide {
  display: none; }

fieldset {
  padding: 0;
  margin: 0 0 17px 0;
  border: 0; }

#main-search fieldset {
  position: relative;
  padding: 0 36px 0 30px;
  margin: 0 0 0 32px;
  background: url(../img/bck.main-search.fieldset.png) left top no-repeat; }

#main-search fieldset a.main-search-submit:link,
#main-search fieldset a.main-search-submit:visited {
  position: absolute;
  right: 0;
  top: 0;
  width: 32px;
  height: 32px;
  background: url(../img/button.main-search.submit.png) left top no-repeat; }

#main-search fieldset a.main-search-submit:hover,
#main-search fieldset a.main-search-submit:active,
#main-search fieldset a.main-search-submit:focus {
  background-position: left -100px; }

#main-search fieldset a.main-search-submit strong {
  display: none; }

.info ul {
  padding: 0 !important;
  margin: 0 !important; }

.info ul li {
  list-style: none;
  margin: 0;
  padding: 0 0 0 11px;
  background: url(../img/li.forminfo.png) 1px 8px no-repeat; }

.man,
.opt,
.void,
.info {
  margin: 0 0 2px 0;
  background: url(../img/bck.formfield.png);
  -moz-border-radius: 3px;
  border-radius: 3px; }

.info {
  background: transparent; }

#main-search .man,
#main-search .opt,
#main-search .void,
#main-search .info {
  margin: 0; }

.man input, .man textarea,
.opt input, .opt textarea,
.void input, .void textarea {
  background: transparent;
  padding: 0 0 0 0;
  border: 0px solid;
  width: 99%;
  font-size: 12px;
  font-family: Arial, Helvetica, sans-serif; }

textarea {
  resize: vertical; }

.fieldcontainer {
  padding: 7px 4px 8px 8px;
  background: url(../img/bck.formfield.png);
  background-position: left bottom;
  background-repeat: no-repeat;
  -moz-border-radius: 3px;
  border-radius: 3px; }

.nolabel .fieldcontainer {
  background-position: left top; }

.man label, .opt label, .void label,
.info label, .checkboxhead, .radiohead,
.innerformalert, .innerformnote {
  position: relative;
  display: block;
  padding: 4px;
  font-size: 11px;
  background: url(../img/bck.formlabel.png); }

label a, label u {
  text-decoration: none; }

label .lefty {
  float: left; }

label .righty {
  float: right;
  padding: 0 5px 0 0; }

.man span.captcha {
  display: block;
  background: #f0f0f0; }

.opt span.captcha {
  display: block;
  background: #f0f0f0; }

.void span.captcha {
  display: block;
  background: #f7dada; }

.innerformalert {
  padding: 4px;
  font-size: 12px;
  color: #b90000;
  background: #fae6e6;
  border-top: 1px dotted #fab4b4; }

.man {
  background-color: white;
  color: #8c8c8c;
  border: 1px solid #c8c8c8;
  border-top: 1px solid #c8c8c8;
  border-right: 1px solid #c8c8c8;
  border-bottom: 1px solid #c8c8c8; }

.man .fieldcontainer {
  background-color: white; }

.man input, .man textarea {
  color: black; }

.man input.unfocused, .man textarea.unfocused {
  color: #a0a0a0; }

.man input.focused, .man textarea.focused {
  color: black; }

.man label a:link,
.man label a:visited {
  color: #8c8c8c;
  text-decoration: none; }

.man label a:hover,
.man label a:active,
.man label a:focus {
  color: #b90000; }

.opt {
  background-color: white;
  color: #8c8c8c;
  border: 1px solid #c8c8c8;
  border-top: 1px solid #c8c8c8;
  border-right: 1px solid #c8c8c8;
  border-bottom: 1px solid #c8c8c8; }

.opt .fieldcontainer {
  background-color: white; }

.opt input, .opt textarea {
  color: black; }

.opt input.unfocused, .opt textarea.unfocused {
  color: #a0a0a0; }

.opt input.focused, .opt textarea.focused {
  color: black; }

.opt label a:link,
.opt label a:visited {
  color: #8c8c8c;
  text-decoration: none; }

.opt label a:hover,
.opt label a:active,
.opt label a:focus {
  color: #b90000; }

.void {
  background-color: #fae6e6;
  color: #b90000;
  border-left: 1px solid #f59696;
  border-top: 1px solid #f59696;
  border-right: 1px solid #f59696;
  border-bottom: 1px solid #f59696; }

.void .fieldcontainer {
  background-color: #fae6e6; }

.void input, .void textarea {
  color: #b90000; }

.void input.unfocused, .void textarea.unfocused {
  color: #c87878; }

.void input.focused, .void textarea.focused {
  color: #b90000; }

.void label,
.void .radiohead,
.void .checkboxhead {
  color: #b90000;
  background: url(../img/bck.formlabel.void.png); }

.void label a:link,
.void label a:visited {
  color: #b90000;
  text-decoration: none; }

.void label a:hover,
.void label a:active,
.void label a:focus {
  color: #e60000; }

.voidicon {
  position: absolute;
  left: -17px;
  top: 0;
  width: 20px;
  height: 20px;
  background: url(../img/i.formalert.png) left top no-repeat; }

.voidicon strong {
  display: none; }

.info {
  color: #8c8c8c;
  border: 1px solid #c8c8c8;
  -moz-border-radius: 3px;
  border-radius: 3px; }

.info .fieldcontainer {
  padding: 6px 8px 8px 8px;
  background: transparent; }

.info .infovalue {
  color: #8c8c8c; }

.info label {
  padding-left: 20px;
  background: url(../img/i.form.info.png) 5px center no-repeat;
  border-bottom: 1px solid gainsboro; }

.opt .xcheckbox, .opt .checkbox,
.man .xcheckbox, .man .checkbox,
.void .xcheckbox, .void .checkbox,
.opt .xradio, .opt .radio,
.man .xradio, .man .radio,
.void .xradio, .void .radio {
  cursor: pointer;
  height: 1%;
  display: block; }

.xcheckbox label, .checkbox label,
.xradio label, .radio label {
  font-size: 12px;
  line-height: 20px;
  background: transparent;
  margin: 0px 0px 0px 22px;
  padding: 0; }

.opt .radio {
  background: url(../img/radiocheck.png) 0px 0px no-repeat;
  color: #505050; }

.opt .xradio {
  background: url(../img/radiocheck.png) 0px -200px no-repeat;
  color: #505050; }

.opt .checkbox {
  background: url(../img/radiocheck.png) 0px -1200px no-repeat;
  color: #505050; }

.opt .xcheckbox {
  background: url(../img/radiocheck.png) 0px -1400px no-repeat;
  color: #505050; }

.man .radio {
  background: url(../img/radiocheck.png) 0px -400px no-repeat;
  color: #505050; }

.man .xradio {
  background: url(../img/radiocheck.png) 0px -600px no-repeat;
  color: #505050; }

.man .checkbox {
  background: url(../img/radiocheck.png) 0px -1600px no-repeat;
  color: #505050; }

.man .xcheckbox {
  background: url(../img/radiocheck.png) 0px -1800px no-repeat;
  color: #505050; }

.void .radio {
  background: url(../img/radiocheck.png) 0px -800px no-repeat;
  color: #b90000; }

.void .xradio {
  background: url(../img/radiocheck.png) 0px -1000px no-repeat;
  color: #b90000; }

.void .checkbox {
  background: url(../img/radiocheck.png) 0px -2000px no-repeat;
  color: #b90000; }

.void .xcheckbox {
  background: url(../img/radiocheck.png) 0px -2200px no-repeat;
  color: #b90000; }

.scrollbox {
  padding: 15px 15px 0 15px;
  margin: 0 0 2px 0;
  height: 112px;
  overflow: auto;
  color: #0f285f;
  background: white;
  border: 1px solid #a0aabe;
  border-top: 1px solid #a0aabe;
  border-right: 1px solid #cdd2dc;
  border-bottom: 1px solid #cdd2dc; }

.toggle-check-all-boxes label {
  cursor: pointer;
  color: #646464 !important;
  border-radius: 3px;
  margin-top: 3px;
  margin-right: 3px;
  padding: 5px 7px; }
  .toggle-check-all-boxes label:hover {
    color: #ffffff !important;
    background: #75c045; }

/* KATEGORIEN NAVIGATION --------------------------------------------------------------------------------------------------------------- */
#product_suppliers {
  position: relative;
  width: 100%;
  z-index: 1339; }

ul.category_navi {
  position: relative;
  padding: 0;
  margin: 0 0 2px 0;
  list-style: none; }

ul.category_navi li {
  padding: 0;
  margin: 0;
  list-style: none; }

ul.category_navi li a.down:link,
ul.category_navi li a.down:visited {
  display: block;
  height: 1%;
  padding: 3px 0 3px 30px;
  font-size: 12px;
  line-height: 20px;
  background: url(../img/li.down-small.dark.png) left top no-repeat #e1e1e1;
  color: #5a5a5a;
  text-decoration: none;
  margin-top: 1px; }

ul.category_navi li a.down:hover,
ul.category_navi li a.down:active,
ul.category_navi li a.down:focus {
  background-position: left -300px;
  background-color: #d7d7d7; }

ul.category_navi li a.first:link,
ul.category_navi li a.first:visited {
  padding: 5px 0 6px 30px;
  font-size: 14px;
  line-height: 20px;
  background: url(../img/li.down.dark.png) left top no-repeat gainsboro;
  color: #505050;
  -moz-border-radius: 3px;
  border-radius: 3px; }

ul.category_navi li a.first:hover,
ul.category_navi li a.first:active,
ul.category_navi li a.first:focus {
  background-position: left -300px;
  background-color: #d2d2d2; }

ul.category_navi li a:link var,
ul.category_navi li a:visited var {
  color: #8c8c8c; }

ul.category_navi li a:hover var,
ul.category_navi li a:active var,
ul.category_navi li a:focus var {
  color: #5a5a5a; }

.category_subnavi {
  display: none;
  padding: 10px 0 10px 10px;
  margin: 0;
  background: #e6e6e6;
  border-top: 1px solid #f0f0f0;
  max-height: 320px;
  overflow: auto; }

.category_subnavi ul {
  float: left;
  width: 210px;
  padding: 0 5px 0 0;
  margin: 0;
  list-style: none; }

.category_subnavi ul li {
  padding: 0;
  margin: 0; }

.category_subnavi ul li a:link,
.category_subnavi ul li a:visited {
  height: 1%;
  display: block;
  font-size: 12px;
  line-height: 20px;
  padding: 0 0 0 5px;
  text-decoration: none;
  color: #8c8c8c; }

.category_subnavi ul li a:hover,
.category_subnavi ul li a:active,
.category_subnavi ul li a:focus {
  color: #3c3c3c; }

.category_subnavi ul li a.active:link,
.category_subnavi ul li a.active:visited {
  color: #3c3c3c;
  background: gainsboro; }

.category_subnavi ul li a.active:hover,
.category_subnavi ul li a.active:active,
.category_subnavi ul li a.active:focus,
.category_subnavi ul li a.active:link {
  color: #3c3c3c; }

.column {
  float: left;
  padding: 0 20px 0 0;
  width: 200px; }

ul.category_navi li.resetlink {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 16px;
  height: 16px; }

ul.category_navi li.resetlink a:link,
ul.category_navi li.resetlink a:visited {
  display: inline-block;
  width: 16px;
  height: 16px;
  font-size: 9px;
  line-height: 16px;
  text-align: center;
  font-weight: bold;
  background: #b4b4b4;
  color: gainsboro;
  text-decoration: none;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px; }

ul.category_navi li.resetlink a:hover,
ul.category_navi li.resetlink a:active,
ul.category_navi li.resetlink a:focus {
  background-color: #787878;
  text-decoration: none; }

.navigati808n .navigati808n-sub {
  opacity: 1;
  position: absolute;
  z-index: 9999;
  background-color: #75c045; }

#fontSizer {
  position: absolute;
  left: -99999999999px;
  top: -99999999999px; }
  #fontSizer span {
    display: block;
    font-size: 500px;
    font-family: Arial; }

.userinfo {
  padding: 12px;
  background: rgba(230, 230, 230, 0.9); }
  .userinfo p {
    max-width: 1017px;
    margin-left: auto;
    margin-right: auto;
    margin: 0 auto;
    padding: 0;
    font-size: 12px; }
    .userinfo p:after {
      content: "";
      display: table;
      clear: both; }

.input-field input {
  height: 40px;
  border: none;
  border-radius: 20px;
  background-color: #ededed;
  position: relative;
  font-size: 14px;
  outline: none;
  font-family: "Helvetica W02 Light"; }
  .input-field input::-webkit-input-placeholder {
    color: #646464; }
  .input-field input::-moz-placeholder {
    color: #646464; }
  .input-field input:-moz-placeholder {
    color: #646464; }
  .input-field input:-ms-input-placeholder {
    color: #646464; }
  .input-field input[type="text"] {
    width: 60%;
    padding: 0px 40px 0 15px; }
  .input-field input[type="password"] {
    width: 60%;
    padding: 0px 40px 0 15px; }
  .input-field input[type="search"] {
    width: 60%;
    padding: 15px 40px 15px 15px; }
  .input-field input[type="submit"] {
    height: 40px;
    width: 40px;
    -webkit-appearance: none;
    background-color: rgba(100, 100, 100, 0.4); }
    .input-field input[type="submit"]:before {
      color: #ffffff; }

#lightbox-login {
  width: 400px; }
  #lightbox-login h4, #lightbox-login p {
    font-size: 14px !important; }
  #lightbox-login h4 {
    font-family: "Helvetica W02 Bold";
    font-weight: normal; }
  #lightbox-login hr {
    margin: 0 0 20px 0; }
  #lightbox-login .login-field .login-lost-password {
    display: inline-block;
    float: right;
    padding: 10px 0 0 0;
    font-size: 14px;
    text-decoration: none; }
  #lightbox-login .login-field .do-login {
    margin-bottom: 0 !important;
    background-color: #75c045;
    color: #ffffff;
    cursor: pointer;
    text-align: left;
    padding: 0 20px;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    transition: all 0.25s linear; }
    #lightbox-login .login-field .do-login:hover {
      background-color: #336949 !important; }
  #lightbox-login .login-field input {
    width: 100% !important;
    margin-bottom: 2px; }

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

sup {
  position: relative;
  top: -0.3em;
  vertical-align: top;
  margin: 0;
  padding: 0 0.2em;
  font-size: 0.6em; }

html {
  /* overflow	: -moz-scrollbars-vertical */ }
  @media screen and (min-width: 641px) and (max-width: 802px) {
    html .container {
      opacity: 1;
      -webkit-transition: opacity 0.25s linear;
      -moz-transition: opacity 0.25s linear;
      transition: opacity 0.25s linear; } }
  @media screen and (max-width: 640px) {
    html .container {
      opacity: 1;
      -webkit-transition: opacity 0.25s linear;
      -moz-transition: opacity 0.25s linear;
      transition: opacity 0.25s linear; } }
  html .buttons {
    list-style: none;
    padding: 0; }
    html .buttons li {
      margin: 0; }
      html .buttons li.submit a {
        background-color: #e6e6e6;
        color: #505050; }
      html .buttons li.submit_standalone a {
        background-color: #e6e6e6;
        color: #505050; }
      html .buttons li.cancel a {
        background-color: #f3f3f3;
        color: #505050; }
      html .buttons li.showhide a {
        background-color: #f3f3f3;
        color: #505050; }
      html .buttons li.forth a {
        background-color: #e6e6e6;
        color: #505050; }
      html .buttons li.back a {
        background-color: #e6e6e6;
        color: #505050; }
      html .buttons li a {
        -webkit-transition: all 0.25s ease-in-out;
        -moz-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out;
        padding: 7px 10px;
        display: block;
        text-decoration: none;
        color: white;
        border-radius: 4px;
        margin: 0 0 2px 0; }
        html .buttons li a:hover {
          background-color: #75c045;
          color: #ffffff; }
  html.eoe-menu-open, html.eoe-search-open {
    -webkit-tap-highlight-color: transparent; }
    @media screen and (min-width: 641px) and (max-width: 802px) {
      html.eoe-menu-open .container, html.eoe-search-open .container {
        -webkit-transition: opacity 0.25s linear;
        -moz-transition: opacity 0.25s linear;
        transition: opacity 0.25s linear;
        opacity: .2; } }
    @media screen and (max-width: 640px) {
      html.eoe-menu-open .container, html.eoe-search-open .container {
        -webkit-transition: opacity 0.25s linear;
        -moz-transition: opacity 0.25s linear;
        transition: opacity 0.25s linear;
        opacity: .2; } }

body {
  margin: 0;
  padding: 40px 0 0 0;
  font-family: "Helvetica W02 Light";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-y: scroll; }
  body.tell-a-friend {
    background-color: #e6e6e6;
    margin: 10px; }
    body.tell-a-friend h1 {
      font-size: 16px; }
  @media screen and (min-width: 641px) and (max-width: 802px) {
    body {
      padding: 0;
      margin: 130px 0 0 0; } }
  @media screen and (max-width: 640px) {
    body {
      padding: 0;
      margin: 130px 0 0 0; } }
  body.cookies-alert .cookies {
    margin-top: 60px;
    -webkit-transition: margin 0.5s linear;
    -moz-transition: margin 0.5s linear;
    transition: margin 0.5s linear; }
  body nav {
    display: none; }
  body .thumb {
    position: relative;
    display: block;
    margin-bottom: 10px;
    margin-top: 4px; }
    body .thumb.thumb-floating {
      display: inline !important;
      float: left; }
    body .thumb img {
      display: block;
      border: none;
      margin: 0; }
    body .thumb .credits {
      position: absolute;
      padding: 0 3px;
      right: 0;
      bottom: 0;
      font-size: 10px;
      font-family: "Helvetica W02 Roman";
      line-height: 1.5em;
      background-color: rgba(255, 255, 255, 0.7);
      color: #333333;
      border-top-left-radius: 3px; }
    body .thumb.lightbox:before {
      font-family: 'fsc';
      content: "\e619";
      font-size: 10px;
      line-height: 1;
      text-align: center;
      position: absolute;
      padding: 10px 0;
      bottom: 10px;
      left: 10px;
      background-color: rgba(255, 255, 255, 0.7);
      color: #333333;
      border-radius: 30px;
      height: 30px;
      width: 30px;
      -webkit-transition: all 0.25s ease-in-out;
      -moz-transition: all 0.25s ease-in-out;
      transition: all 0.25s ease-in-out;
      cursor: pointer; }
      @media screen and (max-width: 640px) {
        body .thumb.lightbox:before {
          height: 25px;
          width: 25px; }
          body .thumb.lightbox:before:before {
            padding: 0;
            font-size: 10px; } }
    body .thumb.lightbox:hover:before {
      color: #ffffff;
      background-color: rgba(117, 192, 69, 0.7);
      -webkit-transition: all 0.25s ease-in-out;
      -moz-transition: all 0.25s ease-in-out;
      transition: all 0.25s ease-in-out; }
  body .social-bar {
    position: fixed;
    width: 36px;
    margin-left: 8px;
    display: none; }
    @media screen and (max-width: 640px) {
      body .social-bar {
        visibility: hidden; } }
    body .social-bar.social-bar-header {
      border-bottom: 1px solid #e6e6e6;
      margin-bottom: 20px;
      margin-left: 0;
      position: relative;
      width: 100%;
      visibility: visible; }
      body .social-bar.social-bar-header ul {
        margin: 15px 0 !important;
        height: 40px;
        padding-left: 20px; }
        body .social-bar.social-bar-header ul li {
          margin: 8px 5px 0 0;
          float: left; }
          body .social-bar.social-bar-header ul li.spacer {
            margin-top: 8px;
            padding-top: 0;
            border-top: none; }
          body .social-bar.social-bar-header ul li:last-child {
            clear: right;
            margin-right: 0; }
    body .social-bar ul {
      padding: 0;
      list-style: none; }
      body .social-bar ul li {
        text-align: center; }
        body .social-bar ul li.spacer {
          margin-top: 10px;
          padding-top: 8px;
          border-top: 1px solid #e6e6e6; }
        body .social-bar ul li a {
          -webkit-transform: scale(1);
          -moz-transform: scale(1);
          -ms-transform: scale(1);
          -o-transform: scale(1);
          transform: scale(1);
          font-size: 35px;
          color: #fff;
          display: block;
          text-decoration: none;
          line-height: 1.2; }
          body .social-bar ul li a.fsc-facebook {
            color: #3b5998; }
          body .social-bar ul li a.fsc-twitter {
            color: #4099FF; }
          body .social-bar ul li a.fsc-pinterest {
            color: #cb2027; }
          body .social-bar ul li a.fsc-googleplus {
            color: #dd4b39;
            font-size: 32px; }
          body .social-bar ul li a.fsc-mail {
            color: #75c045;
            font-size: 32px; }
          body .social-bar ul li a.fsc-print {
            color: #979797;
            font-size: 32px; }
          body .social-bar ul li a:hover {
            -webkit-transform: scale(1.1);
            -moz-transform: scale(1.1);
            -ms-transform: scale(1.1);
            -o-transform: scale(1.1);
            transform: scale(1.1); }
  body .eoe-menu-toolbar {
    height: 30px;
    width: 100%;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 21;
    background-color: #336949; }
    body .eoe-menu-toolbar .country-indicator {
      font-family: "Helvetica W02 Blk Cn";
      font-size: 16px;
      margin-right: 15px;
      top: 5px;
      position: relative;
      color: rgba(255, 255, 255, 0.6);
      text-transform: uppercase;
      left: 20px; }
      body .eoe-menu-toolbar .country-indicator sup {
        text-transform: initial; }
    body .eoe-menu-toolbar .eoe-menu-toolbar-language {
      list-style: none;
      margin: 0;
      float: right; }
      body .eoe-menu-toolbar .eoe-menu-toolbar-language li {
        height: 30px;
        width: 30px;
        display: inline-block;
        margin-left: 5px;
        text-align: center;
        border-left: 1px solid rgba(255, 255, 255, 0.5);
        text-transform: uppercase; }
        body .eoe-menu-toolbar .eoe-menu-toolbar-language li a {
          display: block;
          font-size: 13px;
          padding: 7px 0 6px 4px;
          color: rgba(255, 255, 255, 0.5); }
          body .eoe-menu-toolbar .eoe-menu-toolbar-language li a.active {
            color: #ffffff; }
  body .eoe-menu-helper {
    position: fixed;
    width: 100%;
    top: 30px;
    left: 0;
    z-index: 20;
    height: 100px;
    overflow-x: hidden;
    overflow-y: hidden;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    -webkit-tap-highlight-color: transparent; }
    @media screen and (min-width: 803px) {
      body .eoe-menu-helper {
        display: none !important; } }
    body .eoe-menu-helper * {
      outline: none; }
    body .eoe-menu-helper .eoe-menu-logo {
      float: left;
      height: 190px;
      color: #336949;
      margin: 0;
      padding: 0 0 30px 0;
      -webkit-transition: all 0.25s ease-in-out;
      -moz-transition: all 0.25s ease-in-out;
      transition: all 0.25s ease-in-out;
      cursor: pointer; }
      @media screen and (min-width: 641px) and (max-width: 802px) {
        body .eoe-menu-helper .eoe-menu-logo {
          height: 70px;
          margin: 15px 0 0 10px;
          position: relative;
          padding: 0; }
          body .eoe-menu-helper .eoe-menu-logo span {
            font-family: "Helvetica W02 Blk Cn";
            font-size: 19px;
            color: #336949;
            text-transform: uppercase;
            position: absolute;
            bottom: -3px;
            left: 68px;
            opacity: .7; }
          body .eoe-menu-helper .eoe-menu-logo:before {
            position: absolute;
            z-index: 1;
            left: 2px;
            font-size: 70px !important; }
          body .eoe-menu-helper .eoe-menu-logo:after {
            position: absolute;
            z-index: 1;
            left: 2px;
            color: #39c435;
            font-size: 70px !important; } }
      @media screen and (max-width: 640px) {
        body .eoe-menu-helper .eoe-menu-logo {
          height: 70px;
          margin: 15px 0 0 10px;
          padding: 0;
          position: relative; }
          body .eoe-menu-helper .eoe-menu-logo span {
            font-family: "Helvetica W02 Blk Cn";
            font-size: 19px;
            color: #336949;
            text-transform: uppercase;
            position: absolute;
            bottom: -3px;
            left: 68px;
            opacity: .7; }
          body .eoe-menu-helper .eoe-menu-logo:before {
            position: absolute;
            z-index: 1;
            left: 0;
            font-size: 70px !important; }
          body .eoe-menu-helper .eoe-menu-logo:after {
            position: absolute;
            z-index: 1;
            left: 0;
            color: #39c435;
            font-size: 70px !important; } }
      body .eoe-menu-helper .eoe-menu-logo:before {
        font-size: 120px; }
      body .eoe-menu-helper .eoe-menu-logo strong {
        display: none; }
    body .eoe-menu-helper .eoe-menu-toggle {
      height: 100px;
      width: 80px;
      top: 30px;
      right: 0;
      z-index: 11;
      position: fixed;
      text-decoration: none;
      padding: 40px 15px 20px 0;
      cursor: pointer; }
      body .eoe-menu-helper .eoe-menu-toggle:hover:before {
        color: #75c045; }
      body .eoe-menu-helper .eoe-menu-toggle:before {
        display: block;
        color: #979797;
        font-size: 60px;
        text-align: right; }
    body .eoe-menu-helper .eoe-menu-search-toggle {
      height: 100px;
      width: 80px;
      top: 30px;
      right: 80px;
      z-index: 12;
      position: fixed;
      text-decoration: none;
      text-align: right;
      padding: 53px 5px 20px 20px;
      cursor: pointer; }
      body .eoe-menu-helper .eoe-menu-search-toggle:hover:before {
        color: #75c045; }
      body .eoe-menu-helper .eoe-menu-search-toggle:before {
        height: 100%;
        width: 100%;
        padding: 10px;
        color: #979797;
        font-size: 30px;
        text-align: right; }
  body .eoe-menu-search {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: auto;
    width: 100%;
    overflow: hidden;
    display: none;
    position: fixed;
    z-index: 19;
    padding: 20px;
    top: 30px;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1); }
    body .eoe-menu-search .eoe-menu-search-field {
      width: 100%; }
    body .eoe-menu-search .search-submit {
      position: absolute;
      right: 20px;
      top: 20px;
      cursor: pointer;
      -webkit-transition: background-color 0.25s ease-in-out;
      -moz-transition: background-color 0.25s ease-in-out;
      transition: background-color 0.25s ease-in-out; }
    body .eoe-menu-search:before {
      cursor: pointer;
      color: #ffffff;
      position: absolute;
      font-size: 1.2em;
      right: 30px;
      top: 31px;
      z-index: 2; }
  body .eoe-menu-wrapper {
    position: absolute;
    overflow-x: hidden;
    z-index: 19;
    top: 30px;
    left: 0; }
    body .eoe-menu-wrapper .eoe-menu ul {
      list-style: none;
      margin: 0;
      padding: 0;
      position: absolute;
      width: 100%;
      top: 0;
      box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
      overflow-y: auto;
      background-color: #ffffff; }
      body .eoe-menu-wrapper .eoe-menu ul.menu-active {
        visibility: visible !important;
        overflow-y: visible; }
      body .eoe-menu-wrapper .eoe-menu ul li {
        background-color: #ffffff; }
        body .eoe-menu-wrapper .eoe-menu ul li.back-li {
          position: relative;
          height: 40px;
          background-color: #e6e6e6;
          padding: 17px 20px;
          font-family: "Helvetica W02 Bold";
          font-weight: normal;
          color: #646464;
          text-transform: uppercase;
          font-size: 10px; }
          body .eoe-menu-wrapper .eoe-menu ul li.back-li:before {
            position: absolute;
            font-family: 'fsc';
            font-size: 16px;
            top: 14px;
            left: 7px;
            color: #646464; }
        body .eoe-menu-wrapper .eoe-menu ul li span {
          position: relative;
          display: block;
          height: 40px; }
          body .eoe-menu-wrapper .eoe-menu ul li span a {
            text-decoration: none;
            display: block;
            position: relative;
            color: #646464;
            font-family: "Helvetica W02 Light";
            font-size: 16px;
            border-top: 1px solid #e6e6e6;
            padding: 10px 20px;
            height: 40px;
            text-overflow: ellipsis;
            overflow: hidden;
            white-space: nowrap; }
            body .eoe-menu-wrapper .eoe-menu ul li span a.eoe-menu-active, body .eoe-menu-wrapper .eoe-menu ul li span a:hover {
              color: #64a839;
              background-color: rgba(117, 192, 69, 0.1); }
          body .eoe-menu-wrapper .eoe-menu ul li span .sub-toggle {
            position: absolute;
            right: 0;
            top: 1px;
            height: 39px;
            width: 60px;
            cursor: pointer;
            z-index: 10;
            border-left: 1px solid rgba(230, 230, 230, 0.35);
            background-color: rgba(230, 230, 230, 0.6); }
            body .eoe-menu-wrapper .eoe-menu ul li span .sub-toggle:before {
              position: absolute;
              padding: 12px 22px;
              color: #646464; }
        body .eoe-menu-wrapper .eoe-menu ul li.level-1:not(.eoe-menu-second) > span a {
          text-decoration: none;
          display: block;
          position: relative;
          color: #646464;
          font-family: "Helvetica W02 Blk Cn";
          letter-spacing: normal;
          font-weight: normal;
          text-transform: uppercase;
          font-size: 18px;
          border-top: 1px solid #e6e6e6;
          padding: 8px 20px;
          height: 40px;
          text-overflow: ellipsis;
          overflow: hidden;
          white-space: nowrap; }
          body .eoe-menu-wrapper .eoe-menu ul li.level-1:not(.eoe-menu-second) > span a.eoe-menu-active, body .eoe-menu-wrapper .eoe-menu ul li.level-1:not(.eoe-menu-second) > span a:hover {
            color: #64a839;
            background-color: rgba(117, 192, 69, 0.1); }
      body .eoe-menu-wrapper .eoe-menu ul .hasChild {
        height: 40px; }
        body .eoe-menu-wrapper .eoe-menu ul .hasChild ul {
          visibility: hidden; }
  body .content .social-bar {
    width: inherit;
    height: auto;
    position: inherit;
    float: left; }
    body .content .social-bar ul li {
      display: inline-block; }
      body .content .social-bar ul li a {
        display: block; }
  body .content.content-footer .social-bar {
    float: right; }
  body .social-profiles ul {
    padding: 0;
    margin: 0 0 7px 0;
    list-style: none;
    font-size: 0;
    line-height: 0; }
    body .social-profiles ul.topmargin {
      margin-top: 13px; }
    body .social-profiles ul li {
      display: inline-block;
      text-align: center;
      padding: 0 3px 0 0; }
      body .social-profiles ul li a {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        display: block;
        font-size: 32px;
        color: #fff;
        text-decoration: none;
        line-height: 1.1; }
        body .social-profiles ul li a.fsc-facebook-profile {
          color: #3b5998; }
        body .social-profiles ul li a.fsc-twitter-profile {
          color: #4099FF; }
        body .social-profiles ul li a.fsc-twitter-uk-profile {
          color: #4099FF; }
        body .social-profiles ul li a.fsc-pinterest-profile {
          color: #cb2027; }
        body .social-profiles ul li a.fsc-flickr-profile {
          color: #cb2027; }
        body .social-profiles ul li a.fsc-youtube-profile {
          color: #cb2027; }
        body .social-profiles ul li a.fsc-googleplus-profile {
          color: #dd4b39;
          font-size: 32px; }
        body .social-profiles ul li a.fsc-linkedin-profile {
          color: #1d85b9; }
        body .social-profiles ul li a.fsc-vk-profile {
          color: #6482a8; }
        body .social-profiles ul li a.fsc-instagram-profile {
          color: #7f5347; }
        body .social-profiles ul li a:hover {
          -webkit-transform: scale(1.1);
          -moz-transform: scale(1.1);
          -ms-transform: scale(1.1);
          -o-transform: scale(1.1);
          transform: scale(1.1); }
      body .social-profiles ul li a strong {
        display: none; }
  body.content-default #content {
    padding: 25px 0 0 0; }
    body.content-default #content .content.border-bottom {
      margin-bottom: 25px; }
    body.content-default #content .content.content-navigation {
      min-height: 400px; }
      @media screen and (min-width: 641px) and (max-width: 802px) {
        body.content-default #content .content.content-navigation {
          display: none; } }
      @media screen and (max-width: 640px) {
        body.content-default #content .content.content-navigation {
          display: none; } }
      body.content-default #content .content.content-navigation h5 {
        font-size: 16px;
        padding: 0;
        margin: 0;
        color: #646464;
        font-family: "Helvetica W02 Blk Cn";
        letter-spacing: normal;
        font-weight: normal;
        text-transform: uppercase; }
        body.content-default #content .content.content-navigation h5 > a {
          padding-left: 15px;
          display: block;
          color: #646464;
          text-decoration: none;
          -webkit-transition: all 0.25s ease-in-out;
          -moz-transition: all 0.25s ease-in-out;
          transition: all 0.25s ease-in-out; }
          body.content-default #content .content.content-navigation h5 > a:hover {
            color: #75c045;
            -webkit-transition: all 0.25s ease-in-out;
            -moz-transition: all 0.25s ease-in-out;
            transition: all 0.25s ease-in-out; }
      body.content-default #content .content.content-navigation ul {
        list-style: none;
        padding: 0; }
        body.content-default #content .content.content-navigation ul li a {
          display: block;
          text-decoration: none;
          -webkit-transition: all 0.25s ease-in-out;
          -moz-transition: all 0.25s ease-in-out;
          transition: all 0.25s ease-in-out; }
          body.content-default #content .content.content-navigation ul li a:hover {
            color: #75c045;
            -webkit-transition: all 0.25s ease-in-out;
            -moz-transition: all 0.25s ease-in-out;
            transition: all 0.25s ease-in-out; }
        body.content-default #content .content.content-navigation ul li.active a:hover {
          color: #75c045; }
      body.content-default #content .content.content-navigation > ul {
        list-style: none;
        margin: 15px 0 30px 0; }
        body.content-default #content .content.content-navigation > ul > li.active {
          background-color: #f5f5f5; }
          body.content-default #content .content.content-navigation > ul > li.active > a {
            color: #121212; }
        body.content-default #content .content.content-navigation > ul > li > a {
          display: block;
          text-decoration: none;
          color: #787878;
          border-bottom: 1px solid #e6e6e6;
          font-size: 16px;
          padding: 13px 15px 10px 15px; }
        body.content-default #content .content.content-navigation > ul > li > ul {
          margin: 0;
          border-bottom: 1px solid #e6e6e6; }
          body.content-default #content .content.content-navigation > ul > li > ul > li.active {
            background-color: #f5f5f5; }
            body.content-default #content .content.content-navigation > ul > li > ul > li.active > a {
              color: #121212;
              border-top: 1px solid none; }
          body.content-default #content .content.content-navigation > ul > li > ul > li:first-child > a {
            border-top: none; }
          body.content-default #content .content.content-navigation > ul > li > ul > li:last-child > a {
            border-bottom: none; }
          body.content-default #content .content.content-navigation > ul > li > ul > li > a {
            color: #787878;
            padding: 13px 15px 10px 30px;
            border-top: 1px solid #e6e6e6; }
          body.content-default #content .content.content-navigation > ul > li > ul > li > ul {
            margin: 5px 0 5px 0; }
            body.content-default #content .content.content-navigation > ul > li > ul > li > ul > li > a {
              position: relative;
              color: #787878;
              font-size: 16px;
              padding: 0 15px 10px 45px; }
              body.content-default #content .content.content-navigation > ul > li > ul > li > ul > li > a:before {
                position: absolute;
                top: 5px;
                left: 30px;
                color: rgba(120, 120, 120, 0.7);
                font-family: 'fsc';
                speak: none;
                font-style: normal;
                font-weight: normal;
                font-variant: normal;
                text-transform: none;
                line-height: 1.2;
                content: '\e604';
                font-size: 10px; }
            body.content-default #content .content.content-navigation > ul > li > ul > li > ul > li.active > a {
              color: #121212; }
              body.content-default #content .content.content-navigation > ul > li > ul > li > ul > li.active > a:before {
                color: #121212; }
            body.content-default #content .content.content-navigation > ul > li > ul > li > ul > li > ul {
              margin: 5px 0 5px 0; }
              body.content-default #content .content.content-navigation > ul > li > ul > li > ul > li > ul > li > a {
                position: relative;
                color: #787878;
                font-size: 16px;
                padding: 0 15px 10px 45px;
                font-style: italic; }
              body.content-default #content .content.content-navigation > ul > li > ul > li > ul > li > ul > li.active > a {
                color: #121212; }
        body.content-default #content .content.content-navigation > ul > li:first-child {
          border-top: 1px solid #e6e6e6; }
    body.content-default #content .content.content-footer {
      margin-bottom: 25px; }
      body.content-default #content .content.content-footer:after {
        content: "";
        display: table;
        clear: both; }
      body.content-default #content .content.content-footer .go-to-top {
        float: left;
        height: 34px;
        width: 34px;
        display: table;
        cursor: pointer;
        background-color: #f5f5f5;
        border-radius: 34px;
        margin-right: 15px;
        text-align: center; }
        body.content-default #content .content.content-footer .go-to-top:before {
          display: table-cell;
          vertical-align: middle;
          color: #646464;
          height: 34px;
          width: 34px; }
      body.content-default #content .content.content-footer .print {
        float: right;
        text-decoration: none;
        color: #646464;
        font-size: 12px;
        text-transform: uppercase;
        background-color: #f5f5f5;
        padding: 10px;
        border-radius: 5px; }
    body.content-default #content .image-description-slider {
      padding: 20px 20px 0 20px;
      margin-bottom: 25px;
      background-color: #f5f5f5; }
      body.content-default #content .image-description-slider .images-container {
        margin-bottom: 16px; }
        body.content-default #content .image-description-slider .images-container .thumb {
          opacity: 0.5;
          -webkit-transition: opacity 0.25s ease-in-out;
          -moz-transition: opacity 0.25s ease-in-out;
          transition: opacity 0.25s ease-in-out; }
          body.content-default #content .image-description-slider .images-container .thumb.active {
            opacity: 1;
            -webkit-transition: opacity 0.25s ease-in-out;
            -moz-transition: opacity 0.25s ease-in-out;
            transition: opacity 0.25s ease-in-out; }
      body.content-default #content .image-description-slider .description-content {
        display: none; }
        body.content-default #content .image-description-slider .description-content.active {
          display: block; }
  body .widget {
    margin-bottom: 30px; }
    @media screen and (max-width: 640px) {
      body .widget {
        width: 100%;
        width: 100%;
        margin-bottom: 5px; } }
    @media screen and (max-width: 640px) {
      body .widget:last-child {
        margin-bottom: 0; } }
    body .widget a img {
      display: block; }
    body .widget h3.widget-title {
      min-height: 30px;
      font-size: 16px;
      padding: 15px;
      margin: 0 !important;
      border-bottom: 1px solid #ffffff;
      font-family: "Helvetica W02 Bold";
      font-weight: normal; }
      @media screen and (max-width: 640px) {
        body .widget h3.widget-title {
          padding: 15px 20px; } }
    body .widget .widget-text {
      padding: 15px; }
      body .widget .widget-text:after {
        content: "";
        display: table;
        clear: both; }
      @media screen and (max-width: 640px) {
        body .widget .widget-text {
          margin: 15px 20px; } }
      body .widget .widget-text > p {
        padding: 0;
        margin: 0; }
    body .widget .widget-list {
      padding: 15px;
      margin: 0 0 20px 0;
      list-style: none; }
      body .widget .widget-list li a {
        position: relative;
        padding: 0 0 0 13px;
        text-decoration: none;
        font-size: 16px;
        line-height: 1.3;
        display: block; }
        body .widget .widget-list li a:before {
          position: absolute;
          content: '»';
          top: -2px;
          left: 0; }
    body .widget .widget-read-more {
      -webkit-transition: all 0.25s ease-in-out;
      -moz-transition: all 0.25s ease-in-out;
      transition: all 0.25s ease-in-out;
      display: block;
      text-decoration: none;
      text-transform: uppercase;
      height: 30px;
      border-top: 1px dotted #ffffff;
      padding: 8px 20px;
      font-size: 12px; }
    body .widget.grey2 {
      background-color: #e9e9e9;
      color: #656565; }
      body .widget.grey2 ul li > a {
        text-decoration: none;
        color: #656565; }
      body .widget.grey2 .widget-read-more:hover {
        box-shadow: inset 400px 0 0 #dfdfdf; }
      body .widget.grey2 .widget-title {
        background-color: #dfdfdf;
        color: #656565 !important; }
      body .widget.grey2 .widget-read-more {
        color: #656565; }
    body .widget.grey {
      background-color: #f3f3f3;
      color: #6f6f6f; }
      body .widget.grey ul li > a {
        text-decoration: none;
        color: #6f6f6f; }
      body .widget.grey .widget-read-more:hover {
        box-shadow: inset 400px 0 0 #e9e9e9; }
      body .widget.grey .widget-title {
        background-color: #e9e9e9;
        color: #6f6f6f !important; }
      body .widget.grey .widget-read-more {
        color: #6f6f6f; }
    body .widget.green {
      background-color: #f2f5d1;
      color: #757b42; }
      body .widget.green ul li > a {
        text-decoration: none;
        color: #757b42; }
      body .widget.green .widget-read-more:hover {
        box-shadow: inset 400px 0 0 #edf2c0; }
      body .widget.green .widget-title {
        background-color: #edf2c0;
        color: #757b42 !important; }
      body .widget.green .widget-read-more {
        color: #757b42; }
    body .widget.lightgreen {
      background-color: #f8fae6;
      color: #858c4b; }
      body .widget.lightgreen ul li > a {
        text-decoration: none;
        color: #858c4b; }
      body .widget.lightgreen .widget-read-more:hover {
        box-shadow: inset 400px 0 0 #f3f6d5; }
      body .widget.lightgreen .widget-title {
        background-color: #f3f6d5;
        color: #858c4b !important; }
      body .widget.lightgreen .widget-read-more {
        color: #858c4b; }
    body .widget.red {
      background-color: #ffe3e9;
      color: #b32644; }
      body .widget.red ul li > a {
        text-decoration: none;
        color: #b32644; }
      body .widget.red .widget-read-more:hover {
        box-shadow: inset 400px 0 0 #ffced9; }
      body .widget.red .widget-title {
        background-color: #ffced9;
        color: #b32644 !important; }
      body .widget.red .widget-read-more {
        color: #b32644; }
    body .widget.orange {
      background-color: #f8ebc9;
      color: #826e36; }
      body .widget.orange ul li > a {
        text-decoration: none;
        color: #826e36; }
      body .widget.orange .widget-read-more:hover {
        box-shadow: inset 400px 0 0 #f5e5b7; }
      body .widget.orange .widget-title {
        background-color: #f5e5b7;
        color: #826e36 !important; }
      body .widget.orange .widget-read-more {
        color: #826e36; }
    body .widget.blue {
      background-color: #e5edf8;
      color: #516682; }
      body .widget.blue ul li > a {
        text-decoration: none;
        color: #516682; }
      body .widget.blue .widget-read-more:hover {
        box-shadow: inset 400px 0 0 #d4e2f4; }
      body .widget.blue .widget-title {
        background-color: #d4e2f4;
        color: #516682 !important; }
      body .widget.blue .widget-read-more {
        color: #516682; }
    body .widget.lightblue {
      background-color: #f1f5fb;
      color: #576e8c; }
      body .widget.lightblue ul li > a {
        text-decoration: none;
        color: #576e8c; }
      body .widget.lightblue .widget-read-more:hover {
        box-shadow: inset 400px 0 0 #e1eaf7; }
      body .widget.lightblue .widget-title {
        background-color: #e1eaf7;
        color: #576e8c !important; }
      body .widget.lightblue .widget-read-more {
        color: #576e8c; }
  @media screen and (max-width: 640px) {
    body.home #content {
      padding: 0 !important; } }
  body.home .content {
    display: table-cell;
    padding: 25px 25px 0 25px; }
    body.home .content.col {
      border-right: 1px solid #e6e6e6;
      height: 200%; }
      @media screen and (max-width: 640px) {
        body.home .content.col {
          border-right: none; } }
      body.home .content.col:last-child {
        border-right: none; }
    body.home .content.widgets {
      padding-left: 0; }
      @media screen and (min-width: 641px) and (max-width: 802px) {
        body.home .content.widgets {
          padding: 10px !important; } }
      @media screen and (max-width: 640px) {
        body.home .content.widgets {
          padding: 10px 5px !important; } }
      body.home .content.widgets h2 {
        padding: 0 20px; }
    @media screen and (min-width: 641px) and (max-width: 802px) {
      body.home .content.news {
        padding: 10px 10px 0 10px; } }
    body.home .content.news.right {
      padding-right: 0; }
      @media screen and (max-width: 640px) {
        body.home .content.news.right {
          padding: 20px; } }
    body.home .content.news .news-item {
      color: #646464;
      font-size: 12px;
      border-bottom: 1px solid #e6e6e6;
      padding-bottom: 15px;
      margin-bottom: 25px; }
      @media screen and (max-width: 640px) {
        body.home .content.news .news-item {
          padding-bottom: 15px;
          margin-bottom: 15px; } }
      body.home .content.news .news-item:last-child {
        border-bottom: none;
        padding-bottom: 0; }
      body.home .content.news .news-item .news-date {
        font-family: "Helvetica W02 Roman"; }
        body.home .content.news .news-item .news-date:after {
          margin-left: 5px; }
      body.home .content.news .news-item .news-category {
        font-family: "Helvetica W02 Roman";
        text-decoration: none;
        color: #646464; }
      body.home .content.news .news-item .news-teaser {
        font-size: 16px;
        margin: 0;
        line-height: 20px; }
      body.home .content.news .news-item .thumb {
        margin-top: 15px; }
      body.home .content.news .news-item .image-first {
        margin-top: 0; }
    @media screen and (min-width: 641px) and (max-width: 802px) {
      body.home .content.upcoming-events {
        padding: 10px 10px 0 10px; } }
    body.home .content.upcoming-events .event {
      color: #646464;
      font-size: 12px;
      border-bottom: 1px solid #e6e6e6;
      padding-bottom: 25px;
      margin-bottom: 25px; }
      @media screen and (max-width: 640px) {
        body.home .content.upcoming-events .event {
          padding-bottom: 15px;
          margin-bottom: 15px; } }
      body.home .content.upcoming-events .event:last-child {
        border-bottom: none;
        margin-bottom: 0; }
      body.home .content.upcoming-events .event .event-image {
        margin-bottom: 8px;
        border: 1px solid #e6e6e6; }
        body.home .content.upcoming-events .event .event-image:hover {
          border: 1px solid #75c045; }
      body.home .content.upcoming-events .event .event-date:after {
        content: '·';
        margin-left: 5px; }
      body.home .content.upcoming-events .event .event-location {
        text-decoration: none;
        color: #646464; }
      body.home .content.upcoming-events .event .event-teaser {
        font-size: 16px;
        margin: 0;
        line-height: 20px; }
      body.home .content.upcoming-events .event .event-read-more {
        display: block;
        text-decoration: none;
        text-transform: uppercase;
        height: 30px;
        border-top: 1px dotted #ffffff;
        padding: 7px 0;
        font-size: 12px;
        color: #646464; }
  body #toolbar-navigation {
    position: fixed;
    top: 0;
    z-index: 1000;
    background-color: #336949;
    font-size: 12px;
    text-transform: uppercase;
    font-family: "Helvetica W02 Roman";
    height: 40px;
    width: 100%; }
    @media screen and (min-width: 803px) {
      body #toolbar-navigation {
        min-width: 803px; } }
    @media screen and (max-width: 640px) {
      body #toolbar-navigation {
        display: none; } }
    @media screen and (min-width: 641px) and (max-width: 802px) {
      body #toolbar-navigation {
        display: none; } }
    body #toolbar-navigation #toolbar-wrapper {
      position: relative;
      max-width: 1017px;
      margin-left: auto;
      margin-right: auto;
      margin: 0 auto;
      font-family: "Helvetica W02 Roman";
      color: rgba(255, 255, 255, 0.6); }
      body #toolbar-navigation #toolbar-wrapper:after {
        content: "";
        display: table;
        clear: both; }
      body #toolbar-navigation #toolbar-wrapper:after {
        content: "";
        display: table;
        clear: both; }
      body #toolbar-navigation #toolbar-wrapper #toolbar-left {
        float: left;
        margin: -1px 0 0 0;
        padding: 0;
        height: 40px; }
        body #toolbar-navigation #toolbar-wrapper #toolbar-left li {
          display: inline-block;
          margin-right: 15px;
          margin-top: -3px; }
          body #toolbar-navigation #toolbar-wrapper #toolbar-left li:last-child {
            margin-right: 0; }
          body #toolbar-navigation #toolbar-wrapper #toolbar-left li a {
            padding: 13px 0;
            display: block;
            height: 40px;
            text-decoration: none;
            color: rgba(255, 255, 255, 0.6);
            -webkit-transition: all 0.25s ease-in-out;
            -moz-transition: all 0.25s ease-in-out;
            transition: all 0.25s ease-in-out; }
            body #toolbar-navigation #toolbar-wrapper #toolbar-left li a:hover, body #toolbar-navigation #toolbar-wrapper #toolbar-left li a.active {
              color: #ffffff; }
        body #toolbar-navigation #toolbar-wrapper #toolbar-left .country-indicator {
          font-family: "Helvetica W02 Blk Cn";
          font-size: 14px;
          margin-right: 15px;
          top: 1px;
          position: relative; }
          body #toolbar-navigation #toolbar-wrapper #toolbar-left .country-indicator:before {
            content: "|";
            position: absolute;
            top: -1;
            font-size: 12px;
            right: -15px;
            color: rgba(255, 255, 255, 0.4); }
      body #toolbar-navigation #toolbar-wrapper #toolbar-right {
        float: right;
        margin: 12px 0;
        padding: 0; }
        body #toolbar-navigation #toolbar-wrapper #toolbar-right li {
          display: inline-block;
          margin-left: 15px; }
          body #toolbar-navigation #toolbar-wrapper #toolbar-right li.worldwide {
            color: rgba(255, 255, 255, 0.6); }
            body #toolbar-navigation #toolbar-wrapper #toolbar-right li.worldwide.with-language-selector {
              margin-right: 20px;
              position: relative; }
              body #toolbar-navigation #toolbar-wrapper #toolbar-right li.worldwide.with-language-selector:after {
                content: "|";
                position: absolute;
                top: 0;
                right: -15px;
                color: rgba(255, 255, 255, 0.4); }
          body #toolbar-navigation #toolbar-wrapper #toolbar-right li.language-option {
            margin-left: 5px; }
          body #toolbar-navigation #toolbar-wrapper #toolbar-right li a {
            text-decoration: none;
            color: rgba(255, 255, 255, 0.6);
            -webkit-transition: all 0.25s ease-in-out;
            -moz-transition: all 0.25s ease-in-out;
            transition: all 0.25s ease-in-out; }
            body #toolbar-navigation #toolbar-wrapper #toolbar-right li a:hover, body #toolbar-navigation #toolbar-wrapper #toolbar-right li a.active {
              color: #ffffff; }
  body #worldwide-reports-wrapper {
    height: 380px;
    width: 100%;
    position: relative; }
  body .map-reset {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 1;
    background: white;
    padding: 3px 5px;
    border: 1px solid #a0a0a0;
    border-radius: 3px;
    font-size: 12px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    cursor: pointer; }
  body #reports-map-content {
    padding: 20px 20px 0 20px;
    margin-bottom: 25px;
    background-color: #f5f5f5; }
  body #worldwide-events-wrapper {
    height: 380px;
    width: 100%;
    margin-bottom: 25px; }
  body #worldwide-inline-wrapper {
    height: 380px;
    width: 100%; }
  body .worldwide-inline-container {
    margin: 1px 0 25px 0; }
    body .worldwide-inline-container .geo-select {
      z-index: 10;
      left: 0;
      top: 20px;
      margin: 0;
      line-height: 1.6;
      overflow: hidden;
      background-color: #f5f5f5;
      margin-bottom: 2px; }
      body .worldwide-inline-container .geo-select:hover .title {
        background-color: #75c045;
        color: #ffffff;
        -webkit-transition: background-color 0.25s linear, color 0.25s linear;
        -moz-transition: background-color 0.25s linear, color 0.25s linear;
        transition: background-color 0.25s linear, color 0.25s linear; }
        body .worldwide-inline-container .geo-select:hover .title:before {
          color: #ffffff;
          -webkit-transition: background-color 0.25s linear, color 0.25s linear;
          -moz-transition: background-color 0.25s linear, color 0.25s linear;
          transition: background-color 0.25s linear, color 0.25s linear; }
      body .worldwide-inline-container .geo-select.geo-col-regions .title:before {
        left: 10px;
        content: "\e615"; }
      body .worldwide-inline-container .geo-select.geo-col-countries {
        display: none; }
        body .worldwide-inline-container .geo-select.geo-col-countries .title:before {
          left: 10px;
          content: "\e615"; }
      body .worldwide-inline-container .geo-select.geo-col-addresses {
        display: none; }
        body .worldwide-inline-container .geo-select.geo-col-addresses .title:before {
          left: 10px;
          content: "\f041";
          font-size: 1.5em;
          top: 0px; }
      body .worldwide-inline-container .geo-select .title {
        position: relative;
        display: block;
        padding: 8px 20px 10px 33px;
        width: 100%;
        height: 40px;
        background-color: #f5f5f5;
        cursor: pointer;
        color: #121212;
        -webkit-transition: background-color 0.25s linear, color 0.25s linear;
        -moz-transition: background-color 0.25s linear, color 0.25s linear;
        transition: background-color 0.25s linear, color 0.25s linear; }
        body .worldwide-inline-container .geo-select .title:before {
          position: absolute;
          display: block;
          color: #646464;
          font-family: "fsc";
          top: 8px;
          right: 10px;
          -webkit-transition: background-color 0.25s linear, color 0.25s linear;
          -moz-transition: background-color 0.25s linear, color 0.25s linear;
          transition: background-color 0.25s linear, color 0.25s linear; }
      body .worldwide-inline-container .geo-select ul {
        list-style: none;
        padding: 0;
        margin: 10px 0 5px 0; }
        body .worldwide-inline-container .geo-select ul li {
          list-style: none;
          margin: 0;
          padding: 0 7px 0 33px;
          font-size: 14px;
          line-height: 1.5; }
          body .worldwide-inline-container .geo-select ul li a {
            text-decoration: none;
            color: #505050; }
            body .worldwide-inline-container .geo-select ul li a:hover {
              color: #75c045; }
    body .worldwide-inline-container .geo-detail {
      bottom: 20px;
      background-color: rgba(255, 255, 255, 0.85);
      width: 100%;
      padding: 20px 0;
      color: #646464;
      border-radius: 10px; }
      body .worldwide-inline-container .geo-detail h4 {
        margin: 0 0 10px 0;
        font-family: "Helvetica W02 Bold";
        font-weight: normal;
        color: #336949; }
      body .worldwide-inline-container .geo-detail .column {
        float: left; }
        body .worldwide-inline-container .geo-detail .column.column-1 {
          width: 50%; }
        body .worldwide-inline-container .geo-detail .column p {
          margin: 0 !important;
          font-size: 14px !important; }
      body .worldwide-inline-container .geo-detail .column:nth-child(3) {
        width: 50%;
        padding: 0 0 0 20px; }
      body .worldwide-inline-container .geo-detail .close {
        cursor: pointer; }
        body .worldwide-inline-container .geo-detail .close:before {
          position: absolute;
          font-size: 12px;
          font-family: 'fsc';
          speak: none;
          font-style: normal;
          font-weight: normal;
          font-variant: normal;
          text-transform: none;
          line-height: 1;
          top: 20px;
          right: 20px;
          color: #646464;
          content: "\e606"; }
  body .worldwide-container {
    position: relative;
    height: 528px;
    margin-top: -488px !important;
    background-color: #bfeafd; }
    body .worldwide-container .worldwide-map-wrapper {
      position: absolute;
      top: 0;
      height: 100%;
      width: 100%;
      background-color: #bfeafd;
      max-width: 1014px;
      overflow: hidden; }
      body .worldwide-container .worldwide-map-wrapper:before {
        content: '';
        position: absolute;
        top: 0;
        left: -100px;
        height: 100%;
        width: 0;
        background-color: #bfeafd;
        z-index: 9;
        box-shadow: 0 0px 100px 200px #bfeafd; }
      body .worldwide-container .worldwide-map-wrapper:after {
        content: '';
        position: absolute;
        top: 0;
        right: -100px;
        height: 100%;
        width: 0;
        background-color: #bfeafd;
        z-index: 9;
        box-shadow: 0 0px 100px 200px #bfeafd; }
      body .worldwide-container .worldwide-map-wrapper .geo-detail {
        position: absolute;
        z-index: 10;
        bottom: 20px;
        background-color: rgba(255, 255, 255, 0.85);
        width: 100%;
        padding: 20px;
        color: #646464;
        border-radius: 10px; }
        body .worldwide-container .worldwide-map-wrapper .geo-detail h4 {
          margin: 0 0 10px;
          font-family: "Helvetica W02 Bold";
          font-weight: normal;
          color: #336949; }
        body .worldwide-container .worldwide-map-wrapper .geo-detail .column {
          float: left; }
          body .worldwide-container .worldwide-map-wrapper .geo-detail .column.column-1 {
            width: 30%; }
          body .worldwide-container .worldwide-map-wrapper .geo-detail .column p {
            margin: 0; }
        body .worldwide-container .worldwide-map-wrapper .geo-detail .column:nth-child(3) {
          width: 70%;
          padding: 0 0 0 20px; }
        body .worldwide-container .worldwide-map-wrapper .geo-detail .close {
          cursor: pointer; }
          body .worldwide-container .worldwide-map-wrapper .geo-detail .close:before {
            position: absolute;
            font-size: 12px;
            font-family: 'fsc';
            speak: none;
            font-style: normal;
            font-weight: normal;
            font-variant: normal;
            text-transform: none;
            line-height: 1;
            top: 20px;
            right: 20px;
            color: #646464;
            content: "\e606"; }
      body .worldwide-container .worldwide-map-wrapper .geo-select {
        position: absolute;
        z-index: 10;
        left: 0;
        top: 20px;
        padding: 9px 20px 10px 20px;
        margin: 0;
        line-height: 1.6;
        overflow: hidden;
        width: 32%;
        border-radius: 10px;
        background-color: rgba(255, 255, 255, 0.9); }
        body .worldwide-container .worldwide-map-wrapper .geo-select.geo-col-regions {
          left: 0; }
          body .worldwide-container .worldwide-map-wrapper .geo-select.geo-col-regions .title:before {
            content: "\e604";
            right: -5px;
            top: 0; }
        body .worldwide-container .worldwide-map-wrapper .geo-select.geo-col-countries {
          left: 34%;
          display: none; }
          body .worldwide-container .worldwide-map-wrapper .geo-select.geo-col-countries .title:before {
            content: "\e604";
            right: -5px;
            top: 0; }
        body .worldwide-container .worldwide-map-wrapper .geo-select.geo-col-addresses {
          left: 68%;
          display: none; }
          body .worldwide-container .worldwide-map-wrapper .geo-select.geo-col-addresses .title:before {
            content: "\f041";
            font-size: 1.5em;
            right: -7px;
            top: -7px; }
        body .worldwide-container .worldwide-map-wrapper .geo-select .title {
          position: relative;
          display: block;
          cursor: pointer; }
          body .worldwide-container .worldwide-map-wrapper .geo-select .title:before {
            position: absolute;
            display: block;
            color: #646464;
            font-family: "fsc"; }
        body .worldwide-container .worldwide-map-wrapper .geo-select ul {
          list-style: none;
          padding: 0;
          margin: 10px 0 5px 0; }
          body .worldwide-container .worldwide-map-wrapper .geo-select ul li {
            list-style: none;
            margin: 0;
            padding-right: 7px;
            font-size: 14px;
            line-height: 1.5; }
            body .worldwide-container .worldwide-map-wrapper .geo-select ul li a {
              text-decoration: none;
              color: #505050; }
              body .worldwide-container .worldwide-map-wrapper .geo-select ul li a:hover {
                color: #75c045; }
            body .worldwide-container .worldwide-map-wrapper .geo-select ul li .geo_subnavi {
              padding: 10px 25px 20px 25px; }
              body .worldwide-container .worldwide-map-wrapper .geo-select ul li .geo_subnavi:after {
                content: "";
                display: table;
                clear: both; }
              body .worldwide-container .worldwide-map-wrapper .geo-select ul li .geo_subnavi ul {
                display: inline-block;
                padding: 0;
                width: 50%;
                float: left; }
                body .worldwide-container .worldwide-map-wrapper .geo-select ul li .geo_subnavi ul li {
                  border-radius: 10px; }
                  body .worldwide-container .worldwide-map-wrapper .geo-select ul li .geo_subnavi ul li a {
                    line-height: 1.5; }
      body .worldwide-container .worldwide-map-wrapper .open:before {
        font-size: 20px;
        content: "\e615";
        font-family: 'fsc';
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        position: absolute;
        right: 10px;
        color: #336949; }
      body .worldwide-container .worldwide-map-wrapper .worldwide-map {
        background-color: transparent !important;
        height: 528px;
        width: 100%;
        opacity: 0;
        -webkit-transform: scale(2);
        -moz-transform: scale(2);
        -ms-transform: scale(2);
        -o-transform: scale(2);
        transform: scale(2);
        -webkit-transition: all 1s ease-in-out;
        -moz-transition: all 1s ease-in-out;
        transition: all 1s ease-in-out; }
        body .worldwide-container .worldwide-map-wrapper .worldwide-map.map-active {
          opacity: 1;
          -webkit-transform: scale(1);
          -moz-transform: scale(1);
          -ms-transform: scale(1);
          -o-transform: scale(1);
          transform: scale(1);
          -webkit-transition: all 1s ease-in-out;
          -moz-transition: all 1s ease-in-out;
          transition: all 1s ease-in-out; }
    body .worldwide-container .worldwide-toggle {
      left: 50%;
      bottom: -25px;
      position: absolute;
      z-index: 11;
      margin-left: -25px;
      cursor: pointer;
      border-radius: 50px;
      box-shadow: 0px 0px 7px rgba(7, 10, 9, 0.4);
      background-color: #ffffff;
      padding: 6px 0;
      text-align: center;
      height: 50px;
      width: 50px; }
      body .worldwide-container .worldwide-toggle:before {
        font-family: 'fsc';
        content: "\e605" !important;
        font-size: 1.6em;
        line-height: 1.45em;
        color: #646464;
        cursor: pointer;
        -webkit-transition: all 0.25s ease-in-out;
        -moz-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out; }
      body .worldwide-container .worldwide-toggle:hover {
        background-color: #75c045;
        -webkit-transition: all 0.25s ease-in-out;
        -moz-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out; }
        body .worldwide-container .worldwide-toggle:hover:before {
          color: #ffffff; }
  body #header {
    height: 190px;
    width: 100%;
    border-bottom: 1px solid #e6e6e6;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto; }
    body #header:after {
      content: "";
      display: table;
      clear: both; }
    @media screen and (min-width: 641px) and (max-width: 802px) {
      body #header {
        display: none; } }
    @media screen and (max-width: 640px) {
      body #header {
        display: none; } }
    body #header.with-login-info {
      margin-top: 35px; }
    body #header #header-wrapper {
      max-width: 1017px;
      margin-left: auto;
      margin-right: auto;
      margin: 0 auto;
      position: relative; }
      body #header #header-wrapper:after {
        content: "";
        display: table;
        clear: both; }
      @media screen and (min-width: 641px) and (max-width: 802px) {
        body #header #header-wrapper {
          width: 100% !important; } }
      body #header #header-wrapper #logo {
        float: left;
        height: 190px;
        color: #336949;
        margin: 0;
        padding: 63px 0 30px 0;
        position: relative;
        bottom: 0px;
        left: -5px;
        -webkit-transition: all 0.25s ease-in-out;
        -moz-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out; }
        body #header #header-wrapper #logo span {
          font-family: "Helvetica W02 Blk Cn";
          font-size: 16px;
          color: #336949;
          text-transform: uppercase;
          position: absolute;
          bottom: 11px;
          left: 20px;
          opacity: .7;
          letter-spacing: normal !important; }
        body #header #header-wrapper #logo:before {
          position: absolute;
          z-index: 1;
          left: 2px;
          font-size: 100px; }
        body #header #header-wrapper #logo:after {
          position: absolute;
          z-index: 0;
          left: 2px;
          font-size: 100px;
          color: #75c045; }
        body #header #header-wrapper #logo strong {
          display: none; }
      body #header #header-wrapper #navigation {
        display: table-cell;
        text-align: right;
        vertical-align: bottom;
        position: absolute;
        height: 80px;
        right: 0;
        bottom: 0;
        font-size: 0;
        -webkit-transform: translatez(0);
        z-index: 2; }
        @media screen and (min-width: 641px) and (max-width: 802px) {
          body #header #header-wrapper #navigation {
            display: none; } }
        @media screen and (max-width: 640px) {
          body #header #header-wrapper #navigation {
            display: none; } }
        body #header #header-wrapper #navigation > ul {
          margin: 0;
          padding: 0;
          height: 80px; }
          body #header #header-wrapper #navigation > ul > li {
            display: inline-block;
            padding: 0;
            text-align: left; }
            body #header #header-wrapper #navigation > ul > li:last-child {
              border-right: 1px solid #e6e6e6; }
            body #header #header-wrapper #navigation > ul > li > a {
              display: table-cell;
              vertical-align: middle;
              height: 80px;
              padding: 0 20px;
              margin: 0;
              border-top: 1px solid #e6e6e6;
              border-left: 1px solid #e6e6e6;
              text-decoration: none;
              color: #646464;
              font-family: "Helvetica W02 Blk Cn";
              letter-spacing: normal;
              font-weight: normal;
              line-height: 15px;
              font-size: 16px;
              text-transform: uppercase;
              -webkit-transition: color, box-shadow 0.25s linear;
              -moz-transition: color, box-shadow 0.25s linear;
              transition: color, box-shadow 0.25s linear; }
              body #header #header-wrapper #navigation > ul > li > a:hover {
                color: #fff !important;
                box-shadow: inset 0 80px #75c045; }
              body #header #header-wrapper #navigation > ul > li > a.active {
                color: #75c045; }
        body #header #header-wrapper #navigation .hovered {
          background-color: #75c045; }
          body #header #header-wrapper #navigation .hovered > a {
            color: #fff !important;
            box-shadow: inset 0 80px #75c045 !important;
            -webkit-transition: all 0.25s linear !important;
            -moz-transition: all 0.25s linear !important;
            transition: all 0.25s linear !important; }
        body #header #header-wrapper #navigation .navigati808n-parent {
          position: relative; }
        body #header #header-wrapper #navigation .navigati808n-sub {
          padding: 25px 25px;
          list-style: none;
          border: 1px solid #e6e6e6;
          border-top: 1px solid #91cd6b; }
          body #header #header-wrapper #navigation .navigati808n-sub li {
            line-height: 1.5; }
            body #header #header-wrapper #navigation .navigati808n-sub li a {
              white-space: nowrap;
              text-decoration: none;
              color: rgba(255, 255, 255, 0.6);
              font-family: "Helvetica W02 Roman";
              font-size: 16px;
              -webkit-transition: all 0.25s ease-in-out;
              -moz-transition: all 0.25s ease-in-out;
              transition: all 0.25s ease-in-out; }
              body #header #header-wrapper #navigation .navigati808n-sub li a:hover, body #header #header-wrapper #navigation .navigati808n-sub li a.active {
                color: #ffffff; }
      body #header #header-wrapper #search {
        position: absolute;
        width: 33.33%;
        right: 0;
        top: 40px;
        z-index: 11; }
        body #header #header-wrapper #search.open {
          box-shadow: 0 0 0px 1px rgba(0, 0, 0, 0.05);
          border-radius: 30px; }
        body #header #header-wrapper #search:hover .search-submit {
          background-color: #75c045;
          -webkit-transition: background-color 0.25s ease-in-out;
          -moz-transition: background-color 0.25s ease-in-out;
          transition: background-color 0.25s ease-in-out; }
        body #header #header-wrapper #search .input-field {
          position: relative; }
          body #header #header-wrapper #search .input-field #search-field {
            width: 100%; }
          body #header #header-wrapper #search .input-field .search-submit {
            position: absolute;
            right: 0;
            top: 0;
            cursor: pointer;
            -webkit-transition: background-color 0.25s ease-in-out;
            -moz-transition: background-color 0.25s ease-in-out;
            transition: background-color 0.25s ease-in-out; }
          body #header #header-wrapper #search .input-field:before {
            cursor: pointer;
            color: #ffffff;
            position: absolute;
            font-size: 1.2em;
            right: 10px;
            top: 11px;
            z-index: 2;
            pointer-events: none; }
        body #header #header-wrapper #search .search-results {
          background-color: rgba(240, 240, 240, 0.95);
          padding: 60px 20px 20px 20px;
          position: absolute;
          top: 0;
          z-index: -1;
          border-radius: 20px;
          box-shadow: 0 0 10px rgba(7, 10, 9, 0.15);
          width: 100%; }
          body #header #header-wrapper #search .search-results:after {
            content: "";
            display: table;
            clear: both; }
          body #header #header-wrapper #search .search-results .more-results {
            font-size: 12px;
            text-transform: uppercase;
            text-decoration: none; }
          body #header #header-wrapper #search .search-results .col-4-4 {
            margin: 25px 0; }
          body #header #header-wrapper #search .search-results h4 {
            font-size: 16px;
            color: #646464;
            font-family: "Helvetica W02 Blk Cn";
            letter-spacing: normal;
            font-weight: normal;
            text-transform: uppercase;
            margin: 0; }
          body #header #header-wrapper #search .search-results ul a {
            display: block;
            font-family: "Helvetica W02 Light";
            min-width: 0px; }
          body #header #header-wrapper #search .search-results ul .no-results {
            color: #646464;
            font-style: italic; }
          body #header #header-wrapper #search .search-results ul.search-results-pages, body #header #header-wrapper #search .search-results ul.search-results-news {
            list-style: none;
            padding: 0;
            margin: 0; }
            body #header #header-wrapper #search .search-results ul.search-results-pages li a, body #header #header-wrapper #search .search-results ul.search-results-news li a {
              color: #646464;
              text-decoration: none;
              position: relative;
              padding: 0 10px 0 10px; }
              body #header #header-wrapper #search .search-results ul.search-results-pages li a:hover, body #header #header-wrapper #search .search-results ul.search-results-pages li a.key-focused, body #header #header-wrapper #search .search-results ul.search-results-news li a:hover, body #header #header-wrapper #search .search-results ul.search-results-news li a.key-focused {
                color: #75c045; }
              body #header #header-wrapper #search .search-results ul.search-results-pages li a:before, body #header #header-wrapper #search .search-results ul.search-results-news li a:before {
                position: absolute;
                left: 0;
                top: -2px;
                content: '»';
                font-size: 14px; }
          body #header #header-wrapper #search .search-results ul.search-results-documents {
            list-style: none;
            padding: 0;
            margin: 5px 0 0 0; }
            body #header #header-wrapper #search .search-results ul.search-results-documents li {
              margin-bottom: 5px; }
              body #header #header-wrapper #search .search-results ul.search-results-documents li a {
                display: block;
                color: #646464;
                text-decoration: none;
                position: relative;
                padding: 2px 10px 0 30px; }
                body #header #header-wrapper #search .search-results ul.search-results-documents li a:before {
                  top: 3px;
                  color: #a4a4a4; }
                body #header #header-wrapper #search .search-results ul.search-results-documents li a:hover, body #header #header-wrapper #search .search-results ul.search-results-documents li a.key-focused {
                  color: #75c045; }
                  body #header #header-wrapper #search .search-results ul.search-results-documents li a:hover:before, body #header #header-wrapper #search .search-results ul.search-results-documents li a.key-focused:before {
                    color: #75c045; }
                  body #header #header-wrapper #search .search-results ul.search-results-documents li a:hover small, body #header #header-wrapper #search .search-results ul.search-results-documents li a.key-focused small {
                    color: #75c045; }
                    body #header #header-wrapper #search .search-results ul.search-results-documents li a:hover small span, body #header #header-wrapper #search .search-results ul.search-results-documents li a.key-focused small span {
                      color: #75c045; }
                body #header #header-wrapper #search .search-results ul.search-results-documents li a small {
                  color: #7e7e7e; }
                  body #header #header-wrapper #search .search-results ul.search-results-documents li a small span {
                    color: #646464; }
          body #header #header-wrapper #search .search-results .more-results-button {
            display: block;
            clear: both;
            border-radius: 20px;
            height: 40px;
            width: 100%;
            padding: 12px 20px;
            color: #646464;
            background-color: #dcdcdc;
            text-decoration: none;
            text-transform: uppercase;
            font-size: 12px;
            -webkit-transition: color, background-color 0.25s ease-in-out;
            -moz-transition: color, background-color 0.25s ease-in-out;
            transition: color, background-color 0.25s ease-in-out; }
            body #header #header-wrapper #search .search-results .more-results-button:hover {
              color: #ffffff;
              background-color: #75c045; }
  body > .container > #content > .col-3-4.last {
    margin-right: 0; }
  @media screen and (min-width: 641px) and (max-width: 802px) {
    body > .container > #content > .col-3-4 {
      float: left;
      display: block;
      margin-right: 2.3576515979%;
      width: 100%; } }
  @media screen and (min-width: 641px) and (max-width: 802px) {
    body > .container #content {
      padding: 0 20px; } }
  @media screen and (max-width: 640px) {
    body > .container #content {
      padding: 0 20px; } }
  body .container {
    max-width: 1017px;
    margin-left: auto;
    margin-right: auto;
    margin: 0 auto; }
    body .container:after {
      content: "";
      display: table;
      clear: both; }
    body .container.full-width {
      width: 100%;
      max-width: 100%;
      clear: both; }
      body .container.full-width:after {
        content: "";
        display: table;
        clear: both; }
    body .container .container-wrapper {
      max-width: 1017px;
      margin-left: auto;
      margin-right: auto;
      margin: 0 auto; }
      body .container .container-wrapper:after {
        content: "";
        display: table;
        clear: both; }
      body .container .container-wrapper:after {
        content: "";
        display: table;
        clear: both; }
      @media screen and (min-width: 641px) and (max-width: 802px) {
        body .container .container-wrapper {
          width: 100% !important; } }
    body .container .slider {
      display: block;
      position: relative;
      visibility: hidden; }
      body .container .slider.slider-teaser {
        background-color: #f5f5f5;
        margin-bottom: 25px; }
        body .container .slider.slider-teaser .slider-caption {
          padding: 15px 25px 0 25px; }
          body .container .slider.slider-teaser .slider-caption h1 {
            font-size: 22px !important; }
        body .container .slider.slider-teaser .slider-controls {
          top: 25px !important; }
        body .container .slider.slider-teaser .thumb {
          margin-top: 0; }
      body .container .slider.slider-heroes {
        height: 410px;
        width: 100%;
        border-left: 1px solid #e6e6e6;
        border-right: 1px solid #e6e6e6;
        border-bottom: 1px solid #e6e6e6;
        padding: 5px 3px 2px 5px;
        margin-bottom: 5px; }
        @media screen and (min-width: 641px) and (max-width: 802px) {
          body .container .slider.slider-heroes {
            margin: 20px 0;
            border-top: 1px solid #e6e6e6; } }
        @media screen and (max-width: 640px) {
          body .container .slider.slider-heroes {
            float: left;
            display: block;
            margin-right: 2.3576515979%;
            width: 100%;
            height: 310px; } }
        body .container .slider.slider-heroes .slider-wrapper {
          height: 400px;
          width: 100%; }
          body .container .slider.slider-heroes .slider-wrapper .slider-item {
            height: 400px;
            width: 100%; }
            @media screen and (max-width: 640px) {
              body .container .slider.slider-heroes .slider-wrapper .slider-item {
                height: 200px; } }
            @media screen and (min-width: 641px) and (max-width: 802px) {
              body .container .slider.slider-heroes .slider-wrapper .slider-item {
                height: 400px; } }
        @media screen and (max-width: 640px) {
          body .container .slider.slider-heroes .owl-wrapper-outer {
            height: 300px; } }
        body .container .slider.slider-heroes .slider-item-wrapper {
          position: absolute;
          left: 35px;
          bottom: 30px; }
          @media screen and (max-width: 640px) {
            body .container .slider.slider-heroes .slider-item-wrapper {
              height: 130px;
              width: 100%;
              padding: 20px 20px 0 20px !important;
              left: 0;
              bottom: -100px;
              background-color: #e6e6e6; } }
          body .container .slider.slider-heroes .slider-item-wrapper h1.slider-headline {
            font-family: "Helvetica W02 Blk Cn";
            letter-spacing: -0.02em;
            font-weight: normal;
            font-size: 40px;
            color: #ffffff;
            line-height: 1;
            margin: 0;
            text-transform: uppercase;
            text-shadow: 0px 0px 7px #070a09; }
            @media screen and (max-width: 640px) {
              body .container .slider.slider-heroes .slider-item-wrapper h1.slider-headline {
                text-shadow: none;
                color: #505050;
                font-size: 22px !important; } }
          body .container .slider.slider-heroes .slider-item-wrapper p.slider-text {
            color: #ffffff;
            line-height: 1.2;
            font-size: 16px;
            margin: 0;
            text-shadow: 0px 0px 7px #070a09; }
        body .container .slider.slider-heroes .slider-controls {
          height: 50px;
          width: 50px;
          border-radius: 25px;
          font-size: 1.6em;
          padding: 12px 0 0 0;
          opacity: 1; }
          @media screen and (max-width: 640px) {
            body .container .slider.slider-heroes .slider-controls {
              height: 25px;
              width: 25px;
              margin-top: 8px !important;
              padding: 0 0 0 0; }
              body .container .slider.slider-heroes .slider-controls:before {
                position: absolute;
                font-size: 15px; } }
          body .container .slider.slider-heroes .slider-controls.slider-prev {
            left: -20px;
            top: 50%;
            margin-top: -25px; }
            @media screen and (min-width: 641px) and (max-width: 802px) {
              body .container .slider.slider-heroes .slider-controls.slider-prev {
                left: 20px; } }
            @media screen and (max-width: 640px) {
              body .container .slider.slider-heroes .slider-controls.slider-prev {
                left: 20px; } }
            @media screen and (max-width: 640px) {
              body .container .slider.slider-heroes .slider-controls.slider-prev:before {
                left: 4px;
                top: 5px;
                padding: 0; } }
            body .container .slider.slider-heroes .slider-controls.slider-prev:hover {
              background-color: #75c045;
              -webkit-transition: all 0.25s ease-in-out;
              -moz-transition: all 0.25s ease-in-out;
              transition: all 0.25s ease-in-out; }
              body .container .slider.slider-heroes .slider-controls.slider-prev:hover:before {
                color: #ffffff; }
          body .container .slider.slider-heroes .slider-controls.slider-next {
            right: -20px;
            top: 50%;
            margin-top: -25px; }
            @media screen and (min-width: 641px) and (max-width: 802px) {
              body .container .slider.slider-heroes .slider-controls.slider-next {
                right: 20px; } }
            @media screen and (max-width: 640px) {
              body .container .slider.slider-heroes .slider-controls.slider-next {
                right: 20px; } }
            @media screen and (max-width: 640px) {
              body .container .slider.slider-heroes .slider-controls.slider-next:before {
                left: 6px;
                top: 5px;
                padding: 0; } }
            body .container .slider.slider-heroes .slider-controls.slider-next:hover {
              background-color: #75c045;
              -webkit-transition: all 0.25s ease-in-out;
              -moz-transition: all 0.25s ease-in-out;
              transition: all 0.25s ease-in-out; }
              body .container .slider.slider-heroes .slider-controls.slider-next:hover:before {
                color: #ffffff; }
          body .container .slider.slider-heroes .slider-controls:before {
            color: #646464;
            -webkit-transition: all 0.25s ease-in-out;
            -moz-transition: all 0.25s ease-in-out;
            transition: all 0.25s ease-in-out; }
          body .container .slider.slider-heroes .slider-controls:hover {
            box-shadow: 0px 0px 7px rgba(7, 10, 9, 0.35); }
      body .container .slider .slider-controls {
        height: 30px;
        width: 30px;
        -webkit-transition: all 0.25s ease-in-out;
        -moz-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out;
        position: absolute;
        border-radius: 15px;
        background-color: #ffffff;
        box-shadow: 0px 0px 7px rgba(7, 10, 9, 0.25);
        text-align: center;
        z-index: 1;
        cursor: pointer;
        font-size: 1.3em;
        padding: 5px 0 0 0;
        opacity: 0; }
        @media screen and (max-width: 640px) {
          body .container .slider .slider-controls {
            height: 25px;
            width: 25px;
            margin-top: -10px !important; }
            body .container .slider .slider-controls:before {
              font-size: 15px; } }
        body .container .slider .slider-controls.slider-prev {
          left: 10px;
          top: 50%;
          margin-top: -10px; }
          @media screen and (min-width: 641px) and (max-width: 802px) {
            body .container .slider .slider-controls.slider-prev {
              left: 15px; } }
          @media screen and (max-width: 640px) {
            body .container .slider .slider-controls.slider-prev {
              left: 15px; } }
          @media screen and (max-width: 640px) {
            body .container .slider .slider-controls.slider-prev:before {
              padding: 0; } }
          body .container .slider .slider-controls.slider-prev:hover {
            background-color: #75c045;
            -webkit-transition: all 0.25s ease-in-out;
            -moz-transition: all 0.25s ease-in-out;
            transition: all 0.25s ease-in-out; }
            body .container .slider .slider-controls.slider-prev:hover:before {
              color: #ffffff; }
        body .container .slider .slider-controls.slider-next {
          right: 10px;
          top: 50%;
          margin-top: -10px; }
          @media screen and (min-width: 641px) and (max-width: 802px) {
            body .container .slider .slider-controls.slider-next {
              right: 15px; } }
          @media screen and (max-width: 640px) {
            body .container .slider .slider-controls.slider-next {
              right: 15px; } }
          @media screen and (max-width: 640px) {
            body .container .slider .slider-controls.slider-next:before {
              padding: 0; } }
          body .container .slider .slider-controls.slider-next:hover {
            background-color: #75c045;
            -webkit-transition: all 0.25s ease-in-out;
            -moz-transition: all 0.25s ease-in-out;
            transition: all 0.25s ease-in-out; }
            body .container .slider .slider-controls.slider-next:hover:before {
              color: #ffffff; }
        body .container .slider .slider-controls:before {
          color: #646464;
          -webkit-transition: all 0.25s ease-in-out;
          -moz-transition: all 0.25s ease-in-out;
          transition: all 0.25s ease-in-out; }
        body .container .slider .slider-controls:hover {
          box-shadow: 0px 0px 7px rgba(7, 10, 9, 0.35); }
      body .container .slider .slider-wrapper {
        max-width: 1002px;
        margin-left: auto;
        margin-right: auto; }
        body .container .slider .slider-wrapper:after {
          content: "";
          display: table;
          clear: both; }
        body .container .slider .slider-wrapper .slider-item {
          -webkit-box-sizing: border-box;
          -moz-box-sizing: border-box;
          box-sizing: border-box;
          overflow: visible;
          display: none;
          background-color: #df6;
          background: transparent;
          background-size: cover !important;
          cursor: pointer; }
          body .container .slider .slider-wrapper .slider-item.active {
            display: block; }
      body .container .slider:hover .slider-controls {
        opacity: 1; }
    body .container #claims {
      width: 100%; }
      body .container #claims:after {
        content: "";
        display: table;
        clear: both; }
      body .container #claims .claim {
        padding: 20px 25px;
        border-right: 1px solid #ffffff;
        height: 100%;
        float: left;
        display: block;
        width: 34.1192171993%;
        margin-right: 0;
        display: table-cell;
        float: none; }
        body .container #claims .claim:last-child {
          width: 31.7615656014%; }
        @media screen and (min-width: 641px) and (max-width: 802px) {
          body .container #claims .claim {
            padding: 15px 15px; } }
        @media screen and (max-width: 640px) {
          body .container #claims .claim {
            margin-bottom: 2px;
            width: 100% !important;
            float: left;
            display: block;
            margin-right: 2.3576515979%;
            width: 100%; } }
        body .container #claims .claim:last-child {
          border-right: none; }
        body .container #claims .claim .claim-icon {
          display: table;
          height: 42px;
          float: left;
          margin-right: 10px; }
          @media screen and (min-width: 641px) and (max-width: 802px) {
            body .container #claims .claim .claim-icon {
              height: 30px;
              margin-right: 5px; } }
          body .container #claims .claim .claim-icon:before {
            font-size: 36px; }
            @media screen and (min-width: 641px) and (max-width: 802px) {
              body .container #claims .claim .claim-icon:before {
                font-size: 26px; } }
        body .container #claims .claim h2 {
          display: inline-block;
          font-family: "Helvetica W02 Blk Cn";
          letter-spacing: normal;
          font-weight: normal;
          text-transform: uppercase;
          line-height: 1;
          margin: 0;
          font-size: 22px; }
          @media screen and (min-width: 641px) and (max-width: 802px) {
            body .container #claims .claim h2 {
              font-size: 16px; } }
        body .container #claims .claim p {
          font-size: 16px;
          margin: 3px 0 0 0; }
          @media screen and (max-width: 640px) {
            body .container #claims .claim p {
              display: none; } }
        body .container #claims .claim.claim-environment {
          background-color: #f9fbea; }
          body .container #claims .claim.claim-environment .fsc-environment {
            margin-top: -4px; }
            body .container #claims .claim.claim-environment .fsc-environment:before {
              color: #afbe28;
              font-size: 42px; }
              @media screen and (min-width: 641px) and (max-width: 802px) {
                body .container #claims .claim.claim-environment .fsc-environment:before {
                  font-size: 36px; } }
          body .container #claims .claim.claim-environment h2 {
            color: #afbe28; }
            body .container #claims .claim.claim-environment h2 span {
              color: #616a16; }
          body .container #claims .claim.claim-environment p {
            color: #616a16; }
        body .container #claims .claim.claim-social {
          background-color: #fbf5e4; }
          body .container #claims .claim.claim-social .fsc-social {
            padding: 3px 0 0 0; }
            body .container #claims .claim.claim-social .fsc-social:before {
              color: #dcaa1e; }
          body .container #claims .claim.claim-social h2 {
            color: #dcaa1e; }
            body .container #claims .claim.claim-social h2 span {
              color: #826512; }
          body .container #claims .claim.claim-social p {
            color: #826512; }
        body .container #claims .claim.claim-economical {
          background-color: #e5edf8; }
          body .container #claims .claim.claim-economical .fsc-economical {
            padding: 5px 0 0 0; }
            body .container #claims .claim.claim-economical .fsc-economical:before {
              color: #a0bee6; }
          body .container #claims .claim.claim-economical h2 {
            color: #a0bee6; }
            body .container #claims .claim.claim-economical h2 span {
              color: #56677d; }
          body .container #claims .claim.claim-economical p {
            color: #4f87d1; }
    body .container #content:after {
      content: "";
      display: table;
      clear: both; }
    @media screen and (max-width: 640px) {
      body .container .footer-item {
        display: none; }
        body .container .footer-item.footer-newsletter, body .container .footer-item.footer-iseal {
          display: block; } }
  body #footer-navigation {
    border-top: 1px solid #e6e6e6;
    color: #646464;
    background: white;
    font-size: 16px; }
    @media screen and (max-width: 640px) {
      body #footer-navigation {
        margin-bottom: 0;
        margin-top: 30px; } }
    body #footer-navigation .container-wrapper {
      background-color: #f5f5f5;
      border-top: 5px solid #ffffff;
      padding: 25px; }
    body #footer-navigation .footer-item {
      font-family: "Helvetica W02 Light"; }
      @media screen and (min-width: 641px) and (max-width: 802px) {
        body #footer-navigation .footer-item {
          padding-right: 0; } }
      @media screen and (max-width: 640px) {
        body #footer-navigation .footer-item {
          margin-bottom: 20px; } }
      body #footer-navigation .footer-item.footer-newsletter {
        position: relative; }
        body #footer-navigation .footer-item.footer-newsletter .footer-navigation-headline, body #footer-navigation .footer-item.footer-newsletter .footer-navigation-text {
          padding-left: 40px; }
        body #footer-navigation .footer-item.footer-newsletter:before {
          height: 100%;
          width: 40px;
          color: rgba(100, 100, 100, 0.6);
          position: absolute;
          font-size: 1.9em;
          padding-top: 5px;
          left: 0;
          top: -3px;
          font-family: 'fsc';
          content: "\e620"; }
      body #footer-navigation .footer-item.footer-iseal {
        margin-bottom: 0; }
        body #footer-navigation .footer-item.footer-iseal a {
          position: relative;
          display: block;
          height: 100px;
          padding: 1px;
          text-align: center; }
          body #footer-navigation .footer-item.footer-iseal a:before, body #footer-navigation .footer-item.footer-iseal a:after {
            position: absolute;
            width: 100%;
            font-family: 'fsc';
            font-size: 100px;
            left: 0;
            top: 0; }
          body #footer-navigation .footer-item.footer-iseal a:before {
            font-family: 'fsc';
            content: '\e624';
            color: #127dbb;
            z-index: 1; }
          body #footer-navigation .footer-item.footer-iseal a:after {
            font-family: 'fsc';
            z-index: 0;
            color: #a0a0a0;
            content: '\e623'; }
          body #footer-navigation .footer-item.footer-iseal a strong {
            display: none; }
      body #footer-navigation .footer-item .input-field {
        float: left;
        display: block;
        width: 102.3576515979%; }
        body #footer-navigation .footer-item .input-field:last-child {
          width: 100%; }
        @media screen and (min-width: 641px) and (max-width: 802px) {
          body #footer-navigation .footer-item .input-field {
            float: left;
            display: block;
            width: 102.3576515979%; }
            body #footer-navigation .footer-item .input-field:last-child {
              width: 100%; } }
        @media screen and (max-width: 640px) {
          body #footer-navigation .footer-item .input-field {
            float: left;
            display: block;
            width: 102.3576515979%; }
            body #footer-navigation .footer-item .input-field:last-child {
              width: 100%; } }
      body #footer-navigation .footer-item h4.footer-navigation-headline {
        font-size: 16px;
        padding: 0;
        margin: 0 0 1px 0;
        font-family: "Helvetica W02 Bold";
        font-weight: normal; }
      body #footer-navigation .footer-item p.footer-navigation-text {
        margin: 0 0 13px 0; }
        @media screen and (max-width: 640px) {
          body #footer-navigation .footer-item p.footer-navigation-text br {
            display: none; }
          body #footer-navigation .footer-item p.footer-navigation-text:last-child {
            margin-bottom: 0; } }
        body #footer-navigation .footer-item p.footer-navigation-text strong {
          color: #717171; }
      body #footer-navigation .footer-item ul.footer-navigation-quick-links {
        padding: 0;
        margin: 0;
        line-height: 1; }
        @media screen and (max-width: 640px) {
          body #footer-navigation .footer-item ul.footer-navigation-quick-links {
            margin-top: 5px; } }
        body #footer-navigation .footer-item ul.footer-navigation-quick-links li {
          list-style: none;
          margin: 0 0 1px 0; }
          @media screen and (max-width: 640px) {
            body #footer-navigation .footer-item ul.footer-navigation-quick-links li {
              margin-bottom: 5px; }
              body #footer-navigation .footer-item ul.footer-navigation-quick-links li:last-child {
                margin-bottom: 0; } }
          body #footer-navigation .footer-item ul.footer-navigation-quick-links li a {
            text-decoration: none;
            color: #646464; }
            body #footer-navigation .footer-item ul.footer-navigation-quick-links li a:before {
              content: '»';
              font-size: 18px;
              margin-right: 5px; }
      body #footer-navigation .footer-item .input-field {
        position: relative;
        width: 80%; }
        body #footer-navigation .footer-item .input-field:hover .subscribe-submit {
          background-color: #75c045;
          -webkit-transition: background-color 0.25s ease-in-out;
          -moz-transition: background-color 0.25s ease-in-out;
          transition: background-color 0.25s ease-in-out; }
        body #footer-navigation .footer-item .input-field #subscribe-to-newsletter {
          width: 100%;
          position: relative; }
        body #footer-navigation .footer-item .input-field .subscribe-submit {
          position: absolute;
          right: 0;
          top: 0;
          cursor: pointer;
          -webkit-transition: background-color 0.25s ease-in-out;
          -moz-transition: background-color 0.25s ease-in-out;
          transition: background-color 0.25s ease-in-out; }
        body #footer-navigation .footer-item .input-field:before {
          cursor: pointer;
          color: #ffffff;
          position: absolute;
          font-size: 1.2em;
          right: 10px;
          top: 11px;
          z-index: 2;
          pointer-events: none; }
  body #brandimals {
    width: 100%;
    background-color: #75c045;
    clear: both;
    float: none;
    position: relative; }
    @media screen and (max-width: 640px) {
      body #brandimals {
        display: none; } }
    body #brandimals #brandimals-wrapper {
      max-width: 1017px;
      margin-left: auto;
      margin-right: auto;
      margin: 0 auto; }
      body #brandimals #brandimals-wrapper:after {
        content: "";
        display: table;
        clear: both; }
      body #brandimals #brandimals-wrapper .brandimals-left {
        float: left;
        width: 50%;
        height: 240px;
        background: url(../img/branimals-left.png) left top no-repeat; }
      body #brandimals #brandimals-wrapper .brandimals-right {
        float: right;
        width: 50%;
        height: 240px;
        background: url(../img/branimals-right.png) right top no-repeat; }
  body #service-navigation {
    width: 100%;
    background-color: #336949;
    clear: both;
    float: none;
    height: 50px;
    color: #ffffff;
    box-shadow: 0 -10px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3); }
    body #service-navigation.top-spaced {
      margin-top: 65px; }
    @media screen and (max-width: 640px) {
      body #service-navigation {
        padding: 0;
        height: inherit; } }
    body #service-navigation #service-navigation-wrapper {
      max-width: 1017px;
      margin-left: auto;
      margin-right: auto;
      height: 39px;
      margin: 0 auto; }
      body #service-navigation #service-navigation-wrapper:after {
        content: "";
        display: table;
        clear: both; }
      @media screen and (min-width: 641px) and (max-width: 802px) {
        body #service-navigation #service-navigation-wrapper {
          text-align: center; } }
      @media screen and (max-width: 640px) {
        body #service-navigation #service-navigation-wrapper {
          height: inherit; } }
      body #service-navigation #service-navigation-wrapper ul.service-navigation {
        display: inline-block;
        margin: 12px 0;
        padding: 0;
        float: left; }
        @media screen and (min-width: 641px) and (max-width: 802px) {
          body #service-navigation #service-navigation-wrapper ul.service-navigation {
            width: 100%; } }
        @media screen and (max-width: 640px) {
          body #service-navigation #service-navigation-wrapper ul.service-navigation {
            width: 100%; } }
        body #service-navigation #service-navigation-wrapper ul.service-navigation li {
          display: inline-block;
          margin-right: 15px; }
          @media screen and (max-width: 640px) {
            body #service-navigation #service-navigation-wrapper ul.service-navigation li {
              display: block;
              width: 100%;
              padding: 0 20px 4px 20px;
              border-bottom: 1px solid rgba(230, 230, 230, 0.1); } }
          body #service-navigation #service-navigation-wrapper ul.service-navigation li a {
            text-decoration: none;
            color: rgba(255, 255, 255, 0.6);
            font-family: "Helvetica W02 Roman";
            text-transform: uppercase;
            font-size: 12px;
            -webkit-transition: all 0.25s ease-in-out;
            -moz-transition: all 0.25s ease-in-out;
            transition: all 0.25s ease-in-out; }
            body #service-navigation #service-navigation-wrapper ul.service-navigation li a:hover {
              color: #ffffff; }
      body #service-navigation #service-navigation-wrapper .copyright {
        font-family: "Helvetica W02 Roman";
        font-weight: normal;
        color: rgba(255, 255, 255, 0.6);
        margin: 15px 0 0 0;
        float: right;
        font-size: 14px; }
        @media screen and (min-width: 641px) and (max-width: 802px) {
          body #service-navigation #service-navigation-wrapper .copyright {
            float: none;
            clear: both;
            margin: 0; } }
        @media screen and (max-width: 640px) {
          body #service-navigation #service-navigation-wrapper .copyright {
            margin: 0;
            padding: 5px 0 20px 20px;
            height: inherit;
            width: 100%;
            font-size: 14px;
            float: left;
            display: inline-block; } }
    body #service-navigation:before {
      position: absolute;
      content: '';
      width: 100%;
      height: 1px;
      background-color: #496351;
      top: 40px; }
      @media screen and (max-width: 640px) {
        body #service-navigation:before {
          display: none; } }

/* Ergänzt von Robert F */
iframe {
  margin-bottom: 20px; }

.htmlcode {
  padding-bottom: 20px; }

a {
  text-decoration: none;
  color: #5e9d35; }
  a:hover {
    text-decoration: none; }

.clear {
  clear: both;
  line-height: 0;
  font-size: 0; }

strong, b {
  font-family: "Helvetica W02 Bold";
  font-weight: normal; }

table {
  color: #646464;
  margin: 0 0 20px 0;
  width: 100%;
  table-layout: auto;
  border-collapse: collapse; }
  table th, table td {
    padding: 6px 7px 6px 6px;
    vertical-align: top;
    text-align: left;
    border: 1px solid #e6e6e6; }
    table th.tight, table td.tight {
      width: 1%; }
  table.no-border th, table.no-border td {
    padding: 0 10px 20px 0;
    border: none; }
  table th {
    background-color: #e6e6e6;
    font-weight: normal;
    font-family: "Helvetica W02 Bold"; }
  table tbody th {
    background-color: #f0f0f0;
    font-weight: normal; }

/* Pagination -------------------------------------------------------------------------------------------------------------------------- */
.pagination {
  float: left;
  padding: 0;
  margin: 0 0 20px 0; }
  .pagination li {
    float: left;
    margin: 0 6px 0 0;
    list-style: none; }
    .pagination li a {
      float: left;
      padding: 0;
      line-height: 38px;
      text-decoration: none;
      height: 38px;
      width: 38px;
      border-radius: 19px;
      text-align: center; }
      .pagination li a:link, .pagination li a:visited {
        -webkit-transition: all 0.25s ease-in-out;
        -moz-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out;
        color: #505050;
        background-color: #e6e6e6; }
        .pagination li a:link:before, .pagination li a:visited:before {
          color: #505050; }
      .pagination li a:hover, .pagination li a:active, .pagination li a:focus {
        color: #ffffff;
        background-color: #75c045; }
        .pagination li a:hover:before, .pagination li a:active:before, .pagination li a:focus:before {
          color: #ffffff; }
      .pagination li a b {
        display: none; }
      .pagination li a.active:link, .pagination li a.active:visited {
        color: #505050;
        background-color: #cdcdcd; }
      .pagination li a.active:hover, .pagination li a.active:active, .pagination li a.active:focus {
        color: #ffffff;
        background-color: #75c045; }
