@charset "UTF-8";
/*
SCSS variables are information about icon's compiled state, stored under its original file name

.icon-home {
  width: $icon-home-width;
}

The large array-like variables contain all information about a single icon
$icon-home: x y offset_x offset_y width height total_width total_height image_path;

At the bottom of this section, we provide information about the spritesheet itself
$spritesheet: width height image $spritesheet-sprites;
*/
/*
The provided mixins are intended to be used with the array-like variables

.icon-home {
  @include sprite-width($icon-home);
}

.icon-email {
  @include sprite($icon-email);
}
*/
/*
The `sprites` mixin generates identical output to the CSS template
  but can be overridden inside of SCSS

@include sprites($spritesheet-sprites);
*/
@font-face {
  font-family: "icon-font";
  src: url("../fonts/icon-font.eot");
  src: url("../fonts/icon-font.eot?#iefix") format("eot"), url("../fonts/icon-font.woff") format("woff"), url("../fonts/icon-font.ttf") format("truetype"), url("../fonts/icon-font.svg#icon-font") format("svg");
}

*, *:before, *:after {
  /* Safari/Chrome, other WebKit */
  /* Firefox, other Gecko */
  box-sizing: border-box;
  /* Opera/IE 8+ */
  /* 1 */
  -webkit-font-smoothing: antialiased;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
template {
  display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
}

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 *

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre-wrap;
}

/**
 * Set consistent quote types.
 */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* ==========================================================================
   Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0;
  max-width: 100%;
}

/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*
    File: _assets/css/scss/_libs-functions.scss
*/
/*
    File: _assets/css/scss/_libs-mixins.scss
        Preference for third-party mixin libraries is to use Bourbon
        See https://github.com/thoughtbot/bourbon
*/
@font-face {
  font-family: "aflexbold";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/aflex-bold-webfont.eot");
  src: url("../fonts/aflex-bold-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/aflex-bold-webfont.woff") format("woff"), url("../fonts/aflex-bold-webfont.ttf") format("truetype");
}

@font-face {
  font-family: "aflexregular";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/alfex-regular-webfont.eot");
  src: url("../fonts/alfex-regular-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/alfex-regular-webfont.woff") format("woff"), url("../fonts/alfex-regular-webfont.ttf") format("truetype");
}

html {
  font-size: 1em;
  line-height: 1.5;
  /* [2] */
}

.js .site,
.js .site-footer {
  opacity: 0;
  transition: opacity .3s;
}

.wf-active .site,
.wf-active .site-footer,
.wf-fail .site,
.wf-fail .site-footer {
  opacity: 1;
}

body {
  font-weight: 400;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.53333;
  font-family: "Roboto", arial, sans-serif;
  font-style: normal;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #636e7f;
}

h1, .heading-1 {
  font-weight: 400;
  font-size: 47.77574px;
  font-size: 2.98598rem;
  line-height: 1.00469;
  margin: 0 0 19px;
}

h2, .heading-2 {
  font-weight: 400;
  font-size: 39.81312px;
  font-size: 2.48832rem;
  line-height: 1.20563;
  margin: 0 0 19px;
}

h3, .heading-3 {
  font-weight: 400;
  font-size: 23.04px;
  font-size: 1.44rem;
  line-height: 1.21528;
  margin: 0 0 19px;
}

h4, .heading-4 {
  font-weight: 500;
  font-size: 19.2px;
  font-size: 1.2rem;
  line-height: 1.25;
  margin: 0 0 19px;
}

h5, .heading-5 {
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 0 19px;
}

h6, .heading-6 {
  font-weight: 500;
  font-size: 13.33333px;
  font-size: 0.83333rem;
  line-height: 1.8;
  margin: 0 0 19px;
}

.b-brand-heading {
  font-family: 'aflexbold';
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 0;
}

.b-brand-heading span {
  font-family: 'aflexregular';
}

.s-content .b-brand-heading {
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1.05;
  margin-bottom: 19px;
}

p {
  margin: 0 0 19px;
}

strong, b {
  font-weight: normal;
  font-weight: 700;
}

em {
  font-style: normal;
  font-weight: 400;
  font-style: italic;
}

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

.s-post li > a,
p > a {
  color: #0099de;
}

small {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.46154;
}

.details dt {
  float: left;
  clear: left;
}

.details dt, .details dd {
  margin-bottom: 19px;
}

.details dd {
  margin-left: 28px;
}

.details__email {
  margin-left: 0 !important;
  color: #7dcbe0;
}

.s-copy {
  max-width: 925px;
  padding-bottom: 19px;
}

.s-copy h1 {
  color: #0099de;
}

.s-copy .b-sizes {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.44444;
}

.s-copy a:hover {
  text-decoration: underline;
}

.s-post {
  padding: 38px 19px;
}

.s-post .b-brand-heading {
  color: #0099de;
  margin-bottom: 19px;
}

.s-post img {
  margin-bottom: 19px;
}

.s-post figure {
  border-bottom: 1px solid #cad8dd;
  margin-bottom: 19px;
}

.s-post figure h3 {
  margin-bottom: 9px;
}

.s-post figure img {
  margin-bottom: 0;
  width: 100%;
  height: auto;
}

.s-post figcaption {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429;
}

.s-post figcaption,
.s-post em {
  font-weight: 400;
  font-style: italic;
}

.s-post h1 {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.2;
}

.s-post h2, .s-post h3 {
  font-weight: 500;
}

.s-post h2 {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1;
}

.s-post h3 {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.s-post ul,
.s-post ol {
  margin: 0 0 19px;
  padding-left: 19px;
}

.s-post ul li,
.s-post ol li {
  margin-bottom: 4px;
}

blockquote,
.blockquote {
  position: relative;
  margin: 0 0 19px;
  padding-left: 38px;
}

blockquote > span,
.blockquote > span {
  font-size: 25px;
  font-size: 1.5625rem;
  line-height: 1.36;
  padding-bottom: 19px;
  color: #0099de;
  display: block;
}

blockquote > span:before,
.blockquote > span:before {
  content: "\0022";
}

blockquote > span:after,
.blockquote > span:after {
  content: "\0022";
}

blockquote cite,
blockquote .cite,
.blockquote cite,
.blockquote .cite {
  display: block;
  font-style: normal;
}

blockquote:before,
.blockquote:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 3px;
  background: #0099de;
}

input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button,
select {
  -webkit-appearance: none;
          appearance: none;
  border-radius: 0;
}

fieldset {
  margin: 0;
  border: 0;
}

.input {
  margin-bottom: 19px;
  position: relative;
}

.input:last-of-type {
  margin-bottom: 0;
}

.input-wrapper {
  margin: 0 0 1em;
}

.input-wrapper ul {
  list-style: none;
}

.form__textarea,
.form__input {
  font-size: 17px;
  font-size: 1.0625rem;
  padding: 14px 9px;
  display: block;
  width: 100%;
  border: 1px solid #cad8dd;
  color: #636e7f;
}

.input--error .form__textarea, .input--error
.form__input {
  border-color: #eb6f5e;
}

.form__label,
.radio_checkbox_group_legend {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 4px;
  display: block;
}

.form__label,
.radio_checkbox_legend {
  cursor: pointer;
  padding: 4px;
  padding-left: 0;
}

.form__label small {
  max-width: 500px;
  display: block;
}

.form__textarea {
  resize: none;
  min-height: 154px;
}

::-webkit-input-placeholder {
  font-weight: 400;
}

:-moz-placeholder {
  /* Firefox 18- */
  font-weight: 400;
}

::-moz-placeholder {
  /* Firefox 19+ */
  font-weight: 400;
}

:-ms-input-placeholder {
  font-weight: 400;
}

.input-wrapper {
  margin-bottom: 2em;
}

.input-wrapper ul {
  padding: 0;
  margin: 0;
}

.form__radio,
.form__checkbox {
  padding: 8px !important;
  display: inline-block;
  border: 1px solid #cad8dd;
  color: #636e7f;
  position: relative;
  top: 3px;
  margin-right: 4px;
}

.form__radio:checked,
.form__checkbox:checked {
  border-color: #706f6f;
  background: #706f6f;
  box-shadow: inset 2px 2px 0 white, inset -2px -2px 0 white, inset -2px 2px 0 white, inset 2px -2px 0 white;
}

.form__radio:focus,
.form__checkbox:focus {
  outline: none;
  border-color: #706f6f;
  background-color: #706f6f;
  box-shadow: inset 2px 2px 0 white, inset -2px -2px 0 white, inset -2px 2px 0 white, inset 2px -2px 0 white;
}

.form__radio {
  border-radius: 9px;
}

.form__select {
  position: relative;
  padding: 0;
  border: 1px solid #cad8dd;
  color: #636e7f;
  width: 100%;
  max-width: 600px;
  background: #fff;
  padding: 14px 9px;
}

.form__select:after {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 4.16667;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  font-family: "icon-font";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  width: 52px;
  vertical-align: middle;
  color: #0099de;
  border-left: 1px solid #cad8dd;
  text-align: center;
}

.form__select select {
  font-size: 17px;
  font-size: 1.0625rem;
  background: none;
  border: 0;
  width: 100%;
  display: block;
  color: #636e7f;
  padding: 0 9px;
  position: relative;
  z-index: 1;
}

.form__select select::-ms-expand {
  display: none;
}

.select-wrapper {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 600px;
}

.select-wrapper:after {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 4.08333;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  font-family: "icon-font";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  color: #0099de;
  width: 38px;
  height: 42px;
  background-color: #fff;
  border-left: 1px solid #cad8dd;
  text-align: center;
  pointer-events: none;
  display: block;
  float: right;
  position: absolute;
  top: 0;
  right: 5px;
  bottom: 0;
  margin: auto;
  pointer-events: none;
}

.form__select:focus {
  outline: none;
  box-shadow: inset 2px 2px 0 #7dcbe0, inset -2px -2px 0 #7dcbe0;
}

.form--info {
  background-color: rgba(0, 153, 222, 0.08);
  padding: 19px 19px 19px 0;
  position: relative;
  z-index: 1;
}

.form--info:after {
  background-image: url(../images/png-sprite.png);
  background-position: 0px 0px;
  width: 595px;
  height: 285px;
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  content: ' ';
  opacity: 0.3;
  z-index: -1;
}

.form--info .form__heading {
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.1875;
  color: #0099de;
}

.form--info .form__col:first-child {
  margin-bottom: 19px;
}

.form--info .btn--box {
  background-color: #fff;
}

.table--region .form--contact__new td {
  padding: 0;
}

.form__toggle {
  opacity: 0;
  width: 0;
  height: 0;
  float: left;
}

.form__toggle + label:before {
  position: absolute;
  top: -3px;
  bottom: 0;
  left: 0;
  border: 1px solid #cad8dd;
  transition: all 0.3s;
  content: ' ';
  pointer-events: none;
  width: 20px;
  height: 20px;
  margin: auto;
  display: block;
}

.form__toggle--radio + label:before {
  border-radius: 100%;
}

.form__toggle--radio.is-checked + label:before,
.form__toggle--radio:checked + label:before {
  box-shadow: 0 0 0 5px #fff inset;
  background-color: #0099de;
}

.form__toggle--check:checked + label:after {
  font-size: 18px;
  font-size: 1.125rem;
  position: absolute;
  top: -1px;
  left: 5px;
  font-family: "icon-font";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  color: #0099de;
}

