/**
 * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
 *
 * @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
 *
 * $Id: $
 */

/**
 * (en) Repositioning content container
 * (de) Neupositionierung der Content Container
 *
 * |-------------------------------|
 * | #header                       |
 * |-------------------------------|
 * | #col3   | #col1               |
 * | flexible| 75%                 |
 * | 400px   | 600px               |
 * |-------------------------------|
 * | #footer                       |
 * |-------------------------------|
 */

/* left column | linke Spalte */
#col1 {
	/* width:75%; */
	width:760px;
	float:right;
}

#col1_content {
	padding-left:10px;
	padding-right: 20px;
}

/* right column | Rechte Spalte */
#col2,
#col2_content {
	display:none;
}

#col3 {
	/* margin-right:75%; */
	margin-right:780px;
	margin-left:0;
}

#col3_content {
	padding-left:5px;
	padding-right:15px;
}

#col3_content form select {
	margin-bottom:1em;
	width: 100%;
}

#submenu {
	font-size: 110%
}