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

/* 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.DrBeth_DrBeth .textareaValidState textarea, textarea.textareaValidState {
	background-color:#B8F5B1;
}

/* When the widget has received focus, the TEXTAREA has a yellow background applied on it. */
form.DrBeth_DrBeth .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.
 */
form.DrBeth_DrBeth .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.DrBeth_DrBeth 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.DrBeth_DrBeth .textfieldValidState input, input.textfieldValidState {
	background-color:#B8F5B1;
}

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

/* When the widget has received focus, the INPUT has a yellow background applied on it. */
form.DrBeth_DrBeth .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.
 */
form.DrBeth_DrBeth .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.DrBeth_DrBeth .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.DrBeth_DrBeth .selectValidState select, select.selectValidState {
	background-color:#B8F5B1;
}

/* When the widget is in an invalid state the SELECT has a red background applied on it. */
form.DrBeth_DrBeth select.selectRequiredState, .selectRequiredState select,
form.DrBeth_DrBeth select.selectInvalidState, .selectInvalidState select {
	background-color:#FF9F9F;
}

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

/* Password */

form.DrBeth_DrBeth .passwordRequiredState .passwordRequiredMsg,
form.DrBeth_DrBeth .passwordMinCharsState .passwordMinCharsMsg,
form.DrBeth_DrBeth .passwordMaxCharsState .passwordMaxCharsMsg,
form.DrBeth_DrBeth .passwordInvalidStrengthState .passwordInvalidStrengthMsg,
form.DrBeth_DrBeth .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.DrBeth_DrBeth .passwordValidState input, input.passwordValidState {
	background-color:#B8F5B1;
}


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

/* 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.DrBeth_DrBeth .confirmValidState input, input.confirmValidState {
	background-color:#B8F5B1;
}

/* When the widget is in an invalid state the INPUT has a red background applied on it. */
form.DrBeth_DrBeth input.confirmRequiredState, .confirmRequiredState input, 
form.DrBeth_DrBeth input.confirmInvalidState, .confirmInvalidState input
{
	background-color:#FF9F9F;
}

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



form.DrBeth_DrBeth span.additionalErrorZone {
	display:block;
	clear:left;
	white-space:nowrap;
}
form.DrBeth_DrBeth div.errorGroup {
	margin-left:155px;
}
form.DrBeth_DrBeth span.serverInvalidState {
	color:#b40000;
	display:block;
	white-space:nowrap;
}

/* form general definition */
form.DrBeth_DrBeth {
	background-color:#F0FBE0;
	color:#004204;
	font-size:14px;
	font-family:Arial, Helvetica, sans-serif;
	width:450px;
}
form.DrBeth_DrBeth ul.DrBeth_DrBeth {
  list-style-type:none;
  margin: 0;
  padding: 0;
}
form.DrBeth_DrBeth ul.formList {
	padding:0 0 0 0;
	margin:0 0 0 0;
  list-style-type:none;
}
form.DrBeth_DrBeth li.formItem {
	clear:both;
}
form.DrBeth_DrBeth fieldset.DrBeth_DrBeth {
}

/* legend */
form.DrBeth_DrBeth legend.groupHeader {
	font-weight:bold;
	font-size:18px;
	white-space:nowrap;
}

/* labels */
form.DrBeth_DrBeth label.groupHeader {
	text-align:right;
	display:block;
	float:left;
	position:relative;
}
form.DrBeth_DrBeth label.sublabel {
	font-weight:normal;
	font-size:15px;
	text-align:right;
	width:150px;
	float:left;
	display:block;
	margin-top:5px;
	padding-right:5px;
}
form.DrBeth_DrBeth label.secondSublabel {
	width:auto;
}
form.DrBeth_DrBeth label.sublabelPlaceholder {
}
form.DrBeth_DrBeth span.requiredIndicator {
	color:#b40000;
}
form.DrBeth_DrBeth span.fieldsetDescription {
	color:#b40000;
}

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

