/**
 * FormBuilder Styles by Jonathan Nicol (F6 Design)
 * Semantic example - for the default FormBuilder markup
 * Feel free to modify these rules to suit your site's design!
 */

/* Form */
.fbform {
	background: #f0f0f0;
	margin: 0;
	padding: 15px;
	}
	/* regular fieldset */
	.fbform fieldset {
		border: none;
		border-top: 1px solid #333;
		clear: both;
		margin: 20px 0 10px 0;
		padding: 0;
		}
		/* fieldset containing submit btn */
		.fbform fieldset.fbsubmit {
			border: 0;
			margin: 0;
			padding: 0;
		}
	/* legend */
	.fbform legend {
		color: #333;
		font-size: 1.1em;
  		font-weight: bold;
  		margin-bottom: 10px;
  		padding: 0 5px;
  		}
  	.fbform dl {
		margin: 0;
	}
  	.fbform dt {
  		clear: both;
  		display: block;
  		float: left;
  		margin: 10px 0 0 5px;
  		padding: 0;
  		width: 120px;
  		}
  	.fbform dd {
  		display: block;
  		float: left;
  		margin: 10px 0 10px 0;
		padding:0;
		width: 340px;
  		}
  		/* field instructions */
  		.fbform dd p {
  			font-size: 0.8em;
  			margin: 5px 0 0 0;
  			}
  		.fbform dd label {
  			display: block;
  			}
  	/* dividers */
  	.fbform dd.fbformdivider {
  		border-bottom: 1px solid #ccc;
  		clear: both;
  		float:none;
  		height: 1px;
		margin: 0 0 5px 0;
		overflow: hidden;
		width: auto;
  		}
  		.fbform dd.fbformdivider.fblast {
	  		display: none;
	  		}
.fbtextfield, .fbselect {
	background: #fff;
	width: 230px;
}
.fbtextarea {
	/* textarea tends to override font settings, so we will re-specify them here */
	font-family:Verdana,Arial,sans-serif;
	font-size: 1em;
}
.fbradio {
	/* style radio buttons here, if need be */
	}
.fbcheckbox {
	/* style checkboxes here, if need be */
	}
.fbsubmitbtn {
	margin: 0 0 15px 0;
}
.fbfielderror {
	color: #e00000;
}
.fbrequired {
	color: #e00000;
}
/* Error Message */
.fbformerrormessage {
	background: #f9ecec;
	border: 3px solid #e00000;
	margin: 0;
	}
	.fbformerrormessage h2 {
		background: #e00000;
		color: #fff;
		font-size: 1.5em;
		padding: 10px 15px;
		margin: 0;
		}
	.fbformerrormessage ul {
		margin-bottom: 15px;
		margin-top: 15px;
		}
/* Thanks Message */
.fbthanks {
	background: #f1fcf1;
	border: 3px solid #02b602;
	margin: 0;
	}
	.fbthanks h2 {
		background: #02b602;
		color: #fff;
		font-size: 1.5em;
		margin: 0;
		padding: 10px 15px;
		}
	.fbthanks p {
		padding: 20px 15px;
		}
		.fbthanks p a {
			/* style the thanks link here, if need be */
			}