/*
 * liquid_position.css three column style for BioCity Turku
 * (c) 2006 vandepavert.com, Leon van de Pavert
 * email: webdesign at vandepavert dot com
 * version: 2006-06-05 15:32:15
 */

/*
 * body
 *
 * Note: Netscape and IE give the body tag a default margin of 8px. Opera
 * does not! Instead, Opera applies a default padding of 8px, so if one
 * wants to adjust the margin for an entire page and have it display
 * correctly in Opera, the body padding must be set as well!
 *
 * See http://www.w3schools.com/css/css_margin.asp
 */
body {
	margin: 0;
	padding: 0;
	text-align: left;
	min-width: 85em;
}
/* MSIE root hack to set min-width */
* html body {
	width: 100%;
}
img {
	border: none;
	padding: 0;
	margin: 0;
}
#header {
	margin: 0;
	padding: 0;
	clear: both;
}
#tab {
}
#outer_wrapper {
}
#wrapper {
}
#container {
	/* just a positional container */
	overflow: hidden;
	float: left;
}
/* position 2,1,3 */
#content { /* block 1 */
	float: left;
	width: 33em;
	margin-left: 20em;
	padding: 0 1.5em;
}
* html #content	{
	display: inline;
	/* 	1em bottom padding or margin has to go. content and footer have to touch. */
}
/*
#navigation { /* block 2 *//*
	float: left;
	width: 19em;
	margin-left: -56.5em;
	padding: 0 .5em;
}
* html #navigation { /* msie double margin fix *//*
	display: inline;
	margin-left: -60.75em;
}*/

#navigation { /* block 2 */
	float: left;
	width: 19em;
	margin-left: -56.75em;
	padding: 0 0 0 .5em;
}
* html #navigation { /* msie double margin fix */
	display: inline;
}

#sidebar { /* block 3 */
	float: left;
	width: 23em;
	padding: 0 .5em;
}
/*
 * Equal Height Columns - revisited
 * http://www.positioniseverything.net/articles/onetruelayout/equalheight
 *
 * TODO: this padding plus negative margin does not work in MSIE6.
 */
#content, #navigation, #sidebar {
	padding-bottom: 32767px;
	margin-bottom: -32767px;
}

#footer {
	width: 100%;
	clear: both;
}
#w3c {
	text-align: center;
	clear: both;
}
