/* CSS Document */

/* bug fix for IE5.x (win) that enables tables to inherit font sizes from surrounding content */
table {
 font-size: 1.0em;
}

/* clearing element for using floats to lay out divs */
/* insert clearing element within parent but after float to force parent to expand */
/* syntax is <div class="clear">&nbsp;</div> */
div.clear {
 clear: both;
 height: 0;
 margin: 0;
 line-height: 0;
 font-size: 1px;
}
/* end bug fixes */
