label { /* Alle Labels auswählen */
  display: block;
  float: left;
  width: 130px; /* Breite.*/
}

input, select { /* Alle Formularelemente auswählen */
  display: block;
  padding:2px;
  float: left;
  width: 160px; /* Breite.*/
}

textarea { /* Alle Formularelemente auswählen */
  display: block;
  padding:2px;
  float: left;
  height: 100px;
  width: 290px; /* Breite.*/
}

form br { /* Alle Zeilenumbrüche in Formularen auswählen */
  clear: left; /* das floating der labels und inputs aufheben */
}

input#submit { /* den Submit-Button */
  float: none;
  margin: 4px;
  width: 154px;
  height: 22px;
}

label {
 text-align: left; 
 padding-left: 2px; 
}

form {
  background: #669900;
  border: thin solid #FFFFFF;
  margin:2px;
  padding:3px;
}

label2 { /* Alle Labels auswählen */
  display: block;
  float: left;
  text-align: left; 
  padding-left: 2px;
  width: 130px; /* Breite.*/
}
