/* 	[ COPYRIGHT CONTEGRO  - Intelligent Website Content Management ]   */
/* 	[ http://www.contegro.com ]   */



/* -----[ FORM BUILDER ]--------------------------------------------------------------------- */

/*
		Do not change class names. Alter attributes as required.
		Prefix with Continer ID to apply style to individual containers.
		
		You can achieve different column layouts for each container. 
		Once the form is set up, use the source code to find the Container class.
		Prefix this to an existing class name. IE:
			.Container5 .EnquiryLabelGroup {
				display: block;
				clear: both;
				margin: 0px 0px 3px 0px;
				float: left;
				width: 50%;
			}
		
		You can achieve individual styling for any field.
		Once the form is set up, use the source code to find the class of the item you wish to style.
		Prefix this to an existing class name. IE:
			.TextBox6 input {
				width: 50px;
			}

		
*/

/* === [ GLOBAL STYLE ] === */
.FormBuilder {
	position: relative;
	display: block;
	clear: both;
	margin: 0px;
	padding: 0px;
	height: 1%;
}

/* === [ Border and Spacing ] === */
	.FormContainer {
		position: relative;
		display: block;
		clear: both;
		border: 1px solid #CCCCCC;
		height: 1%;
		margin: 0px 0px 10px 0px; 
		font-size: 90%;
		padding: 10px 10px 10px 10px;
		float: left;
		width: 97%;
	}
	
	
/* === [ Surround Field Grouping ] === */
	.EnquiryLabelGroup {
		display: block;
		clear: both;
		margin: 0px 0px 3px 0px;
		padding: 0px 4px;
		font-size: 95%;
	}
/* ---- Your Details -----*/	
	.Container1 .EnquiryLabelGroup {
		display: block;
		clear: none;
		margin: 0px 0px 3px 0px;
		float: left;
		width: 230px;
		padding: 4px 0px 4px 0px;
	}
/* ---- Containers -----*/			
	.Container17 .EnquiryLabelGroup,
	.Container20 .EnquiryLabelGroup,
	.Container27 .EnquiryLabelGroup,
	.Container34 .EnquiryLabelGroup {
		display: block;
		clear: none;
		margin: 0px 0px 3px 0px;
		float: left;
		width: 100%;
		padding: 4px 5px 4px 0px;
		border-bottom: 1px solid #CCCCCC;
	}
	
/* === [ Label Text ] === */
	.FormBuilder label.EnquiryLabel {
		width: 46%;
		position: relative;
		display: block;
		float: left;
		margin: 0px 4px 0px 0px;
	}
	
	
	.FormBuilder label.EnquiryLabel.CheckBoxList28 {
		float:none;
		display:block;
	}

/* === [ Form Fields ] === */
	.FormBuilder input {
		font-family: sans-serif;
		font-size: 95%;
		
	}
	.FormBuilder select, 
	.FormBuilder textarea {
		font-family: sans-serif;
		font-size: 95%;
		width: 30%;
	}
	.HowDidYouHearAboutUs select {
		width: 110px;
	}

/* === [ RadioButtons, CheckBoxList Surrounding Table Style ] === */
	.FormBuilder table {
		padding: 0px;
	}
	.FormBuilder table td {
			padding: 0px 20px 0px 0px;
	}
		.FormBuilder .RadioButtons table td,
		.FormBuilder .CheckBoxList table td {
			padding: 0px 20px 0px 0px;
			font-size: 90%;
		}
		.FormBuilder table input {
			margin: 0px 3px 0px 0px;
			float: left;
		}
		.FormBuilder table label {
			margin: 3px 0px 0px 0px;
			float: left;
			font-size: 90%;
		}

