@charset "UTF-8";
/**
 * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
 *
 * (en) Variation of screen layout (basemod.css) for layout example "3col_1-2-3"
 * (de) Variation des Screenlayouts (basemod.css) f�r Layoutbeispiel "3col_1-2-3"
 *
 * @copyright       Copyright 2005-2009, 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.1
 * @revision        $Revision: 343 $
 * @lastmodified    $Date: 2009-01-19 23:41:32 +0100 (Mo, 19. Jan 2009) $
 */

@media screen, projection
{
  /**
   * (en) Repositioning content container
   * (de) Neupositionierung der Content Container
   *
   * |-------------------------------|
   * | #header                       |
   * |-------------------------------|
   * | #col1   | #col2     | #col3   |
   * | 25%     | 50%       | flexible|
   * |-------------------------------|
   * | #footer                       |
   * |-------------------------------|
   */

  /* #col1 becomes the left column | #co11 wird zur linken Spalte */
  #col1 { width: 250px; background:#f5f7f6; height:500px}
  #col1_content { padding:10px 15px }

  /* #col2 becomes the middle column | #col2 wird zur mittleren Spalte */
  #col2 { width: 375px; float:left; margin: 0 0 0 12px; background:#fff; height:500px}
  #col2_content { padding: 10px;  }
  #col2_content p { font-size:.9em }

  /* #col3 becomes the right column | #col3 wird zur rechten Spalte */

  #col3 { margin-left: 650px; margin-right: 0%; background:transparent; height:500px;}
  #col3_content { padding:0px }
  
  * html #col3 {height: 1%;}        /* Activate hack for 3-Pixel-Jog Bug | Hack für 3-Pixel-Jog Bug aktivieren */
  * html #col2 {margin-right: -3px;}
  * html #col3 { margin-left: 646px; }
  * html #col1_content { line-height:.9em}
}
