@charset "UTF-8";
/* 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(http://fonts.googleapis.com/css?family=Varela+Round);
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;
 *      ...
 *   }
 */
/* Bitters 0.10.0
 * http://bitters.bourbon.io
 * Copyright 2013–2014 thoughtbot, inc.
 * MIT License */
button,
input[type="submit"], .download-button {
  -webkit-font-smoothing: antialiased;
  background-color: #c4e2e8;
  border-radius: 3px;
  color: #41443f;
  display: inline-block;
  font-size: 1em;
  font-weight: bold;
  text-decoration: none;
  width: 100%; }
  button:hover,
  input[type="submit"]:hover, .download-button:hover {
    background-color: #8f9c91;
    color: white; }
  button:disabled,
  input[type="submit"]:disabled, .download-button:disabled {
    cursor: not-allowed;
    opacity: 0.5; }

body {
  -webkit-font-smoothing: antialiased;
  background-color: white;
  color: #41443f;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1em;
  line-height: 1.5;
  text-rendering: optimizeLegibility !important; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Varela Round", sans-serif;
  line-height: 1.25;
  margin: 0;
  text-rendering: optimizeLegibility; }

h1 {
  font-size: 2.25em; }

h2 {
  font-size: 2em; }

h3 {
  font-size: 1.75em; }

h4 {
  font-size: 1.5em; }

h5 {
  font-size: 1.25em; }

h6 {
  font-size: 1em; }

p {
  margin: 0 0 0.75em; }

a {
  -webkit-transition: color 0.1s linear;
  -moz-transition: color 0.1s linear;
  transition: color 0.1s linear;
  color: #b2d1d4;
  text-decoration: none; }
  a:hover {
    color: #81b4b9; }
  a:active, a:focus {
    color: #81b4b9;
    outline: none; }

hr {
  border-bottom: 1px solid #DDD;
  border-left: none;
  border-right: none;
  border-top: none;
  margin: 1.5em 0; }

img,
picture {
  margin: 0;
  max-width: 100%; }

blockquote {
  border-left: 2px solid #DDD;
  color: #676c64;
  margin: 1.5em 0;
  padding-left: 0.75em; }

cite {
  color: #80867c;
  font-style: italic; }
  cite:before {
    content: "\2014 \00A0"; }

fieldset {
  border: none;
  margin: 0 0 0.75em 0;
  padding: 0;
  font-size: 0.9em; }

input,
label,
select {
  display: block;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1em; }

label {
  font-weight: normal;
  margin-bottom: 0.375em; }
  label.required:after {
    content: "*"; }
  label abbr {
    display: none; }

textarea,
input[type="email"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="text"], input[type="url"], input[type="color"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="month"], input[type="time"], input[type="week"],
select[multiple=multiple] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: border-color;
  -moz-transition: border-color;
  transition: border-color;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  background-color: white;
  border-radius: 3px;
  border: 1px solid #DDD;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 13px;
  margin-bottom: 13px;
  padding: 13px 13px;
  width: 100%; }
  textarea:hover,
  input[type="email"]:hover, input[type="number"]:hover, input[type="password"]:hover, input[type="search"]:hover, input[type="tel"]:hover, input[type="text"]:hover, input[type="url"]:hover, input[type="color"]:hover, input[type="date"]:hover, input[type="datetime"]:hover, input[type="datetime-local"]:hover, input[type="month"]:hover, input[type="time"]:hover, input[type="week"]:hover,
  select[multiple=multiple]:hover {
    background-color: white; }
  textarea:focus,
  input[type="email"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="text"]:focus, input[type="url"]:focus, input[type="color"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus,
  select[multiple=multiple]:focus {
    background-color: white;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06), 0 0 1px rgba(156, 169, 161, 0.7);
    outline: none; }

textarea {
  resize: vertical; }

input[type="search"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none; }

input[type="checkbox"],
input[type="radio"] {
  display: inline;
  margin-right: 0.375em; }

input[type="file"] {
  padding-bottom: 0.75em;
  width: 100%; }

