/* SAMPLE FORM STYLES FOR SIMPLE PHP CONTACT FORM */
/* Modify to suit your own needs */

#warn_box{
/* This is the DIV which prints errors at the top of the page during validation */
	border: 1px solid gray;
	background-color: #CCCCCC;
	padding: 5px;
	color:#FF0000;
	font: Trebuchet MS;
	font-size: small;
	font-style:oblique;
}

#warn_box ul{
/* This is the UL list of error messages in the 'warn_box' DIV  */
	list-style-type: square;
}

#cont_form_wrapper{
/* This is the div that wraps the form itself. No styles here, but I list it anyway */
}

#contact_form{
/* This is the table which holds the form */
	border: 0;
	border-collapse: collapse;
	width: 600;
}

#contact_form td{
/* These are the cells in the form table */
	padding: 3px;
	vertical-align: top;
}

.warn_msg{
/* These are the table cells which print the individual messages during validation */
	
	padding: 3px;
	color:#FF0000;
	font: Trebuchet MS;
	font-size: small;
	font-style:oblique;
}

.form_label{
/* These are the labels for each form element */
	width: 200px;
	font: Trebuchet MS;
	text-align: right;
}

.form_text{
/* These are the 'text' input types in the form */
	width: 200px;
}

.form_txt_area{
/* This is the textarea used in the form */
	width: 200px;
}