@charset "utf-8";
/* CSS Document */

.required
{ /* Required field in forms should be default have a yellowis background */
	background: #FFFFCC;	
}

.formspecial { /* Makes textarea monospace to show output nicely */
	font-family: "Courier New", Courier, monospace;
	font-size: 12px;
}

.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;