Bill Heanel asked: "Is it possible to apply a style to the button on a
file input?"
Do you mean to the text on a button in a form's <input type="button">
tag? If so, try this:
.foo {color:red; font-weight:bold; font-style:italic;}
<input class="foo" type="button" value="your text goes here" />
John