/* Forms */
div.form { margin: 0 28px; }
div.form form {
	float: left;
	margin: 10px 0 20px 0;
	padding: 10px 0 20px 0;
	width: 500px;
	border-top: 1px dotted #6C6B6B;
	border-bottom: 1px dotted #6C6B6B;
}
div.form form div {
	clear: both;
	margin: 0px;
	padding: 5px 0;
	vertical-align: text-top;
	}
div.form form label {
	float: left;
	text-align: right;
	margin-right: 20px;
	display: block;
	width: 150px;
}
div.form form div.required label { font-weight: bold; }

div.form form div.error-message { width: 278px; margin-left: 170px; background-color: darkred; color: #FFF; padding: 1px 10px; border: 1px solid #6C6B6B; font-weight: bold; font-style: italic; }

div.form input, div.form textarea, div.form select, div.form option {
	font-family: 'lucida grande', arial, helvetica, verdana, sans-serif;
	padding: 3px;
	font-size: 14px;
}

div.form input, div.form textarea {
	float: left;
	width: 300px;
	display: block;
}
div.form select {
	vertical-align: text-bottom;
	width: 200px;
}
div.form option {
	padding: 0 3px;
}
div.form input[type=submit] {
	display: inline;
	padding: 2px 5px;
	vertical-align: bottom;
	margin-left: 170px;
	width: 100px;
}

div.form .response { font-weight: bold; font-size: 12px; }

div.requiredfield { display: none; }