/*----------------------------------------------
 |  form.css |
 |-----------
 |  Form and form related elements (input,select,option,legend...)
 *---------------------------------------------*/
form {
  padding: 0px;
  margin: 0px;
}

input, select, textarea {
  color: black;
  padding-left: .4em;
  padding-right: .4em;
  border: 1px solid #e6e6e6;
  background-color: #fcfcfb;
}

textarea {
  width: 95%
}

.noborder {
  border: none;
  background-color: transparent;
}

fieldset {
	border: none;
  padding: 0px;
  margin: 0px;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  background-image: url(../images/button.gif);
  background-repeat: no-repeat;
  width: 50px;
  height: 20px;
}

button span {
  visibility: hidden;
  width: 50px;
  height: 20px;
}


button.button2 {
  margin: 0px;
  padding: 0px;
  font-size: 1em;
  font-family: Arial, Helvetica, sans-serif;
  padding-bottom: 3px;
  padding-left: 8px;
  padding-right: 8px;
  text-align: center;
  line-height: 1.1em;
  height: 20px;
  color: white;
  font-weight: bold;
  letter-spacing: 0.05em;
  background-color: green;
  border-bottom: 1px solid #192254;
  border-right: 1px solid #192254;
  border-top: 1px solid #3B4EB6;
  border-left: 1px solid #3B4EB6;
  cursor: pointer;
}

button.buttonred {
  margin: 0px;
  padding: 0px;
  font-size: 1em;
  font-family: Arial, Helvetica, sans-serif;
  padding-bottom: 3px;
  padding-left: 8px;
  padding-right: 8px;
  text-align: center;
  line-height: 1.1em;
  height: 20px;
  color: white;
  font-weight: bold;
  letter-spacing: 0.05em;
  background-color: red;
  border-bottom: 1px solid #192254;
  border-right: 1px solid #192254;
  border-top: 1px solid #3B4EB6;
  border-left: 1px solid #3B4EB6;
  cursor: pointer;
}

label{
  font-weight: bold;
}

label.required {
	color: #9D080D;
  font-weight: bold;
}

select {
  color: #352E2C;
  padding-left: .4em;
  padding-right: .4em;
}
input, textarea {
  color: #352E2C;
  padding-left: .4em;
  padding-right: .4em;
  border: 1px solid #352E2C;
  background-color: #FAF8F6;
}
textarea {
  width:99%;
}

input:focus, select:focus, textarea:focus {
  background-color: #FFFFFF;
}

input.missing, select.missing, textarea.missing {
  background-color: #FAF2F3;
}

select {
  padding: 0px;
}

div.buttons {
  margin-top: 10px;
  text-align: left;
}

div.formsubheadline {
  margin-top: 0px;
  text-align: left;
}

.fokus{
background-color:#F5F5F5;
margin-bottom:2px;
}