﻿/* ============================================================
   PRINT.CSS
   Print media styles.
   NOTE: removed a dead ".fa { display:none }" rule left over
   from the Font Awesome removal (no .fa elements exist anymore).
   Also flattened a redundant nested "@media print" block that
   was present in the original PrintStyle.css.
   ============================================================ */

@media print
{
	/* PAGE SETUP */
	@page
	{
		size: 5.5in 8.5in;
		margin: 70pt 60pt 70pt;
	}

	@page:first
	{
		size: 5.5in 8.5in;
		margin: 0;
	}
	/* END PAGE SETUP */


	/* PRINT LAYOUT RULES */
	h1, h2, h3, h4, h5
	{
		page-break-after: avoid;
	}

	table, figure
	{
		page-break-inside: avoid;
	}

	.hide-on-print
	{
		display: none !important;
	}

	img
	{
		width: auto !important;
		height: auto !important;
	}

	.card, .card-body
	{
		float: left !important;
		width: 100% !important;
	}
	/* END PRINT LAYOUT RULES */


	/* BOOTSTRAP COLUMN WIDTHS FOR PRINT */
	.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6,
	.col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12
	{
		float: left;
	}

	.col-md-1
	{
		width: 8%;
	}

	.col-md-2
	{
		width: 16%;
	}

	.col-md-3
	{
		width: 25%;
	}

	.col-md-4
	{
		width: 33%;
	}

	.col-md-5
	{
		width: 42%;
	}

	.col-md-6
	{
		width: 50%;
	}

	.col-md-7
	{
		width: 58%;
	}

	.col-md-8
	{
		width: 66%;
	}

	.col-md-9
	{
		width: 75%;
	}

	.col-md-10
	{
		width: 83%;
	}

	.col-md-11
	{
		width: 92%;
	}

	.col-md-12
	{
		width: 100%;
	}
	/* END BOOTSTRAP COLUMN WIDTHS FOR PRINT */
}
