/**
 * Kraken v6.0.0
 * A lightweight front-end boilerplate, by Chris Ferdinandi.
 * http://github.com/cferdinandi/kraken
 * 
 * Free to use under the MIT License.
 * http://gomakethings.com/mit/
 */

/**
 * @section CSS Reset
 * Meyer's CSS Reset, Normalized.css, and custom code.
 * @link http://meyerweb.com/eric/tools/css/reset/
 * @link http://necolas.github.io/normalize.css/
 */
/**
 * Mobile screen resizing
 * @link http://dev.w3.org/csswg/css-device-adapt/
 */
@-webkit-viewport {
  width: device-width;
  zoom: 1.0;
}
@-moz-viewport {
  width: device-width;
  zoom: 1.0;
}
@-ms-viewport {
  width: device-width;
  zoom: 1.0;
}
@-o-viewport {
  width: device-width;
  zoom: 1.0;
}
@viewport {
  width: device-width;
  zoom: 1.0;
}
/**
 * Remove browser defaults
 */
/* line 21, ../components/_reset.scss */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
button, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/**
 * Add box sizing to everything
 * @link http://www.paulirish.com/2012/box-sizing-border-box-ftw/
 */
/* line 47, ../components/_reset.scss */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/**
 * Set display type for HTML5 semantic elements
 */
/* line 56, ../components/_reset.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * Force scrollbar display to prevent jumping on pages.
 * Fix text resize bug on mobile devices.
 */
