body       /* allgemeine Optik des body */
{
    text-align: center;
    font-size: 10pt;
    font-family: Arial;
    background: #f7f7f7;
    margin: 0px auto;
    overflow: scroll;
}
form
{
    margin: 0px;
}
#root      /* Für die DIV, die die komplette Seite beschreibt */
{
    width: 800px;
    margin: 0px auto;
    text-align: left;
    color: #000000;
    padding-bottom: 20px;
}
.link    /* Link in der root-Klasse */
{
    color: #ffffff;
    text-decoration: none;
    font-size: 10pt;
}
.link:hover   /* Link der root-Klasse bei mouseover */
{
    color: #000000;
}
#head1    /* oberster Kopf */
{
    background-color: #4b565b;
    text-align: center;
}
#head2    /* Zweitoberster Kopf mit Navizeile */
{
    height: 35px;
    margin: 0px;
    padding-top: 3px;
    background: url('trenner-banner.png') repeat-x;
    text-align: center;
}
#content  /* beschreibt den kompletten Inhalt unterhalb des Kopfes! Dadurch wird der Content mittig ausgerichtet */
{
    margin: 0px;
    text-align: center;
}
.size   /* hier wird die Breite der mittig ausgerichteten Elementen (Kopf, Content, Fuß) festgelegt */
{
    width: 800px;
    text-align: center;
    margin: 0px auto;
}
.logo
{
    padding: 40px 100px;
    
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    
    -webkit-box-align: end;
    -moz-box-align: end;

    -ms-flex-align: flex-end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
}
.navi_left  /* Hier handelt es sich um Definitionen des Navigationsmenüs, betrifft alle Punkte, die linksbündig angeordnet sind */
{
    float: left;
    padding-left: 100px;
    padding-top: 6px;
    padding-bottom: 6px;
}
.navi_right  /* Sprachwahl */
{
    float: right;
    padding-top: 2px;
    padding-right: 5px;
}
.content_right         /* Hauptcontent */
{    
    text-align: left;
    background-color: #fff;
    border: 1px solid #4b575f;
    padding: 20px;
}

label
{
    width: 300px;
    padding: 0px;
    display: block;
    float: left;
    vertical-align: middle;
}

input
{
    width: 350px;
    border: 1px solid #999;
    background: #ccc;
}

textarea, select
{
    width: 350px;
    border: 1px solid #999;
    background: #ccc;
    font-size: 10pt;
    font-family: arial;
}

textarea
{
    height: 80px;
}

.feld     /* Sprachwahl */
{
    background-color:#ccc;
    border:1px solid #999;
    width:65px;
    margin-left:2px;
    margin-top:2px;
    margin-bottom:2px;
    font-family:arial;
    font-size:8pt;
    display:inline;
    color: #000;
}

.button 
{
    border:none;
    background:#94999f;
    padding: 2px 5px;
    font-family: arial;
    font-size: 9pt;
    color:white;
    text-align: middle;
    text-decoration: none;
    display:inline;
}

.pflicht
{
    text-align: left;
    font-size: 7pt;
    margin: 1px;
}

.danke
{
    color: #ff0000;
    font-weight: bold;
    background-color: #ccc;
    padding: 5px;
}