/*******************************************************************************
 *                  "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
 * @copyright       Copyright 2005-2010, 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.3
 * @revision        $Revision: 466 $
 * 
 *                  "Framework Templates, YAML for TYPO3"
 * @copyright       Copyright 2010, Ralf-René Schröder ... image[FORMAT]
 * @license         CC-A 3.0 (http://creativecommons.org/licenses/by/3.0/),
 *                  if20-C (http://if-20.com/downloadbereich/lizenzmodell/)
 * @link            http://if-20.com
 * @packages        if_yaml ... if_ready2go
 * @version         1.5.0  
 * @thanks to       Dieter Bunkerd (Thailand)
 *                  no code from his basic work db_ttv is used here, 
 *                  but his idea inspired me for my own integration package
 *                   
 * @file                 
 */
 

@media screen, projection
{
  /**
   * (en) Repositioning content container
   * (de) Neupositionierung der Content Container
   *
   * |-------------------------------|
   * | #header                       |
   * |-------------------------------|
   * | #col2   | #col3     | #col1   |
   * | 25%     | flexible  | 25%     |
   * |-------------------------------|
   * | #footer                       |
   * |-------------------------------|
   */

  /* #col1 becomes the right column | #col1 wird zur rechten Spalte */
  #col1 { float:right; width: 25%; }
  #col1_content { padding-left: 10px; padding-right: 20px }

  /* #col2 becomes the left column | #col2 wird zur linken Spalte */
  #col2 { float:left; width: 25%; }
  #col1_content { padding-left: 20px; padding-right: 10px }

  /* #col3 becomes the middle column | #col3 wird zur mittleren Spalte */
  #col3 { margin-left: 25%; margin-right: 25%; }
}
