/**
 * @file
 * Print styling
 *
 * We provide some sane print styling for Drupal using Zen's layout method.
 */

@media print {

  a:link,
  a:visited { /* underline all links */
    text-decoration: underline !important;
  }

  #content abbr[title]:after { /* Add visible title after abbreviations. */
    content: " (" attr(title) ")";
  }

  #content { /* Un-float the content */
    float: none !important;
    width: 96% !important;
    margin: 2% !important;
    padding: 0 !important;
  }

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

  #skip-link,
  #toolbar,
  #navigation,
  .region-sidebar-first,
  .region-sidebar-second,
  #footer,
  .breadcrumb,
  .tabs,
  .action-links,
  .links,
  .book-navigation,
  .forum-topic-navigation,
  .pager,
  .feed-icons,
  #precontent,
  .img-border,
  #footer-wrapper-wrapper,
  #postfooter-wrapper,
  .logo-allgaeu,
  .side-icon,
  #zur-gemeinde{ /* Hide sidebars and nav elements */
    visibility: hidden;
    display: none;
  }
  #header-wrapper{
    background:transparent;
    height:auto;
    position:relative;
    box-shadow:none;
    text-align:right;
  }
  #header{
    height:auto;
    text-align:right;
  }
  #logo{
    position:relative;
    top:auto;
    margin:0 20px;
  }

} /* End @media print */
