@charset "UTF-8";
@media print 
{ 
	/* Next element from https://stackoverflow.com/questions/1542320/margin-while-printing-html-page */
	body 
	{ /* this affects the margin on the content before sending to printer */ 
	    margin: 0px; 
	} 
	*,a:visited {color:black;background:transparent;}
	a { text-decoration:none;color:black; }
	a.show {}
	.dontprint, .dontprint * { display:none; }
	tr.print_this {display:table-row;}
	thead { display:table-header-group; } 
	tr,img { page-break-inside:avoid; }
	p, h2, h3 { orphans:3;widows:3;}
	h2, h3 { page-break-after:avoid;color:#000000; }
	@page {size:letter;}
	td {border:1px solid black;}
	.borderless {border:none;}
	.wide { page: landscape;}
	table.printlim {max-width:6.5in;}
	#container,#foot,.foot {min-width:5in;}
	#head { margin:auto;}
	img { max-width:100% !important; }
	div.scrollable
	{        /* overrides some scrollable divs in PersonnelFile.php */
		overflow:visible;
		max-height:none;
	}
	/* Next element from https://stackoverflow.com/questions/1542320/margin-while-printing-html-page */
	@page  
	{
		size: auto;   /* auto is the initial value */ 
		/* Next element from https://stackoverflow.com/questions/1542320/margin-while-printing-html-page */
	    /* this affects the margin in the printer settings (was 4x 25mm) */ 
		margin: 0.5in ; 
	}
	@page  
	{
		/* standard footer when printing a page */
		:footer { content: "Page " decimal(pageno) " of " decimal(pages) ; }
	}
}
