@charset "utf-8";
/* Spry formats */
form.Sharp_450 .textfieldRequiredState .textfieldRequiredMsg, 
form.Sharp_450 .textfieldInvalidFormatState .textfieldInvalidFormatMsg, 
form.Sharp_450 .textfieldMinValueState .textfieldMinValueMsg,
form.Sharp_450 .textfieldMaxValueState .textfieldMaxValueMsg,
form.Sharp_450 .textfieldMinCharsState .textfieldMinCharsMsg,
form.Sharp_450 .textfieldMaxCharsState .textfieldMaxCharsMsg {
	color:#b40000;
	white-space:nowrap;
	margin-top:3px;
	margin-left:2px;
	border-width:0;
}
form.Sharp_450 .checkboxRequiredState .checkboxRequiredMsg,
form.Sharp_450 .checkboxMinSelectionsState .checkboxMinSelectionsMsg,
form.Sharp_450 .checkboxMaxSelectionsState .checkboxMaxSelectionsMsg {
	color:#b40000;
	white-space:nowrap;
	margin-top:3px;
	margin-left:2px;
	border-width:0;
}
form.Sharp_450 .selectRequiredState .selectRequiredMsg,
form.Sharp_450 .selectInvalidState .selectInvalidMsg {
	color:#b40000;
	white-space:nowrap;
	margin-top:3px;
	margin-left:2px;
	border-width:0;
}
form.Sharp_450 .textareaRequiredState .textareaRequiredMsg,
form.Sharp_450 .textareaMinCharsState .textareaMinCharsMsg,
form.Sharp_450 .textareaMaxCharsState .textareaMaxCharsMsg {
	color:#b40000;
	white-space:nowrap;
	margin-top:3px;
	margin-left:2px;
	border-width:0;
}
form.Sharp_450 .radioRequiredState .radioRequiredMsg,
form.Sharp_450 .radioInvalidState .radioInvalidMsg {
	color:#b40000;
	white-space:nowrap;
	margin-top:3px;
	margin-left:2px;
	border-width:0;
}
form.Sharp_450 .passwordRequiredState .passwordRequiredMsg,
form.Sharp_450 .passwordMinCharsState .passwordMinCharsMsg,
form.Sharp_450 .passwordMaxCharsState .passwordMaxCharsMsg,
form.Sharp_450 .passwordInvalidStrengthState .passwordInvalidStrengthMsg,
form.Sharp_450 .passwordCustomState .passwordCustomMsg {
	color:#b40000;
	white-space:nowrap;
	margin-top:3px;
	margin-left:2px;
	border-width:0;
}
form.Sharp_450 .confirmRequiredState .confirmRequiredMsg,
form.Sharp_450 .confirmInvalidState .confirmInvalidMsg {
	color:#b40000;
	white-space:nowrap;
	margin-top:3px;
	margin-left:2px;
	border-width:0;
}

/* 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. */
form.Sharp_450 .textareaValidState textarea, textarea.textareaValidState {
	background-color:#fff;
	color:#000;
	border-color:#8c8c8c;
}

/* When the widget has received focus, the TEXTAREA has a yellow background applied on it. */
form.Sharp_450 .textareaFocusState textarea, textarea.textareaFocusState {
	background-color:#fff;
	color:#000;
	border-color:#000;
}

/* 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.
 */
form.Sharp_450 .textareaFlashState textarea, textarea.textareaFlashState{
	color: #ff0000;
}
/* When the widget has the hint message on, the hint text can be styled differently than the user typed text. */
form.Sharp_450 textarea.textareaHintState, .textareaHintState textarea{
	 color: #Ff0000;
}


/* 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. */
form.Sharp_450 .textfieldValidState input, input.textfieldValidState {
	background-color:#fff;
	color:#000;
	border-color:#8c8c8c;
}

/* When the widget is in an invalid state the INPUT has a red background applied on it. */
form.Sharp_450 input.textfieldRequiredState, .textfieldRequiredState input, 
form.Sharp_450 input.textfieldInvalidFormatState, .textfieldInvalidFormatState input, 
form.Sharp_450 input.textfieldMinValueState, .textfieldMinValueState input, 
form.Sharp_450 input.textfieldMaxValueState, .textfieldMaxValueState input, 
form.Sharp_450 input.textfieldMinCharsState, .textfieldMinCharsState input, 
form.Sharp_450 input.textfieldMaxCharsState, .textfieldMaxCharsState input {
	background-color:#b40000;
	color:#fff;
	border-color:#8c8c8c;
}

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

