/**
 * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
 *
 * (en) print stylesheet
 * (de) Druck-Stylesheet
 *
 * @copyright       Copyright 2005-2009, Dirk Jesse
 * @license         CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/),
 *                  YAML-C (http://www.yaml.de/en/license/license-conditions.html)
 * @link            http://www.yaml.de
 * @package         yaml
 * @version         3.1
 * @revision        $Revision: 343 $
 * @lastmodified    $Date: 2009-01-19 23:41:32 +0100 (Mo, 19. Jan 2009) $
 */

@media print {
  /**
   * @section column selection
   * (en) individually switch on/off any content column for printing
   * (de) (De)aktivierung der Contentspalten für den Ausdruck
   *
   * @see     http://www.yaml.de/en/documentation/css-components/layout-for-print-media.html
   */
  #header, #footer, #nav, #col1, #slideinnav {
    display: none;
  }
  #col3 {
    margin: 0;
  }
  #messagingcontainer .msg.debug {
    display: none;
  }
  #printheader {
    display: block;
    padding-bottom: 10px;
    border-bottom: 1px #cf2030 dotted;
    margin-bottom: 10px;
  }
  #printheader .logo {
    margin-right: 50px;
  }
  body {
    font-size: 10pt;
  }
  html {
    margin-bottom: 0;
  }
  .print {
    position: static;
    left: 0;
  }
  .noprint {
    display: none !important;
  }
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }

}