/* CSS Document */
.button {
	border-top: 3px solid #ffffff;
	background: #300505;
	background: -webkit-gradient(linear, left top, left bottom, from(#ff0808), to(#300505));
	background: -webkit-linear-gradient(top, #ff0808, #300505);
	background: -moz-linear-gradient(top, #ff0808, #300505);
	background: -ms-linear-gradient(top, #ff0808, #300505);
	background: -o-linear-gradient(top, #ff0808, #300505);
	padding: 10px 21px;

   -webkit-border-radius: 40px;
   -moz-border-radius: 40px;
	border-radius: 40px;

   -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: 21px;
	position: relative;
	font-family: Helvetica, Arial, Sans-Serif;
	text-decoration: none;
	width:118px;
	height: 35;
	background-color: #FFFFFF;
   }
.button:hover {
   border-top-color: #cf1717;
   background: #cf1717;
   color: #f7f7f7;
   }
.button:active {
   border-top-color: #f7e6f7;
   background: #f7e6f7;
   }
