Depends on exactly what you're asking about, but in the case of, say, this:

#navColumnOneWrapper, #navColumnTwoWrapper, #mainWrapper {
margin: auto;
}

If you wanted to change the margin of just #mainWrapper, you would remove it from that rule and create a new rule just for that element:

#mainWrapper {margin: 2em 0 1em 0;}