form {
	display:block;
	padding:10px;
	border:1px #444 solid;
}

form label {
	overflow:auto;
	display:block;
	margin-bottom:10px;
	font-size:12px;
	padding:4px;
}
	form label span {
		float:left;
	}
	
	form label input {
		float:right;
	}
		form label input[type=text],
		form label textarea {
			border:1px #666 solid;
			background:#444;
			color:#ddd;
			padding:1px;
		}
			form label input[type=text]:hover,
			form label input[type=text]:focus,
			form label textarea:hover,
			form label textarea:focus {
				border-color:#999;
				background:#333;
				color:#eee;
			}

form label.check {
	
}
	form label.check input {
		float:left;
		margin-right:10px;
	}
	
	
form fieldset {
	
}

form fieldset legend {
	margin-bottom:5px;
	font-size:12px;
}
	form.generic label {
		border:1px transparent solid;
		width:400px;
		margin-right:auto;
		margin-left: auto;	
	}
	form.generic label.wide {
		width:inherit;
	}

form.generic {
	width:450px;
	margin:15px auto 40px auto;
}
	
	form.generic textarea {
		width:440px;
		margin:0 auto;
	}
	
	form.generic label.inset {
		margin-left:35px;
	}

form.generic label:hover, form.generic label.hover,
form.generic label.ac {
	border:1px #555 solid;
	background:black;
}
	form.generic label.ac {
		background:#333;
	}
/* Isn't the [type=submit] selector cool?  Wouldn't it be neat if IE 6/7
 * supported it correctly?  Yeah... I know... but I can dream!
 */
form.generic input.submit {
	border:2px #666 solid;
	border-bottom:2px #444 solid;
	border-right:2px #444 solid;
	background:#914e01;
	color:#eee;
	font-size:12px;
	padding:4px;
	
	float:right;
	width:100%;
}
	.generic input.submit:hover, .generic input.submit.hover {
		background:#b15e11;
	}
	/* again, we need to uses classes because IE doesn't
	 * have any idea what :active means...
	 */
	.generic input.submit:active, .generic input.submit.clicked {
		background:#612e01;
		border-color:#555;
		border-bottom-color:#888;
		border-right-color:#888;
		color:#bbb;
	}
form.generic div.recaptcha-wrapper {
	max-width:440px;
	overflow:hidden;
}

ul.form_error {
	margin:10px;
	padding:10px;
	background:#6e0000;
	border:1px #9c0000 solid;
}

/* specific forms */
	form#party-form {
			width:550px;
		}
			#party-form textarea {
				width:540px;
			}
			
			#party-form label {
				width:400px;
				margin-right:auto;
				margin-left: auto;
			}
			#party-form label.wide, form.generic label.wide {
				width:inherit;
			}
		#party-form fieldset legend {
			color:#b9b9b9;
			text-transform:uppercase;
			letter-spacing:-1px;
			font-family:arial, sans-serif;
			font-size:18px;
		}
		



