@charset "utf-8";
/* CSS Document */

/* Eigener Float für den Wrapper */
/* Erforderlich, um das Formular auch in standardkompatiblen Browsern im Hauptfenster oben zu haben. */

#wrapper {
	float: left;
	width: 718px;
	font-size: 100%;
}

#wrapper form p {   /* setzt den Text der Paragraphen in die richtige Relation zum Haupttext */
	font-size: 100%;
}

* {
  margin: 0;
  padding: 0;
}

form {
  margin: 0;
  padding: 0;
  font-size: 115%;
  min-width: 560px;
  max-width: 620px;
  width: 590px;
}

form fieldset {
  clear: both;
  font-size: 100%;
  border-color: #000000;
  border-width: 1px 0 0 0;
  border-style: solid none none none;
  padding: 10px;
  /* margin: 0 0 0 0; */
  margin: 1em 0;
  	background: #DDD6E6; /* gibt dem Fieldset eine eigene Farbe */
}

form fieldset legend {
font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 150%;
  font-weight: normal;
  color: #000000;
  margin: 0 0 0 0;
  padding: 0 5px;
  	background: #DDD6E6; /* gibt dem Legend die Farbe des Fieldsets */
	line-height: 1.4;
	padding: 0.2em .5em;
	margin-left: 0.5em;
	letter-spacing: .1em; /* gibt der Legend etwas mehr horizontalen Raum */
}

form fieldset fieldset legend {
	letter-spacing: 0; /* verkleinert den Buchstaben-Abstand für den Erreichbarkeits-Fieldset */
}

label {
  font-size: 100%;
}

label u {
  font-style: normal;
  text-decoration: underline;
}

input, select, textarea {
  font-family: Tahoma, Arial, sans-serif;
  font-size: 100%;
  color: #000000;
}

textarea {
  overflow: auto;
}

form div {
  clear: left;
  display: block;
  width: 354px;
  margin: 5px 0 0 0;
  padding: 1px 3px;
}

form fieldset div.notes {
  float: right;
  width: 158px;
  height: auto;
  margin: 0 0 10px 10px;
  padding: 5px;
  border: 1px solid #666666;
  background-color: #ffffe1;
  color: #666666;
  font-size: 88%; /* ursprünglich: 88%; */
}

form fieldset div.notes h4 {
  background-image: url(/images/icon_info.gif);
  background-repeat: no-repeat;
  background-position: top left;
  padding: 3px 0 3px 27px;
  border-width: 0 0 1px 0;
  border-style: solid;
  border-color: #666666;
  color: #666666;
  font-size: 110%; /* ursprünglich 110 % */
}

form fieldset div.notes p {
  margin: 0em 0em 1.2em 0em;
  color: #666666;
}

form fieldset div.notes p.last {
  margin: 0em;
}

form div fieldset {
  clear: none;
  border-width: 1px;
  border-style: solid;
  border-color: #666666;
  margin: 0 0 0 144px;
  padding: 0 5px 5px 5px;
  width: 197px;
}

form div fieldset.fieldlarge { /* eigene Deklaration für die neuen weiten Checkboxes */
  clear: none; 
  border-width: 1px;
  border-style: solid;
  border-color: #666666;
  margin: 0 0 0 0; /* ohne linken Rand */
  padding: 0 5px 5px 5px;
  width: 341px; /* auf das Maximum der Eingabezone vergrößerte Breite */
}

form div fieldset legend {
  font-size: 100%;
  padding: 0 3px 0 9px;
}

form div.required fieldset legend {
  font-weight: bold;
}

form div label {
  display: block;
  float: left;
  width: 130px;
  padding: 3px 5px;
  margin: 0 0 5px 0;
  text-align: right;
}

form div.optional label, label.optional {
  font-weight: normal;
}

form div.required label, label.required {
  font-weight: bold;
  color: #5275C3;
}

form div.required strong {
  color: #5275C3;
}

form div label.labelCheckbox, form div label.labelRadio {
  float: none;
  display: block;
  width: 200px;
  padding: 0;
  margin: 0 0 5px 142px;
  text-align: left;
}

form div fieldset label.labelCheckbox, form div fieldset label.labelRadio {
  margin: 0 0 5px 0;
  width: 170px;
}

