/* CSS Document */

/*
This is a proprietary expression only for Internet Explorer, as it doesn't support max-width or min-width. 
This expression breaks validation and therefore has been separated from styles.css.

NOTE: The specified width's below cannot match up exactly (like 740? "740px") or else it will cause an infinite loop that freezes IE.
*/
#container, #footer {
	width: expression(document.body.clientWidth < 742? "739px" : document.body.clientWidth > 1003? "1000px" : "auto");
}
