/**

pageWrapper
  outerWrapper
    innerWrapper
      sourceOrderWrapper
        middle col (main content)
        right col (secondary content)
      left col (nav content)

 */
.cb
{
	clear: both;
}
#innerContentWrapper
{
	width: 100%;
}
#doubleContentWrapper
{
	float: right;		/* float left of the right column */
	width: 944px;		/* take up any extra space*/
	margin-left: -3px;
}

#navContent
{
	width: 200px;         /* These should both be the same as the outerSectionWrapper right border : TODO:  195 for all good browsers, 194 for ie6*/
}

#mainContent
{
	float: left;  /*floats right of the left col which share an outer wrapper */
	width: 780px;
}

#secondaryContent
{
	float: left;
	width: 164px;        /* These should both be the same as the outerSectionWrapper left border */
}

body
{
	background-color: #ccc;
	color: #000;
	padding: 0;
	margin: 5px 0;
}
#pageWrapper
{
	background-color: #fff;	/* background for the middle column (main content) */

	margin-left: auto;
	margin-right: auto;
	width: 1144px;
	min-width: 1144px; /* don't let this page be all that fluid */
	margin: 0 10px;	
}
#masthead
{
	padding-top: 1px;		/* give the masthead space, so it will inherit the bg color */
}
#innerSectionWrapper
{
}
#footer
{
}
.innerWrapper
{
	margin: 0px; /* use margins, instead of padding */
}