form.DrBeth_DrBeth div.SameAsCheck_Row {
}

form.DrBeth_DrBeth span.precedingText {
	text-align:right;
	font-weight: bold;
}
form.DrBeth_DrBeth div.trailingText {
  white-space:nowrap;
}
form.DrBeth_DrBeth div.trailingText a {
}
form.DrBeth_DrBeth div.trailingText div {
  background-color:#8c8c8c;
}

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

/* button form elements */
form.DrBeth_DrBeth span.buttonFieldGroup {
	float:left;
	text-align:right;
}
form.DrBeth_DrBeth input.formButton {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #FFFFFF;
	text-decoration: none;
	background: #004204;
	padding-top: 4px;
	padding-right: 10px;
	padding-bottom: 4px;
	padding-left: 10px;
	border-radius: 13px 13px 13px 13px;
}

/* text form elements */
form.DrBeth_DrBeth input.formTextfield_XSmall {
	background-color:#fff;
	padding:5px 5px 5px 5px;
	width:50px;
	margin:0;
	margin-left:2px;
}
form.DrBeth_DrBeth input.formTextfield_Small {
	background-color:#fff;
	padding:5px 5px 5px 5px;
	width:80px;
	margin:0;
	margin-left:2px;
}
form.DrBeth_DrBeth input.formTextfield_Medium {
	background-color:#fff;
	padding:5px 5px 5px 5px;
	width:120px;
	margin:0;
	margin-left:2px;
}
form.DrBeth_DrBeth input.formTextfield_Large {
	background-color:#fff;
	padding:5px 5px 5px 5px;
	width:200px;
	margin:0;
	margin-left:2px;
}
form.DrBeth_DrBeth input.formTextfield_XLarge {
	background-color:#fff;
	padding:5px 5px 5px 5px;
	width:592px;
	margin:0;
	margin-left:2px;
}

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

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

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

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

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


/* textarea form elements */
form.DrBeth_DrBeth textarea.formTextarea_Small {
	background-color:#FFF;
	padding:5px 5px 5px 5px;
	width:252px;
	height:100px;
	white-space:pre;
	overflow:auto;
	margin:0;
	margin-left:2px;
}
form.DrBeth_DrBeth textarea.formTextarea_Medium {
	background-color:#FFF;
	padding:5px 5px 5px 5px;
	width:382px;
	height:150px;
	white-space:pre;
	overflow:auto;
	margin:0;
	margin-left:2px;
}
form.DrBeth_DrBeth textarea.formTextarea_Large {
	background-color:#FFF;
	padding:5px 5px 5px 5px;
	width:514px;
	height:200px;
	white-space:pre;
	overflow:auto;
	margin:0;
	margin-left:2px;
}
form.DrBeth_DrBeth .textareaValidState textarea, form.DrBeth_DrBeth textarea.textareaValidState {
	background-color:#B8F5B1;
}

form.DrBeth_DrBeth textarea.textareaRequiredState, form.DrBeth_DrBeth .textareaRequiredState textarea, 
form.DrBeth_DrBeth textarea.textareaMinCharsState, form.DrBeth_DrBeth .textareaMinCharsState textarea, 
form.DrBeth_DrBeth textarea.textareaMaxCharsState, form.DrBeth_DrBeth .textareaMaxCharsState textarea {
	background-color:#FF9F9F;
}

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

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

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


/* select form elements */
form.DrBeth_DrBeth select.formMenufield_XSmall {
	background-color:#FFF;
	padding:5px 5px 5px 5px;
	width:50px;
	margin:0;
	margin-left:2px;
}
form.DrBeth_DrBeth select.formMenufield_Small {
	background-color:#FFF;
	padding:5px 5px 5px 5px;
	width:80px;
	margin:0;
	margin-left:2px;
}
form.DrBeth_DrBeth select.formMenufield_Medium {
	background-color:#FFF;
	padding:5px 5px 5px 5px;
	width:120px;
	margin:0;
	margin-left:2px;
}
form.DrBeth_DrBeth select.formMenufield_Large {
	background-color:#FFF;
	padding:5px 5px 5px 5px;
	width:252px;
	margin:0;
	margin-left:2px;
}
form.DrBeth_DrBeth select.formMenufield_XLarge {
	background-color:#FFF;
	padding:5px 5px 5px 5px;
	width:382px;
	margin:0;
	margin-left:2px;
}

