@charset "UTF-8";
/**
 * style.css
 *
Theme Name: Canadian Construction Documents Committee
 * Theme URI:   http://www.machine-agency.com
 * Author:      Machine
 * Author URI:  http://www.machine-agency.com
Description: Custom Theme for Canadian Construction Documents Committee
 * Version:     1.1
 * License:     GNU General Public License v2 or later
 * License URI: http://www.gnu.org/licenses/gpl-2.0.html
 * Tags:        light
 * Text Domain: machine
 */
/**
 * TABLE OF CONTENTS
 *
 * --- OBJECTS ---
 * Buttons
 * Slider
 * Impact Areas
 *
 * --- PLUGINS ---
 * Slider
 * Parallax
 * Lazyload
 *
 * --- DEFAULTS ---
 * Forms
 * Tables
 *
 * --- GLOBALS ---
 * Site-header
 * Site-footer
 */
/**
 * STATES
 *
 * States are usually dynamically added to objects by plugins and scripts, but
 * can also be used in mark-up if needed. They should also be used for things
 * like navigational helpers on tablets, where there's no native hover state.
 *
 * Add additional states to the list when needed.
 *
 * .is-hovered       -> The item is hovered by a pointing device
 * .is-focused       -> The item is focused (e.g. after a click)
 * .is-active        -> The item is active
 * .is-inactive      -> The item is inactive
 *
 * .is-open          -> The item is open (e.g. a menu)
 * .is-closed        -> The item is closed
 *
 * .is-animating-in  -> The item is animating in (e.g. a slide)
 * .is-animating-out -> The item is animating out
 */
/* ==========================================================================
   Webfont loading (beat the FOUT)
   ========================================================================== */
/**
 * Since we use an asynchronous font loader, we hide the entire document until
 * the fonts have been loaded (or have failed to load).
 */
body.page {
  opacity: 0;
  -webkit-transition: all 1s cubic-bezier(.25,1,.25,1);
          transition: all 1s cubic-bezier(.25,1,.25,1);
  -webkit-transition-property: opacity;
          transition-property: opacity;
}
.wf-active body.page,
.wf-inactive body.page { opacity: 1; }
.wrapper-medium {
  position: relative;
  max-width: 57rem;
  padding: 0 1rem;
  margin: 0 auto;
}

.abslink {
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  position: absolute;
}
/* ==========================================================================
   Typography
   ========================================================================== */
body {
  color: #222;
  font-family: 'Open Sans', 'Arial', sans-serif;
}

.single-document.is-fixed {
  position: fixed;
}

.main ul {
  list-style: none;
  padding-left: 4em;
}

.main ul li {
  line-height: 32px;
  color: #445a67;
  font-family: 'Open Sans', 'Arial', sans-serif;
  font-size: 1em;
}

.main ul li:before {
  content: "-";
  position: relative;
  left: -2em;
  margin-left: -5px;
}

