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

/*

DEFAULT STYLESHEET

Use this stylesheet to control layout of the page. Do not use for anything related to type.

Parent Website: Studio Mister
Author: Graham C Morley
Last Revision Date: 21st October 2009


*/

*{

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

}

html{

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

}

body{

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

}

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

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

img{

	border: 0;

}