@charset "UTF-8";
/**
	Construct
	Version: 0.0.1

	The construct is the base dependency for all core files and modules.
	Contains:
		-- Toolkit
		-- Assets
		-- Settings (including Foundation settings)
*/
/**
 * # Text Sizes
 *
 * Use with mixins:
 *  construct/toolkit/mixins/type#text-style
 *  construct/toolkit/mixins/type#text-size
 *  construct/toolkit/mixins/type#text-weight
 */
/**
 * Small Up Text Sizes
 * @type {Map}
 */
/**
 * Medium Up Text Sizes
 * @type {Map}
 */
/**
 * Large Up Text Sizes
 * @type {Map}
 */
/**
 * Export Global Text Sizes
 * @type {Map}
 */
/**
 * Text Styles
 */
/**
 * Small Up Styles
 * @type {Map}
 */
/**
 * Small Up Styles
 * @type {Map}
 */
/**
 * Small Up Styles
 * @type {Map}
 */
/**
 * Export Global Text Style Collection
 * @type {Map}
 */
/* Prevent Foundation from create css */
/**
	Assets

	Reference all Global assets here.
*/
/**
	Assets

	Reference all Global assets here.
*/
/**
 * Project Themes
 *
 * A colour theme is composed of several maps available as
 * variables:
 *
 * 1. As a key in the master `$theme` variable:
 *
 *    $themes: (
 *      THEME_NAME: $THEME_VARIABLE
 *    );
 *
 * 2. As a variable for each component in the theme:
 *
 *    $theme-links-THEMENAME
 *    $theme-blocks-THEMENAME
 *    $theme-datestamps-THEMENAME
 *    $theme-tables-THEMENAME
 *    etc
 *
 * 3. Each themes component is referred to in a master Map
 *  ie, all theme maps for blocks are collated into :
 *
 *    `$theme-blocks`
 *
 * 4. For each new theme component map that is created every
 *    other theme *must* define it.
 *
 */
/**
 * Import separate theme files first
 */
/**
 * Define themes for links as mappable items
 * @type {Map}
 */
/**
 * Define themes for buttons as mappable items
 * @type {Map}
 */
/**
 * Icons
 */
/**
 * Blocks
 */
/* Datestamp */
/* Tables */
/* Navigations */
/* Navigations */
/**
 * Themes
 */
/**
 * Font Assets
 *
 * - reference all fonts here first.
 */
/**
 * Icons used as images
 */
/**
 *
 * Embeded Image Icons
 *
 * Any datauri icons embeded in the
 * stylesheets need to be declared here as
 * variables
 */
@font-face {
  font-family: 'icons';
  src: url("/Static/Theme/fonts/icons--202392383007b5b23c94c26795437bc7.eot");
  src: url("/Static/Theme/fonts/icons--202392383007b5b23c94c26795437bc7.eot?#iefix") format("eot"), url("/Static/Theme/fonts/icons--a38c330a3a09bcb56bdf71d7625f610b.woff") format("woff"), url("/Static/Theme/fonts/icons--fd818761a7753efe32436acc4400dd5a.ttf") format("truetype"); }

/**
 *
 */
/**
 *  Timing Functions
 */
/**
 * Loading Spinner
 * !default means use these values if this variable is empty.
 */
/**
 * Vendor
 */
body {
  /* Addresses a small issue in webkit: http://bit.ly/NEdoDq */
  -webkit-backface-visibility: hidden; }

.animated {
  animation-duration: 1s;
  animation-fill-mode: both; }

/**
 * a tag with various event states.
 * @param  {String} $theme name of the colour theme as
 *                  described in construct/assets/themes(.scss)
 * @param  {String} $variant type of button variant (primary, secondary, etc)
 */
/**
 * A tag with a [href='*']:visited
 * @param {String} $theme [description]
 */
/**
 * A tag with a [href='*']:hover
 * @param  {String} $theme [description]
 */
/**
 * A tag with a [href='*']:active
 * @param  {String} $theme [description]
 */
/**
 * A tag with a [href='*']:focus
 * @param  {String} $theme [description]
 */
/**
 * A tag with a [href='*']:visited
 * @param  {String} $theme [description]
 */
/**
 * Font helper Mixins
 */
/**
 * Set the base style for a font-icon class
 * @param  {String} $font name of the font-family
 *                  and the file (sans extension)
 */
/**
 * Element covers the entire container.
 * Container requires position: relative;
 */
/**
 * Vertically center an element within the container.
 * Container requires position: relative;
 */
/**
 * a tag with various event states.
 * @param  {String} $theme name of the colour theme as
 *                  described in construct/assets/themes(.scss)
 */
/**
 * Implement a colour theme based on
 * the theme name
 * see :
 *  - construct/assets/_themes.scss
 *  - construct/assets/themes/*.tables.scss
 */
/**
 * Base table Layout
 */
/***
 * Stacked Cell Tables
 * a.k.a Mobile Tables
 * http://codepen.io/geoffyuen/pen/FCBEg
 */
/**
 * Normal Table Layout
 * (ie with column headers and columns)
 */
/**
 * [theme description]
 * @param  {[type]} $name: base          [description]
 * @return {[type]}        [description]
 * @TODO add html example
 */
/**
 * Colour Theme for Header HR
 *  Article Mountain Range SVG
 * @contentblock article
 * @param  {String} $color valid css colour
 */
/**
 * Article Colour Themer
 * @contentblock article
 * @param  {String} $name key in $block-themes
 * @TODO add html example
 */
/**
 * @TODO add html example
 */
/**
 * Block Icon Layout
 * @contentblock icon
 * @TODO add html example
 */
/**
 * [theme description]
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 * @TODO add html example
 */
/**
 * Rate Table Header Layout
 * @contentblock rate-table
 */
/**
 * Content Block Mixins
 *
 * Naming convention:
 *
 *    For content block types:
 *
 *    content-block-<THING>-layout
 *      - for base layout of THING, takes no variables
 *
 *    content-block-<THING>-theme
 *      - for themes.
 *      - takes one variable: a string that is the name of the colour theme
 *
 *    content-block-<THING>-SUBTHING-BLAH-FOO
 *      - repeatable behaviour styles
 *      - may take as many variables as required
 *
 *
 *
 * Commenting Conventions:
 *  - use docblock (jsdoc) format
 *  - all comment blocks have:
 *    - Mixin name
 *    - Mixin description
 *    - @contentblock CONTENT_BLOCK_NAME
 *    - list of @param {datatype} description
 *    - an indented html example that this mixin applies to.
 */
/**
 * Block Icon Layout
 * @contentblock icon
 * @TODO add html example
 */
/**
 * [theme description]
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 * @TODO add html example
 */
/**
 * [theme description]
 * @param  {[type]} $name: base          [description]
 * @return {[type]}        [description]
 * @TODO add html example
 */
/**
 * Content Blocks With Hero Mask
 * @contentblock any
 */
/**
 * @contentblock any
 */
/**
 * ???
 * @TODO: document this.
 * @return {[type]} [description]
 */
/**
 * [layout description]
 * @return {[type]} [description]
 * @TODO add html example
 */
/**
 * [hero description]
 * @return {[type]} [description]
 * @TODO add html example
 */
/**
 * [horizontally description]
 * @return {[type]} [description]
 * @TODO add html example
 */
/**
 * [theme description]
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 * @TODO add html example
 */
/**
 * [alignment description]
 * @param  {[type]} $alignment: center        [description]
 * @return {[type]}             [description]
 * @TODO add html example
 */
/**
 * [height description]
 * @param  {[type]} $height [description]
 * @return {[type]}         [description]
 * @TODO add html example
 */
/**
 * Position Block Footers
 * @TODO add html example
 */
/**
 * [alignment description]
 * @param  {[type]} $alignment: center        [description]
 * @return {[type]}             [description]
 * @TODO add html example
 */
/**
 * [theme description]
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 */
/**
 * Element covers the entire container.
 * Container requires position: relative;
 */
/**
 * Vertically center an element within the container.
 * Container requires position: relative;
 */
/**
 * [content description]
 * @return {[type]} [description]
 */
/**
 * Layouts
 */
/**
 * Base Layout
 * @param  {Number} `$bottom` padding for bottom edge
 */
/* mixin name derp . */
/**
 * Layout: Header
 * @return {[type]} [description]
 */
/**
 * Layout: Header Alignment
 */
/**
 * Layout: Footer Alignment
 * @param  {[type]} $alignment: center        [description]
 * @return {[type]}             [description]
 */
/**
 * Layout: Footer Layout
 * @return {[type]} [description]
 */
/**
 * Layout Theme CSS Generator
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 */
/**
 * Layout Theme
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 */
/**
 * Layout Theme: Footer
 * @param  {[type]} $textColor [description]
 * @param  {[type]} $theme     [description]
 * @return {[type]}            [description]
 */
/**
 * Layout Theme: Arrange Background
 * @return {[type]} [description]
 */
/**
 * Layout: Keep blocks Height same as Width
 */
/**
 * Layout: Remove Gaps
 * @return {[type]} [description]
 */
/**
 *
 * @param  {[type]} $breakpoint: small-up      [description]
 * @return {[type]}              [description]
 */
/**
 * removes margins on boundary row content blocks
 * @param  {[type]} $count: 1             [description]
 * @return {[type]}         [description]
 */
/**
 * adds margins on non boundary row content blocks
 * @param  {[type]} $count: 1             [description]
 * @return {[type]}         [description]
 */
/**
 * Make a layout full width
 */
/**
 * ???
 * @TODO: document this.
 * @param  {[type]} $top:    0              [description]
 * @param  {[type]} $right:  $column-gutter [description]
 * @param  {[type]} $bottom: 0              [description]
 * @param  {[type]} $left:   $column-gutter [description]
 * @return {[type]}          [description]
 */
/**
 * [theme description]
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 */
/**
 * Height of nav container
 * sum of heights of main and section nav
 */
/**
 * Height of nav container
 * Large up, sticky mode
 * sum of heights of main and section nav
 */
/**
 * Determines height of nav backdrop and logo container
 * Should equal height of contained nav <a>
 */
/**
 * [labels description]
 * @return {[type]} [description]
 */
/**
 * Login link
 */
/**
 * Logo link
 */
/**
 * Corresponds with xlargeup breakpoint
 */
/**
 * Mega Menu Mixins
 */
/**
 * Animation
 */
/**
 * Current item indicator
 *
 * draws a triangle on the bottom of the menu item
 */
/**
 * Modifies the triangle when menu is sticky
 */
/**
 * Links
 */
/**
 * Applies pseudo styles to navigation
 * Drawn from navigation themes
 */
/**
 * Pick a Theme Set, defaults to $default-theme-name if theme not found
 * @param  {String} $set    Colour theme map Set ($themes, $theme-blocks, etc)
 * @param  {String} $name   Colour theme name, a key in $set
 * @return {Map}			The colour theme map
 */
/**
 * Pick Text Style From Global Map
 * @link	styles/theme/default/construct/settings/core/_type.scss
 * @param  {String} $breakpoint key in $text-styles
 * @param  {String} $name       key in $text-styles[$breakpoint]
 * @return {Map}                map of font-size, line-height, font-weight, etc
 */
/**
 * Pick Text Font Size
 * @link	styles/theme/default/construct/settings/core/_type.scss
 * @param  {String} $set       key in $text-sizes
 * @param  {String} $size      key in $set (xxsmall, xsmall, small, normal, etc)
 * @return {Integer}
 */
/**
 * Pick Text Weight
 * @link	styles/theme/default/construct/settings/core/_type.scss
 * @param  {String} $set       key in $text-sizes
 * @param  {String} $weight      key in $set (xxsmall, xsmall, small, normal, etc)
 * @return {Integer}
 */
/**
 * SVG Tools
 * Source: http://codepen.io/jakob-e/pen/doMoML
 */
meta.foundation-version {
  font-family: "/5.5.3/"; }

meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

meta.foundation-mq-small-only {
  font-family: "/only screen and (max-width: 30em)/";
  width: 0em; }

meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:30.063em)/";
  width: 30.063em; }

meta.foundation-mq-medium-only {
  font-family: "/only screen and (min-width:30.063em) and (max-width:55em)/";
  width: 30.063em; }

meta.foundation-mq-large {
  font-family: "/only screen and (min-width:55.063em)/";
  width: 55.063em; }

meta.foundation-mq-large-only {
  font-family: "/only screen and (min-width:55.063em) and (max-width:75em)/";
  width: 55.063em; }

meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:75.063em)/";
  width: 75.063em; }

meta.foundation-mq-xlarge-only {
  font-family: "/only screen and (min-width:75.063em) and (max-width:120em)/";
  width: 75.063em; }

meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

meta.foundation-data-attribute-namespace {
  font-family: false; }

/**
	Construct
	Version: 0.0.1

	The construct is the base dependency for all core files and modules.
	Contains:
		-- Toolkit
		-- Assets
		-- Settings (including Foundation settings)
*/
/**
 * # Text Sizes
 *
 * Use with mixins:
 *  construct/toolkit/mixins/type#text-style
 *  construct/toolkit/mixins/type#text-size
 *  construct/toolkit/mixins/type#text-weight
 */
/**
 * Small Up Text Sizes
 * @type {Map}
 */
/**
 * Medium Up Text Sizes
 * @type {Map}
 */
/**
 * Large Up Text Sizes
 * @type {Map}
 */
/**
 * Export Global Text Sizes
 * @type {Map}
 */
/**
 * Text Styles
 */
/**
 * Small Up Styles
 * @type {Map}
 */
/**
 * Small Up Styles
 * @type {Map}
 */
/**
 * Small Up Styles
 * @type {Map}
 */
/**
 * Export Global Text Style Collection
 * @type {Map}
 */
/* Prevent Foundation from create css */
/**
	Assets

	Reference all Global assets here.
*/
/**
	Assets

	Reference all Global assets here.
*/
/**
 * Project Themes
 *
 * A colour theme is composed of several maps available as
 * variables:
 *
 * 1. As a key in the master `$theme` variable:
 *
 *    $themes: (
 *      THEME_NAME: $THEME_VARIABLE
 *    );
 *
 * 2. As a variable for each component in the theme:
 *
 *    $theme-links-THEMENAME
 *    $theme-blocks-THEMENAME
 *    $theme-datestamps-THEMENAME
 *    $theme-tables-THEMENAME
 *    etc
 *
 * 3. Each themes component is referred to in a master Map
 *  ie, all theme maps for blocks are collated into :
 *
 *    `$theme-blocks`
 *
 * 4. For each new theme component map that is created every
 *    other theme *must* define it.
 *
 */
/**
 * Import separate theme files first
 */
/**
 * Define themes for links as mappable items
 * @type {Map}
 */
/**
 * Define themes for buttons as mappable items
 * @type {Map}
 */
/**
 * Icons
 */
/**
 * Blocks
 */
/* Datestamp */
/* Tables */
/* Navigations */
/* Navigations */
/**
 * Themes
 */
/**
 * Font Assets
 *
 * - reference all fonts here first.
 */
/**
 * Icons used as images
 */
/**
 *
 * Embeded Image Icons
 *
 * Any datauri icons embeded in the
 * stylesheets need to be declared here as
 * variables
 */
@font-face {
  font-family: 'icons';
  src: url("/Static/Theme/fonts/icons--202392383007b5b23c94c26795437bc7.eot");
  src: url("/Static/Theme/fonts/icons--202392383007b5b23c94c26795437bc7.eot?#iefix") format("eot"), url("/Static/Theme/fonts/icons--a38c330a3a09bcb56bdf71d7625f610b.woff") format("woff"), url("/Static/Theme/fonts/icons--fd818761a7753efe32436acc4400dd5a.ttf") format("truetype"); }

/**
 *
 */
/**
 *  Timing Functions
 */
/**
 * Loading Spinner
 * !default means use these values if this variable is empty.
 */
/**
 * Vendor
 */
body {
  /* Addresses a small issue in webkit: http://bit.ly/NEdoDq */
  -webkit-backface-visibility: hidden; }

.animated {
  animation-duration: 1s;
  animation-fill-mode: both; }

/**
 * a tag with various event states.
 * @param  {String} $theme name of the colour theme as
 *                  described in construct/assets/themes(.scss)
 * @param  {String} $variant type of button variant (primary, secondary, etc)
 */
/**
 * A tag with a [href='*']:visited
 * @param {String} $theme [description]
 */
/**
 * A tag with a [href='*']:hover
 * @param  {String} $theme [description]
 */
/**
 * A tag with a [href='*']:active
 * @param  {String} $theme [description]
 */
/**
 * A tag with a [href='*']:focus
 * @param  {String} $theme [description]
 */
/**
 * A tag with a [href='*']:visited
 * @param  {String} $theme [description]
 */
/**
 * Font helper Mixins
 */
/**
 * Set the base style for a font-icon class
 * @param  {String} $font name of the font-family
 *                  and the file (sans extension)
 */
/**
 * Element covers the entire container.
 * Container requires position: relative;
 */
/**
 * Vertically center an element within the container.
 * Container requires position: relative;
 */
/**
 * a tag with various event states.
 * @param  {String} $theme name of the colour theme as
 *                  described in construct/assets/themes(.scss)
 */
/**
 * Implement a colour theme based on
 * the theme name
 * see :
 *  - construct/assets/_themes.scss
 *  - construct/assets/themes/*.tables.scss
 */
/**
 * Base table Layout
 */
/***
 * Stacked Cell Tables
 * a.k.a Mobile Tables
 * http://codepen.io/geoffyuen/pen/FCBEg
 */
/**
 * Normal Table Layout
 * (ie with column headers and columns)
 */
/**
 * [theme description]
 * @param  {[type]} $name: base          [description]
 * @return {[type]}        [description]
 * @TODO add html example
 */
/**
 * Colour Theme for Header HR
 *  Article Mountain Range SVG
 * @contentblock article
 * @param  {String} $color valid css colour
 */
/**
 * Article Colour Themer
 * @contentblock article
 * @param  {String} $name key in $block-themes
 * @TODO add html example
 */
/**
 * @TODO add html example
 */
/**
 * Block Icon Layout
 * @contentblock icon
 * @TODO add html example
 */
/**
 * [theme description]
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 * @TODO add html example
 */
/**
 * Rate Table Header Layout
 * @contentblock rate-table
 */
/**
 * Content Block Mixins
 *
 * Naming convention:
 *
 *    For content block types:
 *
 *    content-block-<THING>-layout
 *      - for base layout of THING, takes no variables
 *
 *    content-block-<THING>-theme
 *      - for themes.
 *      - takes one variable: a string that is the name of the colour theme
 *
 *    content-block-<THING>-SUBTHING-BLAH-FOO
 *      - repeatable behaviour styles
 *      - may take as many variables as required
 *
 *
 *
 * Commenting Conventions:
 *  - use docblock (jsdoc) format
 *  - all comment blocks have:
 *    - Mixin name
 *    - Mixin description
 *    - @contentblock CONTENT_BLOCK_NAME
 *    - list of @param {datatype} description
 *    - an indented html example that this mixin applies to.
 */
/**
 * Block Icon Layout
 * @contentblock icon
 * @TODO add html example
 */
/**
 * [theme description]
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 * @TODO add html example
 */
/**
 * [theme description]
 * @param  {[type]} $name: base          [description]
 * @return {[type]}        [description]
 * @TODO add html example
 */
/**
 * Content Blocks With Hero Mask
 * @contentblock any
 */
/**
 * @contentblock any
 */
/**
 * ???
 * @TODO: document this.
 * @return {[type]} [description]
 */
/**
 * [layout description]
 * @return {[type]} [description]
 * @TODO add html example
 */
/**
 * [hero description]
 * @return {[type]} [description]
 * @TODO add html example
 */
/**
 * [horizontally description]
 * @return {[type]} [description]
 * @TODO add html example
 */
/**
 * [theme description]
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 * @TODO add html example
 */
/**
 * [alignment description]
 * @param  {[type]} $alignment: center        [description]
 * @return {[type]}             [description]
 * @TODO add html example
 */
/**
 * [height description]
 * @param  {[type]} $height [description]
 * @return {[type]}         [description]
 * @TODO add html example
 */
/**
 * Position Block Footers
 * @TODO add html example
 */
/**
 * [alignment description]
 * @param  {[type]} $alignment: center        [description]
 * @return {[type]}             [description]
 * @TODO add html example
 */
/**
 * [theme description]
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 */
/**
 * Element covers the entire container.
 * Container requires position: relative;
 */
/**
 * Vertically center an element within the container.
 * Container requires position: relative;
 */
/**
 * [content description]
 * @return {[type]} [description]
 */
/**
 * Layouts
 */
/**
 * Base Layout
 * @param  {Number} `$bottom` padding for bottom edge
 */
/* mixin name derp . */
/**
 * Layout: Header
 * @return {[type]} [description]
 */
/**
 * Layout: Header Alignment
 */
/**
 * Layout: Footer Alignment
 * @param  {[type]} $alignment: center        [description]
 * @return {[type]}             [description]
 */
/**
 * Layout: Footer Layout
 * @return {[type]} [description]
 */
/**
 * Layout Theme CSS Generator
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 */
/**
 * Layout Theme
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 */
/**
 * Layout Theme: Footer
 * @param  {[type]} $textColor [description]
 * @param  {[type]} $theme     [description]
 * @return {[type]}            [description]
 */
/**
 * Layout Theme: Arrange Background
 * @return {[type]} [description]
 */
/**
 * Layout: Keep blocks Height same as Width
 */
/**
 * Layout: Remove Gaps
 * @return {[type]} [description]
 */
/**
 *
 * @param  {[type]} $breakpoint: small-up      [description]
 * @return {[type]}              [description]
 */
/**
 * removes margins on boundary row content blocks
 * @param  {[type]} $count: 1             [description]
 * @return {[type]}         [description]
 */
/**
 * adds margins on non boundary row content blocks
 * @param  {[type]} $count: 1             [description]
 * @return {[type]}         [description]
 */
/**
 * Make a layout full width
 */
/**
 * ???
 * @TODO: document this.
 * @param  {[type]} $top:    0              [description]
 * @param  {[type]} $right:  $column-gutter [description]
 * @param  {[type]} $bottom: 0              [description]
 * @param  {[type]} $left:   $column-gutter [description]
 * @return {[type]}          [description]
 */
/**
 * [theme description]
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 */
/**
 * Height of nav container
 * sum of heights of main and section nav
 */
/**
 * Height of nav container
 * Large up, sticky mode
 * sum of heights of main and section nav
 */
/**
 * Determines height of nav backdrop and logo container
 * Should equal height of contained nav <a>
 */
/**
 * [labels description]
 * @return {[type]} [description]
 */
/**
 * Login link
 */
/**
 * Logo link
 */
/**
 * Corresponds with xlargeup breakpoint
 */
/**
 * Mega Menu Mixins
 */
/**
 * Animation
 */
/**
 * Current item indicator
 *
 * draws a triangle on the bottom of the menu item
 */
/**
 * Modifies the triangle when menu is sticky
 */
/**
 * Links
 */
/**
 * Applies pseudo styles to navigation
 * Drawn from navigation themes
 */
/**
 * Pick a Theme Set, defaults to $default-theme-name if theme not found
 * @param  {String} $set    Colour theme map Set ($themes, $theme-blocks, etc)
 * @param  {String} $name   Colour theme name, a key in $set
 * @return {Map}			The colour theme map
 */
/**
 * Pick Text Style From Global Map
 * @link	styles/theme/default/construct/settings/core/_type.scss
 * @param  {String} $breakpoint key in $text-styles
 * @param  {String} $name       key in $text-styles[$breakpoint]
 * @return {Map}                map of font-size, line-height, font-weight, etc
 */
/**
 * Pick Text Font Size
 * @link	styles/theme/default/construct/settings/core/_type.scss
 * @param  {String} $set       key in $text-sizes
 * @param  {String} $size      key in $set (xxsmall, xsmall, small, normal, etc)
 * @return {Integer}
 */
/**
 * Pick Text Weight
 * @link	styles/theme/default/construct/settings/core/_type.scss
 * @param  {String} $set       key in $text-sizes
 * @param  {String} $weight      key in $set (xxsmall, xsmall, small, normal, etc)
 * @return {Integer}
 */
/**
 * SVG Tools
 * Source: http://codepen.io/jakob-e/pen/doMoML
 */
/**
 * Atoms
 */
@font-face {
  font-family: icons;
  font-style: normal;
  font-weight: normal;
  src: url("/Static/Theme/fonts/icons--202392383007b5b23c94c26795437bc7.eot?#iefix") format("embedded-opentype"), url("/Static/Theme/fonts/icons--a38c330a3a09bcb56bdf71d7625f610b.woff") format("woff"), url("/Static/Theme/fonts/icons--fd818761a7753efe32436acc4400dd5a.ttf") format("truetype"); }

[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "icons";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: inherit;
  /* position */
  text-align: center;
  display: inline-block;
  line-height: 1;
  /* prevent screen reader */
  speak: none;
  /* appearance */
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: inherit; }

.icon-accounts:before {
  content: ""; }

.icon-address:before {
  content: ""; }

.icon-apply:before {
  content: ""; }

.icon-back-to-top:before {
  content: ""; }

.icon-book-a-time:before {
  content: ""; }

.icon-calculator:before {
  content: ""; }

.icon-calendar:before {
  content: ""; }

.icon-call-us:before {
  content: ""; }

.icon-car-loans:before {
  content: ""; }

.icon-comment:before {
  content: ""; }

.icon-credit-cards:before {
  content: ""; }

.icon-details:before {
  content: ""; }

.icon-down-arrow:before {
  content: ""; }

.icon-email-us:before {
  content: ""; }

.icon-facebook:before {
  content: ""; }

.icon-favourite:before {
  content: ""; }

.icon-fax-us:before {
  content: ""; }

.icon-female:before {
  content: ""; }

.icon-home-loans:before {
  content: ""; }

.icon-home:before {
  content: ""; }

.icon-important:before {
  content: ""; }

.icon-instagram:before {
  content: ""; }

.icon-investments:before {
  content: ""; }

.icon-key:before {
  content: ""; }

.icon-left-arrow:before {
  content: ""; }

.icon-linkedin:before {
  content: ""; }

.icon-loan-packages:before {
  content: ""; }

.icon-locate:before {
  content: ""; }

.icon-male:before {
  content: ""; }

.icon-most-popular:before {
  content: ""; }

.icon-padlock:before {
  content: ""; }

.icon-pay:before {
  content: ""; }

.icon-personal-loans:before {
  content: ""; }

.icon-play:before {
  content: ""; }

.icon-rates:before {
  content: ""; }

.icon-recycle:before {
  content: ""; }

.icon-reply:before {
  content: ""; }

.icon-retweet:before {
  content: ""; }

.icon-right-arrow:before {
  content: ""; }

.icon-rss:before {
  content: ""; }

.icon-save:before {
  content: ""; }

.icon-savings:before {
  content: ""; }

.icon-search:before {
  content: ""; }

.icon-settings:before {
  content: ""; }

.icon-solid-alert-alt:before {
  content: ""; }

.icon-solid-alert-noframe:before {
  content: ""; }

.icon-solid-alert:before {
  content: ""; }

.icon-solid-apply-alt:before {
  content: ""; }

.icon-solid-apply-noframe:before {
  content: ""; }

.icon-solid-apply:before {
  content: ""; }

.icon-solid-book-a-time-alt:before {
  content: ""; }

.icon-solid-book-a-time-noframe:before {
  content: ""; }

.icon-solid-book-a-time:before {
  content: ""; }

.icon-solid-calculator-alt:before {
  content: ""; }

.icon-solid-calculator-noframe:before {
  content: ""; }

.icon-solid-calculator:before {
  content: ""; }

.icon-solid-call-us-alt:before {
  content: ""; }

.icon-solid-call-us-noframe:before {
  content: ""; }

.icon-solid-call-us:before {
  content: ""; }

.icon-solid-email-us-alt:before {
  content: ""; }

.icon-solid-email-us-noframe:before {
  content: ""; }

.icon-solid-email-us:before {
  content: ""; }

.icon-solid-facebook-alt:before {
  content: ""; }

.icon-solid-facebook-noframe:before {
  content: ""; }

.icon-solid-facebook:before {
  content: ""; }

.icon-solid-fax-us-alt:before {
  content: ""; }

.icon-solid-fax-us-noframe:before {
  content: ""; }

.icon-solid-fax-us:before {
  content: ""; }

.icon-solid-home-loan-alt:before {
  content: ""; }

.icon-solid-home-loan-noframe:before {
  content: ""; }

.icon-solid-home-loan:before {
  content: ""; }

.icon-solid-instagram-alt:before {
  content: ""; }

.icon-solid-instagram-noframe:before {
  content: ""; }

.icon-solid-left-arrow-alt:before {
  content: ""; }

.icon-solid-left-arrow-noframe:before {
  content: ""; }

.icon-solid-left-arrow:before {
  content: ""; }

.icon-solid-linkedin-alt:before {
  content: ""; }

.icon-solid-linkedin-noframe:before {
  content: ""; }

.icon-solid-linkedin:before {
  content: ""; }

.icon-solid-personal-loan-alt:before {
  content: ""; }

.icon-solid-personal-loan-noframe:before {
  content: ""; }

.icon-solid-personal-loan:before {
  content: ""; }

.icon-solid-play-noframe:before {
  content: ""; }

.icon-solid-play-right:before {
  content: ""; }

.icon-solid-play:before {
  content: ""; }

.icon-solid-rates-alt:before {
  content: ""; }

.icon-solid-rates-noframe:before {
  content: ""; }

.icon-solid-rates:before {
  content: ""; }

.icon-solid-recycle-alt:before {
  content: ""; }

.icon-solid-recycle-noframe:before {
  content: ""; }

.icon-solid-recycle:before {
  content: ""; }

.icon-solid-right-arrow-alt:before {
  content: ""; }

.icon-solid-right-arrow-noframe:before {
  content: ""; }

.icon-solid-right-arrow:before {
  content: ""; }

.icon-solid-secure-alt:before {
  content: ""; }

.icon-solid-secure-noframe:before {
  content: ""; }

.icon-solid-secure:before {
  content: ""; }

.icon-solid-twitter-alt:before {
  content: ""; }

.icon-solid-twitter-noframe:before {
  content: ""; }

.icon-solid-twitter:before {
  content: ""; }

.icon-solid-visit-us-alt:before {
  content: ""; }

.icon-solid-visit-us-noframe:before {
  content: ""; }

.icon-solid-visit-us:before {
  content: ""; }

.icon-solid-visit-website-alt:before {
  content: ""; }

.icon-solid-visit-website-noframe:before {
  content: ""; }

.icon-solid-visit-website:before {
  content: ""; }

.icon-solid-write-to-us-alt:before {
  content: ""; }

.icon-solid-write-to-us-noframe:before {
  content: ""; }

.icon-solid-write-to-us:before {
  content: ""; }

.icon-solid-youtube-alt:before {
  content: ""; }

.icon-solid-youtube-noframe:before {
  content: ""; }

.icon-solid-youtube:before {
  content: ""; }

.icon-support:before {
  content: ""; }

.icon-tag:before {
  content: ""; }

.icon-tools:before {
  content: ""; }

.icon-transfer:before {
  content: ""; }

.icon-twitter:before {
  content: ""; }

.icon-up-arrow:before {
  content: ""; }

.icon-visiit-website:before {
  content: ""; }

.icon-visit-us:before {
  content: ""; }

.icon-write-to-us:before {
  content: ""; }

.icon-youtube:before {
  content: ""; }

.icon-feedback:before {
  content: ""; }

.icon-solid-register-noframe:before {
  content: ""; }

.icon-solid-register:before {
  content: ""; }

.icon-close:before {
  content: ""; }

.icon-percent-pa-annotated:before {
  content: ""; }

.icon-percent-pa:before {
  content: ""; }

.icon-reset:before {
  content: ""; }

.icon-tick:before {
  content: ""; }

.icon-use-my-location:before {
  content: ""; }

@keyframes rotate-forever {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

.icon-spin {
  animation-name: rotate-forever;
  animation-duration: 1s;
  animation-iteration-count: infinite; }

/**
	Construct
	Version: 0.0.1

	The construct is the base dependency for all core files and modules.
	Contains:
		-- Toolkit
		-- Assets
		-- Settings (including Foundation settings)
*/
/**
 * # Text Sizes
 *
 * Use with mixins:
 *  construct/toolkit/mixins/type#text-style
 *  construct/toolkit/mixins/type#text-size
 *  construct/toolkit/mixins/type#text-weight
 */
/**
 * Small Up Text Sizes
 * @type {Map}
 */
/**
 * Medium Up Text Sizes
 * @type {Map}
 */
/**
 * Large Up Text Sizes
 * @type {Map}
 */
/**
 * Export Global Text Sizes
 * @type {Map}
 */
/**
 * Text Styles
 */
/**
 * Small Up Styles
 * @type {Map}
 */
/**
 * Small Up Styles
 * @type {Map}
 */
/**
 * Small Up Styles
 * @type {Map}
 */
/**
 * Export Global Text Style Collection
 * @type {Map}
 */
/* Prevent Foundation from create css */
/**
	Assets

	Reference all Global assets here.
*/
/**
	Assets

	Reference all Global assets here.
*/
/**
 * Project Themes
 *
 * A colour theme is composed of several maps available as
 * variables:
 *
 * 1. As a key in the master `$theme` variable:
 *
 *    $themes: (
 *      THEME_NAME: $THEME_VARIABLE
 *    );
 *
 * 2. As a variable for each component in the theme:
 *
 *    $theme-links-THEMENAME
 *    $theme-blocks-THEMENAME
 *    $theme-datestamps-THEMENAME
 *    $theme-tables-THEMENAME
 *    etc
 *
 * 3. Each themes component is referred to in a master Map
 *  ie, all theme maps for blocks are collated into :
 *
 *    `$theme-blocks`
 *
 * 4. For each new theme component map that is created every
 *    other theme *must* define it.
 *
 */
/**
 * Import separate theme files first
 */
/**
 * Define themes for links as mappable items
 * @type {Map}
 */
/**
 * Define themes for buttons as mappable items
 * @type {Map}
 */
/**
 * Icons
 */
/**
 * Blocks
 */
/* Datestamp */
/* Tables */
/* Navigations */
/* Navigations */
/**
 * Themes
 */
/**
 * Font Assets
 *
 * - reference all fonts here first.
 */
/**
 * Icons used as images
 */
/**
 *
 * Embeded Image Icons
 *
 * Any datauri icons embeded in the
 * stylesheets need to be declared here as
 * variables
 */
@font-face {
  font-family: 'icons';
  src: url("/Static/Theme/fonts/icons--202392383007b5b23c94c26795437bc7.eot");
  src: url("/Static/Theme/fonts/icons--202392383007b5b23c94c26795437bc7.eot?#iefix") format("eot"), url("/Static/Theme/fonts/icons--a38c330a3a09bcb56bdf71d7625f610b.woff") format("woff"), url("/Static/Theme/fonts/icons--fd818761a7753efe32436acc4400dd5a.ttf") format("truetype"); }

/**
 *
 */
/**
 *  Timing Functions
 */
/**
 * Loading Spinner
 * !default means use these values if this variable is empty.
 */
/**
 * Vendor
 */
body {
  /* Addresses a small issue in webkit: http://bit.ly/NEdoDq */
  -webkit-backface-visibility: hidden; }

.animated {
  animation-duration: 1s;
  animation-fill-mode: both; }

/**
 * a tag with various event states.
 * @param  {String} $theme name of the colour theme as
 *                  described in construct/assets/themes(.scss)
 * @param  {String} $variant type of button variant (primary, secondary, etc)
 */
/**
 * A tag with a [href='*']:visited
 * @param {String} $theme [description]
 */
/**
 * A tag with a [href='*']:hover
 * @param  {String} $theme [description]
 */
/**
 * A tag with a [href='*']:active
 * @param  {String} $theme [description]
 */
/**
 * A tag with a [href='*']:focus
 * @param  {String} $theme [description]
 */
/**
 * A tag with a [href='*']:visited
 * @param  {String} $theme [description]
 */
/**
 * Font helper Mixins
 */
/**
 * Set the base style for a font-icon class
 * @param  {String} $font name of the font-family
 *                  and the file (sans extension)
 */
/**
 * Element covers the entire container.
 * Container requires position: relative;
 */
/**
 * Vertically center an element within the container.
 * Container requires position: relative;
 */
/**
 * a tag with various event states.
 * @param  {String} $theme name of the colour theme as
 *                  described in construct/assets/themes(.scss)
 */
/**
 * Implement a colour theme based on
 * the theme name
 * see :
 *  - construct/assets/_themes.scss
 *  - construct/assets/themes/*.tables.scss
 */
/**
 * Base table Layout
 */
/***
 * Stacked Cell Tables
 * a.k.a Mobile Tables
 * http://codepen.io/geoffyuen/pen/FCBEg
 */
/**
 * Normal Table Layout
 * (ie with column headers and columns)
 */
/**
 * [theme description]
 * @param  {[type]} $name: base          [description]
 * @return {[type]}        [description]
 * @TODO add html example
 */
/**
 * Colour Theme for Header HR
 *  Article Mountain Range SVG
 * @contentblock article
 * @param  {String} $color valid css colour
 */
/**
 * Article Colour Themer
 * @contentblock article
 * @param  {String} $name key in $block-themes
 * @TODO add html example
 */
/**
 * @TODO add html example
 */
/**
 * Block Icon Layout
 * @contentblock icon
 * @TODO add html example
 */
/**
 * [theme description]
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 * @TODO add html example
 */
/**
 * Rate Table Header Layout
 * @contentblock rate-table
 */
/**
 * Content Block Mixins
 *
 * Naming convention:
 *
 *    For content block types:
 *
 *    content-block-<THING>-layout
 *      - for base layout of THING, takes no variables
 *
 *    content-block-<THING>-theme
 *      - for themes.
 *      - takes one variable: a string that is the name of the colour theme
 *
 *    content-block-<THING>-SUBTHING-BLAH-FOO
 *      - repeatable behaviour styles
 *      - may take as many variables as required
 *
 *
 *
 * Commenting Conventions:
 *  - use docblock (jsdoc) format
 *  - all comment blocks have:
 *    - Mixin name
 *    - Mixin description
 *    - @contentblock CONTENT_BLOCK_NAME
 *    - list of @param {datatype} description
 *    - an indented html example that this mixin applies to.
 */
/**
 * Block Icon Layout
 * @contentblock icon
 * @TODO add html example
 */
/**
 * [theme description]
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 * @TODO add html example
 */
/**
 * [theme description]
 * @param  {[type]} $name: base          [description]
 * @return {[type]}        [description]
 * @TODO add html example
 */
/**
 * Content Blocks With Hero Mask
 * @contentblock any
 */
/**
 * @contentblock any
 */
/**
 * ???
 * @TODO: document this.
 * @return {[type]} [description]
 */
/**
 * [layout description]
 * @return {[type]} [description]
 * @TODO add html example
 */
/**
 * [hero description]
 * @return {[type]} [description]
 * @TODO add html example
 */
/**
 * [horizontally description]
 * @return {[type]} [description]
 * @TODO add html example
 */
/**
 * [theme description]
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 * @TODO add html example
 */
/**
 * [alignment description]
 * @param  {[type]} $alignment: center        [description]
 * @return {[type]}             [description]
 * @TODO add html example
 */
/**
 * [height description]
 * @param  {[type]} $height [description]
 * @return {[type]}         [description]
 * @TODO add html example
 */
/**
 * Position Block Footers
 * @TODO add html example
 */
/**
 * [alignment description]
 * @param  {[type]} $alignment: center        [description]
 * @return {[type]}             [description]
 * @TODO add html example
 */
/**
 * [theme description]
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 */
/**
 * Element covers the entire container.
 * Container requires position: relative;
 */
/**
 * Vertically center an element within the container.
 * Container requires position: relative;
 */
/**
 * [content description]
 * @return {[type]} [description]
 */
/**
 * Layouts
 */
/**
 * Base Layout
 * @param  {Number} `$bottom` padding for bottom edge
 */
/* mixin name derp . */
/**
 * Layout: Header
 * @return {[type]} [description]
 */
/**
 * Layout: Header Alignment
 */
/**
 * Layout: Footer Alignment
 * @param  {[type]} $alignment: center        [description]
 * @return {[type]}             [description]
 */
/**
 * Layout: Footer Layout
 * @return {[type]} [description]
 */
/**
 * Layout Theme CSS Generator
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 */
/**
 * Layout Theme
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 */
/**
 * Layout Theme: Footer
 * @param  {[type]} $textColor [description]
 * @param  {[type]} $theme     [description]
 * @return {[type]}            [description]
 */
/**
 * Layout Theme: Arrange Background
 * @return {[type]} [description]
 */
/**
 * Layout: Keep blocks Height same as Width
 */
/**
 * Layout: Remove Gaps
 * @return {[type]} [description]
 */
/**
 *
 * @param  {[type]} $breakpoint: small-up      [description]
 * @return {[type]}              [description]
 */
/**
 * removes margins on boundary row content blocks
 * @param  {[type]} $count: 1             [description]
 * @return {[type]}         [description]
 */
/**
 * adds margins on non boundary row content blocks
 * @param  {[type]} $count: 1             [description]
 * @return {[type]}         [description]
 */
/**
 * Make a layout full width
 */
/**
 * ???
 * @TODO: document this.
 * @param  {[type]} $top:    0              [description]
 * @param  {[type]} $right:  $column-gutter [description]
 * @param  {[type]} $bottom: 0              [description]
 * @param  {[type]} $left:   $column-gutter [description]
 * @return {[type]}          [description]
 */
/**
 * [theme description]
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 */
/**
 * Height of nav container
 * sum of heights of main and section nav
 */
/**
 * Height of nav container
 * Large up, sticky mode
 * sum of heights of main and section nav
 */
/**
 * Determines height of nav backdrop and logo container
 * Should equal height of contained nav <a>
 */
/**
 * [labels description]
 * @return {[type]} [description]
 */
/**
 * Login link
 */
/**
 * Logo link
 */
/**
 * Corresponds with xlargeup breakpoint
 */
/**
 * Mega Menu Mixins
 */
/**
 * Animation
 */
/**
 * Current item indicator
 *
 * draws a triangle on the bottom of the menu item
 */
/**
 * Modifies the triangle when menu is sticky
 */
/**
 * Links
 */
/**
 * Applies pseudo styles to navigation
 * Drawn from navigation themes
 */
/**
 * Pick a Theme Set, defaults to $default-theme-name if theme not found
 * @param  {String} $set    Colour theme map Set ($themes, $theme-blocks, etc)
 * @param  {String} $name   Colour theme name, a key in $set
 * @return {Map}			The colour theme map
 */
/**
 * Pick Text Style From Global Map
 * @link	styles/theme/default/construct/settings/core/_type.scss
 * @param  {String} $breakpoint key in $text-styles
 * @param  {String} $name       key in $text-styles[$breakpoint]
 * @return {Map}                map of font-size, line-height, font-weight, etc
 */
/**
 * Pick Text Font Size
 * @link	styles/theme/default/construct/settings/core/_type.scss
 * @param  {String} $set       key in $text-sizes
 * @param  {String} $size      key in $set (xxsmall, xsmall, small, normal, etc)
 * @return {Integer}
 */
/**
 * Pick Text Weight
 * @link	styles/theme/default/construct/settings/core/_type.scss
 * @param  {String} $set       key in $text-sizes
 * @param  {String} $weight      key in $set (xxsmall, xsmall, small, normal, etc)
 * @return {Integer}
 */
/**
 * SVG Tools
 * Source: http://codepen.io/jakob-e/pen/doMoML
 */
/**
 * Typeface Fonts
 */
@font-face {
  font-family: FSMeWeb-Regular;
  font-style: normal;
  font-weight: normal;
  src: url("/Static/Theme/fonts/FSMeWeb-Regular--5f79a12edb6540fab7f8613697c79d64.eot?#iefix") format("embedded-opentype"), url("/Static/Theme/fonts/FSMeWeb-Regular--f988bba81da5c17b24b5cb06c6a98ba0.woff") format("woff"), url("/Static/Theme/fonts/FSMeWeb-Regular.ttf") format("truetype"); }

@font-face {
  font-family: FSMeWeb-Italic;
  font-style: normal;
  font-weight: normal;
  src: url("/Static/Theme/fonts/FSMeWeb-Italic--fc6dbbf79f063fff729f962a6da014fd.eot?#iefix") format("embedded-opentype"), url("/Static/Theme/fonts/FSMeWeb-Italic--6d4c4a02826431876e02b309a51e0bdd.woff") format("woff"), url("/Static/Theme/fonts/FSMeWeb-Italic.ttf") format("truetype"); }

@font-face {
  font-family: FSMeWeb-Light;
  font-style: normal;
  font-weight: normal;
  src: url("/Static/Theme/fonts/FSMeWeb-Light--4699d3d180f14bc94637d5b86c6d84d0.eot?#iefix") format("embedded-opentype"), url("/Static/Theme/fonts/FSMeWeb-Light--b081e081d60329d0ddf8f3a6c1b67f92.woff") format("woff"), url("/Static/Theme/fonts/FSMeWeb-Light.ttf") format("truetype"); }

@font-face {
  font-family: FSMeWeb-LightItalic;
  font-style: normal;
  font-weight: normal;
  src: url("/Static/Theme/fonts/FSMeWeb-LightItalic--92766b57c36d972cbf498e7de5b4aad8.eot?#iefix") format("embedded-opentype"), url("/Static/Theme/fonts/FSMeWeb-LightItalic--2a4740b85bfe203d244999ad64f669d8.woff") format("woff"), url("/Static/Theme/fonts/FSMeWeb-LightItalic.ttf") format("truetype"); }

@font-face {
  font-family: FSMeWeb-Bold;
  font-style: normal;
  font-weight: normal;
  src: url("/Static/Theme/fonts/FSMeWeb-Bold--14a7fc70f01bc97f50062f593afee000.eot?#iefix") format("embedded-opentype"), url("/Static/Theme/fonts/FSMeWeb-Bold--5e4d57629a3f189eb0fc49abd8b57e63.woff") format("woff"), url("/Static/Theme/fonts/FSMeWeb-Bold.ttf") format("truetype"); }

@font-face {
  font-family: FSMeWeb-BoldItalic;
  font-style: normal;
  font-weight: normal;
  src: url("/Static/Theme/fonts/FSMeWeb-BoldItalic--2c9611d24a3b836514bdd9916a641bde.eot?#iefix") format("embedded-opentype"), url("/Static/Theme/fonts/FSMeWeb-BoldItalic--285e0a2d33908dca393dc5f19ed01bf9.woff") format("woff"), url("/Static/Theme/fonts/FSMeWeb-BoldItalic.ttf") format("truetype"); }

@font-face {
  font-family: FSMeWeb-Heavy;
  font-style: normal;
  font-weight: normal;
  src: url("/Static/Theme/fonts/FSMeWeb-Heavy--0d3ec0c63dbc839c16827aef43d47e2c.eot?#iefix") format("embedded-opentype"), url("/Static/Theme/fonts/FSMeWeb-Heavy--ce91b1b73adf1e3d7fdeb81cd5b86392.woff") format("woff"), url("/Static/Theme/fonts/FSMeWeb-Heavy.ttf") format("truetype"); }

@font-face {
  font-family: FSMeWeb-HeavyItalic;
  font-style: normal;
  font-weight: normal;
  src: url("/Static/Theme/fonts/FSMeWeb-HeavyItalic--0daced93fb3c5adc36b465362de10601.eot?#iefix") format("embedded-opentype"), url("/Static/Theme/fonts/FSMeWeb-HeavyItalic--9254991c7498082c2cdb7b5907922a25.woff") format("woff"), url("/Static/Theme/fonts/FSMeWeb-HeavyItalic.ttf") format("truetype"); }

@font-face {
  font-family: Grotesk-Bold;
  font-style: normal;
  font-weight: normal;
  src: url("/Static/Theme/fonts/Grotesk-Bold.eot?#iefix") format("embedded-opentype"), url("/Static/Theme/fonts/Grotesk-Bold.woff") format("woff"), url("/Static/Theme/fonts/Grotesk-Bold.ttf") format("truetype"); }

.quiet:link {
  color: inherit; }

.vertical-center {
  display: table; }
  .vertical-center > .cell {
    display: table-cell;
    vertical-align: middle; }

body {
  /* used for wysiwyg editor styles */ }
  body .float-left {
    float: left !important; }
  body .float-right {
    float: right !important; }
  @media only screen and (max-width: 30em) {
    body .small-only-left {
      float: left !important; }
    body .small-only-right {
      float: right !important; } }
  @media only screen {
    body .small-left {
      float: left !important; }
    body .small-right {
      float: right !important; } }
  @media only screen and (min-width: 30.063em) and (max-width: 55em) {
    body .medium-only-left {
      float: left !important; }
    body .medium-only-right {
      float: right !important; } }
  @media only screen and (min-width: 30.063em) {
    body .medium-left {
      float: left !important; }
    body .medium-right {
      float: right !important; } }
  @media only screen and (min-width: 55.063em) and (max-width: 75em) {
    body .large-only-left {
      float: left !important; }
    body .large-only-right {
      float: right !important; } }
  @media only screen and (min-width: 55.063em) {
    body .large-left {
      float: left !important; }
    body .large-right {
      float: right !important; } }
  @media only screen and (min-width: 75.063em) and (max-width: 120em) {
    body .xlarge-only-left {
      float: left !important; }
    body .xlarge-only-right {
      float: right !important; } }
  @media only screen and (min-width: 75.063em) {
    body .xlarge-left {
      float: left !important; }
    body .xlarge-right {
      float: right !important; } }
  @media only screen and (min-width: 120.063em) and (max-width: 99999999em) {
    body .xxlarge-only-left {
      float: left !important; }
    body .xxlarge-only-right {
      float: right !important; } }
  @media only screen and (min-width: 120.063em) {
    body .xxlarge-left {
      float: left !important; }
    body .xxlarge-right {
      float: right !important; } }
  body .align-left {
    text-align: left; }
  body .align-right {
    text-align: right; }
  body .align-center {
    text-align: center; }
  @media only screen {
    body .text-massive {
      font-size: 6.25rem;
      font-weight: light; }
    body .text-behemoth {
      font-size: 4.5rem;
      font-weight: bolder; }
    body .text-giant {
      font-size: 3.125rem;
      font-weight: light; }
    body .text-huge {
      font-size: 2.625rem;
      font-weight: light; }
    body .text-xxlarge {
      font-size: 2.25rem;
      font-weight: light; }
    body .text-xlarge {
      font-size: 1.875rem;
      font-weight: normal; }
    body .text-large {
      font-size: 1.5rem;
      font-weight: normal; }
    body .text-medium {
      font-size: 1.125rem;
      font-weight: normal; }
    body .text-normal {
      font-size: 0.875rem;
      font-weight: normal; }
    body .text-small {
      font-size: 0.625rem;
      font-weight: normal; }
    body .text-xsmall {
      font-size: 0.5rem;
      font-weight: normal; } }
  @media only screen and (min-width: 30.063em) {
    body .text-massive {
      font-size: 7.5rem;
      font-weight: light; }
    body .text-behemoth {
      font-size: 4.5rem;
      font-weight: bolder; }
    body .text-giant {
      font-size: 3.75rem;
      font-weight: light; }
    body .text-huge {
      font-size: 3.125rem;
      font-weight: light; }
    body .text-xxlarge {
      font-size: 2.75rem;
      font-weight: light; }
    body .text-xlarge {
      font-size: 2.125rem;
      font-weight: normal; }
    body .text-large {
      font-size: 1.75rem;
      font-weight: normal; }
    body .text-medium {
      font-size: 1.25rem;
      font-weight: normal; }
    body .text-normal {
      font-size: 1rem;
      font-weight: normal; }
    body .text-small {
      font-size: 0.75rem;
      font-weight: normal; }
    body .text-xsmall {
      font-size: 0.625rem;
      font-weight: normal; } }
  @media only screen and (min-width: 55.063em) {
    body .text-massive {
      font-size: 9rem;
      font-weight: light; }
    body .text-behemoth {
      font-size: 6rem;
      font-weight: bolder; }
    body .text-giant {
      font-size: 4.5rem;
      font-weight: light; }
    body .text-huge {
      font-size: 4rem;
      font-weight: light; }
    body .text-xxlarge {
      font-size: 3.5rem;
      font-weight: light; }
    body .text-xlarge {
      font-size: 2.625rem;
      font-weight: normal; }
    body .text-large {
      font-size: 2.25rem;
      font-weight: normal; }
    body .text-medium {
      font-size: 1.5rem;
      font-weight: normal; }
    body .text-normal {
      font-size: 1.125rem;
      font-weight: normal; }
    body .text-small {
      font-size: 0.875rem;
      font-weight: normal; }
    body .text-xsmall {
      font-size: 0.75rem;
      font-weight: normal; } }
  body h1, body h2, body h3, body h4, body h5, body h6 {
    margin-bottom: 0.9375rem;
    color: inherit; }
  body strong, body b {
    font-family: FSMeWeb-Bold; }
  body small {
    font-size: 0.625rem;
    font-weight: normal; }
  body blockquote {
    font-size: 1.5rem;
    font-weight: normal;
    font-family: FSMeWeb-Light;
    color: #1d1d1b;
    padding: 1.875rem 0;
    border: none;
    position: relative;
    margin-bottom: 2rem; }
    body blockquote cite {
      position: absolute;
      bottom: 0px; }
    body blockquote:before, body blockquote:after {
      content: '"'; }
  body blockquote.pull-out {
    font-size: 0.875rem;
    font-weight: normal;
    background-color: #f0f0f0;
    padding: 1.875rem; }
    body blockquote.pull-out:before, body blockquote.pull-out:after {
      display: none; }
  body blockquote p {
    display: inline; }
  body *:focus {
    outline: none; }
  body .wysiwyg-text--colour-heavymetal {
    color: #1d1d1b; }
  body .wysiwyg-text--colour-dimgray {
    color: #525251; }
  body .wysiwyg-text--colour-grey {
    color: #808080; }
  body .wysiwyg-text--colour-delta {
    color: #a8a8a7; }
  body .wysiwyg-text--colour-alto {
    color: #cecece; }
  body .wysiwyg-text--colour-mercury {
    color: #e9e9e9; }
  body .wysiwyg-text--colour-whitesmoke {
    color: #f0f0f0; }
  body .wysiwyg-text--colour-white {
    color: #ffffff; }
  body .wysiwyg-text--colour-darkpink {
    color: #a932a0; }
  body .wysiwyg-text--colour-green {
    color: #00953a; }
  body .wysiwyg-text--colour-lightblue {
    color: #4ec1e0; }
  body .wysiwyg-text--colour-lightgray {
    color: #e7e7e7; }
  body .wysiwyg-text--colour-lime {
    color: #b6bd00; }
  body .wysiwyg-text--colour-magenta {
    color: #d3007e; }
  body .wysiwyg-text--colour-midnightblue {
    color: #003764; }
  body .wysiwyg-text--colour-navy {
    color: #002c50; }
  body .wysiwyg-text--colour-orange {
    color: #ffa400; }
  body .wysiwyg-text--colour-orient {
    color: #00567d; }
  body .wysiwyg-text--colour-red {
    color: #e8485a; }
  body .wysiwyg-text--colour-tango {
    color: #ef7622; }
  body .wysiwyg-text--colour-yellow {
    color: #FFCE00; }
  body .wysiwyg-text--colour-lightpink {
    color: #fef3f9; }
  body .wysiwyg-text--colour-facebook {
    color: #3b5998; }
  body .wysiwyg-text--colour-linkedin {
    color: #0177b5; }
  body .wysiwyg-text--colour-twitter {
    color: #1dcaff; }
  body .wysiwyg-text--colour-youtube {
    color: #d32323; }
  body .wysiwyg-text--face-fsme-light {
    font-family: FSMeWeb-Light, Helvetica, Arial, sans-serif; }
  body .wysiwyg-text--face-fsme-heavy {
    font-family: FSMeWeb-Heavy, Helvetica, Arial, sans-serif; }
  body .wysiwyg-text--face-grostek-bold {
    font-family: "akzidenz-grotesk", sans-serif;
    font-style: normal;
    letter-spacing: -1px;
    font-weight: 700;
    line-height: 1; }

.button {
  /**
	 * @TODO the colours in this section need to be pulled
	 * 		 out and applied through the button-variation-mixin below.
	 */
  padding: 0.3125rem 0.625rem;
  border-width: 2px;
  border-radius: 3px;
  line-height: 1.4;
  font-size: 0.875rem;
  font-weight: normal; }
  .button.reset-post-fix {
    border: 0.125rem solid; }
    .button.reset-post-fix.radius {
      border-radius: 3px; }
  .button, .button.primary {
    text-decoration: none;
    background-color: transparent;
    border-color: #002c50;
    color: #002c50; }
  .button:visited, .button.primary:visited {
    background-color: transparent;
    border-color: #002c50;
    color: #002c50; }
  .button:focus, .button.primary:focus {
    background-color: #002c50;
    border-color: #002c50;
    color: #ffffff; }
  .button:hover, .button.primary:hover {
    text-decoration: none;
    background-color: #002c50;
    border-color: #002c50;
    color: #ffffff; }
  .button.secondary {
    text-decoration: none;
    background-color: rgba(0, 44, 80, 0.2);
    border-color: transparent;
    color: #002c50; }
  .button.secondary:visited {
    background-color: rgba(0, 44, 80, 0.3);
    border-color: #002c50;
    color: #002c50; }
  .button.secondary:focus {
    background-color: #002c50;
    border-color: #002c50;
    color: #ffffff; }
  .button.secondary:hover {
    text-decoration: none;
    background-color: #002c50;
    border-color: #002c50;
    color: white; }
  .button.label-hidden {
    text-decoration: none; }
    .button.label-hidden {
      text-decoration: none;
      background-color: transparent;
      border-color: transparent;
      color: #002c50; }
    .button.label-hidden:visited {
      background-color: transparent;
      border-color: transparent;
      color: #002c50; }
    .button.label-hidden:focus {
      background-color: transparent;
      border-color: transparent;
      color: #d3007e; }
    .button.label-hidden:hover {
      text-decoration: none;
      background-color: transparent;
      border-color: transparent;
      color: #d3007e; }
  .button [class^="icon-"] {
    margin: 0.2em .5em 0 0;
    display: inline;
    float: left; }

.fixed-feedback-button {
  display: none; }

.link-arrow {
  display: none; }
  .has-arrow .link-arrow {
    vertical-align: middle;
    display: inline-block;
    line-height: .5; }

.hide-icon [class^=icon-] {
  opacity: 0; }

.label-hidden.play-button i {
  font-size: 5rem; }

.button .loading-spinner {
  vertical-align: middle;
  border: 0.25rem solid #002c50;
  border-right-color: transparent;
  border-radius: 50%;
  display: inline-block;
  width: 0.8125rem;
  height: 0.8125rem;
  animation-duration: 0.75s;
  animation-iteration-count: infinite;
  animation-name: rotate-forever;
  animation-timing-function: linear; }

.button:hover .loading-spinner {
  border-color: #ffffff;
  border-right-color: #002c50; }

select,
textarea,
input[type="text"],
input[type="number"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="email"],
input[type="color"] {
  border-radius: 3px;
  background-color: #fbfbfb; }

input[type="submit"] {
  line-height: 1.5; }

label.inline-label {
  display: inline; }

input::-webkit-input-placeholder {
  color: #808080; }

input::-moz-placeholder {
  color: #808080; }

input:-moz-placeholder {
  color: #808080; }

input:-ms-input-placeholder {
  color: #808080; }

input[type=text]::-ms-clear {
  display: none;
  width: 0;
  height: 0; }

input[type=text]::-ms-reveal {
  display: none;
  width: 0;
  height: 0; }

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none; }

input[type="range"] {
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 55, 100, 0);
  width: 100%;
  height: 1px;
  margin: 0;
  border: none;
  padding: 1px 2px;
  border-radius: 14px;
  background: #003764;
  outline: none;
  /* no focus outline */ }

input[type="range"]::-moz-range-track {
  border: inherit;
  background: transparent; }

input[type="range"]::-ms-track {
  border: inherit;
  color: transparent;
  /* don't drawn vertical reference line */
  background: transparent; }

input[type="range"]::-ms-fill-lower,
input[type="range"]::-ms-fill-upper {
  background: transparent; }

input[type="range"]::-ms-tooltip {
  display: none; }

/* thumb */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: none;
  border-radius: 12px;
  background: #003764; }

input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: none;
  border-radius: 12px;
  background: #003764;
  /* W3C */ }

input[type="range"]::-ms-thumb {
  width: 40px;
  height: 18px;
  border-radius: 12px;
  border: 0;
  background: #003764; }

textarea[data-auto-grow] {
  margin: 0px;
  padding: 5px;
  display: block;
  overflow: hidden;
  height: 20px;
  min-height: 30px;
  line-height: 20px; }

form .g-recaptcha {
  margin-bottom: 1rem; }

form label {
  margin-bottom: 0.5rem; }

.form select.form-control {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='12px' y='0px' viewBox='0 0 32 32' xml:space='preserve'%3E%3Cpath d='M16.1,22.9c-0.3,0-0.7-0.1-1-0.3l-13-10.8c-0.6-0.5-0.7-1.5-0.2-2.1C2.4,9,3.3,8.9,4,9.4l12.1,10L28,9.6 c0.6-0.5,1.6-0.4,2.1,0.2c0.5,0.6,0.4,1.6-0.2,2.1L17,22.6C16.7,22.8,16.4,22.9,16.1,22.9z'/%3E%3C/svg%3E");
  background-position: 99% center; }

.required {
  color: #d3007e; }

.servererror {
  display: block;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: normal;
  margin-bottom: 1rem;
  margin-top: -1rem;
  padding: 0.375rem 0.5625rem 0.375rem 0;
  background: #ffffff;
  color: #e8485a;
  text-transform: none; }

.error-positioned {
  position: absolute;
  top: 100%;
  right: 0; }

small.servererror.error-positioned,
.error small.error.error-positioned {
  margin-top: 0; }

/**
 * Foundation presumes form elements all have error messages
 * Episerver fields only have a specific error message for validation methods
 * Field that are required only do not have associated error messages
 * Overriding to avoid form spacing collapsing in error state
 */
.error input,
.error textarea,
.error select {
  margin-bottom: 1rem; }

.error small.servererror,
.error small.error {
  width: 100%; }

label.error {
  position: relative; }

.error label.error:before {
  font-family: "icons";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: inherit;
  /* position */
  text-align: center;
  display: inline-block;
  line-height: 1;
  /* prevent screen reader */
  speak: none;
  /* appearance */
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  color: #e8485a;
  position: absolute;
  padding: 0.2rem;
  right: 0.5rem;
  top: 2rem;
  font-size: 1.125rem;
  font-weight: normal; }

.vertical input[type="radio"] {
  float: left;
  clear: both;
  margin-top: 3px;
  display: inline-block; }

.vertical input[type="radio"] + label {
  float: left;
  display: inline-block; }

.vertical > label {
  margin-bottom: 1rem; }

.reveal-modal .form-row {
  margin-bottom: 1rem; }

@media only screen and (min-width: 55.063em) {
  .left-large-up {
    float: left !important; }
  .right-large-up {
    float: right !important; } }

@media only screen and (min-width: 30.063em) {
  .left-medium-up {
    float: left !important; }
  .right-medium-up {
    float: right !important; } }

@media only screen {
  .left-small-up {
    float: left !important; }
  .right-small-up {
    float: right !important; } }

/* Reset */
figure {
  margin: 0; }
  figure:after {
    display: table;
    content: '';
    height: 1px;
    width: 100%; }

figcaption {
  padding: 0; }

.svg-wrap {
  position: relative;
  height: 0; }

/**
 * Apply aspect ratio
 * (height/width * 100)%
 */
.svg-wrap img,
.svg-wrap svg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%; }

/**
 * Skip link for keyboard users - only displays upon focus
 */
a.skip-main {
  position: absolute;
  left: auto;
  top: -5rem;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: -999;
  transition: top 0.25s cubic-bezier(0.645, 0.045, 0.355, 1); }
  a.skip-main:focus, a.skip-main:active {
    left: auto;
    top: -0.25rem;
    width: 30%;
    height: auto;
    overflow: auto;
    margin: 0 35%;
    padding: 5px;
    z-index: 999;
    text-align: center;
    line-height: 4;
    color: #f0f0f0;
    background-color: #1d1d1b;
    border-radius: 0 0 1rem 1rem; }
    a.skip-main:focus .link-arrow, a.skip-main:active .link-arrow {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 2.75rem; }

iframe {
  border-style: none; }

/**
 * Atoms
 * - small only
 */
/**
 * Atoms
 * - medium up
 */
@media only screen and (min-width: 30.063em) {
  body blockquote {
    font-size: 2.125rem;
    font-weight: normal;
    padding: 1.875rem 3.75rem; } }

/**
 * Atoms
 * - large up
 */
@media only screen and (min-width: 55.063em) {
  .button-vertical {
    display: block;
    -ms-transform: rotate(90deg);
        transform: rotate(90deg);
    -ms-transform-origin: right top;
        transform-origin: right top; }
  .button-boxed-icon {
    padding: 0.3125rem 0.625rem;
    line-height: 1.4;
    border-radius: 0;
    border: 0;
    padding: 0.625rem 0.9375rem 0.625rem 3.4375rem;
    margin: 0; }
    .button-boxed-icon [class^="icon-"] {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 42px;
      margin: 0;
      font-size: 1.6rem;
      padding: 6px; } }

/**
 * Atoms
 * - print
 */
/**
	Construct
	Version: 0.0.1

	The construct is the base dependency for all core files and modules.
	Contains:
		-- Toolkit
		-- Assets
		-- Settings (including Foundation settings)
*/
/**
 * # Text Sizes
 *
 * Use with mixins:
 *  construct/toolkit/mixins/type#text-style
 *  construct/toolkit/mixins/type#text-size
 *  construct/toolkit/mixins/type#text-weight
 */
/**
 * Small Up Text Sizes
 * @type {Map}
 */
/**
 * Medium Up Text Sizes
 * @type {Map}
 */
/**
 * Large Up Text Sizes
 * @type {Map}
 */
/**
 * Export Global Text Sizes
 * @type {Map}
 */
/**
 * Text Styles
 */
/**
 * Small Up Styles
 * @type {Map}
 */
/**
 * Small Up Styles
 * @type {Map}
 */
/**
 * Small Up Styles
 * @type {Map}
 */
/**
 * Export Global Text Style Collection
 * @type {Map}
 */
/* Prevent Foundation from create css */
/**
	Assets

	Reference all Global assets here.
*/
/**
	Assets

	Reference all Global assets here.
*/
/**
 * Project Themes
 *
 * A colour theme is composed of several maps available as
 * variables:
 *
 * 1. As a key in the master `$theme` variable:
 *
 *    $themes: (
 *      THEME_NAME: $THEME_VARIABLE
 *    );
 *
 * 2. As a variable for each component in the theme:
 *
 *    $theme-links-THEMENAME
 *    $theme-blocks-THEMENAME
 *    $theme-datestamps-THEMENAME
 *    $theme-tables-THEMENAME
 *    etc
 *
 * 3. Each themes component is referred to in a master Map
 *  ie, all theme maps for blocks are collated into :
 *
 *    `$theme-blocks`
 *
 * 4. For each new theme component map that is created every
 *    other theme *must* define it.
 *
 */
/**
 * Import separate theme files first
 */
/**
 * Define themes for links as mappable items
 * @type {Map}
 */
/**
 * Define themes for buttons as mappable items
 * @type {Map}
 */
/**
 * Icons
 */
/**
 * Blocks
 */
/* Datestamp */
/* Tables */
/* Navigations */
/* Navigations */
/**
 * Themes
 */
/**
 * Font Assets
 *
 * - reference all fonts here first.
 */
/**
 * Icons used as images
 */
/**
 *
 * Embeded Image Icons
 *
 * Any datauri icons embeded in the
 * stylesheets need to be declared here as
 * variables
 */
@font-face {
  font-family: 'icons';
  src: url("/Static/Theme/fonts/icons--202392383007b5b23c94c26795437bc7.eot");
  src: url("/Static/Theme/fonts/icons--202392383007b5b23c94c26795437bc7.eot?#iefix") format("eot"), url("/Static/Theme/fonts/icons--a38c330a3a09bcb56bdf71d7625f610b.woff") format("woff"), url("/Static/Theme/fonts/icons--fd818761a7753efe32436acc4400dd5a.ttf") format("truetype"); }

/**
 *
 */
/**
 *  Timing Functions
 */
/**
 * Loading Spinner
 * !default means use these values if this variable is empty.
 */
/**
 * Vendor
 */
body {
  /* Addresses a small issue in webkit: http://bit.ly/NEdoDq */
  -webkit-backface-visibility: hidden; }

.animated {
  animation-duration: 1s;
  animation-fill-mode: both; }

/**
 * a tag with various event states.
 * @param  {String} $theme name of the colour theme as
 *                  described in construct/assets/themes(.scss)
 * @param  {String} $variant type of button variant (primary, secondary, etc)
 */
/**
 * A tag with a [href='*']:visited
 * @param {String} $theme [description]
 */
/**
 * A tag with a [href='*']:hover
 * @param  {String} $theme [description]
 */
/**
 * A tag with a [href='*']:active
 * @param  {String} $theme [description]
 */
/**
 * A tag with a [href='*']:focus
 * @param  {String} $theme [description]
 */
/**
 * A tag with a [href='*']:visited
 * @param  {String} $theme [description]
 */
/**
 * Font helper Mixins
 */
/**
 * Set the base style for a font-icon class
 * @param  {String} $font name of the font-family
 *                  and the file (sans extension)
 */
/**
 * Element covers the entire container.
 * Container requires position: relative;
 */
/**
 * Vertically center an element within the container.
 * Container requires position: relative;
 */
/**
 * a tag with various event states.
 * @param  {String} $theme name of the colour theme as
 *                  described in construct/assets/themes(.scss)
 */
/**
 * Implement a colour theme based on
 * the theme name
 * see :
 *  - construct/assets/_themes.scss
 *  - construct/assets/themes/*.tables.scss
 */
/**
 * Base table Layout
 */
/***
 * Stacked Cell Tables
 * a.k.a Mobile Tables
 * http://codepen.io/geoffyuen/pen/FCBEg
 */
/**
 * Normal Table Layout
 * (ie with column headers and columns)
 */
/**
 * [theme description]
 * @param  {[type]} $name: base          [description]
 * @return {[type]}        [description]
 * @TODO add html example
 */
/**
 * Colour Theme for Header HR
 *  Article Mountain Range SVG
 * @contentblock article
 * @param  {String} $color valid css colour
 */
/**
 * Article Colour Themer
 * @contentblock article
 * @param  {String} $name key in $block-themes
 * @TODO add html example
 */
/**
 * @TODO add html example
 */
/**
 * Block Icon Layout
 * @contentblock icon
 * @TODO add html example
 */
/**
 * [theme description]
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 * @TODO add html example
 */
/**
 * Rate Table Header Layout
 * @contentblock rate-table
 */
/**
 * Content Block Mixins
 *
 * Naming convention:
 *
 *    For content block types:
 *
 *    content-block-<THING>-layout
 *      - for base layout of THING, takes no variables
 *
 *    content-block-<THING>-theme
 *      - for themes.
 *      - takes one variable: a string that is the name of the colour theme
 *
 *    content-block-<THING>-SUBTHING-BLAH-FOO
 *      - repeatable behaviour styles
 *      - may take as many variables as required
 *
 *
 *
 * Commenting Conventions:
 *  - use docblock (jsdoc) format
 *  - all comment blocks have:
 *    - Mixin name
 *    - Mixin description
 *    - @contentblock CONTENT_BLOCK_NAME
 *    - list of @param {datatype} description
 *    - an indented html example that this mixin applies to.
 */
/**
 * Block Icon Layout
 * @contentblock icon
 * @TODO add html example
 */
/**
 * [theme description]
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 * @TODO add html example
 */
/**
 * [theme description]
 * @param  {[type]} $name: base          [description]
 * @return {[type]}        [description]
 * @TODO add html example
 */
/**
 * Content Blocks With Hero Mask
 * @contentblock any
 */
/**
 * @contentblock any
 */
/**
 * ???
 * @TODO: document this.
 * @return {[type]} [description]
 */
/**
 * [layout description]
 * @return {[type]} [description]
 * @TODO add html example
 */
/**
 * [hero description]
 * @return {[type]} [description]
 * @TODO add html example
 */
/**
 * [horizontally description]
 * @return {[type]} [description]
 * @TODO add html example
 */
/**
 * [theme description]
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 * @TODO add html example
 */
/**
 * [alignment description]
 * @param  {[type]} $alignment: center        [description]
 * @return {[type]}             [description]
 * @TODO add html example
 */
/**
 * [height description]
 * @param  {[type]} $height [description]
 * @return {[type]}         [description]
 * @TODO add html example
 */
/**
 * Position Block Footers
 * @TODO add html example
 */
/**
 * [alignment description]
 * @param  {[type]} $alignment: center        [description]
 * @return {[type]}             [description]
 * @TODO add html example
 */
/**
 * [theme description]
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 */
/**
 * Element covers the entire container.
 * Container requires position: relative;
 */
/**
 * Vertically center an element within the container.
 * Container requires position: relative;
 */
/**
 * [content description]
 * @return {[type]} [description]
 */
/**
 * Layouts
 */
/**
 * Base Layout
 * @param  {Number} `$bottom` padding for bottom edge
 */
/* mixin name derp . */
/**
 * Layout: Header
 * @return {[type]} [description]
 */
/**
 * Layout: Header Alignment
 */
/**
 * Layout: Footer Alignment
 * @param  {[type]} $alignment: center        [description]
 * @return {[type]}             [description]
 */
/**
 * Layout: Footer Layout
 * @return {[type]} [description]
 */
/**
 * Layout Theme CSS Generator
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 */
/**
 * Layout Theme
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 */
/**
 * Layout Theme: Footer
 * @param  {[type]} $textColor [description]
 * @param  {[type]} $theme     [description]
 * @return {[type]}            [description]
 */
/**
 * Layout Theme: Arrange Background
 * @return {[type]} [description]
 */
/**
 * Layout: Keep blocks Height same as Width
 */
/**
 * Layout: Remove Gaps
 * @return {[type]} [description]
 */
/**
 *
 * @param  {[type]} $breakpoint: small-up      [description]
 * @return {[type]}              [description]
 */
/**
 * removes margins on boundary row content blocks
 * @param  {[type]} $count: 1             [description]
 * @return {[type]}         [description]
 */
/**
 * adds margins on non boundary row content blocks
 * @param  {[type]} $count: 1             [description]
 * @return {[type]}         [description]
 */
/**
 * Make a layout full width
 */
/**
 * ???
 * @TODO: document this.
 * @param  {[type]} $top:    0              [description]
 * @param  {[type]} $right:  $column-gutter [description]
 * @param  {[type]} $bottom: 0              [description]
 * @param  {[type]} $left:   $column-gutter [description]
 * @return {[type]}          [description]
 */
/**
 * [theme description]
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 */
/**
 * Height of nav container
 * sum of heights of main and section nav
 */
/**
 * Height of nav container
 * Large up, sticky mode
 * sum of heights of main and section nav
 */
/**
 * Determines height of nav backdrop and logo container
 * Should equal height of contained nav <a>
 */
/**
 * [labels description]
 * @return {[type]} [description]
 */
/**
 * Login link
 */
/**
 * Logo link
 */
/**
 * Corresponds with xlargeup breakpoint
 */
/**
 * Mega Menu Mixins
 */
/**
 * Animation
 */
/**
 * Current item indicator
 *
 * draws a triangle on the bottom of the menu item
 */
/**
 * Modifies the triangle when menu is sticky
 */
/**
 * Links
 */
/**
 * Applies pseudo styles to navigation
 * Drawn from navigation themes
 */
/**
 * Pick a Theme Set, defaults to $default-theme-name if theme not found
 * @param  {String} $set    Colour theme map Set ($themes, $theme-blocks, etc)
 * @param  {String} $name   Colour theme name, a key in $set
 * @return {Map}			The colour theme map
 */
/**
 * Pick Text Style From Global Map
 * @link	styles/theme/default/construct/settings/core/_type.scss
 * @param  {String} $breakpoint key in $text-styles
 * @param  {String} $name       key in $text-styles[$breakpoint]
 * @return {Map}                map of font-size, line-height, font-weight, etc
 */
/**
 * Pick Text Font Size
 * @link	styles/theme/default/construct/settings/core/_type.scss
 * @param  {String} $set       key in $text-sizes
 * @param  {String} $size      key in $set (xxsmall, xsmall, small, normal, etc)
 * @return {Integer}
 */
/**
 * Pick Text Weight
 * @link	styles/theme/default/construct/settings/core/_type.scss
 * @param  {String} $set       key in $text-sizes
 * @param  {String} $weight      key in $set (xxsmall, xsmall, small, normal, etc)
 * @return {Integer}
 */
/**
 * SVG Tools
 * Source: http://codepen.io/jakob-e/pen/doMoML
 */
/**
 * Molecules
 *  - small and up
 */
.large-icon [class^="icon-"],
.large-icon [class*=" icon-"] {
  line-height: 1;
  font-size: 3rem; }

.large-icon-heading [class^="icon-"],
.large-icon-heading [class*=" icon-"] {
  line-height: 1;
  margin-right: 0.5rem; }
  .large-icon-heading [class^="icon-"], .large-icon-heading [class^="icon-"].block-title,
  .large-icon-heading [class*=" icon-"],
  .large-icon-heading [class*=" icon-"].block-title {
    display: inline-block;
    vertical-align: middle; }

#global-alerts {
  z-index: 900; }
  #global-alerts .alert-box {
    padding-right: 3rem;
    margin-bottom: 0; }
    #global-alerts .alert-box > p {
      font-size: 0.625rem;
      font-weight: normal;
      padding-left: 2rem;
      margin-bottom: 0; }
      #global-alerts .alert-box > p a {
        color: #ffffff;
        text-decoration: underline;
        opacity: .8; }
        #global-alerts .alert-box > p a:hover {
          opacity: 1; }
    #global-alerts .alert-box i {
      position: absolute;
      top: 0.8rem;
      left: 1rem;
      font-size: 1.125rem;
      font-weight: normal; }
    #global-alerts .alert-box .close {
      position: absolute;
      top: 0;
      right: 0;
      padding: 1rem;
      margin-top: 0;
      background: #000;
      color: #ffffff;
      height: 100%; }

.profile-card {
  margin-top: 0.9375rem; }
  .profile-card:before, .profile-card:after {
    content: " ";
    display: table; }
  .profile-card:after {
    clear: both; }
  .profile-card .image {
    float: left;
    display: inline-block;
    margin-right: .5rem;
    width: 40px;
    height: 40px; }
  .profile-card .title {
    margin: 0;
    font-size: 0.875rem;
    font-weight: normal; }
    .profile-card .title small {
      font-size: 0.625rem; }
  .profile-card .subtitle {
    display: block;
    line-height: 1.4; }

[data-swap-panel] {
  background: none; }
  [data-swap-panel] .panel {
    display: none; }
    [data-swap-panel] .panel.open {
      display: inherit; }

.date-stamp-top-left .date-stamp {
  position: absolute;
  top: 0;
  left: 0;
  bottom: initial;
  right: initial; }
  .date-stamp-top-left .date-stamp svg {
    position: absolute;
    top: 0;
    -ms-transform: scaleY(-1) translateY(-100%) scaleX(-1) translateX(-100%);
        transform: scaleY(-1) translateY(-100%) scaleX(-1) translateX(-100%); }
  .date-stamp-top-left .date-stamp .date {
    top: -0.4rem; }

.date-stamp-top-right .date-stamp {
  position: absolute;
  top: 0;
  right: 0;
  bottom: initial;
  left: initial; }
  .date-stamp-top-right .date-stamp svg {
    position: absolute;
    top: 0;
    -ms-transform: scaleY(-1);
        transform: scaleY(-1); }
  .date-stamp-top-right .date-stamp .date {
    top: -0.4rem; }

.date-stamp-bottom-left .date-stamp {
  position: absolute;
  bottom: 0;
  left: 0;
  top: initial;
  right: initial; }
  .date-stamp-bottom-left .date-stamp svg {
    position: absolute;
    bottom: 0;
    -ms-transform: scaleX(-1) translateX(-100%);
        transform: scaleX(-1) translateX(-100%); }
  .date-stamp-bottom-left .date-stamp .date {
    top: 0.4rem; }

.date-stamp-bottom-right .date-stamp {
  position: absolute;
  bottom: 0;
  right: 0;
  top: initial;
  left: initial; }
  .date-stamp-bottom-right .date-stamp .date {
    top: 0.4rem; }
  .date-stamp-bottom-right .date-stamp svg {
    position: absolute;
    bottom: 0;
    top: initial;
    -ms-transform: scaleY(1);
        transform: scaleY(1); }

.rate {
  display: inline-table;
  position: relative;
  width: auto;
  padding-bottom: 0.46875rem;
  padding-top: 0.9375rem; }
  .rate .rate-label {
    color: #d3007e; }
  .rate .rate-value {
    color: #d3007e; }
  .rate .rate-label {
    font-size: 0.625rem;
    font-weight: normal; }
  .rate .rate-value {
    font-size: 2.25rem;
    font-weight: light; }
  .rate .rate-prefix,
  .rate .rate-suffix,
  .rate .rate-inner {
    display: inline-block;
    width: auto; }
  .rate .rate-prefix,
  .rate .rate-suffix {
    padding: 0;
    margin: 0;
    width: auto;
    line-height: 1; }
  .rate.rate--has-prefix .rate-prefix {
    color: #d3007e; }
  .rate.rate--has-suffix .rate-suffix {
    color: #d3007e; }
  .rate .rate-value,
  .rate .rate-label {
    text-align: left; }
  .rate .rate-label {
    position: absolute;
    top: -0.25em;
    left: 0; }
  .rate .rate-value--prefix,
  .rate .rate-value--suffix {
    font-size: 80%; }
  .rate.important .rate-label {
    font-size: 0.625rem;
    font-weight: normal; }
  .rate.important .rate-value {
    font-size: 2.25rem;
    font-weight: light; }
  .rate.important .rate-suffix {
    display: inline-block;
    font-size: 2.25rem;
    font-weight: light; }
  .rate.important .rate-prefix {
    display: inline-block;
    font-size: 2.25rem;
    font-weight: light; }
  .rate.important .rate-value--prefix,
  .rate.important .rate-value--suffix {
    font-size: 0.875rem; }

.inline-list li {
  margin-left: 0;
  margin-right: 0.9375rem; }
  .inline-list li:first-child {
    margin-left: 0.9375rem; }

.inline-list li:last-child {
  margin-right: 0; }

.list-view {
  list-style: none;
  margin: 0;
  padding: 0; }
  .list-view > li {
    margin: 0;
    padding: 0;
    width: 100%; }
    .list-view > li > a {
      display: block;
      padding-top: 0.9375rem;
      padding-bottom: 0.9375rem; }

.linked-list > li > a {
  position: relative;
  padding-right: 2.0625rem;
  text-decoration: none; }
  .linked-list > li > a:link {
    text-decoration: none; }
  .linked-list > li > a:after {
    font-family: "icons";
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    text-decoration: inherit;
    /* position */
    text-align: center;
    display: inline-block;
    line-height: 1;
    /* prevent screen reader */
    speak: none;
    /* appearance */
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "";
    border-radius: 50%;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    height: 1.875rem;
    width: 1.875rem;
    text-align: center;
    line-height: 2;
    text-decoration: none; }

.linked-list.detail > li {
  padding-right: 2.0625rem;
  position: relative; }
  .linked-list.detail > li:after {
    font-family: "icons";
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    text-decoration: inherit;
    /* position */
    text-align: center;
    display: inline-block;
    line-height: 1;
    /* prevent screen reader */
    speak: none;
    /* appearance */
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    height: 1.875rem;
    width: 1.875rem;
    text-align: center;
    line-height: 2;
    text-decoration: none; }

table {
  border: none;
  border-spacing: 0;
  width: 100%;
  margin-bottom: 1.875rem; }
  table tr th {
    font-size: 0.875rem;
    font-weight: normal;
    font-weight: bold;
    padding-top: 0.9375rem;
    padding-bottom: 0.9375rem;
    vertical-align: top;
    text-align: left;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-collapse: collapse; }
  table tr td {
    font-size: 0.875rem;
    font-weight: normal;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-collapse: collapse;
    padding-top: 0.9375rem;
    padding-bottom: 0.9375rem;
    vertical-align: top;
    text-align: left; }
  table[data-stacked-deck] thead tr th {
    display: none; }
  table[data-stacked-deck] tr:first-child td:first-child {
    margin-top: 0; }
  table[data-stacked-deck] tr td:first-child {
    margin-top: 1.875rem; }
  table[data-stacked-deck] tr th, table[data-stacked-deck] tr td {
    display: block;
    text-align: right; }
    table[data-stacked-deck] tr th:before, table[data-stacked-deck] tr td:before {
      position: absolute;
      left: 1.875rem;
      text-align: left;
      content: attr(data-th); }

.date-filter {
  padding: 0 1.875rem 0 1.875rem; }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

/* Icons */
@font-face {
  font-family: "slick";
  font-style: normal;
  font-weight: normal;
  src: url("/Static/Theme/fonts/slick.eot?#iefix") format("embedded-opentype"), url("/Static/Theme/fonts/slick--68e3c2c8cdb4f07c9166315204b11fc8.woff") format("woff"), url("/Static/Theme/fonts/slick--620483ff0cfd8f224a8c302b9bef1ed6.ttf") format("truetype"), url("/Static/Theme/fonts/slick.svg#slick") format("svg"); }

.slick-list .slick-loading {
  background: #fff url("/Static/Theme/imagesajax-loader.gif") center center no-repeat; }

/* Arrows */
.slick-prev,
.slick-next {
  display: block;
  line-height: 0px;
  font-size: 0px;
  margin-top: -12.5px;
  padding: 0;
  position: absolute;
  top: 50%;
  height: 25px;
  width: 25px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  border: none;
  outline: none; }
  .slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent; }
    .slick-prev:hover:before, .slick-prev:focus:before,
    .slick-next:hover:before,
    .slick-next:focus:before {
      opacity: 1; }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0.25; }
  .slick-prev:before,
  .slick-next:before {
    font-family: "slick";
    line-height: 1;
    color: white;
    opacity: 0.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }

.slick-prev {
  left: 25px; }
  [dir="rtl"] .slick-prev {
    left: auto;
    right: 25px; }
  .slick-prev:before {
    font-size: 25px;
    content: "←"; }
    [dir="rtl"] .slick-prev:before {
      content: "→"; }

.slick-next {
  right: 25px; }
  [dir="rtl"] .slick-next {
    right: auto;
    left: 25px; }
  .slick-next:before {
    font-size: 25px;
    content: "→"; }
    [dir="rtl"] .slick-next:before {
      content: "←"; }

/* Dots */
.slick-slider {
  margin-bottom: 30px; }

.slick-dots {
  position: absolute;
  bottom: -45px;
  padding: 0;
  width: 100%;
  list-style: none;
  display: block;
  text-align: center; }
  .slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer; }
    .slick-dots li button {
      display: block;
      border: 0;
      height: 20px;
      width: 20px;
      padding: 5px;
      line-height: 0px;
      font-size: 0px;
      cursor: pointer;
      background: transparent;
      color: transparent;
      outline: none; }
      .slick-dots li button:before {
        position: absolute;
        top: 0;
        left: 0;
        width: 20px;
        height: 20px;
        line-height: 20px;
        text-align: center;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
      .slick-dots li button:hover, .slick-dots li button:focus {
        outline: none; }
        .slick-dots li button:hover:before, .slick-dots li button:focus:before {
          opacity: 1; }
      .slick-dots li button:before {
        color: black;
        opacity: 0.25;
        content: "•";
        font-family: "slick";
        font-size: 6px; }
    .slick-dots li.slick-active button:before {
      color: black;
      opacity: 0.75; }

/**
	Construct
	Version: 0.0.1

	The construct is the base dependency for all core files and modules.
	Contains:
		-- Toolkit
		-- Assets
		-- Settings (including Foundation settings)
*/
/**
 * # Text Sizes
 *
 * Use with mixins:
 *  construct/toolkit/mixins/type#text-style
 *  construct/toolkit/mixins/type#text-size
 *  construct/toolkit/mixins/type#text-weight
 */
/**
 * Small Up Text Sizes
 * @type {Map}
 */
/**
 * Medium Up Text Sizes
 * @type {Map}
 */
/**
 * Large Up Text Sizes
 * @type {Map}
 */
/**
 * Export Global Text Sizes
 * @type {Map}
 */
/**
 * Text Styles
 */
/**
 * Small Up Styles
 * @type {Map}
 */
/**
 * Small Up Styles
 * @type {Map}
 */
/**
 * Small Up Styles
 * @type {Map}
 */
/**
 * Export Global Text Style Collection
 * @type {Map}
 */
/* Prevent Foundation from create css */
/**
	Assets

	Reference all Global assets here.
*/
/**
	Assets

	Reference all Global assets here.
*/
/**
 * Project Themes
 *
 * A colour theme is composed of several maps available as
 * variables:
 *
 * 1. As a key in the master `$theme` variable:
 *
 *    $themes: (
 *      THEME_NAME: $THEME_VARIABLE
 *    );
 *
 * 2. As a variable for each component in the theme:
 *
 *    $theme-links-THEMENAME
 *    $theme-blocks-THEMENAME
 *    $theme-datestamps-THEMENAME
 *    $theme-tables-THEMENAME
 *    etc
 *
 * 3. Each themes component is referred to in a master Map
 *  ie, all theme maps for blocks are collated into :
 *
 *    `$theme-blocks`
 *
 * 4. For each new theme component map that is created every
 *    other theme *must* define it.
 *
 */
/**
 * Import separate theme files first
 */
/**
 * Define themes for links as mappable items
 * @type {Map}
 */
/**
 * Define themes for buttons as mappable items
 * @type {Map}
 */
/**
 * Icons
 */
/**
 * Blocks
 */
/* Datestamp */
/* Tables */
/* Navigations */
/* Navigations */
/**
 * Themes
 */
/**
 * Font Assets
 *
 * - reference all fonts here first.
 */
/**
 * Icons used as images
 */
/**
 *
 * Embeded Image Icons
 *
 * Any datauri icons embeded in the
 * stylesheets need to be declared here as
 * variables
 */
@font-face {
  font-family: 'icons';
  src: url("/Static/Theme/fonts/icons--202392383007b5b23c94c26795437bc7.eot");
  src: url("/Static/Theme/fonts/icons--202392383007b5b23c94c26795437bc7.eot?#iefix") format("eot"), url("/Static/Theme/fonts/icons--a38c330a3a09bcb56bdf71d7625f610b.woff") format("woff"), url("/Static/Theme/fonts/icons--fd818761a7753efe32436acc4400dd5a.ttf") format("truetype"); }

/**
 *
 */
/**
 *  Timing Functions
 */
/**
 * Loading Spinner
 * !default means use these values if this variable is empty.
 */
/**
 * Vendor
 */
body {
  /* Addresses a small issue in webkit: http://bit.ly/NEdoDq */
  -webkit-backface-visibility: hidden; }

.animated {
  animation-duration: 1s;
  animation-fill-mode: both; }

/**
 * a tag with various event states.
 * @param  {String} $theme name of the colour theme as
 *                  described in construct/assets/themes(.scss)
 * @param  {String} $variant type of button variant (primary, secondary, etc)
 */
/**
 * A tag with a [href='*']:visited
 * @param {String} $theme [description]
 */
/**
 * A tag with a [href='*']:hover
 * @param  {String} $theme [description]
 */
/**
 * A tag with a [href='*']:active
 * @param  {String} $theme [description]
 */
/**
 * A tag with a [href='*']:focus
 * @param  {String} $theme [description]
 */
/**
 * A tag with a [href='*']:visited
 * @param  {String} $theme [description]
 */
/**
 * Font helper Mixins
 */
/**
 * Set the base style for a font-icon class
 * @param  {String} $font name of the font-family
 *                  and the file (sans extension)
 */
/**
 * Element covers the entire container.
 * Container requires position: relative;
 */
/**
 * Vertically center an element within the container.
 * Container requires position: relative;
 */
/**
 * a tag with various event states.
 * @param  {String} $theme name of the colour theme as
 *                  described in construct/assets/themes(.scss)
 */
/**
 * Implement a colour theme based on
 * the theme name
 * see :
 *  - construct/assets/_themes.scss
 *  - construct/assets/themes/*.tables.scss
 */
/**
 * Base table Layout
 */
/***
 * Stacked Cell Tables
 * a.k.a Mobile Tables
 * http://codepen.io/geoffyuen/pen/FCBEg
 */
/**
 * Normal Table Layout
 * (ie with column headers and columns)
 */
/**
 * [theme description]
 * @param  {[type]} $name: base          [description]
 * @return {[type]}        [description]
 * @TODO add html example
 */
/**
 * Colour Theme for Header HR
 *  Article Mountain Range SVG
 * @contentblock article
 * @param  {String} $color valid css colour
 */
/**
 * Article Colour Themer
 * @contentblock article
 * @param  {String} $name key in $block-themes
 * @TODO add html example
 */
/**
 * @TODO add html example
 */
/**
 * Block Icon Layout
 * @contentblock icon
 * @TODO add html example
 */
/**
 * [theme description]
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 * @TODO add html example
 */
/**
 * Rate Table Header Layout
 * @contentblock rate-table
 */
/**
 * Content Block Mixins
 *
 * Naming convention:
 *
 *    For content block types:
 *
 *    content-block-<THING>-layout
 *      - for base layout of THING, takes no variables
 *
 *    content-block-<THING>-theme
 *      - for themes.
 *      - takes one variable: a string that is the name of the colour theme
 *
 *    content-block-<THING>-SUBTHING-BLAH-FOO
 *      - repeatable behaviour styles
 *      - may take as many variables as required
 *
 *
 *
 * Commenting Conventions:
 *  - use docblock (jsdoc) format
 *  - all comment blocks have:
 *    - Mixin name
 *    - Mixin description
 *    - @contentblock CONTENT_BLOCK_NAME
 *    - list of @param {datatype} description
 *    - an indented html example that this mixin applies to.
 */
/**
 * Block Icon Layout
 * @contentblock icon
 * @TODO add html example
 */
/**
 * [theme description]
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 * @TODO add html example
 */
/**
 * [theme description]
 * @param  {[type]} $name: base          [description]
 * @return {[type]}        [description]
 * @TODO add html example
 */
/**
 * Content Blocks With Hero Mask
 * @contentblock any
 */
/**
 * @contentblock any
 */
/**
 * ???
 * @TODO: document this.
 * @return {[type]} [description]
 */
/**
 * [layout description]
 * @return {[type]} [description]
 * @TODO add html example
 */
/**
 * [hero description]
 * @return {[type]} [description]
 * @TODO add html example
 */
/**
 * [horizontally description]
 * @return {[type]} [description]
 * @TODO add html example
 */
/**
 * [theme description]
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 * @TODO add html example
 */
/**
 * [alignment description]
 * @param  {[type]} $alignment: center        [description]
 * @return {[type]}             [description]
 * @TODO add html example
 */
/**
 * [height description]
 * @param  {[type]} $height [description]
 * @return {[type]}         [description]
 * @TODO add html example
 */
/**
 * Position Block Footers
 * @TODO add html example
 */
/**
 * [alignment description]
 * @param  {[type]} $alignment: center        [description]
 * @return {[type]}             [description]
 * @TODO add html example
 */
/**
 * [theme description]
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 */
/**
 * Element covers the entire container.
 * Container requires position: relative;
 */
/**
 * Vertically center an element within the container.
 * Container requires position: relative;
 */
/**
 * [content description]
 * @return {[type]} [description]
 */
/**
 * Layouts
 */
/**
 * Base Layout
 * @param  {Number} `$bottom` padding for bottom edge
 */
/* mixin name derp . */
/**
 * Layout: Header
 * @return {[type]} [description]
 */
/**
 * Layout: Header Alignment
 */
/**
 * Layout: Footer Alignment
 * @param  {[type]} $alignment: center        [description]
 * @return {[type]}             [description]
 */
/**
 * Layout: Footer Layout
 * @return {[type]} [description]
 */
/**
 * Layout Theme CSS Generator
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 */
/**
 * Layout Theme
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 */
/**
 * Layout Theme: Footer
 * @param  {[type]} $textColor [description]
 * @param  {[type]} $theme     [description]
 * @return {[type]}            [description]
 */
/**
 * Layout Theme: Arrange Background
 * @return {[type]} [description]
 */
/**
 * Layout: Keep blocks Height same as Width
 */
/**
 * Layout: Remove Gaps
 * @return {[type]} [description]
 */
/**
 *
 * @param  {[type]} $breakpoint: small-up      [description]
 * @return {[type]}              [description]
 */
/**
 * removes margins on boundary row content blocks
 * @param  {[type]} $count: 1             [description]
 * @return {[type]}         [description]
 */
/**
 * adds margins on non boundary row content blocks
 * @param  {[type]} $count: 1             [description]
 * @return {[type]}         [description]
 */
/**
 * Make a layout full width
 */
/**
 * ???
 * @TODO: document this.
 * @param  {[type]} $top:    0              [description]
 * @param  {[type]} $right:  $column-gutter [description]
 * @param  {[type]} $bottom: 0              [description]
 * @param  {[type]} $left:   $column-gutter [description]
 * @return {[type]}          [description]
 */
/**
 * [theme description]
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 */
/**
 * Height of nav container
 * sum of heights of main and section nav
 */
/**
 * Height of nav container
 * Large up, sticky mode
 * sum of heights of main and section nav
 */
/**
 * Determines height of nav backdrop and logo container
 * Should equal height of contained nav <a>
 */
/**
 * [labels description]
 * @return {[type]} [description]
 */
/**
 * Login link
 */
/**
 * Logo link
 */
/**
 * Corresponds with xlargeup breakpoint
 */
/**
 * Mega Menu Mixins
 */
/**
 * Animation
 */
/**
 * Current item indicator
 *
 * draws a triangle on the bottom of the menu item
 */
/**
 * Modifies the triangle when menu is sticky
 */
/**
 * Links
 */
/**
 * Applies pseudo styles to navigation
 * Drawn from navigation themes
 */
/**
 * Pick a Theme Set, defaults to $default-theme-name if theme not found
 * @param  {String} $set    Colour theme map Set ($themes, $theme-blocks, etc)
 * @param  {String} $name   Colour theme name, a key in $set
 * @return {Map}			The colour theme map
 */
/**
 * Pick Text Style From Global Map
 * @link	styles/theme/default/construct/settings/core/_type.scss
 * @param  {String} $breakpoint key in $text-styles
 * @param  {String} $name       key in $text-styles[$breakpoint]
 * @return {Map}                map of font-size, line-height, font-weight, etc
 */
/**
 * Pick Text Font Size
 * @link	styles/theme/default/construct/settings/core/_type.scss
 * @param  {String} $set       key in $text-sizes
 * @param  {String} $size      key in $set (xxsmall, xsmall, small, normal, etc)
 * @return {Integer}
 */
/**
 * Pick Text Weight
 * @link	styles/theme/default/construct/settings/core/_type.scss
 * @param  {String} $set       key in $text-sizes
 * @param  {String} $weight      key in $set (xxsmall, xsmall, small, normal, etc)
 * @return {Integer}
 */
/**
 * SVG Tools
 * Source: http://codepen.io/jakob-e/pen/doMoML
 */
.content-block {
  padding: 1.875rem 1.875rem 1.875rem 1.875rem;
  text-align: left;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center; }
  .content-block.background-x-left {
    background-position: top left; }
  .content-block.background-x-center {
    background-position: top center; }
  .content-block.background-x-right {
    background-position: top right; }
  .content-block.background-x-left {
    background-position: center left; }
  .content-block.background-x-center {
    background-position: center center; }
  .content-block.background-x-right {
    background-position: center right; }
  .content-block.background-x-left {
    background-position: bottom left; }
  .content-block.background-x-center {
    background-position: bottom center; }
  .content-block.background-x-right {
    background-position: bottom right; }

.block-title {
  font-size: 1.875rem;
  font-weight: normal;
  margin-bottom: 0.9375rem; }

.block-topic {
  font-size: 0.625rem;
  font-weight: normal;
  display: block;
  padding-bottom: 0.9375rem;
  line-height: 1.4; }

.block-header a,
.block-header .block-title a,
.block-header .block-topic a {
  text-decoration: none; }

.block-footer .inline-list {
  margin: 0; }
  .block-footer .inline-list .button {
    margin: 1px; }
  .block-footer .inline-list li:first-child {
    margin-left: 0; }

/**
 * Both header and Footer are centered
 */
.block-centered header.block-header .block-title,
.block-centered footer.block-footer .block-title {
  text-align: center; }

.block-centered header.block-header .links,
.block-centered footer.block-footer .links {
  display: block;
  list-style: none;
  text-align: center;
  margin: 0;
  padding: 0; }
  .block-centered header.block-header .links li,
  .block-centered footer.block-footer .links li {
    display: inline-block;
    float: none; }

.block-content-left .content-block-content {
  text-align: left; }

.block-content-centered .content-block-content {
  text-align: center; }

.block-content-right .content-block-content {
  text-align: right; }

/**
 * Only header is centered
 */
.block-header-left header.block-header .block-title {
  text-align: left; }

.block-header-centered header.block-header .block-title {
  text-align: center; }

.block-header-right header.block-header .block-title {
  text-align: right; }

/**
 * Only footer is centered
 */
.block-footer-left footer.block-footer .links {
  display: block;
  list-style: none;
  text-align: left;
  margin: 0;
  padding: 0; }
  .block-footer-left footer.block-footer .links li {
    display: inline-block;
    float: none; }

.block-footer-centered footer.block-footer .links {
  display: block;
  list-style: none;
  text-align: center;
  margin: 0;
  padding: 0; }
  .block-footer-centered footer.block-footer .links li {
    display: inline-block;
    float: none; }

.block-footer-right footer.block-footer .links {
  display: block;
  list-style: none;
  text-align: right;
  margin: 0;
  padding: 0; }
  .block-footer-right footer.block-footer .links li {
    display: inline-block;
    float: none; }

/**
 * Molecules
 * - small only
 */
@media only screen and (max-width: 30em) {
  .content-block.hide-bg-on-small {
    /* it's cool. because small-only */
    background-image: none !important; } }

/**
 * Molecules
 * - medium up
 */
@media only screen and (min-width: 30.063em) {
  .rate {
    position: inherit; }
    .rate .rate-label {
      font-size: 0.875rem;
      font-weight: normal; }
    .rate .rate-value {
      font-size: 2.25rem;
      font-weight: light; }
    .rate .rate-label {
      position: static; }
  #global-alerts .alert-box > p {
    font-size: 0.75rem;
    font-weight: normal; }
  #global-alerts .alert-box [class^="icon-"],
  #global-alerts .alert-box [class*=" icon-"] {
    line-height: 1;
    font-size: 1.25rem;
    font-weight: normal; }
  .medium-6 .medium-6 .content-block .block-title,
  .medium-12 .medium-6 .content-block .block-title {
    font-size: 1.25rem;
    font-weight: normal; }
  .medium-6 .medium-6 .content-block .block-topic,
  .medium-6 .medium-6 .content-block .date-stamp,
  .medium-12 .medium-6 .content-block .block-topic,
  .medium-12 .medium-6 .content-block .date-stamp {
    padding-bottom: 0.9375rem; } }

/**
 * Molecules
 * - large up
 */
@media only screen and (min-width: 55.063em) {
  table, table[data-stacked-deck] {
    border: none;
    border-spacing: 0;
    width: 100%;
    margin-bottom: 1.875rem; }
    table tr th, table[data-stacked-deck] tr th {
      font-size: 0.875rem;
      font-weight: normal;
      font-weight: bold;
      padding-top: 0.9375rem;
      padding-bottom: 0.9375rem;
      vertical-align: top;
      text-align: left;
      border-bottom-width: 1px;
      border-bottom-style: solid;
      border-collapse: collapse; }
    table tr td, table[data-stacked-deck] tr td {
      font-size: 0.875rem;
      font-weight: normal;
      border-bottom-width: 1px;
      border-bottom-style: solid;
      border-collapse: collapse;
      padding-top: 0.9375rem;
      padding-bottom: 0.9375rem;
      vertical-align: top;
      text-align: left; }
    table thead tr th, table[data-stacked-deck] thead tr th {
      display: table-cell; }
    table thead, table[data-stacked-deck] thead {
      display: table-header-group; }
    table tr, table[data-stacked-deck] tr {
      display: table-row; }
      table tr td, table tr th, table[data-stacked-deck] tr td, table[data-stacked-deck] tr th {
        display: table-cell;
        text-align: left; }
        table tr td:before, table tr th:before, table[data-stacked-deck] tr td:before, table[data-stacked-deck] tr th:before {
          content: none; }
  .large-6 .large-6 .content-block .block-title {
    font-size: 1.125rem;
    font-weight: normal; }
  .large-6 .large-6 .content-block .block-topic,
  .large-6 .large-6 .content-block .date-stamp {
    padding-bottom: 0.9375rem; } }

/**
 * Molecules
 * - print
 */
/**
	Construct
	Version: 0.0.1

	The construct is the base dependency for all core files and modules.
	Contains:
		-- Toolkit
		-- Assets
		-- Settings (including Foundation settings)
*/
/**
 * # Text Sizes
 *
 * Use with mixins:
 *  construct/toolkit/mixins/type#text-style
 *  construct/toolkit/mixins/type#text-size
 *  construct/toolkit/mixins/type#text-weight
 */
/**
 * Small Up Text Sizes
 * @type {Map}
 */
/**
 * Medium Up Text Sizes
 * @type {Map}
 */
/**
 * Large Up Text Sizes
 * @type {Map}
 */
/**
 * Export Global Text Sizes
 * @type {Map}
 */
/**
 * Text Styles
 */
/**
 * Small Up Styles
 * @type {Map}
 */
/**
 * Small Up Styles
 * @type {Map}
 */
/**
 * Small Up Styles
 * @type {Map}
 */
/**
 * Export Global Text Style Collection
 * @type {Map}
 */
/* Prevent Foundation from create css */
/**
	Assets

	Reference all Global assets here.
*/
/**
	Assets

	Reference all Global assets here.
*/
/**
 * Project Themes
 *
 * A colour theme is composed of several maps available as
 * variables:
 *
 * 1. As a key in the master `$theme` variable:
 *
 *    $themes: (
 *      THEME_NAME: $THEME_VARIABLE
 *    );
 *
 * 2. As a variable for each component in the theme:
 *
 *    $theme-links-THEMENAME
 *    $theme-blocks-THEMENAME
 *    $theme-datestamps-THEMENAME
 *    $theme-tables-THEMENAME
 *    etc
 *
 * 3. Each themes component is referred to in a master Map
 *  ie, all theme maps for blocks are collated into :
 *
 *    `$theme-blocks`
 *
 * 4. For each new theme component map that is created every
 *    other theme *must* define it.
 *
 */
/**
 * Import separate theme files first
 */
/**
 * Define themes for links as mappable items
 * @type {Map}
 */
/**
 * Define themes for buttons as mappable items
 * @type {Map}
 */
/**
 * Icons
 */
/**
 * Blocks
 */
/* Datestamp */
/* Tables */
/* Navigations */
/* Navigations */
/**
 * Themes
 */
/**
 * Font Assets
 *
 * - reference all fonts here first.
 */
/**
 * Icons used as images
 */
/**
 *
 * Embeded Image Icons
 *
 * Any datauri icons embeded in the
 * stylesheets need to be declared here as
 * variables
 */
@font-face {
  font-family: 'icons';
  src: url("/Static/Theme/fonts/icons--202392383007b5b23c94c26795437bc7.eot");
  src: url("/Static/Theme/fonts/icons--202392383007b5b23c94c26795437bc7.eot?#iefix") format("eot"), url("/Static/Theme/fonts/icons--a38c330a3a09bcb56bdf71d7625f610b.woff") format("woff"), url("/Static/Theme/fonts/icons--fd818761a7753efe32436acc4400dd5a.ttf") format("truetype"); }

/**
 *
 */
/**
 *  Timing Functions
 */
/**
 * Loading Spinner
 * !default means use these values if this variable is empty.
 */
/**
 * Vendor
 */
body {
  /* Addresses a small issue in webkit: http://bit.ly/NEdoDq */
  -webkit-backface-visibility: hidden; }

.animated {
  animation-duration: 1s;
  animation-fill-mode: both; }

/**
 * a tag with various event states.
 * @param  {String} $theme name of the colour theme as
 *                  described in construct/assets/themes(.scss)
 * @param  {String} $variant type of button variant (primary, secondary, etc)
 */
/**
 * A tag with a [href='*']:visited
 * @param {String} $theme [description]
 */
/**
 * A tag with a [href='*']:hover
 * @param  {String} $theme [description]
 */
/**
 * A tag with a [href='*']:active
 * @param  {String} $theme [description]
 */
/**
 * A tag with a [href='*']:focus
 * @param  {String} $theme [description]
 */
/**
 * A tag with a [href='*']:visited
 * @param  {String} $theme [description]
 */
/**
 * Font helper Mixins
 */
/**
 * Set the base style for a font-icon class
 * @param  {String} $font name of the font-family
 *                  and the file (sans extension)
 */
/**
 * Element covers the entire container.
 * Container requires position: relative;
 */
/**
 * Vertically center an element within the container.
 * Container requires position: relative;
 */
/**
 * a tag with various event states.
 * @param  {String} $theme name of the colour theme as
 *                  described in construct/assets/themes(.scss)
 */
/**
 * Implement a colour theme based on
 * the theme name
 * see :
 *  - construct/assets/_themes.scss
 *  - construct/assets/themes/*.tables.scss
 */
/**
 * Base table Layout
 */
/***
 * Stacked Cell Tables
 * a.k.a Mobile Tables
 * http://codepen.io/geoffyuen/pen/FCBEg
 */
/**
 * Normal Table Layout
 * (ie with column headers and columns)
 */
/**
 * [theme description]
 * @param  {[type]} $name: base          [description]
 * @return {[type]}        [description]
 * @TODO add html example
 */
/**
 * Colour Theme for Header HR
 *  Article Mountain Range SVG
 * @contentblock article
 * @param  {String} $color valid css colour
 */
/**
 * Article Colour Themer
 * @contentblock article
 * @param  {String} $name key in $block-themes
 * @TODO add html example
 */
/**
 * @TODO add html example
 */
/**
 * Block Icon Layout
 * @contentblock icon
 * @TODO add html example
 */
/**
 * [theme description]
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 * @TODO add html example
 */
/**
 * Rate Table Header Layout
 * @contentblock rate-table
 */
/**
 * Content Block Mixins
 *
 * Naming convention:
 *
 *    For content block types:
 *
 *    content-block-<THING>-layout
 *      - for base layout of THING, takes no variables
 *
 *    content-block-<THING>-theme
 *      - for themes.
 *      - takes one variable: a string that is the name of the colour theme
 *
 *    content-block-<THING>-SUBTHING-BLAH-FOO
 *      - repeatable behaviour styles
 *      - may take as many variables as required
 *
 *
 *
 * Commenting Conventions:
 *  - use docblock (jsdoc) format
 *  - all comment blocks have:
 *    - Mixin name
 *    - Mixin description
 *    - @contentblock CONTENT_BLOCK_NAME
 *    - list of @param {datatype} description
 *    - an indented html example that this mixin applies to.
 */
/**
 * Block Icon Layout
 * @contentblock icon
 * @TODO add html example
 */
/**
 * [theme description]
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 * @TODO add html example
 */
/**
 * [theme description]
 * @param  {[type]} $name: base          [description]
 * @return {[type]}        [description]
 * @TODO add html example
 */
/**
 * Content Blocks With Hero Mask
 * @contentblock any
 */
/**
 * @contentblock any
 */
/**
 * ???
 * @TODO: document this.
 * @return {[type]} [description]
 */
/**
 * [layout description]
 * @return {[type]} [description]
 * @TODO add html example
 */
/**
 * [hero description]
 * @return {[type]} [description]
 * @TODO add html example
 */
/**
 * [horizontally description]
 * @return {[type]} [description]
 * @TODO add html example
 */
/**
 * [theme description]
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 * @TODO add html example
 */
/**
 * [alignment description]
 * @param  {[type]} $alignment: center        [description]
 * @return {[type]}             [description]
 * @TODO add html example
 */
/**
 * [height description]
 * @param  {[type]} $height [description]
 * @return {[type]}         [description]
 * @TODO add html example
 */
/**
 * Position Block Footers
 * @TODO add html example
 */
/**
 * [alignment description]
 * @param  {[type]} $alignment: center        [description]
 * @return {[type]}             [description]
 * @TODO add html example
 */
/**
 * [theme description]
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 */
/**
 * Element covers the entire container.
 * Container requires position: relative;
 */
/**
 * Vertically center an element within the container.
 * Container requires position: relative;
 */
/**
 * [content description]
 * @return {[type]} [description]
 */
/**
 * Layouts
 */
/**
 * Base Layout
 * @param  {Number} `$bottom` padding for bottom edge
 */
/* mixin name derp . */
/**
 * Layout: Header
 * @return {[type]} [description]
 */
/**
 * Layout: Header Alignment
 */
/**
 * Layout: Footer Alignment
 * @param  {[type]} $alignment: center        [description]
 * @return {[type]}             [description]
 */
/**
 * Layout: Footer Layout
 * @return {[type]} [description]
 */
/**
 * Layout Theme CSS Generator
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 */
/**
 * Layout Theme
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 */
/**
 * Layout Theme: Footer
 * @param  {[type]} $textColor [description]
 * @param  {[type]} $theme     [description]
 * @return {[type]}            [description]
 */
/**
 * Layout Theme: Arrange Background
 * @return {[type]} [description]
 */
/**
 * Layout: Keep blocks Height same as Width
 */
/**
 * Layout: Remove Gaps
 * @return {[type]} [description]
 */
/**
 *
 * @param  {[type]} $breakpoint: small-up      [description]
 * @return {[type]}              [description]
 */
/**
 * removes margins on boundary row content blocks
 * @param  {[type]} $count: 1             [description]
 * @return {[type]}         [description]
 */
/**
 * adds margins on non boundary row content blocks
 * @param  {[type]} $count: 1             [description]
 * @return {[type]}         [description]
 */
/**
 * Make a layout full width
 */
/**
 * ???
 * @TODO: document this.
 * @param  {[type]} $top:    0              [description]
 * @param  {[type]} $right:  $column-gutter [description]
 * @param  {[type]} $bottom: 0              [description]
 * @param  {[type]} $left:   $column-gutter [description]
 * @return {[type]}          [description]
 */
/**
 * [theme description]
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 */
/**
 * Height of nav container
 * sum of heights of main and section nav
 */
/**
 * Height of nav container
 * Large up, sticky mode
 * sum of heights of main and section nav
 */
/**
 * Determines height of nav backdrop and logo container
 * Should equal height of contained nav <a>
 */
/**
 * [labels description]
 * @return {[type]} [description]
 */
/**
 * Login link
 */
/**
 * Logo link
 */
/**
 * Corresponds with xlargeup breakpoint
 */
/**
 * Mega Menu Mixins
 */
/**
 * Animation
 */
/**
 * Current item indicator
 *
 * draws a triangle on the bottom of the menu item
 */
/**
 * Modifies the triangle when menu is sticky
 */
/**
 * Links
 */
/**
 * Applies pseudo styles to navigation
 * Drawn from navigation themes
 */
/**
 * Pick a Theme Set, defaults to $default-theme-name if theme not found
 * @param  {String} $set    Colour theme map Set ($themes, $theme-blocks, etc)
 * @param  {String} $name   Colour theme name, a key in $set
 * @return {Map}			The colour theme map
 */
/**
 * Pick Text Style From Global Map
 * @link	styles/theme/default/construct/settings/core/_type.scss
 * @param  {String} $breakpoint key in $text-styles
 * @param  {String} $name       key in $text-styles[$breakpoint]
 * @return {Map}                map of font-size, line-height, font-weight, etc
 */
/**
 * Pick Text Font Size
 * @link	styles/theme/default/construct/settings/core/_type.scss
 * @param  {String} $set       key in $text-sizes
 * @param  {String} $size      key in $set (xxsmall, xsmall, small, normal, etc)
 * @return {Integer}
 */
/**
 * Pick Text Weight
 * @link	styles/theme/default/construct/settings/core/_type.scss
 * @param  {String} $set       key in $text-sizes
 * @param  {String} $weight      key in $set (xxsmall, xsmall, small, normal, etc)
 * @return {Integer}
 */
/**
 * SVG Tools
 * Source: http://codepen.io/jakob-e/pen/doMoML
 */
/**
 * Organisms
 * - small and up
 */
.off-canvas-wrap {
  /**
	 * hides nav icons in offcanvas menu
	 */ }
  .off-canvas-wrap .tab-bar {
    background: #ffffff;
    border-bottom: solid 1px #e7e7e7; }
  .off-canvas-wrap .left-small {
    border-right-color: #f0f0f0; }
  .off-canvas-wrap .right-small {
    text-align: center;
    border-left: 0; }
    .off-canvas-wrap .right-small > a {
      border-left: 1px solid #f0f0f0;
      height: inherit;
      color: #003764;
      font-size: 130%; }
  .off-canvas-wrap .menu-icon span::after {
    box-shadow: 0px 0px 0px 2px #003764, 0px 7px 0px 2px #d3007e, 0px 14px 0px 2px #ffa400; }
  .off-canvas-wrap .tab-bar-section img {
    height: 34px; }
  .off-canvas-wrap .right-small {
    width: auto; }
    .off-canvas-wrap .right-small > a {
      width: 2.8125rem;
      display: inline-block; }
      .off-canvas-wrap .right-small > a span {
        display: block; }
      .off-canvas-wrap .right-small > a span:before {
        line-height: 2; }
  .off-canvas-wrap a.login span:before {
    background: silver;
    border-radius: 50%;
    display: inline;
    border: 0.4em solid silver;
    border-bottom: 0;
    border-left-width: 0.2em;
    border-right-width: 0.2em;
    margin-top: 0.4em;
    position: relative;
    top: 0.2em; }
  .off-canvas-wrap .left-off-canvas-menu {
    background-color: #ffffff; }
    .off-canvas-wrap .left-off-canvas-menu .nav-top > i,
    .off-canvas-wrap .left-off-canvas-menu .nav-section > i {
      display: none; }
  .off-canvas-wrap .left-off-canvas-menu,
  .off-canvas-wrap .right-off-canvas-menu {
    transition: none;
    width: 90%; }
    .off-canvas-wrap .left-off-canvas-menu .search-form,
    .off-canvas-wrap .right-off-canvas-menu .search-form {
      background: #d3007e; }
      .off-canvas-wrap .left-off-canvas-menu .search-form [class^="icon-"],
      .off-canvas-wrap .left-off-canvas-menu .search-form [class*=" icon-"],
      .off-canvas-wrap .right-off-canvas-menu .search-form [class^="icon-"],
      .off-canvas-wrap .right-off-canvas-menu .search-form [class*=" icon-"] {
        line-height: 1;
        color: #ffffff; }
      .off-canvas-wrap .left-off-canvas-menu .search-form input[type=search],
      .off-canvas-wrap .right-off-canvas-menu .search-form input[type=search] {
        color: #ffffff;
        box-shadow: none;
        background: transparent;
        border: none; }
        .off-canvas-wrap .left-off-canvas-menu .search-form input[type=search]::-webkit-input-placeholder,
        .off-canvas-wrap .right-off-canvas-menu .search-form input[type=search]::-webkit-input-placeholder {
          color: rgba(255, 255, 255, 0.85); }
        .off-canvas-wrap .left-off-canvas-menu .search-form input[type=search]::-moz-placeholder,
        .off-canvas-wrap .right-off-canvas-menu .search-form input[type=search]::-moz-placeholder {
          color: rgba(255, 255, 255, 0.85); }
        .off-canvas-wrap .left-off-canvas-menu .search-form input[type=search]:-moz-placeholder,
        .off-canvas-wrap .right-off-canvas-menu .search-form input[type=search]:-moz-placeholder {
          color: rgba(255, 255, 255, 0.85); }
        .off-canvas-wrap .left-off-canvas-menu .search-form input[type=search]:-ms-input-placeholder,
        .off-canvas-wrap .right-off-canvas-menu .search-form input[type=search]:-ms-input-placeholder {
          color: rgba(255, 255, 255, 0.85); }
      .off-canvas-wrap .left-off-canvas-menu .search-form button,
      .off-canvas-wrap .right-off-canvas-menu .search-form button {
        background-color: transparent;
        border: none;
        box-shadow: 0 0 0 2px #ffffff; }
        .off-canvas-wrap .left-off-canvas-menu .search-form button:hover, .off-canvas-wrap .left-off-canvas-menu .search-form button:focus,
        .off-canvas-wrap .right-off-canvas-menu .search-form button:hover,
        .off-canvas-wrap .right-off-canvas-menu .search-form button:focus {
          color: #d3007e;
          background-color: #ffffff;
          box-shadow: 0 0 0 0px #ffffff; }
    .off-canvas-wrap .left-off-canvas-menu ul.off-canvas-list.first-level > .has-submenu,
    .off-canvas-wrap .right-off-canvas-menu ul.off-canvas-list.first-level > .has-submenu {
      border-bottom: 1px solid #ffffff; }
    .off-canvas-wrap .left-off-canvas-menu ul.off-canvas-list .second-level > .has-submenu,
    .off-canvas-wrap .right-off-canvas-menu ul.off-canvas-list .second-level > .has-submenu {
      border-bottom: 1px solid #525251; }
    .off-canvas-wrap .left-off-canvas-menu ul.off-canvas-list.submenu, .off-canvas-wrap .left-off-canvas-menu ul.off-canvas-list.submenu ul, .off-canvas-wrap .left-off-canvas-menu ul.off-canvas-list.submenu li, .off-canvas-wrap .left-off-canvas-menu ul.off-canvas-list.submenu .columns,
    .off-canvas-wrap .left-off-canvas-menu ul.off-canvas-list .submenu,
    .off-canvas-wrap .left-off-canvas-menu ul.off-canvas-list .submenu ul,
    .off-canvas-wrap .left-off-canvas-menu ul.off-canvas-list .submenu li,
    .off-canvas-wrap .left-off-canvas-menu ul.off-canvas-list .submenu .columns,
    .off-canvas-wrap .right-off-canvas-menu ul.off-canvas-list.submenu,
    .off-canvas-wrap .right-off-canvas-menu ul.off-canvas-list.submenu ul,
    .off-canvas-wrap .right-off-canvas-menu ul.off-canvas-list.submenu li,
    .off-canvas-wrap .right-off-canvas-menu ul.off-canvas-list.submenu .columns,
    .off-canvas-wrap .right-off-canvas-menu ul.off-canvas-list .submenu,
    .off-canvas-wrap .right-off-canvas-menu ul.off-canvas-list .submenu ul,
    .off-canvas-wrap .right-off-canvas-menu ul.off-canvas-list .submenu li,
    .off-canvas-wrap .right-off-canvas-menu ul.off-canvas-list .submenu .columns {
      position: relative;
      list-style: none;
      margin: 0;
      padding: 0; }
    .off-canvas-wrap .left-off-canvas-menu ul.off-canvas-list.submenu > li.has-submenu,
    .off-canvas-wrap .left-off-canvas-menu ul.off-canvas-list .submenu > li.has-submenu,
    .off-canvas-wrap .right-off-canvas-menu ul.off-canvas-list.submenu > li.has-submenu,
    .off-canvas-wrap .right-off-canvas-menu ul.off-canvas-list .submenu > li.has-submenu {
      /**
	 * Get rid of the default foundation chevrons
	 */ }
      .off-canvas-wrap .left-off-canvas-menu ul.off-canvas-list.submenu > li.has-submenu > a:after,
      .off-canvas-wrap .left-off-canvas-menu ul.off-canvas-list.submenu > li.has-submenu > a:before,
      .off-canvas-wrap .left-off-canvas-menu ul.off-canvas-list .submenu > li.has-submenu > a:after,
      .off-canvas-wrap .left-off-canvas-menu ul.off-canvas-list .submenu > li.has-submenu > a:before,
      .off-canvas-wrap .right-off-canvas-menu ul.off-canvas-list.submenu > li.has-submenu > a:after,
      .off-canvas-wrap .right-off-canvas-menu ul.off-canvas-list.submenu > li.has-submenu > a:before,
      .off-canvas-wrap .right-off-canvas-menu ul.off-canvas-list .submenu > li.has-submenu > a:after,
      .off-canvas-wrap .right-off-canvas-menu ul.off-canvas-list .submenu > li.has-submenu > a:before {
        content: ' ';
        display: none; }
      .off-canvas-wrap .left-off-canvas-menu ul.off-canvas-list.submenu > li.has-submenu [data-submenu-toggle],
      .off-canvas-wrap .left-off-canvas-menu ul.off-canvas-list .submenu > li.has-submenu [data-submenu-toggle],
      .off-canvas-wrap .right-off-canvas-menu ul.off-canvas-list.submenu > li.has-submenu [data-submenu-toggle],
      .off-canvas-wrap .right-off-canvas-menu ul.off-canvas-list .submenu > li.has-submenu [data-submenu-toggle] {
        position: absolute;
        display: block;
        padding-right: 0;
        top: 0;
        bottom: 0;
        right: 0;
        width: 2.5rem;
        text-align: center;
        line-height: 2; }
        .off-canvas-wrap .left-off-canvas-menu ul.off-canvas-list.submenu > li.has-submenu [data-submenu-toggle]:focus + .submenu,
        .off-canvas-wrap .left-off-canvas-menu ul.off-canvas-list .submenu > li.has-submenu [data-submenu-toggle]:focus + .submenu,
        .off-canvas-wrap .right-off-canvas-menu ul.off-canvas-list.submenu > li.has-submenu [data-submenu-toggle]:focus + .submenu,
        .off-canvas-wrap .right-off-canvas-menu ul.off-canvas-list .submenu > li.has-submenu [data-submenu-toggle]:focus + .submenu {
          display: block; }
      .off-canvas-wrap .left-off-canvas-menu ul.off-canvas-list.submenu > li.has-submenu .submenu-category-title,
      .off-canvas-wrap .left-off-canvas-menu ul.off-canvas-list .submenu > li.has-submenu .submenu-category-title,
      .off-canvas-wrap .right-off-canvas-menu ul.off-canvas-list.submenu > li.has-submenu .submenu-category-title,
      .off-canvas-wrap .right-off-canvas-menu ul.off-canvas-list .submenu > li.has-submenu .submenu-category-title {
        margin-top: 2em;
        color: white;
        font-size: 0.5rem;
        font-weight: normal; }
      .off-canvas-wrap .left-off-canvas-menu ul.off-canvas-list.submenu > li.has-submenu, .off-canvas-wrap .left-off-canvas-menu ul.off-canvas-list.submenu > li.has-submenu > a,
      .off-canvas-wrap .left-off-canvas-menu ul.off-canvas-list .submenu > li.has-submenu,
      .off-canvas-wrap .left-off-canvas-menu ul.off-canvas-list .submenu > li.has-submenu > a,
      .off-canvas-wrap .right-off-canvas-menu ul.off-canvas-list.submenu > li.has-submenu,
      .off-canvas-wrap .right-off-canvas-menu ul.off-canvas-list.submenu > li.has-submenu > a,
      .off-canvas-wrap .right-off-canvas-menu ul.off-canvas-list .submenu > li.has-submenu,
      .off-canvas-wrap .right-off-canvas-menu ul.off-canvas-list .submenu > li.has-submenu > a {
        display: block; }
      .off-canvas-wrap .left-off-canvas-menu ul.off-canvas-list.submenu > li.has-submenu > .submenu-wrapper > .submenu,
      .off-canvas-wrap .left-off-canvas-menu ul.off-canvas-list.submenu > li.has-submenu > .megamenu-wrapper,
      .off-canvas-wrap .left-off-canvas-menu ul.off-canvas-list .submenu > li.has-submenu > .submenu-wrapper > .submenu,
      .off-canvas-wrap .left-off-canvas-menu ul.off-canvas-list .submenu > li.has-submenu > .megamenu-wrapper,
      .off-canvas-wrap .right-off-canvas-menu ul.off-canvas-list.submenu > li.has-submenu > .submenu-wrapper > .submenu,
      .off-canvas-wrap .right-off-canvas-menu ul.off-canvas-list.submenu > li.has-submenu > .megamenu-wrapper,
      .off-canvas-wrap .right-off-canvas-menu ul.off-canvas-list .submenu > li.has-submenu > .submenu-wrapper > .submenu,
      .off-canvas-wrap .right-off-canvas-menu ul.off-canvas-list .submenu > li.has-submenu > .megamenu-wrapper {
        display: none; }
      .off-canvas-wrap .left-off-canvas-menu ul.off-canvas-list.submenu > li.has-submenu.open > .submenu-wrapper > .submenu,
      .off-canvas-wrap .left-off-canvas-menu ul.off-canvas-list.submenu > li.has-submenu.open > .megamenu-wrapper,
      .off-canvas-wrap .left-off-canvas-menu ul.off-canvas-list .submenu > li.has-submenu.open > .submenu-wrapper > .submenu,
      .off-canvas-wrap .left-off-canvas-menu ul.off-canvas-list .submenu > li.has-submenu.open > .megamenu-wrapper,
      .off-canvas-wrap .right-off-canvas-menu ul.off-canvas-list.submenu > li.has-submenu.open > .submenu-wrapper > .submenu,
      .off-canvas-wrap .right-off-canvas-menu ul.off-canvas-list.submenu > li.has-submenu.open > .megamenu-wrapper,
      .off-canvas-wrap .right-off-canvas-menu ul.off-canvas-list .submenu > li.has-submenu.open > .submenu-wrapper > .submenu,
      .off-canvas-wrap .right-off-canvas-menu ul.off-canvas-list .submenu > li.has-submenu.open > .megamenu-wrapper {
        display: block; }
    .off-canvas-wrap .left-off-canvas-menu ul.off-canvas-list a > .nav-toggle-icon,
    .off-canvas-wrap .right-off-canvas-menu ul.off-canvas-list a > .nav-toggle-icon {
      font-size: 1rem;
      padding-right: 0.5rem; }
    .off-canvas-wrap .left-off-canvas-menu ul.off-canvas-list .first-level .site-branding,
    .off-canvas-wrap .right-off-canvas-menu ul.off-canvas-list .first-level .site-branding {
      display: none; }

/**
 * Theming
 */
/**
 * Toggle icons
 */
.nav-toggle-icon:before {
  font-family: "icons";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: inherit;
  /* position */
  text-align: center;
  display: inline-block;
  line-height: 1;
  /* prevent screen reader */
  speak: none;
  /* appearance */
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: ""; }
  .open > .nav-toggle .nav-toggle-icon:before {
    content: ""; }

/**
 * Top nav tier
 */
.navigation-wrapper .nav-top:link, .navigation-wrapper .nav-top:visited {
  color: #002c50;
  background-color: #f0f0f0; }

.navigation-wrapper .nav-top:focus, .navigation-wrapper .nav-top:hover, .navigation-wrapper .nav-top:active {
  color: #002c50;
  background-color: #ffffff; }

.navigation-wrapper .nav-toggle-top {
  /**
	 * @todo make these all <button>s - remove pseudo selectors intended for <a>
	 * @note :link,:visited do not affect <a> without href
	 */ }
  .navigation-wrapper .nav-toggle-top, .navigation-wrapper .nav-toggle-top:link, .navigation-wrapper .nav-toggle-top:visited {
    color: #002c50;
    background-color: #ffffff; }
  .navigation-wrapper .nav-toggle-top:focus, .navigation-wrapper .nav-toggle-top:hover, .navigation-wrapper .nav-toggle-top:active {
    color: #002c50;
    background-color: #ffffff; }

.nav-top > i,
.nav-mega > i {
  margin-right: 0.5rem; }

/**
 * Section (second level) tier
 */
.section-nav-wrapper {
  background-color: #1d1d1b;
  /*a*/ }
  .section-nav-wrapper .nav-section:link, .section-nav-wrapper .nav-section:visited {
    color: rgba(255, 255, 255, 0.9);
    background-color: transparent; }
  .section-nav-wrapper .nav-section:focus, .section-nav-wrapper .nav-section:hover, .section-nav-wrapper .nav-section:active {
    color: #ffffff;
    background-color: #525251; }
  .section-nav-wrapper .nav-toggle-section {
    /**
	 * @todo make these all <button>s - remove pseudo selectors intended for <a>
	 * @note :link,:visited do not affect <a> without href
	 */ }
    .section-nav-wrapper .nav-toggle-section, .section-nav-wrapper .nav-toggle-section:link, .section-nav-wrapper .nav-toggle-section:visited {
      color: #ffffff;
      background-color: #5f5f5e; }
    .section-nav-wrapper .nav-toggle-section:focus, .section-nav-wrapper .nav-toggle-section:hover, .section-nav-wrapper .nav-toggle-section:active {
      color: #ffffff;
      background-color: #6c6c6a; }

/**
 * Mega menu tier
 */
.megamenu-wrapper {
  background-color: #525251;
  /*a*/ }
  .megamenu-wrapper .nav-mega:link, .megamenu-wrapper .nav-mega:visited {
    color: rgba(255, 255, 255, 0.9);
    background-color: transparent; }
  .megamenu-wrapper .nav-mega:focus, .megamenu-wrapper .nav-mega:hover, .megamenu-wrapper .nav-mega:active {
    color: #ffffff;
    background-color: #525251; }

.off-canvas-wrap .left-off-canvas-menu ul.off-canvas-list.submenu > li.has-submenu .megamenu .submenu-category-title {
  color: rgba(255, 164, 0, 0.9);
  font-size: 0.875rem;
  font-weight: normal; }
  .off-canvas-wrap .left-off-canvas-menu ul.off-canvas-list.submenu > li.has-submenu .megamenu .submenu-category-title:hover {
    color: #ffa400;
    background: none; }

/**
 * Tools nav.
 */
#tools-navigation {
  /**
	 * First level links
	 */
  /**
		 * Toggle buttons next to top level links
		 */
  /**
	 * Section (second level) tier
	 * will be a element next to the `.nav-top` items
	 */
  /*a*/ }
  #tools-navigation .first-level > li {
    /**
		 * Make the border visible when open and closed
		 */
    border-bottom: 1px solid #4a4a49;
    padding-bottom: 1px;
    margin-bottom: 1px; }
  #tools-navigation .nav-top:link, #tools-navigation .nav-top:visited {
    color: rgba(255, 255, 255, 0.9);
    background-color: #000; }
  #tools-navigation .nav-top:focus, #tools-navigation .nav-top:hover, #tools-navigation .nav-top:active {
    color: #ffffff;
    background-color: #000; }
  #tools-navigation .nav-toggle-top {
    /**
	 * @todo make these all <button>s - remove pseudo selectors intended for <a>
	 * @note :link,:visited do not affect <a> without href
	 */ }
    #tools-navigation .nav-toggle-top, #tools-navigation .nav-toggle-top:link, #tools-navigation .nav-toggle-top:visited {
      color: #ffffff;
      background-color: #1d1d1b; }
    #tools-navigation .nav-toggle-top:focus, #tools-navigation .nav-toggle-top:hover, #tools-navigation .nav-toggle-top:active {
      color: #ffffff;
      background-color: #1d1d1b; }
  #tools-navigation .section-nav-wrapper {
    box-shadow: 0px 2px 2px -2px rgba(0, 0, 0, 0.25); }
  #tools-navigation .nav-section:link, #tools-navigation .nav-section:visited {
    color: rgba(255, 255, 255, 0.9);
    background-color: #1d1d1b; }
  #tools-navigation .nav-section:focus, #tools-navigation .nav-section:hover, #tools-navigation .nav-section:active {
    color: #ffffff;
    background-color: #1d1d1b; }
  #tools-navigation .nav-toggle-section {
    /**
	 * @todo make these all <button>s - remove pseudo selectors intended for <a>
	 * @note :link,:visited do not affect <a> without href
	 */ }
    #tools-navigation .nav-toggle-section, #tools-navigation .nav-toggle-section:link, #tools-navigation .nav-toggle-section:visited {
      color: #ffffff;
      background-color: #1d1d1b; }
    #tools-navigation .nav-toggle-section:focus, #tools-navigation .nav-toggle-section:hover, #tools-navigation .nav-toggle-section:active {
      color: #ffffff;
      background-color: #1d1d1b; }

.breadcrumb-wrapper {
  background-color: #d3007e;
  padding: 0.46875rem 0.9375rem; }
  .breadcrumb-wrapper .breadcrumbs {
    border: none;
    margin: 0;
    text-transform: none;
    background: none; }
    .breadcrumb-wrapper .breadcrumbs > * {
      line-height: 1.5; }

.off-canvas-wrap.offcanvas-overlap-left.overlap-left #site-header.StickyRevealed,
.off-canvas-wrap.offcanvas-overlap-right.overlap-right #site-header.StickyRevealed {
  -ms-transform: none;
      transform: none; }
  .off-canvas-wrap.offcanvas-overlap-left.overlap-left #site-header.StickyRevealed .left-off-canvas-menu,
  .off-canvas-wrap.offcanvas-overlap-left.overlap-left #site-header.StickyRevealed .right-off-canvas-menu,
  .off-canvas-wrap.offcanvas-overlap-right.overlap-right #site-header.StickyRevealed .left-off-canvas-menu,
  .off-canvas-wrap.offcanvas-overlap-right.overlap-right #site-header.StickyRevealed .right-off-canvas-menu {
    position: fixed;
    top: 0; }

.reveal-modal {
  padding: 1.875rem 0.9375rem; }
  .reveal-modal .title {
    margin-bottom: 0.9375rem; }

.close-reveal-modal {
  font-size: 1.5rem;
  font-weight: normal;
  position: absolute;
  top: 0;
  right: 0;
  padding: .8rem 1.2rem;
  margin-top: 0;
  background: #f0f0f0;
  color: #808080; }
  .close-reveal-modal:focus {
    color: #ffffff;
    background: #d3007e; }

.search-form {
  position: relative;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.75); }
  .search-form-open .search-form {
    overflow: visible; }
  .search-form label {
    display: none; }
  .search-form [class^="icon-"],
  .search-form [class*=" icon-"] {
    line-height: 1;
    color: #ffffff; }
  .search-form input[type=search] {
    color: white;
    font-size: 1.375rem;
    background: transparent;
    border: none;
    box-shadow: none;
    padding-left: 0.9375rem;
    padding-right: 3.28125rem;
    margin-bottom: 0; }
  .search-form button {
    position: absolute;
    top: 50%;
    border-radius: 50%;
    -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    margin: 0;
    padding: 0;
    font-weight: normal;
    text-align: center;
    font-size: 1.875rem;
    border: 0;
    background: transparent; }
    .search-form button .icon-search {
      color: #d3007e; }
    .search-form button:hover {
      background-color: #fff;
      color: #d3007e; }
  .search-form button[type=submit] {
    right: 1.875rem; }
  .search-form button[type=reset] {
    opacity: 0;
    font-size: 1em;
    line-height: 1;
    cursor: pointer;
    right: 4.34375rem; }
  .search-form.is--reset-visible button[type=reset] {
    transition: opacity 0.25s;
    opacity: 1;
    box-shadow: none; }
    .search-form.is--reset-visible button[type=reset], .search-form.is--reset-visible button[type=reset] i {
      color: rgba(0, 0, 0, 0.3); }
    .search-form.is--reset-visible button[type=reset]:hover {
      background: none;
      box-shadow: none; }
      .search-form.is--reset-visible button[type=reset]:hover, .search-form.is--reset-visible button[type=reset]:hover i {
        color: rgba(0, 0, 0, 0.3); }
  .search-form .search-fields {
    background: transparent;
    max-width: 100%;
    width: 100%;
    margin: 0;
    overflow: hidden; }
    .search-form .search-fields > .row {
      position: relative; }
  .search-form .autocomplete-dropdown {
    position: absolute;
    display: none;
    width: 100%;
    max-width: 100%;
    margin: auto 0;
    padding: 1.875rem;
    z-index: 800;
    background: #BB1C71; }
  .search-form.autocomplete-dropdown--is-visible .search-fields input[type=search] {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0; }
  .search-form.autocomplete-dropdown--is-visible .autocomplete-dropdown {
    display: block; }
  .search-form .autocomplete-dropdown__result-item,
  .search-form .autocomplete-dropdown__section-header {
    max-width: 1200px;
    padding: 0.6rem 1rem;
    width: 100%;
    margin: 0 auto;
    line-height: 1; }
  .search-form .autocomplete-dropdown__result-item, .search-form .autocomplete-dropdown__result-item a {
    color: #ffffff; }
  .search-form .autocomplete-dropdown__matching-queries .autocomplete-dropdown__result-item {
    font-size: 1.875rem; }
  .search-form .autocomplete-dropdown__related-queries {
    margin-top: 1.875rem; }
    .search-form .autocomplete-dropdown__related-queries .autocomplete-dropdown__result-item {
      font-size: 1.25em; }
  .search-form .autocomplete-dropdown__section-header {
    color: rgba(0, 0, 0, 0.35); }

#taguchi-form-block {
  margin-left: 40px;
  margin-top: 20px; }

.taguchi-form-block.shaped-box {
  position: relative;
  width: 100%;
  padding: 0 4rem; }
  .taguchi-form-block.shaped-box .shaped-box-content {
    background: #d3007e;
    padding: 1rem; }
  .taguchi-form-block.shaped-box .side {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4rem;
    height: 100%;
    fill: #d3007e; }
    .taguchi-form-block.shaped-box .side.side-left {
      left: 1px; }
    .taguchi-form-block.shaped-box .side.side-right {
      right: 0; }

.taguchi-form-block #taguchi-form-subscribe.theme-magenta {
  padding: 40px; }
  .taguchi-form-block #taguchi-form-subscribe.theme-magenta label {
    color: #ffffff; }
  .taguchi-form-block #taguchi-form-subscribe.theme-magenta .required {
    color: #ffffff; }
  .taguchi-form-block #taguchi-form-subscribe.theme-magenta .error label.error:before {
    color: #d3007e; }
  .taguchi-form-block #taguchi-form-subscribe.theme-magenta .button {
    border-radius: 3px; }
    .taguchi-form-block #taguchi-form-subscribe.theme-magenta .button.primary {
      text-decoration: none;
      background-color: transparent;
      border-color: rgba(255, 255, 255, 0.6);
      color: #ffffff; }
      .taguchi-form-block #taguchi-form-subscribe.theme-magenta .button.primary:hover {
        background-color: #ffffff;
        color: #d3007e; }
  .taguchi-form-block #taguchi-form-subscribe.theme-magenta input[type=checkbox] {
    margin-top: 0.25rem; }

@media only screen and (max-width: 768px) {
  #taguchi-form-block {
    margin-left: 0; }
  .taguchi-form-block.shaped-box {
    padding: 0; }
    .taguchi-form-block.shaped-box .side {
      display: none; }
    .taguchi-form-block.shaped-box .taguchi-intro {
      text-align: center; }
    .taguchi-form-block.shaped-box .form-row:last-child {
      text-align: center; } }

.pagination-links {
  padding-top: 1em;
  text-align: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center; }

ul.pagination {
  margin-top: 1em;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center; }

ul.pagination li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center; }

ul.pagination li a,
ul.pagination li button {
  color: #d3007e;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  min-height: 2rem; }

ul.pagination li.arrow a [class*="icon-"] {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center; }

#header_site_search .search-fields input[type=search] {
  display: block;
  height: 4.6875rem; }

#header_site_search .search-fields > .row .show-for-medium-down.columns {
  padding: 0; }
  #header_site_search .search-fields > .row .show-for-medium-down.columns input[type=search] {
    width: 100%; }
  #header_site_search .search-fields > .row .show-for-medium-down.columns button[type=submit] {
    box-shadow: none;
    border: none;
    right: 0.8rem; }
  #header_site_search .search-fields > .row .show-for-medium-down.columns input[type=search],
  #header_site_search .search-fields > .row .show-for-medium-down.columns button[type=submit] {
    display: inherit; }

#page-hero .layout:not(.enforced-ratio) {
  min-height: 60vh; }

#page-header .page-title {
  font-size: 2.25rem;
  font-weight: light;
  padding: 1.875rem 0 0 0.9375rem;
  margin: 0; }
  #page-header .page-title small {
    display: block;
    line-height: 1em; }

#page-header .inline-list {
  margin: 0;
  margin-top: 1.875rem; }

/**
 * Sticky Page Header
 * for small screens and up
 */
#page-header .Sticky {
  transition: none;
  width: 100%;
  background: rgba(240, 240, 240, 0.95); }
  #page-header .Sticky.js-sticky {
    display: block;
    position: fixed;
    top: 0; }
  #page-header .Sticky.js-active {
    z-index: 151;
    border-bottom: 1px solid #e7e7e7; }
    #page-header .Sticky.js-active .page-title {
      font-size: 1.5rem;
      font-weight: normal;
      padding: 0.9375rem 0 0.9375rem 0.9375rem; }
    #page-header .Sticky.js-active .inline-list {
      margin-top: 0.9375rem; }
  #page-header .Sticky.js-sticky-direction-up {
    transition: all 0.22s cubic-bezier(0.785, 0.135, 0.15, 0.86); }
  #page-header .Sticky.js-sticky-direction-down {
    transition: all 0.28s cubic-bezier(0.785, 0.135, 0.15, 0.86); }

/**
 * When the site header is also visible
 */
#site-header.StickyRevealed.js-sticky.js-active ~ .main-section #page-header .Sticky.js-active {
  -ms-transform: translateY(2.8125rem);
      transform: translateY(2.8125rem); }

#site-footer {
  z-index: 700;
  position: relative; }

.footer-nav-wrapper a,
.breadcrumb-wrapper a {
  color: #ffffff; }
  .footer-nav-wrapper a:hover,
  .breadcrumb-wrapper a:hover {
    color: #ffffff; }
  .footer-nav-wrapper a:visited,
  .breadcrumb-wrapper a:visited {
    color: #ffffff; }
  .footer-nav-wrapper a:active,
  .breadcrumb-wrapper a:active {
    color: #ffffff; }
  .footer-nav-wrapper a:focus,
  .breadcrumb-wrapper a:focus {
    color: #ffffff; }
  .footer-nav-wrapper a, .footer-nav-wrapper a:link,
  .breadcrumb-wrapper a,
  .breadcrumb-wrapper a:link {
    text-decoration: none; }
  .footer-nav-wrapper a:hover, .footer-nav-wrapper a:focus,
  .breadcrumb-wrapper a:hover,
  .breadcrumb-wrapper a:focus {
    text-decoration: underline; }

.footer-nav-wrapper {
  padding: 0.9375rem 0.9375rem 0 0.9375rem;
  background-color: #525251; }
  .footer-nav-wrapper a {
    font-size: 0.875rem;
    font-weight: normal; }
  .footer-nav-wrapper .footer-nav {
    padding-top: 0.46875rem; }
    .footer-nav-wrapper .footer-nav > li {
      float: none;
      display: block; }
  .footer-nav-wrapper .social-nav > li {
    margin-top: 0.5rem; }
    .footer-nav-wrapper .social-nav > li a i {
      font-size: 1.2rem; }
    .footer-nav-wrapper .social-nav > li a:hover {
      text-decoration: none;
      transition: color 0.5s ease-in-out; }

.footer-info-wrapper {
  padding: 0.9375rem;
  color: #ffffff; }
  .footer-info-wrapper a {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: normal; }
    .footer-info-wrapper a:hover {
      text-decoration: underline; }
  .footer-info-wrapper p {
    line-height: 1.4em; }
    .footer-info-wrapper p .bsb {
      font-size: 1.125rem; }
    .footer-info-wrapper p small {
      font-size: 0.625rem;
      font-weight: normal;
      font-family: FSMeWeb-Regular; }
  .footer-info-wrapper .back-to-top {
    margin-bottom: 1.25rem;
    display: inline-block;
    /*&:hover {
			text-decoration: none;
			i {
				background:rgba($white, 0.7);
				transition: background 0.5s ease-in-out;
			}
		}*/ }
    .footer-info-wrapper .back-to-top i {
      color: #ffffff;
      margin-left: 0.5rem;
      display: inline-block;
      height: 1.3rem;
      text-align: center;
      position: relative;
      bottom: -4px; }
      .footer-info-wrapper .back-to-top i:before {
        font-family: "icons";
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        text-decoration: inherit;
        /* position */
        text-align: center;
        display: inline-block;
        line-height: 1;
        /* prevent screen reader */
        speak: none;
        /* appearance */
        font-smoothing: antialiased;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: "";
        font-size: 1.3rem; }

.site-header {
  z-index: 710;
  position: relative; }
  .offcanvas-overlap-left .site-header,
  .offcanvas-overlap-right .site-header {
    position: static;
    top: 0;
    bottom: 0; }

#site-header {
  width: 100%; }
  #site-header .site-branding .big {
    display: block; }
  #site-header .site-branding .small {
    display: none; }

#site-header.StickyRevealed.js-sticky-direction-up {
  transition: all 0.22s cubic-bezier(0.785, 0.135, 0.15, 0.86); }

#site-header.StickyRevealed.js-sticky-direction-down {
  transition: all 0.28s cubic-bezier(0.785, 0.135, 0.15, 0.86); }

#site-header.StickyRevealed.js-sticky {
  top: 0;
  position: fixed;
  -ms-transform: translateY(-100%);
      transform: translateY(-100%); }
  #site-header.StickyRevealed.js-sticky.js-active {
    box-shadow: 0 1px 5px rgba(29, 29, 27, 0.1); }
    #site-header.StickyRevealed.js-sticky.js-active.js-sticky-direction-up {
      -ms-transform: translateY(0%);
          transform: translateY(0%); }
    .offcanvas-overlap-left #site-header.StickyRevealed.js-sticky.js-active,
    .offcanvas-overlap-right #site-header.StickyRevealed.js-sticky.js-active {
      position: fixed;
      bottom: 0; }
    #site-header.StickyRevealed.js-sticky.js-active .exit-off-canvas {
      transition: none; }
      #site-header.StickyRevealed.js-sticky.js-active .exit-off-canvas:hover {
        background-color: rgba(29, 29, 27, 0.4); }

#site-header.StickyRevealed .exit-off-canvas {
  transition: none; }
  #site-header.StickyRevealed .exit-off-canvas:hover {
    background-color: rgba(29, 29, 27, 0.4); }

.off-canvas-wrap.offcanvas-overlap-right.overlap-right .StickyRevealed,
.off-canvas-wrap.offcanvas-overlap-left.overlap-left .StickyRevealed {
  position: fixed;
  top: 0;
  -ms-transform: none;
      transform: none; }
  .off-canvas-wrap.offcanvas-overlap-right.overlap-right .StickyRevealed .left-off-canvas-menu,
  .off-canvas-wrap.offcanvas-overlap-right.overlap-right .StickyRevealed .right-off-canvas-menu,
  .off-canvas-wrap.offcanvas-overlap-left.overlap-left .StickyRevealed .left-off-canvas-menu,
  .off-canvas-wrap.offcanvas-overlap-left.overlap-left .StickyRevealed .right-off-canvas-menu {
    position: fixed; }

.site-map {
  padding: 0.9375rem 0.9375rem 3.75rem 0.9375rem !important; }
  .site-map, .site-map ul, .site-map li {
    list-style: none;
    margin: 0;
    padding: 0; }
  .site-map .heading {
    clear: both;
    display: block;
    color: #ef7622; }
    .site-map .heading > a {
      font-size: 1.5rem;
      font-weight: normal;
      display: block;
      border-bottom: 2px solid #d3007e;
      padding: 0 0 .25em 0;
      margin-bottom: .5em; }
  .site-map > .has-sub-list > .sub-list > .heading > a {
    font-size: 1.125rem;
    font-weight: normal;
    display: block;
    border: none;
    border-bottom: 2px solid #cecece;
    padding: 0 0 .35em 0;
    margin: 0 1em .5em 0; }
  .site-map > .has-sub-list > .sub-list > .has-sub-list {
    clear: none;
    margin-bottom: 2em; }
  .site-map > .has-sub-list > .sub-list > .has-sub-list > .sub-list li li a {
    font-size: 0.875rem;
    font-weight: normal; }
    .site-map > .has-sub-list > .sub-list > .has-sub-list > .sub-list li li a:before {
      content: "•";
      display: inline-block;
      padding-right: .5em;
      padding-left: 1em;
      color: #d3007e; }

.unsupported {
  min-height: 100%; }
  .unsupported .unsupported-logo-wrap {
    padding: 3em 12% 1em; }
  .unsupported .unsupported-message {
    background: url("@@static.root/images/notification-landscape.png") 50% 100% no-repeat #002c50;
    color: #fff;
    padding: 3em 15%;
    font-size: 150%;
    margin-bottom: 10em; }
  .unsupported .unsupported-heading {
    font-size: 3em;
    line-height: 1.2;
    color: #fff; }
  .unsupported .unsupported-reason-list {
    padding-left: 1em;
    margin: 1.5em 0; }
  .unsupported .unsupported-message-link:link,
  .unsupported .unsupported-message-link:visited {
    color: #fff;
    text-decoration: underline; }
  .unsupported .unsupported-message-link:focus,
  .unsupported .unsupported-message-link:hover,
  .unsupported .unsupported-message-link:active {
    color: #fff;
    text-decoration: underline; }
  .unsupported .unsupported-browser-list {
    list-style-type: none;
    margin: 2em 0;
    padding: 0; }
  .unsupported .unsupported-browser {
    width: 9em;
    display: inline-block; }
  .unsupported .unsupported-browser-image {
    display: block;
    margin-bottom: 0.5em; }
  .unsupported .unsupported-browser-link:link,
  .unsupported .unsupported-browser-link:visited {
    color: #fff;
    text-decoration: none; }
  .unsupported .unsupported-browser-link:focus,
  .unsupported .unsupported-browser-link:hover,
  .unsupported .unsupported-browser-link:active {
    color: #fff;
    text-decoration: underline; }
  .unsupported .unsupported-browser-label {
    display: inline-block;
    min-width: 8em;
    text-align: center;
    padding: 0.5em;
    border: solid 2px #fff;
    font-size: 66.666%; }

/**
 * Layout Blocks
 */
.layout {
  margin: 0 auto;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  margin-bottom: 0.9375rem;
  /**
	 * Remove last content-blocks bottom margin
	 */
  /**
	 * Default Themes for themeless blocks in a themeless layout
	 */ }
  .layout header.layout-header .layout-title {
    text-align: center; }
  .layout footer.layout-footer {
    text-align: center; }
    .layout footer.layout-footer .links {
      display: block;
      list-style: none;
      text-align: center;
      margin: 0;
      padding: 0;
      display: inline-block; }
      .layout footer.layout-footer .links li {
        display: inline-block;
        float: none; }
  .layout .layout-title {
    font-size: 1.875rem;
    font-weight: normal;
    padding-top: 1.875rem;
    margin-bottom: 0.9375rem; }
  .layout .layout-content:after {
    content: " ";
    display: table;
    width: 100%;
    clear: both;
    height: 1px; }
  .layout.background-x-left {
    background-position: top left; }
  .layout.background-x-center {
    background-position: top center; }
  .layout.background-x-right {
    background-position: top right; }
  .layout.background-x-left {
    background-position: center left; }
  .layout.background-x-center {
    background-position: center center; }
  .layout.background-x-right {
    background-position: center right; }
  .layout.background-x-left {
    background-position: bottom left; }
  .layout.background-x-center {
    background-position: bottom center; }
  .layout.background-x-right {
    background-position: bottom right; }
  .layout .layout-footer {
    margin-top: 1.875rem; }
    .layout .layout-footer ul.links {
      margin: 0; }
      .layout .layout-footer ul.links .link {
        display: inline;
        margin-bottom: 0;
        text-align: center; }
  .layout .block-footer {
    margin-top: 0.9375rem;
    width: 100%; }
  .layout .layout-content--flex {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-align: stretch;
        align-items: stretch;
    width: 100%;
    /*
		 * 1. Too much space between blocks when in 1:2 and 2:1 layout options
		 * 2. Make sure the block fills its container
		 */ }
    .layout .layout-content--flex:after {
      display: none; }
    .layout .layout-content--flex > .columns {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: stretch;
          align-items: stretch; }
    .layout .layout-content--flex .layout-cell .content-block {
      margin-top: 0;
      width: 100%; }
  .layout .block-footer {
    padding-right: 0;
    padding-left: 0; }
  .layout.full-width, .layout.edge-to-edge {
    width: 100%;
    margin-left: 0;
    margin-right: 0; }
  .layout.connect-with-next {
    margin-bottom: 0; }
  .layout .layout-cell {
    padding: 0;
    margin: 0; }
    .layout .layout-cell:last-child .content-block:last-child {
      margin-bottom: 0; }
    .layout .layout-cell.layout-cell--stack .content-block {
      margin-bottom: 0; }
    .layout .layout-cell.layout-cell--stack + .layout-cell--stack .content-block {
      margin-top: 0; }
    .layout .layout-cell.layout-cell--stack + .layout-cell:not(.layout-cell--stack) .content-block {
      margin-top: 0.9375rem; }
  .layout .content-block {
    margin-top: 0.46875rem;
    margin-bottom: 0.46875rem; }
  .layout .layout-footer ul.links li:first-child {
    margin-left: 1.875rem; }
  .layout.enforced-ratio .block-footer {
    padding-left: 1.875rem;
    padding-right: 1.875rem; }

.layout-header {
  padding: 0 2rem; }

.layout-1-col .content-block .block-title {
  font-size: 2.25rem;
  font-weight: light; }

.layout-1-and-4-col .layout-right .layout-cell:first-child .content-block {
  margin-top: 0.46875rem; }

/**
 * Both header and Footer are centered
 */
.layout-left header.layout-header .layout-title {
  text-align: left; }

.layout-left footer.layout-footer {
  text-align: left; }
  .layout-left footer.layout-footer .links {
    display: block;
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0;
    display: inline-block; }
    .layout-left footer.layout-footer .links li {
      display: inline-block;
      float: none; }

.layout-left .layout-content .layout-cell {
  text-align: left; }

.layout-left .layout-content .content-block {
  display: inline-block; }

.layout-centered header.layout-header .layout-title {
  text-align: center; }

.layout-centered footer.layout-footer {
  text-align: center; }
  .layout-centered footer.layout-footer .links {
    display: block;
    list-style: none;
    text-align: center;
    margin: 0;
    padding: 0;
    display: inline-block; }
    .layout-centered footer.layout-footer .links li {
      display: inline-block;
      float: none; }

.layout-centered .layout-content .layout-cell {
  text-align: center; }

.layout-centered .layout-content .content-block {
  display: inline-block; }

.layout-right header.layout-header .layout-title {
  text-align: right; }

.layout-right footer.layout-footer {
  text-align: right; }
  .layout-right footer.layout-footer .links {
    display: block;
    list-style: none;
    text-align: right;
    margin: 0;
    padding: 0;
    display: inline-block; }
    .layout-right footer.layout-footer .links li {
      display: inline-block;
      float: none; }

.layout-right .layout-content .layout-cell {
  text-align: right; }

.layout-right .layout-content .content-block {
  display: inline-block; }

/**
 * Header Alignment
 */
.layout-header-left header.layout-header .layout-title {
  text-align: left; }

.layout-header-centered header.layout-header .layout-title {
  text-align: center; }

.layout-header-right header.layout-header .layout-title {
  text-align: right; }

/**
 * Content Alignment
 */
.layout-content-left .layout-content .layout-cell {
  text-align: left; }

.layout-content-left .layout-content .content-block {
  display: inline-block; }

.layout-content-centered .layout-content .layout-cell {
  text-align: center; }

.layout-content-centered .layout-content .content-block {
  display: inline-block; }

.layout-content-right .layout-content .layout-cell {
  text-align: right; }

.layout-content-right .layout-content .content-block {
  display: inline-block; }

/**
 * Footer Alignment
 */
.layout-footer-left footer.layout-footer {
  text-align: left; }
  .layout-footer-left footer.layout-footer .links {
    display: block;
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0;
    display: inline-block; }
    .layout-footer-left footer.layout-footer .links li {
      display: inline-block;
      float: none; }

.layout-footer-centered footer.layout-footer {
  text-align: center; }
  .layout-footer-centered footer.layout-footer .links {
    display: block;
    list-style: none;
    text-align: center;
    margin: 0;
    padding: 0;
    display: inline-block; }
    .layout-footer-centered footer.layout-footer .links li {
      display: inline-block;
      float: none; }

.layout-footer-right footer.layout-footer {
  text-align: right; }
  .layout-footer-right footer.layout-footer .links {
    display: block;
    list-style: none;
    text-align: right;
    margin: 0;
    padding: 0;
    display: inline-block; }
    .layout-footer-right footer.layout-footer .links li {
      display: inline-block;
      float: none; }

.background-position-top-left {
  background-position: top left;
  background-size: inherit;
  background-repeat: no-repeat; }

.background-position-top-center {
  background-position: top center;
  background-size: inherit;
  background-repeat: no-repeat; }

.background-position-top-right {
  background-position: top right;
  background-size: inherit;
  background-repeat: no-repeat; }

.background-position-center-left {
  background-position: center left;
  background-size: inherit;
  background-repeat: no-repeat; }

.background-position-center-center {
  background-position: center center;
  background-size: inherit;
  background-repeat: no-repeat; }

.background-position-center-center-cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat; }

.background-position-center-right {
  background-position: center right;
  background-size: inherit;
  background-repeat: no-repeat; }

.background-position-bottom-left {
  background-position: bottom left;
  background-size: inherit;
  background-repeat: no-repeat; }

.background-position-bottom-center {
  background-position: bottom center;
  background-size: inherit;
  background-repeat: no-repeat; }

.background-position-bottom-right {
  background-position: bottom right;
  background-size: inherit;
  background-repeat: no-repeat; }

/**
 * Add xtra padding to headless and footless layouts
 */
#page-blocks .layout.full-width .layout-content {
  padding-top: 0.9375rem;
  padding-bottom: 1.875rem; }

#page-blocks .layout.full-width header + .layout-content {
  padding-top: 0; }

#page-blocks .layout.full-width footer + .layout-content {
  padding-bottom: 0; }

#page-blocks .layout.layout-2-col:not(.enforced-ratio) .content-block, #page-blocks .layout.layout-3-col:not(.enforced-ratio) .content-block {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column; }
  #page-blocks .layout.layout-2-col:not(.enforced-ratio) .content-block .content-block-content, #page-blocks .layout.layout-3-col:not(.enforced-ratio) .content-block .content-block-content {
    -ms-flex-positive: 1;
        flex-grow: 1; }

.layout-child {
  clear: both; }
  .layout-1-col .layout-child,
  .layout-2-col .layout-child,
  .layout-3-col .layout-child,
  .layout-4-col .layout-child {
    width: 100%; }
    .layout-1-col .layout-child:not(:first-child),
    .layout-2-col .layout-child:not(:first-child),
    .layout-3-col .layout-child:not(:first-child),
    .layout-4-col .layout-child:not(:first-child) {
      padding-top: 0.46875rem; }
  .layout-1-and-4-col .layout-child {
    padding-top: 0.46875rem;
    padding-bottom: 0.46875rem; }
    .layout-1-and-4-col .layout-child[class] {
      padding: 0; }

.layout-slider {
  transition: background-color 0.5s ease-in-out;
  /**
	 * Block Figure
	 */
  /**
	 * Block Profile
	 */ }
  .layout-slider .content-block {
    min-height: 30rem; }
  .layout-slider header,
  .layout-slider footer {
    text-align: center; }
  .layout-slider .caption {
    position: absolute;
    width: 35%;
    top: 50%;
    margin-top: -10rem;
    height: 20rem;
    right: 1rem;
    border: none;
    text-align: left; }
  .layout-slider .slick-dots {
    bottom: 0;
    margin-left: 0;
    margin-right: 0; }
    .layout-slider .slick-dots li button:before {
      opacity: 1;
      text-shadow: 0 0 2px #000; }
    .layout-slider .slick-dots li.slick-active button:before {
      font-size: 0.875rem; }
  .layout-slider [data-slick] {
    margin-bottom: 0;
    position: relative; }
  .layout-slider .slick-prev,
  .layout-slider .slick-next {
    visibility: hidden; }
  .layout-slider .slick-prev,
  .layout-slider .slick-next {
    z-index: 600;
    width: 3.125rem;
    height: 3.125rem; }
    .layout-slider .slick-prev:before,
    .layout-slider .slick-next:before {
      font-family: "icons";
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      text-decoration: inherit;
      /* position */
      text-align: center;
      display: inline-block;
      line-height: 1;
      /* prevent screen reader */
      speak: none;
      /* appearance */
      font-smoothing: antialiased;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      font-size: 3.125rem;
      opacity: 1; }
  .layout-slider .slick-prev {
    left: -3.75rem; }
    .layout-slider .slick-prev:before {
      content: ""; }
      [dir="rtl"] .layout-slider .slick-prev:before {
        content: ""; }
  .layout-slider .slick-next {
    right: -3.75rem; }
    .layout-slider .slick-next:before {
      content: ""; }
      [dir="rtl"] .layout-slider .slick-next:before {
        content: ""; }
  .layout-slider .layout-content {
    opacity: 1;
    padding: 0;
    transition: opacity 1s ease-in; }
  .layout-slider .content-block:before {
    content: initial; }
  .layout-slider .content-block .content-block-content {
    display: block;
    width: 100%; }
  .layout-slider .layout-content .content-block {
    position: relative;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0; }
  .layout-slider.js--is-loading {
    background: #ccc;
    position: relative; }
    .layout-slider.js--is-loading:before {
      content: "";
      border: 0.3rem solid #002c50;
      border-right-color: transparent;
      border-radius: 50%;
      display: inline-block;
      width: 2rem;
      height: 2rem;
      animation-duration: 0.75s;
      animation-iteration-count: infinite;
      animation-name: rotate-forever;
      animation-timing-function: linear;
      position: absolute;
      top: 50%;
      left: 50%; }
    .layout-slider.js--is-loading .layout-content {
      opacity: 0; }
      .layout-slider.js--is-loading .layout-content .content-block:not(:first-child) {
        display: none; }
  .layout-slider .block-figure img {
    margin: 0 auto; }
  .layout-slider .block-profile .block-title {
    font-size: 1.5rem;
    font-weight: normal; }

#page-hero .layout-slider.js--is-loading {
  max-height: 30rem;
  min-height: 30rem;
  height: 30rem; }

#page-hero .layout-slider .slick-prev {
  left: 0;
  -ms-transform: none;
      transform: none; }

#page-hero .layout-slider .slick-next {
  right: 0;
  -ms-transform: none;
      transform: none; }

#page-hero .layout-slider .layout-content:after {
  height: 0px; }

#page-hero [data-mirror-block-bg] .slick-slide.has-bg-image {
  background-color: transparent !important; }

.layout-hero {
  /**
	 * Blocks here have a specific minimum height
	 * unrelated to their width
	 */
  /**
	 * Certain Blocks in a Hero Layout
	 */
  /**
	 * Image Blocks
	 *  - remove spacing around the image, lining it up with
	 *    the page column
	 *  - remove top padding
	 *     - first item nestled against pagetop
	 *     - subsequent items vertically spaced via bottom padding
	 *     - last item has no bottom padding (layout has the padding)
	 */ }
  .layout-hero .content-block {
    min-height: 30rem; }
  .layout-hero .links {
    display: block;
    list-style: none;
    text-align: center;
    margin: 0;
    padding: 0; }
    .layout-hero .links li {
      display: inline-block;
      float: none; }
  .layout-hero .block-title,
  .layout-hero .layout-title,
  .layout-hero .block-description {
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5); }
  .layout-hero .content-block.block-image {
    margin: 0;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0; }
  .layout-hero .layout-cell:last-child .content-block.block-image {
    padding-bottom: 0; }

.layout.layout-article-grid .layout-content .layout-cell:first-child .content-block:first-child,
.layout.layout-article-grid .layout-content .layout-cell .content-block.block-article {
  margin: 0;
  margin-top: 0.46875rem;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0.46875rem; }

.layout.layout-article-grid .layout-content .layout-cell .content-block.block-article .block-title {
  font-size: 1.5rem;
  font-weight: normal; }

.layout-responsive-tabs {
  padding: 0;
  /**
	 * Remove default padding on all
	 * content-blocks from top, left and right edges
	 */
  /**
	 * move border from li to first anchor
	 * on panes causing incremental relative
	 * position on desktop
	 */ }
  .layout-responsive-tabs .accordion {
    margin: 0; }
    .layout-responsive-tabs .accordion .accordion-navigation > .content {
      padding: 0; }
      .layout-responsive-tabs .accordion .accordion-navigation > .content .content-block {
        margin: 0;
        padding: 0; }
  .layout-responsive-tabs li.accordion-navigation {
    border: none; }
  .layout-responsive-tabs li.accordion-navigation > a {
    border: 1px solid #f0f0f0;
    text-decoration: none; }
  .layout-responsive-tabs .tabs.vertical {
    width: 100%;
    max-width: 100%; }
    .layout-responsive-tabs .tabs.vertical .columns:first-child {
      padding-right: 0; }
    .layout-responsive-tabs .tabs.vertical .columns:last-child {
      padding-left: 0; }
    .layout-responsive-tabs .tabs.vertical li a {
      margin-bottom: 1px;
      padding: 0.9375rem 0.9375rem 0.9375rem 3.75rem;
      position: relative;
      color: #002c50; }
      .layout-responsive-tabs .tabs.vertical li a [class^="icon-"],
      .layout-responsive-tabs .tabs.vertical li a [class*=" icon-"] {
        line-height: 1;
        color: #a8a8a7; }
      .layout-responsive-tabs .tabs.vertical li a:hover {
        color: #d3007e; }
      .layout-responsive-tabs .tabs.vertical li a:visited {
        color: #002c50; }
      .layout-responsive-tabs .tabs.vertical li a:active {
        color: #d3007e; }
      .layout-responsive-tabs .tabs.vertical li a:focus {
        color: #d3007e; }
      .layout-responsive-tabs .tabs.vertical li a, .layout-responsive-tabs .tabs.vertical li a:link {
        text-decoration: none; }
      .layout-responsive-tabs .tabs.vertical li a:hover [class^="icon-"],
      .layout-responsive-tabs .tabs.vertical li a:hover [class*=" icon-"] {
        line-height: 1;
        color: #d3007e; }
      .layout-responsive-tabs .tabs.vertical li a span {
        position: absolute;
        left: 1.2rem;
        font-size: 1.2rem;
        top: 1.4rem; }
  .layout-responsive-tabs .tabs li.active a,
  .layout-responsive-tabs .tabs .tabs .tab-title.active a {
    color: #ffffff; }
    .layout-responsive-tabs .tabs li.active a:hover,
    .layout-responsive-tabs .tabs .tabs .tab-title.active a:hover {
      color: #ffffff; }
    .layout-responsive-tabs .tabs li.active a:visited,
    .layout-responsive-tabs .tabs .tabs .tab-title.active a:visited {
      color: #ffffff; }
    .layout-responsive-tabs .tabs li.active a:active,
    .layout-responsive-tabs .tabs .tabs .tab-title.active a:active {
      color: #ffffff; }
    .layout-responsive-tabs .tabs li.active a:focus,
    .layout-responsive-tabs .tabs .tabs .tab-title.active a:focus {
      color: #ffffff; }
    .layout-responsive-tabs .tabs li.active a, .layout-responsive-tabs .tabs li.active a:link,
    .layout-responsive-tabs .tabs .tabs .tab-title.active a,
    .layout-responsive-tabs .tabs .tabs .tab-title.active a:link {
      text-decoration: none; }
  .layout-responsive-tabs .tabs li.popular.active a,
  .layout-responsive-tabs .tabs .tabs .tab-title.popular.active a {
    background-color: #e8485a; }
    .layout-responsive-tabs .tabs li.popular.active a [class^="icon-"],
    .layout-responsive-tabs .tabs li.popular.active a [class*=" icon-"],
    .layout-responsive-tabs .tabs .tabs .tab-title.popular.active a [class^="icon-"],
    .layout-responsive-tabs .tabs .tabs .tab-title.popular.active a [class*=" icon-"] {
      line-height: 1;
      color: #ffffff; }

/**
 * Content Blocks
 */
/**
	Construct
	Version: 0.0.1

	The construct is the base dependency for all core files and modules.
	Contains:
		-- Toolkit
		-- Assets
		-- Settings (including Foundation settings)
*/
/**
 * # Text Sizes
 *
 * Use with mixins:
 *  construct/toolkit/mixins/type#text-style
 *  construct/toolkit/mixins/type#text-size
 *  construct/toolkit/mixins/type#text-weight
 */
/**
 * Small Up Text Sizes
 * @type {Map}
 */
/**
 * Medium Up Text Sizes
 * @type {Map}
 */
/**
 * Large Up Text Sizes
 * @type {Map}
 */
/**
 * Export Global Text Sizes
 * @type {Map}
 */
/**
 * Text Styles
 */
/**
 * Small Up Styles
 * @type {Map}
 */
/**
 * Small Up Styles
 * @type {Map}
 */
/**
 * Small Up Styles
 * @type {Map}
 */
/**
 * Export Global Text Style Collection
 * @type {Map}
 */
/* Prevent Foundation from create css */
/**
	Assets

	Reference all Global assets here.
*/
/**
	Assets

	Reference all Global assets here.
*/
/**
 * Project Themes
 *
 * A colour theme is composed of several maps available as
 * variables:
 *
 * 1. As a key in the master `$theme` variable:
 *
 *    $themes: (
 *      THEME_NAME: $THEME_VARIABLE
 *    );
 *
 * 2. As a variable for each component in the theme:
 *
 *    $theme-links-THEMENAME
 *    $theme-blocks-THEMENAME
 *    $theme-datestamps-THEMENAME
 *    $theme-tables-THEMENAME
 *    etc
 *
 * 3. Each themes component is referred to in a master Map
 *  ie, all theme maps for blocks are collated into :
 *
 *    `$theme-blocks`
 *
 * 4. For each new theme component map that is created every
 *    other theme *must* define it.
 *
 */
/**
 * Import separate theme files first
 */
/**
 * Define themes for links as mappable items
 * @type {Map}
 */
/**
 * Define themes for buttons as mappable items
 * @type {Map}
 */
/**
 * Icons
 */
/**
 * Blocks
 */
/* Datestamp */
/* Tables */
/* Navigations */
/* Navigations */
/**
 * Themes
 */
/**
 * Font Assets
 *
 * - reference all fonts here first.
 */
/**
 * Icons used as images
 */
/**
 *
 * Embeded Image Icons
 *
 * Any datauri icons embeded in the
 * stylesheets need to be declared here as
 * variables
 */
@font-face {
  font-family: 'icons';
  src: url("/Static/Theme/fonts/icons--202392383007b5b23c94c26795437bc7.eot");
  src: url("/Static/Theme/fonts/icons--202392383007b5b23c94c26795437bc7.eot?#iefix") format("eot"), url("/Static/Theme/fonts/icons--a38c330a3a09bcb56bdf71d7625f610b.woff") format("woff"), url("/Static/Theme/fonts/icons--fd818761a7753efe32436acc4400dd5a.ttf") format("truetype"); }

/**
 *
 */
/**
 *  Timing Functions
 */
/**
 * Loading Spinner
 * !default means use these values if this variable is empty.
 */
/**
 * Vendor
 */
body {
  /* Addresses a small issue in webkit: http://bit.ly/NEdoDq */
  -webkit-backface-visibility: hidden; }

.animated {
  animation-duration: 1s;
  animation-fill-mode: both; }

/**
 * a tag with various event states.
 * @param  {String} $theme name of the colour theme as
 *                  described in construct/assets/themes(.scss)
 * @param  {String} $variant type of button variant (primary, secondary, etc)
 */
/**
 * A tag with a [href='*']:visited
 * @param {String} $theme [description]
 */
/**
 * A tag with a [href='*']:hover
 * @param  {String} $theme [description]
 */
/**
 * A tag with a [href='*']:active
 * @param  {String} $theme [description]
 */
/**
 * A tag with a [href='*']:focus
 * @param  {String} $theme [description]
 */
/**
 * A tag with a [href='*']:visited
 * @param  {String} $theme [description]
 */
/**
 * Font helper Mixins
 */
/**
 * Set the base style for a font-icon class
 * @param  {String} $font name of the font-family
 *                  and the file (sans extension)
 */
/**
 * Element covers the entire container.
 * Container requires position: relative;
 */
/**
 * Vertically center an element within the container.
 * Container requires position: relative;
 */
/**
 * a tag with various event states.
 * @param  {String} $theme name of the colour theme as
 *                  described in construct/assets/themes(.scss)
 */
/**
 * Implement a colour theme based on
 * the theme name
 * see :
 *  - construct/assets/_themes.scss
 *  - construct/assets/themes/*.tables.scss
 */
/**
 * Base table Layout
 */
/***
 * Stacked Cell Tables
 * a.k.a Mobile Tables
 * http://codepen.io/geoffyuen/pen/FCBEg
 */
/**
 * Normal Table Layout
 * (ie with column headers and columns)
 */
/**
 * [theme description]
 * @param  {[type]} $name: base          [description]
 * @return {[type]}        [description]
 * @TODO add html example
 */
/**
 * Colour Theme for Header HR
 *  Article Mountain Range SVG
 * @contentblock article
 * @param  {String} $color valid css colour
 */
/**
 * Article Colour Themer
 * @contentblock article
 * @param  {String} $name key in $block-themes
 * @TODO add html example
 */
/**
 * @TODO add html example
 */
/**
 * Block Icon Layout
 * @contentblock icon
 * @TODO add html example
 */
/**
 * [theme description]
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 * @TODO add html example
 */
/**
 * Rate Table Header Layout
 * @contentblock rate-table
 */
/**
 * Content Block Mixins
 *
 * Naming convention:
 *
 *    For content block types:
 *
 *    content-block-<THING>-layout
 *      - for base layout of THING, takes no variables
 *
 *    content-block-<THING>-theme
 *      - for themes.
 *      - takes one variable: a string that is the name of the colour theme
 *
 *    content-block-<THING>-SUBTHING-BLAH-FOO
 *      - repeatable behaviour styles
 *      - may take as many variables as required
 *
 *
 *
 * Commenting Conventions:
 *  - use docblock (jsdoc) format
 *  - all comment blocks have:
 *    - Mixin name
 *    - Mixin description
 *    - @contentblock CONTENT_BLOCK_NAME
 *    - list of @param {datatype} description
 *    - an indented html example that this mixin applies to.
 */
/**
 * Block Icon Layout
 * @contentblock icon
 * @TODO add html example
 */
/**
 * [theme description]
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 * @TODO add html example
 */
/**
 * [theme description]
 * @param  {[type]} $name: base          [description]
 * @return {[type]}        [description]
 * @TODO add html example
 */
/**
 * Content Blocks With Hero Mask
 * @contentblock any
 */
/**
 * @contentblock any
 */
/**
 * ???
 * @TODO: document this.
 * @return {[type]} [description]
 */
/**
 * [layout description]
 * @return {[type]} [description]
 * @TODO add html example
 */
/**
 * [hero description]
 * @return {[type]} [description]
 * @TODO add html example
 */
/**
 * [horizontally description]
 * @return {[type]} [description]
 * @TODO add html example
 */
/**
 * [theme description]
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 * @TODO add html example
 */
/**
 * [alignment description]
 * @param  {[type]} $alignment: center        [description]
 * @return {[type]}             [description]
 * @TODO add html example
 */
/**
 * [height description]
 * @param  {[type]} $height [description]
 * @return {[type]}         [description]
 * @TODO add html example
 */
/**
 * Position Block Footers
 * @TODO add html example
 */
/**
 * [alignment description]
 * @param  {[type]} $alignment: center        [description]
 * @return {[type]}             [description]
 * @TODO add html example
 */
/**
 * [theme description]
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 */
/**
 * Element covers the entire container.
 * Container requires position: relative;
 */
/**
 * Vertically center an element within the container.
 * Container requires position: relative;
 */
/**
 * [content description]
 * @return {[type]} [description]
 */
/**
 * Layouts
 */
/**
 * Base Layout
 * @param  {Number} `$bottom` padding for bottom edge
 */
/* mixin name derp . */
/**
 * Layout: Header
 * @return {[type]} [description]
 */
/**
 * Layout: Header Alignment
 */
/**
 * Layout: Footer Alignment
 * @param  {[type]} $alignment: center        [description]
 * @return {[type]}             [description]
 */
/**
 * Layout: Footer Layout
 * @return {[type]} [description]
 */
/**
 * Layout Theme CSS Generator
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 */
/**
 * Layout Theme
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 */
/**
 * Layout Theme: Footer
 * @param  {[type]} $textColor [description]
 * @param  {[type]} $theme     [description]
 * @return {[type]}            [description]
 */
/**
 * Layout Theme: Arrange Background
 * @return {[type]} [description]
 */
/**
 * Layout: Keep blocks Height same as Width
 */
/**
 * Layout: Remove Gaps
 * @return {[type]} [description]
 */
/**
 *
 * @param  {[type]} $breakpoint: small-up      [description]
 * @return {[type]}              [description]
 */
/**
 * removes margins on boundary row content blocks
 * @param  {[type]} $count: 1             [description]
 * @return {[type]}         [description]
 */
/**
 * adds margins on non boundary row content blocks
 * @param  {[type]} $count: 1             [description]
 * @return {[type]}         [description]
 */
/**
 * Make a layout full width
 */
/**
 * ???
 * @TODO: document this.
 * @param  {[type]} $top:    0              [description]
 * @param  {[type]} $right:  $column-gutter [description]
 * @param  {[type]} $bottom: 0              [description]
 * @param  {[type]} $left:   $column-gutter [description]
 * @return {[type]}          [description]
 */
/**
 * [theme description]
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 */
/**
 * Height of nav container
 * sum of heights of main and section nav
 */
/**
 * Height of nav container
 * Large up, sticky mode
 * sum of heights of main and section nav
 */
/**
 * Determines height of nav backdrop and logo container
 * Should equal height of contained nav <a>
 */
/**
 * [labels description]
 * @return {[type]} [description]
 */
/**
 * Login link
 */
/**
 * Logo link
 */
/**
 * Corresponds with xlargeup breakpoint
 */
/**
 * Mega Menu Mixins
 */
/**
 * Animation
 */
/**
 * Current item indicator
 *
 * draws a triangle on the bottom of the menu item
 */
/**
 * Modifies the triangle when menu is sticky
 */
/**
 * Links
 */
/**
 * Applies pseudo styles to navigation
 * Drawn from navigation themes
 */
/**
 * Pick a Theme Set, defaults to $default-theme-name if theme not found
 * @param  {String} $set    Colour theme map Set ($themes, $theme-blocks, etc)
 * @param  {String} $name   Colour theme name, a key in $set
 * @return {Map}			The colour theme map
 */
/**
 * Pick Text Style From Global Map
 * @link	styles/theme/default/construct/settings/core/_type.scss
 * @param  {String} $breakpoint key in $text-styles
 * @param  {String} $name       key in $text-styles[$breakpoint]
 * @return {Map}                map of font-size, line-height, font-weight, etc
 */
/**
 * Pick Text Font Size
 * @link	styles/theme/default/construct/settings/core/_type.scss
 * @param  {String} $set       key in $text-sizes
 * @param  {String} $size      key in $set (xxsmall, xsmall, small, normal, etc)
 * @return {Integer}
 */
/**
 * Pick Text Weight
 * @link	styles/theme/default/construct/settings/core/_type.scss
 * @param  {String} $set       key in $text-sizes
 * @param  {String} $weight      key in $set (xxsmall, xsmall, small, normal, etc)
 * @return {Integer}
 */
/**
 * SVG Tools
 * Source: http://codepen.io/jakob-e/pen/doMoML
 */
.content-block {
  padding: 1.875rem 1.875rem 1.875rem 1.875rem;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center; }
  .content-block .block-title {
    font-size: 1.875rem;
    font-weight: normal;
    margin-bottom: 0.9375rem; }
  .content-block .block-topic {
    font-size: 0.625rem;
    font-weight: normal;
    display: block;
    padding-bottom: 0.9375rem;
    line-height: 1.4; }
    .content-block .block-topic:last-child {
      padding-bottom: 0; }
  .content-block .block-header a,
  .content-block .block-header .block-title a,
  .content-block .block-header .block-topic a {
    text-decoration: none; }
    .content-block .block-header a:hover, .content-block .block-header a:focus,
    .content-block .block-header .block-title a:hover,
    .content-block .block-header .block-title a:focus,
    .content-block .block-header .block-topic a:hover,
    .content-block .block-header .block-topic a:focus {
      text-decoration: underline; }
  .content-block.background-x-left {
    background-position: top left; }
  .content-block.background-x-center {
    background-position: top center; }
  .content-block.background-x-right {
    background-position: top right; }
  .content-block.background-x-left {
    background-position: center left; }
  .content-block.background-x-center {
    background-position: center center; }
  .content-block.background-x-right {
    background-position: center right; }
  .content-block.background-x-left {
    background-position: bottom left; }
  .content-block.background-x-center {
    background-position: bottom center; }
  .content-block.background-x-right {
    background-position: bottom right; }
  .content-block .block-footer .inline-list {
    margin: 0; }
    .content-block .block-footer .inline-list li {
      margin-top: 0.5em; }
    .content-block .block-footer .inline-list .button {
      margin: 1px; }
    .content-block .block-footer .inline-list li:first-child {
      margin-left: 0; }

.vertically-reduce-padding {
  padding-top: 0.5em;
  padding-bottom: 0.5em; }

.no-vertical-padding {
  padding-top: 0;
  padding-bottom: 0; }

/**
 * Both header and Footer are centered
 */
.block-centered header.block-header .block-title,
.block-centered footer.block-footer .block-title {
  text-align: center; }

.block-centered header.block-header .links,
.block-centered footer.block-footer .links {
  display: block;
  list-style: none;
  text-align: center;
  margin: 0;
  padding: 0; }
  .block-centered header.block-header .links li,
  .block-centered footer.block-footer .links li {
    display: inline-block;
    float: none; }

.block-content-left .content-block-content {
  text-align: left; }

.block-content-centered .content-block-content {
  text-align: center; }

.block-content-right .content-block-content {
  text-align: right; }

/**
 * Only header is centered
 */
.block-header-left header.block-header .block-title {
  text-align: left; }

.block-header-centered header.block-header .block-title {
  text-align: center; }

.block-header-right header.block-header .block-title {
  text-align: right; }

/**
 * Only footer is centered
 */
.block-footer-left footer.block-footer .links {
  display: block;
  list-style: none;
  text-align: left;
  margin: 0;
  padding: 0; }
  .block-footer-left footer.block-footer .links li {
    display: inline-block;
    float: none; }

.block-footer-centered footer.block-footer .links {
  display: block;
  list-style: none;
  text-align: center;
  margin: 0;
  padding: 0; }
  .block-footer-centered footer.block-footer .links li {
    display: inline-block;
    float: none; }

.block-footer-right footer.block-footer .links {
  display: block;
  list-style: none;
  text-align: right;
  margin: 0;
  padding: 0; }
  .block-footer-right footer.block-footer .links li {
    display: inline-block;
    float: none; }

.accordion {
  text-align: left;
  margin-left: 0; }
  .accordion dd.accordion-navigation > a {
    padding-left: 0;
    font-weight: bold;
    text-decoration: none;
    background: transparent; }
  .accordion dd.accordion-navigation .content {
    padding-top: 0;
    padding-left: 0; }

.accordion-navigation {
  border-bottom: 1px solid #f0f0f0; }
  .accordion-navigation:last-child {
    border: none; }
  .accordion-navigation > a {
    position: relative;
    /**
		 * Arrow Indicator
		 */ }
    .accordion-navigation > a:before {
      display: block;
      position: absolute;
      right: 1em;
      top: 1.3em;
      font-family: "icons";
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      text-decoration: inherit;
      /* position */
      text-align: center;
      display: inline-block;
      line-height: 1;
      /* prevent screen reader */
      speak: none;
      /* appearance */
      font-smoothing: antialiased;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      content: ""; }
  .accordion-navigation.active > a:before {
    border-top: none;
    content: ""; }

.accordion .accordion-navigation > .content.active,
.accordion dd > .content.active {
  background: transparent; }

.block-accordion {
  width: 100%; }

/*
.article-featured
    - shapes the datestamp
    - positions datestamp top right


.has-image
    - hides description

.has-theme
    - adds $featuredBgColour to content-block

    .article-featured
        - Datestamp Background is $themedFeaturedArticleDatestampBg, a coour that is complimentary to $featuredBgColour

    .has-image
        - moves header down 50%

        .article-featured
            - datestamp color is $featuredBgColour
*/
.layout-1-col .block-article {
  height: 100%;
  min-height: 28.125rem;
  max-height: 28.125rem;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-top: 0; }

.block-article {
  padding: 0;
  /**
		adds $featuredBgColour to content-block
	**/ }
  .block-article.has-overlay .block-header {
    position: relative; }
  .block-article.has-overlay:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6); }
  .layout:not([class*="theme-"]) .block-article {
    background-color: #ffffff; }
  .block-article footer {
    padding-left: 1.875rem; }
  .block-article .content-block-content {
    padding: 0 0.9375rem 1.875rem 1.875rem; }
    .block-article .content-block-content .block-article-content {
      display: none; }
  .block-article .block-title {
    margin: 0;
    /**
		 * Padding must be here rather than containing div
		 * address iOS7 bug in vertical padding calc of child
		 */
    padding: 1.875rem;
    padding-top: 0.9375rem;
    padding-bottom: 0; }
    .block-article .block-title small.block-topic {
      display: inline-block; }
    .block-article .block-title a.quiet {
      display: block;
      word-break: break-word; }
    .block-article .block-title a.quiet:after {
      font-family: "icons";
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      text-decoration: inherit;
      /* position */
      text-align: center;
      display: inline-block;
      line-height: 1;
      /* prevent screen reader */
      speak: none;
      /* appearance */
      font-smoothing: antialiased;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      content: "";
      font-size: 70%;
      vertical-align: center;
      display: inline-block;
      margin-right: -1em;
      text-decoration: none; }
  .block-article .date-stamp {
    display: inline-block;
    padding: 0;
    width: auto;
    height: auto;
    vertical-align: auto;
    text-align: left;
    font-size: 0.625rem;
    font-weight: normal; }
    .block-article .date-stamp .date {
      padding: 0;
      top: 0;
      display: inline-block; }
    .block-article .date-stamp:before {
      content: "/";
      display: inline-block;
      padding: 0 .25em; }
    .block-article .date-stamp svg {
      display: none; }
    .block-article .date-stamp .date {
      color: inherit; }
  .block-article .has-mask {
    display: none; }
  .block-article:not(.article-featured) > .date-stamp, .block-article.has-image > .date-stamp {
    display: none; }
  .block-article.has-theme {
    /**
			moves header down 50%
		**/
    /**
		 * Hides footer & buttons if themed
		 */ }
    .block-article.has-theme .svg-wrap {
      display: none; }
    .block-article.has-theme.has-image {
      position: relative;
      overflow: hidden; }
      .block-article.has-theme.has-image .block-header {
        position: absolute;
        top: 55%;
        left: 0;
        bottom: 0;
        width: 100%;
        /**
				 * override padding for themed articles only!
				 */ }
        .block-article.has-theme.has-image .block-header .block-title {
          padding-top: 0;
          padding-bottom: 0; }
          .block-article.has-theme.has-image .block-header .block-title .block-topic {
            padding-bottom: 0; }
      .block-article.has-theme.has-image .svg-wrap {
        display: block;
        position: absolute;
        left: -2px;
        right: -2px;
        bottom: 99%; }
      .block-article.has-theme.has-image .svg-wrap-mountain-range {
        padding-top: 10%; }
    .block-article.has-theme footer {
      display: none; }

/**
 * Remove date stamp outside header
 */
.layout-1-and-4-col .large-6 .large-6 .block-article header .date-stamp,
.layout-1-and-4-col .medium-6 .block-article header .date-stamp,
.layout-article-grid .block-article header .date-stamp {
  display: inline-block;
  padding: 0;
  width: auto;
  height: auto;
  vertical-align: auto;
  text-align: left;
  font-size: 0.625rem;
  font-weight: normal;
  position: static; }
  .layout-1-and-4-col .large-6 .large-6 .block-article header .date-stamp .date,
  .layout-1-and-4-col .medium-6 .block-article header .date-stamp .date,
  .layout-article-grid .block-article header .date-stamp .date {
    padding: 0;
    top: 0;
    display: inline-block; }
  .layout-1-and-4-col .large-6 .large-6 .block-article header .date-stamp:before,
  .layout-1-and-4-col .medium-6 .block-article header .date-stamp:before,
  .layout-article-grid .block-article header .date-stamp:before {
    content: "/";
    display: inline-block;
    padding: 0 .25em; }
  .layout-1-and-4-col .large-6 .large-6 .block-article header .date-stamp svg,
  .layout-1-and-4-col .medium-6 .block-article header .date-stamp svg,
  .layout-article-grid .block-article header .date-stamp svg {
    display: none; }

/**
 * Hide Author
 */
.large-6 .medium-6 .block-article.has-author .profile-card {
  display: none; }

.page-hero .block-article > .date-stamp {
  display: none !important; }

.page-hero .block-article header {
  text-align: left; }

.page-hero .block-article.has-theme.has-image .mountain-range {
  display: none; }

.page-hero .block-article.has-theme.has-image .date-stamp {
  display: inline-block;
  padding: 0;
  width: auto;
  height: auto;
  vertical-align: auto;
  text-align: left;
  font-size: 0.625rem;
  font-weight: normal;
  position: relative; }
  .page-hero .block-article.has-theme.has-image .date-stamp .date {
    padding: 0;
    top: 0;
    display: inline-block; }
  .page-hero .block-article.has-theme.has-image .date-stamp:before {
    content: "/";
    display: inline-block;
    padding: 0 .25em; }
  .page-hero .block-article.has-theme.has-image .date-stamp svg {
    display: none; }

.page-hero .block-article.has-theme.has-image footer {
  display: none; }

.page-hero .block-article.has-theme footer {
  display: table; }

.page-hero.layout-slider .block-article > .date-stamp,
.page-hero.layout-slider .block-article.has-theme > .date-stamp,
.page-hero.layout-slider .block-article.article-featured > .date-stamp {
  display: none; }

.layout-4-col .block-article .block-title,
.layout-3-col .block-article .block-title {
  font-size: 1.125rem;
  font-weight: normal; }

.content-block-bannerblock h1,
.content-block-bannerblock h2,
.content-block-bannerblock h3,
.content-block-bannerblock h4 {
  font-family: "akzidenz-grotesk", sans-serif;
  letter-spacing: -1px;
  font-weight: 700;
  line-height: 1; }

.content-block-bannerblock p {
  line-height: 1.4; }

.block-campaign .block-footer {
  position: static; }
  .block-campaign .block-footer li a {
    margin: 0; }

.content-block.block-category-link {
  background-size: 0; }

.block-over-image {
  position: relative;
  overflow: hidden; }

.block-icon {
  text-align: center;
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem; }
  .block-icon .icon-container {
    display: block;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 4rem; }
  .block-icon.content-block {
    margin: 0; }
  .block-icon.no-border {
    border: none; }
  .block-icon .block-title {
    margin: 0.9375rem; }
  .block-icon footer {
    text-align: center;
    padding-top: 0; }
    .block-icon footer .links {
      display: block;
      list-style: none;
      text-align: center;
      margin: 0;
      padding: 0; }
      .block-icon footer .links li {
        display: inline-block;
        float: none; }
  .block-icon.social .icon-container {
    color: #ffffff;
    border-radius: 50%;
    padding: 2rem;
    width: 5rem;
    height: 5rem;
    font-size: 2rem;
    display: block;
    margin: 0 auto;
    text-align: center;
    position: relative; }
    .block-icon.social .icon-container:before {
      position: absolute;
      top: 50%;
      left: 50%;
      margin-top: -0.5em;
      margin-left: -0.5em; }
    .block-icon.social .icon-container.icon-linkedin {
      color: #ffffff;
      background-color: #0177b5; }
    .block-icon.social .icon-container.icon-facebook {
      color: #ffffff;
      background-color: #3b5998; }
    .block-icon.social .icon-container.icon-youtube {
      color: #ffffff;
      background-color: #d32323; }
    .block-icon.social .icon-container.icon-twitter {
      color: #ffffff;
      background-color: #1dcaff; }
    .block-icon.social .icon-container.icon-instagram {
      color: #ffffff;
      background-color: #a57564; }

.layout-cell:last-of-type .block-icon:after {
  display: none; }

/**
 * Height of iframe determined by enforced-ratio layout
 */
iframe.iframe-loader,
iframe[data-iframe-resize] {
  border: none;
  width: 100%; }
  .enforced-ratio iframe.iframe-loader, .enforced-ratio
  iframe[data-iframe-resize] {
    height: 100%; }

.block-links-grouped .linked-list > li {
  margin-bottom: 0.0625rem;
  background: white; }
  .block-links-grouped .linked-list > li:last-child {
    margin-bottom: 1px; }
  .block-links-grouped .linked-list > li:hover, .block-links-grouped .linked-list > li:hover a {
    background: rgba(255, 255, 255, 0.45); }
  .block-links-grouped .linked-list > li:hover a {
    color: #d3007e; }
    .block-links-grouped .linked-list > li:hover a:after {
      color: #d3007e; }
  .block-links-grouped .linked-list > li:hover .rate .rate-label {
    color: inherit; }
  .block-links-grouped .linked-list > li:hover .rate .rate-value {
    color: inherit; }
  .block-links-grouped .linked-list > li:hover .rate .rate-prefix {
    color: inherit; }
  .block-links-grouped .linked-list > li:hover .rate .rate-suffix {
    color: inherit; }
  .block-links-grouped .linked-list > li > a {
    padding: 1.875rem;
    padding-left: 3.75rem;
    padding-right: 3.75rem;
    position: relative; }
    .block-links-grouped .linked-list > li > a:after {
      font-size: 1.125rem;
      font-weight: normal;
      background: transparent;
      color: #e8485a;
      position: absolute;
      top: 50%;
      right: 1.2rem;
      margin-top: -1.125rem; }
  .block-links-grouped .linked-list > li .linked-list--rates .row {
    display: table;
    width: 100%;
    table-layout: fixed;
    padding: 0.9375rem 0; }
  .block-links-grouped .linked-list > li .rate {
    display: table-cell;
    width: 100%;
    text-align: center;
    max-width: 83px; }
    .block-links-grouped .linked-list > li .rate .rate-label {
      color: #002c50; }
    .block-links-grouped .linked-list > li .rate .rate-value {
      color: #002c50; }
    .block-links-grouped .linked-list > li .rate .rate-prefix {
      color: #002c50; }
    .block-links-grouped .linked-list > li .rate .rate-suffix {
      color: #002c50; }
    .block-links-grouped .linked-list > li .rate .rate-label {
      font-size: 0.625rem;
      font-weight: normal; }
    .block-links-grouped .linked-list > li .rate .rate-value {
      font-size: 0.875rem;
      font-weight: normal; }
    .block-links-grouped .linked-list > li .rate .rate-prefix {
      display: inline-block;
      font-size: 0.875rem;
      font-weight: normal; }
    .block-links-grouped .linked-list > li .rate .rate-suffix {
      display: inline-block;
      font-size: 0.875rem;
      font-weight: normal; }
    .block-links-grouped .linked-list > li .rate .rate-prefix {
      padding-right: 0.5em; }
    .block-links-grouped .linked-list > li .rate .rate-suffix {
      padding-left: 0.5em; }
    .block-links-grouped .linked-list > li .rate .rate-value {
      width: 100%;
      text-align: center; }
    .block-links-grouped .linked-list > li .rate .rate-label {
      position: static;
      text-align: center; }
  .block-links-grouped .linked-list > li.popular > a:before {
    font-size: 1.2rem;
    font-family: "icons";
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    text-decoration: inherit;
    /* position */
    text-align: center;
    display: inline-block;
    line-height: 1;
    /* prevent screen reader */
    speak: none;
    /* appearance */
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "";
    color: #e8485a;
    left: 1.5rem;
    position: absolute; }

.block-links-grouped .linked-list.no-indent > li > a {
  padding-left: 1.875rem; }

.block-links-grouped section:last-child {
  margin-bottom: 0; }

.block-links-grouped .block-title {
  display: none; }

.block-links-grouped .links-group-title {
  font-size: 0.875rem;
  font-weight: normal;
  background: #f7f7f7;
  color: #a5a8ab;
  padding: 0.9375rem 1.875rem 0.9375rem 1.875rem; }
  .block-links-grouped .links-group-title .row .columns:not(:first-child) {
    font-size: 0.875rem;
    font-weight: normal;
    margin-top: 0.4rem; }

.block-links-grouped.block-links-grouped-detail {
  padding-left: 0;
  padding-right: 0; }
  .block-links-grouped.block-links-grouped-detail .linked-list > li {
    padding: 1.875rem 5.625rem 1.875rem 1.875rem; }
    .block-links-grouped.block-links-grouped-detail .linked-list > li h4 {
      margin-bottom: 0.9375rem; }
    .block-links-grouped.block-links-grouped-detail .linked-list > li p {
      margin-bottom: 0; }
    .block-links-grouped.block-links-grouped-detail .linked-list > li:after {
      top: calc(50% - 15px);
      right: 1.875rem; }

.block-product-link .block-description {
  margin-bottom: 1.25rem; }

.block-product-link .block-product-link-rate {
  padding: 0; }
  .block-product-link .block-product-link-rate .row {
    margin: 0;
    width: 100%; }
  .block-product-link .block-product-link-rate .rate {
    width: 100%;
    max-width: 100%; }
    .block-product-link .block-product-link-rate .rate .rate-prefix {
      display: inline-block;
      font-size: 2.25rem;
      font-weight: light; }
    .block-product-link .block-product-link-rate .rate .rate-suffix {
      display: inline-block;
      font-size: 2.25rem;
      font-weight: light; }
    .block-product-link .block-product-link-rate .rate .rate-prefix {
      padding-right: 0.5em; }
    .block-product-link .block-product-link-rate .rate .rate-suffix {
      padding-left: 0.5em; }

.block-profile {
  text-align: center; }
  .block-profile header .block-title {
    margin: 0;
    font-size: 1.125rem;
    font-weight: normal; }
  .block-profile header img {
    display: inline-block; }
  .block-profile footer {
    padding-top: 0;
    text-align: center; }

.block-rate-comparison {
  margin-bottom: 0; }
  .block-rate-comparison .accordion {
    margin-top: 1.875rem; }
  .block-rate-comparison .columns:not(:last-child) .rate {
    border-right: 1px solid rgba(255, 255, 255, 0.4); }
  .block-rate-comparison .rate {
    padding: 1.875rem;
    padding-left: 0em; }
    .block-rate-comparison .rate .rate-label {
      color: #ffffff; }
    .block-rate-comparison .rate .rate-value {
      color: #ffffff; }
    .block-rate-comparison .rate .rate-prefix {
      color: #ffffff; }
    .block-rate-comparison .rate .rate-suffix {
      color: #ffffff; }
    .block-rate-comparison .rate .rate-label {
      font-size: 0.875rem;
      font-weight: normal; }
    .block-rate-comparison .rate .rate-value {
      font-size: 3.125rem;
      font-weight: light; }
    .block-rate-comparison .rate .rate-prefix {
      display: inline-block;
      font-size: 3.125rem;
      font-weight: light; }
    .block-rate-comparison .rate .rate-suffix {
      display: inline-block;
      font-size: 3.125rem;
      font-weight: light; }
    .block-rate-comparison .rate .rate-prefix {
      padding-right: 0.25em; }
    .block-rate-comparison .rate .rate-suffix {
      padding-left: 0.25em; }
  .block-rate-comparison.is--bonus-rate .rate .rate-prefix {
    color: #ffffff; }
  .block-rate-comparison.is--bonus-rate .rate .rate-suffix {
    color: #ffffff; }

.layout.layout-1-col .layout-cell .content-block.block-rate-comparison {
  margin-bottom: 0; }

.layout[class*="theme-"] .layout-cell .content-block.rate-caveat {
  margin: 0;
  width: 100%;
  margin-top: 0;
  padding-top: 1.875rem;
  background-color: rgba(0, 0, 0, 0.1);
  padding: 0.9375rem; }
  .layout[class*="theme-"] .layout-cell .content-block.rate-caveat .content-block-content > p {
    margin: 0; }

.block-rate-table {
  padding: 0;
  overflow-x: auto; }
  .block-rate-table table .header th {
    border-bottom: none;
    padding-bottom: 0;
    padding-top: 0;
    text-align: left;
    font-size: 1.5rem;
    font-weight: normal; }
    .block-rate-table table .header th.product-name {
      color: #d3007e;
      display: none; }
    .block-rate-table table .header th:first-child {
      padding-top: 1.875rem; }
    .block-rate-table table .header th:last-child {
      padding-bottom: 1.875rem; }
  .block-rate-table tr.product-row td {
    font-size: 0.875rem;
    font-weight: normal; }
  .block-rate-table td, .block-rate-table th {
    padding-left: 5px;
    padding-right: 5px; }
    .block-rate-table td:first-child, .block-rate-table th:first-child {
      padding-left: 0; }
    .block-rate-table td:last-child, .block-rate-table th:last-child {
      padding-right: 0; }
  .block-rate-table .interest-rate,
  .block-rate-table .comparison-rate {
    width: 80px; }
  .block-rate-table .block-rate-table__scroll-inner {
    padding: 0 20px;
    width: auto;
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
    max-width: none;
    min-width: 100%; }
  .block-rate-table.hide-column-names thead tr.column-names {
    display: none; }

/*
1: when the block-rate-table is in an accordion, it needs to reset the padding.
*/
.accordion-navigation .block-rate-table {
  margin: 0 -15px;
  /* 1 */ }

.block-rate-table-single {
  padding: 0; }
  .block-rate-table-single .block-rate-heading {
    font-size: 1.5rem;
    font-weight: normal;
    color: #d3007e; }
  .block-rate-table-single table .header th:first-child, .block-rate-table-single table .header th:last-child {
    padding: 0; }
  .block-rate-table-single.rate-table-highlighted {
    background: #fef3f9;
    padding: 1rem;
    margin: -1rem; }

.block-related-faqs {
  background: #ffffff;
  text-align: center; }
  .block-related-faqs > .content-block-content {
    text-align: left; }
    .block-related-faqs > .content-block-content .block-title {
      display: none; }
    .block-related-faqs > .content-block-content .linked-list > li {
      margin-bottom: 0;
      border-bottom: 1px solid #f0f0f0; }
      .block-related-faqs > .content-block-content .linked-list > li:last-child {
        border-bottom: 0; }
  .block-related-faqs > footer > ul {
    margin: 0px auto; }
    .block-related-faqs > footer > ul > li a.button {
      margin: 0; }

.main-section .content-block.block-related-faqs > .content-block-content .layout:last-of-type {
  padding-bottom: 1.25rem; }

.content-block.block-social img,
.content-block.block-social strong {
  display: block; }

.content-block.block-social .social-comment {
  font-size: 0.875rem; }
  .content-block.block-social .social-comment .social-meta {
    display: block; }

.content-block.block-social .social-meta-likes {
  position: absolute;
  left: 4rem;
  bottom: 2.3rem;
  z-index: 2; }

.content-block.block-social .header-link .social-icon {
  display: block;
  line-height: 1;
  font-size: 1.875rem; }

.content-block.block-social .block-footer a.has-icon.label-hidden {
  text-decoration: none; }

.content-block.block-social .block-footer a i {
  line-height: 1;
  margin: 0;
  padding: 0;
  font-size: 1.125rem; }

.content-block.block-social.block-twitter {
  background-color: #1dcaff;
  color: #002c50; }
  .content-block.block-social.block-twitter a {
    color: #002c50; }
    .content-block.block-social.block-twitter a:hover {
      color: #d3007e; }
    .content-block.block-social.block-twitter a:visited {
      color: #002c50; }
    .content-block.block-social.block-twitter a:active {
      color: #d3007e; }
    .content-block.block-social.block-twitter a:focus {
      color: #d3007e; }
  .content-block.block-social.block-twitter .button, .content-block.block-social.block-twitter .button.primary,
  .content-block.block-social.block-twitter button,
  .content-block.block-social.block-twitter button.primary,
  .content-block.block-social.block-twitter [type="button"],
  .content-block.block-social.block-twitter [type="button"].primary {
    text-decoration: none;
    background-color: transparent;
    border-color: #002c50;
    color: #002c50; }
  .content-block.block-social.block-twitter .button:visited, .content-block.block-social.block-twitter .button.primary:visited,
  .content-block.block-social.block-twitter button:visited,
  .content-block.block-social.block-twitter button.primary:visited,
  .content-block.block-social.block-twitter [type="button"]:visited,
  .content-block.block-social.block-twitter [type="button"].primary:visited {
    background-color: transparent;
    border-color: #002c50;
    color: #002c50; }
  .content-block.block-social.block-twitter .button:focus, .content-block.block-social.block-twitter .button.primary:focus,
  .content-block.block-social.block-twitter button:focus,
  .content-block.block-social.block-twitter button.primary:focus,
  .content-block.block-social.block-twitter [type="button"]:focus,
  .content-block.block-social.block-twitter [type="button"].primary:focus {
    background-color: #002c50;
    border-color: #002c50;
    color: #ffffff; }
  .content-block.block-social.block-twitter .button:hover, .content-block.block-social.block-twitter .button.primary:hover,
  .content-block.block-social.block-twitter button:hover,
  .content-block.block-social.block-twitter button.primary:hover,
  .content-block.block-social.block-twitter [type="button"]:hover,
  .content-block.block-social.block-twitter [type="button"].primary:hover {
    text-decoration: none;
    background-color: #002c50;
    border-color: #002c50;
    color: #ffffff; }
  .content-block.block-social.block-twitter .button.secondary,
  .content-block.block-social.block-twitter button.secondary,
  .content-block.block-social.block-twitter [type="button"].secondary {
    text-decoration: none;
    background-color: rgba(0, 44, 80, 0.2);
    border-color: transparent;
    color: #002c50; }
  .content-block.block-social.block-twitter .button.secondary:visited,
  .content-block.block-social.block-twitter button.secondary:visited,
  .content-block.block-social.block-twitter [type="button"].secondary:visited {
    background-color: rgba(0, 44, 80, 0.3);
    border-color: #002c50;
    color: #002c50; }
  .content-block.block-social.block-twitter .button.secondary:focus,
  .content-block.block-social.block-twitter button.secondary:focus,
  .content-block.block-social.block-twitter [type="button"].secondary:focus {
    background-color: #002c50;
    border-color: #002c50;
    color: #ffffff; }
  .content-block.block-social.block-twitter .button.secondary:hover,
  .content-block.block-social.block-twitter button.secondary:hover,
  .content-block.block-social.block-twitter [type="button"].secondary:hover {
    text-decoration: none;
    background-color: #002c50;
    border-color: #002c50;
    color: white; }
  .content-block.block-social.block-twitter .button.label-hidden,
  .content-block.block-social.block-twitter button.label-hidden,
  .content-block.block-social.block-twitter [type="button"].label-hidden {
    text-decoration: none; }
    .content-block.block-social.block-twitter .button.label-hidden,
    .content-block.block-social.block-twitter button.label-hidden,
    .content-block.block-social.block-twitter [type="button"].label-hidden {
      text-decoration: none;
      background-color: transparent;
      border-color: transparent;
      color: #002c50; }
    .content-block.block-social.block-twitter .button.label-hidden:visited,
    .content-block.block-social.block-twitter button.label-hidden:visited,
    .content-block.block-social.block-twitter [type="button"].label-hidden:visited {
      background-color: transparent;
      border-color: transparent;
      color: #002c50; }
    .content-block.block-social.block-twitter .button.label-hidden:focus,
    .content-block.block-social.block-twitter button.label-hidden:focus,
    .content-block.block-social.block-twitter [type="button"].label-hidden:focus {
      background-color: transparent;
      border-color: transparent;
      color: #d3007e; }
    .content-block.block-social.block-twitter .button.label-hidden:hover,
    .content-block.block-social.block-twitter button.label-hidden:hover,
    .content-block.block-social.block-twitter [type="button"].label-hidden:hover {
      text-decoration: none;
      background-color: transparent;
      border-color: transparent;
      color: #d3007e; }
  .content-block.block-social.block-twitter .button:hover,
  .content-block.block-social.block-twitter .button:focus {
    color: #1dcaff; }
  .content-block.block-social.block-twitter .block-title,
  .content-block.block-social.block-twitter .block-title div,
  .content-block.block-social.block-twitter .block-title a.header-link,
  .content-block.block-social.block-twitter .block-title a.header-link i,
  .content-block.block-social.block-twitter .layout-title,
  .content-block.block-social.block-twitter .block-topic {
    color: #002c50; }
    .content-block.block-social.block-twitter .block-title a, .content-block.block-social.block-twitter .block-title a:link,
    .content-block.block-social.block-twitter .block-title div a,
    .content-block.block-social.block-twitter .block-title div a:link,
    .content-block.block-social.block-twitter .block-title a.header-link a,
    .content-block.block-social.block-twitter .block-title a.header-link a:link,
    .content-block.block-social.block-twitter .block-title a.header-link i a,
    .content-block.block-social.block-twitter .block-title a.header-link i a:link,
    .content-block.block-social.block-twitter .layout-title a,
    .content-block.block-social.block-twitter .layout-title a:link,
    .content-block.block-social.block-twitter .block-topic a,
    .content-block.block-social.block-twitter .block-topic a:link {
      text-decoration: none; }
    .content-block.block-social.block-twitter .block-title a:focus, .content-block.block-social.block-twitter .block-title a:hover,
    .content-block.block-social.block-twitter .block-title div a:focus,
    .content-block.block-social.block-twitter .block-title div a:hover,
    .content-block.block-social.block-twitter .block-title a.header-link a:focus,
    .content-block.block-social.block-twitter .block-title a.header-link a:hover,
    .content-block.block-social.block-twitter .block-title a.header-link i a:focus,
    .content-block.block-social.block-twitter .block-title a.header-link i a:hover,
    .content-block.block-social.block-twitter .layout-title a:focus,
    .content-block.block-social.block-twitter .layout-title a:hover,
    .content-block.block-social.block-twitter .block-topic a:focus,
    .content-block.block-social.block-twitter .block-topic a:hover {
      text-decoration: underline; }
  .content-block.block-social.block-twitter .content-block-content h1,
  .content-block.block-social.block-twitter .content-block-content h2,
  .content-block.block-social.block-twitter .content-block-content h3,
  .content-block.block-social.block-twitter .content-block-content h4,
  .content-block.block-social.block-twitter .content-block-content h5,
  .content-block.block-social.block-twitter .content-block-content {
    color: #002c50; }

.content-block.block-social.block-facebook {
  background-color: #3b5998;
  color: #ffffff; }
  .content-block.block-social.block-facebook a {
    color: #ffffff; }
    .content-block.block-social.block-facebook a:hover {
      color: #ffffff; }
    .content-block.block-social.block-facebook a:visited {
      color: #ffffff; }
    .content-block.block-social.block-facebook a:active {
      color: #ffffff; }
    .content-block.block-social.block-facebook a:focus {
      color: #ffffff; }
  .content-block.block-social.block-facebook .button, .content-block.block-social.block-facebook .button.primary,
  .content-block.block-social.block-facebook button,
  .content-block.block-social.block-facebook button.primary,
  .content-block.block-social.block-facebook [type="button"],
  .content-block.block-social.block-facebook [type="button"].primary {
    text-decoration: none;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff; }
  .content-block.block-social.block-facebook .button:visited, .content-block.block-social.block-facebook .button.primary:visited,
  .content-block.block-social.block-facebook button:visited,
  .content-block.block-social.block-facebook button.primary:visited,
  .content-block.block-social.block-facebook [type="button"]:visited,
  .content-block.block-social.block-facebook [type="button"].primary:visited {
    background-color: transparent;
    border-color: #ffffff;
    color: #ffffff; }
  .content-block.block-social.block-facebook .button:focus, .content-block.block-social.block-facebook .button.primary:focus,
  .content-block.block-social.block-facebook button:focus,
  .content-block.block-social.block-facebook button.primary:focus,
  .content-block.block-social.block-facebook [type="button"]:focus,
  .content-block.block-social.block-facebook [type="button"].primary:focus {
    background-color: #ffffff;
    border-color: transparent;
    color: #002c50; }
  .content-block.block-social.block-facebook .button:hover, .content-block.block-social.block-facebook .button.primary:hover,
  .content-block.block-social.block-facebook button:hover,
  .content-block.block-social.block-facebook button.primary:hover,
  .content-block.block-social.block-facebook [type="button"]:hover,
  .content-block.block-social.block-facebook [type="button"].primary:hover {
    text-decoration: none;
    background-color: #ffffff;
    border-color: transparent;
    color: #002c50; }
  .content-block.block-social.block-facebook .button.secondary,
  .content-block.block-social.block-facebook button.secondary,
  .content-block.block-social.block-facebook [type="button"].secondary {
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.2);
    border-color: transparent;
    color: #ffffff; }
  .content-block.block-social.block-facebook .button.secondary:visited,
  .content-block.block-social.block-facebook button.secondary:visited,
  .content-block.block-social.block-facebook [type="button"].secondary:visited {
    background-color: transparent;
    border-color: #ffffff;
    color: #ffffff; }
  .content-block.block-social.block-facebook .button.secondary:focus,
  .content-block.block-social.block-facebook button.secondary:focus,
  .content-block.block-social.block-facebook [type="button"].secondary:focus {
    background-color: #ffffff;
    border-color: transparent;
    color: #002c50; }
  .content-block.block-social.block-facebook .button.secondary:hover,
  .content-block.block-social.block-facebook button.secondary:hover,
  .content-block.block-social.block-facebook [type="button"].secondary:hover {
    text-decoration: none;
    background-color: #ffffff;
    border-color: transparent;
    color: #002c50; }
  .content-block.block-social.block-facebook .button.label-hidden,
  .content-block.block-social.block-facebook button.label-hidden,
  .content-block.block-social.block-facebook [type="button"].label-hidden {
    text-decoration: none; }
    .content-block.block-social.block-facebook .button.label-hidden,
    .content-block.block-social.block-facebook button.label-hidden,
    .content-block.block-social.block-facebook [type="button"].label-hidden {
      text-decoration: none;
      background-color: transparent;
      border-color: transparent;
      color: #ffffff; }
    .content-block.block-social.block-facebook .button.label-hidden:visited,
    .content-block.block-social.block-facebook button.label-hidden:visited,
    .content-block.block-social.block-facebook [type="button"].label-hidden:visited {
      background-color: transparent;
      border-color: transparent;
      color: #ffffff; }
    .content-block.block-social.block-facebook .button.label-hidden:focus,
    .content-block.block-social.block-facebook button.label-hidden:focus,
    .content-block.block-social.block-facebook [type="button"].label-hidden:focus {
      background-color: transparent;
      border-color: transparent;
      color: #d3007e; }
    .content-block.block-social.block-facebook .button.label-hidden:hover,
    .content-block.block-social.block-facebook button.label-hidden:hover,
    .content-block.block-social.block-facebook [type="button"].label-hidden:hover {
      text-decoration: none;
      background-color: transparent;
      border-color: transparent;
      color: #d3007e; }
  .content-block.block-social.block-facebook .button:hover,
  .content-block.block-social.block-facebook .button:focus {
    color: #3b5998; }
  .content-block.block-social.block-facebook .block-title,
  .content-block.block-social.block-facebook .block-title div,
  .content-block.block-social.block-facebook .block-title a.header-link,
  .content-block.block-social.block-facebook .block-title a.header-link i,
  .content-block.block-social.block-facebook .layout-title,
  .content-block.block-social.block-facebook .block-topic {
    color: #ffffff; }
    .content-block.block-social.block-facebook .block-title a, .content-block.block-social.block-facebook .block-title a:link,
    .content-block.block-social.block-facebook .block-title div a,
    .content-block.block-social.block-facebook .block-title div a:link,
    .content-block.block-social.block-facebook .block-title a.header-link a,
    .content-block.block-social.block-facebook .block-title a.header-link a:link,
    .content-block.block-social.block-facebook .block-title a.header-link i a,
    .content-block.block-social.block-facebook .block-title a.header-link i a:link,
    .content-block.block-social.block-facebook .layout-title a,
    .content-block.block-social.block-facebook .layout-title a:link,
    .content-block.block-social.block-facebook .block-topic a,
    .content-block.block-social.block-facebook .block-topic a:link {
      text-decoration: none; }
    .content-block.block-social.block-facebook .block-title a:focus, .content-block.block-social.block-facebook .block-title a:hover,
    .content-block.block-social.block-facebook .block-title div a:focus,
    .content-block.block-social.block-facebook .block-title div a:hover,
    .content-block.block-social.block-facebook .block-title a.header-link a:focus,
    .content-block.block-social.block-facebook .block-title a.header-link a:hover,
    .content-block.block-social.block-facebook .block-title a.header-link i a:focus,
    .content-block.block-social.block-facebook .block-title a.header-link i a:hover,
    .content-block.block-social.block-facebook .layout-title a:focus,
    .content-block.block-social.block-facebook .layout-title a:hover,
    .content-block.block-social.block-facebook .block-topic a:focus,
    .content-block.block-social.block-facebook .block-topic a:hover {
      text-decoration: underline; }
  .content-block.block-social.block-facebook .content-block-content h1,
  .content-block.block-social.block-facebook .content-block-content h2,
  .content-block.block-social.block-facebook .content-block-content h3,
  .content-block.block-social.block-facebook .content-block-content h4,
  .content-block.block-social.block-facebook .content-block-content h5,
  .content-block.block-social.block-facebook .content-block-content {
    color: #ffffff; }

.content-block.block-search-form {
  background: transparent;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem; }
  .content-block.block-search-form .search-form {
    background: transparent;
    overflow: visible;
    z-index: 100; }
    .content-block.block-search-form .search-form .goto-search {
      display: none; }
    .content-block.block-search-form .search-form input[type=search] {
      -webkit-appearance: none;
      height: 4.125rem;
      box-shadow: none;
      border: 1px solid #cecece;
      border-radius: 4px;
      margin-bottom: 0;
      background: #ffffff;
      color: #002c50; }
      .content-block.block-search-form .search-form input[type=search]::-webkit-input-placeholder {
        color: #525251; }
      .content-block.block-search-form .search-form input[type=search]::-moz-placeholder {
        color: #525251; }
      .content-block.block-search-form .search-form input[type=search]:-moz-placeholder {
        color: #525251; }
      .content-block.block-search-form .search-form input[type=search]:-ms-input-placeholder {
        color: #525251; }
    .content-block.block-search-form .search-form button[type=submit] {
      border-color: #d3007e;
      color: #d3007e; }

.block-terms-and-conditions {
  border-top: 1px solid #cecece;
  padding: 0; }
  .block-terms-and-conditions .accordion dd.accordion-navigation > a {
    padding-left: 1.875rem;
    padding-right: 1.875rem; }
  .block-terms-and-conditions .content-block-content {
    padding: 0; }
    .block-terms-and-conditions .content-block-content .accordion .accordion-navigation.active > a {
      background: transparent; }
    .block-terms-and-conditions .content-block-content .accordion .accordion-navigation > a:hover {
      background: transparent; }
    .block-terms-and-conditions .content-block-content .accordion .accordion-navigation .content.active {
      padding: 1.875rem; }

.block-video .block-title,
.block-video .block-description {
  width: 100%; }

.block-video .block-title {
  font-size: 2.625rem;
  font-weight: light; }

.block-video .content-block-content a.play-button.has-icon {
  text-decoration: none; }

#page-blocks .layout .block-video a.has-icon {
  text-decoration: none; }

.layout-1-col .block-video {
  /* any video in a one column layout
		needs height, due to the post frame being a
		background image
	*/
  height: 100%;
  min-height: 28.125rem;
  max-height: 28.125rem;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-top: 0;
  width: 100%; }
  .layout-1-col .block-video .content-block-content {
    display: table-row;
    height: 100%; }
  .layout-1-col .block-video .block-footer {
    display: table-row; }

#ic-calculator {
  width: 100%;
  display: block; }

/**
 * Hero slider block overrides
 */
/**
 * - small only
 */
@media only screen and (max-width: 30em) {
  .layout .block-article {
    padding-bottom: 1.875rem; }
    .layout .block-article.has-image, .layout .block-article.has-theme, .layout .block-article.article-featured {
      min-height: 25rem; }
  #site-footer .inline-list.footer-nav li:first-child {
    margin-left: 0; }
  .off-canvas-wrap .inner-wrap .first-level .submenu.megamenu .nav-mega-sub {
    padding-left: 1.75rem; }
    .off-canvas-wrap .inner-wrap .first-level .submenu.megamenu .nav-mega-sub:link, .off-canvas-wrap .inner-wrap .first-level .submenu.megamenu .nav-mega-sub:visited {
      color: rgba(255, 255, 255, 0.9);
      background-color: transparent; }
    .off-canvas-wrap .inner-wrap .first-level .submenu.megamenu .nav-mega-sub:focus, .off-canvas-wrap .inner-wrap .first-level .submenu.megamenu .nav-mega-sub:hover, .off-canvas-wrap .inner-wrap .first-level .submenu.megamenu .nav-mega-sub:active {
      color: #ffffff;
      background-color: #003764; }
  .off-canvas-wrap .inner-wrap .off-canvas-wrap .left-off-canvas-menu ul.off-canvas-list.submenu > li.has-submenu .megamenu .submenu-category-title,
  .off-canvas-wrap .inner-wrap .first-level > .has-submenu > .megamenu-wrapper .nav-mega {
    color: #ffa400;
    font-size: 0.875rem;
    font-weight: normal;
    margin-top: 2em; }
  .off-canvas-wrap .inner-wrap .first-level > .has-submenu > .megamenu-wrapper .nav-mega [class^="icon-"],
  .off-canvas-wrap .inner-wrap .first-level > .has-submenu > .megamenu-wrapper .nav-mega [class*=" icon-"] {
    line-height: 1;
    display: none; }
  .block-rate-table table.rate-table th.product-name, .block-rate-table table.rate-table th.variant-name {
    display: block; }
  .block-rate-table table.rate-table[data-stacked-deck] td:last-child {
    border-bottom: none; }
  .block-rate-table.block-theme-lightpink table .header th.product-name {
    color: #d3007e;
    padding-top: 0; }
  .block-slider {
    background-size: auto 15rem;
    background-position: 70% 0%; }
    .block-slider.has-bg-image {
      padding-top: 0; }
      .block-slider.has-bg-image .content-block-content {
        margin-top: 15rem;
        padding-top: 1rem; }
    .block-slider .block-footer {
      margin-top: 0;
      margin-bottom: 4.5rem; } }

/**
 * Organisms
 * - medium up
 */
@media only screen and (min-width: 30.063em) {
  #page-header .page-title {
    font-size: 2.75rem;
    font-weight: light; }
  #page-header .Sticky.js-sticky .page-title {
    font-size: 1.25rem;
    font-weight: normal;
    padding-top: 1.25rem; }
  /**
 * When the site header is also visible
 */
  #site-header.StickyRevealed.js-sticky.js-active ~ .main-section #page-header .Sticky.js-active {
    -ms-transform: translateY(2.8125rem);
        transform: translateY(2.8125rem); }
  .footer-nav-wrapper .footer-nav > li {
    float: left;
    display: inline-block;
    margin: 0; }
    .footer-nav-wrapper .footer-nav > li:nth-child(odd), .footer-nav-wrapper .footer-nav > li:nth-child(even) {
      padding: 0; }
    .footer-nav-wrapper .footer-nav > li a:after {
      display: inline-block;
      padding: 0 .75rem;
      content: "•"; }
    .footer-nav-wrapper .footer-nav > li:last-child a:after {
      display: none; }
  .footer-nav-wrapper .social-nav {
    float: right; }
  .block-article {
    min-height: inherit;
    margin-bottom: auto;
    /**
	 * Cover image mask pixel rounding gap
	 * border added by theme
	 */
    /**
	 * shapes the datestamp
	 *  positions datestamp top right
     */
    /**
	 * adds $featuredBgColour to content-block
	 */ }
    .page-hero .block-article[class*="theme-"]:after {
      content: '';
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0; }
    .block-article > .date-stamp {
      display: none; }
    .block-article.article-featured .date-stamp {
      width: 7.5rem;
      height: 4.375rem;
      display: table;
      font-size: 0.875rem;
      font-weight: normal;
      position: absolute;
      bottom: 0;
      right: 0;
      top: initial;
      left: initial; }
      .block-article.article-featured .date-stamp:before {
        display: none; }
      .block-article.article-featured .date-stamp .date {
        color: inherit;
        position: relative;
        /* to accept z-index */
        display: table-cell;
        vertical-align: middle;
        text-align: center;
        z-index: 201; }
      .block-article.article-featured .date-stamp svg {
        z-index: 200; }
      .block-article.article-featured .date-stamp .date {
        top: 0.4rem; }
      .block-article.article-featured .date-stamp svg {
        position: absolute;
        bottom: 0;
        top: initial;
        -ms-transform: scaleY(1);
            transform: scaleY(1); }
      .block-article.article-featured .date-stamp svg {
        display: block; }
    .block-article.has-theme {
      /**
		 * datestamp color is $featuredBgColour
		 */ }
      .block-article.has-theme.article-featured .date-stamp {
        width: 7.5rem;
        height: 4.375rem;
        display: table;
        font-size: 0.875rem;
        font-weight: normal;
        position: absolute;
        top: 0;
        right: 0;
        bottom: initial;
        left: initial; }
        .block-article.has-theme.article-featured .date-stamp:before {
          display: none; }
        .block-article.has-theme.article-featured .date-stamp .date {
          color: inherit;
          position: relative;
          /* to accept z-index */
          display: table-cell;
          vertical-align: middle;
          text-align: center;
          z-index: 201; }
        .block-article.has-theme.article-featured .date-stamp svg {
          z-index: 200; }
        .block-article.has-theme.article-featured .date-stamp svg {
          position: absolute;
          top: 0;
          -ms-transform: scaleY(-1);
              transform: scaleY(-1); }
        .block-article.has-theme.article-featured .date-stamp .date {
          top: -0.4rem; }
        .block-article.has-theme.article-featured .date-stamp svg {
          display: block; }
    .block-article .profile-card {
      display: block;
      margin-top: 0.9375rem; }
      .block-article .profile-card .title {
        float: left; }
  .block-article.has-image {
    background-size: cover; }
  /**
 * Layout grid overrides
 */
  .layout-article-grid .medium-6 .block-article > .date-stamp {
    display: none; }
  .layout-article-grid .medium-6 .block-article header .date-stamp {
    display: inline-block;
    padding: 0;
    width: auto;
    height: auto;
    vertical-align: auto;
    text-align: left;
    font-size: 0.625rem;
    font-weight: normal;
    position: static; }
    .layout-article-grid .medium-6 .block-article header .date-stamp .date {
      padding: 0;
      top: 0;
      display: inline-block; }
    .layout-article-grid .medium-6 .block-article header .date-stamp:before {
      content: "/";
      display: inline-block;
      padding: 0 .25em; }
    .layout-article-grid .medium-6 .block-article header .date-stamp svg {
      display: none; }
  .layout-1-and-4-col .layout-right .layout-cell .block-article.has-image.has-theme.article-featured > .date-stamp {
    display: none; }
  .layout-1-and-4-col .layout-left .block-article.has-image.has-theme.article-featured .block-title .date-stamp {
    display: none; }
  .layout-3-col .block-article.has-theme.article-featured .block-title .date-stamp {
    display: none; }
  .layout-4-col .block-article.article-featured > .date-stamp {
    display: none; }
  .layout-4-col .block-article.article-featured header .date-stamp {
    display: inline-block;
    padding: 0;
    width: auto;
    height: auto;
    vertical-align: auto;
    text-align: left;
    font-size: 0.625rem;
    font-weight: normal;
    position: static; }
    .layout-4-col .block-article.article-featured header .date-stamp .date {
      padding: 0;
      top: 0;
      display: inline-block; }
    .layout-4-col .block-article.article-featured header .date-stamp:before {
      content: "/";
      display: inline-block;
      padding: 0 .25em; }
    .layout-4-col .block-article.article-featured header .date-stamp svg {
      display: none; }
  /**
 * Hide author on small article blocks
 */
  .medium-6 .block-article .profile-card,
  .large-6 .large-6 .block-article .profile-card {
    display: none; }
  .layout-1-col.page-hero .block-article {
    height: 100%;
    min-height: 28.125rem;
    max-height: 28.125rem;
    padding-bottom: 0;
    margin-bottom: 0;
    margin-top: 0; }
  .layout-1-col .block-article footer,
  .page-hero .block-article footer {
    display: block;
    padding-left: 1.875rem; }
    .layout-1-col .block-article footer .inline-list > li,
    .page-hero .block-article footer .inline-list > li {
      margin-left: 0; }
  .layout-1-col .block-article.article-featured header, .layout-1-col .block-article.has-image header, .layout-1-col .block-article.has-theme header,
  .page-hero .block-article.article-featured header,
  .page-hero .block-article.has-image header,
  .page-hero .block-article.has-theme header {
    max-width: 55%;
    position: relative;
    background-color: transparent;
    padding: 0;
    height: auto; }
  .layout-1-col .block-article.article-featured .content-block-content, .layout-1-col .block-article.has-image .content-block-content, .layout-1-col .block-article.has-theme .content-block-content,
  .page-hero .block-article.article-featured .content-block-content,
  .page-hero .block-article.has-image .content-block-content,
  .page-hero .block-article.has-theme .content-block-content {
    max-width: 55%;
    display: block;
    position: relative;
    background-color: transparent; }
  .layout-1-col .block-article.article-featured .date-stamp, .layout-1-col .block-article.has-image .date-stamp, .layout-1-col .block-article.has-theme .date-stamp,
  .page-hero .block-article.article-featured .date-stamp,
  .page-hero .block-article.has-image .date-stamp,
  .page-hero .block-article.has-theme .date-stamp {
    display: inline-block;
    padding: 0;
    width: auto;
    height: auto;
    vertical-align: auto;
    text-align: left;
    font-size: 0.625rem;
    font-weight: normal;
    position: relative; }
    .layout-1-col .block-article.article-featured .date-stamp .date, .layout-1-col .block-article.has-image .date-stamp .date, .layout-1-col .block-article.has-theme .date-stamp .date,
    .page-hero .block-article.article-featured .date-stamp .date,
    .page-hero .block-article.has-image .date-stamp .date,
    .page-hero .block-article.has-theme .date-stamp .date {
      padding: 0;
      top: 0;
      display: inline-block; }
    .layout-1-col .block-article.article-featured .date-stamp:before, .layout-1-col .block-article.has-image .date-stamp:before, .layout-1-col .block-article.has-theme .date-stamp:before,
    .page-hero .block-article.article-featured .date-stamp:before,
    .page-hero .block-article.has-image .date-stamp:before,
    .page-hero .block-article.has-theme .date-stamp:before {
      content: "/";
      display: inline-block;
      padding: 0 .25em; }
    .layout-1-col .block-article.article-featured .date-stamp svg, .layout-1-col .block-article.has-image .date-stamp svg, .layout-1-col .block-article.has-theme .date-stamp svg,
    .page-hero .block-article.article-featured .date-stamp svg,
    .page-hero .block-article.has-image .date-stamp svg,
    .page-hero .block-article.has-theme .date-stamp svg {
      display: none; }
  .layout-1-col .block-article.has-image .has-mask,
  .page-hero .block-article.has-image .has-mask {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%; }
  .layout-1-col .block-article.has-theme.has-image header,
  .page-hero .block-article.has-theme.has-image header {
    position: relative;
    top: 0; }
  .layout-1-col .block-article.has-theme.has-image .mountain-range,
  .page-hero .block-article.has-theme.has-image .mountain-range {
    display: none !important; }
  .layout-1-col .block-article .profile-card,
  .page-hero .block-article .profile-card {
    display: block;
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 1.875rem; }
  .layout-1-col .block-campaign {
    height: 100%;
    min-height: 28.125rem;
    max-height: 28.125rem;
    padding-bottom: 0;
    margin-bottom: 0;
    margin-top: 0; }
  .content-block.block-category-link {
    background-size: 50%;
    background-position: right; }
    .content-block.block-category-link .content-block-content {
      width: 50%; }
  .block-icon:after {
    content: " ";
    position: absolute;
    display: block;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    width: 1px;
    height: auto;
    top: 1.875rem;
    bottom: 1.875rem;
    right: -0.9375rem; }
  .block-rate-comparison .content-block-content > .row {
    text-align: center; }
  .block-rate-comparison .rate {
    padding-top: 1.875rem; }
    .block-rate-comparison .rate .rate-value {
      font-size: 3.75rem;
      font-weight: light; }
    .block-rate-comparison .rate .rate-prefix {
      display: inline-block;
      font-size: 3.75rem;
      font-weight: light; }
    .block-rate-comparison .rate .rate-suffix {
      display: inline-block;
      font-size: 3.75rem;
      font-weight: light; }
  .block-rate-table .block-rate-table__scroll-inner {
    padding: 0; }
  .block-rate-table table .header th.product-name,
  .block-rate-table table .header th.variant-name {
    display: block;
    padding-top: 0; }
  .block-rate-table.block-theme-lightpink table .header th.product-name {
    color: #d3007e; }
  .block-product-link .block-product-link-rate .row {
    display: table; }
    .block-product-link .block-product-link-rate .row .rate {
      display: table-cell;
      width: auto; }
      .block-product-link .block-product-link-rate .row .rate .rate-prefix,
      .block-product-link .block-product-link-rate .row .rate .rate-suffix {
        padding-left: 0.25em;
        padding-right: 0.25em; }
  .layout-1-col .block-video .block-title,
  .layout-1-col .block-video .block-description {
    width: 50%; }
  .layout {
    margin-bottom: 0.9375rem;
    /**
	 * only enforce ratio on medium up
	 */ }
    .layout .block-footer {
      margin-top: 0.9375rem;
      width: 100%; }
    .layout.enforced-ratio .layout-cell {
      position: relative;
      display: inline-block;
      /**
		 * Use another style of vertical alignment
		 * when parent layout has enforced ratio hack
		 */ }
      .layout.enforced-ratio .layout-cell:before {
        content: '';
        display: block;
        padding-top: 100%; }
      .layout.enforced-ratio .layout-cell .content-block {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0; }
      .layout.enforced-ratio .layout-cell .block-aligned-vertically {
        display: inline-block; }
        .layout.enforced-ratio .layout-cell .block-aligned-vertically > .content-block-content {
          display: inherit;
          -ms-transform: translateY(-50%);
              transform: translateY(-50%);
          margin-top: 50%; }
        .layout.enforced-ratio .layout-cell .block-aligned-vertically > .block-footer,
        .layout.enforced-ratio .layout-cell .block-aligned-vertically .block-footer {
          position: inherit; }
    .layout.enforced-ratio .block-footer {
      position: absolute;
      bottom: 0.9375rem;
      left: 0;
      right: 0;
      width: auto; }
      .layout.enforced-ratio .block-footer a {
        margin-bottom: 0; }
    .layout.enforced-ratio .block-footer {
      padding-left: 1.875rem;
      padding-right: 1.875rem; }
    .layout.enforced-ratio .block-image img {
      max-width: 85%;
      width: 100%;
      height: auto; }
    .layout .block-aligned-vertically, .layout.enforced-ratio .block-aligned-vertically {
      display: table; }
      .layout .block-aligned-vertically > .content-block-content, .layout.enforced-ratio .block-aligned-vertically > .content-block-content {
        display: table-cell;
        vertical-align: middle; }
    .layout .content-block {
      margin: 0.46875rem; }
  .layout-hero .layout-cell,
  .layout-1-col .layout-cell {
    padding-left: 0;
    padding-right: 0; }
  .layout-hero .content-block,
  .layout-1-col .content-block {
    margin-left: 0;
    margin-right: 0; }
  .layout-2-col .layout-cell:nth-child(-n+2) .content-block {
    /* remove the margin from items in the first row. */
    margin-top: 0; }
  .layout-2-col .layout-cell:nth-last-child(-n+2) .content-block {
    /* remove the margin from items in the first row. */
    margin-bottom: 0; }
  .layout-2-col .layout-cell:nth-child(odd) .content-block {
    margin-left: 0;
    margin-right: 0.46875rem; }
  .layout-2-col .layout-cell:nth-child(even) .content-block {
    margin-left: 0.46875rem;
    margin-right: 0; }
  .layout-2-col:not(.enforced-ratio) .layout-content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    .layout-2-col:not(.enforced-ratio) .layout-content .layout-cell {
      float: none;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-direction: row;
          flex-direction: row;
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%; }
    .layout-2-col:not(.enforced-ratio) .layout-content:after {
      display: none; }
    .layout-2-col:not(.enforced-ratio) .layout-content .content-block {
      width: 100%; }
  .layout.layout-3-col .layout-cell .content-block {
    margin-left: 0;
    margin-right: 0; }
  .layout.layout-3-col .layout-cell:nth-last-child(-n+1) .content-block {
    margin-bottom: 0; }
  .layout.layout-3-col .layout-cell:nth-child(3n+1) .content-block {
    margin-right: 20px; }
  .layout.layout-3-col .layout-cell:nth-child(3n+2) .content-block {
    margin-right: 10px;
    margin-left: 10px; }
  .layout.layout-3-col .layout-cell:nth-child(3n+3) .content-block {
    margin-left: 20px; }
  .layout.layout-3-col:not(.enforced-ratio) .layout-content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    .layout.layout-3-col:not(.enforced-ratio) .layout-content .layout-cell {
      float: none;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-direction: row;
          flex-direction: row;
      -ms-flex-preferred-size: 33.33333333333333%;
          flex-basis: 33.33333333333333%; }
    .layout.layout-3-col:not(.enforced-ratio) .layout-content:after {
      display: none; }
    .layout.layout-3-col:not(.enforced-ratio) .layout-content .content-block {
      width: 100%; }
  .layout-1-and-4-col .layout-left:nth-child(-n+1) .content-block {
    /* remove the margin from items in the first row. */
    margin-top: 0; }
  .layout-1-and-4-col .layout-left:nth-last-child(-n+1) .content-block {
    /* remove the margin from items in the first row. */
    margin-bottom: 0; }
  .layout-1-and-4-col .layout-left .content-block {
    margin-left: 0;
    margin-right: 0; }
  .layout-1-and-4-col .layout-right .layout-right .layout-cell:first-child .content-block {
    margin-top: 0; }
  .layout-1-and-4-col .layout-right .layout-cell:nth-child(-n+2) .content-block {
    /* remove the margin from items in the first row. */
    margin-top: 0; }
  .layout-1-and-4-col .layout-right .layout-cell:nth-last-child(-n+2) .content-block {
    /* remove the margin from items in the first row. */
    margin-bottom: 0; }
  .layout-1-and-4-col .layout-right .layout-cell:nth-child(odd) .content-block {
    margin-left: 0; }
  .layout-1-and-4-col .layout-right .layout-cell:nth-child(even) .content-block {
    margin-right: 0; }
  .layout-1-and-4-col .layout-right .layout-cell:nth-child(-n+2) .content-block {
    margin-top: 0.46875rem; }
  .layout-4-col .layout-cell:nth-child(-n+2) .content-block {
    /* remove the margin from items in the first row. */
    margin-top: 0; }
  .layout-4-col .layout-cell:nth-last-child(-n+2) .content-block {
    /* remove the margin from items in the first row. */
    margin-bottom: 0; }
  .layout-4-col .layout-cell:nth-child(odd) .content-block {
    margin-left: 0; }
  .layout-4-col .layout-cell:nth-child(even) .content-block {
    margin-right: 0; }
  .layout-2-col-one-to-three .layout-cell:nth-child(-n+2) .content-block,
  .layout-2-col-three-to-one .layout-cell:nth-child(-n+2) .content-block {
    /* remove the margin from items in the first row. */
    margin-top: 0; }
  .layout-2-col-one-to-three .layout-cell:nth-last-child(-n+2) .content-block,
  .layout-2-col-three-to-one .layout-cell:nth-last-child(-n+2) .content-block {
    /* remove the margin from items in the first row. */
    margin-bottom: 0; }
  .layout-child {
    -ms-flex-positive: 1;
        flex-grow: 1; }
    .layout-2-col .layout-child {
      width: calc(50% - 0.9375rem);
      float: left;
      clear: none; }
      .layout-2-col .layout-child[class] {
        padding-top: 0; }
      .layout-2-col .layout-child:first-child {
        margin-right: 0.9375rem; }
      .layout-2-col .layout-child:last-child {
        margin-left: 0.9375rem; }
    .layout-3-col .layout-child {
      width: calc((100% / 3) - 0.9375rem);
      float: left;
      clear: none;
      margin-left: 0.46875rem;
      margin-right: 0.46875rem; }
      .layout-3-col .layout-child[class] {
        padding-top: 0; }
      .layout-3-col .layout-child:first-child {
        margin-left: 0;
        margin-right: 0.9375rem; }
      .layout-3-col .layout-child:last-child {
        margin-left: 0.9375rem;
        margin-right: 0; }
    .layout-4-col .layout-child {
      width: calc(50% - 0.9375rem);
      float: left;
      clear: none;
      margin-left: 0.46875rem;
      margin-right: 0.46875rem; }
      .layout-4-col .layout-child[class] {
        padding-top: 0; }
      .layout-4-col .layout-child:first-child {
        margin-left: 0;
        margin-right: 0.9375rem; }
      .layout-4-col .layout-child:last-child {
        margin-left: 0.9375rem;
        margin-right: 0; }
    .layout-1-and-4-col .layout-child {
      padding-bottom: 0.46875rem; }
    .layout-1-and-4-col .layout-right .layout-child {
      width: 50%;
      float: left;
      clear: none;
      padding: 0.46875rem; }
      .layout-1-and-4-col .layout-right .layout-child:nth-child(odd) {
        padding-left: 0; }
      .layout-1-and-4-col .layout-right .layout-child:nth-child(even) {
        padding-right: 0; }
  .layout-responsive-tabs [role='tabpanel'] .content-block {
    margin-top: 0;
    padding-top: 0;
    padding-left: 1.875rem;
    padding-right: 1.875rem; }
  .layout.layout-article-grid .layout-content .layout-cell:first-child .content-block:first-child,
  .layout.layout-article-grid .layout-content .layout-cell .content-block.block-article {
    margin: 0.46875rem; }
  .layout-slider .slick-prev,
  .layout-slider .slick-next {
    visibility: visible; }
  #page-hero .layout-slider .content-block-content,
  #page-hero .layout-slider .block-header,
  #page-hero .layout-slider .block-footer {
    padding-left: 1.875rem;
    padding-right: 1.875rem; }
  #page-hero .layout-slider .block-slider:not(.has-bg-image) .block-slider-inner {
    width: auto; }
  #page-hero .layout-slider .slick-track .content-block {
    margin: 0; }
  #page-hero .layout-slider .block-slider {
    background-position: 60% 0%; } }

/**
 * Organisms
 * - large up
 */
@media only screen and (min-width: 55.063em) {
  #feedback-trigger-button {
    position: fixed;
    right: -1px;
    top: 68%;
    background-color: #d3007e;
    box-shadow: 0 1px 5px rgba(29, 29, 27, 0.2);
    color: #ffffff;
    z-index: 700;
    transition: background-color 300ms ease-out; }
    #feedback-trigger-button [class^="icon-"] {
      background: #a00060;
      transition: background-color 300ms ease-out; }
    #feedback-trigger-button:visited, #feedback-trigger-button:focus, #feedback-trigger-button:active {
      color: #ffffff;
      background-color: #d3007e;
      text-decoration: none; }
    #feedback-trigger-button:hover {
      text-decoration: none;
      background: #ba006f; }
      #feedback-trigger-button:hover [class^="icon-"] {
        background: #870050; }
  .block-accordion-grouped .accordion-group-toc .tabs {
    margin-top: 4rem;
    width: 100%;
    max-width: 100%; }
  .page-hero .block-article.article-featured header,
  .page-hero .block-article.article-featured .content-block-content, .page-hero .block-article.has-image header,
  .page-hero .block-article.has-image .content-block-content, .page-hero .block-article.has-theme header,
  .page-hero .block-article.has-theme .content-block-content {
    max-width: 30%; }
  .medium-6 .block-article .profile-card {
    display: block; }
  .medium-6 .medium-6 .block-article .profile-card {
    display: none; }
  .large-3 .block-article.has-theme.has-image footer {
    display: none; }
  /**
 * Show date stamp outside header
 */
  .layout-article-grid .medium-6 .block-article.article-featured > .date-stamp,
  .layout-2-col .medium-6 .block-article.article-featured > .date-stamp {
    display: table; }
  .layout-article-grid .medium-6 .block-article.article-featured header .date-stamp,
  .layout-2-col .medium-6 .block-article.article-featured header .date-stamp {
    display: none; }
  .over-image {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    z-index: 1;
    margin-right: -101%; }
  .over-caption {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    z-index: 2; }
  .layout:not(.indented-horizontally) .block-figure footer {
    padding: 0; }
  .block-icon {
    text-align: center;
    padding-top: 0.9375rem;
    padding-bottom: 0.9375rem;
    padding: 1.875rem 1.875rem 1.875rem 1.875rem; }
    .block-icon .icon-container {
      display: block;
      margin-top: 0;
      margin-bottom: 0;
      font-size: 4rem; }
    .block-icon.content-block {
      margin: 0; }
    .block-icon.no-border {
      border: none; }
  .block-links-grouped.block-links-grouped-detail .linked-list > li {
    padding: 1.875rem 5.625rem 1.875rem 3.75rem; }
    .block-links-grouped.block-links-grouped-detail .linked-list > li > a {
      padding: 1.875rem 3.75rem;
      font-size: 1.125rem;
      font-weight: normal; }
      .block-links-grouped.block-links-grouped-detail .linked-list > li > a:before {
        top: 1.875rem;
        left: 1.875rem; }
    .block-links-grouped.block-links-grouped-detail .linked-list > li .rate .rate-label {
      font-size: 0.875rem;
      font-weight: normal; }
    .block-links-grouped.block-links-grouped-detail .linked-list > li .rate .rate-value {
      font-size: 1.5rem;
      font-weight: normal; }
    .block-links-grouped.block-links-grouped-detail .linked-list > li .rate .rate-prefix {
      display: inline-block;
      font-size: 1.5rem;
      font-weight: normal; }
    .block-links-grouped.block-links-grouped-detail .linked-list > li .rate .rate-suffix {
      display: inline-block;
      font-size: 1.5rem;
      font-weight: normal; }
  .block-product-link {
    position: relative; }
    .block-product-link .block-footer .inline-list {
      margin-bottom: 0; }
    .block-product-link .block-product-link-rate .row .rate {
      max-width: 100%; }
  .block-rate-table table .header th.product-name {
    display: none; }
  .block-rate-table table .header th.variant-name {
    white-space: nowrap; }
  .block-rate-table table thead tr.column-names {
    display: table-row;
    text-align: left; }
    .block-rate-table table thead tr.column-names th {
      display: table-cell; }
  .block-rate-table table tbody tr td {
    display: table-cell; }
    .block-rate-table table tbody tr td:before {
      display: none; }
  .block-rate-table.is-primary-product table .header .product-name {
    display: table-cell; }
  .block-rate-table td, .block-rate-table th {
    padding-left: 8px;
    padding-right: 8px; }
    .block-rate-table td:first-child, .block-rate-table th:first-child {
      padding-left: 0; }
    .block-rate-table td:last-child, .block-rate-table th:last-child {
      padding-right: 0; }
  .block-rate-table .interest-rate {
    width: 110px; }
  .block-rate-table .comparison-rate {
    width: 125px; }
  .block-rate-table-single {
    padding: 0 1rem; }
    .block-rate-table-single.rate-table-highlighted {
      padding: 1rem;
      margin: 0; }
  .main-section .content-block.block-related-faqs {
    /*padding: $column-gutter*2  $column-gutter;*/ }
    .main-section .content-block.block-related-faqs > .content-block-content .layout:last-of-type {
      padding-bottom: 0; }
  .layout.layout-article-grid .layout-content .layout-cell .content-block.block-article .block-title {
    font-size: 1.125rem;
    font-weight: normal; }
  .layout.layout-article-grid .layout-content .layout-cell .content-block.block-article.article-featured .block-title {
    font-size: 2.25rem;
    font-weight: normal; }
  .layout {
    margin-bottom: 1.875rem; }
    .layout .content-block {
      margin: 1.875rem; }
    .layout.indented-horizontally .content-block {
      padding-left: 5.625rem;
      padding-right: 5.625rem; }
    .layout.enforced-ratio .block-footer {
      position: absolute;
      bottom: 1.875rem;
      left: 0;
      right: 0;
      width: auto; }
      .layout.enforced-ratio .block-footer a {
        margin-bottom: 0; }
    .layout.layout-1-col .layout-cell .content-block {
      margin: 0.9375rem;
      margin-left: 0;
      margin-right: 0; }
    .layout.layout-2-col .content-block {
      margin-top: 0.9375rem;
      margin-bottom: 0.9375rem;
      width: 100%; }
    .layout.layout-2-col .layout-cell:nth-child(odd) .content-block {
      margin-right: 0.9375rem; }
    .layout.layout-2-col .layout-cell:nth-child(even) .content-block {
      margin-left: 0.9375rem; }
    .layout.layout-2-col .layout-cell:nth-child(-n+2) .content-block {
      margin-top: 0; }
    .layout.layout-3-col .layout-cell .content-block {
      margin: 0.9375rem; }
    .layout.layout-3-col .layout-cell:nth-child(-n+3) .content-block {
      /* remove the margin from items in the first row. */
      margin-top: 0; }
    .layout.layout-3-col .layout-cell:nth-last-child(-n+3) .content-block {
      /* remove the margin from items in the first row. */
      margin-bottom: 0; }
    .layout.layout-3-col .layout-cell:nth-child(3n+1) .content-block {
      margin-left: 0; }
    .layout.layout-3-col .layout-cell:nth-child(3n+3) .content-block {
      margin-right: 0; }
    .layout.layout-4-col .layout-cell {
      /* reset all block margins to this breakpoint level */
      /* overide medium up */
      /* set left and right ends */ }
      .layout.layout-4-col .layout-cell:nth-child(-n+4) .content-block {
        /* remove the margin from items in the first row. */
        margin-top: 0; }
      .layout.layout-4-col .layout-cell:nth-last-child(-n+4) .content-block {
        /* remove the margin from items in the first row. */
        margin-bottom: 0; }
      .layout.layout-4-col .layout-cell .content-block {
        margin: 0.9375rem; }
      .layout.layout-4-col .layout-cell:nth-child(even) .content-block {
        margin-right: 0.9375rem; }
      .layout.layout-4-col .layout-cell:nth-child(odd) .content-block {
        margin-left: 0.9375rem; }
      .layout.layout-4-col .layout-cell:nth-child(4n+1) .content-block {
        margin-left: 0; }
      .layout.layout-4-col .layout-cell:nth-child(4n+4) .content-block {
        margin-right: 0; }
    .layout.layout-1-and-4-col .content-block {
      margin: 0.9375rem; }
    .layout.layout-1-and-4-col .layout-left:nth-child(-n+1) .content-block {
      /* remove the margin from items in the first row. */
      margin-top: 0; }
    .layout.layout-1-and-4-col .layout-left:nth-last-child(-n+1) .content-block {
      /* remove the margin from items in the first row. */
      margin-bottom: 0; }
    .layout.layout-1-and-4-col .layout-left .content-block {
      margin-right: 1.875rem;
      margin-left: 0; }
    .layout.layout-1-and-4-col .layout-left .content-block:last-child {
      margin-bottom: 0; }
    .layout.layout-1-and-4-col .layout-right .layout-cell:nth-child(-n+2) .content-block {
      /* remove the margin from items in the first row. */
      margin-top: 0; }
    .layout.layout-1-and-4-col .layout-right .layout-cell:nth-last-child(-n+2) .content-block {
      /* remove the margin from items in the first row. */
      margin-bottom: 0; }
    .layout.layout-1-and-4-col .layout-right .layout-cell:nth-child(-n+2) .content-block {
      margin-bottom: 0.9375rem; }
    .layout .layout-cell.layout-cell--stack .content-block {
      margin-bottom: 0; }
    .layout .layout-cell.layout-cell--stack + .layout-cell--stack .content-block {
      margin-top: 0; }
    .layout .layout-cell.layout-cell--stack + .layout-cell:not(.layout-cell--stack) .content-block {
      margin-top: 1.875rem; }
  .layout-2-col .layout-child {
    width: calc(50% - 1.25rem); }
    .layout-2-col .layout-child:first-child {
      margin-right: 1.25rem; }
    .layout-2-col .layout-child:last-child {
      margin-left: 1.25rem; }
  .layout-3-col .layout-child {
    width: calc((100% / 3) - 1.25rem);
    margin-left: 0.625rem;
    margin-right: 0.625rem; }
    .layout-3-col .layout-child:first-child {
      margin-left: 0;
      margin-right: 1.25rem; }
    .layout-3-col .layout-child:last-child {
      margin-left: 1.25rem;
      margin-right: 0; }
  .layout-4-col .layout-child {
    width: calc(25% - 1.25rem);
    margin-left: 0.625rem;
    margin-right: 0.625rem; }
    .layout-4-col .layout-child:first-child {
      margin-left: 0;
      margin-right: 1.25rem; }
    .layout-4-col .layout-child:last-child {
      margin-left: 1.25rem;
      margin-right: 0; }
  .layout-1-and-4-col .layout-content > .layout-child {
    float: left;
    clear: none;
    width: 50%;
    padding: 0;
    padding-right: 1.875rem; }
  .layout-1-and-4-col .layout-right .layout-child {
    width: 50%;
    padding: 0.9375rem; }
    .layout-1-and-4-col .layout-right .layout-child:nth-child(odd) {
      padding-left: 0; }
    .layout-1-and-4-col .layout-right .layout-child:nth-child(even) {
      padding-right: 0; }
    .layout-1-and-4-col .layout-right .layout-child:nth-child(-n+2) {
      padding-top: 0; }
    .layout-1-and-4-col .layout-right .layout-child:nth-child(n+3) {
      padding-bottom: 0; }
  .layout-slider .block-figure img {
    max-width: 23.75rem; }
  .layout-slider .content-block {
    margin: 0; }
  .slider-indented-horizontally {
    padding-left: 5.625rem;
    padding-right: 5.625rem; }
  #page-hero .layout-slider {
    /**
	 *	BAU-760: - Set content-block width full screen
	 *			 - set content-block content width to row-width
	 */ }
    #page-hero .layout-slider .layout-content {
      padding: 0; }
    #page-hero .layout-slider [data-slick] {
      margin-bottom: 0; }
    #page-hero .layout-slider > .row,
    #page-hero .layout-slider [data-slick],
    #page-hero .layout-slider .slick-list,
    #page-hero .layout-slider .slick-track .content-block {
      width: 100%;
      max-width: 100%;
      margin: 0; }
    #page-hero .layout-slider .slick-slide {
      max-width: 100%;
      width: 100%;
      max-height: 400px;
      min-height: 400px;
      height: 400px; }
    #page-hero .layout-slider .content-block-content,
    #page-hero .layout-slider .block-header,
    #page-hero .layout-slider .block-footer {
      position: static;
      margin: 0 auto;
      display: block;
      max-width: 63.75rem;
      width: 63.75rem; }
    #page-hero .layout-slider .block-slider {
      background-position: center; }
  .reveal-modal {
    padding: 1.875rem; }
  .off-canvas-wrap {
    overflow: visible; }
    .off-canvas-wrap .left-off-canvas-menu .nav-top > i,
    .off-canvas-wrap .left-off-canvas-menu .nav-section > i {
      display: inline-block;
      margin-bottom: -2px;
      line-height: 1;
      vertical-align: sub; }
  .submenu-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 700; }
    .fourth-level .submenu-wrapper {
      position: static;
      left: auto;
      right: auto; }
  .megamenu-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 702; }
  #tools-navigation {
    display: none; }
  #global-navigation {
    background-color: #ffffff;
    display: static;
    -ms-transform: none;
        transform: none;
    z-index: 150;
    overflow: visible;
    position: relative;
    height: auto;
    padding-bottom: 5.75rem;
    /**
	 * foundation grid-row styles except max-width
	 */
    width: 100%;
    margin: 0 auto;
    /**
	 * Treat all submenus as horizontal lists
	 */
    /**
	 * First level is always open
	 */
    /**
	 * Second Level
	 */ }
    #global-navigation a {
      border: none;
      text-indent: 0;
      transition: none; }
    #global-navigation .site-branding a:hover {
      background: none; }
    #global-navigation .submenu {
      list-style: none;
      margin-top: 0;
      margin-bottom: 1.0625rem;
      margin-left: -1.375rem;
      margin-right: 0;
      overflow: hidden;
      padding: 0;
      /**
		 * Hide toggles and nested lists by default
		 */
      /**
		 * Add border to first-level items on desktop
		 */
      /**
		 * Active and hover overrides for Support and Tools nav items
		 */ }
      #global-navigation .submenu > li {
        display: block;
        float: left;
        list-style: none;
        margin-left: 1.375rem; }
        #global-navigation .submenu > li > * {
          display: block; }
      #global-navigation .submenu, #global-navigation .submenu > li {
        margin-left: 0; }
      #global-navigation .submenu > .has-submenu > .submenu-wrapper > .submenu,
      #global-navigation .submenu > .has-submenu [data-submenu-toggle] {
        display: none; }
      #global-navigation .submenu > .has-submenu.open > .submenu-wrapper > .submenu {
        display: block; }
      #global-navigation .submenu > .has-submenu > a:first-child:before {
        display: none; }
      #global-navigation .submenu .has-submenu .nav-top {
        width: auto; }
      #global-navigation .submenu .has-submenu > a.nav-top, #global-navigation .submenu .top-icon > a.nav-top {
        border-left: 1px solid rgba(255, 255, 255, 0.1); }
      #global-navigation .submenu .has-submenu.open > a.nav-top {
        border-left: 1px solid #ffffff; }
      #global-navigation .submenu .has-megamenu > a.nav-top,
      #global-navigation .submenu .has-megamenu > a.nav-top.current,
      #global-navigation .submenu .has-megamenu.open > a.nav-top,
      #global-navigation .submenu .has-megamenu.open > a.nav-top.current {
        border-color: #1d1d1b; }
        #global-navigation .submenu .has-megamenu > a.nav-top:hover,
        #global-navigation .submenu .has-megamenu > a.nav-top.current:hover,
        #global-navigation .submenu .has-megamenu.open > a.nav-top:hover,
        #global-navigation .submenu .has-megamenu.open > a.nav-top.current:hover {
          background-color: #1d1d1b;
          color: #ffffff; }
      #global-navigation .submenu .has-megamenu.megamenu-open > a.nav-top {
        background-color: #1d1d1b;
        color: #ffffff; }
        #global-navigation .submenu .has-megamenu.megamenu-open > a.nav-top:hover {
          background-color: #1d1d1b;
          color: #ffffff; }
    #global-navigation .off-canvas-list.first-level {
      display: block;
      min-height: 2.75rem;
      overflow: visible;
      position: static;
      margin: 0 auto;
      max-width: 1200px;
      width: 100%;
      /* li */
      /**
		 * Second level is larger, only visible when one is .open
		 */ }
      #global-navigation .off-canvas-list.first-level:before, #global-navigation .off-canvas-list.first-level:after {
        content: " ";
        display: table; }
      #global-navigation .off-canvas-list.first-level:after {
        clear: both; }
      #global-navigation .off-canvas-list.first-level > li {
        position: static;
        overflow: visible;
        width: auto; }
        #global-navigation .off-canvas-list.first-level > li > a {
          font-size: 0.9375rem;
          padding-right: 1rem;
          padding-left: 1rem;
          min-height: 1.25rem; }
      #global-navigation .off-canvas-list.first-level .site-branding {
        position: absolute;
        padding-left: 1rem;
        top: 100%;
        z-index: 701;
        width: 20%;
        max-width: 16rem;
        border: none;
        height: 5.75rem;
        /**
		 * Scalable logo wrapper
		 * 1. Center vertically
		 * 2. Padding determines aspect ratio
		 */ }
        #global-navigation .off-canvas-list.first-level .site-branding .svg-wrap {
          top: 50%;
          -ms-transform: translateY(-50%);
              transform: translateY(-50%);
          padding-top: 33.33%; }
      #global-navigation .off-canvas-list.first-level > .has-submenu {
        border-bottom: none; }
      #global-navigation .off-canvas-list.first-level li.user-login {
        position: absolute;
        top: 100%;
        border: none;
        width: 100%;
        max-width: 1200px;
        z-index: 701; }
        #global-navigation .off-canvas-list.first-level li.user-login .user-login-wrapper {
          position: absolute;
          right: 0;
          width: 10rem;
          height: 5.75rem;
          text-align: center;
          font-size: 0.875rem; }
          #global-navigation .off-canvas-list.first-level li.user-login .user-login-wrapper > a {
            position: relative;
            top: 50%;
            -ms-transform: translateY(-50%);
                transform: translateY(-50%);
            padding: 0; }
            #global-navigation .off-canvas-list.first-level li.user-login .user-login-wrapper > a:hover {
              color: #d3007e;
              background: transparent; }
              #global-navigation .off-canvas-list.first-level li.user-login .user-login-wrapper > a:hover .user-profile-frame {
                background: rgba(211, 0, 126, 0.1); }
                #global-navigation .off-canvas-list.first-level li.user-login .user-login-wrapper > a:hover .user-profile-frame i {
                  color: #d3007e; }
              #global-navigation .off-canvas-list.first-level li.user-login .user-login-wrapper > a:hover .link-nav {
                color: #d3007e; }
          #global-navigation .off-canvas-list.first-level li.user-login .user-login-wrapper .link-nav {
            color: #1d1d1b;
            padding: 0;
            text-align: center; }
          #global-navigation .off-canvas-list.first-level li.user-login .user-login-wrapper .user-profile-frame {
            background: #f0f0f0;
            border-radius: 50%;
            width: 100%;
            margin: 0px auto 0.2rem;
            height: 2rem;
            width: 2rem;
            display: block;
            position: relative;
            font-size: 1.75rem;
            overflow: hidden; }
            #global-navigation .off-canvas-list.first-level li.user-login .user-login-wrapper .user-profile-frame i {
              position: absolute;
              left: 0;
              color: #1d1d1b;
              width: 100%; }
      #global-navigation .off-canvas-list.first-level li.has-megamenu {
        z-index: 900; }
        #global-navigation .off-canvas-list.first-level li.has-megamenu .megamenu-wrapper {
          display: none; }
        #global-navigation .off-canvas-list.first-level li.has-megamenu.megamenu-open > .megamenu-wrapper {
          display: block; }
        #global-navigation .off-canvas-list.first-level li.has-megamenu .megamenu {
          display: block;
          width: 100%;
          min-height: 20rem;
          max-width: 1200px;
          margin: auto;
          padding: 4rem;
          margin-bottom: 0; }
          #global-navigation .off-canvas-list.first-level li.has-megamenu .megamenu .has-menu-content {
            padding-left: 2rem;
            padding-right: 2rem;
            color: white; }
            #global-navigation .off-canvas-list.first-level li.has-megamenu .megamenu .has-menu-content a {
              padding: initial;
              text-decoration: underline;
              display: inline; }
              #global-navigation .off-canvas-list.first-level li.has-megamenu .megamenu .has-menu-content a:link, #global-navigation .off-canvas-list.first-level li.has-megamenu .megamenu .has-menu-content a:visited {
                color: rgba(255, 255, 255, 0.9);
                background-color: transparent; }
              #global-navigation .off-canvas-list.first-level li.has-megamenu .megamenu .has-menu-content a:focus, #global-navigation .off-canvas-list.first-level li.has-megamenu .megamenu .has-menu-content a:hover, #global-navigation .off-canvas-list.first-level li.has-megamenu .megamenu .has-menu-content a:active {
                color: #ffffff;
                background-color: #525251; }
              #global-navigation .off-canvas-list.first-level li.has-megamenu .megamenu .has-menu-content a:hover {
                background: none; }
            #global-navigation .off-canvas-list.first-level li.has-megamenu .megamenu .has-menu-content h1, #global-navigation .off-canvas-list.first-level li.has-megamenu .megamenu .has-menu-content h2, #global-navigation .off-canvas-list.first-level li.has-megamenu .megamenu .has-menu-content h3, #global-navigation .off-canvas-list.first-level li.has-megamenu .megamenu .has-menu-content h4, #global-navigation .off-canvas-list.first-level li.has-megamenu .megamenu .has-menu-content h5 {
              color: #ffffff; }
          #global-navigation .off-canvas-list.first-level li.has-megamenu .megamenu > .has-accordian [data-submenu-toggle] {
            display: block !important;
            line-height: 2; }
          #global-navigation .off-canvas-list.first-level li.has-megamenu .megamenu > .has-accordian .submenu li {
            width: 100%; }
          #global-navigation .off-canvas-list.first-level li.has-megamenu .megamenu ul {
            list-style: none;
            margin: 0; }
          #global-navigation .off-canvas-list.first-level li.has-megamenu .megamenu .nav-mega-sub {
            padding-left: 2.3125rem; }
          #global-navigation .off-canvas-list.first-level li.has-megamenu .megamenu .submenu-category-title {
            margin: 0;
            padding-left: 0;
            text-indent: 0.7rem; }
      #global-navigation .off-canvas-list.first-level .second-level {
        position: static;
        width: 100%;
        max-width: 1200px;
        height: 5.75rem;
        box-sizing: border-box;
        overflow: visible;
        margin: auto;
        margin-bottom: 0;
        padding-left: 22%; }
        #global-navigation .off-canvas-list.first-level .second-level > li {
          position: static;
          width: auto; }
          #global-navigation .off-canvas-list.first-level .second-level > li > a {
            font-size: 0.9375rem;
            color: #1d1d1b;
            padding: 2.2em 1.25em 2.3em 1.25em;
            text-indent: 0; }
            #global-navigation .off-canvas-list.first-level .second-level > li > a [class^="icon-"],
            #global-navigation .off-canvas-list.first-level .second-level > li > a [class*=" icon-"] {
              line-height: 1;
              display: none; }
            #global-navigation .off-canvas-list.first-level .second-level > li > a:hover {
              color: #d3007e;
              background: transparent; }
            #global-navigation .off-canvas-list.first-level .second-level > li > a:visited {
              background: transparent; }
        #global-navigation .off-canvas-list.first-level .second-level > .has-submenu {
          border-bottom: none; }
    #global-navigation .second-level .megamenu-open > a:first-child {
      position: relative; }
      #global-navigation .second-level .megamenu-open > a:first-child:before {
        content: '';
        display: block;
        opacity: 1;
        z-index: inherit;
        position: absolute;
        bottom: 0;
        left: 50%;
        padding: 0;
        margin-left: -2.5rem;
        margin-top: 0;
        background: transparent;
        border: 0 solid #525251;
        border-left: 2.5rem solid transparent;
        border-right: 2.5rem solid transparent;
        border-bottom-width: 2rem; }
  @keyframes megamenu-fade {
    from {
      opacity: 0; }
    to {
      opacity: 1; } }
  /**
 * Icons which appear in top level nav
 */
  a.nav-top {
    display: inline-block;
    vertical-align: bottom; }
    a.nav-top > i {
      font-size: 1.3rem;
      display: inline-block;
      margin-right: 0.5rem;
      vertical-align: middle;
      line-height: 1; }
      a.nav-top > i.icon-search {
        margin-right: 0; }
  /**
 * Navigation theming
 */
  /**
 * Top nav tier
 */
  .navigation-wrapper {
    position: relative;
    cursor: auto;
    background-color: #525251;
    /*a*/ }
    .navigation-wrapper .nav-top:link, .navigation-wrapper .nav-top:visited {
      color: rgba(255, 255, 255, 0.9);
      background-color: transparent; }
    .navigation-wrapper .nav-top:focus, .navigation-wrapper .nav-top:hover, .navigation-wrapper .nav-top:active {
      color: #ffffff;
      background-color: #525251; }
    .navigation-wrapper .nav-top.current {
      background-color: #ffffff;
      color: #1d1d1b; }
  /**
 * Section (second level) tier
 */
  .section-nav-wrapper {
    background-color: #ffffff; }
    .section-nav-wrapper .nav-section:link, .section-nav-wrapper .nav-section:visited {
      color: #002c50;
      background-color: #f0f0f0; }
    .section-nav-wrapper .nav-section:focus, .section-nav-wrapper .nav-section:hover, .section-nav-wrapper .nav-section:active {
      color: #002c50;
      background-color: #ffffff; }
    .section-nav-wrapper .nav-section, .section-nav-wrapper .nav-section:link, .section-nav-wrapper .nav-section:active {
      background-color: transparent; }
  /**
 * Mega menu tier
 */
  .megamenu-wrapper {
    /**
	 * Megamenus dropped from top/first tier of nav
	 * Overrides above as themed differently
	 */ }
    .megamenu-wrapper .nav-mega:link, .megamenu-wrapper .nav-mega:visited {
      color: rgba(255, 255, 255, 0.9);
      background-color: transparent; }
    .megamenu-wrapper .nav-mega:focus, .megamenu-wrapper .nav-mega:hover, .megamenu-wrapper .nav-mega:active {
      color: #ffffff;
      background-color: #525251; }
    .megamenu-wrapper .nav-toggle-mega {
      /**
	 * @todo make these all <button>s - remove pseudo selectors intended for <a>
	 * @note :link,:visited do not affect <a> without href
	 */ }
      .megamenu-wrapper .nav-toggle-mega, .megamenu-wrapper .nav-toggle-mega:link, .megamenu-wrapper .nav-toggle-mega:visited {
        color: #ffffff;
        background-color: #5f5f5e; }
      .megamenu-wrapper .nav-toggle-mega:focus, .megamenu-wrapper .nav-toggle-mega:hover, .megamenu-wrapper .nav-toggle-mega:active {
        color: #ffffff;
        background-color: #6c6c6a; }
    .megamenu-wrapper .nav-mega-sub:link, .megamenu-wrapper .nav-mega-sub:visited {
      color: rgba(255, 255, 255, 0.9);
      background-color: transparent; }
    .megamenu-wrapper .nav-mega-sub:focus, .megamenu-wrapper .nav-mega-sub:hover, .megamenu-wrapper .nav-mega-sub:active {
      color: #ffffff;
      background-color: #525251; }
    .megamenu-wrapper .fourth-level > .has-submenu {
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      padding-bottom: 2px; }
      .megamenu-wrapper .fourth-level > .has-submenu .nav-mega,
      .megamenu-wrapper .fourth-level > .has-submenu .nav-toggle-mega {
        /*background-color: transparent;*/ }
    .megamenu-wrapper.megamenu-top {
      background-color: #1d1d1b; }
      .megamenu-wrapper.megamenu-top .link-label {
        color: #ffffff; }
      .megamenu-wrapper.megamenu-top i {
        color: #d3007e; }
      .megamenu-wrapper.megamenu-top .nav-mega {
        background: none !important; }
        .megamenu-wrapper.megamenu-top .nav-mega:link, .megamenu-wrapper.megamenu-top .nav-mega:visited {
          color: rgba(255, 255, 255, 0.9);
          background-color: #1d1d1b; }
        .megamenu-wrapper.megamenu-top .nav-mega:focus, .megamenu-wrapper.megamenu-top .nav-mega:hover, .megamenu-wrapper.megamenu-top .nav-mega:active {
          color: #ffffff;
          background-color: #1d1d1b; }
      .megamenu-wrapper.megamenu-top .nav-mega-sub:link, .megamenu-wrapper.megamenu-top .nav-mega-sub:visited {
        color: rgba(255, 255, 255, 0.9);
        background-color: #1d1d1b; }
      .megamenu-wrapper.megamenu-top .nav-mega-sub:focus, .megamenu-wrapper.megamenu-top .nav-mega-sub:hover, .megamenu-wrapper.megamenu-top .nav-mega-sub:active {
        color: #ffffff;
        background-color: #1d1d1b; }
      .megamenu-wrapper.megamenu-top .nav-toggle-mega {
        /**
	 * @todo make these all <button>s - remove pseudo selectors intended for <a>
	 * @note :link,:visited do not affect <a> without href
	 */ }
        .megamenu-wrapper.megamenu-top .nav-toggle-mega, .megamenu-wrapper.megamenu-top .nav-toggle-mega:link, .megamenu-wrapper.megamenu-top .nav-toggle-mega:visited {
          color: #ffffff;
          background-color: #1d1d1b; }
        .megamenu-wrapper.megamenu-top .nav-toggle-mega:focus, .megamenu-wrapper.megamenu-top .nav-toggle-mega:hover, .megamenu-wrapper.megamenu-top .nav-toggle-mega:active {
          color: #ffffff;
          background-color: #1d1d1b; }
  ul.off-canvas-list .megamenu-wrapper li a.nav-mega:focus,
  ul.off-canvas-list .megamenu-wrapper li a.nav-mega:hover,
  ul.off-canvas-list .megamenu-wrapper li a.nav-mega-sub:hover,
  ul.off-canvas-list .megamenu-wrapper li a.nav-mega-sub:hover {
    color: #ffffff;
    background: transparent;
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.75); }
  #site-header.site-header.StickyRevealed.js-sticky .first-level {
    /* img */
    /* img */ }
    #site-header.site-header.StickyRevealed.js-sticky .first-level .site-branding {
      height: 3.5rem;
      width: auto;
      /**
		 * Small logo has different aspect ratio
		 */ }
      #site-header.site-header.StickyRevealed.js-sticky .first-level .site-branding .svg-wrap {
        padding-top: 26.15%;
        width: 8.125rem; }
    #site-header.site-header.StickyRevealed.js-sticky .first-level .big {
      display: none; }
    #site-header.site-header.StickyRevealed.js-sticky .first-level .small {
      display: block; }
    #site-header.site-header.StickyRevealed.js-sticky .first-level .user-login > a {
      width: auto;
      height: auto;
      border-radius: 5rem;
      margin: 0;
      padding: 0.3rem 0.5rem;
      background: #d3007e;
      color: #ffffff; }
      #site-header.site-header.StickyRevealed.js-sticky .first-level .user-login > a [class^="icon-"],
      #site-header.site-header.StickyRevealed.js-sticky .first-level .user-login > a [class*=" icon-"] {
        line-height: 1;
        color: inherit;
        display: inline-block;
        width: auto;
        line-height: 1; }
    #site-header.site-header.StickyRevealed.js-sticky .first-level .user-login-wrapper {
      height: 3.5rem;
      width: 10rem;
      text-align: left; }
      #site-header.site-header.StickyRevealed.js-sticky .first-level .user-login-wrapper .link-nav, #site-header.site-header.StickyRevealed.js-sticky .first-level .user-login-wrapper .user-profile-frame {
        display: inline-block;
        vertical-align: middle;
        text-align: center;
        line-height: 1.5rem; }
      #site-header.site-header.StickyRevealed.js-sticky .first-level .user-login-wrapper .user-profile-frame {
        height: 2rem;
        width: 2rem;
        font-size: 1.5rem;
        margin-right: 5px; }
        #site-header.site-header.StickyRevealed.js-sticky .first-level .user-login-wrapper .user-profile-frame i {
          bottom: -0.2rem; }
    #site-header.site-header.StickyRevealed.js-sticky .first-level .site-branding {
      display: none; }
  #site-header.site-header.StickyRevealed.js-sticky .second-level .has-megamenu.megamenu-open > a:first-child:before {
    margin-left: -1.25rem;
    border-left: 1.25rem solid transparent;
    border-right: 1.25rem solid transparent;
    border-bottom-width: 1rem; }
  #site-header.site-header.StickyRevealed.js-sticky .second-level > .has-submenu > a,
  #site-header.site-header.StickyRevealed.js-sticky .second-level > li > a {
    padding: 1rem 1.125rem; }
  #site-header.site-header.StickyRevealed.js-sticky .megamenu {
    top: inherit; }
  #site-header.site-header.StickyRevealed.js-sticky .submenu-wrapper > .submenu.second-level {
    max-height: 3.4375rem; }
  #site-header.site-header.StickyRevealed.js-sticky .left-off-canvas-menu {
    padding-bottom: 3.5rem;
    border-bottom: 1px solid #e9e9e9; }
  /**
 * When the site header is also visible
 */
  #site-header.StickyRevealed.js-sticky.js-active ~ .main-section #page-header .Sticky.js-active {
    -ms-transform: translateY(6.375rem);
        transform: translateY(6.375rem); }
  #page-hero .layout:not(.enforced-ratio) {
    min-height: 400px; }
  .site-map > .has-sub-list > .sub-list > .heading > .sub-list {
    display: inline-block;
    float: left;
    width: 50%; }
  .site-map > .has-sub-list > .sub-list > .has-sub-list {
    display: inline-block;
    float: left;
    width: 50%; }
    .site-map > .has-sub-list > .sub-list > .has-sub-list:nth-child(2n+1) {
      clear: left; }
  .content-block.block-search-form .search-form {
    margin-left: -0.9375rem;
    margin-right: -0.9375rem; }
    .content-block.block-search-form .search-form .goto-search {
      display: none; }
    .content-block.block-search-form .search-form input[type=search] {
      height: 6.875rem; }
  .search-form .goto-search {
    display: none; }
  .search-form input[type=search] {
    font-size: 2.625rem;
    height: 7rem;
    padding-right: 9.375rem; }
  .search-form input[type=submit] {
    right: 1.875rem; }
  .search-form button {
    font-size: 1.875rem;
    border: 2px solid #ffffff;
    background-color: transparent;
    width: 4rem;
    height: 4rem;
    right: 1.875rem; }
  .search-form button[type=reset] {
    border-color: transparent;
    right: 6.34375rem; }
  #header_site_search .search-fields input[type=search] {
    display: block;
    height: 7rem; }
  #header_site_search .search-fields .show-for-medium-down {
    display: none; }
  #header_site_search .search-fields > .row {
    margin-top: -7rem;
    transform: translate3d(0, 0, 0);
    transition: margin-top 0.15s cubic-bezier(0.455, 0.03, 0.515, 0.955); }
    #header_site_search .search-fields > .row input[type=search],
    #header_site_search .search-fields > .row button[type=submit] {
      display: inherit; }
  .search-form-open #header_site_search .search-fields > .row {
    margin-top: 0; }
  .search-form-open #header_site_search #search_toggle {
    background: #d3007e;
    color: #ffffff; }
  #header_site_search #search_toggle:active {
    background: #d3007e; }
    #header_site_search #search_toggle:active i {
      color: #ffffff; } }

/**
 * Organisms
 * - xlarge up
 */
@media only screen and (min-width: 75.063em) {
  .block-rate-comparison .rate .rate-value {
    font-size: 4.5rem;
    font-weight: light; }
  .block-rate-comparison .rate .rate-prefix {
    display: inline-block;
    font-size: 4.5rem;
    font-weight: light; }
  .block-rate-comparison .rate .rate-suffix {
    display: inline-block;
    font-size: 4.5rem;
    font-weight: light; }
  #global-navigation {
    padding-bottom: 8rem; }
    #global-navigation .off-canvas-list.first-level .site-branding {
      height: 8rem; }
    #global-navigation .off-canvas-list.first-level .second-level {
      height: 8rem;
      padding-left: 18rem; }
      #global-navigation .off-canvas-list.first-level .second-level > li > a {
        font-family: FSMeWeb-Regular;
        font-size: 1.375rem;
        padding: 3.2rem 1.25rem 2.6rem 1.25rem; }
    #global-navigation .off-canvas-list.first-level li.user-login .user-login-wrapper {
      height: 8rem; }
      #global-navigation .off-canvas-list.first-level li.user-login .user-login-wrapper .user-profile-frame {
        margin: 0px auto 0;
        height: 4rem;
        width: 4rem;
        font-size: 3.5rem; }
  #ic-calculator {
    width: 630px;
    display: block;
    margin: 0 auto; }
  #site-header.StickyRevealed.js-sticky .second-level {
    height: 3.5rem; }
    #site-header.StickyRevealed.js-sticky .second-level > li > a {
      font-family: FSMeWeb-Regular;
      font-size: 0.9375rem; }
  .layout {
    width: 1200px; }
  #page-hero .layout-slider .slick-prev {
    left: 50%;
    -ms-transform: translateX(-600px);
        transform: translateX(-600px); }
  #page-hero .layout-slider .slick-next {
    right: 50%;
    -ms-transform: translateX(600px);
        transform: translateX(600px); } }

/**
 * Organisms
 * - print
 */
@media print {
  #print-header {
    margin-bottom: 1em; } }

/**
	Construct
	Version: 0.0.1

	The construct is the base dependency for all core files and modules.
	Contains:
		-- Toolkit
		-- Assets
		-- Settings (including Foundation settings)
*/
/**
 * # Text Sizes
 *
 * Use with mixins:
 *  construct/toolkit/mixins/type#text-style
 *  construct/toolkit/mixins/type#text-size
 *  construct/toolkit/mixins/type#text-weight
 */
/**
 * Small Up Text Sizes
 * @type {Map}
 */
/**
 * Medium Up Text Sizes
 * @type {Map}
 */
/**
 * Large Up Text Sizes
 * @type {Map}
 */
/**
 * Export Global Text Sizes
 * @type {Map}
 */
/**
 * Text Styles
 */
/**
 * Small Up Styles
 * @type {Map}
 */
/**
 * Small Up Styles
 * @type {Map}
 */
/**
 * Small Up Styles
 * @type {Map}
 */
/**
 * Export Global Text Style Collection
 * @type {Map}
 */
/* Prevent Foundation from create css */
/**
	Assets

	Reference all Global assets here.
*/
/**
	Assets

	Reference all Global assets here.
*/
/**
 * Project Themes
 *
 * A colour theme is composed of several maps available as
 * variables:
 *
 * 1. As a key in the master `$theme` variable:
 *
 *    $themes: (
 *      THEME_NAME: $THEME_VARIABLE
 *    );
 *
 * 2. As a variable for each component in the theme:
 *
 *    $theme-links-THEMENAME
 *    $theme-blocks-THEMENAME
 *    $theme-datestamps-THEMENAME
 *    $theme-tables-THEMENAME
 *    etc
 *
 * 3. Each themes component is referred to in a master Map
 *  ie, all theme maps for blocks are collated into :
 *
 *    `$theme-blocks`
 *
 * 4. For each new theme component map that is created every
 *    other theme *must* define it.
 *
 */
/**
 * Import separate theme files first
 */
/**
 * Define themes for links as mappable items
 * @type {Map}
 */
/**
 * Define themes for buttons as mappable items
 * @type {Map}
 */
/**
 * Icons
 */
/**
 * Blocks
 */
/* Datestamp */
/* Tables */
/* Navigations */
/* Navigations */
/**
 * Themes
 */
/**
 * Font Assets
 *
 * - reference all fonts here first.
 */
/**
 * Icons used as images
 */
/**
 *
 * Embeded Image Icons
 *
 * Any datauri icons embeded in the
 * stylesheets need to be declared here as
 * variables
 */
@font-face {
  font-family: 'icons';
  src: url("/Static/Theme/fonts/icons--202392383007b5b23c94c26795437bc7.eot");
  src: url("/Static/Theme/fonts/icons--202392383007b5b23c94c26795437bc7.eot?#iefix") format("eot"), url("/Static/Theme/fonts/icons--a38c330a3a09bcb56bdf71d7625f610b.woff") format("woff"), url("/Static/Theme/fonts/icons--fd818761a7753efe32436acc4400dd5a.ttf") format("truetype"); }

/**
 *
 */
/**
 *  Timing Functions
 */
/**
 * Loading Spinner
 * !default means use these values if this variable is empty.
 */
/**
 * Vendor
 */
body {
  /* Addresses a small issue in webkit: http://bit.ly/NEdoDq */
  -webkit-backface-visibility: hidden; }

.animated {
  animation-duration: 1s;
  animation-fill-mode: both; }

/**
 * a tag with various event states.
 * @param  {String} $theme name of the colour theme as
 *                  described in construct/assets/themes(.scss)
 * @param  {String} $variant type of button variant (primary, secondary, etc)
 */
/**
 * A tag with a [href='*']:visited
 * @param {String} $theme [description]
 */
/**
 * A tag with a [href='*']:hover
 * @param  {String} $theme [description]
 */
/**
 * A tag with a [href='*']:active
 * @param  {String} $theme [description]
 */
/**
 * A tag with a [href='*']:focus
 * @param  {String} $theme [description]
 */
/**
 * A tag with a [href='*']:visited
 * @param  {String} $theme [description]
 */
/**
 * Font helper Mixins
 */
/**
 * Set the base style for a font-icon class
 * @param  {String} $font name of the font-family
 *                  and the file (sans extension)
 */
/**
 * Element covers the entire container.
 * Container requires position: relative;
 */
/**
 * Vertically center an element within the container.
 * Container requires position: relative;
 */
/**
 * a tag with various event states.
 * @param  {String} $theme name of the colour theme as
 *                  described in construct/assets/themes(.scss)
 */
/**
 * Implement a colour theme based on
 * the theme name
 * see :
 *  - construct/assets/_themes.scss
 *  - construct/assets/themes/*.tables.scss
 */
/**
 * Base table Layout
 */
/***
 * Stacked Cell Tables
 * a.k.a Mobile Tables
 * http://codepen.io/geoffyuen/pen/FCBEg
 */
/**
 * Normal Table Layout
 * (ie with column headers and columns)
 */
/**
 * [theme description]
 * @param  {[type]} $name: base          [description]
 * @return {[type]}        [description]
 * @TODO add html example
 */
/**
 * Colour Theme for Header HR
 *  Article Mountain Range SVG
 * @contentblock article
 * @param  {String} $color valid css colour
 */
/**
 * Article Colour Themer
 * @contentblock article
 * @param  {String} $name key in $block-themes
 * @TODO add html example
 */
/**
 * @TODO add html example
 */
/**
 * Block Icon Layout
 * @contentblock icon
 * @TODO add html example
 */
/**
 * [theme description]
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 * @TODO add html example
 */
/**
 * Rate Table Header Layout
 * @contentblock rate-table
 */
/**
 * Content Block Mixins
 *
 * Naming convention:
 *
 *    For content block types:
 *
 *    content-block-<THING>-layout
 *      - for base layout of THING, takes no variables
 *
 *    content-block-<THING>-theme
 *      - for themes.
 *      - takes one variable: a string that is the name of the colour theme
 *
 *    content-block-<THING>-SUBTHING-BLAH-FOO
 *      - repeatable behaviour styles
 *      - may take as many variables as required
 *
 *
 *
 * Commenting Conventions:
 *  - use docblock (jsdoc) format
 *  - all comment blocks have:
 *    - Mixin name
 *    - Mixin description
 *    - @contentblock CONTENT_BLOCK_NAME
 *    - list of @param {datatype} description
 *    - an indented html example that this mixin applies to.
 */
/**
 * Block Icon Layout
 * @contentblock icon
 * @TODO add html example
 */
/**
 * [theme description]
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 * @TODO add html example
 */
/**
 * [theme description]
 * @param  {[type]} $name: base          [description]
 * @return {[type]}        [description]
 * @TODO add html example
 */
/**
 * Content Blocks With Hero Mask
 * @contentblock any
 */
/**
 * @contentblock any
 */
/**
 * ???
 * @TODO: document this.
 * @return {[type]} [description]
 */
/**
 * [layout description]
 * @return {[type]} [description]
 * @TODO add html example
 */
/**
 * [hero description]
 * @return {[type]} [description]
 * @TODO add html example
 */
/**
 * [horizontally description]
 * @return {[type]} [description]
 * @TODO add html example
 */
/**
 * [theme description]
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 * @TODO add html example
 */
/**
 * [alignment description]
 * @param  {[type]} $alignment: center        [description]
 * @return {[type]}             [description]
 * @TODO add html example
 */
/**
 * [height description]
 * @param  {[type]} $height [description]
 * @return {[type]}         [description]
 * @TODO add html example
 */
/**
 * Position Block Footers
 * @TODO add html example
 */
/**
 * [alignment description]
 * @param  {[type]} $alignment: center        [description]
 * @return {[type]}             [description]
 * @TODO add html example
 */
/**
 * [theme description]
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 */
/**
 * Element covers the entire container.
 * Container requires position: relative;
 */
/**
 * Vertically center an element within the container.
 * Container requires position: relative;
 */
/**
 * [content description]
 * @return {[type]} [description]
 */
/**
 * Layouts
 */
/**
 * Base Layout
 * @param  {Number} `$bottom` padding for bottom edge
 */
/* mixin name derp . */
/**
 * Layout: Header
 * @return {[type]} [description]
 */
/**
 * Layout: Header Alignment
 */
/**
 * Layout: Footer Alignment
 * @param  {[type]} $alignment: center        [description]
 * @return {[type]}             [description]
 */
/**
 * Layout: Footer Layout
 * @return {[type]} [description]
 */
/**
 * Layout Theme CSS Generator
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 */
/**
 * Layout Theme
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 */
/**
 * Layout Theme: Footer
 * @param  {[type]} $textColor [description]
 * @param  {[type]} $theme     [description]
 * @return {[type]}            [description]
 */
/**
 * Layout Theme: Arrange Background
 * @return {[type]} [description]
 */
/**
 * Layout: Keep blocks Height same as Width
 */
/**
 * Layout: Remove Gaps
 * @return {[type]} [description]
 */
/**
 *
 * @param  {[type]} $breakpoint: small-up      [description]
 * @return {[type]}              [description]
 */
/**
 * removes margins on boundary row content blocks
 * @param  {[type]} $count: 1             [description]
 * @return {[type]}         [description]
 */
/**
 * adds margins on non boundary row content blocks
 * @param  {[type]} $count: 1             [description]
 * @return {[type]}         [description]
 */
/**
 * Make a layout full width
 */
/**
 * ???
 * @TODO: document this.
 * @param  {[type]} $top:    0              [description]
 * @param  {[type]} $right:  $column-gutter [description]
 * @param  {[type]} $bottom: 0              [description]
 * @param  {[type]} $left:   $column-gutter [description]
 * @return {[type]}          [description]
 */
/**
 * [theme description]
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 */
/**
 * Height of nav container
 * sum of heights of main and section nav
 */
/**
 * Height of nav container
 * Large up, sticky mode
 * sum of heights of main and section nav
 */
/**
 * Determines height of nav backdrop and logo container
 * Should equal height of contained nav <a>
 */
/**
 * [labels description]
 * @return {[type]} [description]
 */
/**
 * Login link
 */
/**
 * Logo link
 */
/**
 * Corresponds with xlargeup breakpoint
 */
/**
 * Mega Menu Mixins
 */
/**
 * Animation
 */
/**
 * Current item indicator
 *
 * draws a triangle on the bottom of the menu item
 */
/**
 * Modifies the triangle when menu is sticky
 */
/**
 * Links
 */
/**
 * Applies pseudo styles to navigation
 * Drawn from navigation themes
 */
/**
 * Pick a Theme Set, defaults to $default-theme-name if theme not found
 * @param  {String} $set    Colour theme map Set ($themes, $theme-blocks, etc)
 * @param  {String} $name   Colour theme name, a key in $set
 * @return {Map}			The colour theme map
 */
/**
 * Pick Text Style From Global Map
 * @link	styles/theme/default/construct/settings/core/_type.scss
 * @param  {String} $breakpoint key in $text-styles
 * @param  {String} $name       key in $text-styles[$breakpoint]
 * @return {Map}                map of font-size, line-height, font-weight, etc
 */
/**
 * Pick Text Font Size
 * @link	styles/theme/default/construct/settings/core/_type.scss
 * @param  {String} $set       key in $text-sizes
 * @param  {String} $size      key in $set (xxsmall, xsmall, small, normal, etc)
 * @return {Integer}
 */
/**
 * Pick Text Weight
 * @link	styles/theme/default/construct/settings/core/_type.scss
 * @param  {String} $set       key in $text-sizes
 * @param  {String} $weight      key in $set (xxsmall, xsmall, small, normal, etc)
 * @return {Integer}
 */
/**
 * SVG Tools
 * Source: http://codepen.io/jakob-e/pen/doMoML
 */
/**
 * Mixins
 */
/**
 * Pages
 * - small up
 */
html > body {
  background-color: #f0f0f0;
  padding: 0;
  margin: 0; }

#page-blocks {
  z-index: 150;
  /**
	 * We need to move the standard layout gap to the padding, because:
	 * - this is the last placeholder on the page, and
	 * - the footer has a psuedo element that is pulled out and up over the
	 *   last .layout
	 */ }
  #page-blocks .layout:last-child {
    margin-bottom: 0;
    padding-bottom: 0.9375rem; }

body.article-detail {
  /**
	 * Article Detail
	 * Topics Block
	 * @private
	 */
  /**
	 * Article Detail
	 * Header Block
	 * @private
	 */
  /**
	 * Article Detail
	 * Content & Comments Block
	 * @private
	 */ }
  body.article-detail #page-hero .layout:not(.enforced-ratio) {
    min-height: initial; }
  body.article-detail .layout.indented-horizontally .content-block.block-article-topics {
    padding-left: 0;
    padding-top: 0.9375rem; }
  body.article-detail .layout .content-block.block-article-topics {
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
    min-height: 100%;
    max-height: 100%; }
    body.article-detail .layout .content-block.block-article-topics .inline-list li {
      background: #ffffff;
      margin-bottom: 0.46875rem; }
    body.article-detail .layout .content-block.block-article-topics .news-topic {
      font-size: 0.625rem;
      font-weight: normal;
      padding: 0.23438rem 0.46875rem; }
  body.article-detail .layout .content-block.block-article-header {
    padding-top: 3.75rem;
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 0;
    min-height: 100%;
    max-height: 100%;
    box-shadow: 0 11px 0 -10px #f0f0f0; }
    body.article-detail .layout .content-block.block-article-header .block-title {
      font-size: 2.625rem;
      font-weight: light; }
      body.article-detail .layout .content-block.block-article-header .block-title small {
        font-size: 0.875rem;
        font-weight: normal;
        display: block; }
    body.article-detail .layout .content-block.block-article-header .date-stamp {
      width: 7.5rem;
      height: 4.375rem;
      display: table;
      font-size: 0.875rem;
      font-weight: normal;
      position: absolute;
      top: 0;
      right: 0;
      bottom: initial;
      left: initial; }
      body.article-detail .layout .content-block.block-article-header .date-stamp:before {
        display: none; }
      body.article-detail .layout .content-block.block-article-header .date-stamp .date {
        color: inherit;
        position: relative;
        /* to accept z-index */
        display: table-cell;
        vertical-align: middle;
        text-align: center;
        z-index: 201; }
      body.article-detail .layout .content-block.block-article-header .date-stamp svg {
        z-index: 200; }
      body.article-detail .layout .content-block.block-article-header .date-stamp svg {
        position: absolute;
        top: 0;
        -ms-transform: scaleY(-1);
            transform: scaleY(-1); }
      body.article-detail .layout .content-block.block-article-header .date-stamp .date {
        top: -0.4rem; }
  body.article-detail .layout .content-block.block-article-comments, body.article-detail .layout .content-block.block-article-detail {
    margin-top: 0;
    margin-bottom: 0; }
    body.article-detail .layout .content-block.block-article-comments a, body.article-detail .layout .content-block.block-article-detail a {
      text-decoration: underline;
      font-weight: 700; }

body.page-search .block-search-filter .accordion-navigation > a {
  background: #e9e9e9;
  color: #000;
  padding-left: 0.9375rem; }

body.page-search .block-links-grouped .block-header .block-title {
  display: block;
  font-size: 1.5rem;
  color: #525251; }

body.page-search .block-links-grouped .linked-list > li {
  padding: 0.9375rem;
  border-bottom: 1px solid #e9e9e9; }
  body.page-search .block-links-grouped .linked-list > li h4 a:link {
    text-decoration: none; }
  body.page-search .block-links-grouped .linked-list > li h4 a:focus, body.page-search .block-links-grouped .linked-list > li h4 a:hover {
    text-decoration: underline; }
  body.page-search .block-links-grouped .linked-list > li, body.page-search .block-links-grouped .linked-list > li:hover,
  body.page-search .block-links-grouped .linked-list > li:hover a {
    background: #fff; }
    body.page-search .block-links-grouped .linked-list > li:after, body.page-search .block-links-grouped .linked-list > li:hover:after,
    body.page-search .block-links-grouped .linked-list > li:hover a:after {
      display: none; }
  body.page-search .block-links-grouped .linked-list > li a:hover {
    color: #d3007e; }

body.page-rates-detail .rates-effective-date {
  margin-bottom: 0;
  text-align: right; }
  body.page-rates-detail .rates-effective-date .content-block {
    padding-top: 0;
    padding-bottom: 0; }
    body.page-rates-detail .rates-effective-date .content-block p {
      margin-bottom: 0.5rem; }

.layout-faq-title {
  margin-bottom: 0; }
  .layout-faq-title .content-block .block-title {
    margin-bottom: 0; }

.rates-column.links-group-title .row .columns:first-child {
  text-align: right; }

.rates-column .row .columns {
  text-align: left; }
  .rates-column .row .columns:first-child {
    text-align: left; }

/**
 * Pages
 * - small up
 */
/**
 * Pages
 * - small only
 */
/**
 * Pages
 * - medium up
 */
@media only screen and (min-width: 30.063em) {
  body.article-detail {
    /**
	 * Article Detail
	 * Topics Block
	 * @private
	 */
    /**
	 * Article Detail
	 * Header Block
	 * @private
	 */ }
    body.article-detail .layout .content-block.block-article-topics .news-topic {
      font-size: 0.625rem;
      font-weight: normal;
      padding: 0.46875rem 1.875rem; }
    body.article-detail .layout .content-block.block-article-header {
      padding-top: 1.875rem; }
  .rates-column .row .columns {
    text-align: center; }
    .rates-column .row .columns:first-child {
      text-align: left; }
  body.page-rates-detail .layout.padded {
    padding: 2rem; }
  #page-blocks .layout:last-child {
    padding-bottom: 3.75rem; }
  body.page-search .block-search-filter .accordion .accordion-navigation > a:before {
    display: none; }
  body.page-search .block-search-filter .accordion .accordion-navigation > .content,
  body.page-search .block-search-filter .accordion .accordion-navigation dd > .content {
    display: block; } }

/**
 * Pages
 * - large up
 */
@media only screen and (min-width: 55.063em) {
  body.page-search .block-search-filter {
    margin: 0; }
    body.page-search .block-search-filter .accordion-navigation > a {
      background: transparent;
      color: #000;
      padding-left: 0.9375rem; }
  body.page-search .block-search-form {
    margin-left: 0;
    margin-right: 0; }
  body.page-search .block-links-grouped .block-header .block-title {
    display: block; }
  body.page-search .block-links-grouped .linked-list > li {
    padding: 0.5rem 0 3rem 0; }
  body.page-rates-detail #page-generated-content .layout-2-col {
    /**
		 * All Products & Primary Product
		 */
    /**
		 *  Primary Products Only
		 */
    /**
		 *  Product Variant Table
		 *  - hides product name headercell (first cell in header row)
		 *  - hides product name column (first cell in each row)
		 *  - shows discount column
		 */ }
    body.page-rates-detail #page-generated-content .layout-2-col .content-block.block-rate-table {
      margin-bottom: 0;
      padding-bottom: 0; }
      body.page-rates-detail #page-generated-content .layout-2-col .content-block.block-rate-table table {
        margin-bottom: 0; }
      body.page-rates-detail #page-generated-content .layout-2-col .content-block.block-rate-table thead th,
      body.page-rates-detail #page-generated-content .layout-2-col .content-block.block-rate-table tbody td {
        width: auto; }
      body.page-rates-detail #page-generated-content .layout-2-col .content-block.block-rate-table thead th {
        padding-top: 0;
        padding-bottom: 1.875rem; }
      body.page-rates-detail #page-generated-content .layout-2-col .content-block.block-rate-table .show-for-variant-only {
        display: table-cell; }
      body.page-rates-detail #page-generated-content .layout-2-col .content-block.block-rate-table .show-for-primary-only {
        display: none; }
      body.page-rates-detail #page-generated-content .layout-2-col .content-block.block-rate-table.is-primary-product tr th:first-child,
      body.page-rates-detail #page-generated-content .layout-2-col .content-block.block-rate-table.is-primary-product tr td:first-child {
        width: 60%; }
      body.page-rates-detail #page-generated-content .layout-2-col .content-block.block-rate-table.is-primary-product .show-for-primary-only {
        display: table-cell; }
      body.page-rates-detail #page-generated-content .layout-2-col .content-block.block-rate-table.is-primary-product .show-for-variant-only {
        display: none; }
    body.page-rates-detail #page-generated-content .layout-2-col .layout-cell:nth-child(odd) {
      clear: left;
      width: 60% !important; }
    body.page-rates-detail #page-generated-content .layout-2-col .layout-cell:nth-child(even) {
      width: 40% !important; } }

/**
	Construct
	Version: 0.0.1

	The construct is the base dependency for all core files and modules.
	Contains:
		-- Toolkit
		-- Assets
		-- Settings (including Foundation settings)
*/
/**
 * # Text Sizes
 *
 * Use with mixins:
 *  construct/toolkit/mixins/type#text-style
 *  construct/toolkit/mixins/type#text-size
 *  construct/toolkit/mixins/type#text-weight
 */
/**
 * Small Up Text Sizes
 * @type {Map}
 */
/**
 * Medium Up Text Sizes
 * @type {Map}
 */
/**
 * Large Up Text Sizes
 * @type {Map}
 */
/**
 * Export Global Text Sizes
 * @type {Map}
 */
/**
 * Text Styles
 */
/**
 * Small Up Styles
 * @type {Map}
 */
/**
 * Small Up Styles
 * @type {Map}
 */
/**
 * Small Up Styles
 * @type {Map}
 */
/**
 * Export Global Text Style Collection
 * @type {Map}
 */
/* Prevent Foundation from create css */
/**
	Assets

	Reference all Global assets here.
*/
/**
	Assets

	Reference all Global assets here.
*/
/**
 * Project Themes
 *
 * A colour theme is composed of several maps available as
 * variables:
 *
 * 1. As a key in the master `$theme` variable:
 *
 *    $themes: (
 *      THEME_NAME: $THEME_VARIABLE
 *    );
 *
 * 2. As a variable for each component in the theme:
 *
 *    $theme-links-THEMENAME
 *    $theme-blocks-THEMENAME
 *    $theme-datestamps-THEMENAME
 *    $theme-tables-THEMENAME
 *    etc
 *
 * 3. Each themes component is referred to in a master Map
 *  ie, all theme maps for blocks are collated into :
 *
 *    `$theme-blocks`
 *
 * 4. For each new theme component map that is created every
 *    other theme *must* define it.
 *
 */
/**
 * Import separate theme files first
 */
/**
 * Define themes for links as mappable items
 * @type {Map}
 */
/**
 * Define themes for buttons as mappable items
 * @type {Map}
 */
/**
 * Icons
 */
/**
 * Blocks
 */
/* Datestamp */
/* Tables */
/* Navigations */
/* Navigations */
/**
 * Themes
 */
/**
 * Font Assets
 *
 * - reference all fonts here first.
 */
/**
 * Icons used as images
 */
/**
 *
 * Embeded Image Icons
 *
 * Any datauri icons embeded in the
 * stylesheets need to be declared here as
 * variables
 */
@font-face {
  font-family: 'icons';
  src: url("/Static/Theme/fonts/icons--202392383007b5b23c94c26795437bc7.eot");
  src: url("/Static/Theme/fonts/icons--202392383007b5b23c94c26795437bc7.eot?#iefix") format("eot"), url("/Static/Theme/fonts/icons--a38c330a3a09bcb56bdf71d7625f610b.woff") format("woff"), url("/Static/Theme/fonts/icons--fd818761a7753efe32436acc4400dd5a.ttf") format("truetype"); }

/**
 *
 */
/**
 *  Timing Functions
 */
/**
 * Loading Spinner
 * !default means use these values if this variable is empty.
 */
/**
 * Vendor
 */
body {
  /* Addresses a small issue in webkit: http://bit.ly/NEdoDq */
  -webkit-backface-visibility: hidden; }

.animated {
  animation-duration: 1s;
  animation-fill-mode: both; }

/**
 * a tag with various event states.
 * @param  {String} $theme name of the colour theme as
 *                  described in construct/assets/themes(.scss)
 * @param  {String} $variant type of button variant (primary, secondary, etc)
 */
/**
 * A tag with a [href='*']:visited
 * @param {String} $theme [description]
 */
/**
 * A tag with a [href='*']:hover
 * @param  {String} $theme [description]
 */
/**
 * A tag with a [href='*']:active
 * @param  {String} $theme [description]
 */
/**
 * A tag with a [href='*']:focus
 * @param  {String} $theme [description]
 */
/**
 * A tag with a [href='*']:visited
 * @param  {String} $theme [description]
 */
/**
 * Font helper Mixins
 */
/**
 * Set the base style for a font-icon class
 * @param  {String} $font name of the font-family
 *                  and the file (sans extension)
 */
/**
 * Element covers the entire container.
 * Container requires position: relative;
 */
/**
 * Vertically center an element within the container.
 * Container requires position: relative;
 */
/**
 * a tag with various event states.
 * @param  {String} $theme name of the colour theme as
 *                  described in construct/assets/themes(.scss)
 */
/**
 * Implement a colour theme based on
 * the theme name
 * see :
 *  - construct/assets/_themes.scss
 *  - construct/assets/themes/*.tables.scss
 */
/**
 * Base table Layout
 */
/***
 * Stacked Cell Tables
 * a.k.a Mobile Tables
 * http://codepen.io/geoffyuen/pen/FCBEg
 */
/**
 * Normal Table Layout
 * (ie with column headers and columns)
 */
/**
 * [theme description]
 * @param  {[type]} $name: base          [description]
 * @return {[type]}        [description]
 * @TODO add html example
 */
/**
 * Colour Theme for Header HR
 *  Article Mountain Range SVG
 * @contentblock article
 * @param  {String} $color valid css colour
 */
/**
 * Article Colour Themer
 * @contentblock article
 * @param  {String} $name key in $block-themes
 * @TODO add html example
 */
/**
 * @TODO add html example
 */
/**
 * Block Icon Layout
 * @contentblock icon
 * @TODO add html example
 */
/**
 * [theme description]
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 * @TODO add html example
 */
/**
 * Rate Table Header Layout
 * @contentblock rate-table
 */
/**
 * Content Block Mixins
 *
 * Naming convention:
 *
 *    For content block types:
 *
 *    content-block-<THING>-layout
 *      - for base layout of THING, takes no variables
 *
 *    content-block-<THING>-theme
 *      - for themes.
 *      - takes one variable: a string that is the name of the colour theme
 *
 *    content-block-<THING>-SUBTHING-BLAH-FOO
 *      - repeatable behaviour styles
 *      - may take as many variables as required
 *
 *
 *
 * Commenting Conventions:
 *  - use docblock (jsdoc) format
 *  - all comment blocks have:
 *    - Mixin name
 *    - Mixin description
 *    - @contentblock CONTENT_BLOCK_NAME
 *    - list of @param {datatype} description
 *    - an indented html example that this mixin applies to.
 */
/**
 * Block Icon Layout
 * @contentblock icon
 * @TODO add html example
 */
/**
 * [theme description]
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 * @TODO add html example
 */
/**
 * [theme description]
 * @param  {[type]} $name: base          [description]
 * @return {[type]}        [description]
 * @TODO add html example
 */
/**
 * Content Blocks With Hero Mask
 * @contentblock any
 */
/**
 * @contentblock any
 */
/**
 * ???
 * @TODO: document this.
 * @return {[type]} [description]
 */
/**
 * [layout description]
 * @return {[type]} [description]
 * @TODO add html example
 */
/**
 * [hero description]
 * @return {[type]} [description]
 * @TODO add html example
 */
/**
 * [horizontally description]
 * @return {[type]} [description]
 * @TODO add html example
 */
/**
 * [theme description]
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 * @TODO add html example
 */
/**
 * [alignment description]
 * @param  {[type]} $alignment: center        [description]
 * @return {[type]}             [description]
 * @TODO add html example
 */
/**
 * [height description]
 * @param  {[type]} $height [description]
 * @return {[type]}         [description]
 * @TODO add html example
 */
/**
 * Position Block Footers
 * @TODO add html example
 */
/**
 * [alignment description]
 * @param  {[type]} $alignment: center        [description]
 * @return {[type]}             [description]
 * @TODO add html example
 */
/**
 * [theme description]
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 */
/**
 * Element covers the entire container.
 * Container requires position: relative;
 */
/**
 * Vertically center an element within the container.
 * Container requires position: relative;
 */
/**
 * [content description]
 * @return {[type]} [description]
 */
/**
 * Layouts
 */
/**
 * Base Layout
 * @param  {Number} `$bottom` padding for bottom edge
 */
/* mixin name derp . */
/**
 * Layout: Header
 * @return {[type]} [description]
 */
/**
 * Layout: Header Alignment
 */
/**
 * Layout: Footer Alignment
 * @param  {[type]} $alignment: center        [description]
 * @return {[type]}             [description]
 */
/**
 * Layout: Footer Layout
 * @return {[type]} [description]
 */
/**
 * Layout Theme CSS Generator
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 */
/**
 * Layout Theme
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 */
/**
 * Layout Theme: Footer
 * @param  {[type]} $textColor [description]
 * @param  {[type]} $theme     [description]
 * @return {[type]}            [description]
 */
/**
 * Layout Theme: Arrange Background
 * @return {[type]} [description]
 */
/**
 * Layout: Keep blocks Height same as Width
 */
/**
 * Layout: Remove Gaps
 * @return {[type]} [description]
 */
/**
 *
 * @param  {[type]} $breakpoint: small-up      [description]
 * @return {[type]}              [description]
 */
/**
 * removes margins on boundary row content blocks
 * @param  {[type]} $count: 1             [description]
 * @return {[type]}         [description]
 */
/**
 * adds margins on non boundary row content blocks
 * @param  {[type]} $count: 1             [description]
 * @return {[type]}         [description]
 */
/**
 * Make a layout full width
 */
/**
 * ???
 * @TODO: document this.
 * @param  {[type]} $top:    0              [description]
 * @param  {[type]} $right:  $column-gutter [description]
 * @param  {[type]} $bottom: 0              [description]
 * @param  {[type]} $left:   $column-gutter [description]
 * @return {[type]}          [description]
 */
/**
 * [theme description]
 * @param  {[type]} $name [description]
 * @return {[type]}       [description]
 */
/**
 * Height of nav container
 * sum of heights of main and section nav
 */
/**
 * Height of nav container
 * Large up, sticky mode
 * sum of heights of main and section nav
 */
/**
 * Determines height of nav backdrop and logo container
 * Should equal height of contained nav <a>
 */
/**
 * [labels description]
 * @return {[type]} [description]
 */
/**
 * Login link
 */
/**
 * Logo link
 */
/**
 * Corresponds with xlargeup breakpoint
 */
/**
 * Mega Menu Mixins
 */
/**
 * Animation
 */
/**
 * Current item indicator
 *
 * draws a triangle on the bottom of the menu item
 */
/**
 * Modifies the triangle when menu is sticky
 */
/**
 * Links
 */
/**
 * Applies pseudo styles to navigation
 * Drawn from navigation themes
 */
/**
 * Pick a Theme Set, defaults to $default-theme-name if theme not found
 * @param  {String} $set    Colour theme map Set ($themes, $theme-blocks, etc)
 * @param  {String} $name   Colour theme name, a key in $set
 * @return {Map}			The colour theme map
 */
/**
 * Pick Text Style From Global Map
 * @link	styles/theme/default/construct/settings/core/_type.scss
 * @param  {String} $breakpoint key in $text-styles
 * @param  {String} $name       key in $text-styles[$breakpoint]
 * @return {Map}                map of font-size, line-height, font-weight, etc
 */
/**
 * Pick Text Font Size
 * @link	styles/theme/default/construct/settings/core/_type.scss
 * @param  {String} $set       key in $text-sizes
 * @param  {String} $size      key in $set (xxsmall, xsmall, small, normal, etc)
 * @return {Integer}
 */
/**
 * Pick Text Weight
 * @link	styles/theme/default/construct/settings/core/_type.scss
 * @param  {String} $set       key in $text-sizes
 * @param  {String} $weight      key in $set (xxsmall, xsmall, small, normal, etc)
 * @return {Integer}
 */
/**
 * SVG Tools
 * Source: http://codepen.io/jakob-e/pen/doMoML
 */
/**
 * Mixins
 */
/**
 * Pages
 * - small up
 */
/**
 * @name Sticky Footer
 * @description Makes the site footer stick to the botto of the page
 *              unless content pushes it past the viewport.
 */
.page-content .content-block .content-block-content {
  margin-left: 1.875rem;
  margin-right: 1.875rem; }

.layout {
  z-index: 150; }
  .layout.page-hero {
    margin-bottom: 0.46875rem; }

.page #page-header h2 {
  margin: 0; }

.page #page-header .inline-list li .button {
  color: #002c50; }
  .page #page-header .inline-list li .button:hover {
    color: #d3007e; }
  .page #page-header .inline-list li .button:visited {
    color: #002c50; }
  .page #page-header .inline-list li .button:active {
    color: #d3007e; }
  .page #page-header .inline-list li .button:focus {
    color: #d3007e; }
  .page #page-header .inline-list li .button, .page #page-header .inline-list li .button.primary {
    text-decoration: none;
    background-color: transparent;
    border-color: #002c50;
    color: #002c50; }
  .page #page-header .inline-list li .button:visited, .page #page-header .inline-list li .button.primary:visited {
    background-color: transparent;
    border-color: #002c50;
    color: #002c50; }
  .page #page-header .inline-list li .button:focus, .page #page-header .inline-list li .button.primary:focus {
    background-color: #002c50;
    border-color: #002c50;
    color: #ffffff; }
  .page #page-header .inline-list li .button:hover, .page #page-header .inline-list li .button.primary:hover {
    text-decoration: none;
    background-color: #002c50;
    border-color: #002c50;
    color: #ffffff; }
  .page #page-header .inline-list li .button.secondary {
    text-decoration: none;
    background-color: rgba(0, 44, 80, 0.2);
    border-color: transparent;
    color: #002c50; }
  .page #page-header .inline-list li .button.secondary:visited {
    background-color: rgba(0, 44, 80, 0.3);
    border-color: #002c50;
    color: #002c50; }
  .page #page-header .inline-list li .button.secondary:focus {
    background-color: #002c50;
    border-color: #002c50;
    color: #ffffff; }
  .page #page-header .inline-list li .button.secondary:hover {
    text-decoration: none;
    background-color: #002c50;
    border-color: #002c50;
    color: white; }
  .page #page-header .inline-list li .button.label-hidden {
    text-decoration: none; }
    .page #page-header .inline-list li .button.label-hidden {
      text-decoration: none;
      background-color: transparent;
      border-color: transparent;
      color: #002c50; }
    .page #page-header .inline-list li .button.label-hidden:visited {
      background-color: transparent;
      border-color: transparent;
      color: #002c50; }
    .page #page-header .inline-list li .button.label-hidden:focus {
      background-color: transparent;
      border-color: transparent;
      color: #d3007e; }
    .page #page-header .inline-list li .button.label-hidden:hover {
      text-decoration: none;
      background-color: transparent;
      border-color: transparent;
      color: #d3007e; }

.page #page-header .inline-list li .button:hover,
.page #page-header .inline-list li .button:focus {
  color: #f0f0f0; }

.page #page-content {
  font-size: 0.875rem;
  font-weight: normal; }

.off-canvas-wrap {
  min-height: 100%; }

.off-canvas-wrap--contained {
  height: 100%; }

.expanding-content {
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  -ms-flex-direction: column;
      flex-direction: column; }

.expanding-content_content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-positive: 1;
      flex-grow: 1;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: start;
      justify-content: flex-start; }

/**
 * Pages
 * - small only
@media only screen and (max-width: 30em) {
}
 */
/**
 * Pages
 * - medium up
@media only screen and (min-width:30.063em) {
}
 */
/**
 * Pages
 * - large up
 */
@media only screen and (min-width: 55.063em) {
  .off-canvas-wrap {
    height: 100%; }
  .page #page-content {
    font-size: 1.125rem;
    font-weight: normal; } }

.video-embed__aspect-container {
  position: relative;
  height: 0; }
  .video-embed__aspect-container.video-embed__aspect-container--1-1 {
    padding-top: 100%; }
  .video-embed__aspect-container.video-embed__aspect-container--2-1 {
    padding-top: 50%; }
  .video-embed__aspect-container.video-embed__aspect-container--4-3 {
    padding-top: calc((100% / 4) * 3); }
  .video-embed__aspect-container.video-embed__aspect-container--16-9 {
    padding-top: calc((100% / 16) * 9); }
  .video-embed__aspect-container.video-embed__aspect-container--16-10 {
    padding-top: calc((100% / 16) * 10); }
  .video-embed__aspect-container.video-embed__aspect-container--1-2 {
    padding-top: 200%; }
  .video-embed__aspect-container.video-embed__aspect-container--3-4 {
    padding-top: calc((100% / 3) * 4); }
  .video-embed__aspect-container.video-embed__aspect-container--9-16 {
    padding-top: calc((100% / 9) * 16); }
  .video-embed__aspect-container.video-embed__aspect-container--10-16 {
    padding-top: calc((100% / 10) * 16); }

.video-embed__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }/*@hash null-9678b001cd*/