Yup! I see whats wrong.

On your CSS look for:

Code:
.sideBoxContent {
     background-image:url('../images/box002.gif');
     background-repeat: no-repeat;
     font-size: 12px;
     line-height: 125%;
     padding-top: 5px;
     padding-left: 20px;
     padding-right: 20px;
     padding-bottom: 25px; background-position-y:100%
     }
should be:
Code:
.sideBoxContent {
     background-image:url(../images/box002.gif);
     background-repeat: no-repeat;
     font-size: 12px;
     line-height: 125%;
     background-position: bottom;
     padding-top: 5px;
     padding-left: 20px;
     padding-right: 20px;
     padding-bottom: 25px;
     }
That should fix it.

BTW nice combination of jettrue's template and mine, plus your own touch, very good.

Have fun!