/*
______ _     _
| ___ (_)   | |
| |_/ /_  __| | __ _  _____      ____ _ _   _
|    /| |/ _` |/ _` |/ _ \ \ /\ / / _` | | | |
| |\ \| | (_| | (_| |  __/\ V  V / (_| | |_| |
\_| \_|_|\__,_|\__, |\___| \_/\_/ \__,_|\__, | Boilerplate version: 1.3.6
                __/ |                    __/ |
               |___/                    |___/

Author:
Date:

*/
/**
 * Site-wide variables
 */
/**
 * Grid Mixins
 */
/*
  example usage:

   <article class="main__news">
       <div class="main__news__content">
       </div>
       <aside class="main__news__related"></aside>
   </article>

    .main__news {
        @include grid-row;
    }
    .main__news__content {
        @include grid-col( 60% );
    }
    .main__news__related {
        @include grid-col( 40% );
    }

 */
/**
 * Used to remove first column's padding
 * 
 * @param {metric} $grid-gutter - scoped override of global
 */
/**
 * Grid column of $width
 * allows for grid sizes entirely disconnected from markup
 *
 * @param {metric} $width - width of column ( usually percentage )
 * @param {metric} $grid-gutter - scoped override of global
 */
/**
 * High resolution device media query
 * http://davidtheclark.github.io/scut/#hd_breakpoint
 */
/**
 * Media Query mixins
 *
 * includes in ie stylesheet using $fixed-width as a condition
 * see old-ie.scss
 */
/*

    example usage:

    //nested
    h1 {
        font-size: 2em;
        @include respond-min( 30em ){
            font-size: 3em;
        }
    }

    //wrapping
    @include respond-min-max( 30em, 50em ){
        h1 { color: red; }
        body { background: #eeeeee; }
    }

    //often project common breakpoints are set in _variables.scss

*/
/**
 * Specifically pass styling through to the old
 * IE stylesheet.
 */
/*

    example usage:

    h1 {
        color: #252525;
    }

    @include old-ie {
        h1 {
            color: #ff0099; // old-ie users love pink
        }
    }

*/
/**
 * Utility mixins
 */
/**
 * Hiding visually (keep accessibility)
 * http://h5bp.com/v
 * http://davidtheclark.github.io/scut/#hide_visually
 */
/**
 * clear floats within container when overflow:hidden is undesirable
 */
/**
 * inline block with ie7 hack
 */
/**
 * a common pattern when making styled lists
 */
/**
 * Image replacement
 * http://davidtheclark.github.io/scut/#image_replacement
 */
/**
 * Cross-browser calc
 * https://coderwall.com/p/qac-og
 */
/**
 * Cross-browser form element placeholder styling
 */
/**
 * Adds a block offset to an element of $width. The
 * $target child element will be moved in to the
 * newly created space.
 */
/**
 * Use an SVG icon where possible, fall back to a PNG where not.
 * Also see: base/_icons.scss
 */
/*
    example markup:

    <a href="#"><i class="icon icon--widget"></i> Widgets</a>

    .icon {
        // generic icon styles
    }
    .icon--widget {
        @include icon('widget');
    }

*/
/**
 * Prevent long strings from breaking out of container
 * http://css-tricks.com/snippets/css/prevent-long-urls-from-breaking-out-of-container/
 */
/**
 * Stop Android Chrome changing font size
 * http://stackoverflow.com/questions/11289166/chrome-on-android-resizes-font#comment29303194_12965146
 */
/**
 * convert pixels to em using a context
 *
 * example:
 * font-size: em( 14px / 16px ); // 0.875em
 */
/* ==========================================================================
   Normalize.scss settings
   ========================================================================== */
/**
 * Includes legacy browser support IE6/7
 *
 * Set to false if you want to drop support for IE6 and IE7
 */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/*
 * Corrects `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

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

/**
 * Prevents 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.
 */
[hidden], template {
  display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 * 3.Corrects text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * 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.
 */
/**
 * Improves readability when focused and also mouse hovered in all browsers.
 */
a:focus {
  outline: thin dotted;
}
a:active, a:hover {
  outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Addresses font sizes and margins set differently in IE 6/7.
 * 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;
}

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

/**
 * Addresses margins set differently in IE 6/7.
 */
/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

/**
 * 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
   ========================================================================== */
/**
 * 1. Remove border when inside `a` element in IE 8/9.
 * 2. Improves image quality when scaled in IE 7.
 */
img {
  border: 0;
}

/**
 * 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: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Corrects text not wrapping in Firefox 3.
 * 4. Corrects alignment displayed oddly in IE 6/7.
 */
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.
 * 4. Improves appearance and consistency in all browsers.
 */
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.
 * 4. Removes inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */
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/10.
 * 2. Remove excess padding in IE 7/8/9/10.
 *    Known issue: excess padding remains in IE 6.
 */
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 */
  /* 2 */
  box-sizing: content-box;
}

/**
 * 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;
}

/**
 * Global styling defaults
 */
@-ms-viewport {
  width: device-width;
}
html {
  overflow-y: scroll;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

body {
  font: 16px "Aller", sans-serif;
  line-height: 1.4;
  color: #5B5B5B;
}

.cms-controls {
  box-sizing: content-box;
}
.cms-controls * {
  box-sizing: content-box;
}

html {
  font-family: 'narrow';
}

* html {
  font-family: 'wide';
}

* + html {
  font-family: 'wide';
}

@media \0screen {
  html {
    font-family: 'wide';
  }
}
@media (min-width: 40em) {
  html {
    font-family: 'medium';
  }
}
@media (min-width: 60em) {
  html {
    font-family: 'wide';
  }
}
/**
 * Headings and general textual elements
 */
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: "Open Sans", sans-serif;
  margin-top: 30px;
  line-height: 1.2;
}

h1, .h1,
h2, .h2 {
  font-weight: normal;
}

