/* --------------------------------------------------------------------------
	GENERAL FORM */

form {
	font-family: "Lucida Grande", "Lucida Sans Unicode", Lucida, Tahoma, Arial, sans-serif;
	font-size: 1.2em;
	line-height: 1.1em;
}

p.form {
clear:both;
font-size:1em;
margin:0;
margin-bottom:5px;
text-indent:0px;
padding:0px;
border-bottom:1px dotted silver;
}

p.form_review {
color:#212121;
font-size:1em;
margin:0;
margin-bottom:5px;
text-indent:0px;
padding:0px;
}

#errors {
	padding: 10px; 
	margin-bottom: 10px;
	border: 1px solid #c00;
        font-size:1.4em;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
}

.error {
        font-size:.8em;
        color:red;
        margin-bottom:5px;
}

/* --------------------------------------------------------------------------
	FIELDSET */

fieldset {
	margin-bottom: 20px;
	padding: 1.5em;
	background-color: #f4f4f4;
	border: 1px solid #bbb;	
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
}

legend {
    font-size: 1.1em;
    padding:3px;
}

/* --------------------------------------------------------------------------
	LABELS */

label {
	display: inline;
	width: 200px;
	width: "200px";
	padding-left: 10px;
	vertical-align: middle;
    cursor:pointer;
}

/**
 * use this class in the $defaults for 'label' in the config file
 * if you want the text in the label left justified
 */
label.left {
	text-align: left;
}

/**
 * 'combine' is used when two labels are combined such as in 'City/Zip'
 */
label.left.combine {
	width: auto;
	float: left;
	padding: 0;
}

/**
 * use this class in the $defaults for 'label' in the config file
 * if you want the text in the label right justified
 */
label.right {
	text-align: right;
}

label.right.combine {
	width: auto;
	float: none;
	text-align: right;	
	padding: 0;
}

/**
 * this needs to be assigned to all 'checkbox' and 'radio' type elements
 * (to remove any width and float styles previously set)
 */
label.check {
color:black;
	float: none;
	width: auto;
}

/**
 * this is where you can style your required labels
 * don't forget to include this class name in the config file
 */
label.required {
	font-weight: normal;
}

/* --------------------------------------------------------------------------
	GENERAL INPUTS */

input, select, textarea {
	font-size: 12px;
	color: #333;	
	border: 1px solid #666;
}

input.error {
	border: 1px solid #c00;
}

input[disabled] {
	color: #808080;
	background-color: #efefef;
}

/* --------------------------------------------------------------------------
	TEXT INPUTS */

input {
	width: 192px;
	width: "200px";
	padding: 4px;
	margin-bottom: 5px;
}

/* --------------------------------------------------------------------------
	CHECKBOX / RADIO INPUTS */

input.check {
    clear:both;
	float: none;
    vertical-align:middle;
	border: none;
	width: auto;
}

/* --------------------------------------------------------------------------
	IMAGE INPUTS */

input.image {
	border: 0px;
	background-color: transparent;
}

/* --------------------------------------------------------------------------
	TEXTAREA */

textarea {
	font-family: "Lucida Grande", "Lucida Sans Unicode", Lucida, Tahoma, Arial, sans-serif;	
	padding: 2px;
	width: 196px;
	width: "100px";
	height: 100px;
}

textarea.error {
	border: 1px solid #c00;
}


/* --------------------------------------------------------------------------
	SELECT */

select {
	padding: 2px;
	width: 296px;
	width: "300px";
	margin-bottom: 4px;
	background-color: #fff;
}

optgroup {
	color: #fff;
	background-color: #999;
}

option {
	color: #000;
	background-color: #fff;
}

/* --------------------------------------------------------------------------
	BUTTONS */

.button {
        text-align:center;
	width: auto;
        padding: 2px;
        font-size:1.3em;
	margin: 15px 0;
	color: #000;
	border: 1px solid #606060;
	vertical-align: middle;	
        cursor:pointer;	
}
