/* FORM STYLES */
table.form 
{
	table-layout:fixed; /* force a solid grid */
	border-collapse:collapse;
	margin: 0;
	width:650px;
}
table.form th, table.form td {
	white-space:nowrap; /* don't want wrapping text */
	padding:2px 15px 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:190px;
	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 
{
	width:650px;
	margin: 15px 0 10px;
	padding:5px;
	/*background-color:#FAFAFA;*/
	border-left: 1px solid #bbb;
	border-right: 1px solid #bbb;
	border: 1px solid #ccc;	
}
legend {
	padding: 2px 5px;
	color: #696;
	background-color:#fff;
	font-weight: bold;
}


td.disabled input
{
	background-color:#ddd;
}
table.form td.field input {
	width:200px; /* but not for radios or checks */ 
}
/* FULLFORM STYLES */
table.fullForm 
{
	table-layout:fixed; /* force a solid grid */
	border-collapse:collapse;
	margin: 0;
	width: 100%;
}

table.fullForm th, table.fullForm td {
	white-space:nowrap; /* don't want wrapping text */
	padding:2px 15px 3px 5px; /* right padding for required field marker */
	font-weight:normal;
}

table.fullForm th, th.field{
	padding:2px 0 2px 5px;
	text-align:left;
	width:120px;
	font-weight:normal;
}

table.fullForm th.required
{
	font-weight:bold;
}	

table.fullForm input, td.fullForm input,td.fullForm select{
	width:100%; /* simply scale inputs to table cell size */
}

table.fullForm select 
{
	width:100%;
}

table.fullForm td.input-group input {
	width:auto; /* but not for radios or checks */ 
}

td.fullForm
{
	white-space:nowrap; /* don't want wrapping text */
	padding:2px 20px 3px 0px; /* right padding for required field marker */
	font-weight:normal;
}

table.fullForm td.field input {
	width:200px; /* but not for radios or checks */ 
}