@media screen {
	.checkbox {
		display: none;
	}
	
	#printNotes, #printDate {
		display: none;
	}
}

@media print {
	/* Hide interactive things, clicking paper doesn't do anything. */
	.removeOil, #addOil, #addFoof, .part, #date {
		display: none;
	}
	
	/* Hide input borders. */
	input, textarea {
		border: none;
	}
	
	@page {
		margin: 0.5in;  /* This affects the margin in the printer settings */
	}
	html {
		margin: 0;  /* This affects the margin on the html before sending to printer */
	}
	
	#toolbar {
		display: none;
	}
	
	/* Footnotes at bottom of page. */
	#footnotes {
		position: absolute;
		bottom: 0;
		font-size: xx-small;
	}
	
	#notes {
		display: none;
	}
}
