@charset "UTF-8";
/**
 * Site dependencies
 */
/*
 * Mixins, helpers and functions
 * =================================
 * Most CSS3 vendor prefixed items have a mixin,
 * but we should not need them if autoprefixer is being used
 * See mixins/css3.scss for the full list
 */
/**
 * Convert pixels to ems
 * For a relational value of 12px write em(12) when the parent is 16px
 * If the parent is another value say 24px write em(12, 24)
 *
 * Usage:
 * font-size : em(12);
 * font-size : em(12, 24);
 */
/**
 * Strips the units from a value. e.g. 12px -> 12
 * Usage: strip-units(400px)
 */
/* ==========================================================================
   Sass Mixins
   * Vendor Prefixer
   * Responsive
   * CSS3
   * Utility Mixins
   * hiDpi
   * Forms
   ========================================================================== */
/* Vendor prefixer */
/* Responsive mixins */
/* ==========================================================================
   Responsive media query mixins
   * These are used so that we can define separate media-query content
     for <IE9 and browsers with support for media queries
   * These are directly related to the global $fix-mqs var defined in
     kickoff-old-ie.scss
   * kickoff-old-ie.scss ignores any content in media-queries with values less
     than the $fix-mqs var value
   ========================================================================== */
/*
   Min-width media query:
   * Equivalent to: @media screen and (min-width: 20em) { ... }
   * Usage: @include respond-min(500) { ... };
   * Argument is a pixel value WITHOUT a unit of measurement
   ========================================================================== */
/*
   Max-width media query:
   * Equivalent to: @media screen and (max-width: 20em) { ... }
   * Usage: @include respond-max(500) { ... };
   * Argument is a pixel value WITHOUT a unit of measurement
   ========================================================================== */
/*
   Min-max-width media query:
   * Equivalent to: @media screen and (min-width: 10em) and (max-width: 20em) { ... }
   * Usage: @include respond-min-max(500, 600) { ... };
   * Arguments are pixel values WITHOUT a unit of measurement
   ========================================================================== */
/*
   Old IE specific mixin
   * Only use this content if we're dealing with old IE
   * Usage: @include oldie() { ... }
   ========================================================================== */
/* CSS3 */
/**
 * Linear Gradient
 * Usage: @include linear-gradient(#000, #BADA55, horizontal, true);
 */
/* ==========================================================================
   Radial Gradient
   Usage: @include radial-gradient(#000, #BADA55, true);
   ========================================================================== */
/**
 * vertical-center
 * Vertically center any element. Needs support for CSS tranforms.
 * Usage:
 * @include vertical-center;
 */
/**
 * Utility mixins
 * Clearfix, REM + fallbacks, @font-face, sizing shortcuts, other helpers
 */
/* ==========================================================================
   Utility Mixins
   ========================================================================== */
/* ==========================================================================
   Typography mixins
   ========================================================================== */
/* HiDPI */
/**
 * HiDPI mixin.
 * @include hidpi-min() { ... };
 * Default value set to 1.3 to target Google Nexus 7 (http://bjango.com/articles/min-device-pixel-ratio/)
 */
/**
 * Hidpi with a minimum width media query
 * @include hidpi-min($bp-mid, 1.5) { ... };
 */
/**
 * Hidpi with a max width media query
 * @include hidpi-max($bp-mid, 1.3) { ... };
 */
/* FORMS */
/**
 * Core variables
 * =================================
 * Edit your color palette and app vars before your begin
 */
/**
 * Colour palette (yeah we're British!)
 */
/**
 * Forms
 */
/**
 * Variables
 * =================================
 * Typography
 * Breakpoints
 * Paths
 * Grid setup
 * Colour palette
 * Components
 */
/**
 * Typography
 * =================================
 * Base sizes:
 * Set this in pixels (but do not add px),
 * the font-size mixin will convert to REMS
 */
/* Font stacks */
/**
 *  Breakpoints
 * =================================
 * There are no common breakpoints so these are just a suggestions
 * You'll need to define your own breakpoints to suit your design
 */
/**
 * Path vars
 */
/**
 * Layout setup
 * Settings here override & affect the output in scss/partials/components/grid.scss
 */
/**
 * Tables
 * Customizes the `.table` component with basic values, each used across all table variations.
 */
/**
 * App-specific variables
 * =================================
 * Add common vars below here
 */
/* CSS Reset  */
/**
 * Kickoff reset
 */
html {
  box-sizing: border-box; }

*, *:before, *:after {
  box-sizing: inherit; }

/**
 * Normalize - CSS reset
 * http://github.com/necolas/normalize.css
 * Kickoff uses an amended version of this file.
 */
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary, main {
  display: block; }

audio, canvas, video {
  display: inline-block; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden],
template {
  display: none; }

/* ============ */
/* === BASE === */
/* ============ */
body {
  margin: 0; }

a {
  background: transparent; }

a:focus {
  outline: thin dotted; }

a:hover, a:active {
  outline: 0; }

figure {
  margin: 0; }

button,
input {
  line-height: normal; }

input[type="search"] {
  -webkit-appearance: textfield; }

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto;
  vertical-align: top; }

/* Global typography styles */
/**
 * Typography
 * =================================
 * Base
 * Paragraphs
 * Headings
 * Links
 * Lists
 * Definition lists
 * Blockquotes
 * Misc
 * Utilities
 *
 * Body font size, leadings etc have been set in _variables.scss
 * Resources:
 * http://www.gridlover.net/
 * http://modularscale.com/
 * http://lamb.cc/typograph/
 *
 */
html {
  font-size: 15.75px;
  -webkit-text-size-adjust: 100%; }
  @media screen and (min-width: 64em) {
    html {
      font-size: 18px; } }

body {
  font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.4;
  color: #404040;
  font-feature-settings: "liga","dlig"; }

/**
 * Paragraphs
 */
p {
  font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-size: 1rem;
  margin-top: 0;
  margin-bottom: 22px; }

/**
 * Headings
 */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: inherit;
  font-weight: 600;
  line-height: 1.1;
  text-rendering: optimizelegibility; }
  h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
    font-weight: normal; }

h1, .h1, .alpha {
  font-size: 31.25px;
  font-size: 1.95313rem;
  margin-top: 0;
  margin-bottom: 11px; }

h2, .h2, .beta {
  font-size: 25px;
  font-size: 1.5625rem;
  margin-top: 0;
  margin-bottom: 11px; }

h3, .h3, .gamma {
  font-size: 20px;
  font-size: 1.25rem;
  margin-top: 0;
  margin-bottom: 11px; }

h4, .h4, .delta,
h5, .h5, .epsilon,
h6, .h6, .zeta {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 12.8px;
  font-size: 0.8rem; }

h4, .h4, .delta {
  font-size: 16px;
  font-size: 1rem; }

h6, .h6, .zeta {
  text-transform: uppercase; }

* + h1, * + .h1, * + .alpha,
* + h2, * + .h2, * + .beta,
* + h3, * + .h3, * + .gamma,
* + h4, * + .h4, * + .delta {
  margin-top: 33px; }

small {
  font-size: 80%; }

/**
 * Links
 */
a, a:link {
  color: #172983;
  text-decoration: none; }
a:visited {
  color: #172983;
  text-decoration: none; }
