.button {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    padding: 12px 20px;
    border: 1px solid #696b05;
    border-radius: 16px;
    background: #f8fd27;
    background: -webkit-gradient(linear, left top, left bottom, from(#f8fd27), to(#f7ea56));
    background: -moz-linear-gradient(top, #f8fd27, #f7ea56);
    background: linear-gradient(to bottom, #f8fd27, #f7ea56);
    -webkit-box-shadow: #ffff2f 0px 0px 40px 0px;
    -moz-box-shadow: #ffff2f 0px 0px 40px 0px;
    box-shadow: #ffff2f 0px 0px 40px 0px;
    text-shadow: #ffff33 1px 1px 1px;
    font: normal normal bold 20px arial;
    color: #111111;
    text-decoration: none;
}
.button:hover,
.button:focus {
    border: 1px solid #a8ab08;
    background: #ffff2f;
    background: -webkit-gradient(linear, left top, left bottom, from(#ffff2f), to(#ffff67));
    background: -moz-linear-gradient(top, #ffff2f, #ffff67);
    background: linear-gradient(to bottom, #ffff2f, #ffff67);
    color: #111111;
    text-decoration: none;
}
.button:active {
    background: #aeb11b;
    background: -webkit-gradient(linear, left top, left bottom, from(#aeb11b), to(#f7ea56));
    background: -moz-linear-gradient(top, #aeb11b, #f7ea56);
    background: linear-gradient(to bottom, #aeb11b, #f7ea56);
}