/* Copyright 2006 by Erich Schubert <design AT vitavonni DOT de>
 * This work is licensed under the Creative Commons Attribution-ShareAlike
 * License. To view a copy of this license, visit
 * http://creativecommons.org/licenses/by-sa/1.0/ or send a letter to
 * Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA. */

/* this is heavily based on the "holy grail layout" by Matthew Levine for A List Apart
   go to http://www.alistapart.com/articles/holygrail to understand the rationale */
body {
	margin: 0;
	width: 100%;
	max-width: 100%;
}
#m {
	padding: 0 25%;
	width: 50%;
	max-width: 50%;
}
#c {
	position: relative; float: left;
	width: 100%; padding: 0;
}
#l {
	position: relative; float: left;
	width: 49%;
	max-width: 15em;
	right: 50%;
	margin-left: -100%;
}
#r {
	position: relative; float: right;
	width: 49%;
	max-width: 150px;
	margin-right: -50%;
}
#ads {
	margin: 0 auto;
	width: 120px;
}
#header, #footer {
	clear: both;
	width: 100%;
}
