@CHARSET "UTF-8";
.pseudoTable {
	display: table;
}
.pseudoTableHeader {
	display: table-header-group;
} /* Will be displayed at the top */
.pseudoTableFooter {
	display: table-footer-group;
} /* Will be displayed at the bottom of the pseudo-table */
.pseudoTableRow {
	display: table-row-group;
} /* Will be displayed in the middle */
.pseudoTableCell {
	display: table-cell;
}