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

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

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

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

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

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

/* Password */

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


/* When the widget has received focus, the INPUT has a yellow background applied on it. */
form.PressBrake_PressBrake .passwordFocusState input, input.passwordFocusState {
	background-color:#fff;
	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.PressBrake_PressBrake .confirmValidState input, input.confirmValidState {
	background-color:#f5f5f5;
	color:#000;
}

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

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



form.PressBrake_PressBrake span.additionalErrorZone {
	display:block;
	clear:left;
	white-space:nowrap;
}
form.PressBrake_PressBrake div.errorGroup {
	margin-left:355px;
}
form.PressBrake_PressBrake span.serverInvalidState {
	color:#FFFF33;
	display:block;
	white-space:nowrap;
	margin-top:3px;
	margin-left:2px;
	border-width:0;
}

/* form general definition */
form.PressBrake_PressBrake {
	background-image: url(fd_pressbrake_pressbrake/formBG.jpg);
	background-color: #000;
	color: #FADB6F;
	font-size: 1.2em;
	font-family: Futura, "Trebuchet MS", Helvetica, sans-serif;
	width: 80%;
	margin-top: 0;
	margin-right: 10%;
	margin-bottom: 0;
	margin-left: 10%;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 5px;
	padding-left: 0;
	border: medium solid #FFF;
	-webkit-border-top-left-radius: 25px;
	-webkit-border-top-right-radius: 25px;
	-webkit-border-bottom-left-radius: 25px;
	-webkit-border-bottom-right-radius: 25px;
	-moz-border-radius-topleft: 25px;
	-moz-border-radius-topright: 25px;
	-moz-border-radius-bottomleft: 25px;
	-moz-border-radius-bottomright: 25px;
	border-radius: 25px;
	background-attachment: fixed;
	background-repeat: repeat;
}
form.PressBrake_PressBrake ul.PressBrake_PressBrake {
  list-style-type:none;
  margin: 0;
  padding: 0;
}
form.PressBrake_PressBrake ul.formList {
	padding:0 0 0 0;
	margin:0 0 0 0;
  list-style-type:none;
}
form.PressBrake_PressBrake li.formItem {
	clear:both;
}
form.PressBrake_PressBrake fieldset.PressBrake_PressBrake {
	padding:5px 5px 5px 5px;
	border-width:0;
}

/* legend */
form.PressBrake_PressBrake legend.groupHeader {
	padding:3px 3px 3px 137px;
	color:#fff;
	text-transform:uppercase;
	font-size:1em;
	white-space:nowrap;
}

/* labels */
form.PressBrake_PressBrake label.groupHeader {
	color:#fff;
	text-transform:uppercase;
	font-size:11pt;
	text-align:left;
	display:block;
	float:left;
	position:relative;
	margin-top:4px;
	margin-bottom:-8px;
	margin-left:137px;
}
form.PressBrake_PressBrake label.sublabel {
	text-align:right;
	width:325px;
	float:left;
	display:block;
	margin-right:25px;
	padding-top:2px;
	padding-right:5px;
}
form.PressBrake_PressBrake label.secondSublabel {
	width:auto;
}
form.PressBrake_PressBrake label.sublabelPlaceholder {
}
form.PressBrake_PressBrake span.requiredIndicator {
	color:#FFFF33;
}
form.PressBrake_PressBrake span.fieldsetDescription {
	color: #FFFF33;
	font-size: 1em;
	font-family: Georgia, Times New Roman, Times, serif;
	text-align: left;
	display: block;
	margin-right: 100px;
}

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

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

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

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

/* button form elements */
form.PressBrake_PressBrake span.buttonFieldGroup {
	text-align:center;
	display:block;
	float:none;
	padding-top:15px;
}
form.PressBrake_PressBrake input.formButton {
		-moz-box-shadow: 0px 0px 0px 2px #9fb4f2;
	-webkit-box-shadow: 0px 0px 0px 2px #9fb4f2;
	box-shadow: 0px 0px 0px 2px #9fb4f2;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #7892c2), color-stop(1, #476e9e));
	background: -moz-linear-gradient(top, #7892c2 5%, #476e9e 100%);
	background: -webkit-linear-gradient(top, #7892c2 5%, #476e9e 100%);
	background: -o-linear-gradient(top, #7892c2 5%, #476e9e 100%);
	background: -ms-linear-gradient(top, #7892c2 5%, #476e9e 100%);
	background: linear-gradient(to bottom, #7892c2 5%, #476e9e 100%);
 filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#7892c2', endColorstr='#476e9e', GradientType=0);
	background-color: #7892c2;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	border: 2px solid #4e6096;
	display: inline-block;
	cursor: pointer;
	color: #ffffff;
	font-family: Arial;
	font-size: 90%;
	text-decoration: none;
	text-shadow: 0px 1px 0px #283966;
	padding-top: 4px;
	padding-right: 25px;
	padding-bottom: 4px;
	padding-left: 25px;
	margin-left: 15px;
	margin-top: 5px;
	margin-bottom: 5px;
}}
form.PressBrake_PressBrake input.formButton:hover {
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #476e9e), color-stop(1, #7892c2));
	background: -moz-linear-gradient(top, #476e9e 5%, #7892c2 100%);
	background: -webkit-linear-gradient(top, #476e9e 5%, #7892c2 100%);
	background: -o-linear-gradient(top, #476e9e 5%, #7892c2 100%);
	background: -ms-linear-gradient(top, #476e9e 5%, #7892c2 100%);
	background: linear-gradient(to bottom, #476e9e 5%, #7892c2 100%);
 filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#476e9e', endColorstr='#7892c2', GradientType=0);
	background-color: #476e9e;
}
}

/* text form elements */
form.PressBrake_PressBrake input.formTextfield_XSmall {
	background-color:#f5f5f5;
	color:#000;
	padding:8px 8px 8px 8px;
	font-size:1em;
	font-family:Georgia, Times New Roman, Times, serif;
	width:22px;
	margin:0;
	border-width:0;
	margin-left:2px;
}
form.PressBrake_PressBrake input.formTextfield_Small {
	background-color:#f5f5f5;
	color:#000;
	padding:8px 8px 8px 8px;
	font-size:1em;
	font-family:Georgia, Times New Roman, Times, serif;
	width:66px;
	margin:0;
	border-width:0;
	margin-left:2px;
}
form.PressBrake_PressBrake input.formTextfield_Medium {
	background-color:#f5f5f5;
	color:#000;
	padding:8px 8px 8px 8px;
	font-size:1em;
	font-family:Georgia, Times New Roman, Times, serif;
	width:100px;
	margin:0;
	border-width:0;
	margin-left:2px;
}
form.PressBrake_PressBrake input.formTextfield_Large {
	background-color:#f5f5f5;
	color:#000;
	padding:8px 8px 8px 8px;
	font-size:1em;
	font-family:Georgia, Times New Roman, Times, serif;
	width:200px;
	margin:0;
	border-width:0;
	margin-left:2px;
}
form.PressBrake_PressBrake input.formTextfield_XLarge {
	background-color:#f5f5f5;
	color:#000;
	padding:8px 8px 8px 8px;
	font-size:1em;
	font-family:Georgia, Times New Roman, Times, serif;
	width:382px;
	margin:0;
	border-width:0;
	margin-left:2px;
}

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

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

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

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

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


/* textarea form elements */
form.PressBrake_PressBrake textarea.formTextarea_Small {
	background-color:#f5f5f5;
	color:#000;
	padding:8px 8px 8px 8px;
	width:212px;
	height:100px;
	white-space:pre;
	overflow:auto;
	margin:0;
	border-width:0;
	margin-left:2px;
}
form.PressBrake_PressBrake textarea.formTextarea_Medium {
	background-color:#f5f5f5;
	color:#000;
	padding:8px 8px 8px 8px;
	width:212px;
	height:150px;
	white-space:pre;
	overflow:auto;
	margin:0;
	border-width:0;
	margin-left:2px;
}
form.PressBrake_PressBrake textarea.formTextarea_Large {
	background-color:#f5f5f5;
	color:#000;
	padding:8px 8px 8px 8px;
	width:592px;
	height:190px;
	white-space:pre;
	overflow:auto;
	margin:0;
	border-width:0;
	margin-top:0;
	margin-left:0;
}
form.PressBrake_PressBrake .textareaValidState textarea, form.PressBrake_PressBrake textarea.textareaValidState {
	background-color:#B8F5B1;
}

form.PressBrake_PressBrake textarea.textareaRequiredState, form.PressBrake_PressBrake .textareaRequiredState textarea, 
form.PressBrake_PressBrake textarea.textareaMinCharsState, form.PressBrake_PressBrake .textareaMinCharsState textarea, 
form.PressBrake_PressBrake textarea.textareaMaxCharsState, form.PressBrake_PressBrake .textareaMaxCharsState textarea {
	background-color:#b5b5b5;
	color:#fff;
}

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

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

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


/* select form elements */
form.PressBrake_PressBrake select.formMenufield_XSmall {
	color:#000;
	padding:0 0 0 0;
	width:45px;
	margin:0;
	margin-left:2px;
}
form.PressBrake_PressBrake select.formMenufield_Small {
	color:#000;
	padding:0 0 0 0;
	width:70px;
	margin:0;
	margin-left:2px;
}
form.PressBrake_PressBrake select.formMenufield_Medium {
	color:#000;
	padding:0 0 0 0;
	width:122px;
	margin:0;
	margin-left:2px;
}
form.PressBrake_PressBrake select.formMenufield_Large {
	color:#000;
	padding:0 0 0 0;
	width:222px;
	margin:0;
	margin-left:2px;
}
form.PressBrake_PressBrake select.formMenufield_XLarge {
	color:#000;
	padding:0 0 0 0;
	width:602px;
	margin:0;
	margin-left:2px;
}

form.PressBrake_PressBrake select.formListfield_XSmall {
	color:#000;
	padding:0 0 0 0;
	width:45px;
	height:100px;
	margin:0;
	margin-left:2px;
}
form.PressBrake_PressBrake select.formListfield_Small {
	color:#000;
	padding:0 0 0 0;
	width:70px;
	height:100px;
	margin:0;
	margin-left:2px;
}
form.PressBrake_PressBrake select.formListfield_Medium {
	color:#000;
	padding:0 0 0 0;
	width:122px;
	height:100px;
	margin:0;
	margin-left:2px;
}
form.PressBrake_PressBrake select.formListfield_Large {
	color:#000;
	padding:0 0 0 0;
	width:222px;
	height:100px;
	margin:0;
	margin-left:2px;
}
form.PressBrake_PressBrake select.formListfield_XLarge {
	color:#000;
	padding:0 0 0 0;
	width:602px;
	height:150px;
	margin:0;
	margin-left:2px;
}
form.PressBrake_PressBrake .selectValidState select, form.PressBrake_PressBrake select.selectValidState {
	background-color: #B8F5B1;
}

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

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

/* radio button form elements */
form.PressBrake_PressBrake input.formRadioField_Standard {
	background-color:#fff;
	color:#000;
	padding:2px 2px 2px 2px;
	margin-top:4px;
	margin-left:2px;
	border-width:0;
}
form.PressBrake_PressBrake .radioValidState input, form.PressBrake_PressBrake input.radioValidState {
	background-color:#f5f5f5;
	color:#000;
}
form.PressBrake_PressBrake input.radioRequiredState, form.PressBrake_PressBrake .radioRequiredState input,
form.PressBrake_PressBrake input.radioInvalidState, form.PressBrake_PressBrake .radioInvalidState input {
	background-color:#b5b5b5;
	color:#fff;
}
form.PressBrake_PressBrake .radioFocusState input, form.PressBrake_PressBrake input.radioFocusState {
	background-color:#fff;
	color:#000;
}

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


/* checkbox form elements */
form.PressBrake_PressBrake input.SameAsCheck {
	background-color:#fff;
	color:#000;
	padding:2px 2px 2px 2px;
	margin-top:4px;
	margin-left:2px;
	border-width:0;
}
form.PressBrake_PressBrake input.formCheckboxField_Standard {
	background-color:#fff;
	color:#000;
	padding:2px 2px 2px 2px;
	margin-top:4px;
	margin-left:2px;
	border-width:0;
}
form.PressBrake_PressBrake .checkboxValidState input, form.PressBrake_PressBrake input.checkboxValidState {
	background-color:#f5f5f5;
	color:#000;
}
form.PressBrake_PressBrake input.checkboxRequiredState, form.PressBrake_PressBrake .checkboxRequiredState input,
form.PressBrake_PressBrake input.checkboxMinSelectionsState, form.PressBrake_PressBrake .checkboxMinSelectionsState input,
form.PressBrake_PressBrake input.checkboxMaxSelectionsState, form.PressBrake_PressBrake .checkboxMaxSelectionsState input {
	display:block;
	background-color:#b5b5b5;
	color:#fff;
}
form.PressBrake_PressBrake .checkboxFocusState input, form.PressBrake_PressBrake input.checkboxFocusState {
	background-color:#fff;
	color:#000;
}

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

/* confirm and password states (same as text) */
form.PressBrake_PressBrake input.formPasswordfield_XSmall {
	background-color:#f5f5f5;
	color:#000;
	padding:8px 8px 8px 8px;
	font-size:1em;
	font-family:Georgia, Times New Roman, Times, serif;
	width:22px;
	margin:0;
	border-width:0;
	margin-left:2px;
}
form.PressBrake_PressBrake input.formPasswordfield_Small {
	background-color:#f5f5f5;
	color:#000;
	padding:8px 8px 8px 8px;
	font-size:1em;
	font-family:Georgia, Times New Roman, Times, serif;
	width:66px;
	margin:0;
	border-width:0;
	margin-left:2px;
}
form.PressBrake_PressBrake input.formPasswordfield_Medium {
	background-color:#f5f5f5;
	color:#000;
	padding:8px 8px 8px 8px;
	font-size:1em;
	font-family:Georgia, Times New Roman, Times, serif;
	width:100px;
	margin:0;
	border-width:0;
	margin-left:2px;
}
form.PressBrake_PressBrake input.formPasswordfield_Large {
	background-color:#f5f5f5;
	color:#000;
	padding:8px 8px 8px 8px;
	font-size:1em;
	font-family:Georgia, Times New Roman, Times, serif;
	width:200px;
	margin:0;
	border-width:0;
	margin-left:2px;
}
form.PressBrake_PressBrake input.formPasswordfield_XLarge {
	background-color:#f5f5f5;
	color:#000;
	padding:8px 8px 8px 8px;
	font-size:1em;
	font-family:Georgia, Times New Roman, Times, serif;
	width:500px;
	margin:0;
	border-width:0;
	margin-left:2px;
}

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

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

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

form.PressBrake_PressBrake input.passwordRequiredState, form.PressBrake_PressBrake .passwordRequiredState input, 
form.PressBrake_PressBrake input.passwordInvalidStrengthState, form.PressBrake_PressBrake .passwordInvalidStrengthState input, 
form.PressBrake_PressBrake input.passwordMinCharsState, form.PressBrake_PressBrake .passwordMinCharsState input, 
form.PressBrake_PressBrake input.passwordCustomState, form.PressBrake_PressBrake .passwordCustomState input, 
form.PressBrake_PressBrake input.passwordMaxCharsState, form.PressBrake_PressBrake .passwordMaxCharsState input {
	background-color:#b5b5b5;
	color:#fff;
}

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

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