/* -------------- Kontaktformular-CSS -------------
##### Dies ist nur ein Beispiel - die Angaben können bis auf wenige Ausnahmen beliebig angepasst werden ####
*/


form#Kontaktformular { 	/* Gestaltung des Formulars - Breite und Abstände z. B. */
	margin: 0;
	padding: 0;
}

/* ---------- Shared styles for labels, input fields, textareas, select lists  ---------- */
form#Kontaktformular label, form#Kontaktformular input, form#Kontaktformular textarea, form#Kontaktformular select {	
	font: inherit;
	color: #555;
	width: 187px;
	margin: 10px 0 0 0;
	padding: 1px;
	/* ---- These are here for a reason - don't remove if not necessary ---- */
	display: block;
	float: left;
}

/* ---------- Special styles for input fields, select lists and textareas only ---------- */
form#Kontaktformular input, form#Kontaktformular textarea , form#Kontaktformular select {
	border-top: 1px solid #e5e5e5;
	border-right: 1px solid #e5e5e5;
	border-bottom: 1px solid #e5e5e5;
	border-left: none;
	height: 18px;
	padding-top: 6px;
	background: #ffffff;
}

form#Kontaktformular textarea {
	height: 252px;
	margin: 0 0 0 10px;
	padding-left: 15px;
	border-top: none;
	border-left:1px solid #e5e5e5;
	background:#ffffff none;
	width: 309px;
}
*html form#Kontaktformular textarea {
	width: 304px;
	display: inline;
	margin: 0 0 0 5px;
}

/* ---------- Label styles ---------- */
form#Kontaktformular label {
	text-align: left;
	width: 133px;
	padding: 5px 0px 0 15px;
	color: #555;
	border-top: 1px solid #e5e5e5;
	border-left: 1px solid #e5e5e5;
	border-bottom: 1px solid #e5e5e5;
	border-right: none;
	height: 20px;
	background: #ffffff;
	font-size: 11px;
}

/* ---------- If you want to display legends, just remove the display:none here and add your own styles ---------- */
form#Kontaktformular legend {
	display:none;
}

/* ---------- Fieldsets can be made visible by removing the default style here ---------- */
form#Kontaktformular fieldset {
	border: none;
	padding: 0;
}

/* ---------- Submit button ---------- */
form#Kontaktformular input#submit {
	width: 327px;
	height: 27px;
	color: #ffffff;
	cursor: pointer;
	background: #7c6f56;
	border: 1px solid #e5e5e5;
	padding: 0 0 4px 0;
	_padding: 3px 0 4px 0;
	*padding: 3px 0 4px 0;
	margin: 10px 0 20px 10px;
	outline: none;
}
/* ---------- Submit button IE6 ---------- */
*html form#Kontaktformular input#submit {
	width: 322px;
	display: inline;
	margin: 10px 0 20px 5px;
}

/* ---- Won't show in IE6 - but why should everyone else miss all the fun? ---- */
form#Kontaktformular input#submit:hover {
	background: #887a61;
}

form#Kontaktformular fieldset#submitbox {			/* Element zur Ausrichtung des Submit-Buttons */
	float: left;	
}

form#Kontaktformular fieldset#adresse {			/* Formularabschnitt mit den Adressdaten */
	margin:0 10px 0 0;
	float: left;
}

form#Kontaktformular fieldset#message{
	float:left;
}

/* ---------- Radio buttons ---------- */
form#Kontaktformular input.radio {
	width:10px;
	_width:20px;
	*width:20px;
	margin: 0 5px 0 0;
	border:none;
	background:transparent;
}

form#Kontaktformular input.radio {   
	margin /*\**/: -6px 5px 0px 0px\   
}  

form#Kontaktformular label.radio-frau {
	width: 66px;
	border-left: none;
}

form#Kontaktformular label.radio-mann {
	width: 72px;
	border-left: none;
	border-right:1px solid #e5e5e5;
}

#Kontaktformular #adresse #label-anrede {
	width: 154px;
}

form#Kontaktformular label#label-nachricht {
	height: 20px;
	margin: 10px 0 0 10px;
	width: 310px;
	border-bottom: none;
	border-right:1px solid #e5e5e5;
}
*html form#Kontaktformular label#label-nachricht {
	width: 305px;
	display: inline;
	margin: 10px 0 0 5px;
}

/* ---------- Remove the following styles if you don't need the field "Rueckruf" ---------- */
form#Kontaktformular label.rueckruf {
	width: 37px;
	border-left: none;
	border-right:1px solid #e5e5e5;
}

#label-rueckruf{
	height: 40px !important;
}

form#Kontaktformular label.datenschutz {
	height: 40px;
	width: 37px;
	border-left: none;
	border-right:1px solid #e5e5e5;
}

form#Kontaktformular input.checkbox {
	width: 13px;
	_width: 25px;
	*width: 25px;
	margin: -1px 0 0 0;
	border: none;
}

/* ---------- Class for required fields - add colors, an image, or whatever you wish ---------- */
form#Kontaktformular label.required {
	background:#ffffff;
	font-weight:bolder;
}

/* ---------- The error message - make it huge and hard to miss! :) ---------- */
p#fehlermeldung {
	display: none;
	margin: 0 0 15px 0;
}

/* ---------- On user errors, required labels are style with these ---------- */
.error {
	color:#f00 !important;
	font-weight:bold !important;
}

/* ---------- Since by default labels and form fields are floated, the cleared br elements are required to keep them all in place ---------- */
form#Kontaktformular br {
	clear:left;
}

/* ---------- Without these styles, some browsers show a huge gap where the hidden fields are. Don't remove them unless you know what you're doing! ---------- */
form#Kontaktformular fieldset.hidden, form#Kontaktformular input[type=hidden] {
	display:none;
	border:0;
	padding:0;
}