/* https://css-tricks.com/examples/hrs/ */
div#content hr {
	border: 0;
	height: 0; /* Firefox... */
	box-shadow: 0 0 10px 1px black;
}
div#content hr:after { /* Not really supposed to work, but does */
	content: "\00a0"; /* Prevent margin collapse */
}
