/* width=1000 for a 1024x768 screen, allows for 24px of scrollbar, etc. */

body > *
	{
	overflow: hidden;
	}

body
	{
	position: relative;
	width: 1000px;
	margin: 0;
	background-color: #fff;
	}

#site_orientation
	{
	z-index: 0;
	position: relative;		/* so can offset logo */
	width: 1000px;
	height: 80px;
	background-color: #010101;
	overflow: visible;
	}

#nav
	{
	z-index: 2;
	float: left;
	position: relative;
	width: 150px;
	width: 210px;
	padding: 10px 0px;	/* inner elements handle their own side padding */
	padding: 0;
	background-color: transparent;
	background-color: #ddd;
	}

#page_orientation
	{
	z-index: 9;
	float: left;
	position: relative;
	height: 40px;
	/* total width 790px */
	width: 770px;
	padding: 10px;
	background-color: #fbd;
	background-color: transparent;
	}

#content
	{
	z-index: 1;
	float: left;
	position: relative;
	margin-left: -210px;
	border-left: 210px solid #bdf;
	border-left: 210px solid #ddd;
	/* total width 500px, + 1px which is overlapped by secondary's border */
	width: 480px;
	padding: 10px;
	border-right: 1px solid #000;
	}

#secondary
	{
	z-index: 0;
	float: left;
	position: relative;
	/* total width 290px, including the 1px border that overlaps content */
	width: 279px;
	padding: 10px 0px 20px 10px;
	border-left: 1px solid #000;
	margin-left: -1px;
	background-color: #edf;
	background-color: transparent;
	}

#boilerplate
	{
	z-index: 0;
	position: relative;
	clear: both;
	/* total width 1000px */
	width: 990px;
	padding: 5px;
	background-color: #dbf;
	background-color: transparent;
	}
