.myButton {
-moz-box-shadow:inset 0px 1px 0px 0px #000000;
-webkit-box-shadow:inset 0px 1px 0px 0px #000000;
box-shadow:inset 0px 1px 0px 0px #000000;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #b00000), color-stop(1, #400000) );
background:-moz-linear-gradient( center top, #b00000 5%, #400000 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#b00000', endColorstr='#400000');
background-color:#b00000;
-moz-border-radius:6px;
-webkit-border-radius:6px;
border-radius:6px;
border:1px solid #000000;
display:inline-block;
color:#000000;
font-family:Georgia;
font-size:20px;
font-weight:bold;
padding:6px 24px;
text-decoration:none;
text-shadow:1px 1px 0px #ff0000;
}.myButton:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #400000), color-stop(1, #b00000) );
background:-moz-linear-gradient( center top, #400000 5%, #b00000 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#400000', endColorstr='#b00000');
background-color:#400000;
}.myButton:active {
position:relative;
top:1px;
}