
/* Reset CSS: resets the DOM */



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, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
ul, li, dl, dt, dd, ol
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	overflow: visible; /*get rid of scroll bars in IE */
	padding: 0; /*remove padding */
	margin: 0; /* remove margins */
	border: 0; /* remove borders */
	outline: 0; /* remove outlines */
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}

a.img { border: none; .... } /* gets rid of border around imgs in IE */

body, html { overflow:auto; }

/* remember to define focus styles! */
:focus { outline: 0; } /* supresses link outlining */

body { line-height: 1; color: black; background: white; }

ol, ul { list-style: none; }

/* tables still need 'cellspacing="0"' in the markup */
table { border-collapse: separate; border-spacing: 0; }

/* left-aligned and normal-weight */
caption, th, td { text-align: left; font-weight: normal; }

/* suppresses quotes by way of the quotes property */
blockquote:before, blockquote:after, q:before, q:after { content: ""; }

blockquote, q { quotes: "" ""; }


/* Miscellaneous conveniences: */
form label { cursor: pointer }

fieldset { border: none; }

input, select, textarea { font-size: 100%; font-family: inherit; }





