.button {
	background-color: #a9a9a9;
	transition: .3s;
}

.button:visited {
	background-color: #a9a9a9;
}

.button:hover {
	background-color: #838383;
	transition: .3s;
}

.button:active {
	background-color: #9d9d9d;
	transition: .3s;
}

.button {
	display: block;
	height: 60px;
	width: 120px;
	border-radius: 10px;
}

p.text{
	font-weight: bold;
	text-decoration: none;
	color: white;
	text-align: center;
	line-height: 60px;
}

a:link.text{
	text-decoration: none;
}

a:hover.text{
	text-decoration: none;
}

a:visited.text{
	text-decoration: none;
}

a:active.text{
	text-decoration: none;
}

@media print {
	
	.button {
		background-color: #a9a9a9;
		transition: .3s;
	}
	
	.button:visited {
		background-color: #a9a9a9;
	}
	
	.button:hover {
		background-color: #5b5b5b;
		transition: .3s;
	}
	
	.button:active {
		background-color: #7e7c7c;
		transition: .3s;
	}
	
	.button {
		display: inline-block;
		height: 45pt;
		width: 90pt;
		border-radius: 7.5pt;
	}
	
	p.text{
		font-weight: bold;
		text-decoration: none;
		color: white;
		text-align: center;
		line-height: 45pt;
	}
	
	a:link.text{
		text-decoration: none;
	}
	
	a:hover.text{
		text-decoration: none;
	}
	
	a:visited.text{
		text-decoration: none;
	}
	
	a:active.text{
		text-decoration: none;
	}

}