/* 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.
 */
form.Sharp_450 .textfieldFlashText input, input.textfieldFlashText {
	color: #ff0000;
}

/* When the widget has the hint message on, the hint text can be styled differently than the user typed text. */
form.Sharp_450 .textfieldHintState input, input.textfieldHintState {
	color: #ff0000;
}

/* select */

/* 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. */
form.Sharp_450 .selectValidState select, select.selectValidState {
	background-color:#fff;
	color:#000;
	border-color:#8c8c8c;
}

/* When the widget is in an invalid state the SELECT has a red background applied on it. */
form.Sharp_450 select.selectRequiredState, .selectRequiredState select,
form.Sharp_450 select.selectInvalidState, .selectInvalidState select {
	background-color:#b40000;
	color:#fff;
	border-color:#8c8c8c;
}

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

/* Password */

form.Sharp_450 .passwordRequiredState .passwordRequiredMsg,
form.Sharp_450 .passwordMinCharsState .passwordMinCharsMsg,
form.Sharp_450 .passwordMaxCharsState .passwordMaxCharsMsg,
form.Sharp_450 .passwordInvalidStrengthState .passwordInvalidStrengthMsg,
form.Sharp_450 .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. */
form.Sharp_450 .passwordValidState input, input.passwordValidState {
	background-color:#fff;
	color:#000;
	border-color:#8c8c8c;
}


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

/* confirm */
/* 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 , 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. */
form.Sharp_450 .confirmValidState input, input.confirmValidState {
	background-color:#fff;
	color:#000;
	border-color:#8c8c8c;
}

/* When the widget is in an invalid state the INPUT has a red background applied on it. */
form.Sharp_450 input.confirmRequiredState, .confirmRequiredState input, 
form.Sharp_450 input.confirmInvalidState, .confirmInvalidState input
{
	background-color:#b40000;
	color:#fff;
	border-color:#8c8c8c;
}

/* When the widget has received focus, the INPUT has a yellow background applied on it. */
form.Sharp_450 .confirmFocusState input, input.confirmFocusState {
	background-color:#fff;
	color:#000;
	border-color:#000;
}



form.Sharp_450 span.additionalErrorZone {
	white-space:nowrap;
}
form.Sharp_450 div.errorGroup {
	margin-left:105px;
}
form.Sharp_450 span.serverInvalidState {
	color:#b40000;
	white-space:nowrap;
	margin-top:3px;
	margin-left:2px;
	border-width:0;
}

/* form general definition */
form.Sharp_450 {
	padding:0 0 0 0;
	margin:0 0 0 0;
	font-family:Georgia, Times New Roman, Times, serif;
	width:450px;
}
form.Sharp_450 ul.Sharp_450 {
  list-style-type:none;
  margin: 0;
  padding: 0;
}
form.Sharp_450 ul.formList {
	padding:0 0 0 0;
	margin:35px 12px 12px 12px;
  list-style-type:none;
}
form.Sharp_450 li.formItem {
	clear:both;
}
form.Sharp_450 fieldset.Sharp_450 {
	border-width:0;
}

/* legend */
form.Sharp_450 span.groupHeader {
	border:1px solid #CCC;
	padding:3px 3px 3px 10px;
	text-transform:uppercase;
	font-weight:bold;
	font-family:Arial, Helvetica, sans-serif;
	width:450px;
	position:absolute;
	display:block;
	white-space:nowrap;
	border-right-width:0;
	border-left-width:0;
}

/* labels */
form.Sharp_450 label.groupHeader {
	color:#b40000;
	text-transform:uppercase;
	font-weight:bold;
	font-family:Arial, Helvetica, sans-serif;
	text-align:right;
	width:220px;
	display:block;
	float:left;
	position:relative;
}
form.Sharp_450 label.sublabel {
	text-align:right;
	width:100px;
	float:left;
	display:block;
	padding-top:2px;
	padding-right:5px;
}
form.Sharp_450 label.secondSublabel {
	width:auto;
}
form.Sharp_450 label.sublabelPlaceholder {
}
form.Sharp_450 span.requiredIndicator {
	color:#b40000;
}
form.Sharp_450 span.fieldsetDescription {
	color:#b40000;
	text-align:right;
	display:block;
	margin-bottom:5px;
}

