/* CSS Document */
.button {
	background: -o-linear-gradient(top, #3e779d, #65a9d7);
	background: -webkit-linear-gradient(top, #3e779d, #65a9d7);
	background: -moz-linear-gradient(top, #3e779d, #65a9d7);
	background: -ms-linear-gradient(top, #3e779d, #65a9d7);
	background: -o-linear-gradient(top, #3e779d, #65a9d7);
	padding:2px 8px;

   -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-family: Arial, Helvetica, sans-serif;
	text-decoration: none;
	vertical-align: middle;
	background-image: url(bg.png);
	height: 25px;
	background-repeat: no-repeat;
   }
.button:hover {
	color: #ffffff;
	background-image: url(bg_hover.png);
	background-repeat: no-repeat;
   }
.button:active {
  /* border-top-color: #999999;*/
  /* background: #1b435e;*/
   }