/* Generelle form element styles */
legend {
	display:none;
}
fieldset {
	border:none;
}
input[type=submit] {
    border: 1px solid #7B95B2;
    margin-right:5px;
}
input[type=reset] {
    border: 1px solid #7B95B2;
    margin-right:5px;
}
input[type=button] {
    border: 1px solid #7B95B2;
    margin-right:5px;
}
input[type=text]{
	border: 1px solid #7B95B2;
	background: transparent;
	padding:2px 5px;
	margin-bottom:3px;
	width:300px;
}
input[type=text]:focus{
	border: 1px solid #7B95B2;
	background: white;
}
input[readonly], input[readonly]:focus{
	border: none;
	background: transparent;
}

textarea{
	border: 1px solid #7B95B2;
	background: transparent;
	padding:2px 5px;
	width:300px;
}
textarea:focus{
	border: 1px solid #7B95B2;
	background: white;
}
label {
	display: block;
	float: left;
	width: 50px; /* Breite.*/
	text-align: right; 
	padding-right: 1em;
	font-weight:bold;
	font-size:11px;
	margin-top:3px;
}
input, textarea {
	display: block;
	float: left;
	margin-bottom:3px;
	font-size: 11px; 
    font-family:Arial, Helvetica, sans-serif;
    color:#333;
}
form br { /* Alle Zeilenumbrüche in Formularen auswählen */
	clear: left; /* das floating der labels und inputs aufheben */
}
.mail_err {
    color:red;
    font-style: italic;
	margin-left: 60px;
}
