/* ****START**** Tech Pubs standard for printing nested ordered lists 10/25/2017 Trevor */
@media print{
	body, p, h1, h2, h3, h4, ol, ul, li, a, tr, td, th{
		color:#000;
		font-family:Arial, Helvetica, sans-serif;
	}
	ol{
/*		counter-reset:list; --1686-- */
	} 
	ol ol{list-style:upper-alpha;}
	ol ol ol > li{list-style:none;}
	ol ol ol > li:before{
		content:"("counter(list, decimal) ") ";
		counter-increment:list;
	}
	ol ol ol ol > li{list-style:none;}
	ol ol ol ol > li:before{
		content:"("counter(list, lower-alpha) ") ";
		counter-increment:list;
	}
	hr{display:none;}
	/* ****START**** Global 5000-6000 CAS Troubleshooting Message Colors */
	.caution{color:#fc6;}
	.warning{color:#f00;}
	.advisory{color:#0ff;}
	.status{color:#fff;}
	.warning, .caution, .advisory, .status{
		background-color:#000 !important;
		font-weight:bold;
		padding:10px;
		text-align:center;
		text-transform:uppercase;
	}
}