/* line 76, ../components/_reset.scss */
html {
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/**
 * Display audio, canvas, and video elements as inline block elements.
 */
/* line 85, ../components/_reset.scss */
audio,
canvas,
video {
  display: inline-block;
}

/**
 * Prevent modern browsers from displaying audio without controls.
 */
/* line 94, ../components/_reset.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Prevent img and video elements from spilling outside of the page on smaller screens.
 */
/* line 102, ../components/_reset.scss */
img,
video {
  max-width: 100%;
  height: auto;
}

/**
 * Prevent iframe, object, and embed elements from spilling outside of the page on smaller screens.
 * height: auto causes iframes to smush, so it's omitted here.
 */
/* line 112, ../components/_reset.scss */
iframe,
object,
embed {
  max-width: 100%;
}

/**
 * Hide the template element in IE, Safari, and Firefox < 22.
 */
/* line 121, ../components/_reset.scss */
template {
  display: none;
  visibility: hidden;
}

/**
 * Prevents IE from making scaled images look like crap
 */
/* line 129, ../components/_reset.scss */
img {
  -ms-interpolation-mode: bicubic;
}

/**
 * Address outline inconsistency between Chrome and other browsers.
 */
/* line 136, ../components/_reset.scss */
a:focus,
button:focus {
  outline: thin dotted;
  outline: 0.3125em auto -webkit-focus-ring-color;
  outline-offset: -0.15625em;
}

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

/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
/* line 154, ../components/_reset.scss */
abbr[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/**
 * @section Grid
 * Structure and layout
 */
/**
 * Base grid styles: single column
 */
/* line 9, ../components/_grid.scss */
.container {
  max-width: 80em;
  width: 88%;
  margin-left: auto;
  margin-right: auto;
}

/* line 16, ../components/_grid.scss */
.row {
  margin-left: -1.4%;
  margin-right: -1.4%;
}

/* line 21, ../components/_grid.scss */
.grid-fourth, .grid-third, .grid-half, .grid-two-thirds, .grid-three-fourths, .grid-full, .grid-dynamic {
  float: left;
  width: 100%;
  padding-left: 1.4%;
  padding-right: 1.4%;
}

/**
 * Reverses order of grid for content choreography
 */
/* line 38, ../components/_grid.scss */
.grid-flip {
  float: right;
}

/**
 * Add columns to grid on bigger screens
 */
@media (min-width: 20em) {
  /* line 49, ../components/_grid.scss */
  .row-start-xsmall .grid-fourth {
    width: 25%;
  }

  /* line 49, ../components/_grid.scss */
  .row-start-xsmall .grid-third {
    width: 33.33333%;
  }

  /* line 49, ../components/_grid.scss */
  .row-start-xsmall .grid-half {
    width: 50%;
  }

  /* line 49, ../components/_grid.scss */
  .row-start-xsmall .grid-two-thirds {
    width: 66.66667%;
  }

  /* line 49, ../components/_grid.scss */
  .row-start-xsmall .grid-three-fourths {
    width: 75%;
  }

  /* line 49, ../components/_grid.scss */
  .row-start-xsmall .grid-full {
    width: 100%;
  }
}
@media (min-width: 30em) {
  /* line 49, ../components/_grid.scss */
  .row-start-small .grid-fourth {
    width: 25%;
  }

  /* line 49, ../components/_grid.scss */
  .row-start-small .grid-third {
    width: 33.33333%;
  }

  /* line 49, ../components/_grid.scss */
  .row-start-small .grid-half {
    width: 50%;
  }

  /* line 49, ../components/_grid.scss */
  .row-start-small .grid-two-thirds {
    width: 66.66667%;
  }

  /* line 49, ../components/_grid.scss */
  .row-start-small .grid-three-fourths {
    width: 75%;
  }

  /* line 49, ../components/_grid.scss */
  .row-start-small .grid-full {
    width: 100%;
  }
}
@media (min-width: 40em) {
  /* line 49, ../components/_grid.scss */
  .grid-fourth {
    width: 25%;
  }

  /* line 49, ../components/_grid.scss */
  .grid-third {
    width: 33.33333%;
  }

  /* line 49, ../components/_grid.scss */
  .grid-half {
    width: 50%;
  }

  /* line 49, ../components/_grid.scss */
  .grid-two-thirds {
    width: 66.66667%;
  }

  /* line 49, ../components/_grid.scss */
  .grid-three-fourths {
    width: 75%;
  }

  /* line 49, ../components/_grid.scss */
  .grid-full {
    width: 100%;
  }

  /* line 55, ../components/_grid.scss */
  .offset-fourth {
    margin-left: 25%;
  }

  /* line 55, ../components/_grid.scss */
  .offset-third {
    margin-left: 33.33333%;
  }

  /* line 55, ../components/_grid.scss */
  .offset-half {
    margin-left: 50%;
  }

  /* line 55, ../components/_grid.scss */
  .offset-two-thirds {
    margin-left: 66.66667%;
  }

  /* line 55, ../components/_grid.scss */
  .offset-three-fourths {
    margin-left: 75%;
  }

  /* line 55, ../components/_grid.scss */
  .offset-full {
    margin-left: 100%;
  }
}
/**
 * Dynamic grid
 */
@media (min-width: 20em) {
  /* line 71, ../components/_grid.scss */
  .grid-dynamic {
    width: 50%;
  }
}
@media (min-width: 30em) {
  /* line 71, ../components/_grid.scss */
  .grid-dynamic {
    width: 33.33333%;
  }
}
@media (min-width: 40em) {
  /* line 71, ../components/_grid.scss */
  .grid-dynamic {
    width: 25%;
  }
}
/**
 * @section Typography
 * Sets font styles for entire site
 */
/* line 6, ../components/_typography.scss */
body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 100%;
  line-height: 1.5;
  color: #272727;
  background: #ffffff;
}
@media (min-width: 40em) {
  /* line 6, ../components/_typography.scss */
  body {
    line-height: 1.5625;
  }
}
@media (min-width: 80em) {
  /* line 6, ../components/_typography.scss */
  body {
    font-size: 125%;
  }
}

/* line 24, ../components/_typography.scss */
p {
  margin-bottom: 1.5625em;
}

/**
 * Hyperlink styling
 */
/* line 33, ../components/_typography.scss */
a {
  color: #0088cc;
  text-decoration: none;
  word-wrap: break-word;
}

/* line 39, ../components/_typography.scss */
a:hover,
a:focus {
  color: #005580;
  text-decoration: underline;
}

/* line 45, ../components/_typography.scss */
a img {
  border: none;
  background: none;
}

/**
 * Prevents border/background on linked image hover.
 * Adds slight opacity.
 */
/* line 54, ../components/_typography.scss */
a:hover img {
  border: none;
  background: none;
  opacity: 0.8;
}

/**
 * List styling
 */
/* line 65, ../components/_typography.scss */
ul,
ol,
dl {
  margin-bottom: 1.5625em;
  margin-left: 2em;
}

/* line 72, ../components/_typography.scss */
ul ul,
ul ol,
ol ol,
ol ul {
  margin-bottom: 0;
}

/* line 79, ../components/_typography.scss */
dl {
  margin-left: 0;
}

/* line 83, ../components/_typography.scss */
dt {
  font-weight: bold;
}

/**
 * Removes list styling.
 * For semantic reasons, should only be used on unordered lists.
 */
/* line 91, ../components/_typography.scss */
.list-unstyled {
  margin-left: 0;
  list-style: none;
}

/**
 * Display lists on a single line.
 */
/* line 100, ../components/_typography.scss */
.list-inline {
  list-style: none;
  margin-left: -0.5em;
  margin-right: -0.5em;
  padding: 0;
}

/* line 107, ../components/_typography.scss */
.list-inline > li {
  display: inline;
  margin-left: 0.5em;
  margin-right: 0.5em;
}

/**
 * Heading styling for h1 through h6 elements.
 * Heading class lets you use one heading type for semantics, but style it as another heading type.
 */
/* line 119, ../components/_typography.scss */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: normal;
  margin-bottom: 1em;
  padding-top: 1em;
  word-wrap: break-word;
}

