/******************************************\
 *             Reset Styles               *
\******************************************/

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,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, input, button {
	margin: 0;
	padding: 0;
	border: none;
	/* outline: 0; -- do not use in deference to keyboard users */
	font-size: 100%;
	vertical-align: top;
	background: transparent;
	line-height: 1;
}

body {
	background-color: #fff;
	color: #000;
	font-family: Helvetica, Arial, sans-serif;
	/*
		This sets the font of all elements to 10px. Browsers default to 16px.
		16 * .625 = 10. This makes using ems much easier. 1em = 10px.
		1.2em = 12px. Remember inheritance.
	*/
	font-size: 62.5%;
	line-height: 1;
}

abbr, acronym, fieldset, a img {
	border: none;
}

address, caption, cite, code, dfn, strong, th, var {
	font-style: normal;
	font-weight: normal;
}
b, strong {
	font-weight: bold;
}
i, em {
	font-style: italic;
}
/* Fixes spacing issues in IE. */
form {
	display: inline;
}

h1 { font-size: 3em; }
h2 { font-size: 2.5em; }
h3 { font-size: 2em; }
h4 { font-size: 1.4em; }
h5 { font-size: 1.2em; }
h6 { font-size: 1em; }

input, select, th, td { font-size: 1em; }

/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th {
	text-align: left;
}
q:before, q:after {
	content:'';
}
/* remember to highlight inserts somehow! */
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
textarea {
	overflow: auto; /* hides the scollbars which IE places inside of textareas */
}