@charset "UTF-8";
/* CSS Document */

@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 */
form fieldset{
  margin:1em 0;
  border:0; 
}
form fieldset legend{
  color:#000; /* Reset IE */
  font-weight:bold; 
  font-size:120%; 
}
form .input{ /* This is the main unit that contains our form elements */
  padding:7px; 
  float:left;
  width:500px;
  /*clear:both;*/
  margin-bottom: 1px;
  
  }

form .buttonHolder{
  padding: 10px 7px;
  overflow: visible;
  float:left;
  width:230px;
  text-align:right;
  clear:both;
  padding-left: 50px;
}
form .buttonHolder button { }

form .ctrlHolder{ margin:7px 0;}

form .focused{
  background-color:#FFFCDF; 
}



/* .inlineLabels */
form .inlineLabels label,
form .inlineLabels .label{
  width:35%; /* Required property */
  float:left;
  font-weight:bold;
}
form .inlineLabels label em, form .blockLabels label em { color: #990000;}

form .inlineLabels .textInput,
form .inlineLabels .fileUpload{
  width:45%; /* Required property */
  float:left;
  border: 1px solid #CCCCCC;
  padding: 2px 0;
}
form .inlineLabels .selectInput{
  width:45%; /* Required property */
}
form .inlineLabels textarea{
  width:45%; /* Required property */
  height:12em; 
}
form .inlineLabels .formHint{
  margin-top:0;
  margin-left:47%; 
    font-size: 9px;
}

/* .blockLabels */
form .blockLabels .textInput,
form .blockLabels .fileUpload{
  width:53%; /* Required property */
}

form .blockLabels .selectInput{
  display:block;
  width:53.5%; /* Required property */
}
form .blockLabels textarea{
  width:53%; /* Required property */
  height:12em; 
}
form .blockLabels .formHint{
  width:45%; /* Required property */

}

form .blockLabels .label { width: 45%; }

/* Columns */
form .col{
  width:25.9%; /* Required property */
  margin:0 2% 0 0; 
}
form .columnLeft{
  width:49%; /* Required property */
}
form .columnRight{
  width:49%; /* Required property */
}

/* Messages */
form #errorMsg{
  background:#ffdfdf;
  margin:0 0 1em 0; padding:1em;
}
form .error{
  background:#FFF1DD;
  width:585px;
}
form .inlineLabels .error input { }
  form #errorMsg dt,
  form #errorMsg h3{
    margin:0 0 .5em 0;
    font-size:110%;
    line-height:100%;
    font-weight:bold;
  }
  form #errorMsg dd{
    margin:0; padding:0;
  }
    form #errorMsg ol{
      margin:0; padding:0;
    }
      form #errorMsg ol li{
        margin:0; padding:2px;
        list-style-position:inside;
        border-bottom:1px dotted #df7d7d;
        position:relative;
      }
    form .errorField{
      color:#af4c4c;
      margin:0 0 6px 0; padding:4px;
	  width:45%;
	  margin-left: 45%;
	  font-size: 10px;
    }