form.DrBeth_DrBeth select.formListfield_XSmall {
	background-color:#FFF;
	padding:5px 5px 5px 5px;
	width:50px;
	height:100px;
	margin:0;
	margin-left:2px;
}
form.DrBeth_DrBeth select.formListfield_Small {
	background-color:#FFF;
	padding:5px 5px 5px 5px;
	width:80px;
	height:100px;
	margin:0;
	margin-left:2px;
}
form.DrBeth_DrBeth select.formListfield_Medium {
	background-color:#FFF;
	padding:5px 5px 5px 5px;
	width:120px;
	height:100px;
	margin:0;
	margin-left:2px;
}
form.DrBeth_DrBeth select.formListfield_Large {
	background-color:#FFF;
	padding:5px 5px 5px 5px;
	width:252px;
	height:100px;
	margin:0;
	margin-left:2px;
}
form.DrBeth_DrBeth select.formListfield_XLarge {
	background-color:#FFF;
	padding:5px 5px 5px 5px;
	width:382px;
	height:150px;
	margin:0;
	margin-left:2px;
}
form.DrBeth_DrBeth .selectValidState select, form.DrBeth_DrBeth select.selectValidState {
	background-color: #B8F5B1;
}

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

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

/* radio button form elements */
form.DrBeth_DrBeth input.formRadioField_Standard {
	background-color:#FFF;
	padding:2px 2px 2px 2px;
	margin-left:2px;
}
form.DrBeth_DrBeth .radioValidState input, form.DrBeth_DrBeth input.radioValidState {
	background-color:#B8F5B1;
}
form.DrBeth_DrBeth input.radioRequiredState, form.DrBeth_DrBeth .radioRequiredState input,
form.DrBeth_DrBeth input.radioInvalidState, form.DrBeth_DrBeth .radioInvalidState input {
	background-color:#FF9F9F;
}
form.DrBeth_DrBeth .radioFocusState input, form.DrBeth_DrBeth input.radioFocusState {
	background-color:#FFF;
}

form.DrBeth_DrBeth span.radioFieldGroup_Narrow {
	
}
form.DrBeth_DrBeth span.radioFieldGroup_Wide {
	display:block;
}
form.DrBeth_DrBeth span.radioFieldGroup_OneColumn {
	display:block;
}
form.DrBeth_DrBeth span.radioGroup_Narrow {
	
}
form.DrBeth_DrBeth span.radioGroup_Wide {
	display:block;
}
form.DrBeth_DrBeth span.radioGroup_OneColumn {
	display:block;
}
form.DrBeth_DrBeth label.radioSublabel_Narrow {
	padding:2px 2px 2px 2px;
	font-weight:normal;
	font-size:15px;
	width:60px;
	float:left;
	display:block;
	text-align:left;
}
form.DrBeth_DrBeth label.radioSublabel_Wide {
	padding:2px 2px 2px 2px;
	font-weight:normal;
	font-size:15px;
	width:135px;
	float:left;
	display:block;
	text-align:left;
}
form.DrBeth_DrBeth label.radioSublabel_OneColumn {
	padding:2px 2px 2px 2px;
	font-weight:normal;
	font-size:15px;
	display:block;
	text-align:left;
}


