/*******************************
 *
 *	RESET.CSS
 *
 *  Version: 1.0
 *
 *	Authors: 
 *	The Roundhouse
 *  Tom Knowles / Dan Nisbet / Mike Harris / Paul Lewis
 *
 *  Description:
 *
 *	This CSS resets all the padding
 *	and margin of the different tags.
 *	This should mean that the browsers 
 *	don't render the same tags differently.
 */
 
html, body, ul, ol, li, p, blockquote, q,
h1, h2, h3, h4, h5, h6, fieldset, legend,
form, label, a, div, img, dd, dt, dl, input
{
	margin: 0;
	padding: 0;
	border: 0;
}


