@charset "utf-8";
/* CSS Document */
*{margin:0; padding:0;}

form {
   background-color: #eee;
   width: 378px; /* Breite des Formulars */
   padding: 5px;
   border: 1px solid #8c8c8c;
   font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	line-height:1.5em;
}

#kontaktformular {
   background-color: #eee;
   width: 378px; /* Breite des Formulars */
   padding: 5px;
   border: 1px solid #8c8c8c;
   font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	line-height:1.5em;
}
form label {
   display: block; /* Beschriftung auf eigener Zeile */
   cursor: pointer; /* Mauszeiger wird zur Hand */
}
input#absender,
textarea {
   width: 340px;
   border: 1px solid #8c8c8c;
   margin-bottom: 1em;
}
textarea {
   height: 7em;
}
input#absender:focus,
textarea:focus {
   background-color: #d9d9d9;
}