label,select { /* Alle Labels UND Formularelemente auswählen */
	display: block;
	float: left;
	width: 100px;
	margin-bottom: 5px;
}

input{
	display: block;
	float: left;
	width: 250px;
	margin-bottom: 5px;
}

textarea{
display: block;
  float: left;
  width: 500px; /* 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;
	width: 100px;
}


label {
 text-align: right; 
 padding-right: 1em; 
}

