/* An attempt to emulate Mozilla's default styles 
   for hidden and block elements. Some notes here:
   http://dionidium.com/2004/09/default-styles */

/* This document is free for any use. */

/* Block elements in html.css. This list includes */
/* non-standard and deprecated elements.          */
html, body, div, map, dt, isindex, p, multicol, 
dl, dd, ul, menu, dir, ol, blockquote, address, 
center, listing, plaintext, xmp, pre, hr, marquee,
h1, h2, h3, h4, h5 {
   display: block;
}

/* Hidden elements. This comes directly from html.css. */
area, base, basefont, head, meta, script, style, title,
noembed, noscript, param {
   display: none;
}

/* Table elements. */
table {display: table;}
caption {display: table-caption;}
tr {display: table-row;}
col {display: table-column;}
colgroup {display: table-column-group;}
tbody {display: table-row-group;}
thead {display: table-header-group;}
tfoot {display: table-footer-group;}
td {display: table-cell;}
th {display: table-cell;}

li { display: list-item; }
