/* 
 wFORMS Extension Stylesheet - formassembly.com					
 Default Theme: March 2005										
 To be used along with wforms-jsonly.css
 This stylesheet and the associated images are Copyright (c) 2005 Cédric Savarese (http://www.4213miles.com)	
 and licensed under the Creative Commons Attribution-ShareAlike License (http://creativecommons.org/licenses/by-sa/2.0/) 
*/

/* please refrain from overwriting CSS outside of the #formGarden div */

 
/* Form Related Rules */
/* ================== */

.widget {
	overflow: hidden;
	float: expression('left');
	position: relative;
	padding: 7px 0;
}
.widget form {
	font-family:Helvetica, Arial, sans-serif;
	padding: 10px;
	height: expression('1%'); /* IE Pick-a-boo bug fix */
	
}
.widget fieldset {
	position: expression('relative'); /* Fixes IE problem with fieldset+legend boundaries */
	padding: 15px 10px;
	background-color:#FAFAFA;
	margin: 20px 0;
}
.widget fieldset fieldset  {
	border: 1px solid #ccc;
	background-color:#FFF;
}
.widget legend {
	position: expression('absolute'); 
	top: expression('-9px'); /* Fixes IE problem with fieldset+legend boundaries */
	padding: 2px 5px;
}
.widget fieldset fieldset legend {
	font-size: 90%;
}
.widget label, .widget .label {
	font-family:Helvetica, Arial, sans-serif;
	font-size:12px;
	color:#007fff;
	margin:12px;
	font-weight:bold;
}
/* .label is typically used on a span or p tag to label a radio or checkbox group */
.widget label.preField, .widget .label  {
	
}
.widget .label { display: block; width: auto; }

.widget label.postField  {
	margin-left: 4px;
	margin-right: 4px;
}

.widget textarea {
	padding-right:0px;
	margin:4px;
}
.widget input {
	padding-right:0px;
	margin:4px;
}
.widget input[type=text], .widget input[type=password] {
	padding-right:0px;
}
.widget select {
	padding: 0;
	margin: 2px 0 1px 0;
}

/* Form Builder Related Rules */
/* ========================== */
/* Form or Fieldset instruction paragraph. */
.widget .instructions {
	margin: 1.5em 0;
}
/* Ties together a label and its checkbox or radio */
.widget .oneChoice {
	white-space: nowrap; 
}
/* wForms Related Rules */
/* ==================== */
/* Field w/ a validation error */
.widget .error {	/* deprecated since wForms v0.92 */
	border: 1px solid #F00;
}
.widget .errFld {
	border: 1px solid #F00;
}
/* Styling for message associated with a validation error. */
.widget .errorMsg { /* deprecated since wForms v0.92 */
	color: #CC3333 !important;
	display: inline;
}
.widget .errMsg {	
	color: #CC3333 !important;
	display: block;
}
/* Field-Hint with focus */
.widget .field-hint {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #333333;
	background-image: url('../images/validate_over.gif');
	background-repeat: no-repeat;
	background-position: left;
	padding-left: 15px;
	display: block;
}
/* Field-Hint without focus */
.widget .field-hint-inactive {
	background-image: url('../images/validate_up.gif');
	background-repeat: no-repeat;
	background-position: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #999999;
	padding-left: 15px;
	display: block;
}
/* Repeat Behavior  */
.widget .repeat {
	border: 1px solid #ddd;
	background-color: #FFFFFF;
	margin: 3px 0;
	padding-right: 6px;
}
.widget .removeable {
	border: 1px solid #ddd;
	background-color: #F3F3F3;
	padding-right: 6px;	
}
/* Links generated by the Repeat Behavior */
.widget .duplicateLink {
	margin-top: 10px;
	font-weight: bold;
	text-align: right;
	display: block;
}
.widget .removeLink {
	margin-top: 10px;
	text-align: right;
	display: block;
	color: #CC3300;
}
/* Switch Behavior Classes */
.widget .onstate-a, .widget .onstate-b, .widget .onstate-c, .widget .onstate-d {
	display: block;
}
.widget .onstate-e, .widget .onstate-f, .widget .onstate-g {
	display: inline;
}
.widget .onstate-h, .widget .onstate-i, .widget .onstate-j {
	display: inline;
}
/* offstate classes for the Switch Behavior are in wforms-jsonly.css */

/* Buttons */
.widget .actions {
	text-align: right;
}
.widget .primaryAction {
	display: inline;
}
.widget .secondaryAction {
	color: grey;
	display: inline;
}
.widget .secondaryAction:hover {
	color: black;
}



