/* Headings */
h1, .alpha   { color: #f25c54; font-family: 'Open Sans', 'Arial', sans-serif; font-size: 2.500em; line-height: 1.2; font-weight: 600;}
h2, .beta    { color: #445a67; font-family: 'Open Sans', 'Arial', sans-serif; font-size: 2.25em; line-height: 1.2; font-weight: 400;}
h3, .gamma   { color: #445a67; font-family: 'Open Sans', 'Arial', sans-serif; font-size: 1.9em; line-height: 1.2; font-weight: 400; }
h4, .delta   { color: #3b617d; font-family: 'Open Sans', 'Arial', sans-serif; font-size: 1.100em; line-height: 1.2; }
h5, .epsilon { color: #3b617d; font-family: 'Open Sans', 'Arial', sans-serif; font-size: 0.950em; line-height: 1.2; }
h6, .zeta    { color: #3b617d; font-family: 'Open Sans', 'Arial', sans-serif; font-size: 0.875em; line-height: 1.2; }
/* Paragraphs & related elements */
p {
  margin: 1.5rem 0;
  line-height: 1.4;
  color: #445a67;
  font-family: 'Open Sans', 'Arial', sans-serif;
  font-size: 1em;
}
.lead {
  margin: 2rem 0;
  font-size: 1.2rem;
}
hr {
  margin-top: 2rem;
  margin-bottom: 2rem;
  border-top: solid 1px #ededed;
}
/* Links */
a:link,
a:visited {
  color: #6ab2cd;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #7dbbd3;
  text-decoration: none;
}
a:active {
  color: #57a8c6;
}
/* ==========================================================================
   Buttons
   ========================================================================== */
/**
 * Displays an element as if it was a button.
 *
 * Can be used on virtually any element, but recommended only for links, buttons
 * and input elements, or elements that have JavaScript interactions with
 * button-like behaviour.
 */
.btn {
  display: inline-block;
  padding: 0.5rem 2rem;
  border: 1px solid transparent;
  color: inherit;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  background-color: #eee;
}
/* States */
.btn:link,
.btn:visited {
  color: #333;
  text-decoration: none;
  background-color: #eee;
}
.btn:hover,
.btn:focus {
  text-decoration: none;
  background-color: #ccc;
}
.btn:active,
.btn.is-active {
  background-color: #bbb;
}
/* Modifiers */
.btn--round {
  -webkit-border-radius: 99999px;
          border-radius: 99999px;
}
.btn--rounded {
  -webkit-border-radius: 3px;
          border-radius: 3px;
}
.btn--full {
  width: 100%;
}
/* Button variations
   ========================================================================== */
/* Buttons of primary importance */
.btn--primary,
.btn--primary:link,
.btn--primary:visited {
  color: #fff;
  background-color: #6ab2cd;
}
.btn--primary:hover,
.btn--primary:focus {
  background-color: #db161f;
}
.btn--primary:active {
  background-color: #ad1118;
}
/* Buttons of secondary importance */
.btn--secondary,
.btn--secondary:link,
.btn--secondary:visited {
  color: #fff;
  background-color: #333;
}
.btn--secondary:hover,
.btn--secondary:focus {
  background-color: #3f3f3f;
}
.btn--secondary:active {
  background-color: #262626;
}
/* Menu button
   ========================================================================== */
/**
 * The menu button is exclusively used for toggling the navigation menu on
 * mobile devices, but could be used elsewhere when needed.
 */
.btn--menu {
  position: absolute;
  top: 30px;
  right: 16px;
  display: inline-block;
  padding: 8px 5px;
  color: #3b617d;
  text-transform: uppercase;
  background-color: transparent;
  -webkit-transition: all 0.2s cubic-bezier(.6,.2,.6,.9);
          transition: all 0.2s cubic-bezier(.6,.2,.6,.9);
}
@media only screen and (min-width: 58em) {
  .btn--menu {
    display: none;
  }
}
/* States */
.btn--menu:hover,
.btn--menu:focus,
.btn--menu.is-hovered,
.btn--menu.is-focused,
.btn--menu.is-active {
  outline: none;
  color: #436e8e;
  background-color: transparent;
}
.btn--menu:active {
  background-color: transparent;
}
/* Bar icon
   ========================================================================== */
/**
 * The `hamburger` icon is mainly used inside the `btn--menu` element.
 */
.btn--menu .bar,
.btn--menu .bar:before,
.btn--menu .bar:after {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 23px;
  height: 2px;
  background-color: #3b617d;
  -webkit-transition: all 0.2s cubic-bezier(.6,.2,.6,.9);
          transition: all 0.2s cubic-bezier(.6,.2,.6,.9);
}
.btn--menu .bar {
  margin-top: -2px;
  margin-left: 4px;
}
.btn--menu .bar:before,
.btn--menu .bar:after {
  content: '';
  position: absolute;
  left: 0;
}
.btn--menu .bar:before {
  top: -6px;
}
.btn--menu .bar:after {
  bottom: -6px;
}
/* States */
.btn--menu:hover .bar,
.btn--menu:hover .bar:before,
.btn--menu:hover .bar:after,
.btn--menu:focus .bar,
.btn--menu:focus .bar:before,
.btn--menu:focus .bar:after,
.btn--menu.is-hovered .bar,
.btn--menu.is-hovered .bar:before,
.btn--menu.is-hovered .bar:after,
.btn--menu.is-focused .bar,
.btn--menu.is-focused .bar:before,
.btn--menu.is-focused .bar:after,
.btn--menu.is-active .bar,
.btn--menu.is-active .bar:before,
.btn--menu.is-active .bar:after {
  background-color: #436e8e;
}
.btn--menu.is-active .bar,
.btn--menu.is-active:hover .bar,
.btn--menu.is-active:focus .bar {
  background-color: transparent;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
/**
 * The bars rotate into an `x` shape to indicate the user can close the menu.
 * This can be adjusted as required.
 */
.btn--menu.is-active .bar:before {
  top: 0;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.btn--menu.is-active .bar:after {
  bottom: 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
/* ==========================================================================
   Slider
   ========================================================================== */
/**
 * Sliders are dynamically sliding content areas (usually used as an impact
 * area) and contain slides to progressively show to the user.
 */
@media only screen and (max-width: 40em) {
    .slider {
      display: none;
    }
}

.slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 17em;
  background-color: #1e2429;
}

.slider__slide {
  height: 17em;
  width: 100%;
  position: relative;
}

.slide__transparency.overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0,0,0,0.5);
}

.slide__content p {
  margin-top: 0;
}


.slider.is-loaded {
  height: 530px;
}

.slider__subheading {
  margin: 0 auto;
}

.slider__subheading a {
  background: none;
  color: #FFF;
  text-decoration: none;
  font-size: .45em;
  text-transform: uppercase;
  display: block;
  text-align: center;
  padding: .5em;
  font-weight: 600;
  margin: 1em auto 0 auto;
}

.slider__heading {
  font-size: 1.3;
  font-weight: 700;
  margin: 0 auto;
  padding-top: 1em;
  text-align: center;
  color: #FFF;
  font-family: 'Open Sans', 'Arial', sans-serif;
  font-weight: 700;
  max-width: 700px;
  margin: 0 auto;
}

.slider__heading strong {
  color: #d31f26;
}

.slider__dot {
  border: none;
  background: #424951;
}

.slider__dot.is-active {
  background: #d31f26;
}

.owl-dots {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
}

.owl-dot {
  width: 7px;
  height: 7px;
  background: #b0bbbf;
  display: inline-block;
  border-radius: 9999px;
  margin: 0 .2em 0 .2em;
  opacity: 0.8;
}

.owl-dot.active {
  background: #f5f5f5;
}

@media only screen and (min-width: 40em) {
  .slider {
      display: block;
  }

  .slider, .slider__content {
    height: 17em;
  }
  .slider__slide {
    height: 17em;
  }

 .slider__heading {
    font-size: 1.3em;
    padding-top: 4em;
 }

 .slider__subheading {
    padding-top: .5em;
    margin: 0;
 }

.slider__subheading a {
    padding: .8em;
    margin: 0;
    font-size: 1.5em;
    font-weight: 400;
  }

  .owl-dots {
    bottom: 1em;
   }

    .owl-dot {
    width: 10px;
    height: 10px;
    margin: 0 .4em 0 .4em;
  }
}
@media only screen and (min-width: 60em) {
  .slider, .slider__content {
    height: 24.225em;
  }
  .slider__slide {
    height: 24.225em;
  }

  .slider__heading {
      font-size: 3.8em;
      padding-top: 1em;
  }

  .owl-dots {
    bottom: 2em;
   }

   .owl-dot {
    width: 15px;
    height: 15px;
    margin: 0 .5em 0 .5em;
  }
}
/* ==========================================================================
   Callouts
   ========================================================================== */
   .section--callouts {
      background: #f5f5f5;
      padding: 2em 1em;
   }

   .section--callouts .section__heading {
    margin-bottom: .25em;
   }


   .section--callouts .callout-inner {
    background: #FFF;
    padding: 2em;
    min-height: 435px;
   }

   .section--callouts .call-out__heading {
    margin: 0;
    color: #445a67;
    font-size: 1em;
    font-weight: 600;
   }

   .section--callouts .callout__split {
    border-top: 1px solid #e8e8e5;
    width: 25%;
   }

   .section--callouts .call-out__body {
    color: #23282b;
    font-size: 1.15em;
    padding-bottom: 2em;
   }

   .section--callouts .btn.btn--primary {
    background: none;
    color: #445a67;
    font-size: .75em;
    padding: 0;
    position: absolute;
    bottom: 2em;
   }

   .section--callouts .btn.btn--primary span {
    color: #23282b;
    margin-left: .5em;
   }

   .section--callouts .grid {
    text-align: center;
   }

    @media only screen and (min-width: 60em) {
    .section--callouts .grid {
      text-align: left;
     }
   }
/* ==========================================================================
   Text With Button
   ========================================================================== */
   .section--text-with-button {
    padding: 2em 1em;
   }

   .section--text-with-button h2 {
    color: #445a67;
   }

   .section--text-with-button .section__content {
    color: #445a67;
    font-size: 1em;
   }

   .section--text-with-button .btn.btn--primary {
    background: #50a5e7;
    color: #FFF;
   }
/* ==========================================================================
   Text With Button Columns
   ========================================================================== */
   .div--text-with-button-columns {
    padding: 2em 1em;
    background: #282e31;
   }

   .div--text-with-button-columns .section__content {
    color: #ccd7dd;
    font-size: 1.8em;
    max-width: 55em;
    margin: 0 auto;
   }

   .div--text-with-button-columns .section__content p{
    color:#FFF !important;
   }

   .div--text-with-button-columns .callout__button {
    padding: 0.5em 1.5em;
    color: #ccd7dd;
    font-size: 1em;
    text-decoration: none;
    max-width: 300px;
    width: 100%;
    display: block;
    margin: 0 auto;
   }

   @media only screen and (min-width: 40em) {
    .div--text-with-button-columns .callout__button {

    }
   }

    @media only screen and (min-width: 60em) {
    .div--text-with-button-columns .callout__button {
      margin: 0;
    }
   }
/* ==========================================================================
   Featured Seminar
   ========================================================================== */
   .section--featured-seminar {
    padding: 2em 1em;
    background: #f5f5f5;
   }

   .section--featured-seminar .featured_title {
    color: #50a5e7;
    font-size: 1.5em;
    margin-bottom: 0.25em;
    margin-top: 0;
   }

   .section--featured-seminar .event_date {
    margin-top: .25em;
   }
/* ==========================================================================
   Featured Documents
   ========================================================================== */
   .section--featured-documents {
    padding: 2em 1em;
   }

   .featured__document_inner {
    width: 100%;
   }

   .featured__document_inner.detail {
    border: solid 1px #ededed;
    display: block;
    margin: 0 auto;
   }

   .featured__document_inner.title {
    padding: 0 .25em;
    display: block;
    margin: 0 auto;
   }

   .section--featured-documents .document_origin,
   .section--featured-documents .document_year {
    color: #ccd7dd;
    font-size: 1.5em;
    font-weight: 700;
    text-transform: uppercase;
   }

   .section--featured-documents .document_number {
    font-size: 5em;
    font-weight: 700;
   }

   .section--featured-documents .document_number.shrink-text {
    font-size: 3em;
   }

    @media only screen and (min-width: 40em) {
      .featured__document_inner {
        max-width: 185px;
        width: 100%;
       }
    }

    @media only screen and (min-width: 60em) {
      .featured__document_inner.detail {
        margin: 0;
      }

     .featured__document_inner.title {
      margin: 0;
     }
   }
/* ==========================================================================
   About Section Detail
   ========================================================================== */
   .section--committee-members .section--committee-members-inner {
    padding: 2em 0;
    border-bottom: solid 1px #e7e7e7;
   }

   .section--committee-members .section--committee-members-inner a {
    color: #50a5e7;
   }

   .section--committee-members .section--committee-members-inner a:hover {
    color: #445a67;
   }

   .section--committee-members-inner .member_name {
    font-size: 1.2em;
    color: #50a5e7;
    margin-bottom: .5em;
   }

   .section--committee-members-inner .member_container {
    margin-top: 1.5em;
    text-align: center;
   }

   .section--committee-members-inner .member_title {
    margin-top: .5em;
   }
/* ==========================================================================
   Documents Page
   ========================================================================== */
   .documents_container .document_origin,
   .documents_container .document_year {
    color: #ccd7dd;
    font-size: 1.5em;
    font-weight: 700;
    text-transform: uppercase;
   }

   .documents_container .document_number {
    font-size: 4em;
    font-weight: 700;
   }

  .documents_container .document_number.shrink-text {
    font-size: 2em;
   }


   .documents_nav ul {
    padding: 0;
   }

   .documents_nav ul li:before {
    content: "";
   }

   .documents_nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
    border-top: solid 1px #f2f2f2;
  }

  .documents_nav li {
    display: inline-block;
    padding-left: 0;
    margin-bottom: 2em;
  }

  .documents_nav li:first-child {
    padding-left: 0;
  }

  .documents_nav ul li .btn {
    background: none;
    border: none;
    color: #C2C2C2;
    box-shadow: none;
    text-transform: uppercase;
    margin-top: 0;
    text-align: center;
    padding: 11px 0;
    font-size: .9em;
  }

  .documents_container {
    margin-top: 5em;
  }

  .documents_container a {
    text-decoration: none;
    color: #50a5e7;
  }

  .documents_container a:hover {
    color: #445a67;
  }

  .documents_nav ul li .btn.is_active {
    margin-top: -11px;
    padding-top: 11px;
    border-top: solid 11px #50a5e7;
  }

  .documents_nav ul li .btn:first-child {
    padding-left: 0;
  }

  .documents_nav ul li .btn:focus {
    outline: none;
  }

  .documents_nav ul li .btn:hover,
  .documents_nav ul li .btn.is_active {
    color: #50a5e7;
  }

  .documents_by_cat {
    opacity: 0;
      font-size: 21px;
      text-align: center;

      -webkit-transition: opacity .5s ease-in;
         -moz-transition: opacity .5s ease-in;
          -ms-transition: opacity .5s ease-in;
           -o-transition: opacity .5s ease-in;
              transition: opacity .5s ease-in;
    height: 0;
  }

  .documents_by_cat {
    position: relative;
    top: 20px;
    overflow: hidden;
  }

  .documents_by_cat.is-open {
    opacity: 1;
    height: auto;
    padding-bottom: 3em;
  }

  .documents_cat_container .document_type_title {
    font-size: 36px;
  }

  .documents_cat_container .document_type_summary p {
    font-size: 16px;
    text-align: left;
  }

  a.pdf_download {
    color: #50a5e7;
    margin-top: 1em;
    display: block;
    font-size: .95em;
  }

  .overflow-container {
    max-height: 300px;
    overflow-y: auto;
  }

  @media only screen and (min-width: 40em) {
      .documents_nav li {
        display: inline-block;
        padding-left: 1.5rem;
        margin-bottom: 0;
      }

      .documents_nav li:first-child {
        padding-left: 0;
      }
  }
/* ==========================================================================
   Document Outlets Page
   ========================================================================== */
   .featured__document_outlet_inner.detail {
    border: solid 1px #ededed;
    padding: 1.5em;
   }

   .featured__document_outlet_inner.detail h3 {
    margin: 0;
    font-size: 1.2em;
    margin-bottom: 1em;
   }

   .featured__document_outlet_inner.detail p {
    font-size: .75em;
    margin: 0;
    line-height: 30px;
   }

   .featured__document_outlet_inner.detail .outlet_website {
    margin-top: 1em;
    display: block;
   }

   .outlet_container.cell {
    padding-left:0;
   }

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

   .documents_nav {
    margin-top: 5em;
   }

   .documents_nav.outlets ul {
    border-top: none;
   }

   .documents_nav.outlets ul li {
    padding-left: 0;
    margin-bottom: 0;
   }

   .documents_nav.outlets ul li .btn {
    font-size: 1em;
    margin: 1em;
	border-top: solid 11px #FFF;
   }

   .documents_nav.outlets ul li .btn.is_active {
	border-top: solid 11px #50a5e7;
   }

   .documents_nav.outlets ul li:first-child .btn,
   .documents_nav.outlets ul li:nth-child(7) .btn {
    margin-left: 0;
   }

   .documents_nav select {
        display: none;
   }


    @media only screen and (max-width: 59.9999999em) {
      .documents_nav ul {
        display: none;
      }

      .documents_nav select {
        display: block;
        width: 100%;
        max-width: 19em;
        margin: 0 auto;
        text-align: center;
      }

      .documents_nav.outlets select option {
        text-align: center;
      }

      .documents_nav.outlets ul li {
        width: 100%;
        text-align: center;
      }

      .documents_nav.outlets ul li .btn {
        margin: 0 0 .5em;
        padding: 0;
      }
    }
/* ==========================================================================
   FAQ
   ========================================================================== */
   .main ul.faq-sidebar__question-list {
    padding-left: 0;
    margin-top: 2em;
    width: 100%;
   }

   .main ul.faq-sidebar__question-list li:before {
    content: "";
   }

   .main ul.faq-sidebar__question-list li a {
    color: #a2aaaf;
    text-decoration: none;
    font-size: .85em;
    display: block;
    line-height: 24px;
    margin-bottom: 2em;
   }

   .main ul.faq-sidebar__question-list li a:hover {
     color: #50a5e7;
   }

   .section--faq__content h3 {
    font-size: 1.25em;
    font-weight: 600;
   }

   .section--faq__sidebar {
    margin-top: 4.75em;
   }

   .section--faq__content {
    margin-top: 5em;
   }

   .section--faq__content p {
    line-height: 2em;
   }

   .section--faq__content a {
    color: #50a5e7;
    text-decoration: none;
    word-wrap: break-word;
   }

    .section--faq__content a:hover {
      color: #445a67;
    }

   .section--faq__content .faq__question-block {
    padding: 0 0 2em;
    margin-bottom: 3.5em;
    border-bottom: solid 1px #e7e7e7;
   }

   .section--faq__notice {
    padding-top: 1em;
    padding-bottom: 2em;
   }

   .section--faq__notice a {
    color: #c0c0c0;
    font-size: .85em;
   }

   a.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    text-align: center;
    width: 8rem;
    height: auto;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    display: block;
    width: 60px;
    text-decoration: none;
    line-height: .9em;
    z-index: 0;
    visibility: hidden;
    opacity: 0;
   }

   a.back-to-top.is-active {
    visibility: visible;
    opacity: 1;
   }

   .back-to-top img {
    margin-bottom: .5em;
   }

  .back-to-top span,
   {
    display: block;
    margin: 0 auto;
  }

  .back-to-top span {
    color: #445a67;
    margin-top: 0.5em;
    font-size: .75em;
    text-transform: uppercase;
  }

  @media only screen and (min-width: 40em) {
    .main ul.faq-sidebar__question-list {
      max-width: 162px;
    }
  }
/* ==========================================================================
   News & Events
   ========================================================================== */
   .documents_container.events {
    margin-top: 5em;
   }

   .documents_container.events .news_title {
    font-size: 1.45em;
    margin-top: 0;
    line-height: 1;
    margin-bottom: .5em;
   }

   .documents_container.events p.content {
    font-size: .85em;
    margin-top: 1.5em;
   }

   .documents_container.events .news_block {
    margin-bottom: 3em;
   }

   .documents_container.events .author {
    font-size: .75em;
    font-weight: 600;
    margin: 0;
    display: none;
   }

   .page-template-template-news .event__image {
    height: 156px;
    width: 100%;
   }

   .section--load-more .btn.js-load-more {
    border: solid 1px #e3e3e3;
    color: #50a5e7;
    background: none;
   }
/* ==========================================================================
   Text Block
   ========================================================================== */
   .section--text-block {
    padding: 5em 0 1em;
   }

   .section--text-block a {
    color: #50a5e7;
    text-decoration: none;
   }

   .section--text-block a:hover {
    color: #445a67;
   }
/* ==========================================================================
   Text Columns
   ========================================================================== */
   .section--text-columns .columns-inner {
    border-top: solid 1px #efefef;
    border-bottom: solid 1px #efefef;
    padding-top: 1em;
   }

   .section--text-columns h2 {
    font-size: 1.8em;
   }

   .section--text-columns h3 {
    font-size: 1.2em;
    font-weight: 600;
   }

   .section--text-columns .block {
    margin-bottom: 2em;
   }

   .section--text-columns .block a {
    color: #50a5e7;
    text-decoration: none;
   }

   .section--text-columns .block a:hover {
    color: #445a67;
   }
/* ==========================================================================
   Text With Form
   ========================================================================== */
   .section--text-with-form h2 {
    font-size: 1.8em;
   }

   .section--text-with-form .gform_wrapper .top_label .gfield_label {
    font-size: .9em;
    font-weight: 400;
   }

   .section--text-with-form .gform_wrapper .gfield_required {
    color: #445a67;
   }

   .section--text-with-form .gform_wrapper input[type="text"],
   .section--text-with-form .gform_wrapper textarea {
    width: 100%;
    padding: 1em;
    border: solid 1px #e3e3e3;
   }

   .gform_wrapper ul li.gfield.cell:first-child {
    padding-left: 0;
   }

   .field_description_below {
    margin-top: 1em;
   }

  .section--text-with-form ::-webkit-input-placeholder {
    color:    #e3e3e3;
  }

  .section--text-with-form :-moz-placeholder {
   color:    #e3e3e3;
  }

  .section--text-with-form ::-moz-placeholder {
   color:    #e3e3e3;
  }

  .section--text-with-form :-ms-input-placeholder {
   color:    #e3e3e3;
  }

  .section--text-with-form .gform_wrapper .gform_footer input[type=submit] {
    width: 184px;
    height: 50px;
    border: none;
    color: #FFF;
    background: #50a5e7;
    margin: 0 auto;
    display: block;
  }

  .gform_wrapper li.email {
      padding-left: 0;
  }

  @media only screen and (min-width: 40em) {
    .gform_wrapper li.email {
      padding-left: 1.5rem;
    }
  }
/* ==========================================================================
   Google Map
   ========================================================================== */
   .section--google-map {
    margin-top: 5em;
   }

   .map__image {
    height: 524px;
   }
   /* ==========================================================================
   Document Detail
   ========================================================================== */
  .single-document .featured__document_inner {
    width: 185px;
    text-align: center;
  }

  .single-document .featured__document_inner.detail {
    border: solid 1px #ededed;
    margin-top: .5em;
    margin-bottom: 1.5em;
  }

  .single-document .featured__document_inner.title {
    padding: 0 .25em;
  }

  .single-document .document_origin,
  .single-document .document_year {
    color: #ccd7dd;
    font-size: 1.5em;
    font-weight: 700;
    text-transform: uppercase;
  }

  .single-document .document_number {
    font-size: 5em;
    font-weight: 700;
    margin: 0;
  }

  .single-document .featured__document_inner.detail p {
    margin: 1.5rem 0;
  }

  .single-document .document_number.shrink-text {
    font-size: 2em;
  }

  .single-document .breadcrumbs {
    margin-top: 5em;
  }

  .single-document .breadcrumbs .back_to_documents {
    color: #50a5e7;
  }

  .single-document .document .article__heading {
    color: #445a67;
    font-weight: 400;
    margin-top: 0;
    font-size: 1.85em;
  }

  .single-document .proceed_to_download {
    padding: .75em 3em;
    background: #50a5e7;
    color: #FFF;
    margin: 2.5em auto;
    display: block;
    text-align: center;
    width: 260px;
  }

  .single-document .document_year {
    margin-top: 0;
  }

  .single-document .document_origin {
    margin-bottom: 0;
  }

  .single-document .document__note_title {
    padding-left: 0;
  }

  .single-document .document__note {
    margin-bottom: .3em;
  }

  .single-document .document__faqs_heading {
    font-size: 1.85em;
  }

  .single-document .document__note h3 {
    color: #445a67;
    font-size: 1.25em;
    padding: 0;
    margin: 0;
  }

  .single-document .document__note p {
    margin: 0;
    line-height: 2em;
  }

  .single-document .document__note ol,
  .single-document .document__note ul {
    padding-left: 1.3em;
    margin: 0;
  }

  .single-document .document__note ul {
    padding-left: .5em;
  }

  .single-document .document__note ul li:before {
    left: -.5em;
  }

  .single-document .document__note ol li {
    color: #445a67;
    line-height: 2em;
  }

  .accordion__heading,
  .accordion__heading:link,
  .accordion__heading:visited {
    color: #445a67;
    font-size: 0.9em;
    font-weight: 500;
    padding: 0.25em 5% 0.25em 0;
    text-decoration: none;
    position: relative;
    display: block;
    width: 100%;
  }

  .accordion__container {
    margin-bottom: 5em;
  }

  .accordion__container .accordion__item:first-child .accordion__collapse {
    display: block;
  }

  .accordion__collapse {
    display: none;
    padding: 1em 0 ;
    position: relative;
    overflow: hidden;
    width: 100%;
  }

  .accordion__collapse p {
    margin: 0;
  }

  .accordion__item p:last-child {
    margin-bottom: 0;
    padding-bottom: 1.5em;
  }

  .single-document hr {
    margin-left: 1.5rem;
  }

  .single-document hr.breadline {
    margin-left: 0;
  }

  /*Download Popup*/
  #wrapper {
    width:600px;
    margin:0 auto; /*centers the div horizontally in all browsers (except IE)*/
    background:#fff;
    text-align:left; /*resets text alignment from body tag */
    border:1px solid #ccc;
    border-top:none;
    padding:25px;
    /*Let's add some CSS3 styles, these will degrade gracefully in older browser and IE*/
    border-radius:0 0 5px 5px;
    -moz-border-radius:0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
    box-shadow:0 0 5px #ccc;
    -moz-box-shadow:0 0 5px #ccc;
    -webkit-box-shadow:0 0 5px #ccc;
  }

  .lightbox {
    position: fixed; /* keeps the lightbox window in the current viewport */
    top:0;
    left:0;
    width:100%;
    height:100%;
    text-align:center;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    overflow-y: auto;
  }

  .lightbox.is-active {
    opacity: 1;
    visibility: visible;
    background: rgba(0,0,0,0.75);
  }

  .lightbox p.lightbox_close {
    color: #000;
    font-size:1.5em;
    cursor: pointer;
	position: absolute;
	top: 0;
	right: .2em;
	margin: 0;
  }

  .lightbox div.lightbox_content {
	margin-top: 1em;
  }

  .lightbox div.lightbox_form {
    box-shadow:0 0 25px #111;
    -webkit-box-shadow:0 0 25px #111;
    -moz-box-shadow:0 0 25px #111;
    max-width: 1024px;
    width:100%;
    background: #FFF;
    margin: 0 auto;
	position: relative;
  }

  .modal-inner {
    padding: 2em;
  }

  .modal-inner .featured__document_inner.detail {
    display: none;
  }

  .modal-inner h3 {
    margin-top: 0;
  }

  .single-document .asp_source {
    border: none;
    width: 100%;
  }

  .asp_source body {
    opacity: 1;
  }

  .document_form {
    padding: 0 2em;
  }

  .asp_source .document_form {
    padding: 0;
  }

  .document_form input.textbox {
    padding: .75em;
    margin: .5em 0 1em;
  }


  .document_form label {
    font-size: 1em;
    color: #445a67;
    font-weight: 400;
  }

  .document_form h3 {
    font-size: 1.3em;
    color: #445a67;
    font-weight: 600;
  }

  .document_form .document_form_submit {
    background: #50a5e7;
    color: #FFF;
    font-weight: 300;
    font-size: 1em;
    width: 210px;
    text-align: center;
    padding: .5em 0;
    border: none;
    margin: 0 auto;
    display: block;
  }

  .document_form p.error {
    color: #f25c54;
  }

  .asp-popup {
    padding-top: 4em;
  }

  .asp_source {
    height: 24em;
  }

  @media only screen and (min-width: 40em) {
    .single-document .featured__document_inner.detail {
      margin-bottom: 0;
    }

    .accordion__heading,
    .accordion__heading:link,
    .accordion__heading:visited {
      font-size: 1.25em;
    }

   .single-document .proceed_to_download {
    margin: 2.5em 0;
   }

   .modal-inner .featured__document_inner.detail {
      display: block;
    }
  }

/* ==========================================================================
   News or Event Detail
   ========================================================================== */
  .single-news_or_event_item .article__heading {
    color: #445a67;
    font-weight: 400;
    margin-top: 0;
    font-size: 1.85em;
  }

  .single-news_or_event_item  .article__image {
    height: 20em;
    width: 100%;
    margin-bottom: 2em;
  }
/* ==========================================================================
   Parallax
   ========================================================================== */
/*.parallax {}*/
/* ==========================================================================
   Lazyload
   ========================================================================== */
[data-lazyload] {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
          transition: all 0.3s ease-out;
  -webkit-transition-property: opacity, -webkit-transform;
          transition-property: opacity,         transform;
}
.is-lazyloaded {
  opacity: 1;
}
/* ==========================================================================
   Impact areas
   ========================================================================== */
/**
 * A large content area usually found at either the very top of a page, or in
 * between other content to draw attention.
 *
 * If a background image is present, we put it on its own layer for performance
 * reasons (e.g. when using a parallax effect, it drastically improves the
 * performance as it gets composited instead of redrawn).
 */
.impact {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #f9f9f9;
  padding-bottom: 1.5em;
}
  .impact__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .impact__heading {
    font-size: 1.8rem;
    color: #f25c54;
    font-weight: 600;
  }
  .impact__subheading {
    font-size: 1rem;
  }
  .impact__body {
    font-size: 1.2rem;
  }
@media only screen and (min-width: 40em) {
  .impact__heading {
    font-size: 2.9rem;
  }
  .impact__subheading {
    font-size: 1.25rem;
  }
  .impact__body {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 60em) {
    .impact__heading {
      font-size: 2.9rem;
    }
    .impact__subheading {
      font-size: 1.25rem;
    }
    .impact__body {
      font-size: 1.4rem;
    }
}

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Default form styling in order to make sure some elements look proper when
 * there's no way to class individual elements.
 *
 * Labels, when hovered, will change the border color of the associated input
 * element if it directly follows the label.
 *
 * [1] Input elements that are nested within labels (usually checkboxes or
 *     radio-buttons), display as inline-blocks.
 */
label {
  display: block;
  font-weight: 600;
  cursor: pointer;
}
  label > input {
    display: inline-block; /* [1] */
    width: auto;
    margin-right: 0.5rem;
  }
input[type=color],
input[type=date],
input[type=datetime],
input[type=email],
input[type=file],
input[type=month],
input[type=number],
input[type=password],
input[type=range],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week],
select,
textarea {
  display: block;
  width: 100%;
  padding: 0.25em 0.5em;
  border: 1px solid #ccc;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  color: #444;
  font-weight: 300;
}
input[type=color]:hover,
input[type=date]:hover,
input[type=datetime]:hover,
input[type=email]:hover,
input[type=file]:hover,
input[type=month]:hover,
input[type=number]:hover,
input[type=password]:hover,
input[type=range]:hover,
input[type=search]:hover,
input[type=tel]:hover,
input[type=text]:hover,
input[type=time]:hover,
input[type=url]:hover,
input[type=week]:hover,
select:hover,
textarea:hover,
label:hover + input[type=color]:hover,
label:hover + input[type=date]:hover,
label:hover + input[type=datetime]:hover,
label:hover + input[type=email]:hover,
label:hover + input[type=file]:hover,
label:hover + input[type=month]:hover,
label:hover + input[type=number]:hover,
label:hover + input[type=password]:hover,
label:hover + input[type=range]:hover,
label:hover + input[type=search]:hover,
label:hover + input[type=tel]:hover,
label:hover + input[type=text]:hover,
label:hover + input[type=time]:hover,
label:hover + input[type=url]:hover,
label:hover + input[type=week]:hover,
label:hover + select,
label:hover + textarea {
  border-color: #aaa;
}
input[type=color]:focus,
input[type=date]:focus,
input[type=datetime]:focus,
input[type=email]:focus,
input[type=file]:focus,
input[type=month]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=range]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=text]:focus,
input[type=time]:focus,
input[type=url]:focus,
input[type=week]:focus,
select:focus,
textarea:focus,
label:hover + input[type=color]:focus,
label:hover + input[type=date]:focus,
label:hover + input[type=datetime]:focus,
label:hover + input[type=email]:focus,
label:hover + input[type=file]:focus,
label:hover + input[type=month]:focus,
label:hover + input[type=number]:focus,
label:hover + input[type=password]:focus,
label:hover + input[type=range]:focus,
label:hover + input[type=search]:focus,
label:hover + input[type=tel]:focus,
label:hover + input[type=text]:focus,
label:hover + input[type=time]:focus,
label:hover + input[type=url]:focus,
label:hover + input[type=week]:focus,
label:hover + select:focus,
label:hover + textarea:focus {
  outline: none;
  border-color: #83add3;
  -webkit-box-shadow: 0 0 3px 0 rgba(131, 173, 211, 0.6);
          box-shadow: 0 0 3px 0 rgba(131, 173, 211, 0.6);
}
/* Validation
   ========================================================================== */
.required {
  color: #6ab2cd;
}
/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Default table styling in order to make sure some elements look proper when
 * there's no way to class individual elements.
 */
table {
  width: 100%;
  text-align: left;
}
  thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #eee;
  }
  tbody tr {
    border-top: 1px solid #eee;
  }
  th,
  td {
    padding: 0.25rem;
    text-align: left;
  }
