/* =====================================================
Stylesheet für die Beispielsite aus "Einstieg in CSS"
Datei: druckversion.css
Datum: ...
Autor: ...
========================================================== */
@media print {

body {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 12pt;
}
input {display: none; }
h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16pt;
  padding-top: 6pt;  /* Abstand zwischen Text und Rahmenlinie */
  border-top: 3pt solid #d90000; /* rote Rahmenlinie oben */
  margin-top: 12pt;
}

div#navibereich { display: none; }
/*div#textbereich { button: {display: none; }}
div#fussbereich { button: onclick {display: none; }}*/
a {
  color: black ;
  text-decoration: none;
}
a[href]:after {
  content:" [URL: "attr(href)"] "; /* [URL] nach Linktext */
}


} /* Ende @media - nicht löschen! */

/* ======================================
   E N D E druckversion.css
====================================== */