form {
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
/*  ----------------------------------------------------------------------------------
 *  Fieldset 
 *  ----------------------------------------------------------------------------------  
 */
fieldset {
	padding: 15px 10px;
	margin: 20px 0;
	overflow: auto;
	border: 1px solid #FFEC9D;
}
legend {
	color: #1C1C1C;
	padding-top: 2px;
	padding-right: 5px;
	padding-bottom: 2px;
	padding-left: 5px;
	font-weight: bold;
	background-color: #FFFFFF;
	border: 1px dotted #999999;
}
/*  ----------------------------------------------------------------------------------
 *  Labels
 *  ----------------------------------------------------------------------------------  
 */
form .inlineLabel {
	display: block !important;
	font-weight: bold;
	padding-top: 0;
	padding-bottom: 0;
	padding-left: 3px;
	text-align: left;
}
/*  ----------------------------------------------------------------------------------
 *  Basic field+label wrappers 
 *  ----------------------------------------------------------------------------------  
 */
.artistField {
	text-align: left;
	float: left;
	padding-right: 20px;
}
.programField {
	text-align: left;
	float: left;
}
/*  ----------------------------------------------------------------------------------
 *  Misc. wForms/Form Builder Related Rules
 *  ----------------------------------------------------------------------------------  
 */
/* Form or Fieldset instruction paragraph. */
form .instructions {
	font-size: small;
	margin-top: .5em;
	margin-right: 0;
	margin-bottom: .5em;
	margin-left: 0;
}
/* Asterisk on required fields */
form .reqMark {
	color: #F00;
	font-size: xx-small;
	vertical-align: middle;
}
/* Field w/ a validation error */
form .errFld {
	padding: 1px;
	border: 1px solid #F00;
}
/* Styling for message associated with a validation error. */
form .errMsg {
	color: #CC3333 !important;
	display: block;
	font-size: 10px;
}
/* Switch Behavior Classes */
.onstate-a,  .onstate-b,  .onstate-c,  .onstate-d,
.onstate-e,  .onstate-f,  .onstate-g,  .onstate-h, 
.onstate-i,  .onstate-j,  .onstate-k,  .onstate-l, 
.onstate-m,  .onstate-n,  .onstate-o,  .onstate-p, 
.onstate-q,  .onstate-r,  .onstate-s,  .onstate-t,
.onstate-u,  .onstate-v,  .onstate-w,  .onstate-x,  
.onstate-y,  .onstate-z,  .onstate-aa, .onstate-ab,
.onstate-ac, .onstate-ad, .onstate-ae, .onstate-af,
.onstate-ag, .onstate-ah, .onstate-ai, .onstate-aj,
.onstate-ak, .onstate-al, .onstate-am, .onstate-an {
	display: block;
}
/* offstate classes for the Switch Behavior are in wforms-jsonly.css */

/* Buttons */
form .actions {
	text-align: center;
}
form .primaryAction {
}
form .secondaryAction {
	color: grey;
}
form .secondaryAction:hover {
	color: black;
}
/*  ----------------------------------------------------------------------------------
 *  Internet Explorer Bug Fixes
 *  ----------------------------------------------------------------------------------  
 */
/* IE Pick-a-boo bug fix */ 
/*form {
	height: expression('1%'); 
}
/* Fixes IE problem with fieldset+legend boundaries */
/*form fieldset {
	position: expression('relative'); 
	margin-top: expression('1.5em');
	padding-top: expression('1.75em');
}
form legend {
	position: expression('absolute'); 
	top: expression('-.5em');
	left: expression('.5em');
}
