


.button {
   border-top: 1px solid #cb0000;
   background: #f24d41;
   background: -webkit-gradient(linear, left top, left bottom, from(#cc0000), to(#f24d41));
   background: -webkit-linear-gradient(top, #cc0000, #f24d41);
   background: -moz-linear-gradient(top, #cc0000, #f24d41);
   background: -ms-linear-gradient(top, #cc0000, #f24d41);
   background: -o-linear-gradient(top, #cc0000, #f24d41);
   padding: 9px 18px;
   -webkit-border-radius: 10px;
   -moz-border-radius: 10px;
   border-radius: 10px;
   -webkit-box-shadow: rgba(0,0,0,1) 0 1px 0;
   -moz-box-shadow: rgba(0,0,0,1) 0 1px 0;
   box-shadow: rgba(0,0,0,1) 0 1px 0;
   text-shadow: rgba(0,0,0,.4) 0 1px 0;
   color: white;
   font-size: 15px;
   font-family: 'Lucida Grande', Helvetica, Arial, Sans-Serif;
   text-decoration: none;
   vertical-align: middle;
   }
.button:hover {
   border-top-color: #b81e16;
   background: #b81e16;
   color: #ccc;
   }
.button:active {
   border-top-color: #cc0000;
   background: #cc0000;
   }