/* Body */
* {
    /* die browserseitige Vorgabe für Außen- und Innenabstände auf 0 setzen */
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Modifikation Box-Modell: Außenabstand wird nicht zur Boxgröße hinzugerechnet.*/
}

html, body {
    border: 0 solid;
    overflow-y: scroll;
}

body {
    margin: 0;
    font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
    /*color: #000000;*/
    font-size: 12px;

    color: #164073;
    min-width: 800px;
    -webkit-text-size-adjust: 100%;
    text-align: center;
}

b, strong {
    font-weight: bold;
}

a img {
    border: 0px;
}
a{
    text-decoration: none;
    color: #000000;
}

a:hover, a:active {
    outline: none;
}

/* die naechsten 2 anweisungen sorgen dafuer, dass floatende elemente eingeschlossen werden */
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

/* Hides from IE-mac \*/
* html .clearfix {
    height: 1%;
}
/* End hide from IE-mac */



/*Standard-Button*/
.button{
    border-left: solid 1px #ffffff;
    border-top: solid 1px #ffffff;
    border-right: solid 1px #666666;
    border-bottom: solid 1px #666666;

    color: #000000;
    background: #bbbbbb;
    margin: 4px;
    padding: 4px;

    display:inline-block;

    cursor: pointer;
}

.button:hover {
    border-left: solid 1px #666666;
    border-top: solid 1px #666666;
    border-right: solid 1px #ffffff;
    border-bottom: solid 1px #ffffff;
    background: #aaaaaa;
    /*padding: 5px 3px 3px 5px;*/
}

.button a{
    text-decoration: none;
    color: #000000;
}



textarea {
    overflow: auto;
}

.clearfix:before, .clearfix:after {
    content: "\0020";
    display: block;
    height: 0;
    visibility: hidden;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    zoom: 1;
}




#wrapper {
    text-align: left;
    width: 1200px;
    margin: 0 auto;
}
#header{
    padding: 30px 0px 10px;
    border-bottom: 1px solid #e1e1e1;
    font-size: 12px;
}
.center-row {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0px;
}

#logo{
    float: right;
}

#title{
    font-size: 16px;
    font-weight: bold;
}

.left{
    text-align: left;
}

.right{
    text-align: right;
}

.center{
    text-align: center;
}

h3{
    padding: 8px 15px;
}


td{
    padding: 3px 8px;
}

.green {
    color: #00aa00;
}


label{
    display: inline-block;
    margin: 0px 0px 5px 0px;
}

label > span{
    width: 150px;
    font-weight: bold;
    float: left;
    padding-top: 1px;
    padding-right: 5px;
}

textarea {

    width: 30em;
    height: 5em;
}

/* responsive Design: kleine Bildschirme */
/*@media screen and (max-width: 800px) {*/

    /*html,*/
    /*body {*/
        /*font-size: 16px;*/
    /*}*/

/*}*/