@charset "UTF-8";/** * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework * * (en) central stylesheet - layout example "3col_standard" * (de) Zentrales Stylesheet - Beispiellayout "3col_standard" * * @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.4 * @revision        $Revision: 130 $ * @lastmodified    $Date: 2007-10-05 19:05:21 +0200 (Fr, 05 Okt 2007) $ *//* import core styles | Basis-Stylesheets einbinden */@import url(../yaml/core/base.css);/* import screen layout | Screen-Layout einbinden */@import url(../yaml/navigation/nav_shinybuttons.css);/* import screen layout | Screen-Layout einbinden */@import url(screen/nav_sub.css);@import url(screen/basemod.css);@import url(screen/content.css);@import url(screen/content_ms.css);/* import print layout | Druck-Layout einbinden */@import url(../yaml/print/print_023_draft.css);/** * Layoutvariante: 2 Spalten */@media all{   /*------------------------------------------------------------------------------------------------------*/  /**   * (en) Formatting content container   * (de) Anordnung der Spalten-Container   *   * |-------------------------------|   * | #col2   | #col3     | #col1   |   * | 60%     | flexible  | 0%    |   * |-------------------------------|   */   #col1, #col1_content  {display:none }  #col2 { width: 60% ;background: #95c6fe}  #col3 { margin-left:60%; margin-right:0;background:#c1dcfe;}   /**   *Hintergrund entsprechend col2    */  #main { background: #95c6fe} }