/*Body für Druck schwarz auf weiß in Serif-Schrift einrichten*/
body {
    margin: 0;
    padding: 0;
    font-family: times, "times new roman", serif;
    text-align: justify;
    color: Black;
    background-color: White
    }
/*Absatz*/
p {
    margin: 0 0 0, 5em 0;
    /*halbe Schriftgröße, Abstand unten*/
    /*text-align: justify;*/
    }
/*Menü ausblenden*/
#menue {
    display: none
    }
/*Inhalt auf der ganzen Seite anzeigen*/
div#inhalt {
    margin-left: 0;
    background-color: White;
    padding: 1em
    }
div#inhalt a:link, div#inhalt a:visited {
    color: black
    }
/*Überschriften neu definieren*/
h1, h2, h3 {
    font-family: "times new roman", times, serif;
    color: black;
    font-style: normal;
    font-weight: bold
    }
h1 {
    font-size: 18px
    }
h2 {
    font-size: 16px
    }
h3 {
    font-size: 14px
    }
td, th {
    font-family: "times new roman", times, serif;
    font-size: 10pt;
    color: black
    }
TH {
    font-weight: bold
    }