form div fieldset.fieldlarge label.labelCheckbox { /* Kontaktformular: Eigene Deklaration für die Info-Checkboxen */
  float: left;
  margin: 0 0 5px 0;
  width: 153px; /*bestimmt die Breite der Checkbox und ermöglicht bei <= 153px zwei Boxen auf einer Linie */
}

/* Deklarationen für das Bestell-Formular */

form div.bestell { /* Zentrierung und Größe der Bestell-Divs */
	width: 250px;
	margin: 5px auto;
	}
	
form div.bestell label.anzahl { /* senkt die Label Anzahl, um sie auf die Höhe der Checkboxen zu drücken */
	padding-top: 6px;
	}
	
form div.bestell input.inputText { /*senkt die Anzahl-Input-Felder, um sie auf die Höhe der Checkboxen zu drücken */
	padding-top: 3px; /*zentriert mit identischem, d.h. halbiertem padding-bottom die Texteingabe vertikal */
	padding-bottom: 3px;
	}

form div fieldset.fieldlarge div.bestell label.labelCheckbox { /* Bestellformular */
	margin: 0 0 5px 0;
	width: 105px; /*bestimmt die Breite der Prospektauswahl-Checkbox = Abstand Prospektauswahl zu Anzahl-Elementen */
}

form div fieldset.fieldlarge div.bestell label { /* eigene Anpassung für die Anzahl-Label */
  float: left; /* notwendig, um die Anzahl-Label rechts neben die Checkboxen zu setzen */
  /* display: inline; möglich, aber nicht erforderlich */
  margin: 0 0 5px 0;
  width: 50px;
}

form div.sprache { /* Relatives Referenz-Div, um die Flaggen später absolut zu positionieren */
	position: relative; 
	width: 180px;
	margin: 0.5em 0 0.2em 0; /* 'Vertikaler Abstand der einzelnen Radio-Elemente */
	/* evtl. im IE beide Male auf 10px setzen, um ein Ausbrechen nach links zu verhindern */
	}

form div fieldset.language label.labelRadio {
  /* display: inline; nicht nötig, und für IE auch schädlich! */
  margin: 0 0 0.2em 0; /* evtl. im IE auf 5px setzen, um Ausbrechen nach links zu verhindern s.oben */
  width: 130px; /*bestimmt die Breite der Radiolabels */
}

div.flag { /* erforderlich für den IE, um ein Ausbrechen des Divs nach rechts zu verhindern */
	width: 38px;
}

div.sprache div.flag img { /* Absolute Positionierung der Flaggen */
	position: absolute;
	left: 140px;
	top: 0px; /* Nötig, um die Flaggen auf Höhe des Div = der Radioboxen zu halten */
	/* Zusätzliche Möglichkeit, die Flaggen anzuheben; nach Verzicht auf Inline nicht mehr nötig */
}

form div img {
  border: 1px solid #000000;
}

/* Eigene Error-Anpassung */
#wrapper p.error {
  background-color: #ff0000;
  background-image: url(/images/icon_error.gif);
  background-repeat: no-repeat;
  background-position: 3px 3px;
  color: #ffffff;
  padding: 3px 3px 5px 27px;
  border: 1px solid #000000;
  margin: auto 100px 20px 100px;
}

#wrapper form div.error p.error {
  background-image: url(/images/icon_error.gif);
  background-position: top left;
  background-color: #ffffe1;
  border: 1px solid #ff0000;
  font-size: 100%;
  font-weight: normal;
  margin: 0 0 0 141px;
  width: 176px;
  color: #ff0000;
}

/* Ende eigene Error-Anpassung */

/* Eigene kleine Feedback - Botschaft oben */
#wrapper p.feedback {
  background-color: #ffffe1;
  background-image: url(/images/icon_error.gif);
  background-repeat: no-repeat;
  background-position: 3px 3px;
  color: #ff0000;
  padding: 3px 3px 5px 27px;
  border: 1px solid #ff0000;
  margin: auto 100px 20px 100px;
}

form div select, form div textarea {
  width: 200px;
  padding: 1px 3px;
  margin: 0 0 0 0;
}

form div input.inputText, form div input.inputPassword {
  width: 200px;
  padding: 1px 3px;
  margin: 0 0 0 0;
}

form div input.inputFile {
  width: 211px;
}

form div select.selectOne, form div select.selectMultiple {
  width: 211px;
  padding: 1px 3px;
}

