/**
 * @file
 * Print styling
 *
 * We provide some sane print styling for Drupal using Zen's layout method.
 */
/* Underline all links. */
/* line 10, ../sass/print.scss */
a:link,
a:visited {
  text-decoration: underline !important;
  /* Don't underline header. */
}
/* line 14, ../sass/print.scss */
a:link.header__site-link,
a:visited.header__site-link {
  text-decoration: none !important;
}

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

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

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

/* Hide sidebars and nav elements. */
/* line 74, ../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,
.header-container,
.top-nav-container,
.slideshow-slides-container {
  visibility: hidden;
  display: none;
}
