@charset "UTF-8";
/**
 * "Yet Another Multicolumn Layout" - (X)HTML/CSS framework
 * (en) stylesheet for screen layout
 * (de) Stylesheet für das Bildschirm-Layout
 *
 * @creator       YAML Builder V1.2b (http://builder.yaml.de)
 * @file          basemod.css
 * @-yaml-minver  3.1
 */

@media screen, projection
{
  html
  {
    background-color: white;
    font-size: 0.8em;
    font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
  }
  /*-------------------------------------------------------------------------*/

  /* (en) Marginal areas & page background */
  /* (de) Randbereiche & Seitenhintergrund */
  body {
    /* background: url(../../img/bg/background-gray.png) repeat-x; */
  }

  /* Layout Alignment | Layout-Ausrichtung */
  .page_margins { margin: 0 auto; }

  /* Layout Properties | Layout-Eigenschaften */
  .page_margins { width: auto;  min-width: 740px; max-width: 90em; background: #fff; }
  .page { padding: 10px; }
  div.page
  {
    border : 1px solid #d1d2d4;
    background: url(../../img/bg/background-gray.png) repeat-x;
  }
  #header
  {
    background: url(../../img/bg/background-blue.png) repeat-x 0 -80px;
  }
  /* Content-Bereich Startseite */
  #col3_home
  {
    background: url(../../img/bg/background-sand.png) repeat-x;
  }
  #topnav { color: #aaa; background: transparent; }
  #nav { overflow:hidden; }
  div.hlist {  }
  #main { margin: 10px 0; background: #fff; }
  #footer
  {
    padding: 5px 10px;
    color: #656175;
    background: url(../../img/bg/background-purple.png) repeat-x 0 -160px;
    border-top: 1px solid #cc99ff;
  }

  /* (en) navigation: horizontal adjustment | (de) horizontale Ausrichtung  */
  #nav ul { margin-left: 20px; }

  /*-------------------------------------------------------------------------*/
  /**
   * (en) Formatting content container
   * (de) Formatierung der Inhalts-Container
   */

  #col1
  {
    background: url(../../img/bg/background-yellow.png) repeat-x;
  /* min-height : 350px; partly caused float problems ... eh */
    float: left; width: 25%;  margin:0;
  }
  #col2 {
    background: url(../../img/bg/background-green.png) repeat-x;
    min-height : 350px;
    float: right; width: 25%;  margin:0;
  }
  #col3 {
    width: auto; margin: 0 25% 0 25% ; background-color:#eee
  }
  /* dvv custom */
  #col3_home {
    width: auto; margin: 0 25% 0 0 ; background-color:#eee
  }
  #col3_wide {
    width: auto; margin: 0 0 0 25% ; background-color:#eee
  }
  #col1_content { padding: 0 5px 0 5px }
  #col2_content { padding: 0 20px 0 10px }
  #col3_content { padding: 0 10px 0 20px }

  /*-------------------------------------------------------------------------*/


  .printPreview #col3 { width:auto; margin: 0}
}