h2.page-title {line-height: 1.5em;}

/* Reset */
.styled fieldset, .styled fieldset ol, .styled fieldset li {
	border: none; 
	padding: 0; 
	margin: 0;
}

.styled fieldset ol, .styled fieldset ol li {
	list-style: none;
}

/*Form styles*/
.styled {
	font: 15px Arial, sans-serif;
	width: 460px;
}

.styled fieldset {
	position: relative;
}
 
/* Form rows */
.styled fieldset li.form-row {
	margin-bottom: 5px;
	padding: 3px 0;
	clear: both;
	position: relative; /* Required as error messages will be absolutely positioned */
}

.styled label {
	display: block;
	font-weight: bold;
	float: left;
	width: 175px;
	line-height: 24px;
	color: #555;
}

.styled div {
	display: block;
	font-weight: bold;
	color: #555;
}

.styled fieldset li.button-row {
	margin-bottom: 0;
	padding: 5px 0 0;
	text-align: right;
}
 
/* Text input styles */
/* Default */
.styled input.text-input {
	height: 32px;
	width: 270px;
	padding: 5px 8px;
	background: url(/drills/img/register/bg_input.png) no-repeat 0 0;
	border: none;
	font: normal 15px Arial, sans-serif;
	color: #333;
	line-height: 1em;
}

.styled select.text-input {
	height: 32px;
	width: 270px;
	padding: 5px 8px;
	background: url(/drills/img/register/bg_input.png) no-repeat 0 0;
	border: none;
	font: normal 15px Arial, sans-serif;
	color: #333;
	line-height: 1em;
}

/* Form Validation */
/* CSS code to create the error messages */
.styled span.error {
	font: bold 11px Arial, sans-serif;
	line-height: 1em;
	color:#fff;
	text-shadow: 1px 1px 1px #000;
	background: url(/drills/img/register/arrow_error.png) no-repeat 0 center;
	border-right: 1px solid #6c0202;
	height: 9px;
	padding: 8px 15px 11px 20px;
	display: none; /* Required as we will use jQuery to fade in the error message */
	position: absolute; /* Required */
	top: 3px;
	right: 0; /* Required - initially set all error messages to the right of the form row */
}
 
/* Change the input field styles when an error message is present */
.styled fieldset li.error input.text-input {
	background-position: 0 -64px;
}

.styled fieldset li.error select.text-input {
	background-position: 0 -64px;
}

.title {font-size:16px; font-weight:bold; color:#0D6E9F;}
.subtitle {font-weight:14px; font-weight:bold; color:#0D6E9F;}
.registerBorder {margin:20px; padding:10px 30px; border:1px solid #CCCCCC; width:480px; text-align:left;}