@charset "UTF-8";

/* SpryValidationTextField.css - version 0.4 - Spry Pre-Release 1.6.1 */

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

/*================== TEXT FIELDS ===================== */

/* 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;
	font-size: .6em;
	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;
}

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

/* ====================== TEXT AREAS ==================== */

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

/* 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;
}
/* When the widget has the hint message on, the hint text can be styled differently than the user typed text. */
textarea.textareaHintState, .textareaHintState textarea{
	/* color: red !important;*/
}

 /* =========== FORM =============== */
#content #topContent {
	width: auto;
	margin:15px 15px 30px 15px;
	padding: 0;
	color: #af4647;
	font-family: verdana, arial, helvetica, sans-serif;
	text-align: left;
}
#content #topContent img {
	border: 1px solid #af4647;	
}
#content #topContent h1 {
	width: 95%;
	font-size: 1.3em;
	border-bottom: 2px solid #af4647;
}
#content #formContent #brownBox {
	margin: 0  auto 30px auto;
	padding: 15px 15px 30px 15px;
	width: 900px;
	background: #300;
	color: white;
	text-align: left;
}
#formContent #brownBox h2 {
	font-family: times, times new roman, serif;
	font-size: 1.3em;
	font-weight: normal;
	font-style: italic;
	border-bottom: 2px solid white;
}
#formContent #brownBox p {
	font-size: .8em;
	line-height: 1.8em;
}
#sample_req form {
	font-size: .9em;
}
/* -- !Required Fields -- */
fieldset abbr {
	color: #de0303;
	font-size: 12px;
	font-weight: bold;
	line-height: 1;
	padding: 0 1px;
	vertical-align: middle;
}
fieldset#custInfo {
	float: left;
	width: 415px;
	margin-left: 5px;
	background: url(../images/bkg_form.gif) repeat-x bottom;
}
fieldset#projInfo {
	float: right;
	width: 415px;
	margin-right: 5px;
	background: url(../images/bkg_form.gif) repeat-x bottom;
}
legend {
	color: #B29C72;
	font-size: 1.2em;
}
#sample_req form .field {
	clear: both;
	margin: 0 0 1em;
	padding-left: 130px;
}
#sample_req form .field ul {
	list-style-type: none;

}
#sample_req form .field li {
	margin-left: -20px;
	padding-bottom: .9em;
}
#sample_req form .field label {
	float: left;
	display: inline;
	font-size: .8em;
	text-align: right;
	width: 130px;
	margin-left: -135px;
}
#sample_req form .text {
	width: 185px;
	border: 3px solid #af4647;
	margin: 0;
	padding: 0;
}
/*
fieldset#projInfo #sample_req form .text {
	
	width: 185px;
	border: 3px solid #af4647;
}
*/
#sample_req form .field li.req {
	margin: 0 0 0 -20px;
	padding: 0 0 .5em 0;
}

.example {
	margin: 3px 0 0 0;
	padding: 0;
	font-size: .7em;
}
#sample_req textarea {
	width: 190px;
	border: 3px solid #af4647;
	overflow: auto;
}
fieldset#docReq, fieldset#specInst {
	margin: 0 auto;
	width: 865px;
	background: url(../images/bkg_form.gif) repeat-x bottom;
}

fieldset#specInst textarea {
	width: 800px;
	margin: 10px 0 0 10px;;	
}
ul#docLeft {
	float: left;
	margin-left: -50px;
}
ul#docLeft2 {
	float: left;
	margin-left: 150px;
}
li.docReq1 {
	margin: 0 0 25px 0;
	width: 20x;
}
#docLeft li.docReq1 label, #docLeft2 li.docReq1 label, #docRight li.docReq1 label {
	float: left;
	display: block;
	font-size: .9em;
	text-align: right;
	width: 250px;
}
ul#docRight {
	float: right;
	margin-right: 30px;
}
.subLabel {
	font-style: italic;
	font-size: .9em; 
	color: #B29C72;
}
.buttons {
	cursor: pointer;
	margin:30px 0 0 0;
	padding: 10px 0;
	text-align: center;
}