CSS CODE
button.css3button {
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
color: #000000;
padding: 10px 20px;
background: -webkit-gradient(
linear, left top, left bottom,
from(#d6cc0f),
color-stop(0.25, #ffc821),
color-stop(0.50, #ffffff),
color-stop(0.75, #ffffff),
to(#dce00d));
background: linear-gradient(
top,
#d6cc0f 0%,
#ffc821 25%,
#ffffff 50%,
#ffffff 75%,
#dce00d);
border-radius: 6px;
border: 1px solid #b89f00;
box-shadow:
0px 1px 3px rgba(000,000,000,0.5),
inset 0px -1px 0px rgba(255,255,255,0.7);
text-shadow:
0px -1px 1px rgba(000,000,000,0.2),
0px 1px 0px rgba(255,255,255,0.3);
}