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

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 {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	background: transparent;
}

img, a img, :link img, :visited img { border: none; }

ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}

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

/* remember to highlight inserts somehow! */
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}

/* Rarely used */
sup {
	position: relative;
	bottom: 0.3em;
	vertical-align: baseline;
}
sub {
	position: relative;
	bottom: -0.2em;
	vertical-align: baseline;
}
acronym, abbr {
	cursor: help;
	letter-spacing: 1px;
	border-bottom: 1px dashed;
}
/* remove italic */
address,abbr { font-style: normal }

/*
- Link from HTML to Bridge CSS file!!! OR Use PHP
	Use this (doubling media type does not allow NN4 to read CSS!!! @ Import is not supported by IE4 or less - no css!):
	<link rel="stylesheet" href="/css/style.css" type="text/css" media="screen,projection" />
		This uses:
		@import "header.css";
		@import "footer.css";
		@import 'hide-from-mac-ie5.css'; // single quotes hides from Mac/IE5
- Link styles for IE (IE6/IE7/IE8) in conditional comments!
- Printing:
	<link rel="stylesheet" href="/css/style-print.css" type="text/css" media="print" />
		Advanced (optional!):
			@import "header.css";
			@import "footer.css";
		Standart (hide what you want):
			 print styles *
			#container {}
			#header


- PHP CSS File
http://www.fiftyfoureleven.com/weblog/web-development/css/css-php-organized-optimized
* be sure and 'manually' deal with the caching - http://www.fiftyfoureleven.com/weblog/web-development/css/the-definitive-css-gzip-method
http://www.fiftyfoureleven.com/weblog/web-development/css/css-php-organized-optimized#comment-7

*/