h1, .h1 {
  font-size: 36px;
}

h2, .h2 {
  font-size: 30px;
}

h3, .h3 {
  font-size: 24px;
  font-weight: 400;
}

h4, .h4,
h5, .h5,
h6, .h6 {
  font-weight: 700;
}

h4, .h4 {
  font-size: 20px;
  text-transform: none;
}

h5, .h5 {
  font-size: 20px;
}

h6, .h6 {
  font-size: 18px;
  text-transform: none;
}

hr {
  border: none;
  height: 0px;
  margin: 30px 0;
}

/**
 * @font-face declarations
 */
@font-face {
  font-family: 'Aller';
  src: url("../../fonts/aller_italic.eot");
  src: url("../../fonts/aller_italic.eot?#iefix") format("embedded-opentype"), url("../../fonts/aller_italic.woff") format("woff"), url("../../fonts/aller_italic.ttf") format("truetype"), url("../../fonts/aller_italic.svg#alleritalic") format("svg");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: 'Aller';
  src: url("../../fonts/aller_light.eot");
  src: url("../../fonts/aller_light.eot?#iefix") format("embedded-opentype"), url("../../fonts/aller_light.woff") format("woff"), url("../../fonts/aller_light.ttf") format("truetype"), url("../../fonts/aller_light.svg#aller_lightregular") format("svg");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: 'Aller';
  src: url("../../fonts/aller_bold.eot");
  src: url("../../fonts/aller_bold.eot?#iefix") format("embedded-opentype"), url("../../fonts/aller_bold.woff") format("woff"), url("../../fonts/aller_bold.ttf") format("truetype"), url("../../fonts/aller_bold.svg#allerbold") format("svg");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'Aller';
  src: url("../../fonts/aller_regular.eot");
  src: url("../../fonts/aller_regular.eot?#iefix") format("embedded-opentype"), url("../../fonts/aller_regular.woff") format("woff"), url("../../fonts/aller_regular.ttf") format("truetype"), url("../../fonts/aller_regular.svg#allerregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Open Sans';
  src: url("../../fonts/OpenSans-Bold-webfont.eot");
  src: url("../../fonts/OpenSans-Bold-webfont.eot?#iefix") format("embedded-opentype"), url("../../fonts/OpenSans-Bold-webfont.woff") format("woff"), url("../../fonts/OpenSans-Bold-webfont.ttf") format("truetype"), url("../../fonts/OpenSans-Bold-webfont.svg#open_sansbold") format("svg");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Open Sans';
  src: url("../../fonts/OpenSans-Italic-webfont.eot");
  src: url("../../fonts/OpenSans-Italic-webfont.eot?#iefix") format("embedded-opentype"), url("../../fonts/OpenSans-Italic-webfont.woff") format("woff"), url("../../fonts/OpenSans-Italic-webfont.ttf") format("truetype"), url("../../fonts/OpenSans-Italic-webfont.svg#open_sansitalic") format("svg");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: 'Open Sans';
  src: url("../../fonts/OpenSans-Regular-webfont.eot");
  src: url("../../fonts/OpenSans-Regular-webfont.eot?#iefix") format("embedded-opentype"), url("../../fonts/OpenSans-Regular-webfont.woff") format("woff"), url("../../fonts/OpenSans-Regular-webfont.ttf") format("truetype"), url("../../fonts/OpenSans-Regular-webfont.svg#open_sansregular") format("svg");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Open Sans';
  src: url("../../fonts/OpenSans-Semibold-webfont.eot");
  src: url("../../fonts/OpenSans-Semibold-webfont.eot?#iefix") format("embedded-opentype"), url("../../fonts/OpenSans-Semibold-webfont.woff") format("woff"), url("../../fonts/OpenSans-Semibold-webfont.ttf") format("truetype"), url("../../fonts/OpenSans-Semibold-webfont.svg#open_sanssemibold") format("svg");
  font-weight: 600;
  font-style: normal;
}
/**
 * Links
 */
a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.btn {
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  zoom: 1;
  *display: inline;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  padding: 6px 10px;
  text-decoration: none;
  text-transform: uppercase;
  border: 0;
}
.btn .icon.icon--arrow-cta-white-small {
  margin-left: 8px;
}

.btn + .btn {
  margin-left: 10px;
}

.btn-link {
  text-decoration: underline;
  padding: 6px 10px;
}

.btn--prom {
  padding: 15px 25px;
}

.cta-link:after {
  content: " ";
  background-position: center right;
  background-repeat: no-repeat;
  background-size: 100%;
  margin-left: .625em;
  padding-left: .45em;
  white-space: nowrap;
}

/**
 * Icons
 *
 * Refer to the icon mixin in config/_mixins.scss
 */
.icon {
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: 0 0;
  margin-top: -2px;
  margin-right: 2px;
  overflow: hidden;
  font-style: normal;
}
.icon:before {
  content: '';
  display: block;
  width: 0;
  height: 150%;
}
.lt-ie8 .icon {
  text-indent: -9999px;
  line-height: 0;
  font-size: 0;
}

.icon-inline {
  background-position: center right;
  background-repeat: no-repeat;
  background-size: 100%;
  margin-left: .625em;
  white-space: nowrap;
}

.icon--arrow-cta-white,
.icon--arrow-cta {
  width: 8px;
  height: 13px;
}
.icon--arrow-cta-white.icon-inline,
.icon--arrow-cta.icon-inline {
  padding-right: 8px;
}
.icon--arrow-cta-white.icon-inline,
.icon--arrow-cta.icon-inline {
  padding-right: 0.35em;
}

.icon--arrow-left,
.icon--arrow-right,
.icon--arrow-white-right,
.icon--arrow-white-left {
  width: 10px;
  height: 15px;
}
.icon--arrow-left.icon-inline,
.icon--arrow-right.icon-inline,
.icon--arrow-white-right.icon-inline,
.icon--arrow-white-left.icon-inline {
  padding-right: 10px;
}

.icon--arrow-cta-white-small {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNSIgaGVpZ2h0PSI4IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnNrZXRjaD0iaHR0cDovL3d3dy5ib2hlbWlhbmNvZGluZy5jb20vc2tldGNoL25zIj48dGl0bGU+YXJyb3ctY3RhLXdoaXRlLXNtYWxsPC90aXRsZT48cGF0aCBkPSJNLjIzNyA3Ljc3NGMtLjMxMy0uMjk4LS4zMTEtLjc4My0uMDA1LTEuMDc0bDIuODM1LTIuNzAyLTIuODM1LTIuNzAyYy0uMzEtLjI5NS0uMzEtLjc3NC4wMDUtMS4wNzQuMzEzLS4yOTguODIxLS4yOTYgMS4xMjctLjAwNWwyLjgzNSAyLjcwMi41NjYuNTM5Yy4zMTMuMjk4LjMxNS43NzkgMCAxLjA3OWwtLjU2Ni41MzktMi44MzUgMi43MDJjLS4zMS4yOTUtLjgxMi4yOTUtMS4xMjctLjAwNXoiIHNrZXRjaDp0eXBlPSJNU1NoYXBlR3JvdXAiIGZpbGw9IiNmZmYiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPg==);
  margin-top: -2px;
  background-repeat: no-repeat;
  width: 5px;
  height: 8px;
}
.no-js .icon--arrow-cta-white-small, .no-svg .icon--arrow-cta-white-small, .no-backgroundsize .icon--arrow-cta-white-small {
  background-image: url("/static/build/img/icons/arrow-cta-white-small.png");
}
.icon--arrow-cta-white-small.icon-inline {
  padding-right: 5px;
}

