/* CSS Document */

table
{
	display: table;
	border: 0;
	border-collapse: collapse;
	font-size: 12px;
	font-weight: bold;
	width: auto;
}

colgroup
{
	display: table-column-group;
}

col
{
	display: table-column;
}

col#text
{
	padding-left: 10px;
	width: 125px;
}

col#formFields
{
	width: auto;
}

/* td:first-child tags are a hack for
	Firefox Bug #915 -- see submitNames.css
	for more details -- NOTE: in IE colgroups
	and cols take precedence over the following
	hack */
table td:first-child
{
	padding-left: 10px;
	width: 125px;
}

/* Second Column */
table td:first-child+td
{
	width: auto;
}

tr
{
	display: table-row;
}

td
{
	display: table-cell;
}

td.noPad
{
	padding-top: 0;
	padding-bottom: 0;
}

/* OVERWRITE the main stylesheet's (style.css) "form input" tag */
form input
{
	display: inline;
	margin-bottom: 0;
}


