/* FORM STYLES */

table.form {
	table-layout:fixed; /* force a solid grid */
	border-collapse:collapse;
	margin: 0 0 0em;
	width:650px;
}
table.form th, table.form td {
	white-space:nowrap; /* don't want wrapping text */
	padding:2px 20px 3px 5px; /* right padding for required field marker */
	font-weight:normal;
}

table.form th, th.field{
	padding:2px 0 2px 5px;
	text-align:left;
	width:120px;
	font-weight:normal;
}
table.form th.required
{
	font-weight:bold;
}	
td.required, tr.required td {
	background:url("../req.gif") center right no-repeat;
}

table.form input, td.form input,td.form select{
	width:100%; /* simply scale inputs to table cell size */
}
table.form select 
{
	width:100%;
}
table.form td.input-group input {
	width:auto; /* but not for radios or checks */ 
}
td.form
{
	white-space:nowrap; /* don't want wrapping text */
	padding:2px 20px 3px 0px; /* right padding for required field marker */
	font-weight:normal;
}

fieldset {
	margin: 20px 0;
	background-color:#FAFAFA;
	border-left: 1px solid #bbb;
	border-right: 1px solid #bbb;
	border: 1px solid #ccc;	
}
legend {
	padding: 2px 5px;
	color: #696;
	font-weight: bold;
}
