label.error {
	color: #FF0000;
}

label {
	cursor: pointer;
}

label.field {
	cursor: auto;
	display: block;
	font-weight: bold;
	margin-right: 0.5em;
	color: #666;
	float: left;
	width: 170px;
	line-height: 12px;
}

input {
	width: 250px;
}

input[type=checkbox],
input[type=radio] {
	width: auto;
}

input.small,
select.small {
	width: 150px;
}

input.none,
textarea.none,
select.none {
	width: auto;
	height: auto;
}

input.error,
textarea.error {
	border: 2px solid #FF0000;
}

p.none {
	padding: 0;
}

form #submit,
select {
	width: 250px;
}

textarea {
	width: 600px;
	padding: 4px;
	border: 1px solid #eee;
	height: 300px;
	display: block;
	color: #666;
}

div.stats,
table.stats {
	border: 2px solid #EEF7D4;
	font-size: 10px;
	margin: 5px;
	padding: 4px;
}

.required {
	/* vertical-align: super; */
	font-size: 10px;
}

@media only screen and (max-width: 768px) {
	label.field {
		width: 100%;
	}

	input,
	select {
		display: block;
		width: 100% !important;
	}

	input[type=checkbox] {
		width: auto !important;
		display: inline-block;
	}

	form #submit {
		width: 100%;
	}
}