/* ######################################################################################################
** # "Yet Another XHTML Layout" - Multicolumn Template Scheme for TYPO3
** # @author: Torsten Schrade <t.schrade@connecta.ag> (http://www.connecta.ag/)
** #
** # CSS techiques and XHTML used for this template scheme are based on and inspired by:
** # "Yet Another Multicolumn Layout (c) by Dirk Jesse (http://www.highresolution.info/webdesign/yaml/)
** ######################################################################################################
** 
** basemod.css : standard layout modifications of the base for a 3column layout
** some of the values can be set from TypoScript
**
** Don't make any changes to this file. You should override the width/height settings of this file with 
** your own stylesheets in your fileadmin folder or set them with the CONSTANT EDITOR.

** suggested order:
** ################
** display
** visibility
** list-style-type
** position
** 		top/right/bottom/left
** z-index
** float
** clear
** (min-)width
** (max-)height
** overflow
** margin
** border
** padding
** color
** background
** font
**	- font-family
**	- font-size
**	- font-style
**	- font-variant
** line-height
** letter-spacing
** text-align
** vertical-align
** text-decoration
** white-space
** other text styles (e.g. text-indent)
** cursor
** content

*/

#page {
	background: #fff;
}

#container {
	min-width: 756px; 
	max-width: 80em;
	margin: auto;	
}

#header {
	position: relative; 
	height: 140px; /* can be set from TS or user stylesheet*/
}

#main {
	padding: 1em 0;	
} 

/* LEFT COLUMN */

#content-01-wrap {
	width: 22.5%;
}	

#content-01 {
	padding-top: 1.5em;
	margin-left: 1em;
	margin-right: 1em;
}

#footer { 
	margin: 0; 
	padding: 1em 0 0 0; 
	line-height: 2em;
}

/* RIGHT COLUMN */

#content-02-wrap {
	width: 25%;
}

#content-02 {
	padding-top: 1.5em;
	margin-left: 1em;
	margin-right: 1em;
}

/* CENTER COLUMN */

#content-03-wrap {
  	margin-left: 22.5%;
   	margin-right: 25%;
}

#content-03 {
	padding-top: 1.5em; 
	margin-left: 1em; 
	margin-right: 1em; 
}