input[type="text"] {
  background-color: #eaf2f3;
  background-image: url("../images/text_warning.png");
  background-repeat: no-repeat;
  background-position: 110% center;
  border-color: #eaf2f3;
  box-shadow: none;
  color: #41443f; }
  @media only screen and (-webkit-min-device-pixel-ratio: 1.3), only screen and (min--moz-device-pixel-ratio: 1.3), only screen and (-o-min-device-pixel-ratio: 1.3 / 1), only screen and (min-resolution: 125dpi), only screen and (min-resolution: 1.3dppx) {
    input[type="text"] {
      background-image: url("../images/text_warning_2x.png");
      background-size: 16px 14px; } }
  input[type="text"]::-webkit-input-placeholder {
    color: #8f9c91; }
  input[type="text"]::-moz-placeholder {
    color: #8f9c91; }
  input[type="text"]:-moz-placeholder {
    color: #8f9c91; }
  input[type="text"]:-ms-input-placeholder {
    color: #8f9c91; }

.placeholder {
  color: #8f9c91; }

input[type="text"].warning, input[type="text"].error {
  background-image: url("../images/text_warning.png");
  background-repeat: no-repeat;
  background-position: 96% center;
  padding-right: 40px;
  background-color: #eaf2f3;
  border-color: #f47920;
  box-shadow: none;
  color: #41443f; }
  @media only screen and (-webkit-min-device-pixel-ratio: 1.3), only screen and (min--moz-device-pixel-ratio: 1.3), only screen and (-o-min-device-pixel-ratio: 1.3 / 1), only screen and (min-resolution: 125dpi), only screen and (min-resolution: 1.3dppx) {
    input[type="text"].warning, input[type="text"].error {
      background-image: url("../images/text_warning_2x.png");
      background-size: 16px 14px; } }
  input[type="text"].warning::-webkit-input-placeholder, input[type="text"].error::-webkit-input-placeholder {
    color: #8f9c91; }
  input[type="text"].warning::-moz-placeholder, input[type="text"].error::-moz-placeholder {
    color: #8f9c91; }
  input[type="text"].warning:-moz-placeholder, input[type="text"].error:-moz-placeholder {
    color: #8f9c91; }
  input[type="text"].warning:-ms-input-placeholder, input[type="text"].error:-ms-input-placeholder {
    color: #8f9c91; }

select {
  margin-bottom: 1.5em;
  max-width: 100%;
  width: auto; }

/* WORKING CSS 
input[type="checkbox"] {
    display:none;
}
input[type="checkbox"] + label {
    color:#000;
    font-family:Arial, sans-serif;
    font-size:14px;
}
input[type="checkbox"] + label span {
    display:inline-block;
    width:22px;
    height:22px;
    margin:-1px 4px 0 0;
    vertical-align:middle;
    @include retina-image("../images/checkbox", 22px 22px, png);
    cursor:pointer;
}
input[type="checkbox"]:checked + label span {
    @include retina-image("../images/checkbox", 22px 22px, png);
    background-position: -22px top;
}*/
/* http://codepen.io/ElmahdiMahmoud/pen/JFejy */
.label-indent {
  font-size: 13px;
  cursor: pointer; }

.radio-btn input[type="radio"], .check-box input[type="checkbox"] {
  visibility: hidden; }

/*Custom checkbox*/
.check-box {
  width: 22px;
  height: 22px;
  cursor: pointer;
  display: inline-block;
  margin: 0 13px 0 0;
  position: absolute;
  overflow: hidden;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  background: #eaf2f3;
  border-color: #eaf2f3;
  -webkit-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -moz-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }

.check-box.error {
  border: 1px solid #f47920; }

.check-box:hover {
  background: white; }

.check-box i {
  background-image: url("../images/checkbox_mark.png");
  position: absolute;
  left: -22px;
  bottom: 0px;
  width: 22px;
  height: 22px;
  opacity: .5;
  -webkit-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -moz-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
  @media only screen and (-webkit-min-device-pixel-ratio: 1.3), only screen and (min--moz-device-pixel-ratio: 1.3), only screen and (-o-min-device-pixel-ratio: 1.3 / 1), only screen and (min-resolution: 125dpi), only screen and (min-resolution: 1.3dppx) {
    .check-box i {
      background-image: url("../images/checkbox_mark_2x.png");
      background-size: 22px 22px; } }

.checkedBox i {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  bottom: 0px;
  left: 0px; }

.checkbox-table {
  border: none;
  vertical-align: top; }

.checkbox-table td {
  border: none;
  vertical-align: top; }

.checkbox-table .td30 {
  width: 30px;
  border: none;
  vertical-align: top; }

/*Custom radio button*/
.radio-btn {
  width: 22px;
  height: 22px;
  display: inline-block;
  float: left;
  margin: 0 0.75em 0 0;
  cursor: pointer;
  position: absolute;
  overflow: hidden;
  border-top-left-radius: 100%;
  border-top-right-radius: 100%;
  border-bottom-left-radius: 100%;
  border-bottom-right-radius: 100%;
  border-top-left-radius: 100%;
  border-bottom-left-radius: 100%;
  border-top-right-radius: 100%;
  border-bottom-right-radius: 100%;
  border: none;
  background: #eaf2f3;
  border-color: #eaf2f3; }

.radio-btn:hover {
  background: white; }

.radio-btn i {
  border: none;
  width: 22px;
  height: 22px;
  display: inline-block;
  position: absolute;
  left: 0px;
  bottom: 44px;
  opacity: .5;
  background-image: url("../images/radio_mark.png");
  border-top-left-radius: 100%;
  border-top-right-radius: 100%;
  border-bottom-left-radius: 100%;
  border-bottom-right-radius: 100%;
  border-top-left-radius: 100%;
  border-bottom-left-radius: 100%;
  border-top-right-radius: 100%;
  border-bottom-right-radius: 100%; }
  @media only screen and (-webkit-min-device-pixel-ratio: 1.3), only screen and (min--moz-device-pixel-ratio: 1.3), only screen and (-o-min-device-pixel-ratio: 1.3 / 1), only screen and (min-resolution: 125dpi), only screen and (min-resolution: 1.3dppx) {
    .radio-btn i {
      background-image: url("../images/radio_mark_2x.png");
      background-size: 22px 22px; } }

.checkedRadio i {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  bottom: 0px; }

table {
  border-collapse: collapse;
  margin: 0.75em 0;
  table-layout: fixed;
  width: 100%; }

th {
  border-bottom: 1px solid #b7b7b7;
  font-weight: bold;
  padding: 0.75em 0;
  text-align: left; }

td {
  border-bottom: 1px solid #DDD;
  padding: 0.75em 0; }

tr,
td,
th {
  vertical-align: middle; }

ul,
ol {
  margin: 0;
  padding: 0;
  list-style-type: none; }
dl {
  margin-bottom: 0.75em; }
  dl dt {
    font-weight: bold;
    margin-top: 0.75em; }
  dl dd {
    margin: 0; }

button,
input[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  border: none;
  cursor: pointer;
  user-select: none;
  vertical-align: middle;
  white-space: nowrap;
  font-family: "Varela Round", sans-serif;
  font-weight: normal;
  padding: 0.75em 1em;
  font-size: 18px;
  letter-spacing: 1px;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  -moz-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1); }

.download-button {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  padding: 0;
  width: 100%;
  border: none;
  position: relative;
  margin-bottom: 13px;
  font-weight: normal;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  -moz-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  background-image: -webkit-linear-gradient( right , rgba(255, 255, 255, 0.37) 40px, #c4e2e8 40px, #c4e2e8 100%);
  background-image: linear-gradient(to left, rgba(255, 255, 255, 0.37) 40px, #c4e2e8 40px, #c4e2e8 100%); }
  .download-button:hover {
    background-color: white; }
  .download-button a {
    -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
    -moz-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
    background-image: url("../images/download_icon.png");
    background-repeat: no-repeat;
    background-position: right center;
    color: #41443f;
    padding: 13px 50px 13px 13px;
    display: block;
    line-height: 1.5;
    font-size: 13px; }
    @media only screen and (-webkit-min-device-pixel-ratio: 1.3), only screen and (min--moz-device-pixel-ratio: 1.3), only screen and (-o-min-device-pixel-ratio: 1.3 / 1), only screen and (min-resolution: 125dpi), only screen and (min-resolution: 1.3dppx) {
      .download-button a {
        background-image: url("../images/download_icon_2x.png");
        background-size: 40px 40px; } }
  .download-button a:hover {
    color: #8f9c91;
    background-position: right bottom; }
  .download-button a:focus {
    color: #41443f; }

/**
 * 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
 */
section aside {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 23.2317613015%; }
  section aside:last-child {
    margin-right: 0; }
section article {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 74.4105871005%; }
  section article:last-child {
    margin-right: 0; }

.maxwidth {
  max-width: 68em;
  margin-left: auto;
  margin-right: auto; }
  .maxwidth:after {
    content: "";
    display: table;
    clear: both; }

.pages {
  background: #b1d1d2; }

header.navigation {
  background: #b1d1d2;
  height: 109px;
  width: 100%;
  z-index: 999; }
  @media screen and (min-width: 40em) {
    header.navigation {
      height: 66px; } }
  header.navigation .navigation-wrapper {
    background-image: url("../images/header_navigation_background.png");
    background-position: right top;
    background-repeat: repeat-y;
    position: relative;
    z-index: 9999;
    overflow: hidden;
    height: 109px; }
    @media only screen and (-webkit-min-device-pixel-ratio: 1.3), only screen and (min--moz-device-pixel-ratio: 1.3), only screen and (-o-min-device-pixel-ratio: 1.3 / 1), only screen and (min-resolution: 125dpi), only screen and (min-resolution: 1.3dppx) {
      header.navigation .navigation-wrapper {
        background-image: url("../images/header_navigation_background_2x.png");
        background-size: 620px 66px; } }
    header.navigation .navigation-wrapper:after {
      content: "";
      display: table;
      clear: both; }
    @media screen and (min-width: 40em) {
      header.navigation .navigation-wrapper {
        height: 66px; } }
  header.navigation .logo {
    float: right;
    max-height: 66px;
    padding-left: 20px;
    display: block;
    width: 190px; }
    header.navigation .logo img {
      max-height: 66px;
      padding: 15px; }
  header.navigation .nav {
    z-index: 99999;
    float: none;
    line-height: 43px; }
    @media screen and (min-width: 40em) {
      header.navigation .nav {
        line-height: 66px;
        float: right; } }
  header.navigation #msg-large-screen {
    font-family: "Varela Round", sans-serif;
    font-size: 14px;
    line-height: 14px;
    height: 66px;
    padding-left: 1em;
    z-index: 99999;
    display: none;
    float: left; }
    @media screen and (min-width: 40em) {
      header.navigation #msg-large-screen {
        float: left;
        font-size: 20px;
        line-height: 20px;
        display: table; } }
  header.navigation #msg-large-screen p {
    display: table-cell;
    vertical-align: middle; }
  header.navigation ul#navigation-menu {
    font-size: 0;
    -webkit-transform-style: preserve-3d;
    clear: both;
    margin: 0 auto;
    overflow: visible;
    height: 66px;
    padding: 0;
    width: 100%;
    z-index: 9999;
    display: block;
    border-top: 1px solid #91bebf; }
    @media screen and (min-width: 40em) {
      header.navigation ul#navigation-menu {
        border-top: none;
        background: transparent !important;
        display: block;
        margin: 0;
        padding: 0; } }
  header.navigation ul li.nav-link {
    background-image: url("../images/nav-split.png");
    background-position: right top;
    background-repeat: no-repeat;
    display: block;
    overflow: hidden;
    text-align: center;
    width: 100%;
    z-index: 9999;
    display: inline;
    text-decoration: none;
    width: auto;
    height: 66px; }
    @media only screen and (-webkit-min-device-pixel-ratio: 1.3), only screen and (min--moz-device-pixel-ratio: 1.3), only screen and (-o-min-device-pixel-ratio: 1.3 / 1), only screen and (min-resolution: 125dpi), only screen and (min-resolution: 1.3dppx) {
      header.navigation ul li.nav-link {
        background-image: url("../images/nav-split_2x.png");
        background-size: 2px 66px; } }
    @media screen and (min-width: 40em) {
      header.navigation ul li.nav-link {
        float: left;
        text-decoration: none;
        width: auto; } }
    header.navigation ul li.nav-link .is-active {
      color: white;
      text-decoration: underline; }
    header.navigation ul li.nav-link i {
      background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.1) 0%, transparent 100%, transparent 50%);
      background-image: linear-gradient(rgba(0, 0, 0, 0.1) 0%, transparent 100%, transparent 50%);
      width: 2px;
      display: inline-block;
      line-height: 43px;
      height: 43px;
      padding: 0;
      margin: 0; }
      @media screen and (min-width: 40em) {
        header.navigation ul li.nav-link i {
          line-height: 66px;
          height: 66px; } }
    header.navigation ul li.nav-link .vertical-split {
      width: 2px;
      display: block;
      height: 43px;
      padding: 0;
      margin: 0; }
      @media screen and (min-width: 40em) {
        header.navigation ul li.nav-link .vertical-split {
          height: 66px; } }
    header.navigation ul li.nav-link .vertical-split.first, header.navigation ul li.nav-link .vertical-split.last {
      display: none; }
      @media screen and (min-width: 40em) {
        header.navigation ul li.nav-link .vertical-split.first, header.navigation ul li.nav-link .vertical-split.last {
          display: inline-block; } }
    header.navigation ul li.nav-link a {
      background-image: url("../images/nav-split.png");
      background-position: right top;
      background-repeat: no-repeat;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out;
      color: black;
      display: inline-block;
      line-height: 43px;
      height: 43px;
      font-weight: 400;
      font-size: 12px;
      width: 33%;
      padding: 0 20px 0 20px;
      margin: 0; }
      @media only screen and (-webkit-min-device-pixel-ratio: 1.3), only screen and (min--moz-device-pixel-ratio: 1.3), only screen and (-o-min-device-pixel-ratio: 1.3 / 1), only screen and (min-resolution: 125dpi), only screen and (min-resolution: 1.3dppx) {
        header.navigation ul li.nav-link a {
          background-image: url("../images/nav-split_2x.png");
          background-size: 2px 66px; } }
      @media screen and (min-width: 40em) {
        header.navigation ul li.nav-link a {
          background-image: url("../images/nav-split.png");
          background-position: right -66px;
          background-repeat: repeat-x;
          line-height: 66px;
          height: 66px;
          width: auto; } }
  @media only screen and (min-width: 40em) and (-webkit-min-device-pixel-ratio: 1.3), only screen and (min-width: 40em) and (min--moz-device-pixel-ratio: 1.3), only screen and (min-width: 40em) and (-o-min-device-pixel-ratio: 1.3 / 1), only screen and (min-width: 40em) and (min-resolution: 125dpi), only screen and (min-width: 40em) and (min-resolution: 1.3dppx) {
    header.navigation ul li.nav-link a {
      background-image: url("../images/nav-split_2x.png");
      background-size: 2px 66px; } }

      header.navigation ul li.nav-link a:hover {
        color: black;
        background-position: right top;
        text-decoration: none; }
    header.navigation ul li.nav-link a.selected {
      color: white;
      text-decoration: underline; }
  header.navigation .active-nav-item a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 3px; }
  header.navigation ul li.nav-link-video {
    display: inline; }
  header.navigation ul li.nav-link-last a {
    background: none; }
    @media screen and (min-width: 40em) {
      header.navigation ul li.nav-link-last a {
        background-image: url("../images/nav-split.png");
        background-position: right -66px;
        background-repeat: repeat-x; } }
  @media only screen and (min-width: 40em) and (-webkit-min-device-pixel-ratio: 1.3), only screen and (min-width: 40em) and (min--moz-device-pixel-ratio: 1.3), only screen and (min-width: 40em) and (-o-min-device-pixel-ratio: 1.3 / 1), only screen and (min-width: 40em) and (min-resolution: 125dpi), only screen and (min-width: 40em) and (min-resolution: 1.3dppx) {
    header.navigation ul li.nav-link-last a {
      background-image: url("../images/nav-split_2x.png");
      background-size: 2px 66px; } }

#videos {
  background: url("../images/player-bg.gif") center bottom repeat-x;
  overflow: hidden; }

.video_content {
  background: #b1d1d2;
  padding-bottom: 0;
  background: #b1d1d2 url("../images/player-bg.gif") center bottom repeat-x;
  position: relative; }

.ipad-bar-bg {
  background-image: url("../images/player-bg-ipad.gif") !important; }

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

.video-wrapper {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  background: url("../images/preloader.gif") center center no-repeat; }

#videos iframe {
  position: absolute;
  top: -1;
  left: -1;
  width: 100%;
  height: 100%;
  background: #b1d1d2; }

.video-x {
  display: block;
  font-size: 0;
  margin-bottom: 20px;
  font-size: 0.928571em; }

.video-embed {
  height: 0;
  margin-bottom: 10px;
  position: relative;
  width: 100%; }

.video-embed iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%; }

.video_menu_wrapper {
  height: 96px;
  overflow: hidden;
  display: block;
  position: relative;
  z-index: 9999; }
  .video_menu_wrapper:after {
    content: "";
    display: table;
    clear: both; }

.video_menu {
  height: 96px;
  overflow: hidden;
  margin-top: 200px;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out; }

.video_menu .thumb {
  width: 260px;
  display: block;
  float: left;
  overflow: hidden;
  height: 96px; }

.video_menu .thumb-container {
  height: 96px;
  width: auto;
  display: block;
  float: left;
  z-index: 50;
  padding: 0 40px 0 40px;
  position: absolute;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.video_menu .thumb-inner {
  width: 1000px;
  display: block;
  height: 96px;
  z-index: 50; }

.video_menu .thumb a {
  padding: 24px 0 24px 0;
  color: #41443f;
  display: table;
  height: 48px;
  float: left;
  line-height: 13px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }

.video_menu .thumb a:hover, .video_menu .thumb a.selected {
  color: #f47920; }

.video_menu .thumb .play {
  height: 29px;
  width: 29px;
  position: relative;
  z-index: 100;
  display: block;
  margin-left: -218px;
  margin-bottom: 9px;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  text-align: center; }

.video_menu .thumb .play img {
  float: left; }

.video_menu .thumb a:hover .play {
  background: white; }

.video_menu .thumb .title {
  background-position: left center;
  background-repeat: no-repeat;
  height: 48px;
  width: 160px;
  display: block;
  font-size: 13px;
  display: table-cell;
  vertical-align: middle; }

.video_menu .thumb span.time {
  font-size: 10px;
  color: #41443f;
  font-style: italic; }

.video_menu .thumb .thumbnail {
  float: left;
  background-blend-mode: multiply; }

.video_menu .left a {
  background-image: url("../images/video-menu-arrow-left-on.png");
  background-position: 15px center; }
  @media only screen and (-webkit-min-device-pixel-ratio: 1.3), only screen and (min--moz-device-pixel-ratio: 1.3), only screen and (-o-min-device-pixel-ratio: 1.3 / 1), only screen and (min-resolution: 125dpi), only screen and (min-resolution: 1.3dppx) {
    .video_menu .left a {
      background-image: url("../images/video-menu-arrow-left-on_2x.png");
      background-size: 9px 30px; } }

.video_menu .left a.inactive {
  cursor: initial;
  background-image: url("../images/video-menu-arrow-left-off.png"); }
  @media only screen and (-webkit-min-device-pixel-ratio: 1.3), only screen and (min--moz-device-pixel-ratio: 1.3), only screen and (-o-min-device-pixel-ratio: 1.3 / 1), only screen and (min-resolution: 125dpi), only screen and (min-resolution: 1.3dppx) {
    .video_menu .left a.inactive {
      background-image: url("../images/video-menu-arrow-left-off_2x.png");
      background-size: 9px 30px; } }

.video_menu .right a {
  float: right;
  background-image: url("../images/video-menu-arrow-right-on.png");
  background-position: 15px center; }
  @media only screen and (-webkit-min-device-pixel-ratio: 1.3), only screen and (min--moz-device-pixel-ratio: 1.3), only screen and (-o-min-device-pixel-ratio: 1.3 / 1), only screen and (min-resolution: 125dpi), only screen and (min-resolution: 1.3dppx) {
    .video_menu .right a {
      background-image: url("../images/video-menu-arrow-right-on_2x.png");
      background-size: 9px 30px; } }

.video_menu .right a.inactive {
  cursor: initial;
  background-image: url("../images/video-menu-arrow-right-off.png"); }
  @media only screen and (-webkit-min-device-pixel-ratio: 1.3), only screen and (min--moz-device-pixel-ratio: 1.3), only screen and (-o-min-device-pixel-ratio: 1.3 / 1), only screen and (min-resolution: 125dpi), only screen and (min-resolution: 1.3dppx) {
    .video_menu .right a.inactive {
      background-image: url("../images/video-menu-arrow-right-off_2x.png");
      background-size: 9px 30px; } }

.video_menu .left {
  float: left;
  background-image: -webkit-linear-gradient( right , rgba(255, 255, 255, 0) 0%, white 30%, white 100%);
  background-image: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, white 30%, white 100%); }

.video_menu .right {
  float: right;
  background-image: -webkit-linear-gradient( left , rgba(255, 255, 255, 0) 0%, white 30%, white 100%);
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 30%, white 100%); }

.video_menu .left, .video_menu .right {
  width: 40px;
  height: 96px;
  z-index: 100;
  position: relative;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out; }

.video_menu .left.active:hover {
  background-color: #edeeed; }

.video_menu .right.active:hover {
  background-color: #edeeed; }

.video_menu .left a, .video_menu .right a {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  width: 40px;
  height: 96px;
  display: block;
  background-repeat: no-repeat; }

.video_menu .left a.active:hover {
  background-position: 10px center;
  background-color: #edeeed; }

.video_menu .right a.active:hover {
  background-position: 20px center;
  background-color: #edeeed; }

.fix {
  display: block;
  height: 10px;
  width: 100%; }
  .fix:after {
    content: "";
    display: table;
    clear: both; }

.section {
  background: #b1d1d2;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  float: none;
  font-size: 13px; }
  .section .service {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 20px 13px;
    margin-left: auto;
    margin-right: auto;
    width: 320px;
    text-align: left;
    display: block; }
    .section .service h4 {
      font-size: 18px;
      padding-bottom: 12px; }
    .section .service p {
      margin: 0 0 13px 0; }
  .section .address {
    cursor: pointer;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #41443f;
    float: left;
    text-align: left;
    display: none; }
    @media screen and (min-width: 40em) {
      .section .address {
        display: block; } }
  .section .address a {
    color: #41443f;
    padding: 15px;
    line-height: 30px;
    text-align: left;
    font-size: 11px; }
  .section .disclaimer {
    cursor: pointer;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #41443f;
    text-align: left;
    font-size: 11px;
    float: left;
    display: none; }
    @media screen and (min-width: 40em) {
      .section .disclaimer {
        display: block;
        float: right;
        text-align: right; } }
  .section .disclaimer a {
    line-height: 30px;
    padding: 15px;
    color: #41443f;
    -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
    -moz-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1); }
  .section .disclaimer a:hover {
    color: #f47920; }
  .section .cookie-policy {
    cursor: pointer;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #41443f;
    text-align: left;
    font-size: 11px;
    float: left;
    display: none; }
    @media screen and (min-width: 40em) {
      .section .cookie-policy {
        display: block;
        float: right;
        text-align: right; } }
  .section .cookie-policy.services a {
    margin-right: 15px; }
  .section .cookie-policy a {
    background-position: right center;
    background-repeat: no-repeat;
    padding: 15px;
    color: #8f9c91;
    text-align: left;
    line-height: 20px;
    font-size: 11px;
    background-image: url("../images/cookie_mark.png"); }
    @media only screen and (-webkit-min-device-pixel-ratio: 1.3), only screen and (min--moz-device-pixel-ratio: 1.3), only screen and (-o-min-device-pixel-ratio: 1.3 / 1), only screen and (min-resolution: 125dpi), only screen and (min-resolution: 1.3dppx) {
      .section .cookie-policy a {
        background-image: url("../images/cookie_mark_2x.png");
        background-size: 11px 11px; } }

#portrait-disclaimer-cookie-wrap {
  display: block; }
  @media screen and (min-width: 40em) {
    #portrait-disclaimer-cookie-wrap {
      background: white;
      display: none; } }
  #portrait-disclaimer-cookie-wrap .address {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #41443f;
    float: none;
    text-align: left;
    padding: 15px 15px 5px 15px; }
  #portrait-disclaimer-cookie-wrap .address a {
    color: #41443f;
    line-height: 15px;
    text-align: left;
    font-size: 11px; }
  #portrait-disclaimer-cookie-wrap .disclaimer {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #41443f;
    text-align: left;
    font-size: 11px;
    float: none; }
  #portrait-disclaimer-cookie-wrap .disclaimer a {
    line-height: 30px;
    padding: 15px;
    color: #41443f;
    -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
    -moz-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1); }
  #portrait-disclaimer-cookie-wrap .disclaimer a:hover {
    color: #f47920; }
  #portrait-disclaimer-cookie-wrap .cookie-policy {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #41443f;
    text-align: left;
    font-size: 11px;
    float: none; }
  #portrait-disclaimer-cookie-wrap .cookie-policy a {
    background-position: right center;
    background-repeat: no-repeat;
    background-image: url("../images/cookie_mark.png");
    padding: 15px;
    color: #8f9c91;
    text-align: left;
    line-height: 30px;
    font-size: 11px; }
    @media only screen and (-webkit-min-device-pixel-ratio: 1.3), only screen and (min--moz-device-pixel-ratio: 1.3), only screen and (-o-min-device-pixel-ratio: 1.3 / 1), only screen and (min-resolution: 125dpi), only screen and (min-resolution: 1.3dppx) {
      #portrait-disclaimer-cookie-wrap .cookie-policy a {
        background-image: url("../images/cookie_mark_2x.png");
        background-size: 11px 11px; } }

#video-disclaimer-cookie-wrap {
  display: none; }
  @media screen and (min-width: 40em) {
    #video-disclaimer-cookie-wrap {
      bottom: 146px;
      width: 180px;
      display: block;
      position: absolute;
      right: 20px;
      z-index: 20000; } }
  #video-disclaimer-cookie-wrap .disclaimer {
    float: none; }
  #video-disclaimer-cookie-wrap .disclaimer a {
    line-height: 11px;
    padding: 0px;
    color: #8f9c91;
    -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
    -moz-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1); }
  #video-disclaimer-cookie-wrap .disclaimer a:hover {
    color: #f47920; }
  #video-disclaimer-cookie-wrap .cookie-policy {
    float: none; }
  #video-disclaimer-cookie-wrap .cookie-policy a {
    padding: 15px 0 15px 15px; }

