/*
http://www.fu2k.org/alex/css/onetruelayout/example/holygrail?order=213
*/
#main_wrapper
	{
	float: left;
/*	width: 100%; */
/* Zmniejszenie szerokości dla poprawienia błędu tekstów "duchów" w IE6 */
	width: 99.5%;
	}
/* Modyfikujemy uklad - nie 3, ale 2 kolumny na raz
Przy czym kolumna dodatkowa pojawia sie raz z lewej,
raz z prawej strony */
#main
	{
	margin: 0 0 0 240px;
	border-left:1px dotted gray;
	padding-left:10px;
	min-height: 450px !important;
	}
#container.menu_lewe #main
	{
	/* width:900px; */
	margin: 0 270px 0 0;
	padding-left: 60px;
	}
#block_2
	{
	float: left;
	margin-left: -100%;
	width: 180px;
	padding-left: 60px;
	}
#container.menu_lewe #block_2 {
	display: none;
}
#block_3 {
	display: none;
}
#container.menu_lewe #block_3 {
	display: block;
}
#block_3
	{
	float: right;
	margin-left: -31%;
	width: 260px;
	padding-left:10px;
	}
* html #block_3
	{
	margin-left: -280px;
	}
/*--------------------------------------------------------
the rest is the same no matter what the column ordering 
and plays no real part in the technique
---------------------------------------------------------*/
/*  throat, er cough, float, clearer
the container div and the clearing rules have no bearing on the 
technique - they're needed here on the footer's behalf
see http://www.positioniseverything.net/easyclearing.html for
an explanation of the voodoo applied to #container
Unfortunately neither of the other two easy clearing methods, 
namely applying either a float or overflow: auto (or hidden) to 
the containing wrapper works.
http://mezzoblue.com/archives/2005/03/03/clearance/
http://annevankesteren.nl/2005/03/clearing-floats
http://www.456bereastreet.com/lab/clearing_floats/
In both cases, the height of the containing wrapper is set to the 
height of main. Great if main is the tallest column, not so good 
if it's not. (Though, of course, it should be noted that both 
methods work just fine in IE because of its infamous broken float
implementation)
*/
#container:after
	{
	content: '[DO NOT LEAVE IT IS NOT REAL]'; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility: hidden;
	}
#container
	{
	display: inline-block;
/* chcemy miec mozliwosc plywania w naglowku */	
	clear: both;
	}
/*\*/
* html #container
	{
	height: 1%;
	}
#container
	{
	display: block;
/* chcemy miec mozliwosc plywania w naglowku */
	clear: both;
	}
