<!--

form {
  margin: 0;
  padding: 0;
  
}

form fieldset {
  border: none;
  padding: 10px;
  margin: 0;
}

form label { 
	display: block;  /* block float the labels to left column, set a width */
	float: left; 
	width: 200px; 
	padding: 0; 
	margin: 14px 0 0; /* set top margin same as form input - textarea etc. elements */
	text-align: right;
	clear: left;
}

form .title { 
	display: block;  /* block float the labels to left column, set a width */
	float: left; 
	width: 200px; 
	padding: 0; 
	margin: 14px 0 0; /* set top margin same as form input - textarea etc. elements */
	text-align: right;
	clear: left;
	color:#000000;
	font-weight: bold;
}

form input, form textarea {
	width:auto;
	margin:10px 0 0 10px;
	font-family: Arial, Helvetica, sans-serif;
	color:#666666;
	font-size: 1em;
}

form input#send {
	color:#000000;
	float:right;
}

form input#cancel {
	color:#000000;
	float:right;
}

textarea { overflow: auto; }

form small {
	display: block;
	margin: 0 0 5px 160px; /* instructions/comments left margin set to align w/ right column inputs */
	padding: 1px 3px;
	font-size: 88%;
}

form .required{font-weight:bold;} /* uses class instead of div, more efficient */

form br {
	clear:left;
}

.clear{
	clear: left;
}

.textfield{
	width: 300px;
}

.textfieldmulti{
	width: 300px;
}

.fielderror{
	display: block;  /* block float the labels to left column, set a width */
	float: left; 
	width: 200px; 
	padding: 0; 
	margin: 14px 0 0; /* set top margin same as form input - textarea etc. elements */
	text-align: right;
	clear: left;
	font-size: 0.8em;
	color:#FF0000;
	clear:both;
}
-->