/* Modal
------------------------------------------------------------------------------------------ */
.modal label {
  cursor: pointer;
  margin-bottom: 0; }
.modal label img {
  border-radius: 150px;
  display: block;
  max-width: 300px; }
.modal input[type="checkbox"] {
  display: none; }
.modal .btn {
  border: 1px solid #dbdbdb;
  border-radius: 3px;
  box-shadow: inset 0 1px 0 0 white;
  color: #333333;
  display: inline-block;
  font-size: inherit;
  font-weight: bold;
  background-color: white;
  background-image: -webkit-linear-gradient(white, #e3e3e3);
  background-image: linear-gradient(white, #e3e3e3);
  padding: 7px 18px;
  text-decoration: none;
  text-shadow: 0 1px 0 white;
  background-clip: padding-box;
  border: 1px solid #dfd8d8;
  border-radius: 3px;
  box-shadow: inset 0 1px 0 0 white;
  color: #333333;
  display: inline-block;
  font-size: inherit;
  font-weight: bold;
  background-color: white;
  background-image: -webkit-linear-gradient(white, #e5e0e0);
  background-image: linear-gradient(white, #e5e0e0);
  padding: 7px 18px;
  text-decoration: none;
  text-shadow: 0 1px 0 white;
  background-clip: padding-box;
  font-size: 1em;
  margin-bottom: 1.5; }
  .modal .btn:hover:not(:disabled) {
    box-shadow: inset 0 1px 0 0 white;
    cursor: pointer;
    background-color: #f2f2f2;
    background-image: -webkit-linear-gradient(#f2f2f2, #dbdbdb);
    background-image: linear-gradient(#f2f2f2, #dbdbdb); }
  .modal .btn:active:not(:disabled), .modal .btn:focus:not(:disabled) {
    border: 1px solid #dbdbdb;
    box-shadow: inset 0 0 8px 4px #d4d4d4, inset 0 0 8px 4px #d4d4d4; }
  .modal .btn:hover:not(:disabled) {
    box-shadow: inset 0 1px 0 0 white;
    cursor: pointer;
    background-color: #f2f2f2;
    background-image: -webkit-linear-gradient(#f2f2f2, #ded8d8);
    background-image: linear-gradient(#f2f2f2, #ded8d8); }
  .modal .btn:active:not(:disabled), .modal .btn:focus:not(:disabled) {
    border: 1px solid #dfd8d8;
    box-shadow: inset 0 0 8px 4px #d7d1d1, inset 0 0 8px 4px #d7d1d1; }
  .modal .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed; }
.modal .modal-open {
  overflow: hidden; }
.modal .modal-window {
  -webkit-transition: opacity 0.25s ease;
  -moz-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background: rgba(0, 0, 0, 0.85);
  opacity: 0;
  text-align: left;
  visibility: hidden;
  z-index: 99999999999; }
  .modal .modal-window .modal-bg {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    cursor: pointer; }
.modal .modal-close {
  position: absolute;
  top: 1.5em;
  right: 1.5em;
  bottom: 0;
  left: 0;
  height: 1.5em;
  width: 1.5em;
  cursor: pointer;
  background: white; }
  .modal .modal-close:after, .modal .modal-close:before {
    position: absolute;
    top: 3px;
    right: 3px;
    bottom: 0;
    left: 50%;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    height: 1.5em;
    width: 0.15em;
    background: #DDD;
    content: '';
    display: block;
    margin: -3px 0 0 -1px; }
  .modal .modal-close:hover:after, .modal .modal-close:hover:before {
    background: #c4c4c4; }
  .modal .modal-close:before {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg); }
.modal .modal-inner {
  -webkit-transition: opacity 0.25s ease;
  -moz-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
  border-radius: 3px;
  background: white;
  margin: auto;
  max-height: 95%;
  position: relative;
  overflow: auto;
  width: 95%;
  padding: 1.5em;
  margin-top: .6em; }
  @media screen and (min-width: 30em) {
    .modal .modal-inner {
      padding: 3em;
      width: 60%;
      max-height: 60%;
      margin-top: 10em; } }
  @media screen and (min-width: 40em) {
    .modal .modal-inner {
      width: 50%;
      margin-top: 10em; } }
  .modal .modal-inner h1 {
    color: #41443f;
    margin-bottom: .6em;
    text-align: left;
    text-transform: capitalize; }
  .modal .modal-inner p.body, .modal .modal-inner p.intro {
    font-size: 1em;
    max-width: 100% !important;
    text-align: left; }
    .modal .modal-inner p.body.intro, .modal .modal-inner p.intro.intro {
      color: #b2d1d4;
      line-height: 1.6em; }
    .modal .modal-inner p.body.body, .modal .modal-inner p.intro.body {
      color: #41443f;
      line-height: 1.45em; }
      @media screen and (min-width: 30em) {
        .modal .modal-inner p.body.body, .modal .modal-inner p.intro.body {
          -webkit-columns: 2 8em;
          -moz-columns: 2 8em;
          columns: 2 8em; } }
  .modal .modal-inner a.cta {
    color: white;
    display: inline-block;
    margin-right: .5em;
    margin-top: 1em; }
    .modal .modal-inner a.cta:last-child {
      padding: 0 2em; }
.modal .modal-state:checked + .modal-window {
  opacity: 1;
  visibility: visible; }
.modal .modal-state:checked + .modal-window .modal-inner {
  top: 0; }

/* Sections
------------------------------------------------------------------------------------------ */
.section-min-height {
  height: 100%;
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  -moz-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1); }

#contact, #downloads, #unsubscribe {
  display: none;
  visibility: hidden;
  overflow: hidden; }

#contact .subscribe {
  display: block; }
  #contact .subscribe:after {
    content: "";
    display: table;
    clear: both; }

#contact .unsubscribe iframe {
  width: 100%;
  height: 310px;
  background: #cc0000;
  overflow: hidden; }

#contact .service a {
  color: black;
  text-decoration: underline;
  text-align: center; }

.unsubscribe-body {
  background: transparent;
  font-size: 13px; }

section {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: #b1d1d2;
  text-align: center;
  margin-left: auto;
  margin-right: auto; }
  section div {
    margin: auto;
    height: 6;
    line-height: 1.5;
    text-align: left;
    padding: 1em; }
  section #msg-small-screen {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 6.1721527019%;
    float: none;
    max-width: 600px; }
    section #msg-small-screen:last-child {
      margin-right: 0; }
    @media screen and (min-width: 40em) {
      section #msg-small-screen {
        display: none; } }
    section #msg-small-screen:after {
      content: "";
      display: table;
      clear: both; }
  section.zero div {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 48.821174201%;
    height: 20em; }
    section.zero div:last-child {
      margin-right: 0; }
  section.first div#page {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 31.7615656014%; }
    section.first div#page:last-child {
      margin-right: 0; }
  section.first div#alpha {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 6.1721527019%; }
    section.first div#alpha:last-child {
      margin-right: 0; }
  section.first div#beta {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 91.4701957002%; }
    section.first div#beta:last-child {
      margin-right: 0; }
  section.first div#gamma {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 14.7019570017%; }
    section.first div#gamma:last-child {
      margin-right: 0; }
  section.first div#delta {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 82.9403914003%; }
    section.first div#delta:last-child {
      margin-right: 0; }
  section.first div#epsilon {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 23.2317613015%; }
    section.first div#epsilon:last-child {
      margin-right: 0; }
  section.first div#zeta {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 74.4105871005%; }
    section.first div#zeta:last-child {
      margin-right: 0; }
  section.first div#eta {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 31.7615656014%; }
    section.first div#eta:last-child {
      margin-right: 0; }
  section.first div#theta {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 65.8807828007%; }
    section.first div#theta:last-child {
      margin-right: 0; }
  section.first div#iota {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 40.2913699012%; }
    section.first div#iota:last-child {
      margin-right: 0; }
  section.first div#kappa {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 57.3509785009%; }
    section.first div#kappa:last-child {
      margin-right: 0; }
  section.first div#lambda {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 48.821174201%; }
    section.first div#lambda:last-child {
      margin-right: 0; }
  section.first div#mu {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 48.821174201%; }
    section.first div#mu:last-child {
      margin-right: 0; }
  section.first div#beta, section.first div#delta, section.first div#zeta, section.first div#theta, section.first div#kappa, section.first div#mu {
    margin-right: 0; }