/* ==========================================================================
   Site-header
   ========================================================================== */
/**
 * The global header
 *
 * This element usually hosts a logo, the main navigation and other elements
 * that should show up throughout the entire website.
 */
.site-header {
  z-index: 99999;
  height: 6.5rem;
  margin-bottom: 0;
  border-bottom: 1px solid #eee;
}
  .site-header .wrapper {
    width: 100%;
    height: 100%;
  }
@media only screen and (min-width: 58em) {
  .site-header {
    height: 9.5rem;
    background-color: #fff;
  }
    .site-header .wrapper {
      padding: 1rem;
    }
}

/* ==========================================================================
   Upper Menu
   ========================================================================== */
  .header__upper__nav {
    height: 3em;
    background: #282e31;
    width: 100%;
    display: none;
  }


  .header__upper__nav ul {
    position: absolute;
    right: 16px;
    top: 18px;
  }

  .header__upper__nav ul li {
    display: inline-block;
  }

  .header__upper__nav ul li a {
    display: inline-block;
    font-size: .8em;
    color: #FFF;
    font-weight: 600;
    display: block;
    margin-left: 3.1em;
  }

  @media only screen and (min-width: 58em) {
    .header__upper__nav {
      display: block;
    }
  }


/* Sticky site header
   ========================================================================== */
