@import url('layout.css');
@import url('typography.css');

/*

PRINT STYLESHEET

Use this stylesheet to control layout of the page when printed.

Parent Website:
Author: Graham C Morley 2008
Last Revision Date:


*/

*{

	/* First let's reset all padding and margins to give us an equal work area cross platform */
	margin: 0px;
	padding: 0px;

}

html{

	/* Now reset the font size so we can use EM sizing cross platform */
	font-size: 62.5%; 

}

body{

	/* Now we can specify EM sizing where 1.1em = 11px, 1.4em = 14px etc */
	font: 1.1em/1.4em Arial, Helvetica, sans-serif;

}

table, th, td, li li, li p, td p, blockquote p {

	/* These specifications should prevent incorrectly font sizes due to inheritance */
	font-size:1em
	
}
