#fieldset {
	margin: 1em 0;
	padding: 1em;
	border : solid 1px #fff;
}
	
legend {
	font-weight: bold;
	color: #007A7A;
	display: block;
}

input {
	width: 200px;
	background-color: #000;
	color: white;
	font-weight: bold;
}

input:focus, textarea:focus {
	background: #000;
}

input[type="text"], textarea{
	border-top: 2px solid #999;
	border-left: 2px solid #999;
	border-bottom: 1px solid #ccc;
	border-right: 1px solid #ccc;
	background-color: #000;
	color: #666;
	font-weight: bold;
}

input.radio, input.checkbox, input.submit{
	width: auto;
}
	
textarea {
	width: 300px;
	height: 100px;
	background-color: #000;
	color: #666;
	font-weight: bold;
}

label {
	display: block;
	float: left;
	width: 250px;
	color: #00AEAE;
}

submit {
	color: white;
}

.required {
	font-size: 0.75em;
	color: #fff;
}
	
