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


form#Bestellformular { 	/* Gestaltung des Formulars - Breite und Abstände z. B. */
	width:400px;
	margin:0 0 20px 0;
	padding:0 0 10px 0;
}

fieldset#hiddenfields {
	display:none;
	margin: 0;
}

#advice-required-Name, #advice-required-PLZ-Ort, #advice-required-Strasse, #advice-required-Telefon, #advice-required-Geburtsdatum, #advice-required-AGB {
	display: none;
}

.reqfield {
	color: #CC0000 !important;
}

.validation-failed {
	border: 1px solid #FF0000 !important;
}

form#Bestellformular label, form#Bestellformular input, form#Bestellformular textarea {		/* Allgemeine Stile für Labels und Formularfelder */
	font:inherit;
	color:inherit;
	width:200px;
	margin:10px 5px 0 0;
	padding:4px;

/* Diese beiden Angaben bitte nicht verändern: */
	display:block;
	float:left;
}

form#Bestellformular input, form#Bestellformular textarea {				/* Stile, die nur auf Formularfelder angewandt werden sollen */
	border:1px solid #1a543e;
}

form#Bestellformular textarea {						/* Seperate Angaben für die Textarea, falls benötigt */
	height:143px;
}

form#Bestellformular input:focus, form#Bestellformular textarea:focus {		/* Stile für aktivierte Formularfelder */
	border:1px solid #666666;	
}

form#Bestellformular label {							/* Feldbeschriftungen */
	text-align:right;				
	width:90px;						
	padding:0 15px 0 0;			
}

form#Bestellformular fieldset#products label.Anzahl {
	margin: 0;
	text-align: left;
	width: 40px;
}

form#Bestellformular legend {							/* Stile für die Überschriften der Formularabschnitte ("fieldset") */
	font-weight: bold;
	border-bottom: 1px solid #000;
	margin-bottom: 8px;
}

form#Bestellformular fieldset {						/* Formularabschnitte */
	border:none;
	padding:0 0 0 0;
	margin-bottom: 20px;
}

form#Bestellformular input#submit {				/* Gestaltung des Submit-Buttons */
	width:150px;
	padding:5px;
	background:#1a543e;
	color:#fff;
	font-size:12px;
	font-weight:bold;
	cursor:pointer;
	border:none;
}

form#Bestellformular fieldset#products input.Anzahl {
	width: 40px;
	float: left;
	margin: 0;
}

form#Bestellformular fieldset#products input.productDetails {
	border: none;
	width: 65px;
	float: left;
	display: inline;
	margin: 0;
	padding: 0;
}

form#Bestellformular fieldset#priceOutput {
	border-top: 1px solid #ccc;
	padding-top: 12px;
	padding-left: 300px;
}

form#Bestellformular fieldset#priceOutput p {
	float: left;
}

form#Bestellformular fieldset#priceOutput input.totalPrice {
	float: right;
	border-bottom: double;
	border-left: none;
	border-top: none;
	border-right: none;
	width: 60px;
	padding: 0 0 4px 10px;
	margin: 0 50px 0 0;
	font-weight: bold;
}

form#Bestellformular fieldset#products div.productImage {
	width: 62px;
	height: 102px;
	float: left;
	margin-right: 20px;
	margin-bottom: 20px;
}

form#Bestellformular fieldset#products div.productImage img {
	border: 1px solid #1a543e;
}

form#Bestellformular fieldset#products p.productDescription {
	float: left;
	margin-right: 20px;
	/*height: 102px;*/
	width: 150px;
}

form#Bestellformular fieldset#products p.productDescriptionBig {
	float: left;
	margin-right: 20px;
	width: 232px;
}

form#Bestellformular fieldset#products dl {
	float: left;
	margin: 0 20px 0 0;
}

form#Bestellformular fieldset#products dt {
	font-weight: bold;
	clear: both;
}

form#Bestellformular fieldset#products dd {
	margin: 0 0 8px 0;
	height: 12px;
}

form#Bestellformular fieldset#submitbox {			/* Element zur Ausrichtung des Submit-Buttons */
	width:140px;
	height:40px;
	padding:0 0 0 110px;	/* Diese Angabe bestimmt den Abstand zum linken Rand des Formulars */
	clear:both;
}

form#Bestellformular fieldset#adresse {			/* Formularabschnitt mit den Adressdaten */
	
}

form#Bestellformular label#label-telefon {			/* Veränderte Größe für das Telefon-Label */
	/*width:55px;*/
}

form#Bestellformular input#Telefon {				/* Veränderte Größe für das Telefon-Feld */
	/*width:100px;*/
}

form#Bestellformular input.radio {					/* Anpassungen für Radio-Buttons - diese müssen die Angabe class="radio" erhalten! */
	width:20px;
	margin-top:2px;
	border:none;
	background:transparent;
}

* html form#Bestellformular input.radio {			/* Für die Radio-Buttons im IE ein etwas anderer Abstand... */
	margin-top:2px;
}

form#Bestellformular label.radio {					/* Beschriftungen für Radio-Buttons */
	width:auto;
}

form#Bestellformular input.checkbox {					/* Anpassungen für Checkboxen - diese müssen die Angabe class="radio" erhalten! */
	width:20px;
	margin-top:10px;
	border:none;
	background:transparent;
}

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

form#Bestellformular label.checkbox {						/* Beschriftungen für Checkboxen */
	width:90px;
}

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

.error {								/* Stil für die Gestaltung der als fehlerhaft markierten Felder */
	color:#f00 !important;
	font-weight:bold !important;
}

p#fehlermeldung {			/* Die Fehlermeldung */
	display:none;
	background:#ffffff;
	border:1px solid #666;
	padding:20px;
	margin:0 0 15px 0;
}



/* Die folgenden Angaben bitte nicht verändern! */
form#Bestellformular br {
	clear:left;
}

form#Bestellformular input[type=hidden] {
	display:none;
	border:0;
	padding:0;
}

