
.clear {
	clear: both;
}

#wrapper {
	margin: 0 auto;
	width: 48em; /* 697px */
	
	background: White;
	border: 1px solid #f90;
}

/*** Below is the Tan hack, needed because the decorative side borders (thin black) on 
.wrapper. It fixes the box model of IE5.x/win, making it display the same as other browsers. ***/

* html #wrapper {
	width: 47.8px; /* 700px */
	w\idth: 48em; /* 697px */
}

#outer {
	border-left: 9em solid #fff;  /* 150px */
	/*border-right: 10em solid #fff; /* 130px */
	font-size: 100%;
}

/*** These are the visible side col BG's. The image BG is needed to replace a side border
on div.inner, which can't be used because of problems in Mozilla. The image substitutes 
for the thin black divider between the right green col and the center col. If the black divider
is not wanted, the BG image may be removed. The Tan hack below feeds a IE a different 
BG location, due to a BG placement variation. 
***/

/*******************************************/

#inner {
	width: 39em; /* 548px */
	/*width: 548px;*/
					  /*** This width is for non-IE browsers. Mozilla makes this necessary. ***/
	/*border: 1px solid green;*/
}

/*** div.inner is wider than its container, div.outer, and so overlaps to the right, pushing
div.right into the proper position. IE expands div.outer instead, requiring a Tan hack to avoid 
blowing the layout apart. IE gets the original 100% width as in the Livingstone layout. It blows 
my mind that all this hacking is being caused by the mighty Gecko engine! (shakes head ruefully)
***/

* html #inner {
	width: 100%;
}

#float-wrap {
	float: left;
	width: 48em; /* 567px */
	margin-left: -9em;       /*** Same length as left column width ***/
	/*border: 1px solid green;*/
}

/*** div.left is in div.float-wrap, and when div.float-wrap is neg margined to the left, 
div.left is carried over into the proper position. 
***/

#header {
	/*margin: 0em;
	padding: 0em;*/
	/*width: 100%;*/
}

.hnav {
	border-bottom: solid 1px #fff;
	margin: 0;
	white-space: nowrap;
	text-align: center;
}

.hnav ul span.divider {
	display: none;
}

* html .hnav {/* Hide from IE5/Mac (& IE5.0/Win) */
	height: 0.01%;	/* holly hack to fix a render bug in IE6/Win */
}

* html .hnav {
	height: auto;	/* above IE6/Win holly hack breaks IE5/Win when page 
			   length get beyond the point that 1% height is taller 
			   than the text height. IE5/Win does not need this 
			   holly hack so we remove it here */
	padding: 0;	/* IE5/Win will resize #hnav to fit the heights of its
			   inline children that have vertical padding. So this
			   incorrect case selector will remove that padding */
}

.hnav ul {
	list-style-type: none;
	line-height: normal;
	margin: 0;
	padding: 0;
}

.hnav ul li {
	display: inline;
	white-space: nowrap;
	margin: 0;
}

* html .HNAV ul li a {
	/* \*/
		width: 1%;
	/* holly hack for IE5/Win inline padding. this hack fixes different 
	 * rendering bugs in 5.0 and 5.5. Width is used instead of height 
	 * because if the document is too long, these elements become very tall
	 * and disrupt the look of the document. too wide an element is better, 
	 * visually, than too tall. */
}

.hnav ul li a:hover {
	text-decoration: none;
} 

/************************************************************/

#center {
	float: right;
	width: 39em; /* 415em */
	/*margin-right: 1px;*/
	/*margin-left: -2px;*/
	
}

#left {
	float: left;
	width: 9em; /* 147px */
	margin-left: -1px;
	position: relative; /*** IE needs this or the contents won't show outside the parent container. ***/
}

/* Mozilla bug fixes */
html>body #inner, html>body #float-wrap {
	border-bottom: 1px solid transparent;
}
