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

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

body {
  font: 10pt/17pt Arial, Helvetica, sans-serif; }

#header-wrapper {
  border-bottom: 1px solid black;
  min-height: 130px;
  margin-bottom: 40px; }

#print_logo {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px dotted #a0a0a0; }

#print_logo h1 {
  position: absolute;
  right: 0;
  top: 0;
  margin: 0;
  padding: 0;
  text-align: right;
  color: #32503c;
  font-size: 22px;
  line-height: 22px;
  font-weight: 300;
  font-style: normal; }

#print_logo h1 strong {
  font-weight: 300; }

#print_logo h1 small {
  padding-right: 16px; }

#menu,
.social-bar,
.slider-heroes,
#claims,
#fb-root,
#toolbar-navigation,
#footer-navigation,
.content-navigation,
.service-navigation,
.related-pages,
iframe,
.fluid-width-video-wrapper,
.pagination,
form,
.slider-controls,
#navigation,
#logo span,
#search,
.eoe-menu-toolbar,
.eoe-menu-helper,
.eoe-menu-wrapper,
.eoe-menu-search {
  display: none !important; }

.kimshead {
  padding-left: 0; }
  .kimshead:before {
    display: none; }

#content > .content.col-3-4 {
  width: 100% !important; }

#logo strong {
  position: absolute;
  right: 0;
  width: 60%;
  text-align: right;
  font-size: 20px;
  font-weight: normal; }
#logo:before {
  position: absolute;
  z-index: 1;
  left: 2px;
  font-size: 100px; }
#logo:after {
  position: absolute;
  z-index: 0;
  left: 2px;
  font-size: 100px; }

.owl-item {
  display: none; }

.owl-item.active {
  display: block !important; }

.map-outer-container {
  width: 500px;
  height: 280px;
  margin-bottom: 1em; }

.ss_wrapper {
  float: left;
  padding: 0;
  margin: 4px 20px 5px 0; }

.content-teaser .ss_wrapper {
  float: left;
  padding: 0;
  margin: 0;
  border: none; }

.slideshow {
  float: left; }

.slideshow small {
  font-size: 11px;
  line-height: 16px;
  color: #afb9af; }

h1 {
  font-family: "nimbus-sans", Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-style: normal; }

h2 {
  font-family: "nimbus-sans", Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-style: normal; }

h3 {
  font-family: "nimbus-sans", Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-style: normal; }

/*br.clear										{ display: none; }*/
hr {
  height: 1px;
  border: 0;
  border-top: 1px dotted #a0a0a0; }

form {
  display: none; }

a {
  color: black;
  text-decoration: none; }

.noprint {
  display: none; }

a img {
  border: none; }

table {
  margin: 0 0 20px 0;
  width: 100%;
  table-layout: auto;
  border-collapse: collapse; }

td, th {
  padding: 4px 8px 4px 8px;
  vertical-align: top;
  text-align: left;
  border: 1px solid black; }

th {
  background: gainsboro; }

tr.grey td {
  background: #f0f0f0; }

tr .pos {
  width: 1%; }
