/* CSS */

.button {
	color: #000;
  background-color: FF8E1D;
  font-weight: bold;
	border: 2px outset #000;
	width: 100px;
}
 
.button:hover {
	border: 2px inset #000;
}

.buttonLarge {
	color: #000;
  background-color: FF8E1D;
  font-weight: bold;
	border: 2px outset #000;
	width: 160px;
}
 
.buttonLarge:hover {
	border: 2px inset #000;
}