@charset "UTF-8";

/**
 * "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-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.2
 * @revision        $Revision: 107 $
 * @lastmodified    $Date: 2007-08-01 18:27:14 +0200 (Mi, 01 Aug 2007) $
 */

@media all {
 /*------------------------------------------------------------------------------------------------------*/

 /**
  * Design of the Basic Layout | Gestaltung des YAML Basis-Layouts
  *
  * @section layout-basics
  */

  /* Page margins and background | Randbereiche & Seitenhintergrund */
  body {  
    background-color: #d0d0d0;
  }

  /* Layout: Width, Background, Border | Layout: Breite, Hintergrund, Rahmen */
  #page_margins { 
    margin: 5px auto;
    width: auto; 
    min-width: 740px; 
    max-width: 90em;  
  }
  
  #page {  
    background-color: white;
    /* background-image: url(/retrobib/images/beta.gif); */
    background-repeat: repeat;
    background-attachment: fixed;
    border: 1px solid #606060;
  }

  /* Design of the Main Layout Elements | Gestaltung der Hauptelemente des Layouts */
  #header { 
    padding: 0.6em 0.2em 2.5em 0.2em; 
    margin: 0.2em; 
    text-align: center; 
    background-image: url(/retrobib/images/zierrat/unterstrich.png);
    background-position: center bottom;
    background-repeat: no-repeat;
  }
  
  #topnav {  
  }

  #main {  
  }

  #footer { 
    padding: 2.5em 0.2em 0.6em 0.2em; 
    margin: 0.2em; 
    text-align: center; 
    background-image: url(/retrobib/images/zierrat/ueberstrich.png);
    background-position: center top;
    background-repeat: no-repeat;
  }

 /*------------------------------------------------------------------------------------------------------*/

 /**
  * Formatting of the Content Area | Formatierung der Inhaltsbereichs
  *
  * @section layout-main
  */

  #col1 {  
    float: left; 
    width: 13em; 
    margin: 0; 
  }
  #col1_content { 
    padding: 0.2em;
  }

  #col2 {  
    float: right; 
    width: 130px; 
    margin: 0;
  }
  #col2_content { 
    padding: 0.2em; 
  }

  #col3 {  
    width: auto; 
    margin: 0 130px 0 13em; 
    /* border-left: 1px solid #909090; */
    /* border-right: 1px solid #909090; */
  }
  #col3_content { 
    padding: 0.2em 0.6em 0.2em 0.6em; 
  }

 /*------------------------------------------------------------------------------------------------------*/

 /**
  * Design of Additional Layout Elements | Gestaltung weiterer Layoutelemente
  *
  * @section layout-misc
  */
}