a:hover, a:focus {
  color: #2745d9; }
a:active {
  color: #2745d9; }

/**
 * Lists
 */
ul {
  list-style-type: disc; }

ol {
  list-style-type: decimal; }

.main-content .body ul,
.main-content .teaser ul,
.main-content .content-wrapper ul {
  padding: 0;
  margin: 0 0 22px 22px;
  list-style-type: none; }
  .main-content .body ul li,
  .main-content .teaser ul li,
  .main-content .content-wrapper ul li {
    margin-bottom: 5px; }
    .main-content .body ul li:before,
    .main-content .teaser ul li:before,
    .main-content .content-wrapper ul li:before {
      content: "\e611";
      font-family: 'icomoon';
      color: #172983;
      vertical-align: bottom;
      display: inline-block;
      width: 24px;
      margin-left: -24px; }
  .main-content .body ul ul,
  .main-content .teaser ul ul,
  .main-content .content-wrapper ul ul {
    list-style-type: disc;
    margin-bottom: 0; }
    .main-content .body ul ul li,
    .main-content .teaser ul ul li,
    .main-content .content-wrapper ul ul li {
      margin-bottom: 0; }
      .main-content .body ul ul li:before,
      .main-content .teaser ul ul li:before,
      .main-content .content-wrapper ul ul li:before {
        content: ''; }

ul, ol {
  padding: 0;
  margin: 0 0 22px 22px; }
  ul ul,
  ul ol, ol ul,
  ol ol {
    margin-left: 44px; }
  ul ul ul, ol ul ul {
    list-style-type: square; }
  ul ol, ol ol {
    list-style-type: upper-roman; }
    ul ol ol, ol ol ol {
      list-style-type: lower-roman; }
  ul ul, ul ol, ol ul, ol ol {
    margin-bottom: 0; }

/**
 * Unstyled lists
 */
.unstyled, .tabs, .l-tabsContent,
nav ul, nav ol {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-image: none; }

ul.g-row {
  list-style: none; }

/**
 * Definition lists
 */
dl {
  margin-bottom: 22px; }

dt {
  font-weight: 600; }

dd {
  margin-left: 22px; }

.dl-horizontal:after {
  content: "";
  display: table;
  clear: both; }
.dl-horizontal dt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  float: left;
  clear: left;
  width: 220px;
  text-align: right; }
.dl-horizontal dd {
  margin-left: 240px; }

/**
 * Miscellaneous
 */
hr {
  margin: 22px 0;
  border: 0;
  border-top: 1px solid #b3b3b3;
  border-bottom: 1px solid #fff; }

strong, b {
  font-weight: 600; }

em, i {
  font-style: italic; }

abbr[title] {
  border-bottom: 1px dotted #ddd;
  cursor: help; }

/**
 * Blockquotes
 */
blockquote {
  padding-left: 10px;
  margin: 22px;
  border-left: 4px solid #cccccc; }
  blockquote p {
    margin-bottom: 0;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 300; }
  blockquote small {
    display: block;
    color: #b3b3b3; }
    blockquote small:before {
      content: '\2014 \00A0'; }

q:before, q:after,
blockquote:before,
blockquote:after {
  content: ""; }

address {
  display: block;
  margin-bottom: 22px;
  font-style: normal; }

cite {
  font-style: normal; }

dfn {
  font-style: italic; }

mark {
  background: #f1c40f;
  padding: 2px 4px;
  border-radius: 3px; }

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -.5em; }

sub {
  bottom: -.25em; }

samp {
  font-family: Menlo, Monaco, "Courier New", monospace; }

/**
 * Utilities
 */
.text-centre,
.text-center {
  text-align: center; }

.text-left {
  text-align: left; }

.text-right {
  text-align: right; }

::-moz-selection {
  color: #fff;
  background: #172983;
  text-shadow: none; }

::selection {
  color: #fff;
  background: #172983;
  text-shadow: none; }

input, button, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit; }

@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomooncd61.eot?-b5jnq7");
  src: url("../fonts/icomoond41d.eot?#iefix-b5jnq7") format("embedded-opentype"), url("../fonts/icomooncd61.ttf?-b5jnq7") format("truetype"), url("../fonts/icomooncd61.woff?-b5jnq7") format("woff"), url("../fonts/icomooncd61.svg?-b5jnq7#icomoon") format("svg");
  font-weight: normal;
  font-style: normal; }
[class^="icon-"], [class*=" icon-"] {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-search-plus:before {
  content: "\f00e"; }

.icon-uniE055:before {
  content: "\e055"; }

.icon-uniE600:before {
  content: "\e600"; }

.icon-uniE601:before {
  content: "\e601"; }

.icon-uniE602:before {
  content: "\e602"; }

.icon-uniE603:before {
  content: "\e603"; }

.icon-uniE604:before {
  content: "\e604"; }

.icon-uniE605:before {
  content: "\e605"; }

.icon-uniE606:before {
  content: "\e606"; }

.icon-uniE607:before {
  content: "\e607"; }

.icon-uniE608:before {
  content: "\e608"; }

.icon-uniE609:before {
  content: "\e609"; }

.icon-uniE60A:before {
  content: "\e60a"; }

.icon-uniE60B:before {
  content: "\e60b"; }

.icon-uniE60C:before {
  content: "\e60c"; }

.icon-uniE60D:before {
  content: "\e60d"; }

.icon-uniE60E:before {
  content: "\e60e"; }

.icon-uniE60F:before {
  content: "\e60f"; }

.icon-uniE610:before {
  content: "\e610"; }

.icon-uniE611:before {
  content: "\e611"; }

.icon-uniE612:before {
  content: "\e612"; }

.icon-uniE613:before {
  content: "\e613"; }

.icon-uniE614:before {
  content: "\e614"; }

.icon-uniE615:before {
  content: "\e615"; }

.icon-uniE616:before {
  content: "\e616"; }

.icon-uniE617:before {
  content: "\e617"; }

.icon-uniE618:before {
  content: "\e618"; }

.icon-uniE619:before {
  content: "\e619"; }

.icon-uniE61A:before {
  content: "\e61a"; }

.icon-uniE61B:before {
  content: "\e61b"; }

.icon-uniE61C:before {
  content: "\e61c"; }

.icon-uniF003:before {
  content: "\f003"; }

.icon-uniF081:before {
  content: "\f081"; }

.icon-uniF082:before {
  content: "\f082"; }

.icon-uniF095:before {
  content: "\f095"; }

.icon-uniF099:before {
  content: "\f099"; }

.icon-uniF09A:before {
  content: "\f09a"; }

.icon-uniF0C9:before {
  content: "\f0c9"; }

.icon-uniF0E0:before {
  content: "\f0e0"; }

.icon-uniF101:before {
  content: "\f101"; }

.icon-uniF104:before {
  content: "\f104"; }

.icon-uniF105:before {
  content: "\f105"; }

.icon-uniF106:before {
  content: "\f106"; }

.icon-uniF107:before {
  content: "\f107"; }

.icon-uniF1C1:before {
  content: "\f1c1"; }

.icon-uniF1C2:before {
  content: "\f1c2"; }

.icon-uniF1C3:before {
  content: "\f1c3"; }

.icon-uniF1C4:before {
  content: "\f1c4"; }

.icon-uniF1C5:before {
  content: "\f1c5"; }

.icon-uniF1C6:before {
  content: "\f1c6"; }

.icon-uniF1C7:before {
  content: "\f1c7"; }

.icon-uniF1C8:before {
  content: "\f1c8"; }

.icon-uniF1C9:before {
  content: "\f1c9"; }

.icon-uniF1DB:before {
  content: "\f1db"; }

.icon-zoom-in:before {
  content: "\e987"; }

/**
 * Components:
 * =================================
 * Buttons
 * Grid
 * Lists
 * Forms
 * Embedded content
 * Media Object
 * Block grids
 * Fluid video
 * Tabs
 * Tables
 * Code
 * Skip navigation
 * Scrollbars
 */
/**
 * Buttons
 * Based on csswizardry.com/beautons
 *
 * Base button styles:
 * 1. Allow us to better style box model properties.
 * 2. Line different sized buttons up a little nicer.
 * 3. Stop buttons wrapping and looking broken.
 * 4. Make buttons inherit font styles.
 * 5. Force all elements using beautons to appear clickable.
 * 6. Normalise box model styles.
 * 7. If the buttonÔÇÖs text is 1em, and the button is (3 * font-size) tall, then
 *    there is 1em of space above and below that text. We therefore apply 1em
 *    of space to the left and right, as padding, to keep consistent spacing.
 * 8. Fixes odd inner spacing in IE7.
 * 9. DonÔÇÖt allow buttons to have underlines; it kinda ruins the illusion.
 *10. Prevents from inheriting default anchor styles.
 */
.btn, .tabs a {
  display: inline-block;
  /* [1] */
  vertical-align: middle;
  /* [2] */
  white-space: nowrap;
  /* [3] */
  font-family: inherit;
  /* [4] */
  font-size: 100%;
  /* [4] */
  cursor: pointer;
  /* [5] */
  border: 0;
  /* [6] */
  margin: 0;
  /* [6] */
  padding-top: 0;
  /* [6] */
  padding-bottom: 0;
  /* [6] */
  line-height: 2.5;
  /* [7] */
  height: 2.5em;
  /* [7] */
  padding-right: 1.5em;
  /* [7] */
  padding-left: 1.5em;
  /* [7] */
  overflow: visible;
  /* [8] */
  text-align: center;
  background-color: #95a5a6;
  border-radius: 5px;
  user-select: none; }
  .btn, .tabs a, .btn:link, .tabs a:link, .btn:visited, .tabs a:visited {
    color: #fff; }
  .btn:hover, .tabs a:hover, .btn:active, .tabs a:active, .btn:focus, .tabs a:focus {
    background-color: #798d8f; }
  .btn, .tabs a, .btn:hover, .tabs a:hover, .btn:active, .tabs a:active, .btn:focus, .tabs a:focus, .btn:visited, .tabs a:visited {
    text-decoration: none; }
  .btn:active, .tabs a:active, .btn:focus, .tabs a:focus {
    outline: none; }
  .btn.disabled, .tabs a.disabled, .btn[disabled], .tabs a[disabled] {
    cursor: default;
    background-image: none;
    opacity: .65; }

.btn--primary {
  background-color: #172983; }
  .btn--primary, .btn--primary:link, .btn--primary:visited {
    color: #fff; }
  .btn--primary:hover, .btn--primary:active, .btn--primary:focus {
    background-color: #0f1b58; }

.btn--large {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 3;
  height: 3em;
  padding-right: 2em;
  padding-left: 2em;
  border-radius: 6px; }

.btn--small {
  font-size: 12.8px;
  font-size: 0.8rem;
  line-height: 1.5;
  height: 1.5em;
  padding-right: .75em;
  padding-left: .75em;
  border-radius: 3px; }

.btn--pill {
  padding-left: 1.5em;
  padding-right: 1.5em;
  border-radius: 100em; }

.btn--block {
  display: block;
  width: 100%;
  padding-left: 0;
  padding-right: 0; }
  .btn--block + .btn--block {
    margin-top: 10px; }

input[type="submit"].btn--block,
input[type="reset"].btn--block,
input[type="button"].btn--block {
  width: 100%; }

.btn--natural {
  vertical-align: baseline;
  font-size: inherit;
  line-height: inherit;
  height: auto;
  padding-right: .5em;
  padding-left: .5em; }

/**
 * Close Button: for lightboxes etc
 */
.btnClose {
  position: absolute;
  right: 20px;
  top: 20px;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 17px;
  background: #000;
  color: #172983;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
  user-select: none; }
  .btnClose:hover {
    color: #fff;
    border-radius: 50px; }

/**
 * The Kickoff Grid
 * =================================
 * Default grid styles
 * Media queries
 * Centred columns
 */
/* Import Grid helpers and mixins */
/* ==========================================================================
   Kickoff Grid helpers
   ========================================================================== */
/*
   Grid columns width calcs
   ========================================================================== */
/**
 * Column width mixin
 * Usage:
 * @include column(2);
 */
/*
   Gutter calcs
   * Default: percent
   * Usage: gutterCalc() or gutterCalc(false)
   ========================================================================== */
/*
   Column padding (gutter)
   * Default: percent (can be pixels though)
   * Usage: paddingCalc() or paddingCalc(px)
   ========================================================================== */
/*
   Shunts, offset columns, column source order calculations
   ========================================================================== */
/**
 * Basic Usage:
 * =================================
	<div class="g-row">
		<div class="g-col g-span4"></div>
		<div class="g-col g-span8"></div>
	</div>
 */
.g-row {
  width: 100%;
  margin: 0 auto; }
  .g-row:after {
    content: "";
    display: table;
    clear: both; }
  .g-row .g-row {
    min-width: 0; }
    .g-row .g-row .g-col {
      padding: 0; }

@media screen and (min-width: 48em) {
  .g-col {
    float: left;
    min-height: 1px;
    position: relative;
    clear: none;
    box-sizing: border-box;
    margin-left: 2.63158%; }
    .g-col:first-child {
      margin-left: 0; }
    .g-col + .g-col:last-child {
      float: right; }
    .g-col + .g-col.end {
      float: left; } }

@media screen and (min-width: 48em) {
  .g-span1 {
    width: 5.92105%; }

  .g-span2 {
    width: 14.47368%; }

  .g-span3 {
    width: 23.02632%; }

  .g-span4 {
    width: 31.57895%; }

  .g-span5 {
    width: 40.13158%; }

  .g-span6 {
    width: 48.68421%; }

  .g-span7 {
    width: 57.23684%; }

  .g-span8 {
    width: 65.78947%; }

  .g-span9 {
    width: 74.34211%; }

  .g-span10 {
    width: 82.89474%; }

  .g-span11 {
    width: 91.44737%; }

  .g-span12 {
    width: 100%; }

  /**
   * Offset columns
   * http://tmwagency.github.io/kickoff/demos/grids.html#offset
   */
  /**
   * Source ordering (push & pull)
   * http://tmwagency.github.io/kickoff/demos/grids.html#source-ordering
   */ }
/**
 * Centred columns
 */
.g-col.g-col--centered,
.g-col.g-col--centred {
  float: none;
  margin: 0 auto; }

/*
	Centred lists

	<ul class="l-list--centred">
		<li></li>
	</ul>
	========================================================================== */
.l-list--centred, .l-list--centered {
  text-align: center; }
  .l-list--centred li, .l-list--centered li {
    display: inline; }

/*
	Floated lists

	<ul class="l-list--floated">
		<li></li>
	</ul>
	========================================================================== */
.l-list--floated:after {
  content: "";
  display: table;
  clear: both; }
.l-list--floated li {
  float: left;
  display: inline-block; }

/**
 * Forms
 * =================================
 * Generic form styles
 * Form inputs and groups
 * Form field feedback states
 * Horizontal & vertical forms
 * Horizontal-specific styles
 */
/**
 * Generic form styles
 * =================================
 * Demo: http://tmwagency.github.io/kickoff/demos/forms.html#layout-example-labels-above
 * Code: https://gist.github.com/mrmartineau/6712577#file-labels-above-inputs-html
 * Usage:
  	<div class="form-controlGroup">
  		<label for="name" class="form-label">Name</label>
  		<div class="form-controlGroup-inputWrapper">
  			<input type="text" id="name" placeholder="Zander Martineau" class="form-input"/>
  		</div>
  	</div>
 */
.form {
  margin: 0 0 22px; }

.form-fieldset {
  padding: 0;
  margin: 0;
  border: 0; }

.form-legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 22px;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4;
  color: #404040;
  border: 0;
  border-bottom: 1px solid #eee;
  white-space: normal; }
  .form-legend small {
    font-size: 12.8px;
    font-size: 0.8rem;
    color: #b3b3b3; }

/**
 * Form inputs and groups
 */
.form-controlGroup {
  margin-top: 11px;
  margin-bottom: 11px;
  list-style-type: none; }

.form-legend + .form-controlGroup {
  margin-top: 22px;
  -webkit-margin-top-collapse: separate; }

.form-label {
  display: block;
  color: #404040;
  font-weight: bold; }
  .form-label small {
    font-weight: normal;
    color: #8c8c8c; }

.form-input {
  display: block;
  width: 100%;
  height: 2.5em;
  padding: .5em;
  font-size: 16px;
  font-size: 1rem;
  font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.4;
  color: #404040;
  font-weight: normal;
  vertical-align: baseline;
  background-color: #fff;
  border: 2px solid #ccc;
  border-radius: 5px;
  transition: border 200ms ease-in-out; }
  .form-input:focus {
    border-color: #999999;
    outline: 0;
    outline: thin dotted \9; }
  .form-input[type="image"], .form-input[type="checkbox"], .form-input[type="radio"], .form-input[type="range"] {
    width: auto;
    height: auto;
    padding: 0;
    margin: 3px 0;
    line-height: normal;
    cursor: pointer;
    border-radius: 0;
    box-sizing: border-box; }
  .form-input[type="image"] {
    border: 0; }
  .form-input[type="file"] {
    width: auto;
    height: 28px;
    padding: initial;
    line-height: initial;
    border: initial;
    background-color: #fff;
    background-color: initial; }
  .form-input[type="hidden"] {
    display: none; }
  .form-input[type="color"] {
    width: 40px;
    height: 40px;
    overflow: hidden;
    padding: 2px; }
  .form-input[type="password"] {
    font-family: sans-serif; }
  .form-input[type="range"] {
    width: 100%; }
  .form-input > .radio:first-child,
  .form-input > .checkbox:first-child {
    padding-top: 5px; }
  .form-input[disabled], .form-input[readonly] {
    background-color: #e6e6e6;
    border-color: #ccc;
    cursor: not-allowed; }

.form-input--textarea {
  height: auto;
  resize: vertical; }

.form-input--textarea--uneditable {
  width: auto;
  height: auto; }

.form-input--select {
  background-color: #fff; }
  .form-input--select[multiple], .form-input--select[size] {
    height: auto; }

.form-input-file {
  display: inline-block;
  width: 100%;
  font-size: 16px;
  font-size: 1rem;
  margin: 0;
  vertical-align: middle;
  line-height: 1em; }
  .form-input-file:focus {
    outline: none; }

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  width: auto;
  cursor: pointer;
  -webkit-appearance: button; }

/**
 * Checkboxes:
 * =================================
	<label class="control">
		<input type="checkbox" value="check1">
		This is a checkbox
	</label>
	<label class="control control--inline">
		<input type="checkbox" value="check1">
		This is a checkbox
	</label>

 * Radios:
 * =================================
	<label class="control">
		<input type="radio" name="optionsRadios" id="optionsRadios1" value="option1" checked>
		This is a radio
	</label>
	<label class="control control--inline">
		<input type="radio" name="optionsRadios" id="optionsRadios1" value="option2" checked>
		This is a radio
	</label>
 */
.control {
  display: block; }
  .control input[type="radio"],
  .control input[type="checkbox"] {
    vertical-align: middle;
    margin-right: .5em;
    margin-top: -.1em;
    display: inline;
    line-height: normal; }

.control--inline {
  display: inline-block;
  vertical-align: middle;
  margin-right: 1.5em; }

/**
 * Search input
 */
.form-input--search {
  padding-left: 14px;
  padding-right: 14px;
  margin-bottom: 0;
  border-radius: 100px; }

/**
 * Form actions
 */
.form-actions {
  padding: 22px 20px;
  margin-top: 22px;
  margin-bottom: 22px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd; }
  .form-actions .btn, .form-actions .tabs a, .tabs .form-actions a {
    margin-right: 10px; }
    .form-actions .btn:last-child, .form-actions .tabs a:last-child, .tabs .form-actions a:last-child {
      margin-right: 0; }

/**
 * Form field feedback states
 */
.form-controlGroup--warning .form-label {
  color: #dab10d; }
.form-controlGroup--warning .form-input {
  color: #dab10d;
  border-color: #dab10d;
  background-color: #fcf1c6; }
  .form-controlGroup--warning .form-input:focus {
    border-color: #aa8a0a; }

.form-controlGroup--error .form-label {
  color: #e43725; }
.form-controlGroup--error .form-input {
  color: #e43725;
  border-color: #e43725;
  background-color: #fceae9; }
  .form-controlGroup--error .form-input:focus {
    border-color: #bf2718; }

.form-controlGroup--success .form-label {
  color: #2ecc71; }
.form-controlGroup--success .form-input {
  color: #2ecc71;
  border-color: #2ecc71;
  background-color: #def8e9; }
  .form-controlGroup--success .form-input:focus {
    border-color: #25a25a; }

/**
 * Placeholder text
 * =================================
 * Gets special styles; can't be bundled together though for some reason
 */
:-ms-input-placeholder {
  color: #b3b3b3; }

:-moz-placeholder {
  color: #b3b3b3; }

::-webkit-input-placeholder {
  color: #b3b3b3; }

@media screen and (min-width: 48em) {
  /**
   * Horizontal-specific styles
   * =================================
   * add .form--horizontal to the <form> element
   * Demo: http://tmwagency.github.io/kickoff/demos/forms.html#layout-example-labels-inline
   * Code: https://gist.github.com/mrmartineau/6712577#file-labels-inline-html
   */
  .form--horizontal .form-controlGroup {
    margin-bottom: 22px; }
    .form--horizontal .form-controlGroup:after {
      content: "";
      display: table;
      clear: both; }
    .form--horizontal .form-controlGroup .form-input--fileWrapper {
      margin-left: 0; }
  .form--horizontal .form-label {
    float: left;
    width: 140px;
    padding-top: 5px;
    text-align: right; }
  .form--horizontal .form-controlGroup-inputWrapper {
    margin-left: 160px; }
    .form--horizontal .form-controlGroup-inputWrapper:first-child {
      padding-left: 160px; }
  .form--horizontal .form-helpBlock {
    margin-top: 11px;
    margin-bottom: 0; }
  .form--horizontal .form-actions {
    padding-left: 160px; } }
/**
 * Custom Checkboxes and radios - modified from WTF forms ÔÇô http://wtfforms.com/
 *
 * --------------------------------
 *
 * Checkbox button example HTML
 *
 *	 <label class="control control--custom control--checkbox">
 *		<input type="checkbox" name="myCheckbox" />
 *		<span class="control-indicator"></span>
 *		My Checkbox Label Text
 *	</label>
 *
 * -------------------------------
 *
 * Radio button example HTML
 *
 *	<label class="control control--custom control--radio">
 *		<input type="radio" id="radio1" name="myRadioBtn" />
 *		<span class="control-indicator"></span>
 *		My Radio Button Label Text
 * 	</label>
 *
 * ================================= */
.control-indicator {
  position: absolute;
  top: .25em;
  left: 0;
  display: block;
  width: 19px;
  height: 19px;
  line-height: 1;
  color: #eee;
  text-align: center;
  background-color: #ddd;
  background-size: 50% 50%;
  background-position: center center;
  background-repeat: no-repeat;
  user-select: none; }

.control--custom {
  position: relative;
  display: block;
  padding-left: 2em;
  margin-left: 0;
  color: #555;
  cursor: pointer;
  /* Focus */
  /* Checked state */
  /* Active */ }
  .control--custom input {
    position: absolute;
    opacity: 0;
    z-index: -1;
    /* Put the input behind the label so it doesn't overlay text */ }
  .control--custom input:focus ~ .control-indicator {
    box-shadow: 0 0 0 0.075em #fff, 0 0 0 0.2em #a3b1b2; }
  .control--custom input:checked ~ .control-indicator {
    color: #fff;
    background-color: #a3b1b2; }
  .control--custom input:active ~ .control-indicator {
    color: #fff;
    background-color: #ccd4d5; }

/* Checkbox modifiers */
.control--checkbox .control-indicator {
  border-radius: 25%; }

.control--checkbox input:checked ~ .control-indicator {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgOCA4IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA4IDgiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHBhdGggZmlsbD0iI0ZGRkZGRiIgZD0iTTYuNCwxTDUuNywxLjdMMi45LDQuNUwyLjEsMy43TDEuNCwzTDAsNC40bDAuNywwLjdsMS41LDEuNWwwLjcsMC43bDAuNy0wLjdsMy41LTMuNWwwLjctMC43TDYuNCwxTDYuNCwxeiINCgkvPg0KPC9zdmc+DQo=); }

/* Radio modifiers */
.control--radio .control-indicator {
  border-radius: 50%; }

.control--radio input:checked ~ .control-indicator {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgOCA4IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA4IDgiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHBhdGggZmlsbD0iI0ZGRkZGRiIgZD0iTTQsMUMyLjMsMSwxLDIuMywxLDRzMS4zLDMsMywzczMtMS4zLDMtM1M1LjcsMSw0LDF6Ii8+DQo8L3N2Zz4NCg==); }

/**
 * Custom file input
 */
.form-input--fileWrapper--styled {
  position: relative;
  overflow: hidden; }
  .form-input--fileWrapper--styled:before {
    content: 'Choose file...'; }
  .form-input--fileWrapper--styled:after {
    content: 'Browse';
    cursor: pointer;
    display: inline-block;
    position: absolute;
    top: 0;
    right: -1px;
    bottom: 0;
    padding: .44em 1em 0;
    background-color: #d9d9d9; }
  .form-input--fileWrapper--styled .form-input-file {
    opacity: 0;
    position: absolute; }

/**
 * Custom select element
 * http://jsbin.com/juvixufu/165/edit
 */
.form-input--selectWrapper {
  position: relative;
  display: block;
  padding: 0; }

/* This is the native select, we're making everything the text invisible so we can see the button styles in the wrapper */
.form-input--selectWrapper select {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  margin: 0;
  background: none;
  border: 0;
  outline: none;
  /* Remove select styling */
  appearance: none;
  -webkit-appearance: none;
  /* Magic font size number to prevent iOS text zoom */
  padding: .5em;
  height: 2.3em;
  line-height: 1; }

/* This hides native dropdown button arrow in IE 10/11+ so it will have the custom appearance, IE 9 and earlier get a native select */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .form-input--selectWrapper select::-ms-expand {
    display: none; } }
/* Custom arrow sits on top of the select - could be an image, SVG, icon font, etc. or the arrow could just baked into the bg image on the select */
.form-input--selectWrapper:after {
  background: none;
  color: #bbb;
  content: "\25BC";
  font-size: .7em;
  padding: 0;
  position: absolute;
  right: 1.2em;
  top: 50%;
  margin-top: -9px;
  z-index: 2;
  /* These hacks make the select behind the arrow clickable in some browsers */
  pointer-events: none;
  background: url(#); }

/* This selector targets Firefox only with the trick of making the select 110% but clipped by the container at 100% to hide the arrow. We have to do this because getting rid of select appearance isn't supported consistently */
.form-input--selectWrapper,
x:-moz-any-link,
x:default {
  overflow: hidden;
  width: 100%; }

.form-input--selectWrapper select,
x:-moz-any-link,
x:default {
  width: 110%;
  max-width: 110%;
  min-width: 110%;
  /* A zero right padding is needed or the native arrow can show up. Downside is the text will run over the arrow */
  padding: .6em 0 .5em .8em;
  /* Window is a Firefox way of hiding the arrow, sometimes works */
  -moz-appearance: window;
  text-indent: .01px;
  text-overflow: ""; }

/* Focus style - TODO: Fix in FF */
/* Removes the odd blue bg color behind the text in IE 10/11 and sets the text to match the focus style text */
.form-input--selectWrapper:focus::-ms-value {
  background: transparent;
  color: #222; }

/* Firefox focus has odd artifacts around the text, this kills that */
.form-input--selectWrapper:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000; }

option {
  font-weight: normal; }

/*
	Embedded content
	========================================================================== */
img {
  font-style: italic;
  color: #c00;
  border: 0;
  -ms-interpolation-mode: bicubic; }
  img.img--left {
    margin: 0 20px 0 0; }
  img.img--right {
    margin: 0 0 0 20px; }

svg:not(:root) {
  overflow: hidden; }

img, object, embed, video {
  max-width: 100%; }

/*
	Media Object

	* Place any image- and text-like content side-by-side, as per:
	* http://csswizardry.com/2013/05/the-flag-object/
	*
	* +---------+
  * |         | ~~~~ ~~~~~~~~~~~
  * |         | ~~~~~~~ ~~~~~ ~~
  * |         | ~~~~~~~~~~~~
  * +---------+
	*
	* Markup:
	<div class="media">
		<div class="media-img">
			<img src="http://placekitten.com/100/100">
		</div>
		<div class="media-body">
			<p>Lorem ipsum dolor sit amet.</p>
		</div>
	</div>
	========================================================================== */
.media {
  display: table;
  width: 100%; }

@media screen and (min-width: 30em) {
  .media-img,
  .media-body {
    display: table-cell;
    vertical-align: middle; }
    .media--top .media-img, .media--top
    .media-body {
      vertical-align: top; }
    .media--bottom .media-img, .media--bottom
    .media-body {
      vertical-align: bottom; }
    .media-img :last-child,
    .media-body :last-child {
      margin-bottom: 0; }

  .media-body {
    width: 100%; }

  .media-img {
    padding-right: 10px; }
    .media-img > img {
      display: block;
      max-width: none; }
    .media--rev .media-img {
      padding-right: 0;
      padding-left: 10px; } }
/*
   Fluid width video
   * 16:9 aspect ratio by default
   * Usage:
   * <div class="fluidVideo"><iframe src="..."/></div>
   ========================================================================== */
.fluidVideo {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0; }
  .fluidVideo iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

/**
 * Block grids
 * These are suited for repeating blocks of content. See below for usage
 *
 * Usage:
 * <ul class="l-blockGrid l-blockGrid--3up">
 *     <li></li>
 * </ul>
 *
 * Mobile Usage:
 * <ul class="l-blockGrid l-blockGrid--4up l-blockGrid--2up--narrow">
 *     <li></li>
 * </ul>
 */
.l-blockGrid {
  display: block;
  list-style-type: none;
  margin: 0; }
  .l-blockGrid:after {
    content: "";
    display: table;
    clear: both; }
  .l-blockGrid > li {
    display: block;
    height: auto; }
  @media screen and (min-width: 30em) and (max-width: 48em) {
    .l-blockGrid[class*="up--narrow"] > li {
      display: block;
      height: auto;
      float: left; }
    .l-blockGrid.l-blockGrid--1up--narrow {
      margin-right: -30px; }
    .l-blockGrid.l-blockGrid--1up--narrow > li {
      width: 100%;
      padding-right: 30px;
      padding-bottom: 30px;
      display: block;
      height: auto;
      float: left; }
      .l-blockGrid.l-blockGrid--1up--narrow > li:nth-child(1n+1) {
        clear: both; }
    .l-blockGrid.l-blockGrid--2up--narrow {
      margin-right: -30px; }
    .l-blockGrid.l-blockGrid--2up--narrow > li {
      width: 50%;
      padding-right: 30px;
      padding-bottom: 30px;
      display: block;
      height: auto;
      float: left; }
      .l-blockGrid.l-blockGrid--2up--narrow > li:nth-child(2n+1) {
        clear: both; }
    .l-blockGrid.l-blockGrid--3up--narrow {
      margin-right: -30px; }
    .l-blockGrid.l-blockGrid--3up--narrow > li {
      width: 33.33333%;
      padding-right: 30px;
      padding-bottom: 30px;
      display: block;
      height: auto;
      float: left; }
      .l-blockGrid.l-blockGrid--3up--narrow > li:nth-child(3n+1) {
        clear: both; }
    .l-blockGrid.l-blockGrid--4up--narrow {
      margin-right: -30px; }
    .l-blockGrid.l-blockGrid--4up--narrow > li {
      width: 25%;
      padding-right: 30px;
      padding-bottom: 30px;
      display: block;
      height: auto;
      float: left; }
      .l-blockGrid.l-blockGrid--4up--narrow > li:nth-child(4n+1) {
        clear: both; }
    .l-blockGrid.l-blockGrid--5up--narrow {
      margin-right: -30px; }
    .l-blockGrid.l-blockGrid--5up--narrow > li {
      width: 20%;
      padding-right: 30px;
      padding-bottom: 30px;
      display: block;
      height: auto;
      float: left; }
      .l-blockGrid.l-blockGrid--5up--narrow > li:nth-child(5n+1) {
        clear: both; }
    .l-blockGrid.l-blockGrid--6up--narrow {
      margin-right: -30px; }
    .l-blockGrid.l-blockGrid--6up--narrow > li {
      width: 16.66667%;
      padding-right: 30px;
      padding-bottom: 30px;
      display: block;
      height: auto;
      float: left; }
      .l-blockGrid.l-blockGrid--6up--narrow > li:nth-child(6n+1) {
        clear: both; }
    .l-blockGrid.l-blockGrid--7up--narrow {
      margin-right: -30px; }
    .l-blockGrid.l-blockGrid--7up--narrow > li {
      width: 14.28571%;
      padding-right: 30px;
      padding-bottom: 30px;
      display: block;
      height: auto;
      float: left; }
      .l-blockGrid.l-blockGrid--7up--narrow > li:nth-child(7n+1) {
        clear: both; }
    .l-blockGrid.l-blockGrid--8up--narrow {
      margin-right: -30px; }
    .l-blockGrid.l-blockGrid--8up--narrow > li {
      width: 12.5%;
      padding-right: 30px;
      padding-bottom: 30px;
      display: block;
      height: auto;
      float: left; }
      .l-blockGrid.l-blockGrid--8up--narrow > li:nth-child(8n+1) {
        clear: both; }
    .l-blockGrid.l-blockGrid--9up--narrow {
      margin-right: -30px; }
    .l-blockGrid.l-blockGrid--9up--narrow > li {
      width: 11.11111%;
      padding-right: 30px;
      padding-bottom: 30px;
      display: block;
      height: auto;
      float: left; }
      .l-blockGrid.l-blockGrid--9up--narrow > li:nth-child(9n+1) {
        clear: both; }
    .l-blockGrid.l-blockGrid--10up--narrow {
      margin-right: -30px; }
    .l-blockGrid.l-blockGrid--10up--narrow > li {
      width: 10%;
      padding-right: 30px;
      padding-bottom: 30px;
      display: block;
      height: auto;
      float: left; }
      .l-blockGrid.l-blockGrid--10up--narrow > li:nth-child(10n+1) {
        clear: both; }
    .l-blockGrid.l-blockGrid--11up--narrow {
      margin-right: -30px; }
    .l-blockGrid.l-blockGrid--11up--narrow > li {
      width: 9.09091%;
      padding-right: 30px;
      padding-bottom: 30px;
      display: block;
      height: auto;
      float: left; }
      .l-blockGrid.l-blockGrid--11up--narrow > li:nth-child(11n+1) {
        clear: both; }
    .l-blockGrid.l-blockGrid--12up--narrow {
      margin-right: -30px; }
    .l-blockGrid.l-blockGrid--12up--narrow > li {
      width: 8.33333%;
      padding-right: 30px;
      padding-bottom: 30px;
      display: block;
      height: auto;
      float: left; }
      .l-blockGrid.l-blockGrid--12up--narrow > li:nth-child(12n+1) {
        clear: both; } }
  @media screen and (min-width: 48em) {
    .l-blockGrid > li {
      display: block;
      height: auto;
      float: left; }
    .l-blockGrid.l-blockGrid--1up {
      margin-right: -30px; }
    .l-blockGrid.l-blockGrid--1up > li {
      width: 100%;
      padding-right: 30px;
      padding-bottom: 30px; }
      .l-blockGrid.l-blockGrid--1up > li:nth-child(1n+1) {
        clear: both; }
    .l-blockGrid.l-blockGrid--2up {
      margin-right: -30px; }
    .l-blockGrid.l-blockGrid--2up > li {
      width: 50%;
      padding-right: 30px;
      padding-bottom: 30px; }
      .l-blockGrid.l-blockGrid--2up > li:nth-child(2n+1) {
        clear: both; }
    .l-blockGrid.l-blockGrid--3up {
      margin-right: -30px; }
    .l-blockGrid.l-blockGrid--3up > li {
      width: 33.33333%;
      padding-right: 30px;
      padding-bottom: 30px; }
      .l-blockGrid.l-blockGrid--3up > li:nth-child(3n+1) {
        clear: both; }
    .l-blockGrid.l-blockGrid--4up {
      margin-right: -30px; }
    .l-blockGrid.l-blockGrid--4up > li {
      width: 25%;
      padding-right: 30px;
      padding-bottom: 30px; }
      .l-blockGrid.l-blockGrid--4up > li:nth-child(4n+1) {
        clear: both; }
    .l-blockGrid.l-blockGrid--5up {
      margin-right: -30px; }
    .l-blockGrid.l-blockGrid--5up > li {
      width: 20%;
      padding-right: 30px;
      padding-bottom: 30px; }
      .l-blockGrid.l-blockGrid--5up > li:nth-child(5n+1) {
        clear: both; }
    .l-blockGrid.l-blockGrid--6up {
      margin-right: -30px; }
    .l-blockGrid.l-blockGrid--6up > li {
      width: 16.66667%;
      padding-right: 30px;
      padding-bottom: 30px; }
      .l-blockGrid.l-blockGrid--6up > li:nth-child(6n+1) {
        clear: both; }
    .l-blockGrid.l-blockGrid--7up {
      margin-right: -30px; }
    .l-blockGrid.l-blockGrid--7up > li {
      width: 14.28571%;
      padding-right: 30px;
      padding-bottom: 30px; }
      .l-blockGrid.l-blockGrid--7up > li:nth-child(7n+1) {
        clear: both; }
    .l-blockGrid.l-blockGrid--8up {
      margin-right: -30px; }
    .l-blockGrid.l-blockGrid--8up > li {
      width: 12.5%;
      padding-right: 30px;
      padding-bottom: 30px; }
      .l-blockGrid.l-blockGrid--8up > li:nth-child(8n+1) {
        clear: both; }
    .l-blockGrid.l-blockGrid--9up {
      margin-right: -30px; }
    .l-blockGrid.l-blockGrid--9up > li {
      width: 11.11111%;
      padding-right: 30px;
      padding-bottom: 30px; }
      .l-blockGrid.l-blockGrid--9up > li:nth-child(9n+1) {
        clear: both; }
    .l-blockGrid.l-blockGrid--10up {
      margin-right: -30px; }
    .l-blockGrid.l-blockGrid--10up > li {
      width: 10%;
      padding-right: 30px;
      padding-bottom: 30px; }
      .l-blockGrid.l-blockGrid--10up > li:nth-child(10n+1) {
        clear: both; }
    .l-blockGrid.l-blockGrid--11up {
      margin-right: -30px; }
    .l-blockGrid.l-blockGrid--11up > li {
      width: 9.09091%;
      padding-right: 30px;
      padding-bottom: 30px; }
      .l-blockGrid.l-blockGrid--11up > li:nth-child(11n+1) {
        clear: both; }
    .l-blockGrid.l-blockGrid--12up {
      margin-right: -30px; }
    .l-blockGrid.l-blockGrid--12up > li {
      width: 8.33333%;
      padding-right: 30px;
      padding-bottom: 30px; }
      .l-blockGrid.l-blockGrid--12up > li:nth-child(12n+1) {
        clear: both; } }

/*
	Tabs

	* Usage:
	<ul class="tabs">
		<li><a href="#tabs-example-1" class="is-active">Tab 1</a></li>
		<li><a href="#tabs-example-2">Tab 2</a></li>
	</ul>

	<!-- Tabs Content -->
	<ul class="l-tabsContent">
		<li id="tabs-example-1" class="is-active">
			Tab 1 content
		</li>

		<li id="tabs-example-2">
			Tab 2 content
		</li>
	</ul>
	========================================================================== */
.tabs {
  margin-bottom: 22px;
  border-bottom: 2px solid #2ecc71; }
  .tabs:after {
    content: "";
    display: table;
    clear: both; }
  .tabs.tabs--alignRight li {
    float: right; }
  .tabs.tabs--alignCentre, .tabs.tabs--alignCenter {
    text-align: center; }
    .tabs.tabs--alignCentre > li, .tabs.tabs--alignCenter > li {
      display: inline;
      float: none; }
  .tabs > li {
    float: left;
    margin: 0 5px; }
  .tabs a {
    background-color: #95a5a6;
    border-radius: 4px 4px 0 0;
    color: #fff; }
    .tabs a.is-active {
      background-color: #2ecc71; }

.l-tabsContent > li {
  display: none; }
  .l-tabsContent > li.is-active {
    display: block; }

/**
 * Tables
 */
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 22px;
  border-spacing: 0;
  background-color: #fff; }
  .table > thead th,
  .table > thead td,
  .table > tbody th,
  .table > tbody td,
  .table > tfoot th,
  .table > tfoot td {
    padding: 8px;
    line-height: 22px;
    vertical-align: top;
    border-top: 1px solid #ddd; }
  .table > thead th,
  .table > thead td {
    vertical-align: bottom;
    border-bottom: 2px solid #ddd; }
  .table > tfoot td {
    border-top: 3px solid #ddd; }
  .table > caption + thead > tr:first-child > th,
  .table > caption + thead > tr:first-child > td,
  .table > colgroup + thead > tr:first-child > th,
  .table > colgroup + thead > tr:first-child > td,
  .table > thead:first-child > tr:first-child > th,
  .table > thead:first-child > tr:first-child > td {
    border-top: 0; }
  .table > tbody + tbody {
    border-top: 2px solid #ddd; }
  .table .table {
    background-color: #fff; }

th {
  text-align: left; }

.table--condensed > thead th,
.table--condensed > thead td,
.table--condensed > tbody th,
.table--condensed > tbody td,
.table--condensed > tfoot th,
.table--condensed > tfoot td {
  padding: 5px; }

/**
 * Bordered version
 * Add borders all around the table and between all the columns.
 */
.table--bordered {
  border: 2px solid #ddd; }
  .table--bordered > thead th,
  .table--bordered > thead td,
  .table--bordered > tbody th,
  .table--bordered > tbody td,
  .table--bordered > tfoot th,
  .table--bordered > tfoot td {
    border: 1px solid #ddd; }
  .table--bordered > thead th:first-child,
  .table--bordered > thead td:first-child,
  .table--bordered > tbody th:first-child,
  .table--bordered > tbody td:first-child,
  .table--bordered > tfoot th:first-child,
  .table--bordered > tfoot td:first-child {
    border-left: 0; }
  .table--bordered > thead th:last-child,
  .table--bordered > thead td:last-child,
  .table--bordered > tbody th:last-child,
  .table--bordered > tbody td:last-child,
  .table--bordered > tfoot th:last-child,
  .table--bordered > tfoot td:last-child {
    border-right: 0; }
  .table--bordered > thead th,
  .table--bordered > thead td {
    border-bottom-width: 2px; }
  .table--bordered > tfoot th,
  .table--bordered > tfoot td {
    border-top-width: 2px;
    border-bottom: 0; }

/**
 * Rounded version
 */
.table--rounded {
  border-radius: 10px; }
  .table--rounded.table--bordered th:first-child,
  .table--rounded.table--bordered td:first-child {
    border-left: 0; }
  .table--rounded.table--bordered th:last-child,
  .table--rounded.table--bordered td:last-child {
    border-right: 0; }
  .table--rounded.table--bordered > tfoot th,
  .table--rounded.table--bordered > tfoot td {
    border-bottom: 0; }

/**
 * Zebra-striping
 * Default zebra-stripe styles (alternating gray and transparent backgrounds)
 */
.table--striped tbody :nth-child(odd) th,
.table--striped tbody :nth-child(odd) td {
  background-color: #f9f9f9 !important; }

/**
 * Hover effect
 */
.table--hover tr:hover td, .table--hover tr:hover th {
  background-color: #f5f5f5; }

/**
 * Responsive tables
 * Wrap your tables in `.tableResponsive` and we'll make them mobile friendly by enabling horizontal scrolling. Only applies <768px. Everything above that will display normally.
 *
 * If you need more responsive tables, consider Tablesaw by the Filament Group:
 * https://github.com/filamentgroup/tablesaw
 */
@media screen and (max-width: 48em) {
  .tableResponsive {
    width: 100%;
    margin-bottom: 16.5px;
    overflow-y: hidden;
    overflow-x: auto;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
    -webkit-overflow-scrolling: touch; }
    .tableResponsive > .table {
      margin-bottom: 0; }
      .tableResponsive > .table > thead th,
      .tableResponsive > .table > thead td,
      .tableResponsive > .table > tbody th,
      .tableResponsive > .table > tbody td,
      .tableResponsive > .table > tfoot th,
      .tableResponsive > .table > tfoot td {
        white-space: nowrap; }
    .tableResponsive > .table-bordered {
      border: 0; }
      .tableResponsive > .table-bordered > thead th:first-child,
      .tableResponsive > .table-bordered > thead td:first-child,
      .tableResponsive > .table-bordered > tbody th:first-child,
      .tableResponsive > .table-bordered > tbody td:first-child,
      .tableResponsive > .table-bordered > tfoot th:first-child,
      .tableResponsive > .table-bordered > tfoot td:first-child {
        border-left: 0; }
      .tableResponsive > .table-bordered > thead th:last-child,
      .tableResponsive > .table-bordered > thead td:last-child,
      .tableResponsive > .table-bordered > tbody th:last-child,
      .tableResponsive > .table-bordered > tbody td:last-child,
      .tableResponsive > .table-bordered > tfoot th:last-child,
      .tableResponsive > .table-bordered > tfoot td:last-child {
        border-right: 0; }
      .tableResponsive > .table-bordered > tbody > th,
      .tableResponsive > .table-bordered > tbody > td,
      .tableResponsive > .table-bordered > tfoot tr:last-child > th,
      .tableResponsive > .table-bordered > tfoot tr:last-child > td {
        border-bottom: 0; } }

/**
 * Preformatted code
 * Code typography styles for the <code> and <pre> elements
 */
code,
pre {
  padding: 0 3px 2px;
  font-family: Menlo, Monaco, "Courier New", monospace;
  font-size: 12.8px;
  font-size: 0.8rem;
  color: #444;
  border-radius: 3px;
  tab-size: 3; }

code {
  padding: 2px 4px;
  color: #444;
  background-color: #ddd; }

pre {
  display: block;
  padding: 11px;
  margin: 0 0 22px;
  color: #444;
  background-color: #ddd;
  border-radius: 4px;
  white-space: pre; }
  pre code {
    padding: 0;
    color: #444;
    background-color: #ddd;
    border: 0; }

.pre--scrollable {
  max-height: 340px;
  overflow-y: scroll; }

/**
 * Skip to main content link
 * <div class="skipToContent"><a href="#mainContent" class="btn btn--primary">Skip to main content</a></div>
 */
.skipToContent {
  position: relative;
  text-align: center;
  height: 0; }
  .skipToContent a {
    position: relative;
    top: -100px;
    z-index: 100;
    background-color: #fff;
    transition: all 100ms ease-in-out; }
    .skipToContent a:focus {
      top: 5px; }

/**
 * Scrollbar styling (only in webkit)
 */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  background-color: #e6e6e6; }

::-webkit-scrollbar-thumb {
  background: #999999;
  cursor: pointer;
  border-radius: 5px; }

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #cccccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }

.mfp-preloader a {
  color: #cccccc; }

.mfp-preloader a:hover {
  color: white; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: white;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }

.mfp-close:hover, .mfp-close:focus {
  opacity: 1; }

.mfp-close:active {
  top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333333; }

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
  color: white;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #cccccc;
  font-size: 12px;
  line-height: 18px; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }

.mfp-arrow:active {
  margin-top: -54px; }

.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1; }

.mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent; }

.mfp-arrow:after, .mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px; }

.mfp-arrow:before, .mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }

.mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
  border-right: 17px solid white;
  margin-left: 31px; }

.mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid #3f3f3f; }

.mfp-arrow-right {
  right: 0; }

.mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
  border-left: 17px solid white;
  margin-left: 39px; }

.mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
  border-left: 27px solid #3f3f3f; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 1200px; }

.mfp-iframe-holder .mfp-close {
  top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: black; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444444; }

.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px; }

.mfp-figure figure {
  margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }

  .mfp-img-mobile img.mfp-img {
    padding: 0; }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0; }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }
.mfp-ie7 .mfp-img {
  padding: 0; }

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px; }

.mfp-ie7 .mfp-container {
  padding: 0; }

.mfp-ie7 .mfp-content {
  padding-top: 44px; }

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0; }

/**
 * Specific for Magnific popup, will be merged into the Magnific popup .scss file for Bolt 2
 */
.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
                                             /* weird quirk on Chrome 34 / OSX: background didn't show consistently. This line fixes it.
-webkit-backface-visibility: hidden;
/* ideally, transition speed should match zoom duration */
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }

.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1; }

.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.5; }

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0; }

.mfp-bottom-bar {
  margin-top: -66px; }

img.mfp-img {
  padding-bottom: 72px; }

.mfp-figure:after {
  bottom: 72px; }

/**
 * Your app styles
 * =================================
 * Global styles
 * Example partial for masthead & footer
 * Icons - used in conjunction with grunticon
 */
/**
 * Global app/site styles
 */
html,
body {
  height: 100%; }

body {
  background-color: #fff;
  display: table;
  table-layout: fixed;
  width: 100%; }

.page-row {
  display: table-row;
  height: 1px; }

.page-row-expanded {
  height: 100%; }

img, video, iframe {
  max-width: 100%;
  height: auto; }

#header,
#main,
#footer {
  clear: both; }

#footer {
  background-color: #172983;
  color: #fff; }
  #footer a, #footer a:link {
    color: #fff; }
  #footer a:hover, #footer a:focus {
    color: #fff;
    text-decoration: underline; }
  #footer .l-container {
    padding-top: 30px;
    padding-bottom: 30px; }

/**
 * Default layout container
 */
.l-container {
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto; }
  @media screen and (max-width: 30em) {
    .l-container {
      padding-left: 15px;
      padding-right: 15px; } }
  .lt-ie9 .l-container {
    min-width: 960px; }

body {
  padding-top: 100px; }
  @media screen and (max-width: 64em) {
    body {
      padding-top: 60px; } }

.header {
  width: 100%;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  background: #fff;
  -webkit-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3); }

.header--hidden {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%); }

.header--narrow {
  height: auto; }

.navbar-brand {
  float: right;
  position: relative;
  z-index: 2;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 70px;
  height: 70px;
  width: 187px;
  background: url("../images/logo-egle.png") 0 15px no-repeat;
  background-size: auto 70px;
  padding: 15px 15px 15px 0;
  box-sizing: content-box; }
  @media screen and (max-width: 64em) {
    .navbar-brand {
      font-size: 25px;
      font-size: 1.5625rem;
      line-height: 40px;
      height: 40px;
      width: 107px;
      background-size: auto 40px;
      background-position: 0 10px;
      padding: 10px 10px 10px 0; } }

.svg .navbar-brand {
  background: url("../images/logo-egle.svg") 15px 15px no-repeat;
  background-size: auto 70px; }
  @media screen and (max-width: 64em) {
    .svg .navbar-brand {
      background-size: auto 40px;
      background-position: 10px 10px; } }

.aside-content {
  margin-top: 56px; }

/**
 * Navigation
 */
#nav {
  float: left;
  margin-top: 46px; }
  @media screen and (max-width: 64em) {
    #nav {
      margin-top: 16px; } }
  @media screen and (max-width: 48em) {
    #nav > ul {
      box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3); } }
  #nav > a {
    display: none; }
  #nav li {
    position: relative; }
    #nav li a {
      display: block;
      -webkit-transition: background 0.3s ease-out 0s;
      -moz-transition: background 0.3s ease-out 0s;
      -o-transition: background 0.3s ease-out 0s;
      transition: background 0.3s ease-out 0s;
      padding: 0 0.8em;
      font-size: 18px;
      font-size: 1.125rem;
      line-height: 54px;
      text-transform: uppercase;
      color: #404040; }
      @media screen and (max-width: 64em) {
        #nav li a {
          line-height: 44px;
          padding: 0 0.6em; } }
    #nav li:hover a {
      background: #ffcb00; }
    #nav li.active > a {
      background: #172983;
      color: #fff; }
    #nav li span:after {
      width: 0;
      height: 0;
      border: 0.313em solid transparent;
      /* 5 */
      border-bottom: none;
      border-top-color: #404040;
      content: '';
      vertical-align: middle;
      display: inline-block;
      position: relative;
      right: -0.313em;
      /* 5 */ }
    #nav li.active span:after {
      border-top-color: #fff; }
    #nav li:last-child ul {
      right: 0; }
    #nav li ul {
      display: inline;
      visibility: hidden;
      opacity: 0;
      position: absolute;
      left: 0;
      top: 100%;
      padding: 0px;
      background: #ffcb00;
      -webkit-transition: all 0.3s ease-out 0s;
      -moz-transition: all 0.3s ease-out 0s;
      -o-transition: all 0.3s ease-out 0s;
      transition: all 0.3s ease-out 0s;
      box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3); }
      @media screen and (max-width: 48em) {
        #nav li ul {
          box-shadow: none; } }
      #nav li ul li {
        float: none;
        display: block;
        max-width: 100%;
        min-width: 12em;
        margin: 0; }
        #nav li ul li:last-child {
          border-bottom: 0; }
        #nav li ul li a {
          display: block;
          border-left: 0;
          font-size: 16px;
          font-size: 1rem;
          line-height: 1.5;
          padding-top: 0.5em;
          padding-bottom: 0.5em;
          height: auto; }
          #nav li ul li a:hover {
            background: #e6b700; }
        #nav li ul li.active a {
          background-color: #172983;
          color: #fff !important;
          font-weight: 400; }
          #nav li ul li.active a:hover {
            cursor: default;
            background: #0f1b58; }
    #nav li:hover > ul {
      visibility: visible;
      z-index: 1000;
      opacity: 1; }

