? reset_css.patch
Index: modules/system/reset.css
===================================================================
RCS file: modules/system/reset.css
diff -N modules/system/reset.css
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ modules/system/reset.css	8 Mar 2009 10:44:06 -0000
@@ -0,0 +1,42 @@
+/* $Id:$ */
+
+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,
+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;
+	font-weight: inherit;
+	font-style: inherit;
+	font-size: 100%;
+	font-family: inherit;
+	vertical-align: baseline;
+}
+body {
+	line-height: 1;
+	color: black;
+	background: white;
+}
+ol, ul {
+	list-style: none;
+}
+table {
+	border-collapse: separate;
+	border-spacing: 0;
+}
+caption, th, td {
+	text-align: left;
+	font-weight: normal;
+}
+blockquote:before, blockquote:after, q:before, q:after {
+	content: "";
+}
+blockquote, q {
+	quotes: "" "";
+}
Index: modules/system/system.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/system.module,v
retrieving revision 1.669
diff -u -p -r1.669 system.module
--- modules/system/system.module	8 Mar 2009 04:25:07 -0000	1.669
+++ modules/system/system.module	8 Mar 2009 10:44:08 -0000
@@ -780,6 +780,10 @@ function _system_themes_access($theme) {
  * Implementation of hook_init().
  */
 function system_init() {
+ 
+  // Add CSS reset 
+  drupal_add_css(drupal_get_path('module', 'system') . '/reset.css');
+
   // Use the administrative theme if the user is looking at a page in the admin/* path.
   if (arg(0) == 'admin' || (variable_get('node_admin_theme', '0') && arg(0) == 'node' && (arg(1) == 'add' || arg(2) == 'edit'))) {
     global $custom_theme;
