/*  this are the form display classes */

input, textarea {
}
#postData{margin-left:-10px;}
.form_input input{
	background: transparent url(../images/transparent.gif) no-repeat;
	border:0px;
	padding:2px 2px 0px 3px;
	color:#B1B0B0;
	clear:left;
}
textarea {
	background-image:url(../images/textarea.gif);
	border:none;
	color:#B1B0B0;
	display:block;
	height:179px;
	padding:3px;
	width:264px;
	overflow:hidden;
}
/* main title of the form */
.form_title {
	font : bold 12px Tahoma;
	color: #5F5F5F;
	padding: 25px 0px 10px 0px;
}

/* main text of the form */
.form_text {
	color: #5F5F5F;
	font-size: 11px;
	margin-top: 10px; 
	margin-left: 10px; 
}

/* row definition */
.form_row {
	margin-left: 10px;
	margin-top: 10px;
	line-height : 15px;
}

/* the label of the form */
.form_label {
	color: #5F5F5F;
	font-size: 12px;
	width: 170px;
	height: 42px;
	text-align: left;
	display:inline;
}

/* input field of the form */
.form_input {
	color: #5F5F5F;
	display:inline;
	/*margin-top: -45px;
	margin-left: 180px;*/
}

/* submit button position */
.form_submit {
	margin-left: 180px;
}

/* checkbox style */
.form_checkbox {
}

/* radio button style */
.form_radio {
}

/* drop down style */
.form_dropdown {
}

/* form validation*/

.form_optional_field
{
	border:0px;
}

.form_required_field
{
	border:0px;
}

input.form_failed_field
{
    border: 1px solid #FF0000;
} 