/* Table of Contents  *******************************************************************

	Purpose
	Attribution
	Master Style Reset
		Remove Margins, Padding, Borders, etc and standardize fonts and position
		Remember to define focus styles!
		Body Basics
		List Basics
		Tables: still need 'cellspacing="0"' in the markup
		Fix elements that default center align
		Remove the default spaces
		Remove the default quote marks
		Set the base font to Monospace	

*****************************************************************************************	
*****************************************************************************************/

/* Purpose
--------------------------------------------------------------------------------------- */
/*
	The purpose of this style sheet is to reset standard page elements values to zero or
    to provide a known baseline that can be recognized during styling and styled against.
*/

/* Attribution
--------------------------------------------------------------------------------------- */
/*
	Thanks to Eric Meyers (http://www.meyerweb.com) for his work on this and the base code - I made 
	some minor changes and added some comments - so I guess this is an iteration. Lets call it a 
	working document - Regardless, this makes the whole process so much easier. 
	~sbell 09 30 2007 12:03a
*/

/* Master Style Reset
--------------------------------------------------------------------------------------- */

/* Remove Margins, Padding, Borders, etc and standardize fonts and position */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, dl, 
dt, dd, ol, ul, li, fieldset, form, label, 
legend, table, caption, tbody, tfoot, thead, 
tr, th, td {
	margin: 0px;
	padding: 0px;
	border: 0px;
	outline: 0px;
	font-weight: inherit;
	font-style: inherit;
	font-size: 1em;
	font-family: inherit;
	vertical-align: baseline;
}

/* Remember to define focus styles! */
:focus {
	outline: 0px;
}

/* Body Basics */
body {
	line-height: 1.4em;
	color: #333;
	background: #FAFAFA;
}

/* List Basics */
ol, ul {
	list-style: none;
}

/* Tables: still need 'cellspacing="0"' in the markup */
table {
	border-collapse: separate;
	border-spacing: 0px;
}

/* Fix elements that default center align  */
caption, th, td {
	text-align: left;
	font-weight: normal;
}

/* Remove the default spaces */
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}

/* Remove the default quote marks */
blockquote, q {
	quotes: "" "";
}

/* Set the base font to Monospace */
html {
	font-family: monospace;
}
