The triangle voting images don't line up for me. Using Safari on Mac, they are two pixels different horizontally. Using Firefox on Mac, they are one pixel different.
Since the images are 40px wide, and the table cell that they are contained within is 60px wide, the following CSS should make everything all better:
.vote-up, .vote-down {
display: block;
padding-left: 10px;
}
Edit: As Jeff pointed out, this solution doesn't work once the vote count forces its table cell to expand in width.
Here's an improved CSS solution that seems to work better:
.vote-up, .vote-down {
display: block;
margin: 0 auto;
}

