.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;
}
.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 */
.first {
	width: 150px;
	border: 1px solid #ccc;
	padding: 5px;
	line-height: 1.3em;
	background-color: #FFF;
	font-family: Verdana, Helvetica, Arial, sans-serif;
	font-weight: bold;
}
.second {
	width: 100%;
	border: 1px solid #ccc;
	padding: 5px;
	line-height: 1.3em;
	background-color: #FFF;
	font-family: Verdana, Helvetica, Arial, sans-serif;
}
