/* FT11 Interactive CSS Framework Module - by Anthony Eggert */

/* Forms - Form Elements */
form {
	margin: 0 20px;
	padding: 0;
	height: expression('1%'); /* IE Pick-a-boo bug fix */
	font-family: arial, sans-serif;
}
form div,
form p {
	margin: 0 0 1em 0;
	padding: 0;
	font-size: 1em;
	clear: both;
}
input,textarea,select {
	border: 1px solid;
}
legend {
	font-size: 1.1em;
}
label {
	color: #000;
	font-size: 1em;

}
.req {
	font-weight: bold;
}


/* Forms - Fieldset Type floated */

fieldset {
	position: expression('relative'); /* Fixes IE problem with fieldset+legend boundaries */
	padding: 1.5em 2em;
	margin: 2em 0;
	border: 0;
}
fieldset legend {
	position: expression('absolute'); 
	top: expression('-9px'); /* Fixes IE problem with fieldset+legend boundaries */
	padding: 2px 0;
	font-weight: bold;
	color: #036;
}
fieldset label {
	width: 200px;
	padding: 0 2px;
	margin: 0.4em 4px 0 0;
	float: left;
}
fieldset select {
	padding: 0;
	margin: 0 0 2px 0;
}

fieldset fieldset {
	margin: 2em 1em;
	background-color: #eceadf;
}

/* Forms - Global Form Elements */

textarea {
	padding: 0;
	vertical-align: top;
	margin: 2px 0 1px 0;
}

form div.submit {
	margin: 1em 0;
}
form div.submit input {
	border: 2px outset;
	background-color: #036;
	color: #fff;
}

/* Forms - Specific Form Elements */

.checkboxes input, .radios input {
	border: none;
	width: auto;
	margin: 0;
	height: auto;
	float: none;
}

/**/