/*
 * Full reset. This will bring each browser to a "state of nature" where
 * it is no longer brutish or soiled with hubris bestowed to it by
 * its designers. 
 *
 * This reset was Frankensteined (an official verb) from many "CSS Reset"
 * solutions out there on the web made by Dave Woods and others.
 */


html, body, address, blockquote, div, dl, form, h1, h2, h3, h4, h5, h6, ol, p, pre, u, em, table, ul, dd, dt, li, tbody, td, tfoot, th, thead, tr, button, del, ins, map, object, a, abbr, acronym, b, bdo, big, br, cite, code, dfn, em, i, img, kbd, q, samp, small, span, strong, sub, sup, tt, var, legend, fieldset {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	background: transparent;
}

/* Consistent vertical text positioning. */

body {	
	line-height: 1; 
	font-size: 100%;
}

/* No surprises with list styles. */

ol, ul { list-style: none; }

/* Don't do strange things with quotes. */

q:before, q:after { content:'';}

/* Input areas are inconsistent enough with differing UI standards and whatnot.
 * Why make things worse by allowing a browser to run its own random course? */

input, button, textarea, select, optgroup, option {
	font: inherit inherit;
	font-style:inherit;
	font-weight:inherit; }

/* Not sure what "border-collapse" does, but I'm sure it will make tables
 * less unwieldly */

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

/* Not sure I like this one. */

:focus { outline: 0; }

