
	

/* ===========================================================================
   CSS STYLES for forms presentation                                     FORMS
   =========================================================================== */
/*
       body {background-color: #C69A63; font-family: arial, "lucida console", sans-serif; }
       h1, h2 {text-align: center; background-color: #F79221; color: #000; border: 1px solid #777;  padding: 0.2em;  }

	#C69A63; // a soft brown background colour
	
	Forms are made up of a LABEL   an    INPUT class="textBox" etc     and a     SPAN class="FormErrMsg"
	LABEL is 140px wide and floats left.
	INPUT is 200px wide and floats left.
	SPAN should float right and have a left of (140+200 = 300px)
  */   
form	{
	margin: 0 auto;
	padding: 0.1em; 
	color: #000;
}

legend
{
	background: #fff; /* #ffc; */
	/* border: 1px dashed #781351; */
	padding: 2px 6px;
	color: #781351; /*#000; / * IE styles legends with blue text by default */
	font-size: larger;
	font-weight: bold;
}

fieldset p {clear: both;}	

label {
	clear: left;
	float: left;
	text-align: right;
	width: 190px;
	padding-top: 2px;
	padding-right: 20px;
	display: block;
	color: #000;
}
		
/* 	table, table tr td {background-color: #C69A63; padding: 0; margin: 0 auto;} */

	select	{ color:#000; background:#fff; }
	input, select{ margin-top: 0.3em; margin-right: 1em;} 
	textarea 	{width: 300px;}
	
.textBox, .textArea {
	display: block;
	width: 195px; /* 200px minus the 5 left-padding */
	float: left;
	margin-bottom: 10px;
	padding-left: 5px;
	border: 2px solid #565;
	background: #ffd; 
	color: #000;	
}
.textArea { width: 350px;}

input, select, textarea {
	-moz-border-radius:0.4em;
	-khtml-border-radius:0.4em;
	font:bold 0.95em arial, sans-serif;
}

input.button {
	margin-left: 210px;
	width: 200px;
}

.FrmErr {
	margin-left: 380px;
	padding-top: 5px;
	color: #f00;
	font:bold 0.95em arial, sans-serif;
}

.FormRow {
	clear: both;
	border: 0px solid #0f0;
}




.readonly{background-color: #eee; border: 0;}
.disabled{background-color: #eee; border: 0;}