.site-header--sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
/* ==========================================================================
   Logo
   ========================================================================== */
/**
 * The website's main logo, usually displayed in the site's global header.
 *
 * [1] Remove the max-width to prevent a bug in IE.
 * [2] We scale the image's height instead of width for the logo.
 */
.logo {
  position: absolute;
  top: 33px;
  left: 16px;
  display: block;
  text-decoration: none;
  color: #445a67;
}
.logo__img {
  width: auto;
  max-width: none; /* [1] */
  height: 55px;    /* [2] */
  display: inline-block;
}

.logo__text {
  display: none;
}


@media only screen and (min-width: 40em) {
    .logo {
      position: absolute;
      top: 6px;
    }
    .logo__img {
      height: 55px;
      display: inline-block;
      vertical-align: middle;
    }
    .logo__text {
      display: inline-block;
      vertical-align: middle;
      color: #445a67;
      font-size: .95em;
      margin-left: 1em;
    }
}
@media only screen and (min-width: 60em) {
  .logo__img {
    height: 55px;
  }
}
/* ==========================================================================
   Main navigation
   ========================================================================== */
/**
 * The website's main navigation, usually located in the header.
 */
.nav--main {
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0px;
  left: 0;
  width: 0;
}
  .nav--main .nav__item {
    width: 100%;
  }
    .nav--main .nav__item a {
      padding: 1rem;
      border-bottom: 1px solid #eee;
      font-weight: 300;
      font-size:15px !important;
      text-align: center;
      background-color: #50a5e7;
      -webkit-transition: all 0.2s cubic-bezier(.6,0,.6,1);
              transition: all 0.2s cubic-bezier(.6,0,.6,1);
    }
    .nav--main .nav__item a:link,
    .nav--main .nav__item a:visited {
      color: #FFF;
    }
    .nav--main .nav__item a:hover,
    .nav--main .nav__item a:focus {
      color: #50a5e7;
      text-decoration: none;
      background-color: #FFF;
    }
    .nav--main .nav__item a:active {
      border-color: #32536b;
      color: #fff;
      background-color: #3b617d;
    }
    .nav--main .nav__item:first-child a {
      border-top: 1px solid #eee;
    }
