.button {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    padding: 4px 8px;
    border: 1px solid #6a290c;
    border-radius: 10px;
    background: #c84d16;
    background: -webkit-gradient(linear, left top, left bottom, from(#c84d16), to(#6a290c));
    background: -moz-linear-gradient(top, #c84d16, #6a290c);
    background: linear-gradient(to bottom, #c84d16, #6a290c);
    -webkit-box-shadow: #f05c1a 0px 0px 6px 0px;
    -moz-box-shadow: #f05c1a 0px 0px 6px 0px;
    box-shadow: #f05c1a 0px 0px 6px 0px;
    text-shadow: #3f1807 1px 1px 1px;
    font: normal normal normal 20px comic sans ms;
    color: #ffffff;
    text-decoration: none;
}
.button:hover,
.button:focus {
    border: 1px solid ##7d300e;
    background: #f05c1a;
    background: -webkit-gradient(linear, left top, left bottom, from(#f05c1a), to(#7f310e));
    background: -moz-linear-gradient(top, #f05c1a, #7f310e);
    background: linear-gradient(to bottom, #f05c1a, #7f310e);
    color: #ffffff;
    text-decoration: none;
}
.button:active {
    background: #6a290c;
    background: -webkit-gradient(linear, left top, left bottom, from(#6a290c), to(#6a290c));
    background: -moz-linear-gradient(top, #6a290c, #6a290c);
    background: linear-gradient(to bottom, #6a290c, #6a290c);
}