/**
 * Version 1.0.1
 * 2009-12-03 upk
 */


/**
 * "Yet Another Multicolumn Layout" - (X)HTML/CSS framework
 * (en) stylesheet for screen layout
 * (de) Stylesheet für das Bildschirm-Layout
 *
 * @creator     YAML Builder V1.0.3b (http://builder.yaml.de)
 * @file        basemod.css
 */

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

  /* (en) Marginal areas & page background */
  /* (de) Randbereiche & Seitenhintergrund */
  body { 
  background: #fff;
  padding: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.9em;
	color: #000;
  }
  /* Layout Alignment | Layout-Ausrichtung */
  #page_margins { margin: 0 auto;}

  /* Layout Properties | Layout-Eigenschaften */
  
  /* Flexible mittlere Spalte */
  /*#page_margins { width: auto;  min-width: 740px; max-width: 80em; background: #fff;}*/
  
  #page_margins { width: 980px; background: #fff;}
  
  #page { padding: 0px 10px 0px 10px; }
  #main { margin: 10px 0; background: #fff; }

  /*-------------------------------------------------------------------------*/

  /**
   * (en) Formatting content container
   * (de) Formatierung der Inhalts-Container
   *
   */

  #col1 { float: left; width: 220px;  margin:0 }
  #col2 { float: right; width: 220px;  margin:0; min-height:500px }
  #col3 { width: auto; margin: 0 220px 0 220px}
  #col1_content { padding: 0 10px 0 0px; font-size:1.2em; }
  #col2_content { padding: 0 0px 0 20px;  font-size:1.2em; }
  #col3_content { padding: 0 20px 0 20px; font-size:1.2em; }


  /* set column dividers */ 
  #col3 { border-left: 2px solid #ccc; }
  #col3 { border-right: 1px dashed #999; }
	
  /*-------------------------------------------------------------------------*/
}


