/*	-------------------------------------------------------------
	FORMS
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	*/
	
#content .contentForm h5 {
	font-weight: bold;
	font-size: 1.3em;
	margin: 10px 0 4px 0;
}
	
/*	Form Div
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	*/
	
#content .contentForm {
	width: 400px;
	margin: 0 auto;
	text-align: center;
}

/*	Form Table
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	*/
	
#content .contentForm table {
	border-collapse: collapse;
}

#content .contentForm table tr td {
	display: table-cell;
	border-bottom: 1px solid #2c2c2c;
	padding: 6px 5px;
	vertical-align: top;
}

#content .contentForm table tr td.require label {
	background: url(../../../images/icons/require.gif) top right no-repeat;
	padding-right: 10px;
}

/*	Form Labels
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	*/
	
#content .contentForm label small {
	font-size: 0.8em;
}

/*	Form Inputs
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	*/

#content .contentForm .textbox,
#content .contentForm .textarea,
#content .contentForm .selectbox,
#content .contentForm .textboxSmall {
	width: 250px;
	border: 1px solid #6a6a6a;
	padding: 2px 2px;
	background: #4b4b4b;
	color: #eee;
}

#content .contentForm .textboxSmall {
	width: 50px;
}

#content .contentForm .textarea {
	height: 70px;
}

#content .contentForm .selectbox {
	width: auto;
	margin-bottom: 3px;
}

/*	Form Validate Errors
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	*/

#content .contentForm label.error {
	display: block;
	margin: 4px 0 0 0;
	padding: 3px 0 2px 20px;
	color: #f79445;
	background: url(../../../images/icons/msg_error.gif) no-repeat 0 6px;
}
}
	

/*	Form Messages (Error/Success))
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	*/
	
#content .contentForm .formError,
#content .contentForm .formSuccess {
	margin: 5px 0;
	padding: 4px 10px;
	font: 0.9em;
	text-align: left;
	border: 1px solid #aaa;
	border-left: none;
	border-right: none;
	color: #fff;
}

#content .contentForm .formError h6,
#content .contentForm .formSuccess h6 {
	font-weight: bold;
	color: #654215;
}
	
#content .contentForm .formError {
	background: #f6db5a;
	border-color: #e5ca47;
	color: #654215;
}

#content .contentForm .formSuccess {
	background: #6fb558;
	border-color: #5fa349;
	color: #fff;
}

#content .contentForm .formSuccess h6 {
	color: #fff;
}