/**
 * @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;
  }

  #site-name a:link,
  #site-name a:visited { /* Don't underline header */
    text-decoration: none !important;
  }
/*
  #content a[href]:after {  Add visible URL after links.
    content: " (" attr(href) ")";
    font-weight: normal;
    font-size: 16px;
  }
 */
  #content a[href^="javascript:"]:after,
  #content a[href^="#"]:after { /* Only display useful links. */
    content: "";
  }

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

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

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

  #header #logo {
    background: #333;
  }

  #skip-link,
  #toolbar,
  #navigation,
  .region-header,
  .region-sidebar-first,
  .region-sidebar-second,
  #footer .block:not(#block-block-7),
  .breadcrumb,
  .tabs,
  .action-links,
  .links,
  .book-navigation,
  .forum-topic-navigation,
  .pager,
  .feed-icons,
  .social,
  .articleExplore,
  .region-features,
  .topic-right-image,
  .region-content-bottom .block:not(#block-views-reference-tabs-block),
  body:not(.page-file) .top-image,
  body:not(.page-file) .top-image img,
  .topic-main-image img,
  .topic-main-image .image-description,
  .topic-main-image .articleBreadcrumbs,
  .inlineWrapper,
  .sidebars aside,
  .views-field-field-more-from-web,
  .views-field-field-partner-linking,
  .collection-toc,
  .collection-text hr,
  #block-workbench-block,
  .articleSidebar { /* Hide sidebars and nav elements */
    visibility: hidden;
    display: none;
  }
  
  #header { height:95px; }
  
  body.node-type-article #content {
	margin-top:27px;
  }
  
  .collection-text { max-height:100%; width:100%; }
  .chapter-text { display:block; }
  
  body.page-taxonomy.section-topics h1.title { color:#000; }
  
  .view-reference-tabs { width:897px; border:0; height:auto; }
  	.view-reference-tabs .tab { top:0; color:#000; border-bottom:0; margin-top:15px; }
  	.view-reference-tabs .active-tab { color:#000; border-bottom:0; }
  	.view-reference-tabs .field-content { width:auto; height:auto; position:relative; visibility:visible; clear:left; border:1px solid #d7d8da; }
  
  .articleContent,
  #footer .block-block { width:100%; }
  
  #footer .block-block { left:50px; }


} /* End @media print */