/* span wrappers for form */
form.Sharp_450 div.formGroup {
	display:inline;
	float:left;
}
form.Sharp_450 div.lineGroup {
	clear:left;
	display:block;
}
/* defines column size */
form.Sharp_450 div.wideColumnGroup {
	width:NaNpx;
	padding-bottom:8px;
	padding-top:8px;
	display:inline;
	float:left;
}
form.Sharp_450 div.fullColumnGroup {
	width:NaNpx;
	padding-bottom:8px;
	padding-top:8px;
	display:inline;
	float:left;
}
form.Sharp_450 div.columnGroup {
	width:380px;
	padding-bottom:8px;
	padding-top:8px;
	display:inline;
	float:left;
}
form.Sharp_450 div.fieldGroup {
	padding-left:8px;
	padding-right:8px;
  position:relative;
	display:block;
	float:left;
}
form.Sharp_450 div.fieldPair {
	display:block;
}

form.Sharp_450 div.SameAsCheck_Row {
	margin-top:6px;
	margin-bottom:10px;
}

form.Sharp_450 span.precedingText {
	text-align:right;
	font-weight: bold;
}
form.Sharp_450 div.trailingText {
	color:#b40000;
	display:inline;
  white-space:nowrap;
	margin-top:2px;
	margin-right:2px;
	margin-left:4px;
	padding-top:2px;
}
form.Sharp_450 div.trailingText a {
	color:#b40000;
}
form.Sharp_450 div.trailingText div {
	background-color:#8c8c8c;
}

/* wide groups for items on a single line */
form.Sharp_450 span.wideFieldGroup {
	width:100%;
	float:left;
}

/* button form elements */
form.Sharp_450 span.buttonFieldGroup {
	float:left;
	text-align:right;
	margin-top:10px;
	margin-left:255px;
}
form.Sharp_450 input.formButton {
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 20px;
	border-style: solid;
	outline: #d8e9f1 1px solid;
	color: #ffffff;
	background-color: #0058A5;
	border-color: #ffffff;
	font-family: Arial, Verdana, sans-serif;
	font-size: 1.0em;
	border-width: 1px;
}}
form.Sharp_450 input.formButton:hover {
	color: #ffffff;
	background-color: #363947;
}}

/* text form elements */
form.Sharp_450 input.formTextfield_XSmall {
	background-color:#fff;
	color:#000;
	padding:5px 5px 5px 5px;
	font-style:italic;
	width:50px;
	margin:0;
	border-style:solid;
	border-width:1px;
	margin-left:2px;
	border-color:#8c8c8c;
}
form.Sharp_450 input.formTextfield_Small {
	background-color:#fff;
	color:#000;
	padding:5px 5px 5px 5px;
	font-style:italic;
	width:80px;
	margin:0;
	border-style:solid;
	border-width:1px;
	margin-left:2px;
	border-color:#8c8c8c;
}
form.Sharp_450 input.formTextfield_Medium {
	background-color:#fff;
	color:#000;
	padding:5px 5px 5px 5px;
	font-style:italic;
	width:120px;
	margin:0;
	border-style:solid;
	border-width:1px;
	margin-left:2px;
	border-color:#8c8c8c;
}
form.Sharp_450 input.formTextfield_Large {
	background-color:#fff;
	color:#000;
	padding:5px 5px 5px 5px;
	font-style:italic;
	width:252px;
	margin:0;
	border-style:solid;
	border-width:1px;
	margin-left:2px;
	border-color:#8c8c8c;
}
form.Sharp_450 input.formTextfield_XLarge {
	background-color:#fff;
	color:#000;
	padding:5px 5px 5px 5px;
	font-style:italic;
	width:382px;
	margin:0;
	border-style:solid;
	border-width:1px;
	margin-left:2px;
	border-color:#8c8c8c;
}

