Color of text not changing on rollover

Hi Guys,

On my Submit bottom at the bottom of the page the text doesnt change to orange as it should when rolling over the button. Any reason why? And also, how can I get the hand pointer when you rollover it. Of course need to click the square box to make anything work as an acceptance to an order.

http://freshtastik.ca/modo/catering/

Thanks,

It’s not an <a> element, it’s an input. So instead of this:

#contact-submit [COLOR="#FF0000"]a[/COLOR]:hover {
	color: #FC8812;
}

you need this:

#contact-submit [COLOR="#FF8C00"]input[/COLOR]:hover {
	color: #FC8812;
}