@charset "UTF-8";
/**
 * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
 * (en) Example of a patch stylesheet for the Internet Explorer
 * (de) Beispiel für ein Anpassungs-Stylesheet für den Internet Explorer
 *
 * @file            patch_layout_draft.css
 * @creator         YAML Builder v0.3 Preview
 * @link	        http://builder.yaml.de
 */


/* Layout independent adjustments | Layout-unabhängige Anpassungen  */
@import url(/yaml/core/iehacks.css);

/* Layout-dependent adjustments | Layout-abhängige Anpassungen */
@media screen
{
/**
  * Bugfix for IE 3-Pixel-Jog Bug
  *
  * @bugfix
  * @affected   IE 5.x/Win, IE6
  * @css-for    IE 5.x/Win, IE6
  * @valid      yes
  */

  * html #col3 {height: 1%}
  * html #col1 {margin-right: -3px}
  * html #col2 {margin-left: -3px}
  * html #col3 {margin-left: 210px; margin-right: 210px; }

  /**
   * (en) Simulate min-width / max-width for IE by using JS-Expressions
   * (de) Ãœber JS-Expressions kÃ¶nnen die Eigenschaften min-width / max-width im IE simuliert werden
   *
   * @workaround
   * @affected   IE 5.x/Win, IE6
   * @css-for    IE 5.x/Win, IE6
   * @valid      no
   */
   * html #page_margins {
  	
  	/* Fallback if no Javascript enabled */
  	width: 100%;

  	/* min-width & max-width width JS-Expressions */
  	width: expression((document.documentElement && document.documentElement.clientHeight) ?
  	  (document.documentElement.clientWidth < 1000) ? "1000px" : (( document.documentElement.clientWidth > (100 * parseInt(document.documentElement.currentStyle.fontSize))) ? "100%" : "auto") :
		(document.body.clientWidth < 1000) ? "1000px" : (( document.body.clientWidth > (100 * parseInt(document.body.currentStyle.fontSize))) ? "100%" : "auto"));
    }






}


