@charset "iso-8859-1";
/* CSS Document */

label, input, select { /* Alle Labels UND Formularelemente auswählen */
  display: block;
  float: left;
  width: 100px; 
  /* background: transparent; */
  }
  
input {  
    width: 300px; /* Breite.*/
	border-left: medium none #F9FDEE; 
	border-right: medium none #F9FDEE; 
	border-top: medium none #F9FDEE; 
	border-bottom: 1px dotted #333333;	
	background-color: #f9f9f9;  
}

textarea {  
    width: 300px; /* Breite.*/
	border: 1px dotted #333333;	  
}

form br { /* Alle Zeilenumbrüche in Formularen auswählen */
  clear: left; /* das floating der labels und inputs aufheben */
}

input#submit { /* den Submit-Button */
  float: none;
  width: auto;
  border: none;
  color: #ffffff;
  background-color: #333333;
  }
  
label {
 text-align: right; 
 padding-right: 1em; 
 padding-bottom: 1em;
 	font-family:"Courier New",arial,sans-serif;	
	font-size:90%;
}

form {
  /* background-image: url(formbg.jpg); */
  background-color: #f9f9f9;
  border: 1px dotted #333333;
  margin:0;
  padding:.5em;
  float:left;
  margin-right:25px;
}

fieldset {
  border:none;
  }


