*
button {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #fff;
	padding: 10px 20px;
	border: 2px solid #000;
	cursor: pointer;

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

	background:-webkit-linear-gradient(top, #a3a3a3, #047904);
	background:-moz-linear-gradient(top, #a3a3a3, #047904);
	background: linear-gradient(top, #a3a3a3, #047904);

	-webkit-box-shadow: 5px 5px 3px rgba(4, 121, 4,0.5);
	-moz-box-shadow: 5px 5px 3px rgba(4, 121, 4,0.5);
	box-shadow: 5px 5px 3px rgba(4, 121, 4,0.5);

	-webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

button:hover {
  background: -webkit-linear-gradient(top, #acc7a3, #11e91b);
  background: -moz-linear-gradient(top, #acc7a3, #11e91b);
  background: linear-gradient(top, #acc7a3, #11e91b);
}

button:active {
  background: -webkit-linear-gradient(top, #858565, #0985ce);
  background: -moz-linear-gradient(top, #858565, #0985ce);
  background: linear-gradient(top, #858565, #0985ce);
}

version {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: rgb(121, 10, 10);
	padding: 10px 20px;
	cursor: pointer;

	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}