/* States */
.nav--main.is-open,
.nav--main.is-closed {
    -webkit-transition: all 0.4s cubic-bezier(.7,.2,.3,.8);
    transition: all 0.4s cubic-bezier(.7,.2,.3,.8);
}
.nav--main.is-open {
  visibility: visible;
  opacity: 1;
  top: 0;
  left: 0;
  width: 75%;
  margin-bottom: -99999px;
  padding-bottom: 99999px;
  height: 100%;
  background: #50a5e7;
}

.slide--nav {
  position: absolute;
}

@media only screen and (min-width: 58em) {
  .slide--nav {
    position: relative;
  }

  .nav--main {
    display: block;
    position: absolute;
    top: 30px;
    right: -160px;
    left: auto;
    width: auto;
    visibility: visible;
    opacity: 1;
  }
    .nav--main .nav__item {
      position: relative;
      display: inline-block;
      width: auto;
    }
      .nav--main .nav__item a {
        margin-left: 0;
        padding-left: 1rem;
        border: 0;
        background-color: transparent;
        border-right: solid 1px #e7e9ea;
        border-left: solid 1px #e7e9ea;
      }

      .nav--main .nav__item:first-child a,
      .nav--main .nav__item:last-child a {
        border: none;
      }

      .nav--main .nav__item a:link,
      .nav--main .nav__item a:visited {
        color: #111;
      }
      .nav--main .nav__item a:hover,
      .nav--main .nav__item a:focus,
      .nav--main .nav__item.current-menu-item a {
        color: #50a5e7;
        text-decoration: none;
        background-color: transparent;
      }
      .nav--main .nav__item a:active {
        background-color: transparent;
      }
      .nav--main .nav__item:first-child a {
        border: 0;
      }

      .nav--main .nav__item:last-child a {
        padding-right: 0;
      }
}

