 /* screen.css for onscreen display of pages */

 /* define div that holds everything within the body */
#container
{
min-width: 25em;
max-width: 50em;
 /* workaround for IE not supporting max min widths */
width:expression(document.body.clientWidth <400? "400px" : document.body.clientWidth > 800? "800px" : "auto");
} 
