@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 fieldset{
  margin:1em 0; 
}

.uniForm .optional {
	font-style: bold;
}


.uniForm .ctrlHolder{ /* This is the main unit that contains our form elements */
  padding: 7px 10px; 
}

.uniForm tr.ctrlHolder{ 
  padding:0px; 
}

.uniForm .buttonHolder{
  text-align:left; /* Recommended */
  padding-top:10px;
}
.uniForm .focused{
  background:#F1F1DA; 
}




/* .inlineLabels */
.uniForm .inlineLabels label,
.uniForm .inlineLabels .label{
  width:45%; /* Required property */
}
.uniForm .inlineLabels .textInput,
.uniForm .inlineLabels .fileUpload{
  width:60%; /* Required property */
}
.uniForm .inlineLabels .selectInput{
  width:60%; /* Required property */
}
.uniForm .inlineLabels textarea{
  width:60%; /* Required property */
  height:18em; 
}
.uniForm .inlineLabels .formHint{
  margin-top:0;
  margin-left:47%; 
}




/* .blockLabels */
.uniForm label, .uniForm .label {
	color:#565656;
	font: normal 12px/18px Arial, Helvetica, sans-serif;

	padding-bottom:7px;
	display:block;
	width:100%;
}

.uniForm .blockLabels .textInput,
.uniForm .blockLabels .fileUpload{
  width:60%; /* Required property */
}

.uniForm .blockLabels .selectInput{
  display:block;
  width:53.5%; /* Required property */
}
.uniForm .blockLabels textarea{
  width:70%; /* Required property */
  height:9em; 
}
.uniForm .blockLabels .formHint{
  width:60%; /* Required property */
}

.uniForm .blockLabels .textInput,
.uniForm .blockLabels textarea{
	padding:3px;
	font: 13px/18px Verdana, Arial, Helvetica, sans-serif;
	color: #575757;	  
	margin-top:2px;
}





/* 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{
  background:#ffdfdf;
  border:1px solid #df7d7d; border-width:1px 0;
  margin:0 0 1em 0; padding:1em;
}
.uniForm .error{
  background:#ffdfdf;
  border:1px solid #df7d7d; border-width:1px 0;
}
  .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;
        border-bottom:1px dotted #df7d7d;
        position:relative;
      }
    .uniForm .errorField{
      color:#af4c4c;
      margin:0 0 6px 0; padding:4px;
      background:#ffbfbf;
    }
	
	
/* Custom elements */

table.checkbox_table {	
	width:100%;
}

table.checkbox_table td {	
	padding-right:20px;
}

table.great_checkbox_table {
	height:27px;
	font: 11px Verdana, Arial, Helvetica, sans-serif;
	color: #000000;
	width:480px;
	margin:0 10px;
	text-align:center;


}

table.great_checkbox_table caption, table.checkbox_table caption {
	font-size: 11px;
	line-height: 18px;
	padding-bottom:5px;
}


table.great_checkbox_table tr {
	height:27px;
	background: url(../images/table_line.gif) repeat-x left bottom;
	
}



table.great_checkbox_table thead th,
table.great_checkbox_table thead td {
	font-weight: bold;
	padding-bottom:5px;
}

table.great_checkbox_table tbody th {
	width:40%;
}

table.great_checkbox_table tbody td {
	width:20%;
}



.uniForm .buttonHolder button{
	text-align:left; /* Recommended */
	width:90px;
	height:30px;
	font-size: 12px;
	text-align:center;
	margin-right:10px;
	overflow:hidden;
	display:block;
	float:left;
}
























