/**
 * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
 *
 * (en) print stylesheet
 * (de) Druck-Stylesheet
 *
 * @copyright       Copyright 2005-2011, 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.3.1
 * @revision        $Revision:392 $
 * @lastmodified    $Date:2009-07-05 12:18:40 +0200 (So, 05. Jul 2009) $
 */

@media print {
 /**
  * @section basic layout preparation
  * @see     http://www.yaml.de/en/documentation/css-components/layout-for-print-media.html
  */

  /* (en) change font size unit to [pt] - avoiding problems with [px] unit in Gecko based browsers  */
  /* (de) Wechsel der der Schriftgrößen-Maßheinheit zu [pt] - Probleme mit Maßeinheit [px] in Gecko-basierten Browsern vermeiden */
  body { font-size:11pt}
	/* body { font-size:16pt !important;} */

  /* (en) Hide unneeded container of the screenlayout in print layout */
  /* (de) Für den Druck nicht benötigte Container des Layouts abschalten */
  /* #topnav, #nav, #search, #header, #service_menu, #footer, nav { display:none; } */

 	/* Erstellt am 23.07.2012 */
	/* #main_menu,	.mod_navigation.hlist, #searchbox_right, .mod_customnav { display:none; } */

  /*------------------------------------------------------------------------------------------------------*/

  /* (en) Avoid page breaks right after headings */
  /* (de) Vermeidung von Seitenumbrüchen direkt nach einer Überschrift */
  /* h1,h2,h3,h4,h5,h6 { page-break-after:avoid; } */

  /*------------------------------------------------------------------------------------------------------*/

 /**
  * @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
  */

/* Column-Set Configuration: 1-3 (sidebar right) */
.ym-column {
	display: block;
  overflow: hidden;
  /* padding-right: 270px; */
  padding: 0px;
  width: auto;
  }

#header { display:none; }
#main-menu { display:none; }
#service-menu { display:none; }
footer { display:none; }
#secondary { display:none; }
.pdf_link { display:none; }

#col1x { display:none; }
#col2x { display:none; }
#col3x, #col3_contentx { width:100%; margin:0; padding:0; border:0; }

.ym-col2 { display:none; }
.ym-col3 { display:none; }
/* .ym-col1 { width:100% !important; margin:0 !important; padding:0 !important; border:0 !important; } */
.ym-col1 { width:auto !important; margin:0 !important; padding:0 !important; border:0 !important; }
/* .ym-col1 .ym-cbox { width:100% !important; margin:0 !important; padding:0 !important;} */

main {
	margin:0 !important;
  padding: 0 !important;
}

  /*------------------------------------------------------------------------------------------------------*/
  /* (en) optional output of acronyms and abbreviations*/
  /* (de) optionale Ausgabe von Auszeichnung von Abkürzungen */

  /*
    abbr[title]:after,
    acronym[title]:after { content:'(' attr(title) ')'; }
  */

  /*------------------------------------------------------------------------------------------------------*/

  /* (en) optional URL output of hyperlinks in print layout */
  /* (de) optionale Ausgabe der URLs von Hyperlinks */
  /*
  a[href]:after {
    content:" <URL:"attr(href)">";
    color:#444;
    background:inherit;
    font-style:italic;
  }
  */

} /* close @media print */