body {
  margin: 0;
  padding: 0;
  background: #eef4ee;
  font-family: Verdana, Geneva, Arial, sans-serif;
  font-size: 85%;
}

h1 {
  color: #033;
  margin: 0.2em 30px 0 20px;
}

h2 {
  color: #036;
  margin-top: 0.2em;
  margin: 0.5em 30px 1em 20px;
}

h3 {
  color: #033;
  border-bottom: 1px dashed #ccf;
  margin: 1em 30px 1em 20px;
}

p {
  margin: 1em 30px 1em 20px;
}

.details {
  color: #600;
  font-size: 92%;
}

.milestones {
  color: #474;
  font-size: 92%;
}

em {
  color: #272;
}

ul {
  margin: 1em 3em 1em 1em;
  padding-left: 1em;
}

li {
  margin: 0.3em;
  list-style: square;
}

#sidebar li {
  margin: 0.3em 0.3em 0.3em 1em;
  list-style: square;
}

dt {
  font-weight: bold;
  color: #006;
}

dd {
  margin-bottom: 0.8em;
}

.note {
  margin: 1em 4em 1em 2em;
  border: solid 1px #ccf;
  background: #ddf;
  padding: 0.5em;
}

.w3cnote {
  margin: 1em 4em 1em 2em;
  border: solid 1px #fcc;
  background: #fdd;
  padding: 0.5em;
}

blockquote {
  border-left: 2px solid #ccf;
  margin: 1em 4em 1em 2em;
  padding: 0.5em 0.5em 0.5em 1em;
}

#footer {
	padding: 0;
	margin: 0;
}

/* Using the One True Layout from
   Position is Everything 
   http://positioniseverything.net/articles/onetruelayout/
*/

#content {
	border-top: 1px solid black;
	border-bottom: 1px solid black;
}

#main	{
	float: left;
	width: 65%;
	background: #ddd;
}

* html #main {
	display: inline;
}

#sidebar	{
	font-size: 0.9em;
	float: left;
	width: 35%;
	background: #eef;
}

/* Start Mac IE5 filter \*/
#main, #sidebar {
	padding-bottom: 32767px !important;
	margin-bottom: -32767px !important; 
}
/* End Mac IE5 filter */
#content {
	overflow: hidden; /* This hides the excess padding in non-IE browsers */
}

/* we need this for IE 5.01 - otherwise the wrapper does not expand to the
necessary height (unless fixed, this problem becomes even more acute 
weirdness as the method is enhanced */

#content	{
/* Normally a Holly-style hack height: 1% would suffice but that causes 
IE 5.01 to completely collapse the wrapper - instead we float it */
	float: left;
/* NB. possibly only IE 5.01 needs to get this float value - otherwise 5.5 sometimes 
(I saw it happen many moons ago) makes the width of wrapper too small 
the float: none with the comment is ignored by 5.01,
5.5 and above see it and carry on about their business
It's probably fine to just remove it, but it's left here 
just in case that many moons ago problem rears its head again */
	float/**/: none;
}

/* easy clearing */
#content:after	{
	content: '[DO NOT LEAVE IT IS NOT REAL]'; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility: hidden;
}

#content {
	display: inline-block;
}
/*\*/
#content {
	display: block;
}

/* end easy clearing */
/* Safari needs this - otherwise the ghost overflow, though painted 
correctly obscures links and form elements that by rights should be above it.
An unintended side-effect is that it cause such elements to vanish in IE 5.01
and 5.5, hence the child selector hack */
* > #footer, * > form {
	position: relative;
	z-index: 1000;
}