#warning-mobil-wrap {
  position: fixed;
  display: none;
  left: 0;
  z-index: 100000;
  height: 200px;
  width: 100%; }

#warning-mobil {
  background: #8f9c91;
  color: white;
  font-size: 14px;
  height: 400px;
  margin-top: 200px;
  overflow: hidden; }
  #warning-mobil p {
    padding: 20px; }
  #warning-mobil .warning-close {
    display: block;
    width: 100%;
    padding: 14px; }
    #warning-mobil .warning-close img {
      text-align: right;
      float: right; }

.video-display {
  background: #b1d1d2 !important; }

.video-clip {
  background: #b1d1d2 !important; }

#frameOne body, #frameOne html {
  background: #b1d1d2 !important; }

.dummy-wrap {
  width: 100%;
  height: 100%;
  cursor: pointer;
  background-color: #b1d1d2; }
  .dummy-wrap img.dummy {
    width: 100%;
    background-image: url("../images/player-bg.gif");
    background-position: center bottom;
    background-repeat: repeat-x;
    display: block;
    position: absolute;
    z-index: 1000; }
  .dummy-wrap img.big-play {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -45px;
    margin-top: -45px;
    z-index: 1001; }

#CookieReportsPanel *, #CookieReportsBanner * {
  background: none repeat scroll 0 0 transparent;
  border: medium none;
  bottom: auto;
  clear: none;
  color: #56544b;
  content: normal;
  cursor: auto;
  direction: ltr;
  float: none;
  font: 1em Arial,Helvetica,sans-serif;
  height: auto;
  left: auto;
  letter-spacing: normal;
  margin: 0;
  max-height: none;
  max-width: none;
  min-height: 0;
  min-width: 0;
  opacity: 1;
  outline: medium none;
  overflow: visible;
  padding: 0;
  position: relative;
  right: auto;
  text-align: left;
  text-decoration: none;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  top: auto;
  unicode-bidi: normal;
  vertical-align: baseline;
  visibility: visible;
  white-space: normal;
  width: auto;
  word-spacing: normal;
  z-index: 32000; }

#CookieReportsPanel .wscrPopup * {
  color: #56544b;
  font-family: Arial,Helvetica,sans-serif;
  font-size: 12px; }

#CookieReportsPanel strong {
  font-weight: bold; }

