@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:0pt 0pt 7px;
  padding:0pt 0pt 0;
}
.uniForm fieldset legend, .uniForm fieldset .legend{
  /*color:#000;*/ /* Reset IE */
 /* margin:0 0 0.5em;
  padding:10px 0 0 10px;
  font-weight: bold;*/
	font-size: 18px;
	font-weight: bold;
	color: #316086 !important;
	border-bottom: 1px solid #b3b4b6;
	padding-bottom: 10px;
}
.uniForm .ctrlHolder{ /* This is the main unit that contains our form elements */
  padding:7px; 
}
.uniForm .buttonHolder{
  text-align: center; /* Recommended */
  margin:15px 0 0;
  padding:10px;
  clear:both;
  overflow:hidden;
  border-top: 1px #b3b4b6 solid;
}
.uniForm .focused{  }
/* text fields and radio lists have the left-right layout */
.blockLabels div.text label,
.blockLabels div.radio-list .label,
.blockLabels div.select label,
.blockLabels div.checkbox-list .label {
	float: left;
	width: 200px;
	text-align: right;
}
.blockLabels div.text label.checkboxlabel {
	width:auto;
}
.blockLabels div.text input,
.blockLabels div.radio-list .multiField,
.blockLabels div.checkbox-list .multiField,
.blockLabels div.select select,
.blockLabels div.text select {
	margin-left: 20px;
}
.blockLabels div.select select {
	display: inline !important;
}

.blockLabels div.radio-list .multiField div{
	/*display: inline !important;*/
}

.blockLabels div.radio-list .multiField,
.blockLabels div.checkbox-list .multiField {
	margin-left: 220px;
}

.blockLabels div.text .formHint {
	margin-left: 220px;
}

.blockLabels .content {
	/*border-top: 1px solid #b3b4b6;*/
}


.uniForm .blockLabels .inlineLabel { line-height:30px; }

/* .inlineLabels */
.uniForm .inlineLabels label,
.uniForm .inlineLabels .label{
  text-align:right;
  width:45%; /* 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-bottom:0;
  margin-left:47%; 
}

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

.uniForm .blockLabels .selectInput{
  /*display:block*/;
  width:auto; /* Required property */
}
.uniForm .blockLabels textarea{
  width:99%; /* Required property */
  height:12em; 
}
.uniForm .blockLabels .formHint{
  clear:both;
  float:none;
  width:100%; /* Required property */
  font-style: italic;
  font-size: .9em;
}

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

/* Messages */
.uniForm #errorMsg{
  margin:0 0 1em 0; padding:1em;
}
.uniForm .error{  }
  .uniForm #errorMsg dt,
  .uniForm #errorMsg h3{
    margin:0 0 .5em 0;
    font-size:110%;
    line-height:100%;
    font-weight:bold;
  }
  .uniForm #errorMsg dd{
    margin:0; padding:0;
  }
    .uniForm #errorMsg ol{
      margin:0; padding:0;
    }
      .uniForm #errorMsg ol li{
        margin:0; padding:2px;
        list-style-position:inside;
        position:relative;
      }
    .uniForm .errorField{
      margin:0 0 6px 0; padding:4px;
    }