/* css/byl_hack.css */
/* using Tantek hack, clearing the float is done via a BR in IE5.x, to avoid 
IE5.x bug. For other browsers the clear will be done via a DIV to avoid the 
extra line of height that a BR renders. */
br.clearIE5 { 
clear: both;       /* IE5.x will use this clear */
voice-family: "\"}\"";  /* hide "display:none" from IE5.x */
voice-family:inherit;
display: none; }      /* other browsers will not render the BR */
html>body br.clearIE5 { display: none; } /* allow Opera to recover and get correct value */
div.clear {
voice-family: "\"}\"";  /* hide "clear:both" from IE5.x */
voice-family:inherit;
clear: both; }        /* other browsers will use this DIV to clear floats */
html>body div.clear { clear: both; } /* allow Opera to recover and get correct value */
