@charset "UTF-8";
/**
 * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
 *
 * (en) Variation of screen layout (basemod.css) for layout example "3col_2-1-3"
 * (de) Variation des Screenlayouts (basemod.css) f�r Layoutbeispiel "3col_2-1-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                       |
   * |-------------------------------|
   * | #col2   | #col1     | #col3   |
   * | 25%     | 50%       | 25%     |
   * |-------------------------------|
   * | #footer                       |
   * |-------------------------------|
   */

  #main { width: 100%; float:left; }

  /* #col1 becomes the middle column | #col1 wird zur mittleren Spalte */
  #col1 { width: 50%; float:left; margin-left: 25%; }
  #col1_content { padding-left: 10px; padding-right: 10px }
  
  #col1a { width: 75%; float:left; margin-left: 25%; }
  #col1a_content { padding-left: 10px; padding-right: 10px }

  /* #col2 becomes the left column | #col2 wird zur linken Spalte */
  #col2 { width: 25%; float:left;  margin-left: -75%;}
  #col2_content { padding-left: 20px; padding-right: 10px }  
  
  #col2a { width: 25%; float:left;  margin-left: -100%;}
  #col2a_content { padding-left: 20px; padding-right: 10px }

  /* #col3 becomes the right column | #col3 wird zur rechten Spalte */
  #col3 {  float:right; width: 25%; margin-left: -5px; margin-right: 0%; }
  #col3_content { padding-left: 10px; padding-right: 20px }
}


