/**
 * @file
 * Print styling
 *
 * We provide some sane print styling for Drupal using Zen's layout method.
 */
/* line 12, ../sass/print.scss */
.print {
  width: 90%;
  margin: 0 auto;
}
/* line 17, ../sass/print.scss */
.print .field-name-field-image img {
  margin-top: 3em;
  width: 100%;
}
/* line 25, ../sass/print.scss */
.print .field-name-field-start-date .field-label,
.print .field-name-field-start-date .field-items,
.print .field-name-field-end-date .field-label,
.print .field-name-field-end-date .field-items {
  display: block;
  float: none;
}
/* line 32, ../sass/print.scss */
.print h1 {
  clear: both;
  border-bottom: 2px solid #00335c;
}
/* line 39, ../sass/print.scss */
.print .field-name-field-key-objective .field-label,
.print .field-name-field-reference-number .field-label {
  display: none;
}
/* line 43, ../sass/print.scss */
.print .details .field {
  margin: 0 0 1em;
}
/* line 44, ../sass/print.scss */
.print .details .field-name-field-reference-number {
  font-weight: 700;
}

@media print {
  /* line 53, ../sass/print.scss */
  a:link,
  a:visited {
    /* underline all links */
    text-decoration: underline !important;
  }
  /* line 57, ../sass/print.scss */
  #site-name a:link, #site-name
  a:visited {
    /* Don't underline header */
    text-decoration: none !important;
  }

  /* line 63, ../sass/print.scss */
  #content a[href]:after {
    /* Add visible URL after links. */
    content: " (" attr(href) ")";
    font-weight: normal;
    font-size: 16px;
  }
  /* line 69, ../sass/print.scss */
  #content a[href^="javascript:"]:after,
  #content a[href^="#"]:after {
    /* Only display useful links. */
    content: "";
  }
  /* line 74, ../sass/print.scss */
  #content abbr[title]:after {
    /* Add visible title after abbreviations. */
    content: " (" attr(title) ")";
  }

  /* line 79, ../sass/print.scss */
  #content {
    /* Un-float the content */
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* line 86, ../sass/print.scss */
  body,
  #page,
  #main,
  #content {
    /* Turn off any background colors or images */
    color: #000;
    background-color: transparent !important;
    background-image: none !important;
  }

  /* line 95, ../sass/print.scss */
  #skip-link,
  #toolbar,
  #navigation,
  .region-sidebar-first,
  .region-sidebar-second,
  #footer,
  .breadcrumb,
  .tabs,
  .action-links,
  .links,
  .book-navigation,
  .forum-topic-navigation,
  .pager,
  .feed-icons {
    /* Hide sidebars and nav elements */
    visibility: hidden;
    display: none;
  }
}
