﻿@charset "UTF-8";
/**
 * "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) $
 */


@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:10pt; margin:5px; padding:5px;  }

  /* (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 { 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
  */

  #col1 { display:none;}
  #col2 { display:none; }
  #col3, #col3_content  
  {
  	width:100%; 
  	margin-top:0px;
  	margin-right:0px;
  	margin-bottom:0px; 
  	padding:0; 
  	border:0px none; 
  	font-size:8pt;
  }
  
  #divContent 
  {

  	margin-right:-10px;
  	margin-left:-10px;
  }
  
  table 
  {
  	max-width:100%;
  }

  /*------------------------------------------------------------------------------------------------------*/

  /* (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;
  }
  */
  
  /*------------------------------------------------------------------------------------------------------*/
  
  #divCXError, #divCodeError, #divOnlineUser, #divSmartArchive, #divSubHeader, #divSubMenuOuterFrame,
  #divSubMenuFrame, #divSubMenu, #divHelpPrintFrame, #divDomainInfos, .divImgMain, .divSubMenuOuterFrame 
   { display:none; }
  
 
  
  #divMasterHeader img
  {
  	width:99%;
  	height:9%;
  }
  .MenuTitle
  {
  	font-weight:bold;
  }
  
   .MenuInfo
  {
  	color:#000000;
  }
  
  
  
  .corner_main_content 
  {
  	border-left: 0px  none;
  	border-right: 0px  none;
  }
  
  
  .GridStyle 
{
	 border-style :solid;
	 border-width:0.1em;
	 border-color:Black;
	 font-size:small;
	
}

.GridItem
{
	 border-style :solid;
  border-width :0.05em;
  border-color :#000000;

}

.GridAlternatingItem 
{
	 border-style :solid;
  border-width :0.05em;
  border-color :#000000;

}

#footer { font-size:83.33%; }
 #footer a { color:#04648c; background:transparent; font-weight:bold;  }
  #footer a:focus,
  #footer a:hover,
  #footer a:active {color:#04648c; background-color:transparent; text-decoration:underline; }
  

}