#CookieReportsPanel em {
  font-style: italic; }

#CookieReportsPanel p {
  font-size: 12px;
  margin: 10px 0; }

#CookieReportsPanel ul {
  list-style-position: inside;
  margin: 10px; }

#CookieReportsPanel a:link {
  color: #627282;
  text-decoration: underline; }

#CookieReportsPanel a:visited {
  color: #627282; }

#CookieReportsPanel .wscrDownload {
  display: inline;
  list-style-type: none;
  margin-left: 15px;
  padding: 10px 0; }

#CookieReportsPanel .wscrDownload a {
  color: #627282;
  cursor: pointer;
  text-decoration: underline; }

#CookieReportsPanel .wscrDownload a:visited {
  color: #627282; }

#CookieReportsPanel .wscrDownload0 {
  background: url("https://40515350444d1369ff68-2f7735d5ad283fa41a203a082d9a8f25.ssl.cf3.rackcdn.com/i/pdf-large.png") no-repeat scroll 0 0 transparent; }

#CookieReportsPanel .wscrDownload1 {
  background: url("https://40515350444d1369ff68-2f7735d5ad283fa41a203a082d9a8f25.ssl.cf3.rackcdn.com/i/pdf-large.png") no-repeat scroll 0 0 transparent; }

#CookieReportsPanel .wscrDownload2 {
  background: url("https://40515350444d1369ff68-2f7735d5ad283fa41a203a082d9a8f25.ssl.cf3.rackcdn.com/i/pdf-large.png") no-repeat scroll 0 0 transparent; }

