@charset "utf-8";
/* 	CSS  for Printing
	Version 1.0
	Modified 3/7/2017 - RPWK

*/

@media print
{
	@page
	{
		margin: 2cm
	}
	
	body
	{
		font: 12pt Cambria, Times, "Times New Roman", "serif";
		line-height: 1.3;
		background: #fff !important;
		color: #000;
	}
	
	h1, h2, h3, h4, h5, h6
	{
		font-family: calibri, arial, "sans-serif";
	}
	
	a
	{
    	page-break-inside:avoid
	}
	
	blockquote
	{
		page-break-inside: avoid;
	}
	
	h1, h2, h3, h4, h5, h6
	{
		page-break-after:avoid;
		page-break-inside:avoid
	}
	
	img
	{
		page-break-inside:avoid; 
		page-break-after:avoid;
		display: none;
	}
	
	table, pre
	{
		page-break-inside:avoid
	}
	
	ul, ol, dl 
	{
		page-break-before:avoid
	}
	
	/* Displaying link color and link behaviour */
	a:link, a:visited, a
	{
		background: transparent;
		color: #008cb8;
		font-weight: bold;
		text-decoration: underline;
		text-align: left;
	}

	a 
	{
		page-break-inside:avoid
	}
	
	/* Videos disappear, and removes the iframes' whitespace to zero. */
	.entry iframe, ins 
	{
		display: none;
		width: 0;
		height: 0;
		overflow: hidden;
		line-height: 0pt;
		white-space: nowrap;
	}
	.embed-youtube, .embed-responsive 
	{
		position: absolute;
		height: 0;
		overflow: hidden;
	}
	
	/* Hides unnecessary elements for the print */
 
	#global-header, #global-breadcrumb, footer, #content aside, .related-container
	{
		display: none;
	}
	
	/* Adding custom messages before and after the content 	*/
	#content:after
	{
		content: "\ © University of York";
		color: #999;
		font-size: 1em;
		padding-top: 30px;
	}

}

	