/* CSS Sachen fuer das Kontakt-Formular*/
form {
	margin: 40px 0 40px 0;
}
textarea, input, label {
	line-height: 1.2em;
	padding: 3px;
	margin: 1px 15px 15px 1px;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
}
textarea.textarea, input.text, input.button  {
	background-color: #fff;
	border: 1px solid #990000;
}
textarea.textarea, input.text {
	width: 400px;
}
textarea.textarea {
	height: 10em;
}
input.button {
	background-color: #990000;
	color: #fff;
	vertical-align: bottom;
}
label,input {
	display: block;
	float: left;
}
label {
	text-align: right;
	width: 100px;
}
input:hover, textarea:hover {
	color: #fff;
	background-color: #FF9B9D;
}
input:focus, textarea:focus {
	color: #fff;
	background-color: #990000;
}