form.Sharp_450 .textfieldValidState input, form.Sharp_450 input.textfieldValidState {
	background-color: #B8F5B1;
}

form.Sharp_450 input.textfieldRequiredState, form.Sharp_450 .textfieldRequiredState input, 
form.Sharp_450 input.textfieldInvalidFormatState, form.Sharp_450 .textfieldInvalidFormatState input, 
form.Sharp_450 input.textfieldMinValueState, form.Sharp_450 .textfieldMinValueState input, 
form.Sharp_450 input.textfieldMaxValueState, form.Sharp_450 .textfieldMaxValueState input, 
form.Sharp_450 input.textfieldMinCharsState, form.Sharp_450 .textfieldMinCharsState input, 
form.Sharp_450 input.textfieldMaxCharsState, form.Sharp_450 .textfieldMaxCharsState input {
	background-color: #FF9F9F;
}

form.Sharp_450 .textfieldFocusState input, form.Sharp_450 input.textfieldFocusState {
	background-color: #FFFFCC;
}

form.Sharp_450 .textfieldFlashText input, form.Sharp_450 input.textfieldFlashText {
	color: red !important;
}

form.Sharp_450 .textfieldHintState input, form.Sharp_450 input.textfieldHintState {
	/*color: red !important;*/
}


/* textarea form elements */
form.Sharp_450 textarea.formTextarea_Small {
	background-color:#fff;
	color:#000;
	padding:5px 5px 5px 5px;
	font-style:italic;
	width:252px;
	height:100px;
	white-space:pre;
	overflow:auto;
	margin:0;
	border-style:solid;
	border-width:1px;
	margin-left:2px;
	border-color:#8c8c8c;
}
form.Sharp_450 textarea.formTextarea_Medium {
	background-color:#fff;
	color:#000;
	padding:5px 5px 5px 5px;
	font-style:italic;
	width:382px;
	height:150px;
	white-space:pre;
	overflow:auto;
	margin:0;
	border-style:solid;
	border-width:1px;
	margin-left:2px;
	border-color:#8c8c8c;
}
form.Sharp_450 textarea.formTextarea_Large {
	background-color:#fff;
	color:#000;
	padding:5px 5px 5px 5px;
	font-style:italic;
	width:514px;
	height:200px;
	white-space:pre;
	overflow:auto;
	margin:0;
	border-style:solid;
	border-width:1px;
	margin-left:2px;
	border-color:#8c8c8c;
}
form.Sharp_450 .textareaValidState textarea, form.Sharp_450 textarea.textareaValidState {
	background-color:#B8F5B1;
}

form.Sharp_450 textarea.textareaRequiredState, form.Sharp_450 .textareaRequiredState textarea, 
form.Sharp_450 textarea.textareaMinCharsState, form.Sharp_450 .textareaMinCharsState textarea, 
form.Sharp_450 textarea.textareaMaxCharsState, form.Sharp_450 .textareaMaxCharsState textarea {
	background-color:#b40000;
	color:#fff;
	border-color:#8c8c8c;
}

form.Sharp_450 .textareaFocusState textarea, form.Sharp_450 textarea.textareaFocusState {
	background-color:#FFFFCC;
}

form.Sharp_450 .textareaFlashState textarea, form.Sharp_450 textarea.textareaFlashState{
	color:red !important;
}

form.Sharp_450 textarea.textareaHintState, form.Sharp_450 .textareaHintState textarea{
	/* color: red !important;*/
}