#nav > ul > li {
  float: left; }

@media screen and (max-width: 48em) {
  #nav {
    position: relative;
    float: none;
    margin-top: 0; }
    #nav > a {
      text-align: left;
      background-color: #172983;
      position: relative;
      padding: 0 12px;
      margin-top: 20px;
      line-height: 40px;
      color: #fff;
      font-size: 20px;
      font-size: 1.25rem; }
      #nav > a i {
        padding-right: 0.5em;
        font-size: 18px;
        font-size: 1.125rem; }
      #nav > a > a.open:before {
        content: '\f0c9'; }
      #nav > a > a.close:before {
        content: '\e608'; }
    #nav:not(:target) > a:first-of-type, #nav:target > a:last-of-type {
      display: inline-block; }
    #nav > ul {
      background-color: #ffcb00;
      height: auto;
      display: none;
      position: absolute;
      left: 0;
      right: 0;
      display: block;
      visibility: hidden;
      opacity: 0;
      -webkit-transition: all 0.3s ease-out 0s;
      -moz-transition: all 0.3s ease-out 0s;
      -o-transition: all 0.3s ease-out 0s;
      transition: all 0.3s ease-out 0s; }
      #nav > ul > li {
        width: 100%;
        float: none; }
        #nav > ul > li > a {
          padding: 0 0.8em; }
        #nav > ul > li ul {
          position: static;
          display: none; }
          #nav > ul > li ul a {
            padding-left: 1.6em; }
      #nav > ul > li:hover ul {
        position: static;
        display: block; }
    #nav:target > ul {
      visibility: visible;
      opacity: 1; } }