/* line 127, ../components/_typography.scss */
h1,
.h1 {
  font-size: 1.5em;
  padding-top: .5em;
}
@media (min-width: 40em) {
  /* line 127, ../components/_typography.scss */
  h1,
  .h1 {
    font-size: 1.75em;
  }
}

/* line 137, ../components/_typography.scss */
h2,
.h2 {
  font-size: 1.3125em;
}

/* line 142, ../components/_typography.scss */
h3,
.h3 {
  font-size: 1.1875em;
}

/* line 147, ../components/_typography.scss */
h4, h5, h6,
.h4, .h5, .h6 {
  font-size: 1em;
}

/* line 152, ../components/_typography.scss */
h4,
.h4 {
  text-transform: uppercase;
}

/**
 * Lines, Quotes and Emphasis
 */
/* line 162, ../components/_typography.scss */
hr {
  margin: 2em auto;
  border: 0;
  border-top: 0.0725em solid #e5e5e5;
  border-bottom: 0 solid #ffffff;
}

/* line 169, ../components/_typography.scss */
strong {
  font-weight: bold;
}

/* line 173, ../components/_typography.scss */
em {
  font-style: italic;
}

/* line 177, ../components/_typography.scss */
sub,
sup {
  position: relative;
  font-size: 85%;
  font-weight: bold;
  line-height: 0;
  vertical-align: baseline;
  margin-left: 0.25em;
}

/* line 187, ../components/_typography.scss */
sup {
  top: -0.5em;
}

/* line 191, ../components/_typography.scss */
sub {
  bottom: -0.25em;
}

/**
 * Highlighting colors
 */
/* line 198, ../components/_typography.scss */
::-moz-selection {
  color: #ffffff;
  background: #0088cc;
}
::selection {
  color: #ffffff;
  background: #0088cc;
}

/**
 * Blockquotes
 */
/* line 207, ../components/_typography.scss */
blockquote {
  border-left: 0.25em solid #e5e5e5;
  margin-bottom: 1.5625em;
  padding-left: 1.5625em;
  padding-right: 1.5625em;
}

/* line 214, ../components/_typography.scss */
blockquote, q {
  quotes: none;
}

/* line 218, ../components/_typography.scss */
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

/**
 * @section Code
 * Styling for code and preformatted text.
 */
/* line 6, ../components/_code.scss */
code,
pre {
  font-family: Menlo, Monaco, "Courier New", monospace;
  font-size: 0.875em;
  border-radius: 0.0725em;
}

/* line 13, ../components/_code.scss */
code {
  color: #dd1144;
  background-color: #f7f7f7;
  padding: 0.25em;
}

/* line 19, ../components/_code.scss */
pre {
  display: block;
  margin-bottom: 1.5625em;
  line-height: 1.5;
  background-color: #f4f4f4;
  padding: 0.8125em;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  white-space: pre-wrap;
  word-break: break-all;
}

