@media print {
	@page { 
		margin-top: 0;  /* supresses the default header */
		margin-bottom: 0;  /* supresses the default footer */
	}

	
	body::before {
		display: block;	  /* change to block text (default is inline) */
		text-align: center;	
		white-space: pre;
		content: "Arpeggio Generator \A Copyright Dave Entenman 2019, 2020";   /* The '\A' is .css for line-break */
		}
   
		
	body { 
		padding-top: 72px; 
		padding-bottom: 72px;
		}
		
	body::after {
	display: block;
	text-align: center;	
	content: "";


}