.icon--padlock,
.icon--padlock-white {
  width: 10px;
  height: 14px;
}
.icon--padlock.icon-inline,
.icon--padlock-white.icon-inline {
  padding-right: 10px;
}

.icon--external,
.icon--external-white,
.icon--external-alt {
  width: 13px;
  height: 13px;
}
.icon--external.icon-inline,
.icon--external-white.icon-inline,
.icon--external-alt.icon-inline {
  padding-right: 13px;
}

.icon--profile {
  width: 21px;
  height: 20px;
}
.icon--profile.icon-inline {
  padding-right: 21px;
}

.icon--arrow-down-small {
  width: 8px;
  height: 5px;
}
.icon--arrow-down-small.icon-inline {
  padding-right: 8px;
}

.icon--arrow-down-white-small {
  width: 8px;
  height: 5px;
}
.icon--arrow-down-white-small.icon-inline {
  padding-right: 8px;
}

.icon--arrow-down-white-large {
  width: 8px;
  height: 5px;
}
.icon--arrow-down-white-large.icon-inline {
  padding-right: 8px;
}

.icon--brand-cta {
  width: 5px;
  height: 8px;
}
.icon--brand-cta.icon-inline {
  padding-right: 5px;
}

.icon--arrow-cta-small {
  width: 5px;
  height: 8px;
}
.icon--arrow-cta-small.icon-inline {
  padding-right: 5px;
}

.icon--menu {
  width: 24px;
  height: 17px;
}
.icon--menu.icon-inline {
  padding-right: 24px;
}

.icon--close {
  width: 19px;
  height: 19px;
}
.icon--close.icon-inline {
  padding-right: 19px;
}

.icon--basket {
  width: 16px;
  height: 16px;
}
.icon--basket.icon-inline {
  padding-right: 16px;
}

.icon--mail {
  width: 17px;
  height: 13px;
}
.icon--mail.icon-inline {
  padding-right: 17px;
}

.icon--search {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTkiIGhlaWdodD0iMTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6c2tldGNoPSJodHRwOi8vd3d3LmJvaGVtaWFuY29kaW5nLmNvbS9za2V0Y2gvbnMiPjx0aXRsZT5zZWFyY2gtd2hpdGU8L3RpdGxlPjxwYXRoIGQ9Ik03LjE3OCAwYy0zLjk1OSAwLTcuMTc4IDMuMTU3LTcuMTc4IDcuMDRzMy4yMTkgNy4wMjcgNy4xNzggNy4wMjdjMS43MTQgMCAzLjI4MS0uNTgxIDQuNTE0LTEuNTYuMDQ5LjA5Ny4wOTkuMTk0LjE4NS4yNzhsNC40NzcgNC4zNzljLjIzNC4yNDIuNTY3LjM2My44ODguMzYzLjMyMSAwIC42NDEtLjEyMS44ODgtLjM2My40OTMtLjQ4NC40OTMtMS4yNyAwLTEuNzU0bC00LjQ2NS00LjM3OWMtLjEyMy0uMTIxLS4yNTktLjIwNi0uNDE5LS4yNjYuNzAzLTEuMDg5IDEuMDk4LTIuMzU5IDEuMDk4LTMuNzI1IDAtMy44ODMtMy4yMDctNy4wNC03LjE2Ni03LjA0em0tLjAyOCAyLjE5OWMyLjcyNyAwIDQuOTM5IDIuMjI0IDQuOTM5IDQuOTUxIDAgLjkyMS0uMjU4IDEuODE4LS43NDkgMi42MTdsLS40NTUuNzEzLS42MjcuNTA0Yy0uODk3LjcyNS0xLjk2NiAxLjEwNi0zLjEwOCAxLjEwNi0yLjcyNyAwLTQuOTUxLTIuMjExLTQuOTUxLTQuOTM5IDAtMi43MjcgMi4yMjQtNC45NTEgNC45NTEtNC45NTF6IiBza2V0Y2g6dHlwZT0iTVNTaGFwZUdyb3VwIiBmaWxsPSIjZmZmIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiLz48L3N2Zz4=);
  margin-top: -2px;
  background-repeat: no-repeat;
  width: 19px;
  height: 18px;
}
.no-js .icon--search, .no-svg .icon--search, .no-backgroundsize .icon--search {
  background-image: url("/static/build/img/icons/search-white.png");
}
.icon--search.icon-inline {
  padding-right: 19px;
}