.navbar-meta {
  float: right; }
  .navbar-meta > li {
    display: inline-block; }
    .navbar-meta > li a {
      display: inline-block;
      padding: 0 .5em;
      font-size: 16px;
      font-size: 1rem; }
    .navbar-meta > li.active > a {
      font-weight: 600; }

.edit-link {
  margin-top: 30px;
  clear: both; }

.content-wrapper {
  margin-bottom: 30px; }

.filelist {
  list-style: none;
  padding: 0;
  margin: 0; }
  .filelist li {
    display: block;
    margin-bottom: 2px; }
    .filelist li:before {
      content: ''; }
    .filelist li a {
      background-color: #eaeaea;
      padding: 1em 3em 1em 1em;
      display: block;
      font-size: 18px;
      font-size: 1.125rem;
      line-height: 1.5;
      color: #404040;
      position: relative; }
      .filelist li a:hover {
        background-color: #ffcb00;
        color: #172983; }
      .filelist li a:before {
        content: "\e61c";
        font-family: 'icomoon';
        font-size: 16px;
        font-size: 1rem;
        padding-right: 5px; }
      .filelist li a:after {
        content: '';
        background: url(../images/pdf-file.svg) no-repeat;
        background-size: contain;
        margin: 10px;
        width: 40px;
        height: 40px;
        position: absolute;
        top: 0;
        right: 0; }

.tiles li {
  position: relative;
  margin-bottom: 30px; }
  .tiles li a img {
    display: block; }
  .tiles li a h3 {
    position: absolute;
    bottom: 0;
    margin: 0;
    padding: 10px;
    background: #eee;
    background: rgba(255, 255, 255, 0.8);
    display: block;
    width: 100%; }

form.simpleform input[type="text"],
form.simpleform input[type="password"],
form.simpleform input[type="email"],
form.simpleform textarea,
form.simpleform select {
  margin: 0 0 0.5em 0;
  width: 400px;
  max-width: 90%; }

form.simpleform textarea {
  min-height: 120px;
  min-width: 200px; }

form.simpleform label,
form.simpleform legend {
  float: left;
  clear: both;
  width: 250px;
  margin: 0.5em 0 0.25em;
  max-width: 90%; }

form.simpleform {
  background-color: #eee;
  padding: 30px;
  margin: 54px 0 20px; }

.imageholder img {
  display: block; }
.imageholder figcaption {
  font-size: 0.875em; }
.imageholder a:hover {
  position: relative;
  background: #0b0b0b;
  cursor: zoom-in; }
  .imageholder a:hover img {
    opacity: 0.5;
    background: #000; }
  .imageholder a:hover:after {
    content: '\f00e';
    font-family: 'icomoon';
    line-height: 40px;
    width: 40px;
    height: 40px;
    font-size: 40px;
    color: #ffcb00;
    position: absolute;
    left: 50%;
    margin-top: -20px;
    margin-left: -20px;
    top: 50%; }

/*
   Icons
   ========================================================================== */
[class^="icon-"], [class*=" icon-"] {
  speak: none; }

.icon-large {
  display: block;
  width: 120px;
  height: 120px; }

.icon-small {
  display: inline-block;
  width: 25px;
  height: 25px;
  vertical-align: top; }

/**
 * Views
 * =================================
 */
/**
 * Helper/utility classes
 * =================================
 */
/**
 * Utilities
 * Non-semantic helper classes
 */
/**
 * Clearfix
 * http://www.cssmojo.com/latest_new_clearfix_so_far/
 * See mixins/_utility.scss for a mixin version of this
 */
.clearfix:after {
  content: "";
  display: table;
  clear: both; }

.ir {
  background-color: transparent;
  background-repeat: no-repeat;
  border: 0;
  direction: ltr;
  display: block;
  overflow: hidden;
  text-align: left;
  text-indent: -999em; }
  .ir br {
    display: none; }

.is-hidden {
  display: none !important;
  visibility: hidden !important; }

.is-shown {
  display: block; }

.is-visuallyHidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }
  .is-visuallyHidden.focusable:active, .is-visuallyHidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto; }

