#Header, #Navigation, #navbox, #box {
  display: none !important;
}
.Header, .Navigation, .box, .noprint{
	display: none !important;
}

#Inhalt, .Inhalt{
  
    float: none !important;
  width: auto !important;
 
	margin: 0px !important;
  padding: 0 !important;
}
html body #Inhalt pre .Inhalt{background-color: white; 
color:black;
}
/*Here's a comparison between the two style sheets with a short notation of changes:
Page element/ style class Basic Style Sheet Print Style Sheet */

body        /*change background and font colors*/
 {
 margin:0px;
padding:0px;
border:0px;
width:100%;
font-family:serif;
background-color: white;
color:black;
}
 .logoTable
/*remove background color*/
{
 padding:0px;
margin:0px;
width:100%;
border:0px;
}
 td.menu                /*don't display menu on printed version*/

 {display:none;}
 .referrer                 /*don't display referrer on non-printed page*/
 {display:none;}
 {
display:block;
font-weight:bold;
}
p {
font-size: 0.8em;
	line-height: 1.5;
	font-size: 12pt;
	line-height: 1.3;

	}
	pre {
	background-color: #FFFFFF;
	border: 1px solid #FFFFFF;
	color:#000000;
	}

 /*Save this revised style sheet as "PrintStyles.css" and we're ready to link it to the document.
Linking The Print Style Sheet
If you've used external style sheets or external JavaScript files before, you're familiar with the LINK element.
Link an external style sheet like this:
<link rel="stylesheet" type="text/css" href="styles.css">
 When you add a print style sheet, you have to add the "media" attribute. This tells the browser that the styles contained in that .css file should only be used when the document is printed.
<link rel="stylesheet" type="text/css" href="printstyles.css" media="print">*/