/* Copyright 2009 Perette Barella.  All rights reserved. */
/* $Id: m4tablelayout.css,v 1.1 2009/07/21 14:59:44 perette Exp perette $ */

@media print, screen, projection, tv {

DIV.m4columns-2, DIV.m4columns-3, DIV.m4columns-4, DIV.m4columns-5, DIV.m4columns-6,
TABLE.m4columns-2, TABLE.m4columns-3, TABLE.m4columns-4, TABLE.m4columns-5, TABLE.m4columns-6 {
	display: table;
	table-layout: fixed;
}

DIV.m4layoutrow {
	display: table-row;
}

DIV.m4layoutcolumn {
	display: table-column;
}

DIV.m4layoutcell {
	display: table-cell;
	border: thin solid black;
	border-left: none;
	table-layout: auto;
}
DIV.m4layoutcell:first-child {
	border-left: thin solid black;
}
DIV.m4columns-2 DIV.m4layoutcell {
	width: 50%;
}
DIV.m4columns-3 DIV.m4layoutcell {
	width: 33%;
}
DIV.m4columns-4 DIV.m4layoutcell {
	width: 25%;
}
DIV.m4columns-5 DIV.m4layoutcell {
	width: 20%;
}
DIV.m4columns-6 DIV.m4layoutcell {
	width: 16%;
}

} /* End media */

