@charset "UTF-8";
/**
 * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
 *
 * (en) Variation of screen layout (basemod.css) for layout example "3col_1-3-2"
 * (de) Variation des Screenlayouts (basemod.css) f�r Layoutbeispiel "3col_1-3-2"
 *
 * @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 screen
{
/**
* (en) Repositioning content container
* (de) Neupositionierung der Content Container
*
* |-------------------------------|
* | #header                       |
* |-------------------------------|
* | #col1   | #col3     | #col2   |
* | 25%     | flexible  | 25%     |
* |-------------------------------|
* | #footer                       |
* |-------------------------------|
*/

#main { background: #fff ; padding: 1em 0; } 

/* linke Spalte */
#col1 {	width: 180px; }	
#col1_content { margin-left: 1em; margin-right: 1em; color: #444; background:inherit; }

/* Rechte Spalte */
#col2 {	width: 240px; }
#col2_content {	margin-left: 1em; margin-right: 1em; }

/* Mittlere Spalte */
#col3
{
  	margin-left: 180px; 
   	margin-right: 240px; 
	border-left: 0px dotted #ddd;
	border-right: 0px dotted #ddd;
	min-height: 350px;
}

#col3_content { margin-left: 1em; margin-right: 1em; }



/* Spaltentrenner */
#col3 {border-left: 2px #ddd dotted;}
#col3 {border-right: 2px #ddd dotted;}

/* Festlegung der Layoutbreite und Zentrierung*/
#page_margins { 
	width:1000px; 
	margin-left: auto;
 	margin-right: auto;
	max-width:none;  /* min-width für fixes Layout abschalten */
	min-width:inherit;  /* max-width für fixes Layout abschalten */

}
/* Korrektur von Randabständen */
#footer {margin:0; padding: 1em; border-color: #aaa; }

}
