/**

 * "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     | #col2   |

 * | flexible| 50%       | 25%     |

 * |-------------------------------|

 * | #footer                       |

 * |-------------------------------|

 */



/* #col1 becomes the middle column | #col1 wird zur mittleren Spalte */

#col1 {

	/* width:50%; */

	width:500px;

	float:right;

	/* margin-left:-75%; */

	margin-left:-780px;

	/* margin-right: 25%; */

	margin-right: 280px;

}



/* #col2 becomes the right column | #col1 wird zur rechten Spalte */

#col2 {

	/* width:25%; */

	width:280px;

	float:right;

	/* margin-right: 0%; */

	margin-right: 0px;

}



/* #col3 becomes the left column | #col3 wird zur linken Spalte */

#col3 {

	margin-left:0px;

	/* margin-right: 75%; */

	margin-right: 780px;

}