﻿/* Copy and paste these css styles into your existing style sheet - or call this style sheet separately */

/* Styles to attribute to the text of your form */
.fieldtext {
	color: #333333;
	font-size: 14px;
	font-family: Verdana, Times New Roman;
}

/* 
Note:  If you need to have multiple colored texts, or different attributes within the same form,
just duplicate the above and call it "fieldtext2" or whatever.  Then you can apply that style to
additional text if you wish 
*/

/* This is the style for the main form fields */
.field1 {
	background: #EFEFEF;
	color: #666666;
	font-size: 14px;
	font-family: Verdana, Times New Roman;
	padding: 2px;
	width: 300px;
}

/* In case you have fields that need to be a different width, colors, etc ... you can change those here.*/
.field2 {
	background: #EFEFEF;
	color: #666666;
	font-size: 14px;
	font-family: Verdana, Times New Roman;
	padding: 2px;
	width: 150px;
}

/* If you want a border on the table that holds the form */
.formborder {
	border: 1px solid #CCCCCC;
}