#CookieReportsPanel .wscrLevel1 {
  background: url("https://40515350444d1369ff68-2f7735d5ad283fa41a203a082d9a8f25.ssl.cf3.rackcdn.com/i/level_1.png") no-repeat scroll 50% 50% transparent; }

#CookieReportsPanel #CookieReportsMiniPanel .wscrLevel1 {
  background: url("https://40515350444d1369ff68-2f7735d5ad283fa41a203a082d9a8f25.ssl.cf3.rackcdn.com/i/mini-level-1.png") no-repeat scroll 50% 50% transparent; }

#CookieReportsPanel .wscrLevel2 {
  background: url("https://40515350444d1369ff68-2f7735d5ad283fa41a203a082d9a8f25.ssl.cf3.rackcdn.com/i/level_2.png") no-repeat scroll 50% 50% transparent; }

#CookieReportsPanel #CookieReportsMiniPanel .wscrLevel2 {
  background: url("https://40515350444d1369ff68-2f7735d5ad283fa41a203a082d9a8f25.ssl.cf3.rackcdn.com/i/mini-level-2.png") no-repeat scroll 50% 50% transparent; }

#CookieReportsPanel .wscrLevel3 {
  background: url("https://40515350444d1369ff68-2f7735d5ad283fa41a203a082d9a8f25.ssl.cf3.rackcdn.com/i/level_3.png") no-repeat scroll 50% 50% transparent; }

