This code works - I just tested it on your site again.
On looking at your stylesheet, you copied my instruction as well as the code into it, so it is probably trying to affect
"Separate out .centerColumn: .centerColumn" which doesn't exist.
.centerColumn
Code:
.centerColumn, #bannerOne, #bannerTwo, #bannerThree, #bannerFour, #bannerFive, #bannerSix {
padding: 0.8em;
}
Separate out .centerColumn:
.centerColumn {
padding: 0em;
}
Delete the instruction and leave only the code.
Also, remove ".centerColumn," from the long list. There is no benefit to declaring it twice.