.myButton{
background:    #fff;
background:    -webkit-linear-gradient(#fff, #ccc);
background:    linear-gradient(#fff, #ccc);
border:        1px solid #ccc;
border-radius: 999px;
box-shadow:    0 2px 0 0 #666;
color:         #000;
display:       inline-block;
padding:       10px 25px;
font:          normal 400 18px/1 "Zenhei", sans-serif;
text-align:    center;
text-shadow:   1px 1px 0 #f3f3f3;

}

.myButton:hover {
background:    #fff;
background:    -webkit-linear-gradient(#fff, #ccc);
background:    linear-gradient(#fff, #ccc);
color:         #000;
font-weight: bold;
}

.myButton:active {
background:    #fff;
background:    -webkit-linear-gradient(#fff, #ccc);
background:    linear-gradient(#fff, #ccc);
}