.icon--twitter,
.icon--twitter-dark {
  width: 21px;
  height: 17px;
}
.icon--twitter.icon-inline,
.icon--twitter-dark.icon-inline {
  padding-right: 21px;
}

.icon--linkedin,
.icon--linkedin-dark {
  width: 19px;
  height: 19px;
}
.icon--linkedin.icon-inline,
.icon--linkedin-dark.icon-inline {
  padding-right: 19px;
}

.icon--facebook,
.icon--facebook-dark {
  width: 12px;
  height: 22px;
}
.icon--facebook.icon-inline,
.icon--facebook-dark.icon-inline {
  padding-right: 12px;
}

.icon--googleplus,
.icon--googleplus-dark {
  width: 24px;
  height: 24px;
}
.icon--googleplus.icon-inline,
.icon--googleplus-dark.icon-inline {
  padding-right: 24px;
}

.icon--download-brand {
  width: 35px;
  height: 36px;
}
.icon--download-brand.icon-inline {
  padding-right: 35px;
}

.icon--download {
  width: 49px;
  height: 51px;
}
.icon--download.icon-inline {
  padding-right: 49px;
}

.icon--link {
  width: 53px;
  height: 54px;
}
.icon--link.icon-inline {
  padding-right: 53px;
}

.icon--calendar {
  width: 25px;
  height: 25px;
}
.icon--calendar.icon-inline {
  padding-right: 25px;
}

.icon--product {
  width: 16px;
  height: 28px;
}
.icon--product.icon-inline {
  padding-right: 16px;
}

.icon--news {
  width: 26px;
  height: 23px;
}
.icon--news.icon-inline {
  padding-right: 26px;
}

.icon--twitter-retweet {
  width: 15px;
  height: 9px;
}
.icon--twitter-retweet.icon-inline {
  padding-right: 15px;
}

.icon--twitter-reply {
  width: 15px;
  height: 10px;
}
.icon--twitter-reply.icon-inline {
  padding-right: 15px;
}

.icon--twitter-favourite {
  width: 14px;
  height: 14px;
}
.icon--twitter-favourite.icon-inline {
  padding-right: 14px;
}

.icon--pencil {
  width: 18px;
  height: 20px;
}
.icon--pencil.icon-inline {
  padding-right: 18px;
}

.icon--quotes-white {
  width: 45px;
  height: 38px;
}
.icon--quotes-white.icon-inline {
  padding-right: 45px;
}

/**
 * Form elements
 */
.form--registration {
  margin-top: 40px;
}

.form__container--hidden {
  display: none;
}
.form__container--hidden.is-visible {
  display: block;
}

.input {
  font-size: 18px;
  padding: 7px 15px;
}
.input::-webkit-input-placeholder {
  font-style: italic;
  font-weight: 400;
  text-shadow: none;
  -webkit-font-smoothing: antialiased;
}
.input::-moz-placeholder {
  font-style: italic;
  font-weight: 400;
  text-shadow: none;
  -webkit-font-smoothing: antialiased;
}
.input:-ms-input-placeholder {
  font-style: italic;
  font-weight: 400;
  text-shadow: none;
  -webkit-font-smoothing: antialiased;
}
.input:focus {
  box-shadow: none;
  outline: none;
}

input[type="search"] {
  border-radius: 0;
  -webkit-appearance: none;
}

/* Form Fields */
label[for] {
  cursor: pointer;
}

.form-field-hidden {
  display: none;
}

/* Validation */
.validation {
  margin-top: 8px;
  text-align: right;
  width: 100%;
  font-style: italic;
}
.js .validation {
  display: none;
}
.js .validation.is-invalid {
  display: block;
}

.form__field {
  margin-top: 13px;
  margin-bottom: 20px;
}
.form__field:after {
  content: '';
  display: table;
  clear: both;
}

.form__field--asb {
  display: none;
}