/* select form elements */
form.Sharp_450 select.formMenufield_XSmall {
	background-color:#fff;
	color:#000;
	padding:5px 5px 5px 5px;
	font-style:italic;
	width:50px;
	margin:0;
	border-style:solid;
	border-width:1px;
	margin-left:2px;
	border-color:#8c8c8c;
}
form.Sharp_450 select.formMenufield_Small {
	background-color:#fff;
	color:#000;
	padding:5px 5px 5px 5px;
	font-style:italic;
	width:80px;
	margin:0;
	border-style:solid;
	border-width:1px;
	margin-left:2px;
	border-color:#8c8c8c;
}
form.Sharp_450 select.formMenufield_Medium {
	background-color:#fff;
	color:#000;
	padding:5px 5px 5px 5px;
	font-style:italic;
	width:120px;
	margin:0;
	border-style:solid;
	border-width:1px;
	margin-left:2px;
	border-color:#8c8c8c;
}
form.Sharp_450 select.formMenufield_Large {
	background-color:#fff;
	color:#000;
	padding:5px 5px 5px 5px;
	font-style:italic;
	width:252px;
	margin:0;
	border-style:solid;
	border-width:1px;
	margin-left:2px;
	border-color:#8c8c8c;
}
form.Sharp_450 select.formMenufield_XLarge {
	background-color:#fff;
	color:#000;
	padding:5px 5px 5px 5px;
	font-style:italic;
	width:382px;
	margin:0;
	border-style:solid;
	border-width:1px;
	margin-left:2px;
	border-color:#8c8c8c;
}

form.Sharp_450 select.formListfield_XSmall {
	background-color:#fff;
	color:#000;
	padding:5px 5px 5px 5px;
	font-style:italic;
	width:50px;
	height:100px;
	margin:0;
	border-style:solid;
	border-width:1px;
	margin-left:2px;
	border-color:#8c8c8c;
}
form.Sharp_450 select.formListfield_Small {
	background-color:#fff;
	color:#000;
	padding:5px 5px 5px 5px;
	font-style:italic;
	width:80px;
	height:100px;
	margin:0;
	border-style:solid;
	border-width:1px;
	margin-left:2px;
	border-color:#8c8c8c;
}
form.Sharp_450 select.formListfield_Medium {
	background-color:#fff;
	color:#000;
	padding:5px 5px 5px 5px;
	font-style:italic;
	width:120px;
	height:100px;
	margin:0;
	border-style:solid;
	border-width:1px;
	margin-left:2px;
	border-color:#8c8c8c;
}
form.Sharp_450 select.formListfield_Large {
	background-color:#fff;
	color:#000;
	padding:5px 5px 5px 5px;
	font-style:italic;
	width:252px;
	height:100px;
	margin:0;
	border-style:solid;
	border-width:1px;
	margin-left:2px;
	border-color:#8c8c8c;
}
form.Sharp_450 select.formListfield_XLarge {
	background-color:#fff;
	color:#000;
	padding:5px 5px 5px 5px;
	font-style:italic;
	width:382px;
	height:150px;
	margin:0;
	border-style:solid;
	border-width:1px;
	margin-left:2px;
	border-color:#8c8c8c;
}
form.Sharp_450 .selectValidState select, form.Sharp_450 select.selectValidState {
	background-color: #B8F5B1;
}

form.Sharp_450 select.selectRequiredState, form.Sharp_450 .selectRequiredState select,
form.Sharp_450 select.selectInvalidState, form.Sharp_450 .selectInvalidState select {
	background-color: #FF9F9F;
}

.selectFocusState select, form.Sharp_450 select.selectFocusState {
	background-color: #FFFFCC;
}

/* radio button form elements */
form.Sharp_450 input.formRadioField_Standard {
	background-color:#fff;
	color:#000;
	padding:2px 2px 2px 2px;
	margin-top:6px;
	margin-left:2px;
	border-style:solid;
	border-width:1px;
	border-color:#8c8c8c;
}
form.Sharp_450 .radioValidState input, form.Sharp_450 input.radioValidState {
	background-color:#fff;
	color:#000;
	border-color:#8c8c8c;
}
form.Sharp_450 input.radioRequiredState, form.Sharp_450 .radioRequiredState input,
form.Sharp_450 input.radioInvalidState, form.Sharp_450 .radioInvalidState input {
	background-color:#b40000;
	color:#fff;
	border-color:#8c8c8c;
}
form.Sharp_450 .radioFocusState input, form.Sharp_450 input.radioFocusState {
	background-color:#fff;
	color:#000;
	border-color:#000;
}

