@charset "utf-8";
.img {
	border: 1px solid #003E7E;
}
.strap {
	font-family: "Trebuchet MS", Arial, verdana;
	font-size: 1.1em;
	font-style: italic;
	font-weight: bold;
	color: #003871;
}


body {
	background-attachment: fixed;
	background-image: url(img/background.jpg);
	background-repeat: repeat-x;
	margin: 0px;
	background-position: bottom;
	background-color: #FFF;
}
#logo {
	height: 100px;
	width: 200px;
}
#main {
	border: 1px solid #FFFFFF;
	width: 775px;
}
h1 {
	font-family: "Trebuchet MS", Arial, verdana;
	font-size: 1.2em;
	font-weight: bold;
	color: #003871;
}
.left {
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #003E7E;
}
#nav {
	font-family: "Trebuchet MS", Arial, Verdana, sans-serif;
	font-size: 1em;
	color: #FFFFFF;
}

.right {
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #003E7E;
}
.bold {
	font-size: 1.0em;
	font-weight: bold;
}

a:link {
	color: #000066;
	text-decoration: underline;
	font-family: "Trebuchet MS", Arial, Verdana, sans-serif;
}
a:hover {
	color: #FF6600;
	text-decoration: none;
}


/* 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;
}
.loggedin {
	font-size: 0.9em;
	font-family: "Trebuchet MS", Arial, Verdana, sans-serif;
}


/* 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-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

/* 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-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}



/* 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;
}


/* 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.
 */ 
.textareaRequiredMsg,
.textareaMinCharsMsg,
.textareaMaxCharsMsg,
.textareaValidMsg {
	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. .textareaRequiredState) 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".
 */
.textareaRequiredState .textareaRequiredMsg,
.textareaMinCharsState .textareaMinCharsMsg,
.textareaMaxCharsState .textareaMaxCharsMsg
{
	display: inline;
	color: #CC3333;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

/* The next three group selectors control the way the core element (TEXTAREA) looks like when the widget is in one of the states: * focus, required / 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 TEXTAREA
 * - the widget id is placed on the TEXTAREA element itself (there are no error messages)
 */
 
 /* When the widget is in the valid state the TEXTAREA has a green background applied on it. */
.textareaValidState textarea, textarea.textareaValidState {
	background-color:#B8F5B1;
}

/* When the widget is in an invalid state the TEXTAREA has a red background applied on it. */
textarea.textareaRequiredState, .textareaRequiredState textarea, 
textarea.textareaMinCharsState, .textareaMinCharsState textarea, 
textarea.textareaMaxCharsState, .textareaMaxCharsState textarea {
	background-color:#FF9F9F;
}

/* When the widget has received focus, the TEXTAREA has a yellow background applied on it. */
.textareaFocusState textarea, textarea.textareaFocusState {
	background-color:#FFFFCC;
}

/* This class applies only for a short period of time and changes the way the text in the textarea looks like.
 * It applies only when the widget has enforce max chars enabled and the user tries to type some more.
 */
.textareaFlashState textarea, textarea.textareaFlashState{
	color:red !important;
}
#maincontent {
	background-image: url(/img/bg-trans.png);
	font-family: "Trebuchet MS", Arial, Verdana, sans-serif;
	font-size: .8em;
	border-top-width: 5px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #F0B310;
	border-right-color: #F0B310;
	border-bottom-color: #F0B310;
	border-left-color: #F0B310;
	width: 775px;
	margin-right: auto;
	margin-left: auto;
}
#footer {
	font-family: "Trebuchet MS", Arial, Verdana, sans-serif;
	font-size: 0.7em;
	border-top-width: 1px;
	border-top-style: dotted;
	border-top-color: #F0B310;
}
#nav a:link {
	font-family: "Trebuchet MS", Arial, Verdana, sans-serif;
	color: #FFFFFF;
	text-decoration: none;
}
#nav a:hover {
	font-family: "Trebuchet MS", Arial, Verdana, sans-serif;
	color: #003E7E;
	background-color: #A4D1FF;
	text-decoration: none;
	display: block;
}
.navactive {
	background-color: #F0B310;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #FFFFFF;
	font-size: 0.75em;
	color: #003E7E;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}
.navinactive {
	background-color: #003E7E;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #FFFFFF;
	font-size: .75em;
}
a:visited {
	color: #000066;
	text-decoration: underline;
	font-family: "Trebuchet MS", Arial, Verdana, sans-serif;
}
a:visited:hover {
	color: #FF6600;
	text-decoration: none;
}
#nav a:visited {
	font-family: "Trebuchet MS", Arial, Verdana, sans-serif;
	color: #FFFFFF;
	text-decoration: none;
}
#nav a:visited:hover {
	font-family: "Trebuchet MS", Arial, Verdana, sans-serif;
	color: #003E7E;
	background-color: #A4D1FF;
	text-decoration: none;
	display: block;
}
h3 {
	font-family: "Trebuchet MS", Arial, verdana;
	font-size: 1.1em;
	font-weight: bold;
	color: #000066;
}
h2 {
	font-family: "Trebuchet MS", Arial, verdana;
	font-size: 1.2em;
	font-weight: bold;
	color: #333;
}
p {
	font-family: "Trebuchet MS", Arial, Verdana, sans-serif;
	font-style: normal;
}
.dothr {
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #333333;
}
.disclaimer {
	font-size: .8em;
	line-height: 1em;
}
.heads {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	color: #FFF;
	background-color: #003E7E;
}
.cont {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: .8em;
	color: #003E7E;
	background-color: #FFC;
}
.heads a {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 0.9em;
	color: #FFF;
	background-color: #003E7E;
	text-decoration: none;
}
.navactive a {
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #FFFFFF;
	color: #003E7E;
	text-decoration: none;
}
.details {
	background-color: #E2E2E2;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #FFFFFF;
	font-size: .9em;
	color: #003E7E;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}
.detailcols {
	background-color: #F0B310;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #FFFFFF;
	font-size: .9em;
	color: #003E7E;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}