/* ==========================================================================
   Sub navigation
   ========================================================================== */
/**
 * Navigation that is used for drop-down menus. Usually in the main navigation
 * menu.
 */
.nav--sub {
  position: absolute;
  top: 90%;
  visibility: hidden;
  opacity: 0;
  width: 100%;
}
  .nav--sub .nav__item a {
    border-bottom: 1px solid #ddd;
    font-size: 0.875rem;
    background-color: #eee;
  }
  .nav--sub .nav__item a:hover,
  .nav--sub .nav__item a:focus {
    border-color: #bbb;
    color: #333;
    background-color: #ccc;
  }
  .nav--sub .nav__item a:active {
    border-color: #111;
    color: #fff;
    background-color: #333;
  }
/* States */
.nav--sub.is-open,
.nav--sub.is-closed {
  -webkit-transition: all 0.3s cubic-bezier(.7,.2,.3,.8);
          transition: all 0.3s cubic-bezier(.7,.2,.3,.8);
}
.nav--sub.is-open {
  visibility: visible;
  opacity: 1;
  top: 100%;
}
@media only screen and (min-width: 40em) {
  .nav--main .nav__item:hover > .nav--sub,
  .nav--sub .nav__item:hover > .nav--sub {
    visibility: visible;
    opacity: 1;
  }
  .nav--sub {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    width: 10rem;
    margin-left: -80px;
  }
    .nav--sub .nav__item {
      display: block;
    }
      .nav--sub .nav__item a {
        border-bottom: 1px solid #eee;
        background-color: #fff;
      }
      .nav--sub .nav__item a:hover,
      .nav--sub .nav__item a:focus {
        background-color: #eee;
      }
      .nav--sub .nav__item a:active {
        color: #fff;
        background-color: #333;
      }
      .nav--sub .nav__item:first-child a {
        border-bottom: 1px solid #eee;
        border-top: 1px solid #eee;
      }
}

