/*** Form ***/

form {
	margin: 0;
	padding: 0;
}

/*** Form Rows: All Styles ***/

form .row {
	clear: both;
}

/*** Columns ***/

form .row .twoColumn {
	margin-left: 0px;
}

form .row .leftColumn,
form .row .centerColumn,
form .row .rightColumn {
	color: black;
	float: left;
	height: 25px;
	margin: 0 5px 15px 0;
	padding: 0;
}

form .row .threeColumns {
	margin-left: 5px;
	width: 740px;
}

/** Form Row Style 1 (Login & Forgot Password Forms): Has 1 input per row, with left-side labels **/

form .row .leftColumn {
	width: 110px;
}

/** Form Row Style 2: Has 2 Inputs Per Row, with no left-side labels **/

form.hasThreeColumns .row .leftColumn,
form .row .centerColumn,
form .row .rightColumn {
	width: 225px;
}

/*** Intro Text ***/

form .introText {
	margin: 0 0 0 22px;
}

/*** Labels ***/

form label {
	float: left;
	margin-top: 10px;
}

/*** Individual Form Controls ***/

form button {
	border: 1px solid gray;
	border-radius: 4px;
	cursor: pointer;
	font-size: 10pt;
	font-weight: bold;
	line-height: 17pt;
}

form .buttonLink:hover button {
	background-color: #EEFFEE;
	border: 1px solid green;
	color: blue;
	display: block;
}

/*** Inputs ***/

form input {
	border: 1px solid gray;
	border-radius: 4px;
	line-height: 18pt;
	margin: 0;
	padding: 0 4px 0 4px;
}

form input[type=text],
form input[type=password] {
	min-height: 31px;
	min-width: 213px;
}

form input.emailAddress,
form input.userPassword {
	height: 30px;
	line-height: 20pt;
	margin: 0 7px 10px 0;
	width: 213px;
}

/*** Checkboxes ***/

form input[type=checkbox] {
	margin: 5px 5px 0 5px;
}

form .keepMeLoggedIn .checkbox,
form .keepMeLoggedIn .text {
	float: left;
}

form .keepMeLoggedIn .text {
	margin: 4px 0 0 0;
}

form .checkbox.row .text {
	cursor: pointer;
}

/*** Radio Inputs ***/

form input[type=radio] {
	margin: 5px 5px 0 5px;
}

/*** Select Boxes ***/

form select {
	border: 1px solid gray;
	border-radius: 4px;
	line-height: 18pt;
	margin: 0;
	padding: 4px;
}

form button:active,
form button:focus,
form input:active,
form input:focus,
form select:active,
form select:focus {
	border: 1px solid cornflowerblue;
	outline-width: 0;
}

/*** Captchya ***/

form .captchya {
	float: left;
}

form .captchya .clear {
	display: none;
}

form .captchya input#captchya {
	min-height: auto;
	min-width: auto;
	width: 76px;
}

/*** Submit Button ***/

form .submitBttn {
	float: right;
	font-size: 18px;
}

form .submitBttn:hover {
	cursor: pointer;
}

form .submitBttn.disabled {
	border-color: silver;
	color: #AAAAAA;
}

form .submitBttn.disabled:hover {
	background-color: buttonface;
	cursor: pointer;
}

/*** Error ***/

form .error {
	font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
	font-size: 14px;
}