@import url('layout.css');
@import url('typography.css');

/*

DEFAULT STYLESHEET

Use this stylesheet to import additional stylesheets and reset the CSS model. Do not use for anything related to type or layout.

Parent Website:
Author: Graham C Morley
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.4em/1.7em Helvetica, Arial, sans-serif;
	background: #f16b24 url(../_img/glow.jpg) no-repeat top left;
	color: #000;

}

table, th, td, li li, li p, td p, blockquote p {

	/* These specifications should prevent incorrectly font sizes due to inheritance */
	font-size: 1em;
	
}

a img{

	border: 0;

}
