/* CSS */
.button {
	color: #FFFFFF;
	background: linear-gradient(#5B5B5B, #FF8E1D 90%);
	font-weight: bold;
	border: 2px outset #000000;
	width: 100px;
}
 
.button:hover {
	border: 2px inset #000000;
}

.buttonLarge {
	color: #FFFFFF;
	background: linear-gradient(#5B5B5B, #FF8E1D 90%);
	font-weight: bold;
	border: 2px outset #000000;
	width: 160px;
}
 
.buttonLarge:hover {
	border: 2px inset #000000;
}

.buttonLargeLarge {
	color: #FFFFFF;
	background: linear-gradient(#5B5B5B, #FF8E1D 90%);
	font-weight: bold;
	border: 2px outset #000000;
	width: 200px;
}
 
.buttonLargeLarge:hover {
	border: 2px inset #000000;
}

.buttonMini {
	color: #FFFFFF;
	background: linear-gradient(#5B5B5B, #FF8E1D 90%);
	font-weight: bold;
	border: 2px outset #000000;
	width: 60px;
}
 
.buttonMini:hover {
	border: 2px inset #000000;
}