@import "uni-form-generic.css";
/* Your styles below */
/* Keep in mind that wherever you see "Required property" it means that the property must exist, adjust it's value to your liking */

/* Generals */
.action_form fieldset{
  margin:1em 0; 
}
.action_form fieldset legend{
  color:#000; /* Reset IE */
  font-weight:bold; 
  font-size:120%; 
}
.action_form .action_form_field, .action_form .error { /* This is the main unit that contains our form elements */
  padding:7px; 
}
.action_form .buttonHolder{
  text-align:right; /* Recommended */
}
.action_form .focused{
  background:#FFFCDF; 
}

/* .inlineLabels */
.action_form .inlineLabels label,
.action_form .inlineLabels .label{
  width:45%; /* Required property */
}
.action_form .inlineLabels .textInput,
.action_form .inlineLabels .fileUpload{
  width:45%; /* Required property */
}
.action_form .inlineLabels .selectInput{
  width:45%; /* Required property */
}
.action_form .inlineLabels textarea{
  width:45%; /* Required property */
  height:12em; 
}
.action_form .inlineLabels .formHint, .action_form_field .formHint_e{
  margin-top:0;
  margin-left:47%; 
}
.action_form_field .formHint_e{
text-align:right;
font-weight:bold;
color:#f00;
margin-top:-6px;
}

/* .blockLabels */
.action_form .blockLabels .textInput,
.action_form .blockLabels .fileUpload{
  width:53%; /* Required property */
}

.action_form .blockLabels .selectInput{
  display:block;
  width:53.5%; /* Required property */
}
.action_form .blockLabels textarea{
  width:53%; /* Required property */
  height:12em; 
}
.action_form .blockLabels .formHint{
  width:45%; /* Required property */
}

/* Columns */
.action_form .col{
  width:47.9%; /* Required property */
  margin:0 2% 0 0; 
}
.action_form .columnLeft{
  width:49%; /* Required property */
}
.action_form .columnRight{
  width:49%; /* Required property */
}

/* Messages */
.action_form #errorMsg{
  background:#ffdfdf;
  border:1px solid #df7d7d; border-width:1px 0;
  margin:0 0 1em 0; padding:1em;
}
.action_form .error{
  background:#ffdfdf;
  border:1px solid #df7d7d; border-width:1px 0;
}
  .action_form #errorMsg dt,
  .action_form #errorMsg h3{
    margin:0 0 .5em 0;
    font-size:110%;
    line-height:100%;
    font-weight:bold;
  }
  .action_form #errorMsg dd{
    margin:0; padding:0;
  }
    .action_form #errorMsg ol{
      margin:0; padding:0;
    }
      .action_form #errorMsg ol li{
        margin:0; padding:2px;
        list-style-position:inside;
        border-bottom:1px dotted #df7d7d;
        position:relative;
      }
    .action_form .errorField{
      color:#af4c4c;
      margin:0 0 6px 0; padding:4px;
      background:#ffbfbf;
    }