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


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

/* Don't underline header */
#site-name a:link,
#site-name a:visited {
  text-decoration: none !important;
}

/* CSS2 selector to add visible href after links
#content a:link:after,
#content a:visited:after {
  content: " (" attr(href) ") ";
  font-size: 0.8em;
  font-weight: normal;
}
 */
/* Un-float the content */
#content,
#content .section {
  float: none;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

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

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

/* If you un-comment the "page { overflow-y: hidden; }" ruleset, Firefox clips
   the content after the first page. */
#page-wrapper {
  overflow-y: visible;
}


/* global - hide header and footer stuff */
#block-menu-block-2,
#block-search-form,
#skip-link,
#block-menu-block-5,
a.top {
  visibility: hidden;
  display: none;
}

/* show site name */
#layout > header #name-and-slogan a {
	background:none;
	text-indent:0;
	font-size:28px;
	height:auto;
}

/* header natural height */
#layout > header,
#layout > header #name-and-slogan {
	height:auto;
}
#layout > header .region-bft-header { 
	display:none; 
}

/* show footer copyright */
.region-footer {
  visibility: visible;
  display: block;
}

/* conditions print styles */
body.node-type-condition-information .element-invisible { display:block; height:auto; clip: auto; position: static !important; }
body.node-type-condition-information #references.collapsed { height:auto; }
body.node-type-condition-information .spe-menu { display:none; }
body.node-type-condition-information .spe-content-hidden { display:block; }
