
/* LAYOUT STUFF für Printausgabe*/
/* The 100% width in #outer_wrapper is used to prevent an IE bug regarding backgound painting, but this also creates a gap between #footer and #outer_wrapper. To remove that gap, the same declaration is added to #footer */
#outer_wrapper 
{
	min-width:740px;
	width:100%;
	background:none;
}

#wrapper 
{
	/* background:url(/bilder/beispiel/hoch_2.jpg) repeat-y right */
}

/* In IE6 (v6.0.29?) #header and #sidebar content play peek-a-boo. So here I give "layout" to this element (using width) and use negative lateral margins as well to make sure IE doesn't show an horizontal scrollbar */
#header 
{
	width:100%;
}

/* display:inline is in there to prevent an IE Bug (IE doubles margins on floats). */
#container 
{	
	width:100%;
}

#left 
{
	float: left;
	display:none;
}

#main 
{
	width:auto;
}

/* the trick is in the padding/margin values.  */
/* Note that this element is *not* a float. If the sidebar is shorter than #main, then there is no need for this rule. */
#sidebar 
{
	display:none;
}

/* this is to make sure IE6 (v6.0.29?) *shows* this element */
#sidebar p 
{
	position:relative;
	display:none;
}

/* Because of the 100% width declaration (needed for IE), the lateral margins need to go (or the box would be 2px too wide) */
#footer 
{
	width:100%;
	clear:both;
	border-top:1px solid black;
	background:none;
}

.clearing 
{
	height:0;
	clear:both;
}
