@charset "utf-8";
#con #mainContainer {
	padding: 10px;
}

#mainContainer #regarea {
	float: left;
	width: 660px;
	height: auto;
}
#regarea #regform {
	margin-top: 15px;
	height: auto;
	line-height: 25px;
	color: #000;
}
#regarea #regform form {
	margin: 0px;
	padding: 0px;
}
.require {
	font-size: 15px;
	font-weight: bold;
	color: #999;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
	line-height: 30px;
	width: 400px;
	height: 30px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 15px;
	text-align: left;
}
.textfield {
	width: 180px;
	height: 20px;
	font-family: "Courier New", Courier, monospace;
	font-size: 13px;
	line-height: 20px;
	margin: 0px;
	padding: 0px;
}
.inputdesc {
	color: #999;
}
#regform #captchaimg {
	float: left;
	width: auto;
	cursor: pointer;
	height: auto;
	font-family: "Arial Black", Gadget, sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: #900;
	padding-right:15px;
}

/* These are the classes applied on the error messages
 * which prevent them from being displayed by default.
 */ 
.textfieldRequiredMsg, .textfieldInvalidFormatMsg, .textfieldMinValueMsg, .textfieldMaxValueMsg, .textfieldMinCharsMsg, .textfieldMaxCharsMsg, .textfieldValidMsg {
	display: none;
}
/* These selectors change the way messages look when the widget is in one of the error states.
 * These classes set a default red border and color for the error text.
 * The state class (e.g. .textfieldRequiredState) is applied on the top-level container for the widget,
 * and this way only the specific error message can be shown by setting the display property to "inline".
 */
.textfieldRequiredState .textfieldRequiredMsg, .textfieldInvalidFormatState .textfieldInvalidFormatMsg, .textfieldMinValueState .textfieldMinValueMsg, .textfieldMaxValueState .textfieldMaxValueMsg, .textfieldMinCharsState .textfieldMinCharsMsg, .textfieldMaxCharsState .textfieldMaxCharsMsg {
	display: inline;
	color: #F00;
	float: left;
}
/* The next three group selectors control the way the core element (INPUT) looks like when the widget is in one of the states: * focus, required / invalid / minValue / maxValue / minChars / maxChars , valid 
 * There are two selectors for each state, to cover the two main usecases for the widget:
 * - the widget id is placed on the top level container for the INPUT
 * - the widget id is placed on the INPUT element itself (there are no error messages)
 */
 
 /* When the widget is in the valid state the INPUT has a green background applied on it. */
.textfieldValidState input, input.textfieldValidState {
	background-color: #FFF;
}
/* When the widget is in an invalid state the INPUT has a red background applied on it. */
input.textfieldRequiredState, .textfieldRequiredState input, input.textfieldInvalidFormatState, .textfieldInvalidFormatState input, input.textfieldMinValueState, .textfieldMinValueState input, input.textfieldMaxValueState, .textfieldMaxValueState input, input.textfieldMinCharsState, .textfieldMinCharsState input, input.textfieldMaxCharsState, .textfieldMaxCharsState input {
	background-color: #F90;
}
/* When the widget has received focus, the INPUT has a yellow background applied on it. */
.textfieldFocusState input, input.textfieldFocusState {
	background-color: #FFFFCC;
}
/* This class applies only for a short period of time and changes the way the text in the textbox looks like.
 * It applies only when the widget has character masking enabled and the user tries to type in an invalid character.
 */
.textfieldFlashText input, input.textfieldFlashText {
	color: red !important;
}
/* When the widget has the hint message on, the hint text can be styled differently than the user typed text. */
.textfieldHintState input, input.textfieldHintState {
/*color: red !important;*/
}
/*
select css
*/
/* These are the classes applied on the messages
 * (required message and invalid state message)
 * which prevent them from being displayed by default.
 */ 
.selectRequiredMsg, .selectInvalidMsg {
	display: none;
}
/* These selectors change the way messages look when the widget is in one of the error states (required, invalid).
 * These classes set a default red border and color for the error text.
 * The state class (.selectRequiredState or .selectInvalidState) is applied on the top-level container for the widget,
 * and this way only the specific error message can be shown by setting the display property to "inline".
 */
.selectRequiredState .selectRequiredMsg, .selectInvalidState .selectInvalidMsg {
	display: inline;
	color: #F00;
	float: left;
}
/* The next three group selectors control the way the core element (SELECT) looks like when the widget is in one of the states: 
 * focus, required / invalid, valid 
 * There are two selectors for each state, to cover the two main usecases for the widget:
 * - the widget id is placed on the top level container for the SELECT
 * - the widget id is placed on the SELECT element itself (there are no error messages)
 */
 
/* When the widget is in the valid state the SELECT has a green background applied on it. */
.selectValidState select, select.selectValidState {
	background-color: #FFF;
}
/* When the widget is in an invalid state the SELECT has a red background applied on it. */
select.selectRequiredState, .selectRequiredState select, select.selectInvalidState, .selectInvalidState select {
	background-color: #F60;
}
/* When the widget has received focus, the SELECT has a yellow background applied on it. */
.selectFocusState select, select.selectFocusState {
	background-color: #FFFFCC;
}
#agreet {
	cursor: pointer;
	color: #0066FF;
}
/* These are the classes applied on the messages
 * (required message, minSelections message and maxSelections message)
 * which prevent them from being displayed by default.
 */
.checkboxRequiredMsg, .checkboxMinSelectionsMsg, .checkboxMaxSelectionsMsg {
	display: none;
}
/* These selectors change the way messages look when the widget is in one of the error states.
 * These classes set a default red border and font color for the error text.
 * The state class (e.g. .checkboxRequiredState) is applied on the top-level container for the widget, 
 * and this way only the specific error message can be shown by setting the display property to "inline".
 */
.checkboxRequiredState .checkboxRequiredMsg, .checkboxMinSelectionsState .checkboxMinSelectionsMsg, .checkboxMaxSelectionsState .checkboxMaxSelectionsMsg {
	display: inline;
	color: #F00;
	float: left;
}
.agreetext {
	font-family: "Courier New", Courier, monospace;
	text-align: justify;
	text-indent: 26px;
	border: 1px solid #CCCCCC;
	overflow: hidden;
	padding: 8px;
	margin-top: 8px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
	height: auto;
	width: 620px;
	display: none;
	float: left;
}
#agreetext P {
	padding: 0px;
	margin-top: 5px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	text-align: justify;
	height: auto;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	font-size: 13px;
	line-height: 18px;
}
.submit {
	height: 30px;
	width: 150px;
	color: #F60;
	font-weight: bold;
}
#mainContainer #regothers {
	float: right;
	width: 250px;
	margin-top: 60px;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #E0E0E0;
	height: 430px;
}
.otherstext a {
	color: #F60;
}
#regothers ul {
	margin: 0px;
	padding: 15px;
}
.otherstext {
	font-size: 13px;
	line-height: 30px;
	color: #999;
	list-style-type: none;
}
.otherstext a {
	color: #F90;
}
.otherstext a:hover {
	text-decoration: underline;
}
.otherstext span {
	font-size: 14px;
	line-height: 30px;
	color: #F90;
	font-family: "宋体";
}
#regothers #whyreg {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #CCC;
	margin: 15px;
	padding-top: 20px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.whyreg {
	font-size: 14px;
	line-height: 30px;
	color: #9C0;
	list-style-type: none;
	font-weight: bold;
	height: 30px;
}
#errordiv {
	font-weight: bold;
	color: #FF0000;
}
#errormsg {
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 20px;
	color: #FF0000;
}
