/* ***************************************************************************
 *                                                                           *
 * PDFUnit - Automated PDF Tests                                             *
 *                                                                           *
 * Copyright (C) 2016 PDFUnit.com                                            *
 *                                                                           *
 * This file is part of the commercial library PDFUnit.                      *
 *                                                                           *
 * Legal information__: http://pdfunit.com/en/licenseinfo.html               *
 * Manual_____________: http://pdfunit.com/en/documentation/                 *
 * Contact for license: license[at]pdfunit.com                               *
 *                                                                           *
 *************************************************************************** *
 * Author: Carsten Siedentop                                                 *
 * Date:   September 2013                                                    *
 *************************************************************************** */
 
/* 
 * Formattings for the print layout.
 */

@media print { 
  
  a:link, a:visited {
    text-decoration: none;
  }
  
  html {
    page-break-after:avoid;
    page-break-before:avoid;
  }

  body {
    background-color: white !important;
    background-image: none !important;
    font-family: Arial;
    font-style: sans-serif;
    /* 
      The font size must not be greater than 10pt, otherwise 
      listings will be cut on the right-hand side. 
    */
    font-size: 10pt;
    padding: 0;
    margin: 0;
    width: 100%;
  }
  
  .ActionProperty {
    table-layout: fixed;
    width: 30%;
  }
  
  .ActionDescription {
    table-layout: fixed;
    width: 70%;
  }
  
  .code {
    font-family: fixed, monospace;
  }
  
  .headerbild:after:lang(de) {
    content: "Weitere Information auf www.pdfunit.com";  
  }

  .headerbild:after:lang(en) {
    content: "More information on www.pdfunit.com";  
  }

  .informaltable {
     border-collapse: collapse;
  }
  
  .navheader, .navfooter {
    display: none;
  }
 
}