/* ----- FORM ELEMENTS ----- */
form label {cursor: pointer;}
fieldset {border: none;}
input, select, textarea {font-size: 100%;}

form, fieldset {
	border: none;
	margin: 0;
	padding: 0;
}

input, textarea {
	font-family: "Lucida Grande", "Lucida Sans Unicode", Verdana, Geneva, sans-serif;
	font-size: 1em;
}

input+input { margin-top: .5em; }

input[type=button], input[type=submit] {
	border-color: #999 #333 #333 #999;
	border-width: 1px;
	background: #FFF bottom left repeat-x;
}

input[type=button]:hover, input[type=submit]:hover {
	border-color: #333 #999 #999 #333;
	border-width: 1px;
}

input[type=text], input[type=password], textarea {
	border: 1px solid #999;
	width: 80%;
}

input[type=text]:focus, textarea:focus {
	border-color: #444;
}

label {
	display: block;
	font-weight: bold;
}

label.required {
	content: "";
}

label.error {
	color: #911;
	text-transform: uppercase;
}
/* END form elements */