.button {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
	width: 250px;
    padding: 12px 24px;
    border: 1px solid #477697;
    border-radius: 9px;
    background: #74c2f7;
    background: -webkit-gradient(linear, left top, left bottom, from(#74c2f7), to(#477697));
    background: -moz-linear-gradient(top, #74c2f7, #477697);
    background: linear-gradient(to bottom, #74c2f7, #477697);
    -webkit-box-shadow: #79cbff 0px 0px 5px 0px;
    -moz-box-shadow: #79cbff 0px 0px 5px 0px;
    box-shadow: #79cbff 0px 0px 5px 0px;
    text-shadow: #33556c 1px 1px 1px;
    font: normal normal bold 20px Calibri;
    color: #ffffff;
    text-decoration: none;
}
.button:hover,
.button:focus {
    border: 1px solid #65a9d7;
    background: #8be9ff;
    background: -webkit-gradient(linear, left top, left bottom, from(#8be9ff), to(#558eb5));
    background: -moz-linear-gradient(top, #8be9ff, #558eb5);
    background: linear-gradient(to bottom, #8be9ff, #558eb5);
    color: #ffffff;
    text-decoration: none;
}
.button:active {
    background: #477697;
    background: -webkit-gradient(linear, left top, left bottom, from(#477697), to(#477697));
    background: -moz-linear-gradient(top, #477697, #477697);
    background: linear-gradient(to bottom, #477697, #477697);
}
