/**
 * @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;
    color: #000!important;
  }
  
  #header {
	  height: 50px;!important;
  }

  #breadcrumb,
  .view-id-service .view-display-id-menu, 
  .subnav_wrapper,
  #header-language-search,
  #main { /* Hide sidebars and nav elements */
    visibility: hidden;
    display: none;
  }
  
  #inner-content, h1, h2, h3, h4, h5, #block-request-brochure, #block-warranty, #block-guarantee, #block-testimonials {
	  color: #000!important;
  }
  
  #inner-content {
	  border-bottom: 0px!important;
	  box-shadow: none!important;
	  margin: 10px;
  }
  
  .page_title_wrapper {
	  height: 100%!important;
  }
  
  table.views-table {
	  width: 95%!important;
  }
  
  div.page_title {
	  background: none!important;
	  margin: 30px 0 0 5px!important;
  }
  
  div.page_title .line {
	  background: none!important;
  }

  #inner-content {
    min-height: auto !important;
    height: auto !important;
  }

} /* End @media print */