.div--text-with-button-columns .external_site_links img {
  margin-bottom: 1rem;
  max-height: 92px;
}

/* ==========================================================================
   Site footer
   ========================================================================== */
/**
 * The global footer.
 *
 * This element usually hosts navigation and additional information about the
 * website that shows up on every page.
 */
.site-footer {
  color: #aaa;
  text-align: center;
  font-weight: 300;
  background: #282e31;
  padding: 2em 1em;
  position: relative;
  z-index: 1;
}

.site-footer .address_block {
  margin-top: 2rem;
}

.site-footer .address_block p {
  margin: 0;
  line-height: 16px;
  margin-bottom: .5em;
  color: #ccd7dd;
}

.site-footer .address_block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer .address_block ul li {
  display: block;
}

.site-footer .cell {
  vertical-align: middle;
}

/*.site-footer .footer_content {
  margin: 5.5em 0;
}*/

.site-footer .copyright {
  margin: 0;
  color: #445a67;
}

.site-footer .logo__img {
  margin-top: 2em;
}

.language--menu {
  text-align: center;
  width: 100%;
}

.language--menu .nav__item {
  display: block;
  text-align: center;
  margin-top: 1em;
}

.language--menu .nav__item a {
  color: #FFF;;
  font-size: 13px;
}


.language--menu .nav__item a:hover {
  color: #8a9297;
}