.form__label--toggle {
  position: relative;
  vertical-align: baseline;
  padding-left: 28px;
  margin-bottom: 9px;
  margin-right: 28px;
  min-width: 1px;
  display: block;
}

input.error, input.error:focus {
  outline: 1px solid #eb6f5e;
}

label.error {
  color: #eb6f5e;
}

.form__label--radio-btns-wrap > *:not(:last-child) {
  margin-right: 1rem;
}

.form__label--radio {
  display: inline-block;
}

.s-post table {
  text-align: center;
}

.s-post table td, .s-post table th {
  padding: 9px;
  border: 2px solid #fff;
  min-width: 100px;
}

.s-post table th {
  background-color: #34495d;
  color: #fff;
}

.s-post table tr:first-child td {
  white-space: nowrap;
  width: auto !important;
}

.s-post table tr:nth-child(odd) td {
  background-color: #f6fbfe;
}

.s-post table tr:nth-child(even) td {
  background-color: #cad8dd;
}

.table {
  width: 100%;
}

.table-wrap {
  position: relative;
}

.table-wrap p {
  max-width: none !important;
  margin: 0;
}

.table-layout--fit table {
  table-layout: fixed;
  width: 100%;
}

.table-layout--auto table {
  width: auto;
}

.sneaky td {
  padding: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
}

table {
  position: relative;
}

.table-full {
  width: 100% !important;
}

.table-auto-width {
  width: auto !important;
}

.table-width-50 {
  min-width: 50%;
  width: auto !important;
}

.table-fixed {
  table-layout: fixed;
  width: 100%;
}

@media screen and (max-width: 954px) {
  .table-holder {
    max-width: 100%;
    overflow-x: auto;
  }
  .table-holder .table {
    min-width: 954px;
  }
}

.table-wrap {
  overflow-x: auto;
}

.table-wrap table {
  font-family: Arial, Helvetica, Verdana, Tahoma, sans-serif;
  font-size: 12px;
  line-height: 1.4;
}

.table-wrap td {
  min-width: 60px;
}

.table-wrap table {
  height: auto !important;
}

.table-wrap tr,
.table-wrap th,
.table-wrap td {
  height: auto !important;
  margin: 0;
}

.table-wrap img, .table-wrap p {
  margin: 0;
  padding: 0;
}

.s-post .table-wrap tr,
.s-post .table-wrap th,
.s-post .table-wrap td {
  height: auto !important;
}

.s-post .table-wrap img, .s-post .table-wrap p {
  margin: 0;
  padding: 0;
}

/*! Tablesaw - v2.0.2 - 2015-10-28
* https://github.com/filamentgroup/tablesaw
* Copyright (c) 2015 Filament Group; Licensed  */
table.tablesaw {
  empty-cells: show;
  max-width: 100%;
  width: 100%;
}

.tablesaw {
  border-collapse: collapse;
  width: 100%;
}

/* Structure */
.tablesaw {
  border: 0;
  padding: 0;
}

.tablesaw th,
.tablesaw td {
  box-sizing: border-box;
  padding: .5em .7em;
}

.tablesaw thead tr:first-child th {
  padding-top: .9em;
  padding-bottom: .7em;
}

.tablesaw-enhanced .tablesaw-bar .btn {
  border: 1px solid #ccc;
  background: none;
  background-color: #fafafa;
  box-shadow: 0 1px 0 white;
  color: #4a4a4a;
  clear: both;
  cursor: pointer;
  display: block;
  font: bold 20px/1 sans-serif;
  margin: 0;
  padding: .5em .85em .4em .85em;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-transform: capitalize;
  text-shadow: 0 1px 0 #fff;
  width: 100%;
  /* Theming */
  background-image: linear-gradient(to top, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(170, 170, 170, 0.1) 55%, rgba(120, 120, 120, 0.15) 100%);
  box-sizing: border-box;
  border-radius: .25em;
}

.tablesaw-enhanced .tablesaw-bar a.btn {
  color: #1c95d4;
}

.tablesaw-enhanced .tablesaw-bar .btn:hover {
  text-decoration: none;
}

/* Default radio/checkbox styling horizonal controlgroups. */
.tablesaw-enhanced .tablesaw-bar .btn:active {
  background-color: #ddd;
  background-image: linear-gradient(to top, rgba(100, 100, 100, 0.35) 0%, rgba(255, 255, 255, 0) 70%);
}

.tablesaw-enhanced .tablesaw-bar .btn:hover,
.tablesaw-enhanced .tablesaw-bar .btn:focus {
  color: #208de3;
  background-color: #fff;
  outline: none;
}

.tablesaw-bar .btn:focus {
  box-shadow: 0 0 .35em #4faeef !important;
}

.tablesaw-bar .btn-select select {
  background: none;
  border: none;
  display: block;
  position: absolute;
  font-weight: inherit;
  left: 0;
  top: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  min-height: 1em;
}

.tablesaw-bar .btn-select select {
  opacity: 0;
  filter: alpha(opacity=0);
  display: inline-block;
  color: transparent;
}

.tablesaw-bar .btn select option {
  background: #fff;
  color: #000;
  font-family: sans-serif;
}

.tablesaw-enhanced .tablesaw-bar .btn.btn-select {
  color: #4d4d4d;
  padding-right: 2.5em;
  min-width: 7.25em;
  text-align: left;
  text-indent: 0;
}

.tablesaw-bar .btn.btn-small,
.tablesaw-bar .btn.btn-micro {
  display: inline-block;
  width: auto;
  height: auto;
  position: relative;
  top: 0;
}

.tablesaw-bar .btn.btn-small {
  font-size: 1.0625em;
  line-height: 19px;
  padding: .3em 1em .3em 1em;
}

.tablesaw-bar .btn.btn-micro {
  font-size: .8125em;
  padding: .4em .7em .25em .7em;
}

.tablesaw-enhanced .tablesaw-bar .btn-select {
  text-align: left;
}

.tablesaw-bar .btn-select:after {
  background: #e5e5e5;
  background: rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 2px rgba(255, 255, 255, 0.25);
  content: " ";
  display: block;
  position: absolute;
}

.tablesaw-bar .btn-select.btn-small,
.tablesaw-bar .btn-select.btn-micro {
  padding-right: 1.5em;
}

.tablesaw-bar .btn-select:after {
  background: none;
  background-repeat: no-repeat;
  background-position: .25em .45em;
  content: "\25bc";
  font-size: .55em;
  padding-top: 1.2em;
  padding-left: 1em;
  left: auto;
  right: 0;
  margin: 0;
  top: 0;
  bottom: 0;
  width: 1.8em;
}

.tablesaw-bar .btn-select.btn-small:after,
.tablesaw-bar .btn-select.btn-micro:after {
  width: 1.2em;
  font-size: .5em;
  padding-top: 1em;
  padding-right: .5em;
  line-height: 1.65;
  background: none;
  box-shadow: none;
  border-left-width: 0;
}

/* Column navigation buttons for swipe and columntoggle tables */
.tablesaw-advance .btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: border-box;
  text-shadow: 0 1px 0 #fff;
  border-radius: .25em;
}

.tablesaw-advance .btn.btn-micro {
  font-size: .8125em;
  padding: .3em .7em .25em .7em;
}

.tablesaw-bar .tablesaw-advance a.tablesaw-nav-btn {
  display: inline-block;
  overflow: hidden;
  width: 1.8em;
  height: 1.8em;
  background-position: 50% 50%;
  margin-left: .5em;
  position: relative;
}

.tablesaw-bar .tablesaw-advance a.tablesaw-nav-btn.left:before,
.tablesaw-bar .tablesaw-advance a.tablesaw-nav-btn.right:before,
.tablesaw-bar .tablesaw-advance a.tablesaw-nav-btn.down:before,
.tablesaw-bar .tablesaw-advance a.tablesaw-nav-btn.up:before {
  content: "\0020";
  overflow: hidden;
  width: 0;
  height: 0;
  position: absolute;
}

.tablesaw-bar .tablesaw-advance a.tablesaw-nav-btn.down:before {
  left: .5em;
  top: .65em;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #808080;
}

.tablesaw-bar .tablesaw-advance a.tablesaw-nav-btn.up:before {
  left: .5em;
  top: .65em;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #808080;
}

