@charset "UTF-8";
/**
* "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
*
* (en) IE-Patch stylesheet for "vertical_listnav" layout example
* (de) IE-Korrektur-Stylesheet für das "vertical_listnav" Beispiellayout
*
* @copyright       Copyright 2005-2007, Dirk Jesse
* @license         CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/),
*                  YAML-C (http://www.yaml.de/en/license/license-conditions.html)
* @link            http://www.yaml.de
* @package         yaml
* @version         3.0.1
* @revision        $Revision: 92 $
* @lastmodified    $Date: 2007-07-15 10:26:40 +0200 (So, 15 Jul 2007) $
*/

/* Layout-independent adjustments | Layout-unabhängige Anpassungen ----------------------------------- */
@import url(../../../../yaml/core/iehacks.css);

/* Box model adjustments for vlist navigation | Box-Modell-Anpassungen für vlist-Navigation */
@import url(../../../../yaml/patches/patch_nav_vlist.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: 24%; margin-right: 24%; }

  /*-----------------------------------------------------------------------------------------------------*/
  /**
  * (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: 85em;

  /* min-width & max-width width JS-Expressions */
  width: expression((document.documentElement && document.documentElement.clientHeight) ?
    (document.documentElement.clientWidth < 740) ? "740px" : (( document.documentElement.clientWidth > (85 * parseInt(document.documentElement.currentStyle.fontSize))) ? "85em" : "auto") :

    (document.body.clientWidth < 740) ? "740px" : (( document.body.clientWidth > (85 * parseInt(document.body.currentStyle.fontSize))) ? "85em" : "auto")
 );
  }
  /*-----------------------------------------------------------------------------------------------------*/
}