@media only screen and (min-width: 40em) {
  .site-footer .address_block ul li {
    display: inline-block;
  }

  .site-footer .address_block ul li:last-child p {
    padding-left: .5em;
  }

  .site-footer .logo__img {
    margin-top: 0;
  }

  .language--menu {
    position: absolute;
    bottom: 0;
    right: 1em;
    width: auto;
  }

  .language--menu .nav__item {
    display: inline-block;
    margin-top: 0;
  }

  .language--menu .nav__item a {
    padding-left: .5em;
  }

  .language--menu .nav__item:first-child a {
    border-right: solid 1px #445a67;
    padding-right: .5em;
  }

}

.subscribe-link:link,
.subscribe-link:visited {
  color: #ccd7dd;
}

.subscribe-link:hover,
.subscribe-link:active,
.subscribe-link:focus {
  text-decoration: underline;
}

@media only screen and (min-width: 60em) {
  .site-footer .address_block ul li:first-child p {
    border-right: solid 1px #8a9297;
    padding-right: .5em;
  }
}

.site-footer .logo__img {
  margin-bottom: .5rem;
}

.page-template-template-documents .documents_nav ul li .btn {
  color: #445a67;
  font-size: 1.1rem;
}

.page-template-template-document_outlets .documents_nav ul li .btn {
  color: #445a67;
}
/* ==========================================================================
   $ 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,
    a:visited { text-decoration: underline; }
    a[href]:after { content: " (" attr(href) ")"; }
    abbr[title]:after { content: " (" attr(title) ")"; }
    .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; }
    tr,
    img { page-break-inside: avoid; }
    img { max-width: 100% !important; }
    @page { margin: 0.5cm; }
    p,
    h2,
    h3 { orphans: 3; widows: 3; }
    h2,
    h3 { page-break-after: avoid; }
    .site-header,
    .site-footer,
    .content__aside { display: none; }
}
