/* CSS Document */

form {
  background: #de2;
  border: thin solid #ab0;
  margin:0;
  padding:.5em;
  width:35em;
}

#former {
  background: #de2;
  border: thin solid #ab0;
  margin:0;
  padding:.5em;
}


label {
 text-align: right; 
 padding-right: 1em; 
 font-family: Geneva, Arial, Helvetica, sans-serif;
 font-size: 0.80em;
	
 
}
label, input, textarea  { /* Alle Labels UND Formularelemente auswählen */
  display: block;
  float: left;
  width: 13em; /* Breite.*/
  margin:5px;
}

select { /* Alle Labels UND Formularelemente auswählen */
  display: block;
  float: left;
  width: 13em; /* Breite.*/
  margin:5px;
}

input{ width: 22em;  }
textarea { width: 22em;  }

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;
  width:21em;
}

#cap {margin-left:15.2em; font-size: 0.80em;}
