/* 
 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 {
	height: expression('1%'); /* IE Pick-a-boo bug fix */
	margin: 0;
	
}
fieldset {
	padding: 10px;
	margin: 1em 0;
	border: 2px solid #fff;
}
fieldset fieldset  {
	
}
legend {
	padding: 0 5px;
	margin: 0 0 1em 0;
}
fieldset fieldset legend {
	font-size: 90%;
}
label, .label {	
	font-size: small;
	margin: 0;
	width: 110px; 
	float: left; 
	cursor:pointer;
	text-align: right;
}

p.check, p.tick {margin-top: 0;}
p.check label {float: none; width: 50px;margin: 0 10px 0 0;}
p.tick label {float: none; margin: 0 10px 0 0;}
p.check input, p.tick input {width: 12px;height:12px}


input, textarea {
	margin:5px 0 0 5px; 
	width: 175px;
	height: 24px;
	padding: 0 2px;
	border: 1px inset #fefefe;
	background: #fafafa url("../../images/bg_button.gif") left top repeat-x;
	color: #595959;
	font-size: 12px;
	font-family: tahoma, arial, helvetica, sans-serif;
}

textarea {
	padding: 4px;
	vertical-align: top;
	height: 8em;
}

/* Buttons */
.actions {
	padding-top: 15px;
	text-align: right;
	clear: right;
}
.primaryAction {
	display: inline;
}
.secondaryAction {
	color: grey;
	display: inline;
}
.secondaryAction:hover {
	color: black;
}


button {
	width: 85px;
	padding: 6px;
	border: 3px double #999;
	border-top-color: #ccc;
	border-left-color: #ccc;
	background: #fafafa url("../images/bg_button.gif") left top repeat-x;
	font-family: tahoma, arial, helvetica, sans-serif; 
	font-size: 12px;
	line-height: 24px;
	color: #823f45;
	cursor: pointer;
	padding: 0;
	margin:0;
}

button:active
{
border: 3px double #ccc;
border-top-color: #999;
border-left-color: #999;
}

/* Asterisk on required fields */
form .reqMark {
	padding-left: 2px;
	color: #a45;
	font-size: .8em;
	vertical-align: super;
}
/* Field w/ a validation error */
form .errFld {
	border: 1px solid #823f45;
}
/* Styling for message associated with a validation error. */
form .errMsg {	
	color: #a45 !important;
	display: block;
	margin-top: 0;
}