/* 
FILENAME: reset.css
DESCRIPTION: This stylesheet nukes and resets all elements to a lowest common denominator for all browsers
AUTHOR: Matthew Anderson > manderson@onehub.com
LAST MODIFIED DATE: 08.22.2008
LAST MODIFIED BY: ma
*/

* { /* global nuke and reset */
  background: transparent;
	margin: 0;
	padding: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
}

body {
	line-height: 1;
}

a, :focus { /* Removes annoying dotted lines from links */
	outline: none;
}

h1, h2, h3, h4, h5, h6, input, select, textarea { /* header and form field text-scaling */
	font-size: 100%;
}

ul, ol { /* apply any default list styling */
  list-style: none;
	margin-left: 2.5em;
	margin-bottom: 18px;
}

li, dd, blockquote { /* apply any default left padding */
	padding-left: 1em;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after { /* allows q tag to be used semantically by removing end quotes from being automatically displayed by newer browsers */
	content: "";
	content: none;
}

form, fieldset, legend, img { /* maintain consistency */
	border: 0;
}

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