/* line 30, ../components/_code.scss */
pre code {
  font-size: 1em;
  padding: 0;
  color: inherit;
  background-color: transparent;
  border: 0;
}

/**
 * @section Buttons
 * Styling for CSS buttons.
 */
/* line 6, ../components/_buttons.scss */
.btn {
  display: inline-block;
  font-size: 0.9375em;
  padding: 0.5em 0.6875em;
  line-height: 1.2;
  font-weight: normal;
  background-color: #0088cc;
  border: 0.0725em solid #0088cc;
  border-radius: 0.0725em;
  margin-right: 0.3125em;
  margin-bottom: 0.3125em;
}

/* line 19, ../components/_buttons.scss */
.btn,
.btn:visited,
a .btn:visited,
.btn:hover,
a .btn:hover,
.btn:focus,
a .btn:focus,
.btn:active,
a .btn:active,
.btn.active {
  color: #ffffff;
}

/* line 32, ../components/_buttons.scss */
.btn:hover,
a .btn:hover,
.btn:focus,
a .btn:focus,
.btn:active,
a .btn:active,
.btn.active {
  background-color: #005580;
  border-color: #005580;
  text-decoration: none;
}

/* line 44, ../components/_buttons.scss */
.btn-secondary {
  background-color: #808080;
  border-color: #808080;
}

/* line 49, ../components/_buttons.scss */
.btn-secondary:hover,
a .btn-secondary:hover,
.btn-secondary:focus,
a .btn-secondary:focus,
.btn-secondary:active,
a .btn-secondary:active,
.btn-secondary.active {
  background-color: #5a5a5a;
  border-color: #5a5a5a;
}

/* line 60, ../components/_buttons.scss */
.btn:active,
.btn.active {
  -webkit-box-shadow: inset 0 0.15625em 0.25em rgba(0, 0, 0, 0.15), 0 0.0725em 0.15625em rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 0.15625em 0.25em rgba(0, 0, 0, 0.15), 0 0.0725em 0.15625em rgba(0, 0, 0, 0.05);
  outline: 0;
}

/* line 66, ../components/_buttons.scss */
.btn.disabled,
.btn[disabled] {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.5;
  filter: alpha(opacity=50);
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 75, ../components/_buttons.scss */
.btn-large {
  padding: 0.6875em 0.9375em;
  font-size: 1em;
  line-height: normal;
}

/* line 81, ../components/_buttons.scss */
.btn-block,
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  display: block;
  width: 100%;
  margin-right: 0;
  padding-right: 0;
  padding-left: 0;
}

/* line 92, ../components/_buttons.scss */
button,
.btn {
  cursor: pointer;
  text-align: center;
  vertical-align: middle;
  /**
   * @workaround Override default button styling
   * @affected Webkit/Firefox
   */
  background-image: none;
  -webkit-appearance: none;
}

/* line 105, ../components/_buttons.scss */
.btn:last-child,
input.btn {
  margin-right: 0;
}

/**
 * @section Forms
 * Styling for form elements.
 */
/* line 6, ../components/_forms.scss */
form,
fieldset {
  margin-bottom: 1.5625em;
}

/* line 11, ../components/_forms.scss */
legend,
label {
  display: block;
  font-weight: normal;
  padding: 0;
  margin-bottom: 0.3125em;
}

/* line 19, ../components/_forms.scss */
input,
textarea,
select {
  display: block;
  width: 100%;
  font: inherit;
  line-height: 1.5;
  color: #555555;
  margin-bottom: 1.1875em;
  padding: 0.3125em;
  border: 0.0725em solid #b8b8b8;
  border-radius: 0.0725em;
}
@media (min-width: 40em) {
  /* line 19, ../components/_forms.scss */
  input,
  textarea,
  select {
    line-height: 1.5625;
  }
}

/* line 37, ../components/_forms.scss */
form button,
form .button {
  margin-bottom: 1.1875em;
}

/* line 42, ../components/_forms.scss */
textarea {
  height: 12em;
}

/* line 46, ../components/_forms.scss */
input[type="image"],
input[type="checkbox"],
input[type="radio"] {
  display: inline-block;
  width: auto;
  height: auto;
  padding: 0;
  margin-bottom: 0.3125em;
  cursor: pointer;
}

