I think I know what you are trying to accomplish but may be wrong.

find this:
Code:
#headerWrapper{
	margin:0;
	padding:0;
	background: transparent;
	}
change to this:
Code:
#headerWrapper{
background:#e5edf5;
	}
find this:
Code:
#mainWrapper {
	background-color: #ffffff;
	text-align: left;
	width: 850px;
	vertical-align: top;
	border: 1px solid #9a9a9a;
	}
change to this:
Code:
#mainWrapper {
	background-color: #e5edf5;
	text-align: left;
	width: 850px;
	vertical-align: top;
	border: 0px solid #e5edf5;
	}
not sure if this is what you want.