.flexbox .int-btn {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flexbox .int-btn .input {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.label {
  display: block;
  margin-bottom: 13px;
}

.label--radio:after,
.label--checkbox:after {
  content: "";
}

.label__note {
  font-style: italic;
  font-size: 14px;
  margin-left: 10px;
}

.label--hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.input,
.textarea,
.select {
  width: 100%;
}
.input--auto,
.textarea--auto,
.select--auto {
  width: auto;
}

.input,
.textarea {
  border-width: 1px;
  border-style: solid;
}
.input:focus,
.textarea:focus {
  outline: none;
  box-shadow: none;
}

.input--radio,
.input--checkbox {
  clear: left;
  float: left;
  width: auto;
  margin-right: 10px;
  margin-top: 2px;
}

.form__field--inline .input--radio,
.form__field--inline .input--checkbox {
  float: none;
}
.form__field--inline .label--radio,
.form__field--inline .label--checkbox {
  float: none;
  margin-right: 10px;
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.dd-chrome {
  border: solid 1px;
  position: relative;
}
.dd-chrome:after {
  content: '';
  display: block;
  width: 36px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-position: center;
  pointer-events: none;
  z-index: 0;
}
.lt-ie10 .dd-chrome:after {
  display: none;
}
.dd-chrome select {
  width: 100%;
  position: relative;
  z-index: 1;
  font-style: italic;
  padding: 6px 40px 6px 10px;
  border: none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  text-indent: 0.01px;
  text-overflow: '';
}
.dd-chrome select::-ms-expand {
  display: none;
}
.dd-chrome select:focus {
  outline: none;
}
.lt-ie10 .dd-chrome select {
  padding-right: 10px;
}

:-moz-any(.dd-chrome):after {
  z-index: 1;
}

@media (min-width: 60em) {
  .form {
    max-width: 690px;
    padding-right: 80px;
  }
  .form--registration {
    margin-top: 0;
  }
}
/**
 * Images
 */
img {
  max-width: 100%;
}
img.left {
  float: left;
  margin-right: 1em;
  margin-bottom: 1em;
}
img.right {
  float: right;
  margin-left: 1em;
  margin-bottom: 1em;
}

.no-js .ri {
  padding-top: 0 !important;
}

.js .ri {
  position: relative;
  height: 0;
  overflow: hidden;
  width: 100%;
  opacity: 0;
  transition: opacity 0.2s ease-out;
}
.js .ri.is-loaded img,
.js .ri noscript {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.lt-ie8 .js .ri {
  height: auto;
}
.lt-ie8 .js .ri.is-loaded img {
  height: auto;
}

/**
 * Styles for CMS editable areas of the site
 */
.header__main .site-width {
  position: relative;
}
.header__logo {
  display: block;
  width: 100%;
  padding: 12px 0;
  margin-bottom: 10px;
}
.header__logo img {
  display: block;
  width: 56.75%;
  max-width: 306px;
  min-width: 170px;
  margin: auto;
}
.header__nav-toggle {
  width: 100px;
  padding: 8px 10px;
  position: relative;
  transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.header__nav-toggle:before {
  display: inline-block;
  zoom: 1;
  *display: inline;
  content: '';
  opacity: 0;
  transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-transform: scale(2);
  -ms-transform: scale(2);
  transform: scale(2);
  width: 19px;
  height: 19px;
  position: absolute;
  top: 11px;
  left: 13px;
}
.header__nav-toggle .icon {
  transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.header__nav-toggle.is-active {
  width: 45px;
}
.header__nav-toggle.is-active:before {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.header__nav-toggle.is-active .icon {
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
  opacity: 0.001;
}
.header__nav-toggle.is-active .header__nav-toggle__inner {
  opacity: 0.001;
}
.header__nav-toggle__inner {
  padding: 8px 0;
  position: absolute;
  left: 40px;
  top: 0;
  transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.header__nav-toggle, .header__search__link {
  display: block;
}
.header .h-basket {
  float: right;
}
.header .h-basket__link {
  padding: 8px 10px;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: top;
}
.header .h-basket__link__items, .header .h-basket__link__total {
  display: none;
}
.header .h-basket__checkout {
  vertical-align: top;
}
.header__search {
  float: right;
}
.header__search .form__field {
  padding: 0;
}
.header__search__label {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.header__search__field {
  width: auto;
  height: 36px;
  font-size: 16px;
  border-width: 1px;
  border-right-width: 0;
  border-style: solid;
  padding: 7px 10px;
  float: left;
}
.header__search__field::-webkit-input-placeholder {
  font-style: italic;
  font-weight: normal;
}
.header__search__field::-moz-placeholder {
  font-style: italic;
  font-weight: normal;
}
.header__search__field:-ms-input-placeholder {
  font-style: italic;
  font-weight: normal;
}
.header__search__field:focus {
  outline: none;
}
.header__search__button {
  padding: 7px 10px;
  height: 36px;
  width: 40px;
  border: none;
  margin-left: -0.25em;
  float: right;
}
.header--compressed .header__main .site-width {
  overflow: hidden;
}
.header--compressed .header__search,
.header--compressed .h-basket,
.header--compressed .main-nav,
.header--compressed .secondary__nav {
  display: none;
}

@media (max-width: 51.1875em) {
  .header__logo:after {
    content: '';
    display: block;
    width: 100%;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    margin-top: 10px;
    position: absolute;
    left: 0;
  }
  .header__nav-toggle {
    float: left;
  }
  .header__search__link {
    width: 40px;
    text-align: center;
    padding: 8px 10px;
  }
  .header .h-basket__link .icon {
    background-position: 0 -16px;
  }
  .header .h-basket__checkout {
    display: none;
  }
  .header__search__link {
    margin-right: 5px;
  }
  .header__search__form {
    display: none;
  }
}
@media (min-width: 51.25em) {
  .header__logo {
    width: 228px;
    padding: 30px 0 10px;
    float: left;
  }
  .header__logo img {
    width: 100%;
  }
  .header__nav-toggle {
    display: none;
  }
  .header__search__link {
    display: none;
  }
  .header__search,
  .header .h-basket {
    margin-top: 45px;
  }
  .header__search {
    margin-right: 10px;
  }
  .header__search__form {
    margin-top: 0;
  }
  .header .h-basket__link {
    padding: 6px 10px;
    border: 1px solid;
  }
  .header .h-basket__link__items {
    display: inline;
  }
  .header .h-basket__checkout {
    padding: 7px 10px;
    text-align: center;
    margin-left: -0.25em;
  }
  .header .h-basket__checkout .icon {
    margin-left: 3px;
  }
  .header .h-basket__checkout__inner {
    display: none;
  }
  .header .h-basket--has-items .icon--basket {
    background-position: 0 -32px;
  }
}
@media (min-width: 60em) {
  .header__logo {
    width: 307px;
  }
  .header .h-basket__link {
    padding-right: 30px;
  }
  .header .h-basket__link__items:after {
    content: ':';
  }
  .header .h-basket__link__items.h-basket__empty:after {
    content: '';
  }
  .header .h-basket__link__total {
    display: inline;
  }
}
@media (min-width: 75em) {
  .header .h-basket__checkout__inner {
    display: inline;
  }
}
.smithers-group {
  overflow: hidden;
}
.smithers-group__nav {
  overflow: hidden;
  transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.js .smithers-group__nav {
  height: 0;
}
.smithers-group__nav .site-width {
  display: none;
}
.smithers-group__list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  padding-top: 10px;
  padding-bottom: 10px;
}
.smithers-group__list:after {
  content: '';
  display: table;
  clear: both;
}
.smithers-group__member {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 14px;
}
.smithers-group__member__title {
  text-transform: uppercase;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}
.smithers-group__link {
  display: block;
}

.smithers-group__toggle {
  font-family: "Open Sans", sans-serif;
  position: relative;
}
.smithers-group__toggle:before {
  content: '';
  position: absolute;
  top: -10px;
  opacity: 0;
  transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.smithers-group__toggle.is-active .icon {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.smithers-group__toggle.is-active:before {
  opacity: 1;
  top: -20px;
}
.smithers-group__toggle .icon {
  margin-left: 5px;
}

.smithers-group__toggle__inner,
.account__link {
  font-family: "Open Sans", sans-serif;
  height: 33px;
  display: table-cell;
  vertical-align: middle;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.smithers-group__toggle {
  float: left;
}

.account {
  float: right;
}

.account__link {
  font-size: 14px;
  padding-left: 10px;
}
.account__link:after {
  content: "|";
  margin-left: 10px;
}
.account__link .icon {
  margin-left: 10px;
}
.account__link--login:after {
  content: " ";
  display: inline;
  background-position: center;
  padding-left: 10px;
}

@media (max-width: 39.9375em) {
  .smithers-group__member__title .icon {
    background: none;
    width: auto;
    height: auto;
  }
  .smithers-group__member__title .icon:after {
    content: "-";
  }

  .account__link .icon {
    margin-left: 0;
  }
}
@media (min-width: 40em) {
  .smithers-group__list {
    margin-left: -50px;
  }

  .smithers-group__member {
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align: top;
    padding-left: 50px;
    margin-right: -0.25em;
    width: 50%;
  }
  .smithers-group__member .icon {
    margin-left: 6px;
  }

  .smithers-group__member__title {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
  }
}
@media (min-width: 60em) {
  .smithers-group__list {
    margin-left: -75px;
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .smithers-group__member {
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align: top;
    padding-left: 75px;
    margin-right: -0.25em;
    width: 33.333%;
    margin-top: 25px;
    margin-bottom: 25px;
  }
}
.smithers-group__link--pira .smithers-group__member__title {
  color: #2d7ec6;
}
.smithers-group__link--apex .smithers-group__member__title {
  color: #53a4ed;
}
.smithers-group__link--rapra .smithers-group__member__title {
  color: #177a70;
}
.smithers-group__link--viscient .smithers-group__member__title {
  color: #2d7ec6;
}

.main-nav {
  clear: both;
  padding-top: 5px;
}
.main-nav:focus {
  outline: none;
}
.main-nav__list,
.main-nav .secondary-nav {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.main-nav__link,
.main-nav .secondary-nav__link {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}

@media (max-width: 51.1875em) {
  .main-nav {
    height: 0;
    overflow: hidden;
    transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
  }
  .main-nav__list {
    position: relative;
  }
  .main-nav__list:before {
    content: '';
    position: absolute;
  }
  .main-nav__link,
  .main-nav .secondary-nav__link {
    display: block;
    border-top-style: solid;
    border-top-width: 1px;
    padding: 8px 10px;
    transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .main-nav__link:after,
  .main-nav .secondary-nav__link:after {
    content: '';
    display: inline-block;
    width: 5px;
    height: 8px;
    margin-left: 10px;
  }
  .main-nav .secondary-nav {
    margin-top: 5px;
    padding: 0 10px;
  }
  .main-nav .secondary-nav__link {
    border-top-width: 1px;
    border-top-style: dashed;
  }
  .main-nav .secondary-nav__link:after {
    display: none;
  }
  .main-nav__item:first-child .main-nav__list {
    border-top-width: 0;
  }
  .main-nav .secondary-nav__item:first-child .secondary-nav__link {
    border-top-width: 0;
  }
}
@media (min-width: 51.25em) {
  .main-nav {
    border-top-width: 1px;
    border-top-style: solid;
  }
  .main-nav__wrap {
    display: block !important;
  }
  .main-nav__link {
    display: block;
    padding: 10px 8px;
    font-size: 12px;
    text-transform: uppercase;
  }
  .main-nav__item {
    display: inline-block;
    zoom: 1;
    *display: inline;
  }
  .main-nav .secondary-nav {
    position: absolute;
    top: 0;
    right: 10px;
    padding: 12px 0;
  }
  .main-nav .secondary-nav__item {
    display: inline-block;
    zoom: 1;
    *display: inline;
    font-size: 14px;
  }
  .main-nav .secondary-nav__item:before {
    content: '|';
    margin: 0 10px;
  }
  .main-nav .secondary-nav__item:first-child:before {
    display: none;
  }
  .main-nav .secondary-nav__link {
    text-transform: uppercase;
  }
}
@media (min-width: 58.125em) {
  .main-nav__link {
    font-size: 14px;
  }
}
@media (min-width: 65em) {
  .main-nav__link {
    padding: 12px;
    font-size: 16px;
  }
  .main-nav__item:first-child .main-nav__link {
    padding-left: 0;
  }
}
.footer {
  padding: 25px 0 0;
}
.footer__info {
  border-top: solid 5px;
  margin-top: 20px;
  padding-bottom: 20px;
  font-size: 14px;
}
.footer__info__list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.footer__social {
  margin-bottom: 20px;
}
.footer__social .social__link {
  margin-right: 5px;
}
.footer__heading {
  text-transform: uppercase;
}
.footer.footer--checkout {
  padding-top: 0;
}
.footer.footer--checkout .footer__info {
  margin-top: 0;
}
.footer.footer--checkout .footer__section {
  display: none;
}

.quick-links__list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.quick-links__link {
  display: block;
}

@media (max-width: 51.1875em) {
  .footer__social {
    margin-top: -60px;
    margin-bottom: 40px;
  }
  .footer__social .social__list {
    padding-left: 0;
  }
  .footer__info {
    margin-top: 70px;
  }

  .footer--checkout .footer__social {
    margin-top: 0;
    margin-bottom: 0;
    float: right;
  }
  .footer--checkout .footer__info {
    padding-top: 20px;
  }

  .quick-links__heading {
    cursor: pointer;
    text-transform: none;
    font-size: 18px;
    padding: 8px 10px;
    margin-bottom: 0;
    margin-top: 5px;
  }
  .quick-links__heading:after {
    display: inline-block;
    zoom: 1;
    *display: inline;
    position: relative;
    top: -2px;
    content: "";
    width: 8px;
    height: 5px;
    margin-left: 5px;
  }
  .quick-links__heading.is-active:after {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
  .quick-links__list {
    display: none;
  }
  .quick-links__list.is-visible {
    display: block;
  }
  .quick-links__item:first-child .quick-links__link {
    border-top: none;
  }
  .quick-links__link {
    border-top: dashed 1px;
    padding: 8px 10px;
  }
}
@media (min-width: 51.25em) {
  .footer__social {
    float: right;
  }
  .footer__sections {
    margin-left: -30px;
  }
  .footer__section {
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align: top;
    padding-left: 30px;
    margin-right: -0.25em;
    width: 33.3333%;
  }
  .footer__heading {
    font-size: 24px;
    font-weight: 600;
  }
  .footer__info {
    padding: 20px 0;
    border-top: solid 7px;
  }
  .footer__info__list {
    padding: 10px 0;
  }
  .footer__info__item {
    display: inline-block;
    zoom: 1;
    *display: inline;
  }
  .footer__info__item:before {
    content: "|";
    margin: 0 5px;
  }
  .footer__info__item:first-child:before {
    display: none;
  }
}
@media (min-width: 60em) {
  .quick-links {
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align: top;
    padding-left: 30px;
    margin-right: -0.25em;
    width: 25%;
  }

  .latest-tweets {
    margin-left: 16.6667%;
  }
}
.breadcrumb__list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.breadcrumb__item {
  font-size: 12px;
}
.breadcrumb__link {
  padding-top: 10px;
  padding-bottom: 10px;
  display: block;
}
.breadcrumb__link:after {
  display: inline-block;
  zoom: 1;
  *display: inline;
  content: '';
  width: 6px;
  height: 9px;
  vertical-align: -1px;
}

@media (max-width: 39.9375em) {
  .breadcrumb__item {
    display: none;
  }
  .breadcrumb__item--parent {
    display: inline-block;
    zoom: 1;
    *display: inline;
  }
  .breadcrumb__item--parent .breadcrumb__link {
    position: relative;
    padding-left: 15px;
  }
  .breadcrumb__item--parent .breadcrumb__link:after {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background-position: center;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    pointer-events: none;
    margin-top: 0 !important;
  }
}
@media (min-width: 40em) {
  .breadcrumb__item {
    display: inline-block;
    zoom: 1;
    *display: inline;
  }
  .breadcrumb__link:after {
    margin-left: 10px;
    margin-right: 10px;
  }
}
.nav {
  position: relative;
  margin-bottom: 40px;
}
.nav__heading {
  z-index: 1;
  padding: 8px 10px;
  margin: 0;
  font-size: 16px;
  position: relative;
  text-transform: none;
}
.nav__heading .icon {
  content: "";
  display: inline-block;
  height: 8px;
  width: 5px;
  margin-left: 8px;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.nav__list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
}
.nav__sub-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  padding-bottom: 20px;
  border-bottom: dashed 1px;
}
.nav__sub-list .nav__link {
  padding-left: 40px;
}
.js .nav__sub-list {
  display: none;
}
.nav__sub-list.is-visible {
  display: block;
}
.nav__sub-list .nav__link.is-current {
  font-weight: 600;
}
.nav__link {
  display: block;
  border-bottom-style: dashed;
  border-bottom-width: 1px;
  padding: 8px 10px;
}
.nav__link.is-active {
  font-weight: 700;
}
.nav__link .icon {
  margin-left: 8px;
}

@media (min-width: 40em) {
  .narrow-nav-container .nav {
    display: none;
  }
  .nav__heading .icon {
    display: none;
  }
  .nav__link {
    border-bottom-width: 1px;
  }
  .nav__heading, .nav__link {
    padding: 10px 15px;
  }
}
@media (min-width: 60em) {
  .nav__heading, .nav__link {
    font-size: 20px;
    padding: 15px 20px;
  }
}
@-webkit-keyframes sub-nav__list--expand {
  from {
    -webkit-transform: scaleY(0.75);
    transform: scaleY(0.75);
    opacity: 0.0001;
  }
  to {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    opacity: 1;
  }
}
@keyframes sub-nav__list--expand {
  from {
    -webkit-transform: scaleY(0.75);
    transform: scaleY(0.75);
    opacity: 0.0001;
  }
  to {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    opacity: 1;
  }
}
@media (max-width: 39.9375em) {
  .sub-nav {
    cursor: pointer;
    display: none;
  }
  .narrow-nav-container .sub-nav {
    display: block;
  }
  .sub-nav .nav__heading:before {
    content: '';
    -webkit-transform: scaleX(1.28);
    -ms-transform: scaleX(1.28);
    transform: scaleX(1.28);
    opacity: 0.0001;
    pointer-events: none;
    transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .sub-nav .nav__heading.is-active:before {
    -webkit-transform: scaleX(1.28) translateY(13px);
    -ms-transform: scaleX(1.28) translateY(13px);
    transform: scaleX(1.28) translateY(13px);
    opacity: 1;
  }
  .sub-nav .nav__heading.is-active .icon {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  .js .sub-nav .nav__list {
    display: none;
    width: 100%;
  }
  .sub-nav .nav__list.is-visible {
    display: block;
    -webkit-animation: sub-nav__list--expand 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    animation: sub-nav__list--expand 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  }
}
.tweet {
  font-size: 15px;
}

.tweet-header {
  overflow: hidden;
  margin-bottom: 15px;
}
.tweet-header h4 {
  margin: 0 0 3px;
}
.tweet-header p {
  margin-bottom: 0;
}
.tweet-header a, .tweet-header a:focus, .tweet-header a:hover {
  color: inherit;
}

.tweet-user {
  display: block;
}

.tweet-user-image {
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: top;
  width: 48px;
  margin-right: 10px;
}
.tweet-user-image img {
  display: block;
}

.tweet-user-info {
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: top;
}
.tweet-user-info p {
  margin-top: 0;
  font-size: 14px;
}

.twitter-follow-button {
  float: right;
}

.tweet-content {
  margin: 0 0 15px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  font-family: inherit;
  border: none;
  color: inherit;
  background-color: transparent;
  padding: 0px;
}

.tweet-footer {
  padding-top: 8px;
  font-size: 12px;
  overflow: hidden;
}

.tweet-date {
  float: left;
}
.tweet-date a {
  color: inherit;
  text-decoration: none;
}
.tweet-date a:focus, .tweet-date a:hover {
  color: inherit;
  text-decoration: underline;
}

.tweet-actions {
  list-style-type: none;
  margin: 0;
  padding: 0;
  float: right;
}
.tweet-actions li {
  display: inline-block;
  zoom: 1;
  *display: inline;
  margin-left: 8px;
  margin-right: 4px;
}

@media (max-width: 51.1875em) {
  .latest-tweets {
    display: none;
  }

  .tweet {
    margin-bottom: 30px;
  }
}
@media (min-width: 40em) and (max-width: 59.9375em) {
  .tweet-user {
    display: block;
    overflow: hidden;
    margin-bottom: 12px;
  }
}
.doc-heading {
  margin-bottom: 30px;
}
.doc-heading__h1 {
  border-width: 0 0 2px;
  border-style: solid;
  padding-bottom: 15px;
  margin-bottom: 15px;
  margin-top: 0;
  font-size: 30px;
}
.doc-heading__tag {
  margin: 0 0 5px;
  font-weight: 600;
  font-style: italic;
}

.doc-heading--multi-currency .multi-currency {
  padding-bottom: 20px;
  width: 100%;
}

@media (min-width: 40em) {
  .doc-heading {
    margin-bottom: 40px;
  }
  .doc-heading__h1 {
    font-size: 36px;
  }
  .doc-heading__summary {
    font-size: 20px;
  }
  .doc-heading__tag {
    font-size: 18px;
  }

  .doc-heading--multi-currency {
    border-width: 0 0 2px;
    border-style: solid;
    margin-bottom: 55px;
  }
  .doc-heading--multi-currency:after {
    content: '';
    display: table;
    clear: both;
  }
  .doc-heading--multi-currency .doc-heading,
  .doc-heading--multi-currency .multi-currency {
    float: left;
    width: 50%;
  }
  .doc-heading--multi-currency .doc-heading {
    margin-bottom: 0;
  }
  .doc-heading--multi-currency .doc-heading__h1 {
    border-bottom: none;
    margin-bottom: 0;
  }
  .doc-heading--multi-currency .multi-currency {
    padding: 8px 0;
    text-align: right;
  }
  .doc-heading--multi-currency .multi-currency__label,
  .doc-heading--multi-currency .multi-currency .dd-chrome {
    display: inline-block;
  }
}
@media (min-width: 75em) {
  .doc-heading {
    margin-bottom: 50px;
  }
  .doc-heading__h1 {
    font-size: 49px;
  }

  .doc-heading--multi-currency {
    margin-bottom: 65px;
  }
  .doc-heading--multi-currency .multi-currency {
    padding: 16px 20px;
  }
}
.social__heading, .social__list {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.social__heading {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-style: italic;
}
.social__heading:after {
  content: ':';
}
.social__list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  padding-left: 20px;
}
.social__item {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.social__link {
  display: block;
}
.social__link .icon {
  margin-top: 0;
  width: 40px;
  height: 40px;
  background-position: center;
}
.social--share {
  margin: 10px 0;
  padding: 10px 0;
  border-width: 1px 0;
  border-style: dashed;
}

@media (max-width: 19.3125em) {
  .social__heading {
    display: none;
  }
  .social__list {
    padding-left: 0;
  }
}
/**
 * Features common to multiple pages.
 */
.site-width,
.main {
  max-width: 1360px;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}

.main-content {
  padding-bottom: 40px;
}

.page-content {
  padding-top: 30px;
}

@media (min-width: 40em) {
  .site-width,
  .main {
    margin: 0 auto;
    width: 95%;
  }

  .page-content {
    padding-bottom: 60px;
  }

  .two-col .page-content {
    margin-left: -30px;
  }
  .two-col .main-content {
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align: top;
    padding-left: 30px;
    margin-right: -0.25em;
    width: 69%;
  }
  .two-col .side-content {
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align: top;
    padding-left: 30px;
    margin-right: -0.25em;
    width: 31%;
  }
}
@media (min-width: 75em) {
  .page-content {
    padding-bottom: 100px;
  }

  .two-col .page-content {
    margin-left: -6.25em;
  }
  .two-col .main-content {
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align: top;
    padding-left: 6.25em;
    margin-right: -0.25em;
    width: 69%;
  }
  .two-col .side-content {
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align: top;
    padding-left: 6.25em;
    margin-right: -0.25em;
    width: 31%;
  }
}
/**
 * For hooking in to JS state changes
 */

/*# sourceMappingURL=style.css.map */