/* === [ TEXT ONLY FIELDS ] === */

		/* === [ Surrounding DIV's ] === */
		.EnquiryLabelGroup.Heading,
		.EnquiryLabelGroup.Description,
		.EnquiryLabelGroup.DisplayField {
		}
		/* === [ Text ] === */
		.FormHeading,
		.FormDescription,
		.FormDisplayField {
			font-size: 100%;
			margin: 0px;
			clear: both;
		}
		/* === [ Label Style ] === */
		.Heading label.EnquiryLabel,
		.Description label.EnquiryLabel,
		.DisplayField label.EnquiryLabel {
			font-size: 85%;
			text-transform: uppercase;
			font-weight: bold;
			color: #999999;
		}
		/* === [ Container Heading ] === */
			.FormHeading span {
				font-size: 95%;
				font-weight: bold;
				display: block;
				margin: -10px -10px 8px -10px;
				padding: 6px 0px 6px 10px;
				background: #f1f2ed;
				border-bottom: 1px solid #CCCCCC;
			}
			
			.Container17 .FormHeading span {
				display: none;
				margin: 0px 0px 0px 0px;
				padding: 0px 0px 0px 0px;
				background: none;
				border-bottom: none;
			}


/* === [ INPUT FIELDS ] === */
		
		/* === [ Surrounding DIV's ] === */
		.EnquiryLabelGroup.TextBox,
		.EnquiryLabelGroup.MemoBox,
		.EnquiryLabelGroup.NumberField,
		.EnquiryLabelGroup.EmailField,
		.EnquiryLabelGroup.DateTime,
		.EnquiryLabelGroup.EmailField,
		.EnquiryLabelGroup.YesNoTickBox {
		}

		/* === [ Form Fields ] === */
		.FormBuilder .TextBox input,
		.FormBuilder .NumberField input,
		.FormBuilder .EmailField input,
		.FormBuilder .DateTime input,
		.FormBuilder .EmailField input {
			width: 140px;
		}
		.FormBuilder .FirstName.TextBox input,
		.FormBuilder .FamilyName.TextBox input,
		.FormBuilder .StreetNumber.TextBox input,
		.FormBuilder .Suburb.TextBox input,
		.FormBuilder .City.TextBox input,
		.FormBuilder .StateProvince.TextBox input,
		.FormBuilder .Country.TextBox input,
		.FormBuilder .HomePhone.TextBox input,
		.FormBuilder .WorkPhone.TextBox input,
		.FormBuilder .Fax.TextBox input,
		.FormBuilder .Email.TextBox input {
			width: 100px;
			padding-right: 4px;
		}
		
		.FormBuilder .MemoBox textarea{
			width: 194px;
		}
		

/* === [ LIST FIELDS ] === */
		
		/* === [ Surrounding DIV's ] === */
		.EnquiryLabelGroup.DropDownList,
		.EnquiryLabelGroup.MuiltSelectList,
		.EnquiryLabelGroup.RadioButtons,
		.EnquiryLabelGroup.CheckBoxList,
		.EnquiryLabelGroup.ManagedList {
		}

		/* === [ Form Fields ] === */
		.FormBuilder .DropDownList input,
		.FormBuilder .MuiltSelectList input,
		.FormBuilder .RadioButtons input,
		.FormBuilder .CheckBoxList input,
		.FormBuilder .ManagedList input {
		}
		
/* === [ DESIGN ELEMENTS ] === */

		.EnquiryLabelGroup.HorizontalRule,
		.EnquiryLabelGroup.FormBreak {
			position: relative;
			clear: both;
			display: block;
			background: #666666;
			height: 1px;
			width: 100%;
			margin: 6px 0px;
			padding: 0px;
		}
		
/* === [ FUNCTIONS - Do not change unless design requires ] === */

		/* === [ Asterix ] === */
		.RequiredMarker {
			padding: 0px 2px;
		}
		/* === [ Error Text ] === */
		.EnquiryError {
			position: relative;
			display: block;
			clear: both;
			font-size: 100%;
			float: left;
		}
		/* === [ CaptchaControl ] === */
		.CaptchaControl {
			position: relative;
			display: block;
			clear: both;
			border-style: none;
			background: #FFFFFF;
			margin: 0px 0px 10px 0px; 
			font-size: 90%;
			padding: 10px 10px 3px 10px;		
		}
		/* === [ Button ] === */
		.FormBuilder input.EnquiryButton {
			position: relative;
			display: block;
			margin: 10px 0px;		
		}
		
