@charset "UTF-8";
/* CSS Document */


input {
}
input[type="text"] {
	width: 150px;
	padding: 3px 5px;
	border: 1px solid #ccc;
	border-bottom: 5px solid #fff;
}
input[type="text"]:focus {
	border-bottom: 5px solid #c00;
}

input[class="inputSmall"] { /* used this selector because of specificty issues from using the above attribute selector.*/
	width:4em;
}


input.radio, input.checkbox, input.submit {
	width: auto;
}
input.radio {
	float: left;
	margin-right: 1em;
}

fieldset {
	margin: 1em 0;
	padding: 1em;
	border: solid 0 transparent;
	background: #f8f8f8;
}
legend {
	font-weight: bold;
}
label {
	float: left;
	width: 15em;
}
remember-me label {
	width: 4em;
}
textarea {
	width: 300px;
	height: 100px;
}

.required {
	font-size: 0.75em;
	color: #760000;
}
#monthOfBirthLabel, #yearOfBirthLabel {
	text-indent: -1000em;
	width: 0;
}
input#dateOfBirth {
	width: 3em;
	margin-right: 0.5em;
}
select#monthOfBirth {
	width: 10em;
	margin-right: 0.5em;
}
input#yearOfBirth {
	width: 5em;
}
fieldset #radio {
	margin: 0;
	padding: 0;
	border: none;
	background: transparent;
}
#radio h2 {
	width: 15em;
	float: left;
	font-weight: normal;
	text-transform:none;
}
#radio p {
	width: 4em;
	float: left;
}
#radio label {
	width: 3em;
	float: none;
	display: inline;
}
#radio p {
	margin: 0.3em 0;
}