@import "uniFormGeneric.css";
/* Please add any changes at the bottom of this file */

/* ------------------------------------------------------------------------------ */
/* Generals */
.uniForm fieldset {
}
.uniForm fieldset legend {
	color: #333;
	font-weight: bold;
	font-size: 100%;
	margin: 0;
	padding: 1.5em 0;
}
/* This is the main unit that contains our form elements */
.uniForm .ctrlHolder {
	padding: 7px;
	border-bottom: 1px solid #dfdfdf;
}
.uniForm .buttonHolder {
	/*text-align: right;*/
	margin:15px 0 0 0;
}
.uniForm .resetButton {
	float: left;
}
/* This class gets added to div.ctrlHolder to highlight the row */
.uniForm .focused {
	background: #fffcdf;
}
/* .inlineLabel is used for inputs within labels - checkboxes and radio buttons */
.uniForm .inlineLabel input, .uniForm .inlineLabels .inlineLabel input, .uniForm .blockLabels .inlineLabel input {
	float: left;
	margin: 0 .4em 0 0;
}
.uniForm .inlineLabel span {
	float: left;
	width: 90%;
}
/* ------------------------------------------------------------------------------ */
/* .blockLabels (default style, will be applied even if you don't class the parent element) */
.uniForm .blockLabels .ctrlHolder {
}
.uniForm label, .uniForm .blockLabels label, .uniForm .blockLabels .label {
	margin: 0 0 .5em 0;
}
.uniForm .textInput, .uniForm .blockLabels .textInput, .uniForm .blockLabels .fileUpload {
	width: 53%; /* <- Required property *//*border:1px solid red;*/
}
.uniForm .selectInput, .uniForm select, .uniForm .blockLabels .selectInput, .uniForm .blockLabels select {
	width: 53.5%; /* <- Required property *//*border:1px solid blue;*/
}
.uniForm textarea, .uniForm .blockLabels textarea {
	width: 53%; /* <- Required property */
	height: 12em;
}
.uniForm .formHint, .uniForm .blockLabels .formHint {
	width: 45%; /* <- Required property */
	font-size: .9em;
	color: #777;
	position: relative;
	top: -.5em;
}
.uniForm .multiField, .uniForm .blockLabels .multiField {
	width: 53%;
}
.uniForm .multiField .inlineLabel, .uniForm .blockLabels .multiField .inlineLabel {
	display: block;
	margin: 0 0 .5em 0;
}
.uniForm .multiField .blockLabel, .uniForm .blockLabels .multiField .blockLabel {
	width: 30%;
	margin: 0 10px 0 0;
}
.uniForm .multiField .blockLabel .textInput, .uniForm .multiField .blockLabel .selectInput, .uniForm .multiField .blockLabel select, .uniForm .blockLabels .multiField .blockLabel .textInput, .uniForm .blockLabels .multiField .blockLabel .selectInput, .uniForm .blockLabels .multiField .blockLabel select {
	width: 100%;
	margin: .3em 0 0 0;
}
/* ------------------------------------------------------------------------------ */
/* .inlineLabels */
.uniForm .inlineLabels .ctrlHolder {
}
.uniForm .inlineLabels label, .uniForm .inlineLabels .label {
	width: 35%; /* <- Required property */
	margin: .3em 2% 0 0; /* <- Required property */
}
.uniForm .inlineLabels .textInput, .uniForm .inlineLabels .fileUpload {
	width: 45%; /* <- Required property */
}
.uniForm .inlineLabels .postcodeInput{ width:20%; }
.uniForm .inlineLabels .selectInput, .uniForm .inlineLabels select {
	width: 45%; /* <- Required property */
}
.uniForm .inlineLabels textarea {
	width: 45%; /* <- Required property */
	height: 12em;
}
.uniForm .inlineLabels .formHint {
	margin-top: 0;
	margin-left: 37.5%;
	font-size: .9em;
	color: #777;
	position: static;
}
.uniForm .inlineLabels .multiField {
	width: 45%; /* <- Required property */
	margin: 0 0 .3em 0;
}
.uniForm .inlineLabels .multiField .inlineLabel {
	display: block;
	margin: 0 0 .5em 0;
}
.uniForm .inlineLabels .multiField .blockLabel {
	float: left;
	width: 26%;
	margin: 0 3% 0 0;
}
.uniForm .inlineLabels .multiField .blockLabel .textInput, .uniForm .inlineLabels .multiField .blockLabel .selectInput, .uniForm .inlineLabels .multiField .blockLabel select {
	width: 100%;
	margin: .3em 0 0 0;
}
/* Focus pseudoclasses */
.uniForm .ctrlHolder .textInput:focus {
	outline: none; /* Get rid of the 'glow' effect in WebKit, optional */
}
.uniForm .ctrlHolder textarea:focus {
	outline: none; /* Get rid of the 'glow' effect in WebKit, optional */
}
.uniForm div.focused .formHint {
	color: #333;
}
/* Columns (they are floated left by default) */
.uniForm .col {
	width: 47.9%; /* <- Required property */
	margin: 0 2% 20px 0;
}
/* Use .first and .last classes to control the layout/spacing of your columns */
.uniForm .col.first {
	width: 49%; /* <- Required property */
	float: left;
	clear: none;
}
.uniForm .col.last {
	width: 49%; /* <- Required property */
	float: right;
	clear: none;
	margin-right: 0;
}
/* Messages */
.uniForm #errorMsg {
	background: #eee !important;
	
	margin: 0 0 1.5em 0;
	padding: 7px;
}
.uniForm .error {
	background: #eee;
}
.uniForm #errorMsg dt, .uniForm #errorMsg h3 {
	margin: 0 0 .5em 0;
}
.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 {
	color: #ca0018;
	margin: 0 0 6px 0;
}

/* ------------------------------------------------------------------------------ */
/* Changes to the default: */

.uniForm fieldset {
	position:relative;
}
.uniForm label em, .uniForm .label em, .uniForm .formHint em, .uniForm .requiredKey em {
	font-size:1.3em;
	line-height:1em;
}
.uniForm .requiredKey {
	float:right;
}
.uniForm fieldset legend, .uniForm #errorMsg h3 {
	margin:0;
	padding:0;
}
.uniForm #errorMsg, .ctrlHolder.error {
	background:red url(../images/errorMsgBG.gif) !important;
}
.uniForm #errorMsgInner {
	/*background:url(../images/errorMsgHat.gif) 0 0 no-repeat;*/
	padding: 0;
}
.uniForm #errorMsgFoot {
	background:url(../images/errorMsgFoot.gif);
	margin: 0 0 10px;
	height: 8px;
	overflow: hidden;
}
.uniForm #errorMsg h3 {
	color:#ca0018;
}
.contentPanelPlain {
	padding:0 10px;
}
.uniForm .ctrlHolder {
	border-bottom: 1px none #dfdfdf;
}
.uniForm .focused {
	background: #dddddd;
}
.uniForm .error {
	color: #333;
	font-weight: normal;
}
.uniForm .inlineLabels .multiField.gender .blockLabel {
	width: 40%;
}
.uniForm .inlineLabels .multiField.gender input {
	border:1px none #000;
}
.uniForm .textInput,.uniForm textarea {border:1px solid #999;}

