I believe this was no existing css class defined for those buttons yet. You can do the following in Shoppingcart.aspx file:
from:
Code:
<asp:Button ID="btnRemoveEstimator" runat="server" OnClick="btnRemoveEstimator_Click" Text="<%$ Tokens:StringResource,checkoutshipping.estimator.control.remove %>" Visible="false" /></td>
to:
Code:
<asp:Button ID="btnRemoveEstimator" CssClass="EstimateButton" runat="server" OnClick="btnRemoveEstimator_Click" Text="<%$ Tokens:StringResource,checkoutshipping.estimator.control.remove %>" Visible="false" /></td>
then go to style.css and add 'EstimateButton' class. Do the same in <asp:Button ID="btnRequestEstimates" ..>