.is-invisible {
  visibility: hidden; }

@media screen and (min-width: 48em) {
  .l-floatLeft {
    float: left; }
    .l-floatLeft.imageholder {
      margin-right: 30px;
      max-width: 50%; }

  .l-floatRight {
    float: right; }
    .l-floatRight.imageholder {
      margin-left: 30px;
      max-width: 50%; } }
.imageholder > a {
  display: block;
  padding: 0;
  margin: 0;
  line-height: 0; }

.l-clear {
  clear: both;
  float: none; }

.l-mb0 {
  margin-bottom: 0 !important; }

.l-mt0 {
  margin-top: 0 !important; }

/**
 * Responsive Utilities
 */
* {
  -webkit-tap-highlight-color: #172983 !important; }

/* A hack for HTML5 contenteditable attribute on mobile */
textarea[contenteditable] {
  -webkit-appearance: none; }

.promote-layer {
  /*
  This may promote the layer to a composited
  layer.

  Replace with will-change when available

  #perfmatters
  */
  backface-visibility: hidden; }

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

/**
 * Print styles
 */
/* ==========================================================================
   Print styles
   ========================================================================== */
@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster: h5bp.com/s */
    box-shadow: none !important;
    text-shadow: none !important; }

  a:visited {
    text-decoration: underline; }
  a[href]:after {
    content: " (" attr(href) ")"; }

  abbr[title]:after {
    content: " (" attr(title) ")"; }

  /*
   * Don't show links for images, or javascript/internal links
   */
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: ""; }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }

  thead {
    display: table-header-group;
    /* h5bp.com/t */ }

  tr,
  img {
    page-break-inside: avoid; }

  img {
    max-width: 100% !important; }

  p, h2, h3 {
    orphans: 3;
    widows: 3; }

  h2, h3 {
    page-break-after: avoid; } }

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



/* source-sans-pro-regular - latin */
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/source-sans-pro/source-sans-pro-v21-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/source-sans-pro/source-sans-pro-v21-latin-regulard41d.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/source-sans-pro/source-sans-pro-v21-latin-regular.html') format('woff2'), /* Super Modern Browsers */
       url('../fonts/source-sans-pro/source-sans-pro-v21-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/source-sans-pro/source-sans-pro-v21-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/source-sans-pro/source-sans-pro-v21-latin-regular.svg#SourceSansPro') format('svg'); /* Legacy iOS */
}
/* source-sans-pro-600 - latin */
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/source-sans-pro/source-sans-pro-v21-latin-600.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/source-sans-pro/source-sans-pro-v21-latin-600d41d.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/source-sans-pro/source-sans-pro-v21-latin-600.html') format('woff2'), /* Super Modern Browsers */
       url('../fonts/source-sans-pro/source-sans-pro-v21-latin-600.woff') format('woff'), /* Modern Browsers */
       url('../fonts/source-sans-pro/source-sans-pro-v21-latin-600.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/source-sans-pro/source-sans-pro-v21-latin-600.svg#SourceSansPro') format('svg'); /* Legacy iOS */
}