﻿@charset "UTF-8";
/**
 * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
 *
 * (en) Screen layout for YAML examples
 * (de) Bildschirmlayout für YAML-Beispiele
 *
 * @copyright       Copyright 2005-2008, 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.6
 * @revision        $Revision: 202 $
 * @lastmodified    $Date: 2008-06-07 14:29:18 +0200 (Sa, 07 Jun 2008) $


Content: 		E1E6FA   (hellstes Blau)
Cite, Box.. :  		C4D7ED   (2hellstes blau)
Zwischenbereiche:  	ABC8E2
Header:  		375D81
Background body: 	4C6620
 */

@media screen, projection
{
  /*------------------------------------------------------------------------------------------------------*/

  /**
   * (en) Formatting YAML's  basic layout elements
   * (de) Gestaltung des YAML Basis-Layouts
   */

  /* (en) Marginal areas & page background */
  /* (de) Randbereiche & Seitenhintergrund */
  body { 
    background-color: #B3CC63; 
    padding: 10px; 
  }

  /* (en) Centering layout in old IE-versions */
  /* (de) Zentrierung des Layouts in alten IE-versionen */
  body { text-align: center; }

  #page_margins { 
    text-align:left; 
    margin: 10px; 
  }

  /* (en) Layout: width, background, borders */
  /* (de) Layout: Breite, Hintergrund, Rahmen */
  #page_margins { min-width: 60em; max-width: 80em; background-color: #4C6620; }

  #page{ padding: 10px 10px;}

  /* (en) Designing main layout elements */
  /* (de) Gestaltung der Hauptelemente des Layouts */
  #header {
    color: #E1E6FA;
    background-color: #4C6620;
    padding: 10px; 

  }


  #headerLogo { 
    background-color: transparent; padding:0 0 10px 0; 

 }


  #main { 
    background-color: #fff;
    padding: 10px ;
    margin: 0 10px; 

  }

  #footer { 
    color:#E1E6FA;; 
    background-color: #4C6620;
    padding: 10px 20px;
    height: 20px;
  }




  /**
   * (en) Repositioning content container
   * (de) Neupositionierung der Content Container
   *
   * |-------------------------------|
   * | #header                       |
   * |-------------------------------|
   * | #col1   | #col3     | #col2   |
   * | 25%     | flexible  | 0%     |
   * |-------------------------------|
   * | #footer                       |
   * |-------------------------------|
   */

  /* #col1 becomes the left column | #col1 wird zur linken Spalte */
  #col1 { width: 25%; }

  /* Hide right column | Rechte Spalte abschalten */
  #col2, #col2_content { display:none; }

  /* #col3 becomes the middle column | #col3 wird zur mittleren Spalte */
  #col3 { margin-left: 25%; margin-right: 0%; }



}


