/* 
 wFORMS 2.0 Stylesheet - Minimalist Theme (December 2006)
 See http://www.formassembly.com/wForms

 To be used along with wforms-jsonly.css
 This stylesheet and the associated images are Copyright (c) 2005 Cdric Savarese (http://www.4213miles.com)	
 and licensed under the Creative Commons Attribution-ShareAlike License (http://creativecommons.org/licenses/by-sa/2.0/) 
*/
 
form {
	height: expression('1%'); /* IE Pick-a-boo bug fix */
}
fieldset {
	position: expression('relative'); /* Fixes IE problem with fieldset+legend boundaries */
}
legend {
	position: expression('absolute'); 
	top: expression('-9px'); /* Fixes IE problem with fieldset+legend boundaries */
}
/* .label is typically used on a span or p tag to label a radio or checkbox group */
label.preField, form .label  {
	display: -moz-inline-box;
	display: inline-block;	
	width: expression('13em'); /* Min-width for IE6 */
	min-width: 13em;
	padding: 0 2px;
	margin: 0.6em 4px 0 0;
}
.label { 
	display: block; width: auto; 
}
label.postField  {
	margin-left: 4px;
	margin-right: 4px;
}
textarea {
	padding: 0;
	vertical-align: top;
	margin: 2px 0 1px 0;
}
input {
}
select {
	padding: 0;
	margin: 2px 0 1px 0;
}

/* Form Builder Related Rules */
/* ========================== */
/* Form or Fieldset instruction paragraph. */
form .instructions {
}
/* Ties together a label and its checkbox or radio */
form .oneChoice {
	white-space: nowrap; 
}
/* Asterisk on required fields */
form .reqMark {
	color: #F00;
	font-size: xx-small;
	vertical-align: super;
}
/* wForms Related Rules */
/* ==================== */
/* Field w/ a validation error */
form .errFld {
	border: 1px solid #F00;
}
/* Styling for message associated with a validation error. */
form .errMsg {	
	color: #CC3333 !important;
	display: block;
}
/* Field-Hint with focus */
.field-hint {
	position: absolute;
	width: 180px;
	z-index: 50;
	background-image: url(/images/v2/hint_topborder.gif);
	background-repeat: no-repeat;
	background-position: left top;	
	padding: 14px 0 0 0;
	margin: 2px 0 0 10px;
	color: #000;
	font-size: 80%;
	text-align: left;
}
.field-hint div {
	background-color: #fffbb8;
	border-left: 1px solid #ffc20d;
	border-right: 1px solid #ffc20d;
	border-bottom: 1px solid #ffc20d;
	padding: 4px
}
/* Field-Hint without focus */
.field-hint-inactive {
	visibility: hidden;
	position: absolute;
}

/* Repeat Behavior  */
form .repeat {
	border: 1px solid #ddd;
}
form .removeable {
	border: 1px solid #ddd;
}
/* Links generated by the Repeat Behavior */
form .duplicateLink {
	text-align: right;
	display: block;
}
form .removeLink {
	text-align: right;
	display: block;
}
/* Switch Behavior Classes */
.onstate-a,  .onstate-b,  .onstate-c,  .onstate-d,
.onstate-e,  .onstate-f,  .onstate-g,  .onstate-h, 
.onstate-i,  .onstate-j,  .onstate-k,  .onstate-l, 
.onstate-m,  .onstate-n,  .onstate-o,  .onstate-p, 
.onstate-q,  .onstate-r,  .onstate-s,  .onstate-t,
.onstate-u,  .onstate-v,  .onstate-w,  .onstate-x,  
.onstate-y,  .onstate-z,  .onstate-aa, .onstate-ab,
.onstate-ac, .onstate-ad, .onstate-ae, .onstate-af,
.onstate-ag, .onstate-ah, .onstate-ai, .onstate-aj,
.onstate-ak, .onstate-al, .onstate-am, .onstate-an {
	display: block;
}

/* offstate classes for the Switch Behavior are in wforms-jsonly.css */

/* Buttons */
.actions {
}
.primaryAction {
	
}
.secondaryAction {
	color: grey;
}
.secondaryAction:hover {
	color: black;
}
