/**
 * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
 *
 * (en) Template for designing a screen layout
 * (de) Gestaltungsvorlage für die Erstellung eines Screenlayouts
 *
 * @copyright       Copyright 2005-2011, 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.1
 * @revision        $Revision:392 $
 * @lastmodified    $Date:2009-07-05 12:18:40 +0200 (So, 05. Jul 2009) $
 */

@media screen, projection
{
/** 
   * (en) Forcing vertical scrollbars in IE8, Firefox, Webkit & Opera 
   * (de) Erzwingen vertikaler Scrollbalken in IE8, Firefox, Webkit & Opera 
   *
   * @workaround
   * @affected IE8, FF, Webkit, Opera
   * @css-for all
   * @valid CSS3
   */

    body {
        overflow-y : scroll;
    }

    /*------------------------------------------------------------------------------------------------------*/

    /**
  * Design of the Basic Layout | Gestaltung des YAML Basis-Layouts
  *
  * @section layout-basics
  */

    /* Page margins and background | Randbereiche & Seitenhintergrund */
    body {
    }

    /* Layout:Width, Background, Border | Layout:Breite, Hintergrund, Rahmen */
    .page_margins {
    }
    .page {
    }

    /* Design of the Main Layout Elements | Gestaltung der Hauptelemente des Layouts */
    #header {
        overflow : visible;
        background-color : #CCCCCC;
        height : 30px;
    }
    #topnav {
        float : left;
        line-height : 0;
        /*overflow : hidden;*/
        width : 100%;
        display : inline;
        text-align : left;
    }

    /* damit Footer immer unten ist */
    body {
        height : 100%;
    }
    #wrap {
        min-height : 100%;
        height : auto !important;
        height : 100%;
        margin : 0 auto -4em;
    }
    #footer {
        width : 100%;
    }
    #footer,
    .push {
        margin-top : 4em;
    }
    .footer,
    .push {
        clear : both;
    }
    /* damit Footer immer unten ist ENDE */


    /*------------------------------------------------------------------------------------------------------*/

    /**
  * Formatting of the Content Area | Formatierung der Inhaltsbereichs
  *
  * @section layout-main
  */

    .col1 {
        margin-left : 15px;
    }
    .col3 {
        clear : right;
        float : left;
    }
    .sitebar-left {
        float : left;
        width : 25.4%;
        margin-left : 10px;
    }
    .main-right {
        width : 72.4%;
        margin-left : 5px;
    }
    .main-left {
        float : left;
        width : 74.9%;
        margin-right : 10px;
    }
    .sitebar-right {
        width : 21.9%;
        margin-right : 5px;
    }
    #content {
        clear : both;
        min-height : 600px;
        padding-top : 15px;
    }

    /*------------------------------------------------------------------------------------------------------*/

    /**
  * Design of Additional Layout Elements | Gestaltung weiterer Layoutelemente
  *
  * @section layout-misc
  */



}