/**
 * @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,
  #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 { /* Hide sidebars and nav elements */
    visibility: hidden;
    display: none;
  }
  #cr-show-repair-slip-callback {font-size:0.8em;}
  .page-print-return-slip #page #edit-subcontainer table th:nth-child(3) {width:40%;}
  #edit-bar-codes tbody {border-top:none;}
  .rmanumber, .requestnumber {float:left;width:45%;}
  .page-print-return-slip #phonenumber h2 {line-height: 1em;margin-top: 0;float: right;font-size:0.8em;}
  .page-print-return-slip .linerow h2 {margin: 0;}

.page-print-return-slip #request_no_barcode table,
.page-print-return-slip #rma_no_barcode table{max-height:101px !important}
#request_no_barcode table td, #request_no_barcode table tr,
#rma_no_barcode table td, #rma_no_barcode table tr{vertical-align:top !important}
#request_no_barcode table tr,
#rma_no_barcode table tr{line-height:0.1em}
.rmanumber, .requestnumber {
float: left;
width: 304px !important;
}
} /* End @media print */
