/**********************************
 * TITLE: Print Stylesheet        * 
 * MODIF: 2005-Feb-16             *
 **********************************/

/* ##### Common Styles ##### */

@media print {

body {
  color: black;
  background-color: white;
  font-family: "times new roman", times, roman, serif;
  font-size: 12pt;
  margin: 0;
  padding: 0;
}
h1, h2 { font-family: Verdana, Arial, Helvetica, sans-serif; }
h1 {font-size: 16pt; }  
h2 {
   font-size: 14pt;   
   font-weight: bold; 
   padding-top: 6pt;  /* Abstand zwischen Text und Rahmenlinie */ 
   border-top: 3pt solid #d90000; /* dunkelgraue Rahmenlinie oben */
   margin-top: 24pt; 
} 
h3 {font-size: 14pt; }  
h4 {font-size: 14pt; }  
h5 {font-size: 12pt; }  
h6 {font-size: 10pt; }  


.doNotPrint {
  display: none !important;
}

a { 
   color: black ; 
   text-decoration: none; 
}
/* [URL] nach dem Linktext, nicht im IE */
a[href]:after { 
   content:" [Adresse: "attr(href)" ] "; 
} 


/* ##### Header ##### */

#header {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid black;
}
#header h1 {
   font-size: 16pt;   
   font-weight: bold; 
} 

#header img {
  display: none;
}
#header #navbar {
  display: none;
}



#container, #main {
  margin: 0;
  padding: 0;
}
#container {
  position: static;
  overflow: display;
}
#container.withsidebar-left, #container.withsidebar-right {
  margin: 0;
  padding: 0;
}

/* ##### Side Bars ##### */

#sidebar-left, #sidebar-right {
  display: none;
}



/* ##### Footer ##### */

#footer {
  margin: 0;
  padding: 0;
  border-top: 1px solid black;
}

#footer #navbar {
  display: none !important;
}


} /* end media print */

