/*=========================================================================================================
//---------------------------------------------------------------------------------------------------------
//	FORM STYLES
//---------------------------------------------------------------------------------------------------------
//=======================================================================================================*/
/*---------------------------------------------------------------------------------------------------------
//	General
//-------------------------------------------------------------------------------------------------------*/
form
{
	margin:				0em;
}

/*	status messages	*/
.statusmsg
{
	font-weight:		bold;
	color:				red;
}

/*---------------------------------------------------------------------------------------------------------
//	Labels
//-------------------------------------------------------------------------------------------------------*/
/*	all labels	*/
label,
label.cb,
label.checkbox,
label.radio
{
	display:			block;
}

/*	labels for checkboxes/radio	*/
label.cbeckbox,
label.cb,
label.radio
{
	display:			inline !important;
	font-weight:		normal;
}

.customforms label{
	display:			none;
}

/*---------------------------------------------------------------------------------------------------------
//	Fields
//-------------------------------------------------------------------------------------------------------*/
/*	text boxes, select boxes, textareas	*/
input.textfield,
select.textfield,
textarea.textfield
{
	width:				428px;
	background-color:	white;
	border:				1px solid #e0ded1;
	font-size:			11px;
	color:				black;
	font-family: 		Helvetica, Arial, sans-serif;
	padding:			5px;
	margin-bottom:		15px;	
}

textarea.textfield
{	
	height:				168px;
	margin-bottom:		10px;
}

/*---------------------------------------------------------------------------------------------------------
//	Validation errors
//-------------------------------------------------------------------------------------------------------*/
.fielderror,
.formerrors
{
	display: 			none;
}

.fieldblock input.textfield,
.fieldblock select.textfield,
.fieldblock textarea.textfield
{
	border:				1px solid #e0ded1;
}

.fieldblock-error input.textfield,
.fieldblock-error select.textfield,
.fieldblock-error textarea.textfield
{
	border:				1px solid red;
}