form.Sharp_450 span.radioFieldGroup_Narrow {
	
}
form.Sharp_450 span.radioFieldGroup_Wide {
	display:block;
}
form.Sharp_450 span.radioFieldGroup_OneColumn {
	display:block;
}
form.Sharp_450 span.radioGroup_Narrow {
	
}
form.Sharp_450 span.radioGroup_Wide {
	display:block;
}
form.Sharp_450 span.radioGroup_OneColumn {
	display:block;
}
form.Sharp_450 label.radioSublabel_Narrow {
	font-style:italic;
	width:60px;
	float:left;
	display:block;
	text-align:left;
	border-width:0;
	margin-right:2px;
	margin-bottom:2px;
}
form.Sharp_450 label.radioSublabel_Wide {
	font-style:italic;
	width:135px;
	float:left;
	display:block;
	text-align:left;
	border-width:0;
	margin-right:2px;
	margin-bottom:2px;
}
form.Sharp_450 label.radioSublabel_OneColumn {
	font-style:italic;
	display:block;
	text-align:left;
	border-width:0;
	margin-bottom:2px;
}


/* checkbox form elements */
form.Sharp_450 input.SameAsCheck {
	background-color:#fff;
	color:#000;
	padding:2px 2px 2px 2px;
	margin-top:6px;
	margin-left:2px;
	border-style:solid;
	border-width:1px;
	border-color:#8c8c8c;
}
form.Sharp_450 input.formCheckboxField_Standard {
	background-color:#fff;
	color:#000;
	padding:2px 2px 2px 2px;
	margin-top:6px;
	margin-left:2px;
	border-style:solid;
	border-width:1px;
	border-color:#8c8c8c;
}
form.Sharp_450 .checkboxValidState input, form.Sharp_450 input.checkboxValidState {
	background-color:#fff;
	color:#000;
	border-color:#8c8c8c;
}
form.Sharp_450 input.checkboxRequiredState, form.Sharp_450 .checkboxRequiredState input,
form.Sharp_450 input.checkboxMinSelectionsState, form.Sharp_450 .checkboxMinSelectionsState input,
form.Sharp_450 input.checkboxMaxSelectionsState, form.Sharp_450 .checkboxMaxSelectionsState input {
	background-color:#b40000;
	color:#fff;
	border-color:#8c8c8c;
}
form.Sharp_450 .checkboxFocusState input, form.Sharp_450 input.checkboxFocusState {
	background-color:#fff;
	color:#000;
	border-color:#000;
}

form.Sharp_450 span.checkFieldGroup_Narrow {
	display:block;
}
form.Sharp_450 span.checkFieldGroup_Wide {
	
}
form.Sharp_450 span.checkFieldGroup_OneColumn {
	display:block;
}
form.Sharp_450 span.checkGroup_Narrow {
	display:block;
}
form.Sharp_450 span.checkGroup_Wide {
	
}
form.Sharp_450 span.checkGroup_OneColumn {
	display:block;
}
form.Sharp_450 label.checkSublabel_Narrow {
	font-style:italic;
	width:60px;
	float:left;
	display:block;
	text-align:left;
	margin-top:3px;
	border-width:0;
	margin-right:2px;
	margin-bottom:2px;
}
form.Sharp_450 label.checkSublabel_Wide {
	font-style:italic;
	width:135px;
	float:left;
	display:block;
	text-align:left;
	margin-top:3px;
	border-width:0;
	margin-right:2px;
	margin-bottom:2px;
}
form.Sharp_450 label.checkSublabel_OneColumn {
	font-style:italic;
	display:block;
	text-align:left;
	border-width:0;
	margin-bottom:2px;
}

/* confirm and password states (same as text) */
form.Sharp_450 input.formPasswordfield_XSmall {
	background-color:#fff;
	color:#000;
	padding:5px 5px 5px 5px;
	font-style:italic;
	width:50px;
	margin:0;
	border-style:solid;
	border-width:1px;
	margin-left:2px;
	border-color:#8c8c8c;
}
form.Sharp_450 input.formPasswordfield_Small {
	background-color:#fff;
	color:#000;
	padding:5px 5px 5px 5px;
	font-style:italic;
	width:80px;
	margin:0;
	border-style:solid;
	border-width:1px;
	margin-left:2px;
	border-color:#8c8c8c;
}
form.Sharp_450 input.formPasswordfield_Medium {
	background-color:#fff;
	color:#000;
	padding:5px 5px 5px 5px;
	font-style:italic;
	width:120px;
	margin:0;
	border-style:solid;
	border-width:1px;
	margin-left:2px;
	border-color:#8c8c8c;
}
form.Sharp_450 input.formPasswordfield_Large {
	background-color:#fff;
	color:#000;
	padding:5px 5px 5px 5px;
	font-style:italic;
	width:252px;
	margin:0;
	border-style:solid;
	border-width:1px;
	margin-left:2px;
	border-color:#8c8c8c;
}
form.Sharp_450 input.formPasswordfield_XLarge {
	background-color:#fff;
	color:#000;
	padding:5px 5px 5px 5px;
	font-style:italic;
	width:382px;
	margin:0;
	border-style:solid;
	border-width:1px;
	margin-left:2px;
	border-color:#8c8c8c;
}

