/* You can style the label column, when shown above the input fields, here */
form.FormBuilder div.LabelsShownAbove div.FormBuilderLabelColumn {
}

form.FormBuilder {
	margin: 0;
}

/* You can style the label column, when shown to the left of the input fields, here */
form.FormBuilder div.LabelsShownToTheLeft div.FormBuilderLabelColumn {
	float: left;
	width: 20ex; /* default width */
}

/* You can style the label column in both cases here */
form.FormBuilder div.FormBuilderLabelColumn {
	clear: left;
	font-weight: bold;
	padding: 0.4em 0 0.4em 0;
}

/* Styling of div of required fields when LabelsShownToTheLeft */
form.FormBuilder div.LabelsShownToTheLeft div.RequiredLabel  {
	background-image: url(images/FormBuilderRequired.gif);
	background-position: 90% 4px;
	background-repeat: no-repeat;
}

/* Styling of labels of required fields when LabelsShownAbove*/
form.FormBuilder div.LabelsShownAbove Label.Required {
	background-image: url(images/FormBuilderRequired.gif);
	background-position: right 4px;
	background-repeat: no-repeat;
	padding-right: 8px !important;
}

form.FormBuilder div.LabelsShownAbove div.FormBuilderLabelColumn div {
	padding-right: 8px !important; /* if labels spans over multiple lines this attribute is importent - do not delete */ 
}

/* Styling of required input elements, that the uses did not fill out */
form.FormBuilder div.MissingInput {
	border: 1px dashed #D90000;
	margin: 1px;
	padding: 1px;
}

/* Styling of "rows" - a row consists of a label column and an input column */
form.FormBuilder div.FormBuilderRow {
	clear: both;
	margin-top: 0.4em;
}

/* Styling of input columns - they should flow left to allow other input columns to be on the same line */
form.FormBuilder div.FormBuilderInputColumn {
	float: left;
}

/* Input containers are the actual INPUT, SELECT etc. elements RADIO and CHECKBOX elements are in a DIV */
form.FormBuilder *.FormBuilderInputContainer {
	margin-right: 1ex;
	display: inline;
}

/* The help text style */
form.FormBuilder div.FormBuilderInputHelpText {
	background-color: #FFFFFF;
	color: #444444;
	font-style: italic;
	margin-top: 0.3ex;
}

/* The style of "Heading" field types users can create with the builder - the field types that are headings, not input fields */
form.FormBuilder div.FormBuilderHeadingColumn {
	background-color: #DDDDDD;
	font-weight: bold;
	padding: 0.4em;
}

/* The style of "Heading" help text */
form.FormBuilder div.FormBuilderHeadingHelpText {
	padding: 0.4em;
}

/* Styling of buttons */
form.FormBuilder div.FormBuilderButtons {
	clear: left;
	float: left;
	padding-top: 1em;
	text-align: right;
}

/* Styling of characterbased input fields in the form */
form.FormBuilder input, form.FormBuilder select, form.FormBuilder textarea {
	font-size: 1em;
}

/* textarea styling */
form.FormBuilder textarea {
	height: 12ex;
	margin-right: 0em;
	width: 100%;
}

/* The receipts can contain a copy of the users input - this style presends the users data */
div.FormBuilderFieldDataOutput div.FormBuilderFieldDataElement {
	border: 1px solid #C0C0C0;
	margin-bottom: 3px;
	margin-right: 2px;
	margin-top: 1px;
	padding: 3px;
}

/* The "fieldset" element - controls the border around the whole form */
form.FormBuilder fieldset {
	display: block;
	margin: 0;
	padding: .5em 1em 1em 1em;
}

/* This style is used to make the form display alike in Firefox and IE
	Do NOT change this styling */
form.FormBuilder div.FormBuilderClear  {
	clear: both;
	height: 0;
	overflow: hidden;
}

