

               div#wrapperForm {
                    /* Allgemeines Container */
               	margin: 0;
               	width: 100%;
               }

               div#content {
                    /* Sub-Container, wird nach rechts verschoben, da links bei einem Formulare
                    weitere Elemente stehen werden. Typische Alternative: margin: 0 auto; */
                    margin: 0 auto;
               	padding: 0 5px 0 0;
               	text-align: left;
               	width: 500px;
               }
               .contactleft {
                    /* Linker Bereich des Formulars: für Labels */
                    width: 25%;
                    clear: both;
                    float: left;
                    display: inline;
                    padding: 4px;
                    margin: 5px 0 7px 0;
                    text-align: right;
               }
               .contactright {
                    /* Rechter Bereich des Formulars: für Eingabefelder */
                    width: 70%;
                    text-align: left;
                    float: right;
                    display: inline;
                    padding: 4px;
                    margin: 0;
               }

/*	-------------------------------------------------------------
	3. GESTALTUNG VON EINGABEFELDERN
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	*/
               input, textarea {
                    border: 1px solid #aabbcc; 
               }
			   #check1, #check2 {
                    border: 0px; 
               }

               .contactform #Name,#Telefon,#Email,#Street,#Mitteilung,#Callback,#Termin {
                    width: 80%;
                    padding: 4px; 
                    color: #333;
                    font: 1.1em/1.6em Arial, sans-serif; 
               }
			   .contactform #PLZ {
				   width:10%;
                    padding: 4px; 
                    color: #333;
                    font: 1.1em/1.6em Arial, sans-serif; 
               }
			   .contactform #Ort {
				   width:65%;
                    padding: 4px; 
                    color: #333;
                    font: 1.1em/1.6em Arial, sans-serif; 
               }

/*	-------------------------------------------------------------
	4. ALLGEMEINE ATTRIBUTE
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	*/

               span.required {
                    /* Markierung des Eingabefeldes, das ausgefüllt werden soll */
                    color: #666;
                    font-size: 2em;
               }
               label {
                    /* Beschriftung des Eingabeldes */
                    color: #666;
                    font-weight: bold;
                    padding: 2px 5px 2px 5px;
               }

