/*********************************************************************/
/*                                                                   */
/*	reset.css                                                        */
/*  This file resets the default paddding and margins for any        */
/*  browser to 0.  The settings are then set to consistent default   */
/*  values.                                                          */
/*  Insert this file into either the global site style sheet or      */
/*  directly into each page.                                         */
/*                                                                   */
/*  Global whitespace reset method credited to Andrew Krespanis      */
/*                                                                   */
/*********************************************************************/

/* Eliminate default white space for all elements */

*
{
	padding: 0;
	margin: 0;
}

/* Set a custom default for white space */

body
{
	padding: 5px 0;
}

h1,h2,h3,h4,h5,h6,p,pre,blockquote,form,label,ul,ol,dl,fieldset,address
{
	padding: 5px 10px;
}

li, dd, blockquote
{
	margin-left: 20px;
}

fieldset
{
	padding: 0;
	border: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

img
{
	border: none;
}