form div input.inputCheckbox, form div input.inputRadio, input.inputCheckbox, input.inputRadio {
  display: inline;
  height: auto;
  width: auto;
  background-color: transparent;
  border-width: 0;
  padding: 0;
  margin: 0 0 0 140px;
}

form div.submit {
  width: 239px;
  padding: 0 0 0 171px;
}

form div.submit div {
  display: inline;
  float: left;
  text-align: left;
  width: auto;
  padding: 0;
  margin: 0;
}

form div input.inputSubmit, form div input.inputButton, input.inputSubmit, input.inputButton {
  background-color: #cccccc;
  color: #000000;
  width: auto;
  padding: 0 6px;
  margin: 0;
}

form div.submit div input.inputSubmit, form div.submit div input.inputButton {
  float: right;
  margin: 0 0 0 5px;
  font-size: 110%; /* vergrößert den Text der Submit-Buttons */
}

form div small {
  display: block;
  margin: 0 0 5px 142px;
  padding: 1px 3px;
  font-size: 88%;
}


/* form.import.css */

label img {
  /* behavior: url(/behaviors/label_img.htc); */
}

form fieldset legend {
  line-height: 150%;
}

form input, form select, form textarea {
  background-color: #ffffff;
}

form textarea.expanding {
  overflow: auto;
  /* overflow-x: auto;
  overflow-y: visible; */
  /* overflow-x und overflox-y sind nur in CSS3 definiert, nicht in CSS2.1 und validieren daher nicht */
}

div.optional label:before {
  content: '';
}

div.required label:before {
  content: '';
}
  
form div label.labelCheckbox, form div label.labelRadio, label.labelCheckbox, label.labelRadio {
  display: block;
  width: 190px;
  padding: 4px 0 0 18px;
  text-indent: -18px;
  line-height: 120%;
}

form div label.labelCheckbox input.inputCheckbox, form div label.labelRadio input.inputRadio, label.labelCheckbox input.inputCheckbox, label.labelRadio input.inputRadio {
  margin: 0;
}

form div fieldset input.inputText, form div fieldset input.inputPassword, form div fieldset input.inputFile, form div fieldset textarea.inputTextarea {
  width: 160px;
  margin: 0 0 0 18px;
}

form div fieldset.fieldlarge div.bestell input.inputText {
  width: 40px;
  margin: 0 0 0 0.8em; /* Abstand der Anzahl-Labels zu den Input-Feldern */
}

/* Focus - Hintergrundfarbe für die Eingabefelder */
input.inputText:focus, input.inputPassword:focus, input.inputFile:focus, textarea.inputTextarea:focus {
background: #A4C2C2;
}

form div label.compact {
  display: inline;
  width: auto;
  padding: 4px 10px 0 0;
  text-indent: 0;
  margin: 0 0 0 0;
}

form div.wide label {
  float: none;
  display: block;
}

form div label.wide {
  width: 348px;
}

form div.wide input.inputText, form div.wide input.inputPassword, form div.wide input.inputFile, form div.wide select, form div.wide textarea {
  width: 344px;
  margin: 0;
}

form div.notes p, form div small {
  line-height: 125%;
}

form div.wide small {
  margin: 0 0 5px 0;
}

#captchapix {
	border: 1px dashed silver;
}


/* Anweisungen für Registered Commons und Cookies bei Nutzung des Captchas */
.jqcorner #rc img {
	position: relative;
	top: 4px;
	width: 80px;
	padding-left: 4px;
	padding-right: 4px;
}
	
.jqcorner #rc {
	margin-top: 10px;
	font: 1.0em Verdana, Arial, Helvetica, sans-serif;
	/*font-size: 0.8em;*/
	color: #333333;
	text-align: center;
}
	
.jqcorner #komp {
	/* margin-top: 0px; */
	padding-right: 30px;
	font: 1.0em Verdana, Arial, Helvetica, sans-serif;
	/*font-size: 0.8em;*/
	color: #333333;
	text-align: left;
}

.jqcorner #spam {
	margin-top: 10px;
	padding-right: 30px;
	font: 1.0em Verdana, Arial, Helvetica, sans-serif;
	/*font-size: 0.8em;*/
	color: #333333;
	text-align: left;
}

.jqcorner #spam2 {
	/* margin-top: 0px; */
	padding-right: 30px;
	font: 1.0em Verdana, Arial, Helvetica, sans-serif;
	/*font-size: 0.8em;*/
	color: #333333;
	text-align: left;
}