/* line 57, ../components/_forms.scss */
input:focus,
textarea:focus {
  border-color: rgba(82, 168, 236, 0.8);
  -webkit-box-shadow: inset 0 0.0725em 0.0725em rgba(0, 0, 0, 0.075), 0 0 0.5em rgba(82, 168, 236, 0.6);
  box-shadow: inset 0 0.0725em 0.0725em rgba(0, 0, 0, 0.075), 0 0 0.5em rgba(82, 168, 236, 0.6);
  outline: 0;
  outline: thin dotted \9;
}

/* line 65, ../components/_forms.scss */
input[type="file"]:focus,
input[type="checkbox"]:focus,
select:focus {
  outline: thin dotted;
  outline: 0.3125em auto -webkit-focus-ring-color;
  outline-offset: -0.125em;
}

/**
 * Inline inputs
 */
/* line 77, ../components/_forms.scss */
.input-inline {
  display: inline-block;
  width: auto;
  vertical-align: middle;
}

/**
 * Condensed inputs
 */
/* line 87, ../components/_forms.scss */
.input-condensed {
  padding: 0.0725em 0.3125em;
  font-size: 0.9375em;
}

/**
 * @section SVGs
 * SVG icon sprite styling.
 * @link http://css-tricks.com/svg-sprites-use-better-icon-fonts/
 * @link http://css-tricks.com/svg-use-external-source/
 */
/**
 * Hide icons by default to prevent blank spaces in unsupported browsers
 */
/* line 11, ../components/_svg.scss */
.icon {
  display: inline-block;
  fill: currentColor;
  height: 0;
  width: 0;
}

/**
 * Display icons when browser supports SVG.
 * Inherit height, width, and color.
 */
/* line 22, ../components/_svg.scss */
.svg .icon {
  height: 1em;
  width: 1em;
}

/**
 * Hide fallback text if browser supports SVG
 */
/**
 * @section Overrides
 * Nudge and tweak alignment, spacing, and visibility.
 */
/**
 * Text sizes
 */
/* line 11, ../components/_overrides.scss */
.text-small {
  font-size: 0.9375em;
}

/* line 15, ../components/_overrides.scss */
.text-large {
  font-size: 1.1875em;
  line-height: 1.4;
}
@media (min-width: 40em) {
  /* line 15, ../components/_overrides.scss */
  .text-large {
    font-size: 1.3125em;
  }
}

/**
 * Text colors
 */
/* line 29, ../components/_overrides.scss */
.text-muted {
  color: #808080;
}

/**
 * Text alignment
 */
/* line 38, ../components/_overrides.scss */
.text-center {
  text-align: center;
}

/* line 42, ../components/_overrides.scss */
.text-right {
  text-align: right;
}

/* line 46, ../components/_overrides.scss */
.text-left {
  text-align: left;
}

/**
 * Floats
 */
/* line 55, ../components/_overrides.scss */
.float-left {
  float: left;
}

/* line 59, ../components/_overrides.scss */
.float-center {
  float: none;
  margin-left: auto;
  margin-right: auto;
}

/* line 65, ../components/_overrides.scss */
.float-right {
  float: right;
}

/**
 * Margins
 */
/* line 74, ../components/_overrides.scss */
.no-margin {
  margin: 0;
}

/* line 78, ../components/_overrides.scss */
.no-margin-top {
  margin-top: 0;
}

/* line 82, ../components/_overrides.scss */
.no-margin-bottom {
  margin-bottom: 0;
}

/* line 86, ../components/_overrides.scss */
.margin-top {
  margin-top: 1.5625em;
}

/* line 90, ../components/_overrides.scss */
.margin-bottom {
  margin-bottom: 1.5625em;
}

/* line 94, ../components/_overrides.scss */
.margin-bottom-small {
  margin-bottom: 0.5em;
}

/* line 98, ../components/_overrides.scss */
.margin-bottom-large {
  margin-bottom: 2em;
}

/**
 * Padding
 */
/* line 107, ../components/_overrides.scss */
.no-padding {
  padding: 0;
}

