@charset "utf-8";
/* -------------- Contact form CSS -------------



/* ---------- Styles for the form element itself  ---------- */
form#Kontaktformular {
	margin:0 0 20px 0;
	padding:0 0 0 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:inherit;
	width:280px;
	margin:0 0 10px 0;
	padding:2px;

	/* ---- 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{
	background:#DBB481;
	border:1px solid #EFE7C6;
	color:#000;
}

form#Kontaktformular textarea {
	height:100px;
}

/* ---------- For better usability, change the look of your form fields when they are focused ---------- */
form#Kontaktformular input:focus, form#Kontaktformular textarea:focus {
	background:#DBB481;
	border:1px solid #0177AF;	
}



/* ---------- Label styles ---------- */
form#Kontaktformular label {
	margin-right:5px;
	padding:2px 15px 2px 0;		
	width:120px;			
	text-align:right;	
}


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


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

form#Kontaktformular fieldset.box {
	border:2px solid #4D0F10;
	padding:10px 0 10px 20px;
	margin-bottom:10px;
}




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

form#Kontaktformular label.radio {
	width:auto;
}



/* ---------- Checkboxes ---------- */
form#Kontaktformular input.checkbox {
	background:transparent;
	border:none;
	width:20px;
}

form#Kontaktformular label.checkbox {	
	width:90px;
}


/* ---------- Select lists - make them a bit larger than your input fields ---------- */
form#Kontaktformular select {
	width:286px;
}





/* ---------- Submit button ---------- */
form#Kontaktformular input#submit, form#Kontaktformular input#reset {
	width:140px;
	padding:5px;
	background:#CCAC69;
	color:#000;
	font-size:11px;
	cursor:pointer;
	border:1px solid #EFE7C6;
	margin:10px 5px 0 0;
}

form#Kontaktformular fieldset#submitbox {
	width:auto;
	padding:0 0 10px 160px;
	margin-top:20px;
	clear:both;
}


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





/* ---------- Remove the following styles if you don't need the field "Rueckruf" ---------- */
form#Kontaktformular label#label-telefon {
	width:55px;
}

form#Kontaktformular label#label-rueckruf {
	width:118px;
}

form#Kontaktformular input#Telefon /* --- ACHTUNG ie8.css checken --- */ {
	width:187px;
}





/* ---------- Class for required fields - add colors, an image, or whatever you wish ---------- */
form#Kontaktformular label.required {
	background:url(../images/icon-required.png) center right no-repeat;	
}



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



/* ---------- The error message - make it huge and hard to miss! :) ---------- */
p#fehlermeldung {
	display:none;
	background:#531213;
	border:1px solid #DBB481;
	padding:10px;
	margin:20px 0 10px 0;	
	width:auto;
}



/* ---------- 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;
}

