/* Bring in the Default CSS for the website */
@import url('main.css') screen;
@import url('main_Print.css') print;

@media screen{
	article{
		width: 100%;
	}
	.container{
		display: block;
		width: 33%;
		padding: 0 1em 0 1em;
		box-sizing: border-box;
	}
	.fRight{
		float: right;
	}
	.fLeft{
		float: left;
	}
	.clearAll{
		clear: both;
	}
		/* Image is from https://commons.wikimedia.org/wiki/File:Bullet-green.png
		 * Used via Public Domain */
	ol ul {
		list-style-image: url('../../img/Bullet-green-16px.png');
	}
}
@media print{
	article{
		width: 100%;
	}
	.container{
		display: block;
		width: 100%;
		padding: 0 10pt 0 10pt;
		box-sizing: border-box;
		orphans: 5;
		widows: 5;
		page-break-before: always;
	}
		/* Image is from https://commons.wikimedia.org/wiki/File:Bullet-green.png
		 * Used via Public Domain */
	ol ul {
		list-style-image: url('../../img/Bullet-green-16px.png');
	}
}