/* checkbox form elements */
form.DrBeth_DrBeth input.SameAsCheck {
	background-color:#FFF;
	padding:2px 2px 2px 2px;
	margin-left:2px;
}
form.DrBeth_DrBeth input.formCheckboxField_Standard {
	background-color:#FFF;
	padding:2px 2px 2px 2px;
	margin-left:2px;
}
form.DrBeth_DrBeth .checkboxValidState input, form.DrBeth_DrBeth input.checkboxValidState {
	background-color:#B8F5B1;
}
form.DrBeth_DrBeth input.checkboxRequiredState, form.DrBeth_DrBeth .checkboxRequiredState input,
form.DrBeth_DrBeth input.checkboxMinSelectionsState, form.DrBeth_DrBeth .checkboxMinSelectionsState input,
form.DrBeth_DrBeth input.checkboxMaxSelectionsState, form.DrBeth_DrBeth .checkboxMaxSelectionsState input {
	display:block;
	background-color:#FF9F9F;
}
form.DrBeth_DrBeth .checkboxFocusState input, form.DrBeth_DrBeth input.checkboxFocusState {
	background-color:#FFF;
}

form.DrBeth_DrBeth span.checkFieldGroup_Narrow {
	display:block;
}
form.DrBeth_DrBeth span.checkFieldGroup_Wide {
	
}
form.DrBeth_DrBeth span.checkFieldGroup_OneColumn {
	display:block;
}
form.DrBeth_DrBeth span.checkGroup_Narrow {
	display:block;
}
form.DrBeth_DrBeth span.checkGroup_Wide {
	
}
form.DrBeth_DrBeth span.checkGroup_OneColumn {
	display:block;
}
form.DrBeth_DrBeth label.checkSublabel_Narrow {
	font-weight:normal;
	font-size:15px;
	width:60px;
	float:left;
	display:block;
	text-align:left;
	margin-top:3px;
}
form.DrBeth_DrBeth label.checkSublabel_Wide {
	font-weight:normal;
	font-size:15px;
	width:135px;
	float:left;
	display:block;
	text-align:left;
	margin-top:3px;
}
form.DrBeth_DrBeth label.checkSublabel_OneColumn {
	font-weight:normal;
	font-size:15px;
	display:block;
	text-align:left;
}

/* confirm and password states (same as text) */
form.DrBeth_DrBeth input.formPasswordfield_XSmall {
	background-color:#FFF;
	padding:5px 5px 5px 5px;
	width:50px;
	margin:0;
	margin-left:2px;
}
form.DrBeth_DrBeth input.formPasswordfield_Small {
	background-color:#FFF;
	padding:5px 5px 5px 5px;
	width:80px;
	margin:0;
	margin-left:2px;
}
form.DrBeth_DrBeth input.formPasswordfield_Medium {
	background-color:#FFF;
	padding:5px 5px 5px 5px;
	width:120px;
	margin:0;
	margin-left:2px;
}
form.DrBeth_DrBeth input.formPasswordfield_Large {
	background-color:#FFF;
	padding:5px 5px 5px 5px;
	width:200px;
	margin:0;
	margin-left:2px;
}
form.DrBeth_DrBeth input.formPasswordfield_XLarge {
	background-color:#FFF;
	padding:5px 5px 5px 5px;
	width:592px;
	margin:0;
	margin-left:2px;
}

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

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

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

form.DrBeth_DrBeth input.passwordRequiredState, form.DrBeth_DrBeth .passwordRequiredState input, 
form.DrBeth_DrBeth input.passwordInvalidStrengthState, form.DrBeth_DrBeth .passwordInvalidStrengthState input, 
form.DrBeth_DrBeth input.passwordMinCharsState, form.DrBeth_DrBeth .passwordMinCharsState input, 
form.DrBeth_DrBeth input.passwordCustomState, form.DrBeth_DrBeth .passwordCustomState input, 
form.DrBeth_DrBeth input.passwordMaxCharsState, form.DrBeth_DrBeth .passwordMaxCharsState input {
	background-color:#FF9F9F;
}

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

/*Captcha form element*/
form.DrBeth_DrBeth img.Captcha {
	margin:0 0 -7px 2px;
}

/*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.DrBeth_DrBeth .TextOnly {
  padding-top: NaNpx;
  display: table-cell;
}