Instead of trying to override facebook's css, I just ended up wrapping a div around the button and put a border around that. This code worked pretty good to get an effect I wanted:
<div style="border: 1px solid black; background: #ECEEF5 url('http://i.imgur.com/y8DyO.png'); width: 49px; height: 20px; border-radius: 3px;">
<!-- INSERT FACEBOOK LIKE DIV HERE -->
</div>
Note: background: #ECEEF5 url('http://i.imgur.com/y8DyO.png'); was added so that the div has a background the same as the like button so for that split second while javascript is running, you won't see a flicker from no background to facebook's #ECEEF5.
Result:

border: 1px solid black. It looks like you're just changing the color. – Torr3nt Jul 24 '12 at 5:18border: 1px solid black– BHare Jul 24 '12 at 6:35