body {
	width:970px;
	margin:auto;
	border: solid #23691F 3px;
	margin:20px auto 20px auto;
	background-color:#94D191;
}

#container2 {
	background-color:#A5D1A2;
}

#header {
	border-bottom:black 1px solid;
	margin:0px 100px 10px 100px;
}

#header {
	font-weight:bold;
	text-align:center;
	padding-bottom:10px;
}

#heading {
	font-family:Arial, Helvetica, sans-serif;
	font-size:34px;
	font-variant:small-caps;
	display:inline;
	vertical-align:top;
	margin:0px 25px 0px 20px;
}

SUP {
	font-variant:normal;
	font-size:65%;
	position:relative; top:.2em;
}

#links {
	margin-top:10px;
}

a img {
	border:none;
}

#links a {
	color:#23691F;
	padding:0px 5px 0px 5px;
	font-size:20px;
}

#links a.active {
	color:#000000;
}

#links a:hover {
	color:#000000;
}

#body {
	min-height:420px; 
	margin:10px 100px 10px 100px;
}

#main {
	margin:10px;
}

#main2 {
	margin:10px;
	min-height:500px;
	background-image:url("../images/pins.png");
	background-position:20% 40%;
	background-repeat:no-repeat;
	font-weight:bold;
}

#main3 {
	margin:10px;
	min-height:540px;
	font-weight:bold;
}

#main h2 {
	text-align:center;
}

#right {
	float:right;
	min-height:400px;
	width:14em;
	border:black 1px solid;
	margin:0px 10px 10px 10px;
	background-color:#94D191;
}

#right {
	text-align:center;
}

p {
	text-indent:25px;
}

a {
	color:#000;
	font-weight:bold;
}

a:hover {
	color:#23691F;
}

#right a {
	color:#283159;
}

#right a:hover {
	color:#000;
}

.error {
	color:#990000;
	font-weight:bold;
}

.opt, .req {
	color:#900;
	font-size:80%;
	display:none;
}

.req {
	font-weight:bold;
}

.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: #CC3333;
	border: 1px solid #CC3333;
}


/* 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: #B8F5B1;
}

/* 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: #FF9F9F;
}

/* When the widget has received focus, the INPUT has a yellow background applied on it. */
.textfieldFocusState input, input.textfieldFocusState {
	background-color: #FFFFCC;
}


.passwordRequiredMsg, 
.passwordInvalidStrengthMsg, 
.passwordMinCharsMsg,
.passwordMaxCharsMsg,
.passwordCustomMsg,
.passwordValidMsg {
	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. .passwordRequiredState) 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".
 */
.passwordRequiredState .passwordRequiredMsg,
.passwordMinCharsState .passwordMinCharsMsg,
.passwordMaxCharsState .passwordMaxCharsMsg,
.passwordInvalidStrengthState .passwordInvalidStrengthMsg,
.passwordCustomState .passwordCustomMsg
{
	display: inline;
	color: #CC3333;
	border: 1px solid #CC3333;
}

/* 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 Strength / minValue / maxValue / custom 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 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. */
.passwordValidState input, input.passwordValidState {
	background-color: #B8F5B1;
}

/* When the widget is in an invalid state the INPUT has a red background applied on it. */
input.passwordRequiredState, .passwordRequiredState input, 
input.passwordInvalidStrengthState, .passwordInvalidStrengthState input, 
input.passwordMinCharsState, .passwordMinCharsState input, 
input.passwordCustomState, .passwordCustomState input, 
input.passwordMaxCharsState, .passwordMaxCharsState input {
	background-color: #FF9F9F;
}

/* When the widget has received focus, the INPUT has a yellow background applied on it. */
.passwordFocusState input, input.passwordFocusState {
	background-color: #FFFFCC;
}

#footer {
	text-align:center;
	margin:auto 100px;
}