﻿@charset "UTF-8";
/**
 * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
 *
 * (en) Variation of screen layout (basemod.css) - layout example "dynamic layout switchting"
 * (de) Variation des Screenlayouts (basemod.css) - Beispiellayout "dynamic layout switchting"
 *
 * @copyright       Copyright 2006-2010, Alexander Hass
 * @license         http://www.yaml-fuer-drupal.de/en/terms-of-use
 * @link            http://www.yaml-for-drupal.com
 * @package         yaml-for-drupal
 * @version         6.x-3.2.1.13
 * @lastmodified    2010-05-14
 */

@media screen, projection
{

 /**
  * @section generic classes for layout switching | Generische Klassen zur Layoutumschaltung
  * @see     http://www.yaml.de/en/documentation/practice/basic-variations.html
  *
  * .hidecol1 -> 2-column-layout (using #col2 and #col3)
  * .hidecol2 -> 2-column-layout (using #col1 and #col3)
  * .hideboth -> single-column-layout (using #col3)
  */

  .hideboth #col3 { margin-left: 0; margin-right: 0; }
  .hideboth #col3_content{ padding-left: 10px; padding-right: 10px; }

  .hidecol1 #col3 { margin-left: 0; margin-right: 25%; }
  .hidecol1 #col3_content{ padding-left: 10px; }

  .hidecol2 #col3 { margin-left: 25%; margin-right: 0; }
  .hidecol2 #col3_content{ padding-right: 10px; }

  .hideboth #col1, .hideboth #col2, .hidecol1 #col1, .hidecol2 #col2 { display:none; }
}
