/* -------------- Kontaktformular-CSS -------------
##### Dies ist nur ein Beispiel - die Angaben können bis auf wenige Ausnahmen beliebig angepasst werden ####
*/

form#Newsletter{
	width:160px;
	text-align:left;
	line-height:16px;
	margin:0 12px 0 12px;
}

form#SuchForm{
	width:auto;
	text-align:left;
	line-height:12px;
	margin:0 5px 3px 5px;
}

#SuchForm input { width:auto; }
*html #SuchForm input { width:auto; }

#Newsletter input#E-Mail-Newsletter { width:160px; }
*html #Newsletter input#E-Mail-Newsletter { width:140px; margin:0px; }

#label-mail-newsletter{ margin:0; text-align:left; width:120px; }

form#Kontaktformular { 	/* Gestaltung des Formulars - Breite und Abstände z. B. */
	width:auto;
	/* margin:0 0 20px 0; */
	padding:0 0 10px 0;
}

label, input, textarea, select {		/* Allgemeine Stile für Labels und Formularfelder */
	font:inherit;
	color:inherit;
	width:160px;
	margin:10px 5px 0 0;
	padding:1px;

/* Diese beiden Angaben bitte nicht verändern: */
	display:block;
	float:left;
}

input, textarea, select {				/* Stile, die nur auf Formularfelder angewandt werden sollen */
	border:1px solid #7B7A80;
	background:#fcfcfc url(../images/form-bg.png) repeat-x;
}

textarea {						/* Seperate Angaben für die Textarea, falls benötigt */
	height:100px;
}

input:focus, textarea:focus, select:focus {		/* Stile für aktivierte Formularfelder */
	border:1px solid #FBC42F;	
}

label {							/* Feldbeschriftungen */
	text-align:right;				
	width:90px;						
	padding:0 15px 0 0;			
}

legend {							/* Stile für die Überschriften der Formularabschnitte ("fieldset") */

	/* Hiermit werden die Überschriften nicht angezeigt.
	Falls gewünscht entfernen, um die Anzeige zu ermöglichen */
	display:none;
}

fieldset {						/* Formularabschnitte */
	border:none;
	padding:0 0 0 20px;
}

input#submit {				/* Gestaltung des Submit-Buttons */
/*	width:120px;*/
	padding:5px;
	background:#FBC42F;
	color:#fff;
	font-size:1.2em;
	font-weight:bold;
	font-variant:small-caps !important;  
	width:auto;
	cursor:pointer;
	border:none;
}

fieldset#submitbox {			/* Element zur Ausrichtung des Submit-Buttons */
	width:120px;
	height:25px;
	padding:0 0 0 130px;	/* Diese Angabe bestimmt den Abstand zum linken Rand des Formulars */
	clear:both;
}

fieldset#adresse {			/* Formularabschnitt mit den Adressdaten */
	margin:0 10px 0 0;
}

label#label-telefon {			/* Veränderte Größe für das Telefon-Label */
	width:55px;
}

input#Telefon {				/* Veränderte Größe für das Telefon-Feld */
	width:100px;
}

input.radio {					/* Anpassungen für Radio-Buttons - diese müssen die Angabe class="radio" erhalten! */
	width:20px;
	margin-top:10px;
}

* html input.radio {			/* Für die Radio-Buttons im IE ein etwas anderer Abstand... */
	margin-top:7px;
}

label.radio {					/* Beschriftungen für Radio-Buttons */
	width:90px;
}

input.checkbox {					/* Anpassungen für Checkboxen - diese müssen die Angabe class="radio" erhalten! */
	width:20px;
	margin-top:10px;
}

* html input.checkbox {			/* Für die Checkboxen im IE ein etwas anderer Abstand... */
	margin-top:7px;
}

label.checkbox {					/* Beschriftungen für Checkboxen */
	width:90px;
}

label.required {				/* Klasse zur Kennzeichnung von Pflichtfeldern */
	background:url(../images/muss.png) top right no-repeat;	
}

.error {							/* Stil für die Gestaltung der als fehlerhaft markierten Felder */
	color:#FBB704; /* CC0000 */
	font-weight:bold;
	font-style:normal;
}

p#fehlermeldung {			/* Die Fehlermeldung */
	display:none;
	background:#fff;
	border:1px solid #ccc;
	padding:20px;
	margin:0 0 15px 0;
}



/* Die folgenden Angaben bitte nicht verändern! */
form br {
	clear:left;
}

input[type=hidden] {
	border:0;
	padding:0;
}

