/* 
 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;
	border-top: 3px solid #FFD37A;	
	border-bottom: 1px solid #CCC;	
}
form {
	font-family: georgia, sans-serif;
	padding: 10px;
	height: expression('1%'); /* IE Pick-a-boo bug fix */
	
}
fieldset {
	padding: 10px;
	margin: 1em 0;
	border:1px solid #4a2f00;
}
fieldset fieldset  {
	
}
legend {
	padding: 0 5px;
}
fieldset fieldset legend {
	font-size: 90%;
}
label, .label {	
	text-transform: capitalize;
	font-size: small;
	margin: 0;
	padding-top: 5px;
	width: 120px; 
	float: left; 
	cursor:pointer;
	text-align: right;
}

label.postField {
	float: none;
}

input, textarea, select {
	margin: 5px 0 0 5px; 
	width: 200px;
	height: 24px;
	padding: 0 2px;
	border: 2px inset #ffeeb9;
	background: #ffeeb9;
	color: #816000;
	font-size: 12px;
	font-family: arial, helvetica, sans-,serif; 
}

textarea {
	padding: 4px;
	vertical-align: top;
	height: 8em;
}

p.oneChoice {
	width: 25%;
	float: left;
}

p.oneChoice input {
	width: 20px;
	background: transparent;
	border: none;
}

/* offstate classes for the Switch Behavior are in wforms-jsonly.css */

/* Buttons */
.actions {
	padding-top: 15px;
	text-align: right;
	clear: right;
}
.primaryAction {
	display: inline;
}
.secondaryAction {
	color: grey;
	display: inline;
}
.secondaryAction:hover {
	color: black;
}


button {
    width:30%;
	padding: 0.2em 0.5em;
	margin:0.2em;
	background-color: #816000;
	border: 4px outset #816000;
	text-align:center;
	font-weight:bold;
	color: #ffeeb9;
	cursor: pointer;
}

/* Asterisk on required fields */
form .reqMark {
	margin-left: 2px;
	color: #4a2f00;
	font-size: 40px;
}
/* Field w/ a validation error */
form .errFld {
	border: 2px solid #4a2f00;
}
/* Styling for message associated with a validation error. */
form .errMsg {	
	color: #4a2f00 !important;
	font-weight: bold;
	display: block;
	margin-top: 0;
}