

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

/**
 * Formatting of the Content Area | Formatierung der Inhaltsbereichs
 *
 * @section layout-main
 */
 /**
  * (en) Repositioning content container
  * (de) Neupositionierung der Content Container
  *
  * |-------------------------------|
  * | #header                       |
  * |-------------------------------|
  * | #col2   | #col1     | #col3   |
  * | 25%     | 50%       | 25%     |
  * |-------------------------------|
  * | #footer                       |
  * |-------------------------------|
  */

 /* #col1 becomes the middle column | #col1 wird zur mittleren Spalte */
 #col1 { display: none; }
 #col1_content {  }

 /* #col2 becomes the left column | #col2 wird zur linken Spalte */
 #col2 { float: right; width: 1px;}
 #col2_content { }

 /* #col3 becomes the right column | #col3 wird zur rechten Spalte */
 #col3 { margin: 0;}
 #col3_content { margin: 0;}
