/* HACKS FOR FORMS.CSS (DON'T TOUCH) 
---------------------------------------------------------------------------*/

.f1 {
	float: none !important;
}

/* makes sure submit block displays within the f1 */
.f1 .f-block {
	float: none !important;
}

/* removes massive margin above submit block in FF */
.f1 .f-submit-unit {
	clear: none !important;
}
















/* MISC ESSENTIALS */

.e-panel-b .f1 {

}


.f-block {
	width: 100%;
}

.e-panel-a .f1, .e-panel-c .f1 {
	width: 80%;
	background: #fff url(/r/i/bg/grey_fade_body_bg.jpg);
	border: 1px solid #ccc;
	padding: 0 20px 20px 20px;
}

.e-panel-b .f1 {
	width: 80%;
	background: #fff url(/images/form_bg.jpg) repeat-y;
	border: 1px solid #ccc;
	padding: 0 20px 20px 20px;
	margin-top: 20px;
}


div.f-area label {
	display: none !important;
}

.f-spacer {
	display: none;
}



/* FIELDSET */

fieldset {
	padding: 1em 0 0 0;
	color: #333;
	border: none;
	width: 100%;
}


fieldset legend {
	color: #333;
	font-weight: bold;
	/*margin-left: -10px;*/
	margin-bottom: 5px;
	padding: 0;
	display: block;
	width: auto;
	position: relative;
	left: 0px;

}

/* LABELS & INPUTS */

/* sets up padding and margins so that asterisk background displays to the left of all required fields */

label {
	padding-left: 10px;
	margin-left: -10px;
}	

/* sets asterisk star over required fields */
.f-required label {
	background: transparent url(/r/i/f/f-required.gif) no-repeat scroll -5px 0;
}

.e-panel-b .f1 .f-txs label, 
.e-panel-b .f-txs input, 
.e-panel-b select 
{
	margin-bottom: 1.6em;
}


input, textarea {
	border: 1px solid #ccc;
	padding: 2px;
}



/* changes color on focus */
input:focus, textarea:focus {
	border: 1px solid red;

}

textarea {
	clear: both;
	width: 95%;
	height: 100px;
}

/* BUTTONS */

button {
	width: 50%;
	margin-top: 0.5em;
	background: url(/images/button-grad.gif) repeat-x top left;
	color: #fff;
	font-weight: bold;
	border: 1px solid #6D6D6F;
	padding: 5px 0;
}

/* CHECKBOXES */

/* forces FF to display checkbox text so it's veritcally align with the box + changes the cursor to a hand on mouseover the text */
.f-bln-label-txt {
	cursor: pointer;
	position: relative;
	top: -5px;
	left: 0;
}

.f-bln {
	}


