.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;
	background-color: #FFF;
}
.cssheadercell {
	display:table-cell;
	background-color: #eee;
}

/* this is where the colspan tricks works. */
.span { width:100%; }

.csssubtitle {
	text-align: center;
	padding: 10px;
	line-height: 1.3em;
	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 */
.date {
	width: 15%;
	border: 1px solid #ccc;
	padding: 5px;
	line-height: 1.3em;
	font-family: Verdana, Helvetica, Arial, sans-serif;
}
.location {
	width: 35%;
	border: 1px solid #ccc;
	padding: 5px;
	line-height: 1.3em;
	font-family: Verdana, Helvetica, Arial, sans-serif;
}
.time {
	width: 10%;
	border: 1px solid #ccc;
	padding: 5px;
	line-height: 1.3em;
	font-family: Verdana, Helvetica, Arial, sans-serif;
}
.topics {
	width: 40%;
	border: 1px solid #ccc;
	padding: 5px;
	line-height: 1.3em;
	font-family: Verdana, Helvetica, Arial, sans-serif;
}
.registrationlink {
	border: 1px solid #ccc;
	padding: 5px;
	line-height: 1.3em;
	font-family: Verdana, Helvetica, Arial, sans-serif;
}
