/**
* Print stylesheet for hutchcc.edu
* @version         1.0
* @lastmodified    9.16.2021
* Resource: https://www.jotform.com/blog/css-perfect-print-stylesheet-98272/
*/

@media print {
		
	body { 
		background: white  ; 
		font: 14pt Georgia, "Times New Roman", Times, serif;
		color:black;
		line-height:1.4;
	} 
	
	@page {
		margin: 2cm;
		}

	img .uk-cover{
		max-height: 50px;
	}
	.hcc-icon-xsmall, .hcc-icon-small, .hcc-icon-medium, .hcc-icon-large, .hcc-icon-xlarge, .hcc-icon-title, .hcc-icon-title-bluebg {
		display: none;}
	
	blockquote, ul {
		margin: 0;
		}

	a::after {
		content: " (" attr(href) ")";
	}

	#menu { 
		display: none; 
	} 

	.rocketchat-widget{
		display: none;
	}

	header, footer, nav, form, iframe, .menu, img {
		display: none;
	}
}





