Check out my form here:
It seems that the button at the bottom of the form is not displaying correctly in Internet Explorer, despite working fine on other browsers.
Below is the CSS code I am using for styling the button:
.button
{
-moz-border-radius:3px;
-webkit-border-radius:3px;
border-radius: 3px;
border: 1px solid #ABABAB;
background-image: -webkit-gradient(linear, left top, left bottom, from(#E1E1E1), to(#F7F7F7));
background-image: -webkit-linear-gradient(top, #E1E1E1, #F7F7F7);
background-image: -moz-linear-gradient(top, #E1E1E1, #F7F7F7);
background-image: -ms-linear-gradient(top, #E1E1E1, #F7F7F7);
background-image: -o-linear-gradient(top, #E1E1E1, #F7F7F7);
background-image: linear-gradient(top, #E1E1E1, #F7F7F7);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#E1E1E1', EndColorStr='#F7F7F7');
padding: 6px;
text-transform: uppercase;
font: 100% "League Gothic", Helvetica, Arial, sans-serif;
text-decoration:none;
}