This css will control the border for all of the sidebox containers on the left side:
div.leftBoxContainer {
border: 1px solid black;
}
If you wanted to just affect the Categories Sidebox, a CSS example would be like so:
div.leftBoxContainer#categories {
border: 1px solid black;
}
You can affect individual sideboxes in the same way, for example, if you wanted to just affect the bestsellers sidebox you would take the first css class and append "#bestsellers" to the selector like so:
div. leftBoxContainer#bestsellers { }
This way, you can pick and choose which sidebox to affect, if you wished.