#CookieReportsPanel #CookieReportsMiniPanel .wscrLevel3 {
  background: url("https://40515350444d1369ff68-2f7735d5ad283fa41a203a082d9a8f25.ssl.cf3.rackcdn.com/i/mini-level-3.png") no-repeat scroll 50% 50% transparent; }

#CookieReportsPanel .wscrLevel4 {
  background: url("https://40515350444d1369ff68-2f7735d5ad283fa41a203a082d9a8f25.ssl.cf3.rackcdn.com/i/level_4.png") no-repeat scroll 50% 50% transparent; }

#CookieReportsPanel #CookieReportsMiniPanel .wscrLevel4 {
  background: url("https://40515350444d1369ff68-2f7735d5ad283fa41a203a082d9a8f25.ssl.cf3.rackcdn.com/i/mini-level-4.png") no-repeat scroll 50% 50% transparent; }

#CookieReportsPanel .wscrLevel5 {
  background: url("https://40515350444d1369ff68-2f7735d5ad283fa41a203a082d9a8f25.ssl.cf3.rackcdn.com/i/level_5.png") no-repeat scroll 50% 50% transparent; }

#CookieReportsPanel #CookieReportsMiniPanel .wscrLevel5 {
  background: url("https://40515350444d1369ff68-2f7735d5ad283fa41a203a082d9a8f25.ssl.cf3.rackcdn.com/i/mini-level-5.png") no-repeat scroll 50% 50% transparent; }

#CookieReportsPanel .wscrLevel {
  border-color: #008000; }

#CookieReportsPanel .wscrLevel span.wscrA {
  background-image: none;
  bottom: 6px;
  display: block;
  height: 18px;
  position: absolute;
  right: 6px;
  width: 18px; }

#CookieReportsPanel .wscrLevel span.wscrB {
  bottom: 20px;
  display: block;
  height: 42px;
  position: absolute;
  right: 20px;
  width: 42px; }

#CookieReportsPanel #CookieReportsMiniPanel .wscrLevel span {
  background-image: none;
  bottom: 0;
  display: block;
  height: 32px;
  position: absolute;
  right: 0;
  width: 32px; }

#CookieReportsPanel .wscrLevel.wscrShowTick span.wscrA {
  background-image: url("https://40515350444d1369ff68-2f7735d5ad283fa41a203a082d9a8f25.ssl.cf3.rackcdn.com/i/optedInIcon.png"); }

#CookieReportsPanel #CookieReportsMiniPanel .wscrLevel.wscrShowTick span.wscrA {
  background-image: url("https://40515350444d1369ff68-2f7735d5ad283fa41a203a082d9a8f25.ssl.cf3.rackcdn.com/i/present_mini.png"); }

#CookieReportsPanel .wscrLevel.wscrOverlayOn span.wscrB {
  background-image: none; }

#CookieReportsPanel #CookieReportsMiniPanel .wscrLevel.wscrOverlayOn span.wscrB {
  background-image: none; }

#CookieReportsPanel .wscrLevel.wscrOverlayOff span.wscrB {
  background-image: none; }

#CookieReportsPanel #CookieReportsMiniPanel .wscrLevel.wscrOverlayOff span.wscrB {
  background-image: none; }

#CookieReportsPanel .wscrLevel.wscrFadedOut {
  border-color: #ddd;
  opacity: 1; }

#CookieReportsPanel .wscrLevel.wscrFadedOut span {
  opacity: 0.2; }

#CookieReportsPanel #CookieReportsMiniPanel .wscrLevel.wscrFadedOut {
  opacity: 0.2; }

#CookieReportsPanel #CookieReportsMiniPanel .wscrLevel.wscrFadedOut span {
  filter: none;
  opacity: 1; }

#CookieReportsPanel .wscrFrame {
  border: 1px solid #ddd;
  height: 100px;
  margin: 10px;
  overflow-y: scroll; }

#CookieReportsPanel table {
  font-size: 1em;
  width: 100%; }

#CookieReportsPanel td, #CookieReportsPanel th {
  font-size: 1em;
  line-height: 24px;
  padding: 0 10px;
  text-align: left; }

#CookieReportsPanel thead th {
  background-color: #eee;
  color: #56544b; }

#CookieReportsPanel tbody td {
  border-top: 1px solid #ddd; }

#CookieReportsPanel .wscrMainBackground {
  background: none no-repeat scroll left bottom transparent; }

#CookieReportsPanel .wscrButtonBackground {
  background: none no-repeat scroll 0 0 transparent; }

#CookieReportsPanel #CookieReportsMiniPanel {
  background: none repeat scroll 0 0 white;
  border: 1px solid #56544b;
  border-radius: 5px;
  bottom: 20px;
  box-shadow: 2px 2px 2px 0 #bbbbbb;
  padding: 10px;
  position: fixed;
  right: 20px;
  width: 200px; }

#CookieReportsPanel #CookieReportsMiniPanel * {
  color: #56544b;
  font: 12px Arial,Helvetica,sans-serif; }

#CookieReportsPanel #CookieReportsMiniPanel .wscrHeading {
  color: #676666;
  font: 18px Arial,Helvetica,sans-serif;
  margin-bottom: 5px; }

#CookieReportsPanel #CookieReportsMiniPanel .wscrHeading img {
  height: 32px;
  padding-right: 5px;
  vertical-align: middle;
  width: 32px; }

#CookieReportsPanel #CookieReportsMiniPanel .wscrIcons {
  height: 32px;
  list-style-position: inside;
  margin: 10px auto;
  width: 180px; }

#CookieReportsPanel #CookieReportsMiniPanel .wscrIcons li {
  display: block;
  float: left;
  height: 32px;
  list-style-type: none;
  margin: 0 5px 0 0;
  padding: 0;
  width: 32px; }

#CookieReportsPanel #CookieReportsMiniPanel a {
  cursor: pointer; }

#CookieReportsPanel #CookieReportsMiniPanel a:link {
  color: #56544b; }

#CookieReportsPanel #CookieReportsMiniPanel a:visited {
  color: #56544b; }

#CookieReportsPanel #CookieReportsMiniPanel .wscrOk {
  background-color: #ffffff;
  border: 1px solid #56544b;
  border-radius: 5px;
  box-shadow: 2px 2px 0 0 #bbbbbb;
  color: #56544b;
  display: block;
  font-size: 12px;
  padding: 2px 5px;
  position: absolute;
  right: 10px;
  text-decoration: none;
  top: 7px; }

