/* based on ideas from http://bluerobot.com/web/layouts/layout3.html */

body {
	margin: 20px;
	padding: 0;
}

#middle {
	position: relative;
	width: 100%;
}

/* All the content boxes belong to the content class. */
.content {
	position: relative; /* Position is declared "relative" to gain control of stacking order (z-index). */
	width: auto;
	min-width: 340px;
	margin-left: 240px;
	padding: 10px;
	z-index: 3; /* This allows the content to overlap the right menu in narrow windows in good browsers. */
}

#left {
	position: absolute;
	/* ORIG_width: 150px; */
	width: 230px;
	top: 0;
	left: 0;
	z-index: 2;

/* Here is the ugly brilliant hack that protects IE5/Win from its own stupidity.
Thanks to Tantek Celik for the hack and to Eric Costello for publicizing it.
IE5/Win incorrectly parses the "\"}"" value, prematurely closing the style
declaration. The incorrect IE5/Win value is above, while the correct value is
below. See http: //glish.com/css/hacks.asp for details. */
	voice-family:  "\"}\"";
	voice-family: inherit;
	/* ORIG_width: 128px; */
	width: 208px; /* width from above - 22 */
}

/* I've heard this called the "be nice to Opera 5" rule. Basically, it feeds correct
length values to user agents that exhibit the parsing error exploited above yet get
the CSS box model right and understand the CSS2 parent-child selector. ALWAYS include
a "be nice to Opera 5" rule every time you use the Tantek Celik hack (above). */
body>#left {
	/* ORIG_width: 128px; */
	width: 208px; /* final #left.width */
}
