#mybutton {
	background:linear-gradient(to bottom, #01295e 2%, #004d8d 100%);
	background-color:#01295e;
	border-radius:5px;
	text-align:center;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:20px;
	padding:2px, 2px;
	text-decoration:none;
	}
#mybutton:hover {
	background:linear-gradient(to bottom, #004d8d 2%, #01295e 100%);
	background-color:#004d8d;
}
#mybutton:active {
	position:relative;
	top:1px;
}
