<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/*
 * form
 *
 *
 */


/**
 * text,select
 *
 */
#formsection table.first tr td input[type=text]
,#formsection table.first tr td input[type=password]
,#formsection table.first tr td select {
	height: 25px;
	border-style: solid;
	border-width: 1px;
	border-color: #ccc;
	padding: 0 0 0 10px;
	font-size: 15px;
	color: #000;
}
#formsection table.first tr td input[type=text]:focus
,#formsection table.first tr td input[type=password]:focus
,#formsection table.first tr td select:focus {
	border-color: #4B7B7A;
}

/**
 * textarea
 *
 */
#formsection table.first tr td textarea {
	height: 150px;
	border-style: solid;
	border-width: 1px;
	border-color: #ccc;
	padding: 5px 10px;
	font-size: 15px;
	color: #000;
}
#formsection table.first tr td textarea:focus {
	border-color: #4B7B7A;
}

/**
 * button
 *
 */
#formsection table.first tr td button {
	height: 28px;
	border-style: solid;
	border-width: 1px;
	border-color: #5a5;
	border-radius: 4px;
	cursor: pointer;
	font-size: 15px;
	background-color: #333;
	color: #5a5;
}

/**
 * checkbox
 *
 */
#formsection table.first tr td div.checkbox {
	display: inline;
	line-height: 39px;
	white-space: nowrap;
}
#formsection table.first tr td div.checkbox label {
	font-size: 15px;
	color: #333;
	text-shadow: 1px 1px 1px white;
	padding: 5px 20px;
	background-color: #f0f0f0;
	margin: 0 0 0 -19px;
	cursor: pointer;
	border-style: solid;
	border-width: 1px;
	border-color: #4393CE;
}
#formsection table.first tr td div.checkbox input:checked + label {
	background-color: #57d;
	color: white;
	text-shadow: -1px -1px 1px #35b;
}

/**
 * radio
 *
 */
#formsection table.first tr td span.radio {
	display: inline;
	line-height: 40px;
	white-space: nowrap;
}
#formsection table.first tr td span.radio label {
	font-size: 15px;
	color: #333;
	text-shadow: 1px 1px 1px white;
	padding: 5px 20px;
	background-color: #ddd;
	border-radius: 6px;
	margin: 0 0 0 -19px;
	cursor: pointer;
	border-style: solid;
	border-width: 1px;
	border-color: #4393CE;
}
#formsection table.first tr td span.radio input:checked + label {
	background-color: #57d;
	color: white;
	text-shadow: -1px -1px 1px #35b;
}


/*--------- end of file ----------*/
</pre></body></html>