@charset "utf-8";
body {
	text-align: center;
	margin: 0px;
	padding: 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	background-color: #666666;
}
#wrapper {
	text-align: left;
	width: 760px;
	margin-right: auto;
	margin-left: auto;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	height: auto;
}
#header {
	margin-bottom: 5px;
	height: 270px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
#content {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #333333;
	background-color: #666666;
	height: auto;
	width: 760px;
	margin-top: 12px;
}
#footer {
	margin-top: 12px;
	margin-bottom: 12px;
	clear: both;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	height: auto;
}

#logo {
	height: 260px;
	width: 760px;
	float: none;
	background-image: url(Images/logo4.png);
	top: auto;
	overflow: visible;
}
#nav {
	height: 50px;
	width: 760px;
	padding-top: 2px;
}
#banner {
	height: 100px;
}
#leftColumn {
	float: left;
	width: 557px;
	background-color: #00FFFF;
	height: auto;
	padding-left: 5px;
}
#rightColumn {
	float: right;
	width: 50px;
	border: thin dotted #CCCCCC;
	height: auto;
	padding-right: 5px;
}
#mainColumn {
	float: left;
	height: auto;
	width: 425px;
	border: medium outset #111111;
	margin-left: 20px;
	background-color: #FFFFFF;
}
#sidecontent {
	margin-top: 0px;
	padding-top: 0px;
}
.footer {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	color: #FFFFFF;
	text-align: center;
}
.contactinfo {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	font-variant: normal;
	color: #FFFFFF;
}

a:link {
	color: #FFBB00;
	font-weight: bold;
}
a:visited {
	color: #FFD600;
	font-weight: bold;
}

a:hover {
	color: #333333;
	font-weight: bold;
}
a:active {
	color: #333333;
	font-weight: bold;
}

p {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	line-height: 15px;
	padding: 10px;
	color: #000000;
}
h1,h2,h3,h4,h5,h6 {
}
h1 {
	font-size: 22px;
	color: #FFD600;
	font-weight: bold;
}
h2 {
	font-size: 20px;
	color: #000000;
	font-weight: bold;
}
h3 {
	font-size: 14px;
	color: #000000;
	font-weight: bold;
	text-align: left;
}
h4 {
	font-size: 20px;
	color: #FFD600;
	font-weight: bold;
}
h5 {
	font-size: 12px;
	color: #000000;
}
h6 {
	font-size: 14px;
	color: #FFD600;
}
.boldleft {
	font-weight: bold;
	text-align: left;
}
.boldright {
	font-weight: bold;
	text-align: right;
}
.requiredfield {
	font-size: 12px;
	font-weight: bold;
	color: #FF0000;
	text-align: left;
}
.form1 {
	font-size: 12px;
	font-weight: bold;
	color: #000000;
	text-align: left;
}


.style1 {
	font-size: 14px;
	font-weight: bold;
	text-align: center;
}
.style2 {
	font-size: 20px;
	font-weight: bold;
	text-align: left;
}
.style3 {
	font-size: 10px;
}
.style4 {
	color: #333333
}
.style5 {font-size: 14px}
.style6 {font-size: 10px}
.style7 {color: #666666}
.style8 {font-size: 12px}


/* SpryValidationSelect.css - Revision: Spry Preview Release 1.4 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/* 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: #CC3333;
	border: 1px solid #CC3333;
	font-size: 12px;
}

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

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


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


/* SpryFormValidation.css - Revision: Spry Preview Release 1.4 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */


/* 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: #CC3333;
	border: 1px solid #CC3333;
	font-size: 12px;
}



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

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


/* SpryValidationCheckbox.css - Revision: Spry Preview Release 1.4 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */


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

