 /**
  * min-width/max-width workaround for IE
  *
  * @workaround
  * @affected   IE 5.x/Win, IE6
  * @css-for    IE 5.x/Win, IE6
  * @valid      no
  */

  * html .page_margins {
    /* Fallback if JavaScript is disabled */
    width: auto;

    /* JS-Expression for min-/max-width simulation */
    width: expression((document.documentElement && document.documentElement.clientHeight) ? ((document.documentElement.clientWidth < 1024) ? "1024px" : ((document.documentElement.clientWidth > 1024) ? "1024px" : "auto" )) : ((document.body.clientWidth < 1024) ? "1024px" : ((document.body.clientWidth > 1024) ? "1024px" : "auto" )));
  }

