/**
 * "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.2
 * @revision        $Revision:392 $
 * @lastmodified    $Date:2009-07-05 12:18:40 +0200 (So, 05. Jul 2009) $
 */

 /**
  * @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:10pt; }

  /* (en) Hide unneeded container of the screenlayout in print layout */
  /* (de) Für den Druck nicht benötigte Container des Layouts abschalten */
  #nav, #header, #col3, #footer_social_links , #footer_content_right, #nav_service { 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; }
  
  ul { 
	list-style-type:square; 
	list-style-position: inside; 
	background: transparent; 
  }
  
  a, p a {text-decoration: underline; color: #000; font-style: italic; background: transparent; padding: 0;}

  /*------------------------------------------------------------------------------------------------------*/

 /**
  * @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
  */

  .page {padding: 0 50px 0 50px;}
  .page_left, #col1, #col1_content { float:none; width:100%; margin:0; padding:0; border:0; }
  
  
.box_orange {
	border: 1px solid #979da7;
	overflow:hidden; 
	display:block; 
	clear:both; 
	height:1%;
	}
	
.box_orange h2 {
	display:block;
	background-color: transparent;
	margin: 0;
	padding:2px 15px 2px 15px;
	border-bottom: 2px solid #979da7;
	border-top: 1px solid #979da7;
	font-size:125%;
	color:#000000;
	text-transform: uppercase;
	}
	
.box_orange_content {
	color:#000;
	}	

/* IE6/7 */	
#footer {margin-top: 1px;}

  /*------------------------------------------------------------------------------------------------------*/

  /* (en) optional output of acronyms and abbreviations*/
  /* (de) optionale Ausgabe von Auszeichnung von Abkürzungen */

  /*
    abbr[title]:after, 
    acronym[title]:after { 
    	content:'(' attr(title) ')'; 
    	font-size: 80%;
    }
  */
  
  

  /*------------------------------------------------------------------------------------------------------*/

  /* (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;
    font-size: 80%;
  }
  */

