@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 */
.uniForm {}
.uniForm fieldset{
  margin:0;
  color:#5295C9;
  font-size:13px;
  font-weight:bold;
}
.uniForm fieldset legend{
  color:#000; /* Reset IE */
  font-weight:bold; 
}
.uniForm .ctrlHolder{ /* This is the main unit that contains our form elements */
  padding:4px; 
}
.uniForm .buttonHolder{
  text-align:right; /* Recommended */
  background:#F9F9F9 none repeat scroll 0%;
	border-color:#CCCCCC;
	border-style:solid;
	border-width:1px 0pt;
	clear:both;
	margin:10px 0pt 0pt;
	overflow:hidden;
	padding:10px;
}
.uniForm .focused{
  background:#F1F1F1;
}
/* .inlineLabels */
.uniForm .inlineLabels label,
.uniForm .inlineLabels .label{
  width:25%; /* Required property */
}
.uniForm .inlineLabels .textInput,
.uniForm .inlineLabels .fileUpload{
  width:45%; /* Required property */
}
.uniForm .inlineLabels .selectInput{
  width:45%; /* Required property */
}
.uniForm .inlineLabels textarea{
  width:45%; /* Required property */
  height:12em; 
}
.uniForm .inlineLabels .formHint{
  margin-top:0;
  margin-left:47%; 
}

/* .blockLabels */
.uniForm .blockLabels .textInput,
.uniForm .blockLabels .fileUpload{
  width:93%; /* Required property */
}

.uniForm .blockLabels .selectInput{
  display:block;
  width:93.5%; /* Required property */
}
.uniForm .blockLabels textarea{
  width:93%; /* Required property */
  height:12em; 
}
.uniForm .blockLabels .formHint{
  width:85%; /* Required property */
}

/* Messages */
.uniForm .error{
  background:#ffdfdf;
  color: #000;
  border:1px solid #df7d7d; border-width:1px 0;
}
.errorField{
      color:#af4c4c;
      margin:0 0 6px 0; padding:4px;
      background:#ffbfbf;
    }
.validField{
      color:#467f00;
      margin:0 0 6px 0; padding:4px;
      background:#cafd49;
    }
.uniForm .blockLabels .label em, .uniForm .blockLabels label em{
	display:block;
	font-style:normal;
	font-weight:bold;
	left:28%;
	position:absolute;
}
