CSS CODE
button.css3button {
font-family: Arial, Helvetica, sans-serif;
font-size: 15px;
color: #000000;
padding: 8px 20px;
background: -webkit-gradient(
linear, left top, left bottom,
from(#f2f2f2),
color-stop(0.50, #e3e3e3),
color-stop(0.50, #d1d2d3),
color-stop(0.75, #ffffff),
to(#d9d9d9));
background: linear-gradient(
top,
#f2f2f2 0%,
#e3e3e3 50%,
#d1d2d3 50%,
#ffffff 75%,
#d9d9d9);
border-radius: 6px;
border: 1px solid #999a9a;
box-shadow:
0px 0px 0px rgba(000,000,000,0),
inset 0px 1px 1px rgba(255,255,255,1);
text-shadow:
0px 0px 0px rgba(000,000,000,0),
0px 1px 0px rgba(255,255,255,1);
}