/* -------------- Kontaktformular-CSS  ------------- */


form#Kontaktformular { 	/* Gestaltung des Formulars - Breite und Abstnde z. B. */
	width:450px;
	height:auto;
	padding:15px 0 15px 0;
	margin:0 0 0 0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #262626;
	font-size:12px;
	

	
	
}




label, input, textarea {		/* Allgemeine Stile f&uuml;r Labels und Formularfelder */
	font:inherit;
	color: #626262;
	width:240px;
	margin:5px 5px 5px 0;
	padding:0px;
	


	

/* Diese beiden Angaben bitte nicht verndern: */
	display:block;
	float:left;
}

input {				/* Stile, die nur auf Formularfelder angewandt werden sollen */
    font-family: Verdana, Arial, Helvetica, sans-serif;
    background:#d0bb93;
	color: #262626;
    font-weight:normal;
	border:1px solid #b49a73;
	height:17px;
	
}

textarea {				/* Stile, die nur auf Formularfelder angewandt werden sollen */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	background-repeat:repeat-x;
	font-weight:normal;
	color: #2e2b21;
	background-color:#d0bb93;
	border:1px solid #b49a73;
	 
	

	
}

textarea {						/* Seperate Angaben f&uuml;r die Textarea, falls bentigt */
	height:110px;
}

input:focus, textarea:focus {		/* Stile f&uuml;r aktivierte Formularfelder */
	border:1px solid #d01574;	
}

label {							/* Feldbeschriftungen */
	text-align:right;				
	width:155px;						
	padding:0 15px 0 0;			
}

legend {							/* Stile f&uuml;r die berschriften der Formularabschnitte ("") */

	/* Hiermit werden die berschriften nicht angezeigt.
	Falls gewnscht entfernen, um die Anzeige zu ermglichen */
	display:none;
}

fieldset {						/* Formularabschnitte */
	border:none;
	padding:0 0 0 0px;
	margin:0 0 0 0;
	vertical-align:top;
	text-align:left;
}


input#submit {					/* Gestaltung des Submit-Buttons */
	width:110px;
	padding:25px 0 0 0px;
	margin: 0 0 0 0;
	font-size: 13px;
	font-variant:small-caps !important;
	cursor:pointer;
	border:none;
    border:1px solid #d6d6d6;
	background-color:transparent;
	height:25px;
	
}


submit{	
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:15px;
	font-weight:normal;
	background-color:transparent;
	height:25px;
	width:200px;
	margin:0 0 0 0;
	padding:0 0 0 0;


}



#submitbox {			/* Element zur Ausrichtung des Submit-Buttons */
	width:105px;
	height:25px;
	background-repeat:no-repeat;
	padding:0 0 0 175px;	/* Diese Angabe bestimmt den Abstand zum linken Rand des Formulars */
	
}

#adresse {			/* Formularabschnitt mit den Adressdaten */
	margin:0 0 0 0;
}



label#label-telefon {			/* Vernderte Gre f&uuml;r das Telefon-Label */
	width:50px;
}

input#Telefon {				/* Vernderte Gre f&uuml;r das Telefon-Feld */
	width:145px;
	
}



input.radio {					/* Anpassungen f&uuml;r Radio-Buttons - diese mssen die Angabe class="radio" erhalten! */
	width:20px;
	margin-top:8px;
}

* html input.radio {			/* f&uuml;r die Radio-Buttons im IE ein etwas anderer Abstand... */
	margin-top:7px;
}

label.radio {					/* Beschriftungen f&uuml;r Radio-Buttons */
	width:22px;
	border-bottom-style:none;
	
}

input.checkbox {					/* Anpassungen f&uuml;r Checkboxen - diese mssen die Angabe class="radio" erhalten! */
	width:20px;
	margin-top:10px;
	border-bottom-style:none;
	
}

* html input.checkbox {			/* F&uuml;r die Checkboxen im IE ein etwas anderer Abstand... */
	margin-top:7px;
}

label.checkbox {					/* Beschriftungen f&uuml;r Checkboxen */
	width:90px;
}

label.required {				/* Klasse zur Kennzeichnung von Pflichtfeldern */
	background:url(../images/required.png) top right no-repeat;	
}

.error {							/* Stil f&uuml;r die Gestaltung der als fehlerhaft markierten Felder */
	color:#ff0000;
	font-weight:bold;
	font-style:normal;
}

p#fehlermeldung {			/* Die Fehlermeldung */
	display:none;
	background-color: #7d7d7d;
	padding:10px;
	margin:0 0 9px 0;
    width:425px;
    color:#fff;
	 border:1px solid #d6d6d6;
}



/* Die folgenden Angaben bitte nicht verndern! */
form br {
	clear:left;
}

input[type=hidden] {
	border:0;
	padding:0;
}

