/* Form Titles */

	/* Form Title On : Title Of The Form When It's Compulsory Inc. An Asterix In The Background */
	.form_title_on {
		font-family: Verdana;
		font-size: 12px;
		font-weight: bold;
		color: #369;		
		height: 30px;
		background-position: 420px 11px;
		background-repeat: no-repeat;
		background-image: url('form_asterix.gif');	
	}
	
	/* Form Title Off : As above, but without the asterix obviously */
	.form_title_off {
		font-family: Verdana;
		font-size: 12px;
		font-weight: bold;
		color: #369;
		
		height: 30px;	
	}
	
	/* Form Title Error : This displays when a compulsory field is empty, or when there's a problem with the submitted data */
	.form_title_error {
		font-family: Verdana;
		font-size: 12px;
		font-weight: bold;
		color: #870000;		
		height: 30px;
		background-position: 436px 3px;
		background-repeat: no-repeat;
		background-image: url('form_exclamation.gif');	
	}
	
/* Form Text */

	/* Form Main Text : This controls the main text on the page, used for describing form fields etc */
	.form_maintext {
		font-family: Verdana;
		font-size: 11px;
		font-weight: normal;
		color: #000;
	}
	
/* Captcha : Various CSS Stuff To Do With The Captcha */

	/* Captcha Container Div */
	.form_captcha_div {
		padding: 12px;
	}

	/* Captcha TD1 */
	.form_captcha_td1 {
		background-color: #f0f0f0;
	}
	
	/* Captcha TD2 */
	.form_captcha_td2 {
		width: 145px;
		background-color: #C3620B;
		text-align: right;
	}
	
/* Actual Form Elements : Textarea ETC */

	/* The Send Button */
	.form_button {
		background-color: #C3620B;
		height: 30px;
		width: 145px;
		color: #fff;
		font-family: Verdana;
		font-size: 12px;
		border: 1px solid #000;
		font-weight: bold;
		cursor: pointer;
	}
	
	/* Textarea */
	.form_textarea {
		width: 90%;
		border: 1px solid #000;
		font-family: Arial;
		font-size: 12px;
		font-weight: normal;
		overflow: auto;
	}
	
	/* Textfield */
	.form_textfield {
		width: 90%;
		border: 1px solid #000;
		font-family: Arial;
		font-size: 12px;
		font-weight: normal;
		background-color: #fff;
		height: 20px;
	}
	
/* Misc */
	
	/* Form Error Message Outer*/
	.form_error_outer {
		background-color: #333;
		border-top: 1px solid #333;
		border-bottom: 1px solid #333;
		width: 90%;
	}
	
	/* Form Error Message Inner */
	.form_error_inner {
		margin-right: 1px;
		margin-left: 1px;
		width: 90%;
		background-color: #FFF;
		border:1px solid #333;
		text-align: center;
		font-family: Verdana;
		font-size: 12px;
		font-weight: bold;
		color: #369;
	}
