.downloadbox a {
	background-image: -webkit-gradient(
	    linear,
	    left bottom,
	    left top,
	    color-stop(0, rgb(58,143,30)),
	    color-stop(1, rgb(106,230,43))
	);
	background-image: -moz-linear-gradient(
	    center bottom,
	    rgb(58,143,30) 0%,
	    rgb(106,230,43) 100%
	);
}

.downloadbox a:hover {
	background-image: -webkit-gradient(
	    linear,
	    left bottom,
	    left top,
	    color-stop(0, rgb(38,123,10)),
	    color-stop(1, rgb(86,220,23))
	);
	background-image: -moz-linear-gradient(
	    center bottom,
	    rgb(38,123,10) 0%,
	    rgb(86,220,23) 100%
	);
}