/*
	reset.css
	Version 0.1

	Neutralises default browser stylesheets.
	Notes:
	http://meyerweb.com/eric/thoughts/2004/09/15/emreallyem-undoing-htmlcss/
	http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/
	http://tantek.com/log/2004/09.html#d06t2354
	
*/

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, img, ins, kbd, q, samp, strong, sub, sup, 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:100%;
	font-family:inherit;
}
/* remember to define focus styles! */
:focus {
	outline: 0px;
}
address {font-style:normal;}
body {
	line-height:1;
	color:black;
	background:white;
}
ol, ul {
	list-style:none;
}
/* tables need 'cellspacing="0"' in their html markup */
table {
	border-collapse:separate;
	border-spacing:0px;
}
caption, th, td {
	text-align:left;
	font-weight:normal;
}
blockquote:before, blockquote:after, q:before, q:after {
	content:"";
}
blockquote, q {
	quotes:"" "";
}

// end