/* Forms (or at least tables that looks like an input form) */


table.inputform {
  font-size: x-small;
	margin:0;
	padding:0;
	margin-left:10px;
	border: 1px solid #28574E;
}

/* Form Heading Bar Title */
/* Usually a few cells merged together */
table.inputform th.title {
	text-align:center;
  margin: 0;
  background: #28574E;  /* dark green */
  color: #FEFFF1; 
  font-size: medium;
  font-weight: bold;
  text-transform: uppercase	
}

/* Form Footer Bar where Action Buttons are */
/* Usually a few cells merged together */
table.inputform th.actions {
	text-align:center;
}

/* Field Headings */
table.inputform th {
	text-align:left;
	font-weight:bold;
	background: #D4DDDC;  /* lighter green */
}
/* Where input fields are */
table.inputform td {
	background-color: #EAEAEA;
}