form.Sharp_450 .confirmValidState input, form.Sharp_450 input.confirmValidState {
	background-color: #B8F5B1;
}

form.Sharp_450 input.confirmRequiredState, form.Sharp_450 .confirmRequiredState input, 
form.Sharp_450 input.confirmInvalidState, form.Sharp_450 .confirmInvalidState input {
	background-color: #FF9F9F;
}

form.Sharp_450 .confirmFocusState input, form.Sharp_450 input.confirmFocusState {
	background-color: #FFFFCC;
}
form.Sharp_450 .passwordValidState input, form.Sharp_450 input.passwordValidState {
	background-color: #B8F5B1;
}

form.Sharp_450 input.passwordRequiredState, form.Sharp_450 .passwordRequiredState input, 
form.Sharp_450 input.passwordInvalidStrengthState, form.Sharp_450 .passwordInvalidStrengthState input, 
form.Sharp_450 input.passwordMinCharsState, form.Sharp_450 .passwordMinCharsState input, 
form.Sharp_450 input.passwordCustomState, form.Sharp_450 .passwordCustomState input, 
form.Sharp_450 input.passwordMaxCharsState, form.Sharp_450 .passwordMaxCharsState input {
	background-color:#b40000;
	color:#fff;
	border-color:#8c8c8c;
}

form.Sharp_450 .passwordFocusState input, form.Sharp_450 input.passwordFocusState {
	background-color: #FFFFCC;
}

/*Captcha form element*/
form.Sharp_450 img.Captcha {
	margin:0 0 -10px 3px;
}

/*Datepicker form element*/
.ui-datepicker {
}
.ui-datepicker a {
}
.ui-datepicker .ui-widget-header {
}
.ui-datepicker thead th {
}

.ui-datepicker tbody td a:link,
.ui-datepicker tbody td a:visited,
.ui-datepicker tbody td a.ui-state-default {
}
.ui-datepicker tbody td a:active,
.ui-datepicker tbody td a.ui-state-active {
}
.ui-datepicker tbody td a:hover,
.ui-datepicker tbody td a.ui-state-hover {
}
.ui-datepicker tbody td a.ui-state-error:link,
.ui-datepicker tbody td a.ui-state-error:visited,
.ui-datepicker tbody td a.ui-state-error {
}
.ui-datepicker tbody .ui-state-error-text {
}

.ui-datepicker tbody td.ui-datepicker-week-end a:link,
.ui-datepicker tbody td.ui-datepicker-week-end a:visited,
.ui-datepicker tbody td.ui-datepicker-week-end a {
}
.ui-datepicker tbody td.ui-datepicker-today a:link,
.ui-datepicker tbody td.ui-datepicker-today a:visited,
.ui-datepicker tbody td.ui-datepicker-today a:hover,
.ui-datepicker tbody td.ui-datepicker-today a {
}

.ui-datepicker tbody td.ui-datepicker-week-end a:hover,
.ui-datepicker tbody td.ui-datepicker-week-end a.ui-state-hover {
}
.ui-datepicker tbody td.ui-datepicker-week-end a:active,
.ui-datepicker tbody td.ui-datepicker-week-end a:focus,
.ui-datepicker tbody td.ui-datepicker-week-end a.ui-state-active {
}

.ui-datepicker-trigger {
  border: 0;
  margin: 0 0 0 1px;
  padding: 0;
  background: none;
}

form.Sharp_450 .TextOnly {
  padding-top: NaNpx;
  display: table-cell;
}