/*
	reset.css
	> removes all the default crappy styles from the brower so that way the pages look HOT!
*/

/* NORMALIZES MARGIN, PADDING */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, p, blockquote, th, td { margin: 0; padding: 0; }

/* NORMALIZES FONT-SIZE FOR HEADERS */
h1, h2, h3, h4, h5, h6 { font-size: 100%; font-weight: normal; }

/* REMOVES LIST-STYLE FROM LISTS */
ol, ul { list-style: none; }

/* NORMALIZES FONT-STYLE AND FONT-WEIGHT TO NORMAL */
address, caption, cite, code, dfn, em, strong, th, var { font-style: normal; font-weight: normal; }

/* COLLAPSES BORDERS FOR TABLES */
table { border-collapse: collapse; border-spacing: 0; }

/* REMOVES BORDER FROM FIELDSET AND IMG */
fieldset, img { border: 0; }

/* LEFT ALIGNS TEXT IN CAPTION AND TH */
caption, th { text-align: left; }

/* REMOVES QUOTATION MARKES FROM Q */
q:before,  q:after { content:''; }

