.uniForm {
}
.uniForm legend {
	font-weight: bold;
	font-size: 100%;
	margin: 0;
	padding: 1.5em 0;
}
.uniForm .ctrlHolder {
	padding: 5px;
	border-bottom-width: 1px;
	border-bottom-style: none;
	border-bottom-color: #DFEBF5;
	color: #FFF;
}
.uniForm .ctrlHolder.focused {
	background: #fffcdf;
}
.uniForm .inlineLabels .noLabel {
}
.uniForm .buttonHolder {
	text-align: left;
	padding: 7px;
	/* CSS3 */
                            border-radius:         4px;
	-webkit-border-radius: 4px;
	-moz-border-radius:    4px;
	-o-border-radius:      4px;
	-khtml-border-radius:  4px;
	margin-top: 10px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
}
.uniForm .buttonHolder .primaryAction:active {
	position: relative;
	top: 1px;
}
.uniForm .secondaryAction {
	text-align: left;
}
.uniForm button.secondaryAction {
	background: transparent;
	border: none;
	color: #777;
	margin: 1.25em 0 0 0;
	padding: 0;
}
.uniForm .inlineLabels label em,  .uniForm .inlineLabels .label em {
	font-style: normal;
	font-weight: bold;
}
.uniForm label small {
	font-size: .75em;
	color: #777;
}
.uniForm .textInput,  .uniForm textarea, .uniForm select {
	font-family: Arial, Helvetica, sans-serif;
	font-size:11px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 5px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #CCC;
	border-right-color: #CCC;
	border-bottom-color: #CCC;
	border-left-color: #ff544f;
	-webkit-box-shadow: inset 0px 0px 10px 0px , 0.55);
	box-shadow: inset 0px 0px 10px 0px , 0.55);
	height: 20px;
	padding-top: 4px;
	padding-right: 2px;
	padding-bottom: 4px;
	padding-left: 2px;
	background-color: #FFF;
	color: #666;
}

.uniForm textarea {
	height: 12em;
}
.uniForm .fileUpload {
}
.uniForm ul {
	width:430px;
}
.uniForm li {
}
.uniForm ul li label {
	font-size: .85em;
}
.uniForm .small {
}
.uniForm .medium {
}
.uniForm .large {
} /* Large is default and should match the value you set for .textInput, textarea or select */
.uniForm .auto {
}
.uniForm .small,  .uniForm .medium,  .uniForm .auto {
}
/* Get rid of the 'glow' effect in WebKit, optional */
      .uniForm .ctrlHolder .textInput:focus,  .uniForm .ctrlHolder textarea:focus {
	outline: none;
}
.uniForm .formHint {
	font-size: .85em;
	color: #777;
	width:150px
}
.uniForm .inlineLabels .formHint {
	padding-top: .5em;
}
.uniForm .ctrlHolder.focused .formHint {
	color: #333;
}
/* ----------------------------------------------------------------------------- */
/* ############################### Messages #################################### */
/* ----------------------------------------------------------------------------- */

  /* Error message at the top of the form */
  .uniForm #errorMsg {
	background: #ffdfdf;
	border: 1px solid #f3afb5;
	margin: 1.5em 0 1.5em 0;
	padding: 0 1.5em;
	/* CSS3 */
                      border-radius:         4px;
	-webkit-border-radius: 4px;
	-moz-border-radius:    4px;
	-o-border-radius:      4px;
	-khtml-border-radius:  4px;
}
.uniForm #errorMsg h3 {
} /* Feel free to use a heading level suitable to your page structure */
.uniForm #errorMsg ol {
	margin: 0 0 1.5em 0;
	padding: 0;
}
.uniForm #errorMsg ol li {
	margin: 0 0 3px 1.5em;
	padding: 7px;
	background: #f6bec1;
	position: relative;
	font-size: .85em;
	/* CSS3 */
                                border-radius:         4px;
	-webkit-border-radius: 4px;
	-moz-border-radius:    4px;
	-o-border-radius:      4px;
	-khtml-border-radius:  4px;
}
.uniForm .ctrlHolder.error,  .uniForm .ctrlHolder.focused.error {
	background: #ffdfdf;
	border: 1px solid #f3afb5;
	/* CSS3 */
                                      border-radius:         4px;
	-webkit-border-radius: 4px;
	-moz-border-radius:    4px;
	-o-border-radius:      4px;
	-khtml-border-radius:  4px;
}
.uniForm .ctrlHolder.error input.error,  .uniForm .ctrlHolder.error select.error,  .uniForm .ctrlHolder.error textarea.error {
	color: #af4c4c;
	margin: 0 0 6px 0;
	padding: 4px;
}
/* Success messages at the top of the form */
  .uniForm #okMsg {
	background: #c8ffbf;
	border: 1px solid #a2ef95;
	margin: 0 0 1.5em 0;
	padding: 1.5em;
	text-align: center;
	/* CSS3 */
                   border-radius:         4px;
	-webkit-border-radius: 4px;
	-moz-border-radius:    4px;
	-o-border-radius:      4px;
	-khtml-border-radius:  4px;
}
.uniForm #okMsg p {
	margin: 0;
}
/* ----------------------------------------------------------------------------- */
/* ############################### Columns ##################################### */
/* ----------------------------------------------------------------------------- */

    .uniForm .col {
}
.uniForm .col.first {
}
.uniForm .col.last {
}
.uniForm .col {
	margin-bottom: 1.5em;
}
/* Use .first and .last classes to control the layout/spacing of your columns */
    .uniForm .col.first {
	width: 49%;
	float: left;
	clear: none;
}
.uniForm .col.last {
	width: 49%;
	float: right;
	clear: none;
	margin-right: 0;
}
