.button {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    padding: 10px 10px 10px 10px;
    border: 1px solid #2b5782;
    border-radius: 3px;
    background: #52a3f5;
    background: -webkit-gradient(linear, left top, left bottom, from(#52a3f5), to(#2b5782));
    background: -moz-linear-gradient(top, #52a3f5, #2b5782);
    background: linear-gradient(to bottom, #52a3f5, #2b5782);
    text-shadow: #1a334d 1px 1px 1px;
    font: normal normal bold 12px arial;
    color: #ffffff;
    text-decoration: none;
}
.button:hover,
.button:focus {
    border: 1px solid #336699;
    background: #62c4ff;
    background: -webkit-gradient(linear, left top, left bottom, from(#62c4ff), to(#34689c));
    background: -moz-linear-gradient(top, #62c4ff, #34689c);
    background: linear-gradient(to bottom, #62c4ff, #34689c);
    color: #ffffff;
    text-decoration: none;
}
.button:active {
    background: #2b5782;
    background: -webkit-gradient(linear, left top, left bottom, from(#2b5782), to(#2b5782));
    background: -moz-linear-gradient(top, #2b5782, #2b5782);
    background: linear-gradient(to bottom, #2b5782, #2b5782);
}
a.button:visited {
    color: #ffffff;
}
a.button:link {
    color: #ffffff;