Most sideboxes belong to the same css class but also have a unique tag.
You should get FireFox and the web tools extention and you can uncover these elements and their names.
then you can apply your image in the stylesheet.css file in a similar fashion as this and adjust the items to match your image dimemsions like padding-bottom:
Code:
#YourSideBoxTag {
padding: 0.4em;
border-left: 1px solid #9B11A1;
border-right: 1px solid #9B11A1;
padding-bottom: 2.5em;
background-color: #ffffff;
background-image: url(../images/sidebox_bot.gif);
background-repeat: no-repeat;
background-position: 0% 100%;
}