/* CLASSES FÜR FORM VALIDATION */
.bar{
	font-weight: bold;
}

input.disabled {
	border: 1px solid #F2F2F2;
	background-color: #F2F2F2;
}

input.required, textarea.required {
	border: 1px solid #00A8E6;
}
input.validation-failed, textarea.validation-failed {
	border: 1px solid #FF3300;
	color : #FF3300;
}
input.validation-passed, textarea.validation-passed {
	border: 1px solid #00CC00;
	color : #000;
}


fieldset {
  border: 1px solid #CCCCCC;
  padding-left: 10px;
  padding-bottom: 10px;
  display: block;
  clear: both;
  margin-top: 20px;
  position: relative;
}

fieldset legend {
    font-weight: bold;
}

fieldset input, fieldset select {
  width:200px;
  float:left;
  display:block;
  border: 1px solid #00CC00;
  margin-right:10px;
  margin-top:3px !important;
  margin-top:0px; /*to fix IE6 position*/
}


fieldset label {
  width:200px;
  clear:none;
  float:left;
  display:block;
  padding-right:2px;
  line-height: 25px;
  margin-left: 20px;
  white-space:nowrap; /*to fix IE6 wrapping*/
  cursor: pointer;
}

select, input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
   cursor: pointer;
}

.form-row {
	clear: both;
	padding: 0.5em;
}

.field-label {

}

.validation-advice {
	font-weight: bold;
	font-size: 9px;
    border: 1px dotted red;
    padding: 5px;
    position: absolute;
    width: 200px;
}

.custom-advice {
	font-weight: bold;
	clear: both;
	margin-left: 200px;
	font-size: 9px;
}

.radio-field-label{

  width:100px;
  float:left;
  display:block;
  margin-right:10px;
  margin-left: 0px;
  margin-top:3px !important;
  margin-top:0px; /*to fix IE6 position*/
}

.field-widget {

}
/* ENDE FORM VALIDATION*/