html, body
{
	background-color: #EEF7FE;
	margin: 0;
	padding: 0;
}

#header
{
	overflow: hidden;
	width: 100%;
	margin: 5px 0px 2px 0px;
	padding: 2px 0px 2px 0px; /* For IE5/Win's benefit height = [correct height] + [top padding] + [top and bottom border widths] */
	height: 111px; /* 14px + 17px + 2px = 33px */
	border: 1px solid #BDE4FF;
	border-width: 1px 0px; /* top and bottom borders: 1px; left and right borders: 0px */
	line-height: 11px;
	background-color: #fff; /* 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;
	height: 105px; /* the correct height */
}
/* 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 > #header
{
	height: 100px;
}


#menu
{
	position: absolute;
	border: 1px dotted #BDE4FF;
	top: 135px;
	right: 10px;
	width: 192px;
	padding: 5px; /* Again, the ugly brilliant hack. */
	voice-family: "\"}\"";
	voice-family: inherit;
	width: 160px;
}
/* Again, "be nice to Opera 5". */
body > #menu
{
	width: 150px;
}