The background color of the Sponsors box has been changed to match the template colors.

Code:
#bannerboxHeading {
	background-color: #0000CC;
	}
to
Code:
#bannerboxHeading {
	background-color: #9B7969;
	}


The left and right columns have been seperated (mostly to fix the left/right borders of those columns)
Code:
#navColumnOne, #navColumnTwo {
	vertical-align: top;
	background-color: #69829B;
	border-top: 1px solid #795252;
	border-right: 1px solid #795252;
	}
to
Code:
#navColumnOne {
	vertical-align: top;
	background-color: #69829B;
	border-top: 1px solid #795252;
	border-right: 1px solid #795252;
	}

#navColumnTwo {
	vertical-align: top;
	background-color: #69829B;
	border-top: 1px solid #795252;
	border-left: 1px solid #795252;
	}