#CookieReportsPanel #CookieReportsMiniPanel .wscrOk:link {
  color: #56544b; }

#CookieReportsBanner {
  background: none no-repeat scroll left bottom #666;
  border: 0 solid #666;
  border-radius: 0;
  box-shadow: 2px 2px 0 0 #bbbbbb;
  line-height: 20px;
  opacity: 1;
  padding-bottom: 5px;
  width: auto; }

#CookieReportsBanner * {
  color: #fff;
  font: 12px Arial,Helvetica,sans-serif; }

#CookieReportsBanner .wscrBannerContent {
  margin: 0 auto;
  max-width: 900px;
  padding: 5px 0;
  position: static;
  width: 60%; }

#CookieReportsBanner .wscrBannerContent div {
  text-align: justify; }

#CookieReportsBanner .wscrHeading {
  color: #fff;
  font: 22px Arial,Helvetica,sans-serif;
  margin-bottom: 5px; }

#CookieReportsBanner .wscrHeading img {
  padding-right: 5px;
  vertical-align: middle; }

#CookieReportsBanner a:link, #CookieReportsBanner a:visited {
  color: #fff;
  cursor: pointer;
  font: 12px Arial,Helvetica,sans-serif;
  text-decoration: underline; }

#CookieReportsBanner .wscrOk:link, #CookieReportsBanner .wscrOk:visited {
  background-color: #fff;
  border: 1px solid #666;
  border-radius: 0;
  box-shadow: 2px 2px 0 0 #bbbbbb;
  color: #666666;
  float: right;
  font: 12px Arial,Helvetica,sans-serif;
  padding: 2px 5px;
  text-decoration: none; }

#CookieReportsBanner.mobile .wscrBannerContent {
  padding: 5px 0 20px;
  width: 90%; }

@media only screen and (max-width: 645px) {
  #CookieReportsBanner .wscrBannerContent {
    padding: 5px 0 20px;
    width: 90%; } }
/* Custom */
#CookieDialog {
  background-color: #f0efe6;
  display: none;
  height: 600px;
  width: 939px; }

#CookieDialog .cookie-dialog-choices {
  float: right;
  position: relative;
  top: 250px; }

.cookie-checkbox {
  background-color: transparent;
  background-image: url("/Content/images/disclaimerpopup/dialog_check.png") !important;
  background-repeat: no-repeat;
  border: medium none;
  clear: left;
  cursor: pointer;
  float: left;
  font-size: 20px;
  height: 25px;
  margin-bottom: 12px;
  margin-right: 50px;
  padding-left: 47px;
  padding-top: 6px;
  position: relative;
  top: -6px; }

.accept-checkbox:hover {
  background-position: 0 -31px; }

.reject-checkbox:hover {
  background-position: 0 -62px; }

.cookie-vertical-divider {
  float: right;
  margin-right: 30px;
  margin-top: 140px; }

.cookie-lundbeck-logo {
  float: right;
  margin-right: 30px;
  margin-top: 234px; }

.scroll-pane {
  height: 551px;
  overflow: hidden;
  width: 100%; }

.cookie-disclaimer-container {
  font-size: 14px;
  margin-bottom: 30px;
  margin-left: 100px;
  width: 700px; }

#cookiereports-badge {
  right: 0 !important; }

.cookie-disclaimer-container p {
  margin-bottom: 20px; }

.cookie-disclaimer-container h2, .cookie-disclaimer-container h1 {
  color: #bcb8a2;
  font-size: 20px;
  margin-bottom: 40px; }

.cookie-show-disclaimer {
  cursor: pointer;
  text-decoration: underline; }

.cookie-blurb {
  margin-bottom: 20px; }

.cookie-disclaimer-backtotop {
  color: #bcb8a2;
  cursor: pointer;
  float: right;
  margin-bottom: 30px; }

.simplemodal-wrap {
  overflow: visible !important; }

#disclaimerContainer {
  background-color: #f0efe6;
  height: 600px;
  padding-top: 0;
  width: 900px; }

.cookie-dialog-choices-mobile {
  display: none; }

#CookieReportsMiniPanel {
  border-color: #9e9876 !important;
  border-radius: 0 !important;
  bottom: 20px;
  box-shadow: none !important;
  display: none;
  padding: 15px 15px 5px !important;
  right: 0 !important;
  top: auto;
  width: 280px !important;
  z-index: 32002; }

.wscrOk {
  background-color: #bcb8a2 !important;
  border: medium none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: #fff !important;
  margin-right: 5px !important;
  margin-top: 10px !important;
  padding: 6px 9px !important; }

.wscrIcons {
  display: none; }

#CookieReportsMiniPanel > div {
  margin-bottom: 10px; }

.wscrHeading {
  display: none; }

.wscrHeading + div {
  width: 230px !important; }

.CookieReportsLink {
  color: #bcb8a2;
  display: inline-block;
  font-size: 120%;
  margin-bottom: 20px;
  padding: 5px 20px 20px; }

.CookieReportsLink:hover {
  color: #9e9876;
  text-decoration: none; }

.CookieReportsLink:before {
  background: url("/content/images/disclaimerpopup/cookie-icon.png") repeat scroll 0 0 transparent;
  content: "";
  display: inline-block;
  height: 34px;
  position: relative;
  top: 10px;
  width: 30px; }

.wscrLevel {
  border-color: #bcb8a2 !important; }

#wscrTooltip, #wscrTooltip div:first-child {
  border-color: #bcb8a2 !important; }

#CookieReportsButton {
  border-color: #bcb8a2 !important;
  display: none; }

#content .table-pipeline .col:first-child {
  font-weight: bolder;
  width: 240px; }

#content .table-pipeline .col:nth-child(2) {
  width: 240px; }

#content .table-pipeline .col:nth-child(3) {
  width: 79px; }

#content .table-pipeline .col:nth-child(4) {
  width: 90px; }

#content .table-pipeline .col:nth-child(5) {
  width: 50px; }

#content .table-pipeline .col:nth-child(6) {
  width: 123px; }

#content .table-pipeline .headers .col {
  font-size: 13px;
  font-weight: bold;
  padding: 0 10px 7px;
  text-transform: none; }

#content .table-pipeline .row .col {
  padding: 7px 10px; }

#content .table-pipeline .row {
  border-left: 0 none !important;
  border-right: 0 none !important;
  border-top: 0 none !important; }

#content .table-pipeline .col {
  border: 0 none !important; }

#content .table-pipeline .row-details .col.meta p {
  line-height: 14px;
  margin-bottom: 10px; }

#content .table-pipeline .row-details .col.meta p:last-child {
  margin-bottom: 0; }

#content .table-pipeline .row-details .col.description .label:first-child {
  margin-top: 0; }

#content .table-pipeline .row-details .col.description {
  line-height: 17px !important; }

#content .table-pipeline .row-details .col.description .label {
  color: #a5a07b;
  font-size: 11px;
  margin-bottom: 0 !important;
  margin-top: 10px; }

#content .table-pipeline .row-details .col.description .label, #content .table-pipeline .row-details .col.meta span.label {
  float: none !important;
  font-weight: 900;
  width: auto !important; }

.sponser-page #content form.filer {
  display: block; }

.sponser-page #content .table-pipeline {
  clear: both;
  padding-top: 17px; }

.sponser-page #content .customStyleSelectBoxInner {
  min-width: 40px; }
