@charset "UTF-8";
/**
 * "YAML for Joomla Template" - http://www.jyaml.de
 *
 * (en) Basic screen layout (col1=1, col2=1, col3=1)
 * (de) Basis Bildschirmlayout (col1=1, col2=1, col3=1)
 *
 * @version         $Id: basemod_3col_213.css 423 2008-07-01 11:44:05Z hieblmedia $
 * @copyright       Copyright 2005-2008, Reinhard Hiebl
 * @license         CC-A 2.0/JYAML-C(all media,html,css,js,...) and GNU/GPL(php), 
                    - see http://www.jyaml.de/en/license-conditions.html
 * @link            http://www.jyaml.de
 * @package         yamljoomla
 * @revision        $Revision: 423 $
 * @lastmodified    $Date: 2008-07-01 13:44:05 +0200 (Di, 01. Jul 2008) $
*/

@media screen, projection
{
  /**
   * (en) Repositioning content container
   * (de) Neupositionierung der Content Container
   *
   * |-------------------------------|
   * | #header                       |
   * |-------------------------------|
   * | #col2   | #col1     | #col3   |
   * | 25%     | 50%       | 25%     |
   * |-------------------------------|
   * | #footer                       |
   * |-------------------------------|
   */

  #main { width: 100%; float:left; }

  /* #col1 becomes the middle column | #col1 wird zur mittleren Spalte */
  #col1 { width: 20%; float:left; margin-left: 20%; }
  #col1_content {
	padding-left: 5px;
	padding-right: 5px;
	background-color: #696;
}

  /* #col2 becomes the left column | #col2 wird zur linken Spalte */
  #col2 { width: 20%; float:left;  margin-left: -40%;}
  #col2_content { padding-left: 0px; padding-right: 5px }

  /* #col3 becomes the right column | #col3 wird zur rechten Spalte */
  #col3 {
	float:right;
	width: 59%;
	margin-left: 0px;
	margin-right: 0;
	border-right:0;
	padding-left: 1%;
}
  #col3_content {
	padding-left: 0px;
	padding-right: 0px
}
}