/* line 111, ../components/_overrides.scss */
.no-padding-top {
  padding-top: 0;
}

/* line 115, ../components/_overrides.scss */
.no-padding-bottom {
  padding-bottom: 0;
}

/* line 119, ../components/_overrides.scss */
.padding-top {
  padding-top: 1.5625em;
}

/* line 123, ../components/_overrides.scss */
.padding-top-small {
  padding-top: 0.5em;
}

/* line 127, ../components/_overrides.scss */
.padding-top-large {
  padding-top: 2em;
}

/* line 131, ../components/_overrides.scss */
.padding-bottom {
  padding-bottom: 1.5625em;
}

/* line 135, ../components/_overrides.scss */
.padding-bottom-small {
  padding-bottom: 0.5em;
}

/* line 139, ../components/_overrides.scss */
.padding-bottom-large {
  padding-bottom: 2em;
}

/**
 * Visibility
 */
/**
 * Visually hide an element, but leave it available for screen readers
 * @link https://github.com/h5bp/html5-boilerplate/blob/master/dist/css/main.css
 * @link http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */
/* line 153, ../components/_overrides.scss */
.screen-reader, .svg .icon-fallback-text {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/**
 * Extends the .screen-reader class to allow the element to be focusable when navigated to via the keyboard
 * @link https://github.com/h5bp/html5-boilerplate/blob/master/dist/css/main.css
 * @link https://www.drupal.org/node/897638
 */
/* line 169, ../components/_overrides.scss */
.screen-reader-focusable:active,
.screen-reader-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/**
 * @workaround
 * @affected IE 8/9/10
 * @link http://juicystudio.com/article/screen-readers-display-none.php
 */
/* line 184, ../components/_overrides.scss */
[hidden] {
  display: none;
  visibility: hidden;
}

/**
 * Contain floats
 * The space content is one way to avoid an Opera bug when the `contenteditable` attribute is included anywhere else in the document.
 * @link https://github.com/h5bp/html5-boilerplate/blob/master/dist/css/main.css
 */
/* line 196, ../components/_overrides.scss */
.clearfix:before, .container:before,
.row:before,
.clearfix:after,
.container:after,
.row:after {
  display: table;
  content: " ";
}

/* line 202, ../components/_overrides.scss */
.clearfix:after, .container:after,
.row:after {
  clear: both;
}

/**
 * @section Print
 * Styling for printed content. Adapted from HTML5BP.
 * @link http://html5boilerplate.com
 */
@media print {
  /**
   * Universal selector.
   * Reset all content to transparent background, black color, and remove box and text shadows.
   */
  /* line 13, ../components/_print.scss */
  * {
    background: transparent !important;
    color: #000 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  /**
   * Specifies page margin
   */
  @page {
    margin: 0.5cm;
  }
  /**
   * Underline all links
   */
  /* line 30, ../components/_print.scss */
  a,
  a:visited {
    text-decoration: underline;
  }

  /**
   * Show URL after links
   */
  /* line 38, ../components/_print.scss */
  a[href]:after {
    content: " (" attr(href) ")";
  }

  /**
   * Don't show URL for internal links
   */
  /* line 45, ../components/_print.scss */
  a[href^="#"]:after {
    content: "";
  }

  /**
   * Specifies the minimum number of lines to print at the top and bottom of a page.
   */
  /* line 52, ../components/_print.scss */
  p,
  h1, h2, h3 {
    orphans: 3;
    widows: 3;
  }

  /**
   * Avoid inserting a page break after headers
   */
  /* line 61, ../components/_print.scss */
  h1, h2, h3 {
    page-break-after: avoid;
  }

  /**
   * Change border color on blockquotes and preformatted text.
   * Avoid page breaks inside the content
   */
  /* line 69, ../components/_print.scss */
  pre,
  blockquote {
    border-color: #999;
    page-break-inside: avoid;
  }

  /**
   * Displayed as a table header row group
   */
  /* line 78, ../components/_print.scss */
  thead {
    display: table-header-group;
  }

  /**
   * Avoid inserting a page break inside table rows and images
   */
  /* line 85, ../components/_print.scss */
  tr,
  img {
    page-break-inside: avoid;
  }
}