.tablesaw-bar .tablesaw-advance a.tablesaw-nav-btn.left:before,
.tablesaw-bar .tablesaw-advance a.tablesaw-nav-btn.right:before {
  top: .45em;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.tablesaw-bar .tablesaw-advance a.tablesaw-nav-btn.left:before {
  left: .6em;
  border-right: 5px solid #808080;
}

.tablesaw-bar .tablesaw-advance a.tablesaw-nav-btn.right:before {
  left: .7em;
  border-left: 5px solid #808080;
}

.tablesaw-advance a.tablesaw-nav-btn.disabled {
  opacity: .25;
  filter: alpha(opacity=25);
  cursor: default;
  pointer-events: none;
}

/* Table Toolbar */
.tablesaw-bar {
  clear: both;
  font-family: sans-serif;
}

.tablesaw-toolbar {
  font-size: .875em;
  float: left;
}

.tablesaw-toolbar label {
  padding: .5em 0;
  clear: both;
  display: block;
  color: #888;
  margin-right: .5em;
  text-transform: uppercase;
}

.tablesaw-bar .btn,
.tablesaw-enhanced .tablesaw-bar .btn {
  margin-top: .5em;
  margin-bottom: .5em;
}

.tablesaw-bar .btn-select,
.tablesaw-enhanced .tablesaw-bar .btn-select {
  margin-bottom: 0;
}

.tablesaw-bar .tablesaw-toolbar .btn {
  margin-left: .4em;
  margin-top: 0;
  text-transform: uppercase;
  border: none;
  box-shadow: none;
  background: transparent;
  font-family: sans-serif;
  font-size: 1em;
  padding-left: .3em;
}

.tablesaw-bar .tablesaw-toolbar .btn-select {
  min-width: 0;
}

.tablesaw-bar .tablesaw-toolbar .btn-select:after {
  padding-top: .9em;
}

.tablesaw-bar .tablesaw-toolbar select {
  color: #888;
  text-transform: none;
  background: transparent;
}

.tablesaw-toolbar ~ table {
  clear: both;
}

.tablesaw-toolbar .a11y-sm {
  clip: rect(0 0 0 0);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

@media (min-width: 24em) {
  .tablesaw-toolbar .a11y-sm {
    clip: none;
    height: auto;
    width: auto;
    position: static;
    overflow: visible;
  }
}

table.tablesaw tbody th {
  font-weight: bold;
}

table.tablesaw thead th,
table.tablesaw thead td {
  color: #444;
  font-size: .9em;
}

.tablesaw th,
.tablesaw td {
  line-height: 1em;
  text-align: left;
  vertical-align: middle;
}

.tablesaw td,
.tablesaw tbody th {
  vertical-align: middle;
  font-size: 1.17em;
  /* 19px */
}

.tablesaw td .btn,
.tablesaw tbody th .btn {
  margin: 0;
}

.tablesaw thead {
  border: 1px solid #e5e5e4;
  background: #e2dfdc;
  background-image: linear-gradient(to bottom, #fff, #e2dfdc);
}

.tablesaw thead th {
  font-weight: 100;
  color: #777;
  text-transform: uppercase;
  text-shadow: 0 1px 0 #fff;
  text-align: left;
}

.tablesaw thead tr:first-child th {
  font-weight: normal;
  font-family: sans-serif;
  border-right: 1px solid #e4e1de;
}

/* Table rows have a gray bottom stroke by default */
.tablesaw tbody tr {
  border-bottom: 1px solid #dfdfdf;
}

.tablesaw caption {
  text-align: left;
  margin-bottom: 0;
  opacity: .5;
  filter: alpha(opacity=50);
  line-height: 2.4;
}

@media (min-width: 25em) {
  .tablesaw caption {
    margin-bottom: .6em;
    line-height: 1.2;
  }
}

/* Stack */
.tablesaw-cell-label-top {
  text-transform: uppercase;
  font-size: .9em;
  font-weight: normal;
}

.tablesaw-cell-label {
  font-size: .65em;
  text-transform: uppercase;
  color: #888;
  font-family: sans-serif;
}

@media (min-width: 40em) {
  .tablesaw td {
    line-height: 2em;
  }
}

@media only all {
  .tablesaw-swipe .tablesaw-cell-persist {
    border-right: 1px solid #e4e1de;
  }
  .tablesaw-swipe .tablesaw-cell-persist {
    box-shadow: 3px 0 4px -1px #e4e1de;
  }
}

/* Table rows have a gray bottom stroke by default */
.tablesaw-stack tbody tr {
  border-bottom: 1px solid #dfdfdf;
}

.tablesaw-stack td .tablesaw-cell-label,
.tablesaw-stack th .tablesaw-cell-label {
  display: none;
}

/* Mobile first styles: Begin with the stacked presentation at narrow widths */
@media only all {
  /* Show the table cells as a block level element */
  .tablesaw-stack td,
  .tablesaw-stack th {
    text-align: left;
    display: block;
  }
  .tablesaw-stack tr {
    clear: both;
    display: table-row;
  }
  /* Make the label elements a percentage width */
  .tablesaw-stack td .tablesaw-cell-label,
  .tablesaw-stack th .tablesaw-cell-label {
    display: block;
    padding: 0 .6em 0 0;
    width: 30%;
    display: inline-block;
  }
  /* For grouped headers, have a different style to visually separate the levels by classing the first label in each col group */
  .tablesaw-stack th .tablesaw-cell-label-top,
  .tablesaw-stack td .tablesaw-cell-label-top {
    display: block;
    padding: .4em 0;
    margin: .4em 0;
  }
  .tablesaw-cell-label {
    display: block;
  }
  /* Avoid double strokes when stacked */
  .tablesaw-stack tbody th.group {
    margin-top: -1px;
  }
  /* Avoid double strokes when stacked */
  .tablesaw-stack th.group b.tablesaw-cell-label {
    display: none !important;
  }
}

@media (max-width: 39.9375em) {
  .tablesaw-stack thead td,
  .tablesaw-stack thead th {
    display: none;
  }
  .tablesaw-stack tbody td,
  .tablesaw-stack tbody th {
    clear: left;
    float: left;
    width: 100%;
  }
  .tablesaw-cell-label {
    vertical-align: top;
  }
  .tablesaw-cell-content {
    max-width: 67%;
    display: inline-block;
  }
  .tablesaw-stack td:empty,
  .tablesaw-stack th:empty {
    display: none;
  }
}

/* Media query to show as a standard table at 560px (35em x 16px) or wider */
@media (min-width: 40em) {
  .tablesaw-stack tr {
    display: table-row;
  }
  /* Show the table header rows */
  .tablesaw-stack td,
  .tablesaw-stack th,
  .tablesaw-stack thead td,
  .tablesaw-stack thead th {
    display: table-cell;
    margin: 0;
  }
  /* Hide the labels in each cell */
  .tablesaw-stack td .tablesaw-cell-label,
  .tablesaw-stack th .tablesaw-cell-label {
    display: none !important;
  }
}

.tablesaw-fix-persist {
  table-layout: fixed;
}

@media only all {
  /* Unchecked manually: Always hide */
  .tablesaw-swipe th.tablesaw-cell-hidden,
  .tablesaw-swipe td.tablesaw-cell-hidden {
    display: none;
  }
}

.btn.tablesaw-columntoggle-btn span {
  text-indent: -9999px;
  display: inline-block;
}

.tablesaw-columntoggle-btnwrap {
  position: relative;
  /* for dialog positioning */
}

.tablesaw-columntoggle-btnwrap .dialog-content {
  padding: .5em;
}

.tablesaw-columntoggle tbody td {
  line-height: 1.5;
}

/* Remove top/bottom margins around the fieldcontain on check list */
.tablesaw-columntoggle-popup {
  display: none;
}

.tablesaw-columntoggle-btnwrap.visible .tablesaw-columntoggle-popup {
  display: block;
  position: absolute;
  top: 2em;
  right: 0;
  background-color: #fff;
  padding: .5em .8em;
  border: 1px solid #ccc;
  box-shadow: 0 1px 2px #ccc;
  border-radius: .2em;
  z-index: 1;
}

.tablesaw-columntoggle-popup fieldset {
  margin: 0;
}

/* Hide all prioritized columns by default */
@media only all {
  .tablesaw-columntoggle th.tablesaw-priority-6,
  .tablesaw-columntoggle td.tablesaw-priority-6,
  .tablesaw-columntoggle th.tablesaw-priority-5,
  .tablesaw-columntoggle td.tablesaw-priority-5,
  .tablesaw-columntoggle th.tablesaw-priority-4,
  .tablesaw-columntoggle td.tablesaw-priority-4,
  .tablesaw-columntoggle th.tablesaw-priority-3,
  .tablesaw-columntoggle td.tablesaw-priority-3,
  .tablesaw-columntoggle th.tablesaw-priority-2,
  .tablesaw-columntoggle td.tablesaw-priority-2,
  .tablesaw-columntoggle th.tablesaw-priority-1,
  .tablesaw-columntoggle td.tablesaw-priority-1 {
    display: none;
  }
}

.tablesaw-columntoggle-btnwrap .dialog-content {
  top: 0 !important;
  right: 1em;
  left: auto !important;
  width: 12em;
  max-width: 18em;
  margin: -.5em auto 0;
}

.tablesaw-columntoggle-btnwrap .dialog-content:focus {
  outline-style: none;
}

/* Preset breakpoints if "" class added to table */
/* Show priority 1 at 320px (20em x 16px) */
@media (min-width: 20em) {
  .tablesaw-columntoggle th.tablesaw-priority-1,
  .tablesaw-columntoggle td.tablesaw-priority-1 {
    display: table-cell;
  }
}

/* Show priority 2 at 480px (30em x 16px) */
@media (min-width: 30em) {
  .tablesaw-columntoggle th.tablesaw-priority-2,
  .tablesaw-columntoggle td.tablesaw-priority-2 {
    display: table-cell;
  }
}

/* Show priority 3 at 640px (40em x 16px) */
@media (min-width: 40em) {
  .tablesaw-columntoggle th.tablesaw-priority-3,
  .tablesaw-columntoggle td.tablesaw-priority-3 {
    display: table-cell;
  }
  .tablesaw-columntoggle tbody td {
    line-height: 2;
  }
}

/* Show priority 4 at 800px (50em x 16px) */
@media (min-width: 50em) {
  .tablesaw-columntoggle th.tablesaw-priority-4,
  .tablesaw-columntoggle td.tablesaw-priority-4 {
    display: table-cell;
  }
}

/* Show priority 5 at 960px (60em x 16px) */
@media (min-width: 60em) {
  .tablesaw-columntoggle th.tablesaw-priority-5,
  .tablesaw-columntoggle td.tablesaw-priority-5 {
    display: table-cell;
  }
}

/* Show priority 6 at 1,120px (70em x 16px) */
@media (min-width: 70em) {
  .tablesaw-columntoggle th.tablesaw-priority-6,
  .tablesaw-columntoggle td.tablesaw-priority-6 {
    display: table-cell;
  }
}

@media only all {
  /* Unchecked manually: Always hide */
  .tablesaw-columntoggle th.tablesaw-cell-hidden,
  .tablesaw-columntoggle td.tablesaw-cell-hidden {
    display: none;
  }
  /* Checked manually: Always show */
  .tablesaw-columntoggle th.tablesaw-cell-visible,
  .tablesaw-columntoggle td.tablesaw-cell-visible {
    display: table-cell;
  }
}

.tablesaw-columntoggle-popup .btn-group > label {
  display: block;
  padding: .2em 0;
  white-space: nowrap;
}

.tablesaw-columntoggle-popup .btn-group > label input {
  margin-right: .8em;
}

.tablesaw-sortable,
.tablesaw-sortable thead,
.tablesaw-sortable thead tr,
.tablesaw-sortable thead tr th {
  position: relative;
}

.tablesaw-sortable thead tr th {
  padding-right: 1.6em;
  vertical-align: top;
}

.tablesaw-sortable th.tablesaw-sortable-head,
.tablesaw-sortable tr:first-child th.tablesaw-sortable-head {
  padding: 0;
}

.tablesaw-sortable th.tablesaw-sortable-head button {
  padding-top: .9em;
  padding-bottom: .7em;
  padding-left: .6em;
  padding-right: 1.6em;
}

.tablesaw-sortable .tablesaw-sortable-head button {
  min-width: 100%;
  color: inherit;
  background: transparent;
  border: 0;
  padding: 0;
  text-align: left;
  font: inherit;
  text-transform: inherit;
  position: relative;
}

.tablesaw-sortable .tablesaw-sortable-head.tablesaw-sortable-ascending button:after,
.tablesaw-sortable .tablesaw-sortable-head.tablesaw-sortable-descending button:after {
  width: 7px;
  height: 10px;
  content: "\0020";
  position: absolute;
  right: .5em;
}

.tablesaw-sortable .tablesaw-sortable-head.tablesaw-sortable-ascending button:after {
  content: "\2191";
}

.tablesaw-sortable .tablesaw-sortable-head.tablesaw-sortable-descending button:after {
  content: "\2193";
}

.tablesaw-sortable .not-applicable:after {
  content: "--";
  display: block;
}

.tablesaw-sortable .not-applicable span {
  display: none;
}

.tablesaw-advance {
  float: right;
}

.tablesaw-advance.minimap {
  margin-right: .4em;
}

.tablesaw-advance-dots {
  float: left;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tablesaw-advance-dots li {
  display: table-cell;
  margin: 0;
  padding: .4em .2em;
}

.tablesaw-advance-dots li i {
  width: .25em;
  height: .25em;
  background: #555;
  border-radius: 100%;
  display: inline-block;
}

.tablesaw-advance-dots-hide {
  opacity: .25;
  filter: alpha(opacity=25);
  cursor: default;
  pointer-events: none;
}

/* perfect-scrollbar v0.6.10 */
.ps-container {
  -ms-touch-action: none;
  touch-action: none;
  overflow: hidden !important;
  -ms-overflow-style: none;
}

.ps-container.ps-active-x > .ps-scrollbar-x-rail {
  display: block;
  background-color: transparent;
}

.ps-container.ps-in-scrolling {
  pointer-events: none;
}

.ps-container.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail {
  background-color: #eee;
  opacity: 0.9;
}

.ps-container.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail > .ps-scrollbar-x {
  background-color: #34495d;
}

.ps-container > .ps-scrollbar-x-rail {
  display: none;
  position: absolute;
  /* please don't change 'position' */
  border-radius: 4px;
  transition: background-color .2s linear, opacity .2s linear;
  bottom: 3px;
  /* there must be 'bottom' for ps-scrollbar-x-rail */
  height: 8px;
}

.ps-container > .ps-scrollbar-x-rail > .ps-scrollbar-x {
  position: absolute;
  /* please don't change 'position' */
  background-color: #34495d;
  border-radius: 4px;
  transition: background-color .2s linear;
  bottom: 0;
  /* there must be 'bottom' for ps-scrollbar-x */
  height: 8px;
}

.ps-container:hover.ps-in-scrolling {
  pointer-events: none;
}

.ps-container:hover.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail {
  background-color: #eee;
  opacity: 0.9;
}

.ps-container:hover.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail > .ps-scrollbar-x {
  background-color: #34495d;
}

.ps-container:hover > .ps-scrollbar-x-rail {
  opacity: 0.6;
}

.ps-container:hover > .ps-scrollbar-x-rail:hover {
  background-color: #eee;
  opacity: 0.9;
}

.ps-container:hover > .ps-scrollbar-x-rail:hover > .ps-scrollbar-x {
  background-color: #34495d;
}

.ps-scrollbar-x-rail {
  bottom: auto !important;
  top: 0;
}

.btn {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2.44444;
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  margin: 0;
  padding: 0 25px;
  text-decoration: none;
  height: 44px;
}

.button {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.button:active, .button:focus {
  outline: 0;
}

.btn--box {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.375;
  font-family: 'aflexbold';
  text-transform: uppercase;
  position: relative;
  padding: 9px 52px 9px 14px;
  text-align: left;
  color: #0099de;
  border: 1px solid #cad8dd;
  height: auto;
  white-space: normal;
}

.btn--box:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 38px;
  border-left: 1px solid #cad8dd;
  text-align: center;
  content: " ";
}

.btn--box:before {
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "icon-font";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  height: 18px;
  margin: auto;
  display: block;
}

.btn--box:hover, .btn--box:focus {
  background-color: #0099de;
  color: #fff;
  border-color: #0099de;
}

.btn--box:hover:after, .btn--box:focus:after {
  border-color: #fff;
}

.paginate {
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
  cursor: pointer;
  margin: 0 4px;
  text-decoration: none;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.375;
  font-family: 'aflexbold';
  text-transform: uppercase;
  position: relative;
  padding: 9px 52px 9px 14px;
  text-align: left;
  color: #0099de;
  border: 1px solid #cad8dd;
}

.paginate:hover {
  background-color: #0099de;
  color: #fff;
  border-color: #fff;
}

.paginate-noresults {
  margin: 9px 9px;
  text-align: center;
}

.paginate--prev {
  padding-left: 38px;
  padding-right: 9px;
}

.paginate--prev:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 13px;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.42857;
  font-family: "icon-font";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  height: 18px;
  margin: auto;
  display: block;
}

.paginate--next {
  padding-left: 9px;
  padding-right: 38px;
}

.paginate--next:after {
  position: absolute;
  top: 0;
  right: 13px;
  bottom: 0;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.42857;
  font-family: "icon-font";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  height: 18px;
  margin: auto;
  display: block;
}

.btn--download {
  font-weight: 700;
  background-color: #fff;
  margin-bottom: 19px;
}

.btn--download:before {
  content: "";
}

.button--email {
  color: #636e7f;
}

.button--email:before {
  font-family: "icon-font";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429;
  content: "";
  margin-right: 9px;
}

.is-active .button--email:before {
  color: #0099de;
  content: "";
}

.button--email:hover {
  color: #0099de;
}

.nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav--standard > li {
  display: inline-block;
}

.nav--stacked > li {
  display: block;
}

.nav--breadcrumb > li {
  display: inline-block;
}

.site {
  padding-top: 70px;
  background-image: linear-gradient(to left, #fff 50%, #edf7fd 50%);
}

.site__wrap > .wrapper {
  padding: 0 19px 0 0;
}

.wrapper {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

.l-wrap--inset {
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.l-wrap--listing {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -4px;
}

.l-box--list {
  padding-left: 4px;
}

.l-box--side {
  width: 100%;
  display: block;
}

.l-main {
  background-color: #fff;
  margin-left: 19px;
}

.l-box-header {
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 19px;
}

.s-content {
  padding: 0 19px 38px;
  padding: 0 0 38px;
}

.site-header__top {
  height: 70px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background-color: #fff;
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  right: 19px;
  background-color: #edf7fd;
}

.site-header__top:after {
  position: absolute;
  top: 0;
  right: -19px;
  height: 70px;
  width: 19px;
  background-color: #fff;
  content: " ";
}

.logo-frame {
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.logo-frame.is-active .site-logo {
  opacity: 0;
}

.site-header {
  position: fixed;
  width: 100%;
  height: 70px;
  left: 0;
  top: 0;
  z-index: 1001;
}

.site-logo {
  background-image: url(../images/png-sprite.png);
  background-position: -311px -285px;
  width: 141px;
  height: 18px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 19px;
  text-indent: 150%;
  overflow: hidden;
  white-space: nowrap;
  display: block;
  margin: auto;
  left: 19px;
}

.burger {
  position: relative;
  right: 0;
  width: 70px;
  height: 70px;
  display: block;
  z-index: 10001;
}

.burger span {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 19px;
  height: 4px;
  display: block;
  background-color: #0099de;
  transition: all .3s;
}

.burger span:before {
  position: absolute;
  top: 0;
  left: -7px;
  transition: all .3s;
  background-color: #0099de;
  width: 4px;
  height: 4px;
  display: block;
  content: " ";
}

.burger span:nth-child(1) {
  -webkit-transform: translateY(-8px);
      -ms-transform: translateY(-8px);
          transform: translateY(-8px);
}

.burger span:nth-child(3) {
  -webkit-transform: translateY(8px);
      -ms-transform: translateY(8px);
          transform: translateY(8px);
}

.burger.is-active span:before {
  opacity: 0;
}

.burger.is-active span:nth-child(1) {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.burger.is-active span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.burger.is-active span:nth-child(2) {
  opacity: 0;
}

.menu {
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  height: 100%;
  height: calc(100% - 70px);
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  padding-left: 19px;
  z-index: 1;
  overflow-x: hidden;
  overflow-y: auto;
}

.menu.is-active {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.menu__wrapper {
  position: relative;
  height: 100%;
  background-color: #fff;
}

.is-current .menu__link:after {
  position: absolute;
  top: -1px;
  right: 0;
  bottom: -1px;
  left: -3px;
  display: block;
  border: 1px solid #0099de;
  border-left-width: 2px;
  border-right: 0;
  content: " ";
  pointer-events: none;
}

.menu__item b {
  font-weight: inherit;
}

.menu__item {
  border-bottom: 1px solid #cad8dd;
  display: block;
}

.menu__item:first-child {
  border-top: 1px solid #cad8dd;
}

.menu__item b,
.menu__item a:not(.menu__trigger) {
  height: 50px;
  font-size: 0;
}

.menu__item b:before,
.menu__item a:not(.menu__trigger):before {
  height: 100%;
  display: inline-block;
  content: " ";
  vertical-align: middle;
}

.menu__item b > span,
.menu__item a:not(.menu__trigger) > span {
  font-size: 16px;
  font-size: 1rem;
  display: inline-block;
  vertical-align: middle;
  padding-left: 19px;
}

.menu__item b,
.menu__item a {
  display: block;
  cursor: pointer;
}

.menu__item.is-current {
  color: #0099de;
}

.menu__item--parent {
  font-weight: 700;
}

.menu__item--parent b,
.menu__item--parent a:not(.menu__trigger) {
  margin-right: 50px;
}

.menu__sub-wrapper.is-active {
  -webkit-transform: translateX(0%);
      -ms-transform: translateX(0%);
          transform: translateX(0%);
}

.menu__item--minor {
  font-weight: 400;
}

.menu__trigger {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border-left: 1px solid #cad8dd;
  width: 50px;
  height: 50px;
  display: block;
  text-align: center;
  color: #0099de;
}

.menu__trigger:before {
  font-family: "icon-font";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 3.33333;
  content: "";
  margin: auto;
}

.menu__back-frame {
  position: relative;
}

.menu__ctrl {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  background-color: #fff;
  display: none;
}

.is-active .menu__ctrl {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.menu__back {
  height: 70px;
  text-align: center;
}

.menu__back:before {
  font-family: "icon-font";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.menu__back--root {
  display: none;
  width: 70px;
  color: #0099de;
}

.menu__back--root:before {
  font-size: 16px;
  font-size: 1rem;
  line-height: 4.375;
  content: "";
  display: block;
}

.menu__back--root.is-active {
  display: block;
}

.menu__back--step {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 3.88889;
  font-weight: 700;
  display: none;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.menu__back--step.is-active {
  display: block;
}

.menu__back--step:before {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 5.83333;
  content: "";
  display: inline-block;
  margin-right: 5px;
}

.menu__sub-wrapper {
  position: absolute;
  top: 0;
  right: -3px;
  bottom: 0;
  left: -3px;
  z-index: 2;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #fff;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.menu__sub-wrapper .menu__item {
  text-transform: none;
  color: #0099de;
}

.no-js .menu__sub-wrapper {
  display: none;
  position: relative;
}

.no-js :target .menu__sub-wrapper--l2 {
  display: block;
  -webkit-transform: translateX(0%);
      -ms-transform: translateX(0%);
          transform: translateX(0%);
}

.toolbar {
  display: none;
}

.site-footer {
  background-color: #edf7fd;
  color: #cad8dd;
  padding-top: 55px;
}

.site-footer .wrapper {
  position: relative;
}

.site-footer .l-wrap {
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.site-footer .m-panel {
  padding: 28px 0;
}

.site-footer__container {
  margin-left: 19px;
}

.site-footer__col {
  border-top: 1px solid #939aa6;
  padding: 19px 0;
}

.site-footer__col .heading-5 {
  color: #7dcbe0;
}

.site-footer__map {
  padding: 19px;
}

.site-footer__copyright {
  width: auto;
  padding-left: 19px;
  background-color: #fff;
}

.site-footer__copyright p {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.33333;
  color: #636e7f;
  margin: auto;
  text-align: center;
}

.site-footer__copyright-inner {
  padding: 19px 9px;
  background-color: #edf7fd;
  width: 100%;
}

.site-footer__top {
  position: absolute;
  top: -55px;
  right: 0;
  left: 19px;
  text-align: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 55px;
  background-color: #fff;
  border-top: 1px solid #cad8dd;
}

.to-top {
  display: block;
  margin: auto;
}

.to-top:before, .to-top:after {
  font-family: "icon-font";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 1.84615;
  content: "";
  display: block;
  transition: all .3s;
}

.to-top:before {
  color: rgba(202, 216, 221, 0.3);
  margin-bottom: -47px;
}

.to-top:hover:before {
  margin-bottom: -26px;
}

.site-footer__logos {
  padding: 19px;
}

.site-footer__logos__inner {
  border-top: 1px solid #939aa6;
  padding-top: 20px;
  text-align: center;
}

.site-footer__logos__inner p {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.33333;
  margin-bottom: 0;
}

.footer-logos {
  padding: 20px 0;
}

.footer-logos li {
  padding-bottom: 30px;
}

.footer-logos li img {
  height: 74px;
}

.footer-logos li:last-child {
  padding-bottom: 0;
}

@media screen and (min-width: 660px) {
  .footer-logos {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer-logos li {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    margin: 0 10px;
    padding-bottom: 0;
  }
}

.m-panel,
.panel {
  padding: 19px 19px 38px;
}

.m-panel > *:last-child,
.m-panel > *:last-child > *:last-child,
.m-panel > *:last-child > *:last-child > *:last-child,
.panel > *:last-child,
.panel > *:last-child > *:last-child,
.panel > *:last-child > *:last-child > *:last-child {
  margin-bottom: 0;
}

.panel--inset {
  padding-left: 19px;
  margin-top: -38px;
}

.panel--inset .panel {
  background-color: #fff;
}

.l-main .m-panel {
  padding-right: 0;
}

.wrapper--outer .m-panel {
  padding-right: 19px;
}

.m-panel--intro {
  padding-right: 0;
}

.slide {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.slide__item {
  position: absolute;
  width: 100%;
}

.slide__pagination, .hero-slide__pagination,
.news-slide__pagination,
.products-slide__pagination {
  padding: 0 28px 19px;
  margin: 0 0 0 19px;
}

.slide__pagination .nav, .hero-slide__pagination .nav,
.news-slide__pagination .nav,
.products-slide__pagination .nav {
  display: inline-block;
  margin-left: 9px;
}

.slide__pagination li, .hero-slide__pagination li,
.news-slide__pagination li,
.products-slide__pagination li {
  margin-right: 9px;
  cursor: pointer;
  display: inline-block;
}

.slide__pagination__item {
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background-color: #cad8dd;
}

.slide__pagination__item.is-active, .slide__pagination__item:hover {
  background-color: #f1902d;
}

.slide__pager {
  color: #cad8dd;
  top: -2px;
  position: relative;
}

.slide__pager:before {
  font-family: "icon-font";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 12px;
  font-size: 0.75rem;
  vertical-align: middle;
  display: inline-block;
  color: inherit;
}

.slide__pager--prev:before {
  content: "";
}

.slide__pager--next:before {
  content: "";
}

.hero-slide__pagination,
.news-slide__pagination,
.products-slide__pagination {
  z-index: 1;
  margin: 0 0 0 -6px;
  padding: 0;
}

.hero-slide__pagination .nav,
.news-slide__pagination .nav,
.products-slide__pagination .nav {
  margin: 0;
}

.hero-slide__pagination .slide__pager,
.news-slide__pagination .slide__pager,
.products-slide__pagination .slide__pager {
  position: relative;
  top: -4px;
  margin: 0 6px;
}

.hero-slide__pagination .slide__pager:before,
.news-slide__pagination .slide__pager:before,
.products-slide__pagination .slide__pager:before {
  font-size: 18px;
  font-size: 1.125rem;
}

.hero-slide__pagination .slide__pagination__item,
.news-slide__pagination .slide__pagination__item,
.products-slide__pagination .slide__pagination__item {
  height: 16px;
  width: 16px;
  margin: 16px 6px 0;
}

.hero--home {
  position: relative;
}

.hero--home img {
  display: block;
  height: auto;
}

.hero {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero__wrap {
  z-index: 1;
  margin-left: 19px;
  position: absolute;
  top: 50%;
  z-index: 101;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  max-width: 610px;
  margin-left: 0;
}

.hero .slide {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  margin: 0;
  padding: 0;
}

.hero .slide__item {
  max-height: 550px;
  overflow: hidden;
}

.hero__title {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.16667;
  font-family: 'aflexbold';
  background-color: rgba(52, 73, 93, 0.8);
  color: #fff;
  text-transform: uppercase;
  padding: 9px 19px;
}

.hero__title span {
  font-family: 'aflexregular';
}

.hero svg {
  max-width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.hero--map:before {
  content: ' ';
  padding-top: 49.37722%;
  display: inline-block;
}

.hero--map--ie {
  display: none;
  padding: 0 !important;
}

.hero--map--ie img {
  width: 100%;
  display: block;
}

.hero--bg {
  max-height: 550px;
}

.hero--bg:before {
  padding-bottom: 45.83333%;
  content: " ";
  display: inline-block;
}

.hero--slim-bg {
  max-height: 320px;
}

.hero--slim-bg:before {
  padding-bottom: 26.66667%;
  content: " ";
  display: inline-block;
}

.hero--map {
  background-color: rgba(0, 153, 222, 0.15);
  display: none;
}

.hero--map text {
  text-transform: uppercase;
  font-family: 'aflexbold';
}

.hero--map svg > g {
  cursor: pointer;
}

.hero--map .active-region path {
  transition: all 0.5s;
  fill: #ffffff;
  stroke-width: 1px;
  stroke: rgba(0, 0, 0, 0.5);
}

.hero__title {
  font-family: 'aflexregular';
  margin: 0;
}

.hero__title strong {
  font-family: 'aflexbold';
}

.continent path {
  transition: all, 0.2s, ease;
}

#australasia:hover path {
  fill: #db7710;
}

#india:hover path {
  fill: #e84733;
}

#asia:hover path {
  fill: #4e5663;
}

#euroasia:hover path {
  fill: #54bbd6;
}

#middleEast:hover path {
  fill: #2f4575;
}

#africa:hover path {
  fill: #1877a8;
}

#uk:hover path {
  fill: #db7710;
}

#southAmerica:hover path {
  fill: #e84733;
}

#northAmerica:hover path {
  fill: #30908c;
}

.form--signup .input {
  margin-bottom: 9px;
}

.form--signup .form__input {
  font-size: 14px;
  font-size: 0.875rem;
  background: none;
  border-color: #939aa6;
  padding: 9px;
  color: #cad8dd;
}

.form--signup .btn--box {
  color: #7dcbe0;
}

.form-contact__inner {
  background-color: #e7f5fc;
}

.form--contact {
  width: 100%;
  margin-top: 5px;
  padding: 19px 19px 0;
}

.form--contact .l-wrap {
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.form--contact .heading-3 {
  margin: 0 0 19px 19px;
}

.table--region .form--contact .heading-3 {
  display: none;
}

.form--contact .form__label {
  display: none;
}

.form--contact .form__textarea, .form--contact .form__input {
  padding-top: 10px;
  padding-bottom: 10px;
}

.form--contact .fieldset {
  padding: 19px 19px 0 0;
}

.form--contact .btn--box {
  background-color: #fff;
  border: 1px solid #cad8dd;
}

.form--contact .btn--box:after {
  border-left-color: #cad8dd;
}

.form--contact .btn--box:hover, .form--contact .btn--box:focus {
  background-color: #0099de;
  color: #fff;
  border-color: #fff;
}

.form--contact .btn--box:hover:after, .form--contact .btn--box:focus:after {
  border-color: #fff;
}

.form--contact .form__textarea {
  height: 100px;
}

.table .form--contact {
  margin: 0;
}

.table .form--contact .l-wrap {
  margin-bottom: 0;
}

.form__success {
  color: #636e7f;
  padding: 19px;
}

.form__errors {
  color: #eb6f5e;
  padding: 19px;
}

.breadcrumb {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  border-bottom: 1px solid #cad8dd;
  padding: 9px 19px;
  margin-bottom: 19px;
  white-space: nowrap;
  overflow: hidden;
}

.breadcrumb--news {
  margin-bottom: 28px;
}

.breadcrumb li {
  margin-right: 4px;
}

.breadcrumb li:hover,
.breadcrumb li:hover a:after {
  color: #0099de;
}

.breadcrumb li span,
.breadcrumb li a {
  display: block;
  padding-right: 4px;
}

.breadcrumb li span:after,
.breadcrumb li a:after {
  font-family: "icon-font";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2;
  display: inline-block;
  vertical-align: middle;
  content: "";
  margin-left: 14px;
  color: #cad8dd;
}

.breadcrumb li span {
  color: #99a2af;
}

.breadcrumb li:last-child {
  color: #0099de;
}

.breadcrumb li:last-child a:after {
  display: none;
}

.pagination {
  max-width: 350px;
  width: 100%;
  margin: 0 auto 38px;
  padding: 0 9px;
}

.pagination__btn {
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  color: #0099de;
  text-transform: uppercase;
  border-bottom: 1px solid;
  display: block;
  text-align: center;
  padding-bottom: 4px;
  position: relative;
}

.pagination__btn:after {
  font-family: "icon-font";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 0;
  bottom: -29px;
  left: 0;
  font-size: 14px;
  font-size: 0.875rem;
  content: "";
  display: block;
  color: inherit;
}

.paginate-wrapper {
  padding-left: 38px;
}

.paginate-wrapper .paginate:first-child {
  margin-left: 0;
}

.paginate-wrapper--post {
  padding-left: 0;
}

.social > li {
  display: inline-block;
}

.social__item {
  margin-right: 19px;
  display: block;
}

.social__item:before {
  font-family: "icon-font";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 20px;
  font-size: 1.25rem;
  display: block;
}

.social__item--facebook:before {
  content: "";
}

.social__item--twitter:before {
  content: "";
}

.social__item--youtube:before {
  content: "";
}

.social__item--instagram:before {
  content: "";
}

.social__item--email:before {
  content: "";
}

.social__item--linkedin:before {
  content: "";
}

.tags {
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  text-transform: uppercase;
  padding: 19px;
}

.tags li {
  margin-right: 5px;
}

.tags__item {
  border: 1px solid;
  display: inline-block;
  margin-bottom: 9px;
  transition: color .2s, background .2s;
}

.tags__item > a {
  padding: 1px 7px;
  display: block;
  transition: background .2s;
}

.tags__item > a:hover {
  background: #f6fbfe;
}

.tags__item.active {
  border-color: #34495d;
}

.tags__item.active > a {
  color: #f6fbfe;
  background: #34495d;
}

.tags__item > span {
  padding: 0 5px;
  display: block;
}

.tags__item--uk {
  color: #f1902d;
}

.tags__item--india {
  color: #eb6f5e;
}

.tags__item--australasia {
  color: #2bbfb8;
}

.tags__item--africa {
  color: #7dcbe0;
}

.tags__item--northAmerica {
  color: #0099de;
}

.tags__item--southAmerica {
  color: #34495d;
}

.tags__item--middleEast {
  color: #293a4b;
}

.tags__item--asia {
  color: #646f80;
}

.tags__item--euroasia {
  color: #f1902d;
}

.tags__heading {
  border: 0;
  display: inline-block;
}

.post {
  position: relative;
  padding-top: 190px;
}

.post li a {
  color: #0099de;
}

.post__intro {
  position: relative;
  z-index: 1;
  background-color: #fff;
  margin: 0 0 38px 19px;
  padding: 19px;
}

.post__category {
  position: absolute;
  bottom: 100%;
  left: 0;
  font-family: 'aflexbold';
  text-transform: uppercase;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429;
  display: inline-block;
  padding: 0 7px;
}

.post__video {
  max-width: 100%;
  padding: 19px;
  background: #e8f5fb;
  position: relative;
}

.post__video img {
  margin: 0;
  display: block;
}

.post__video > a {
  width: 100%;
  position: relative;
  display: block;
  opacity: 0.8;
}

.post__video > a:before {
  font-family: "icon-font";
  content: "";
  font-size: 77px;
  font-size: 4.8125rem;
  line-height: 1;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -38px 0 0 -54px;
  z-index: 1;
}

.post__video > a:hover {
  opacity: 1;
  transition: opacity .3s;
}

.post__video .video {
  position: absolute;
  top: 19px;
  bottom: 19px;
  left: 19px;
  right: 19px;
}

.post__video .video.active {
  z-index: 2;
}

.post__video iframe {
  width: 100%;
  height: 100%;
}

.wrapper--outer {
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (min-width: 954px) {
  .wrapper--outer {
    display: table;
  }
  .wrapper--outer .u-bg--product {
    height: 390px;
  }
  .wrapper--outer .s-copy p {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.33333;
  }
}

.wrapper--outer .s-copy p {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.44444;
}

.wrapper--outer .b-brand-heading {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.17857;
}

.wrapper--outer:after {
  content: '';
  display: block;
  clear: both;
}

@media screen and (min-width: 954px) {
  .wrapper--split {
    width: 50%;
    display: inline-block;
    display: table-cell;
  }
  .wrapper--split:nth-of-type(even) {
    background: white;
  }
}

@media screen and (min-width: 954px) {
  .fig-wrapper--split {
    width: 125.789473763%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .fig-wrapper--split figure {
    width: 47.5%;
    display: inline-block;
    margin-right: 2.5%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.product-wrapper {
  /*padding-bottom: 30px;*/
}

.product-wrapper h2 {
  font-size: 21px;
  font-size: 1.3125rem;
  line-height: 1.14286;
  text-transform: uppercase;
  padding: 9px 19px;
  display: inline-block;
}

.product-wrapper p {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.53333;
}

.product-wrapper:last-of-type:after {
  content: '';
  display: block;
  padding-bottom: 60px;
  border-bottom: 1px solid #CAD8DD;
  margin-right: 40px;
}

.product-list .u-bg {
  position: relative;
}

.product-list .l-main {
  margin-bottom: 0;
  padding-top: 0;
  position: relative;
}

.product-list .b-brand-heading {
  position: absolute;
  bottom: 100%;
  left: 0px;
  padding: 9px 19px;
}

.product-list .s-copy {
  padding-top: 19px;
}

.product__solar {
  position: absolute;
  top: 19px;
  right: 19px;
  width: 120px;
  height: 120px;
  border-radius: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  text-align: center;
  padding: 19px;
  display: none;
}

.product__solar span {
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.28571;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
              -ms-grid-row-align: center;
          align-self: center;
  display: block;
  color: #636e7f;
  text-transform: uppercase;
  margin: 0 0 0 -7px;
}

.product__fact .heading-4 {
  margin-bottom: 0;
}

.product__download {
  border-top: 1px solid #cad8dd;
}

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

.product__download > a {
  float: left;
  clear: left;
}

.product-page {
  position: relative;
}

.product-download-wrapper {
  margin-top: 19px;
}

.product-download-wrapper .btn--download {
  vertical-align: top;
  margin-right: 15px;
}

.btn-wrapper {
  position: relative;
  display: inline-block;
}

.btn-parent {
  display: inline-block;
  margin: 0 0 19px;
}

.btn-parent:hover + .btn-list, .btn-parent:focus + .btn-list {
  display: block;
}

.btn-list {
  border: 1px solid #cad8dd;
  border-top: 0;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  position: absolute;
  top: 42px;
  left: 0px;
  right: 0px;
  display: none;
  background-color: #fff;
  z-index: 1;
}

.btn-list.right-spacing {
  right: 15px;
}

.btn-list:hover {
  display: block;
}

.btn-list li {
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block;
}

.btn-child {
  display: block;
  padding: 9px;
  color: #0099de;
  text-transform: capitalize;
  cursor: pointer;
}

.btn-child:hover {
  text-decoration: underline;
}

.product-download-aside + .text {
  overflow: hidden;
}

.product-download-aside .btn-wrapper {
  width: 100%;
}

.product-download-aside .btn--box {
  display: block;
  margin-bottom: 19px;
  width: 100%;
}

.video-wrap {
  margin-bottom: 38px;
}

.video-wrap figure {
  position: relative;
}

.video-wrap figure img {
  width: auto;
}

.video-wrap .video {
  position: absolute;
  background-color: #fff;
  top: 0;
  width: 100%;
  left: 0;
}

.video-wrap .show-vid {
  display: inline-block;
  position: relative;
}

.video-wrap .show-vid:before {
  background-image: url(../images/png-sprite.png);
  background-position: -246px -285px;
  width: 65px;
  height: 65px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  content: " ";
}

.video-wrap .show-vid:focus {
  outline: 0;
}

.product-download-aside--cat {
  float: none;
  padding: 0 19px;
  max-width: 300px;
}

.sidebar-nav {
  position: relative;
  margin-top: 76px;
  margin-bottom: 38px;
  display: none;
}

.sidebar-nav a:focus {
  outline: 0;
}

.menu .sidebar-nav {
  display: block;
  border-bottom: 1px solid #0099de;
}

.sidebar-nav__wrapper {
  transition: all .3s;
  position: relative;
}

.sidebar-nav__level1 {
  background: #fff;
}

.sidebar-nav__level1 > li {
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 1.23529;
}

.sidebar-nav__level1 > li a {
  padding: 16px 25px 16px 16px;
  border-bottom: 1px solid #cad8dd;
  display: block;
  transition: color .2s ease-in-out;
}

.sidebar-nav__level1 > li.active > a, .sidebar-nav__level1 > li:hover > a {
  color: #0099de;
}

.sidebar-nav__level2 {
  display: none;
  top: -1px;
  background: #f5fbfe;
  box-shadow: -3px 0 0 rgba(0, 153, 222, 0);
  border-bottom: 1px solid #0099de;
  border-bottom: 1px solid #cad8dd;
  position: relative;
  padding: 9px 0;
}

.collapse > .sidebar-nav__level2, .active > .sidebar-nav__level2 {
  display: block;
}

.sidebar-nav__level2 > li {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.4;
}

.sidebar-nav__level2 > li a {
  border-bottom: none;
  padding: 7.5px 9px 7.5px 24px;
  color: #706f6f;
}

.sidebar-nav__level2 > li:last-of-type a {
  border-bottom: none;
}

.sidebar-nav__level2 > li.active > a, .sidebar-nav__level2 > li:hover > a {
  color: #0099de;
}

.sidebar-nav__level3 > li.collapse > a, .sidebar-nav__level3 > li.active > a, .sidebar-nav__level3 > li:hover > a {
  color: #0099de;
}

.collapse-toggle {
  position: relative;
}

.collapse-toggle:after {
  position: absolute;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1;
  content: '+';
  right: 9px;
  top: 50%;
  -moz-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
}

.collapse-toggle.collapse-toggle--flash:after {
  content: '–';
}

.collapse-toggle + .nav--stacked {
  overflow: hidden;
  max-height: 0;
  padding: 0;
  transition: all 1000ms cubic-bezier(0, 1.05, 0, 1);
}

.collapse-toggle + .nav--stacked.reveal {
  max-height: 999px;
  box-shadow: -3px 0 0 #0099de;
}

.collapse.active > .reveal {
  max-height: 999px;
  box-shadow: -3px 0 0 #0099de;
}

.sidebar-nav__level1 .active > .reveal {
  max-height: 999px;
  box-shadow: -3px 0 0 #0099de;
}

.sidebar-nav__level3 {
  background: #fff;
}

.sidebar-nav__level3 a:before {
  content: "– ";
  position: relative;
}

.sidebar-nav__parent {
  position: relative;
  display: block;
  padding: 0 19px;
  z-index: 1;
}

.sidebar-nav__parent:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: -1px;
  left: 0;
  content: " ";
  border-bottom: 1px solid #cad8dd;
  transition: all .3s;
  z-index: -1;
}

.sidebar-nav__parent:hover {
  color: #0099de;
}

.sidebar-nav__parent:hover:before {
  background-color: rgba(0, 153, 222, 0.04);
}

.sidebar-nav__parent a {
  padding: 19px 0;
  display: inline-block;
}

.is-current .sidebar-nav__parent {
  color: #0099de;
  background-color: rgba(0, 153, 222, 0.04);
  border-bottom-color: transparent;
}

.is-current .sidebar-nav__parent:before {
  border-bottom: 0;
}

.is-current .button--level1 {
  display: none;
}

.sidebar-nav__child {
  position: relative;
  display: block;
}

.sidebar-nav__child a {
  padding: 9px 19px;
  display: block;
}

.sidebar-nav__child.is-active .button--trigger {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

.button--trigger {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 58px;
  height: 100%;
  margin: auto;
  transition: -webkit-transform .3s ease-in-out;
  transition: transform .3s ease-in-out;
  transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
}

.button--trigger:before {
  font-family: "icon-font";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 14px;
  font-size: 0.875rem;
  content: "";
  color: #0099de;
  display: block;
}

.level2 .button--trigger:before {
  font-size: 7px;
  font-size: 0.4375rem;
}

.button--trigger.button--level1 {
  border-left: 1px solid #cad8dd;
}

.button--trigger.button--level1:before {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 4;
  background: #fff;
}

.sidebar-nav__wrapper-level2 {
  padding: 0;
  width: 100%;
  background-color: #f5fbfe;
}

.sidebar-nav__wrapper-level2 h5 {
  color: #0099de;
  position: relative;
}

.level1 {
  transition: all .3s;
  width: 100%;
}

.button--rev {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  color: #0099de;
  opacity: 0;
  width: 58px;
  z-index: 5;
  transition: all .3s;
}

.button--rev:before {
  font-family: "icon-font";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  font-size: 1rem;
  line-height: 3.75;
  content: "" "";
}

.button--rev.is-active {
  opacity: 1;
}

.is-expanded > span {
  color: #0099de;
}

.is-expanded > span .button--trigger:before {
  content: "";
}

.sidebar-nav__top {
  background-color: #fff;
  color: #0099de;
  border-bottom: 3px solid #0099de;
  padding: 19px;
  height: 60px;
  position: relative;
  margin-top: 16px;
}

.sidebar-nav__heading {
  transition: opacity .3s;
  margin: 0;
}

.sidebar-nav__bottom {
  background-color: #cad8dd;
  color: #fff;
  padding: 19px 28px;
}

.sidebar-nav__bottom .social__item {
  margin: 0;
}

.sidebar-nav__bottom .social {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.no-flexbox .sidebar-nav__bottom .social {
  text-align: justify;
  line-height: 0;
  font-size: 0;
}

.no-flexbox .sidebar-nav__bottom .social:after {
  display: inline-block;
  width: 100%;
  content: " ";
}

.region .l-wrap {
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 19px;
}

.region + .contact-wrap {
  padding-bottom: 38px;
}

.region .tags__item {
  padding: 4px;
}

.region__address {
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 1.41176;
  font-style: normal;
  margin-bottom: 19px;
}

.table--region .form--contact {
  padding-left: 19px;
}

.table--region tr {
  border-bottom: 1px solid #fff;
  padding-bottom: 19px;
  display: block;
  transition: all .3s;
}

.table--region tr:hover,
.table--region tr:hover .button--email {
  color: #0099de;
}

.table--region tr:nth-child(odd) {
  background: #f1f3f4;
}

.table--region tr:last-child {
  border: 0;
  padding: 0;
}

.table--region tr.is-current {
  background: #e7f5fc !important;
  border-bottom: 0;
  padding-bottom: 0px;
  padding-top: 19px;
}

.table--region tr.is-current .button--email:before {
  content: "";
  color: #0099de;
}

.table--region thead {
  display: none;
}

.table--region th, .table--region td {
  padding: 9px 19px 9px;
  text-align: left;
  display: block;
}

.table--region th {
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 1.41176;
  font-weight: 500;
}

.table--region .table--region__last {
  text-align: left;
  padding-right: 9px;
}

.dropdown {
  width: 172px;
  display: inline-block;
  margin-left: 38px;
  position: relative;
}

.dropdown__label {
  border: 1px solid #cad8dd;
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 2.23529;
  font-weight: 500;
  height: 38px;
  width: 100%;
  display: block;
  position: relative;
  padding-left: 40px;
  text-align: left;
  color: #0099de;
}

.dropdown__label:before, .dropdown__label:after {
  font-family: "icon-font";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.dropdown__label:hover + .dropdown__list {
  display: block;
}

.dropdown__label:before {
  position: absolute;
  top: 0;
  left: 10px;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.9;
  content: "";
}

.dropdown__label:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 3.8;
  text-align: center;
  content: "";
  width: 40px;
  height: 100%;
  border-left: 1px solid #cad8dd;
  vertical-align: middle;
}

.dropdown__list {
  position: absolute;
  top: 37px;
  right: 0;
  left: 0;
  display: none;
  background: #fff;
  border: 1px solid #cad8dd;
  z-index: 10;
}

.dropdown__list .nav > li a {
  padding: 4px 8px;
  display: block;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

.dropdown__list:hover {
  display: block;
}

.dropdown__list .nav {
  padding: 4px 0;
}

.dropdown__list .nav > li {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
}

.dropdown__list .nav > li a {
  color: #636e7f;
  padding: 9px;
}

.dropdown--contact {
  max-width: 300px;
  width: 100%;
  display: block;
  margin-left: 19px;
  padding-top: 19px;
  padding-right: 19px;
}

.dropdown--contact:hover .dropdown__list {
  top: 56px;
}

.dropdown--contact .dropdown__list:hover {
  top: 56px;
}

.js .dropdown--contact {
  display: none;
}

.touch .dropdown--contact {
  display: block;
}

.contact-head {
  border-bottom: 1px solid #cad8dd;
  padding-bottom: 19px;
}

.dropdown--contact .nav > li a {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429;
}

.c-carousel {
  text-align: center;
}

@media only screen and (min-width: 480px) {
  .c-carousel {
    background-color: #edf7fd;
    padding: 38px;
  }
}

@media only screen and (min-width: 954px) {
  .c-carousel {
    margin-right: 38px;
  }
}

.c-carousel__content-wrap {
  display: inline-block;
  max-width: 30rem;
  margin-left: auto;
  margin-right: auto;
}

.btn--box--carousel {
  margin-top: 38px;
}

.c-carousel .l-box--list {
  width: 100%;
}

.c-carousel .l-box--list .post {
  margin-right: 0;
}

.products-slide__pagination {
  margin-top: 66px;
}

@media only screen and (min-width: 768px) {
  .products-slide__pagination {
    margin-top: 38px;
  }
}

@media only screen and (min-width: 954px) {
  .products-slide__pagination {
    margin-top: 19px;
  }
}

.c-carousel .product-wrapper:last-of-type:after {
  content: '';
  display: block;
  padding-bottom: 0px;
  border-bottom: 0;
  margin-right: 0px;
}

.t-about-bg {
  background-color: #0099de;
  color: #fff;
}

.t-about-text {
  color: #0099de;
}

.t-technical-bg {
  background-color: #f7ce3c;
  color: #fff;
}

.t-technical-text {
  color: #f7ce3c;
}

.t-products-markets-bg {
  background-color: #eb6f5e;
  color: #fff;
}

.t-products-markets-text {
  color: #eb6f5e;
}

.t-biotech-bg {
  background-color: #909090;
  color: #fff;
}

.t-biotech-text {
  color: #909090;
}

.t-chemical-bg {
  background-color: #7dcbe0;
  color: #fff;
}

.t-chemical-text {
  color: #7dcbe0;
}

.t-food-bg {
  background-color: #34495d;
  color: #fff;
}

.t-food-text {
  color: #34495d;
}

.t-automotive-bg {
  background-color: #2bbfb8;
  color: #fff;
}

.t-automotive-text {
  color: #2bbfb8;
}

.t-pharmaceutical-bg {
  background-color: #646f80;
  color: #fff;
}

.t-pharmaceutical-text {
  color: #646f80;
}

.t-bioflex-ultra-bg {
  background-color: #0099de;
  color: #fff;
}

.t-bioflex-ultra-text {
  color: #0099de;
}

.t-bioflex-ultra-solar {
  box-shadow: -6px 6px 0 5px #0099de;
}

h1.b-brand-heading.t-bioflex-ultra-text {
  color: #0099de;
}

.t-pharmaline-n-x-bg {
  background-color: #7dcbe0;
  color: #fff;
}

.t-pharmaline-n-x-text {
  color: #7dcbe0;
}

.t-pharmaline-n-x-solar {
  box-shadow: -6px 6px 0 5px #7dcbe0;
}

h1.b-brand-heading.t-pharmaline-n-x-text {
  color: #7dcbe0;
}

.t-corroflon-bg {
  background-color: #f7ce3c;
  color: #fff;
}

.t-corroflon-text {
  color: #f7ce3c;
}

.t-corroflon-solar {
  box-shadow: -6px 6px 0 5px #f7ce3c;
}

h1.b-brand-heading.t-corroflon-text {
  color: #f7ce3c;
}

.t-corroline-bg {
  background-color: #293a4b;
  color: #fff;
}

.t-corroline-text {
  color: #293a4b;
}

.t-corroline-solar {
  box-shadow: -6px 6px 0 5px #293a4b;
}

h1.b-brand-heading.t-corroline-text {
  color: #293a4b;
}

.t-smoothbore-bg {
  background-color: #646f80;
  color: #fff;
}

.t-smoothbore-text {
  color: #646f80;
}

.t-smoothbore-solar {
  box-shadow: -6px 6px 0 5px #646f80;
}

h1.b-brand-heading.t-smoothbore-text {
  color: #646f80;
}

.t-hyperline-fx-bg {
  background-color: #eb6f5e;
  color: #fff;
}

.t-hyperline-fx-text {
  color: #eb6f5e;
}

.t-hyperline-fx-solar {
  box-shadow: -6px 6px 0 5px #eb6f5e;
}

h1.b-brand-heading.t-hyperline-fx-text {
  color: #eb6f5e;
}

.t-visiflon-bg {
  background-color: #2bbfb8;
  color: #fff;
}

.t-visiflon-text {
  color: #2bbfb8;
}

.t-visiflon-solar {
  box-shadow: -6px 6px 0 5px #2bbfb8;
}

h1.b-brand-heading.t-visiflon-text {
  color: #2bbfb8;
}

p.t-corroflon-text {
  color: #A58C36;
}

.u-bg-white {
  background-color: #fff;
}

.u-bg-dark {
  background-color: #34495d;
}

.u-bg-light {
  background-color: #edf7fd;
}

.u-bg-none {
  background: none;
}

.u-bg--block {
  max-height: 280px;
}

.u-bg--block:before {
  padding-bottom: 98.59155%;
  content: " ";
  display: inline-block;
}

.u-bg--news {
  max-height: 280px;
  position: absolute;
  top: 0;
  width: 100%;
}

.u-bg--news:before {
  padding-bottom: 89.08046%;
  content: " ";
  display: inline-block;
}

.u-bg--news.u-bg {
  background-position: 0 0;
}

.u-bg--product {
  max-height: 320px;
  min-height: 240px;
}

.u-bg--product:before {
  padding-bottom: 26.66667%;
  content: " ";
  display: inline-block;
}

.u-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
}

.u-rel {
  position: relative;
}

.hidden {
  display: none !important;
}

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

.top-bar {
  display: none;
}

.product-download-aside--cat {
  float: none;
}

.s-post h1 {
  font-size: 42px;
  font-size: 2.625rem;
  line-height: 1.09524;
}

.site-footer__top {
  top: -80px;
  height: 80px;
}

.site-footer {
  padding-top: 80px;
}

.site-footer__copyright {
  background-color: #edf7fd;
}

.top-bar {
  right: 42px;
  position: absolute;
  padding-right: 210px;
}

.top-bar .nav > li {
  display: inline-block;
}

.top-bar .nav > li a[href^=tel] {
  color: #636e7f;
}

.top-bar .nav > li:first-child {
  margin-left: 0;
}

.site-footer__map {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.l-box--block {
  -webkit-flex: 1 0 50%;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
}

.l-box--block:first-child {
  -webkit-flex: 1 0 100%;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
}

.l-box--main {
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.l-box--main.s-copy {
  padding-right: 19px;
}

.l-box--list {
  width: 50%;
}

.m-panel,
.panel {
  padding: 19px;
}

.site-footer__col {
  border-top: 1px solid #939aa6;
  width: 30%;
  padding: 19px 0;
}

.site-footer__col .heading-5 {
  color: #7dcbe0;
}

.form--info {
  padding: 38px;
}

.form--info .fieldset {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.form--info .form__col {
  width: 45%;
  -webkit-flex: 0 0 45%;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
}

.form--info .form__heading {
  max-width: 60%;
}

.form--contact .fieldset {
  width: 50%;
  padding: 19px;
}

.form--contact .fieldset + fieldset {
  padding-top: 19px;
}

.toolbar {
  position: absolute;
  top: 19px;
  right: 19px;
  display: block;
}

.toolbar .details--top {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.33333;
}

.toolbar .details--top,
.toolbar .details--top dt, .toolbar .details--top dd {
  display: inline-block;
  margin: 0;
}

.toolbar .details--top dd {
  margin-right: 19px;
}

.toolbar .details__email {
  color: #0099de;
}

.hero__wrap {
  display: block;
}

.hero__title {
  font-size: 44px;
  font-size: 2.75rem;
  line-height: 1.09091;
}

.hero__title p {
  font-family: 'aflexregular';
}

.hero__title p strong {
  font-family: 'aflexbold';
}

.breadcrumb {
  display: block;
}

.product-wrapper {
  padding-top: 0;
  padding-bottom: 38px;
}

.product-list .b-brand-heading {
  position: absolute;
  bottom: 100%;
  left: 38px;
  padding: 9px 19px;
}

.product-list .s-copy {
  padding-top: 38px;
}

.product-list .l-main {
  padding-right: 0;
}

.l-box--main {
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.product-list .l-box--side {
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.product-list .l-main {
  padding-right: 0;
}

.product__download {
  border-top: none;
  margin-top: 0;
  padding: 38px;
  background-color: #f5fbfe;
}

.product__solar {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.post__flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.post__flex > * {
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.post__flex > * + * {
  margin-left: 20px;
}

.no-flexbox .post__flex {
  display: block;
  font-size: 0;
}

.no-flexbox .post__flex > * {
  display: inline-block;
  width: 50%;
}

.figure-wrap {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-left: -19px;
}

.figure-single {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex: 1 0 50%;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
  padding-left: 19px;
}

.table--region tr {
  margin-bottom: 0;
  display: table-row;
}

.table--region tr td, .table--region tr th {
  display: table-cell;
}

.table--region tr td:first-child, .table--region tr th:first-child {
  padding: 0 0 0 19px;
}

.table--region tr.form--contact__new fieldset {
  padding: 0;
}

.table--region tr.form--contact__new td:first-child {
  padding: 0;
}

.table--region thead {
  display: table-header-group;
}

.table--region thead tr {
  background: #fff !important;
}

.table--region tr:nth-child(even) {
  background-color: #fff;
}

.region .m-panel {
  padding-right: 38px;
  padding-bottom: 0;
}

.contact-wrap {
  padding: 0px 38px;
}

.button--email {
  font-size: 0;
}

.form--contact {
  padding-left: 0;
  padding-bottom: 0;
}

.form--contact .form__textarea, .form--contact .form__input {
  padding-top: 14px;
  padding-bottom: 14px;
}

.form--contact .form__textarea {
  height: 296px;
}

.form--contact .form__label {
  display: block;
}

.form--contact ::-webkit-input-placeholder {
  visibility: hidden;
}

.form--contact :-moz-placeholder {
  /* Firefox 18- */
  visibility: hidden;
}

.form--contact ::-moz-placeholder {
  /* Firefox 19+ */
  visibility: hidden;
}

.form--contact :-ms-input-placeholder {
  visibility: hidden;
}

.table--region .form--contact {
  padding: 0;
}

.table--region .form--contact fieldset {
  padding: 19px !important;
}

.hero--map {
  display: block;
}

.js .dropdown--contact {
  display: none;
}

.product-download-aside {
  float: right;
  margin: 0 0 19px 19px;
}

.product-download-aside--cat.product-download-aside--cat {
  float: none;
  padding: 38px 38px 0 0;
}

.questionHeading {
  width: 50%;
  float: left;
}

html, body {
  height: 100%;
}

.site {
  min-height: 100%;
}

.site__wrap {
  overflow: hidden;
  padding-bottom: 320px;
}

.site-footer {
  position: relative;
  margin-top: -320px;
  height: 320px;
}

.site {
  padding-top: 0;
  background: none;
}

.site-footer__map {
  padding: 38px;
}

body {
  padding-top: 0;
  background-color: #edf7fd;
}

h1, .heading-1 {
  font-weight: 400;
  font-size: 39.81312px;
  font-size: 2.48832rem;
  line-height: 1.20563;
  margin: 0 0 19px;
}

h2, .heading-2 {
  font-weight: 400;
  font-size: 39.81312px;
  font-size: 2.48832rem;
  line-height: 1.20563;
  margin: 0 0 19px;
}

h3, .heading-3 {
  font-weight: 400;
  font-size: 23.04px;
  font-size: 1.44rem;
  line-height: 1.12847;
  margin: 0 0 14px;
}

h4, .heading-4 {
  font-weight: 500;
  font-size: 19.2px;
  font-size: 1.2rem;
  line-height: 1.25;
  margin: 0 0 19px;
}

h5, .heading-5 {
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 0 19px;
}

h6, .heading-6 {
  font-weight: 500;
  font-size: 13.33333px;
  font-size: 0.83333rem;
  line-height: 1.8;
  margin: 0 0 19px;
}

.s-lead {
  padding: 38px;
}

.s-copy .b-sizes {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.18182;
  color: #34495d;
}

.s-post {
  padding: 38px 38px 152px 38px;
}

.s-post > p:first-of-type {
  color: #34495d;
}

.s-post p, .s-post li {
  max-width: 79.4979079%;
}

.s-post h1 {
  font-size: 42px;
  font-size: 2.625rem;
  line-height: 1.09524;
}

.s-post h2 {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1;
}

.s-post h3 {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.wrapper .l-main:last-child {
  padding-bottom: 38px;
}

.l-wrap {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.site-header {
  position: relative;
  border-bottom: 0;
  height: 160px;
}

.site-header .wrapper {
  position: relative;
  background-color: #fff;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.site-header .wrapper:before {
  position: absolute;
  top: 0;
  right: 100%;
  bottom: 0;
  width: 100%;
  display: block;
  content: " ";
  background-color: #fff;
}

.site-header .l-box--main {
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.site-header__top {
  text-align: left;
  display: block;
  background: none;
  position: static;
}

.site-header__top:after {
  display: none;
}

.site-header__wrapper {
  width: 100%;
  height: 100%;
  max-width: 1200px;
  margin: auto;
  position: relative;
  background: #fff;
}

.site-header__wrapper:before {
  position: absolute;
  width: 100%;
  right: 100%;
  top: 0;
  bottom: -1px;
  background-color: #fff;
  content: " ";
  border-bottom: 1px solid #cad8dd;
}

.site__wrap > .wrapper {
  padding: 0;
}

.menu__wrapper {
  width: 79.58333%;
  margin-left: 20.41667%;
  padding-left: 29px;
  display: block;
  position: relative;
  background-color: #fff;
}

.menu__sub-wrapper--l3 {
  display: none;
}

.menu__sub-wrapper .nav {
  overflow: auto;
  width: 100%;
}

.menu__sub-wrapper--l2 {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  left: 0;
  right: 0;
  text-align: left;
  top: 0;
  background-color: #f5fbfe;
  z-index: -1;
  width: auto;
  white-space: nowrap;
  padding: 19px 30px 0;
}

.menu__sub-wrapper--l2 .menu__item {
  font-size: 16px;
  font-size: 1rem;
  color: #706f6f;
  margin: 0 9px;
  font-weight: normal;
}

.menu__sub-wrapper--l2 .menu__item:hover {
  color: #0099de;
}

.menu__item--parent {
  color: #706f6f;
}

.menu__item--parent:hover {
  background-color: #f5fbfe;
  color: #0099de;
}

.menu__item--parent:hover .menu__sub-wrapper--l2 {
  -webkit-transform: translateX(0) translateY(100%);
      -ms-transform: translateX(0) translateY(100%);
          transform: translateX(0) translateY(100%);
}

.menu__trigger,
.menu__ctrl {
  display: none !important;
}

.menu__item {
  border-bottom: 0;
  vertical-align: bottom;
}

.menu__item b,
.menu__item a:not(.menu__trigger) {
  height: auto;
}

.menu__item--parent b,
.menu__item--parent a:not(.menu__trigger) {
  margin: 0;
  height: auto;
}

.menu__link:after,
.menu__item a:not(.menu__trigger):before {
  display: none;
}

.menu__item:first-child {
  border: 0;
}

.menu__item b > span,
.menu__item a:not(.menu__trigger) > span {
  font-size: 17px;
  font-size: 1.0625rem;
  padding-left: 0;
}

.is-current .menu__link:after,
.menu__link:after {
  top: auto;
  position: absolute;
  right: 5px;
  bottom: 24px;
  left: 5px;
  transition: all 0.3s;
  display: block;
  content: " ";
  height: 3px;
  background-color: #0099de;
  opacity: 0;
}

.menu__item.is-current .menu__link:after, .menu__item:hover .menu__link:after {
  opacity: 1;
  -webkit-transform: translateY(9px);
      -ms-transform: translateY(9px);
          transform: translateY(9px);
}

.dropdown {
  display: inline-block;
}

.site-logo {
  background-image: url(../images/png-sprite.png);
  background-position: 0px -285px;
  width: 246px;
  height: 100px;
  margin: 0;
  left: 19px;
  top: 28px;
  z-index: 10001;
}

.product-list .l-box--main {
  -webkit-flex: 4;
      -ms-flex: 4;
          flex: 4;
}

.l-box--main.s-copy {
  padding-right: 38px;
}

.l-box--list {
  width: 33.33333%;
}

.l-box--list .post {
  margin-right: 8.1156535%;
}

.l-box--side {
  width: 20.41667%;
}

.l-main {
  position: relative;
}

.l-wrap {
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.l-wrap--listing {
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.l-box--main {
  width: 79.58333%;
  margin-left: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
}

.l-box-header {
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
}

.l-main--inset {
  margin-top: -19px;
}

.menu {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  top: 22px;
  z-index: 1;
  padding: 0;
  min-height: 0 !important;
  position: relative;
  text-align: left;
  right: 0;
  height: auto;
  overflow: visible;
  border-bottom: 1px solid #cad8dd;
}

.menu__link {
  padding: 25px 9px 25px 9px;
  border-bottom: none;
  height: auto;
  line-height: 1;
}

.menu__item {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  display: inline-block;
  margin-right: 10px;
}

.menu__item.is-current > .menu__link, .menu__item:hover > .menu__link {
  color: #0099de;
}

.menu__item.is-current > .menu__link:after, .menu__item:hover > .menu__link:after {
  opacity: 1;
  -webkit-transform: translateY(9px);
      -ms-transform: translateY(9px);
          transform: translateY(9px);
}

.menu__item:first-child .menu__link {
  border-top: none;
}

.menu__sub-item {
  display: inline-block;
}

.menu__sub-item a {
  padding: 25px 10px;
  display: block;
  color: #636e7f;
}

.menu__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #edf7fd;
  visibility: hidden;
  padding: 0 38px;
  width: 100%;
  color: #636e7f;
  display: block;
  border-top: none;
  border-bottom: none;
}

.menu__item--dropdown > a {
  padding-left: 19px;
  padding-right: 19px;
}

.menu__item--dropdown:hover {
  color: #0099de;
}

.menu__item--dropdown:hover > a {
  background-color: #edf7fd;
}

.menu__item--dropdown:hover > a:after {
  display: none;
}

.menu__item--dropdown:hover .menu__dropdown {
  visibility: visible;
}

.menu__dropdown .sidebar-nav__level1 {
  display: none;
}

.burger {
  display: none;
}

.hero {
  padding: 38px 38px 76px;
}

.hero__wrap {
  margin-left: 10px;
}

.hero__title {
  font-size: 53px;
  font-size: 3.3125rem;
  line-height: 1.18868;
}

.breadcrumb {
  padding-left: 38px;
}

.sidebar-nav {
  display: block;
}

.menu .sidebar-nav {
  display: none;
}

.s-post {
  padding-left: 38px;
}

.product-list .l-box--main {
  width: 74.13793%;
}

.product-list .l-box--side {
  width: 25.86207%;
  -webkit-flex: 0 0 294px;
      -ms-flex: 0 0 294px;
          flex: 0 0 294px;
}

.product-list .l-main {
  padding-right: 0;
}

.product__solar {
  position: absolute;
  top: 38px;
  right: 38px;
  width: 160px;
  height: 160px;
}

.product__solar span {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.05556;
  margin: 13px 0 0 -7px;
}

.form--info {
  margin: 0 38px;
}

.m-panel {
  padding: 38px;
}

.m-panel--intro {
  padding: 0;
}

.btn-parent {
  margin-bottom: 0;
}

.product-download-aside--cat {
  float: right;
}

.paginate-wrapper--list {
  text-align: center;
  padding-left: 0;
}

.paginate-wrapper--list .paginate {
  display: inline-block;
  margin-left: 0;
}

@media screen and (min-width: 1200px) {
  .site-logo {
    left: 0px;
  }
}

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

.sidebar-nav {
  float: left;
}

.l-main {
  float: left;
  width: 100%;
}

.l-wrap--inset .l-box--main {
  float: right;
  width: 79.59%;
}

.menu__link:after {
  display: none;
}

.menu__link.is-current:after {
  display: block;
}

.l-box--list {
  float: left;
}

.site-footer__col {
  float: left;
}

.form fieldset {
  float: left;
}

.ie-contact .l-main {
  width: 100%;
}

.footer-logos li {
  display: inline-block;
  width: 220px;
}

.footer-logos li img {
  height: 75px;
}

.toolbar .dropdown {
  display: none;
}

.hero--home {
  height: 550px;
}

.hero--home h1 {
  background: #34495d;
}

.hero__title {
  background: #34495d;
}

.form--info:after {
  display: none;
}

.menu__item--parent:hover .menu__sub-wrapper {
  top: 100%;
}

.wrapper--split {
  width: 50%;
  display: table-cell;
}

.ie-contact {
  padding-top: 40px !important;
}

.hero--map {
  display: none;
}

.hero--map--ie {
  display: block;
}

.post__intro .heading-3 {
  min-height: 75px;
}

img {
  height: auto;
}

/*# sourceMappingURL=ie.css.map */