.csstable { display:table; table-layout:fixed; width:700px; }
.cssrow {
	display:table-row;
	height:30px; 
}
.csstitlerow {
	display:table-row;
}
.csssubtitlerow { display:table-row; height:40px; }
.csscell { display:table-cell; }

/* this is where the colspan tricks works. */
.span { width:100%; }

.csstitle {
	color: #333;
	padding: 5px;
	font-size: 1.1em;
	float: none;
	border: 1px solid #CCCCCC;
	border-top: 3px solid #666;
	border-bottom: 1px solid #999;
	background-color: #e0e0b7;
	font-family: Verdana, Helvetica, Arial, sans-serif;
	font-weight: bold;
}
.cssright {
	float: right;
	padding: 5px;
}
.cssfullwidth {
	padding-top: 5px;
}
.cssfullwidthborder {
	padding-top: 5px;
	border: 1px solid #CCCCCC;
}
.cssfullwidthitalic {
	font-style: italic;
	padding-top: 5px;
}
.errorlist {
	font-style: italic;
	padding-top: 5px;
	font-weight: bold;
	font-color: #FF0000;
}
.csssubtitle {
	color: #000;
	border: 1px solid #ccc;
	padding: 5px;
	line-height: 1.3em;
	background-color: #eee;
	font-family: Verdana, Helvetica, Arial, sans-serif;
	font-weight: bold;
}

/* this is the benefit of using table display, it is able to set the width of it's child object to fill the rest of the parent width as in table */
.labelcell {
	width: 105px;
	border: 1px solid #ccc;
	padding: 5px;
	line-height: 1.3em;
	background-color: #eee;
	font-family: Verdana, Helvetica, Arial, sans-serif;
	font-weight: bold;
}
.mandatory {
	width: 5px;
	border: 1px solid #ccc;
	padding-right: 5px;
	line-height: 1.3em;
	background-color: #FFF;
	font-family: Verdana, Helvetica, Arial, sans-serif;
}
.datacell {
	width: 100%;
	border: 1px solid #ccc;
	padding: 5px;
	line-height: 1.3em;
	background-color: #FFF;
	font-family: Verdana, Helvetica, Arial, sans-serif;
}
.instruction {
	width: 140px;
	border: 1px solid #ccc;
	padding: 5px;
	line-height: 1.3em;
	font-size: 85%;
	background-color: #FFF;
	font-family: Verdana, Helvetica, Arial, sans-serif;
	font-style: italic;
}
.reglabelcell {
	background-color: #eee;
	font-weight: bold;
}
