--- ckeditor.module.org	2010-09-27 07:49:01.000000000 -0500
+++ ckeditor.module	2010-11-02 14:09:49.000000000 -0500
@@ -946,7 +946,13 @@ function ckeditor_process_textarea($elem
             $css_files[] = $host . $themepath .'style.css' . $query_string;
           }
         }
-        $css_files[] = $module_full_path ."/ckeditor.css" . $query_string;
+        //Grab default ckeditor.css from module and theme (if it exists)
+        if (file_exists($module_drupal_path .'/ckeditor.css')) {
+          $css_files[] = $module_full_path .'/ckeditor.css' . $query_string;
+        }
+        if (file_exists($themepath . 'ckeditor.css')) {
+          $css_files[] = $host . $themepath .'ckeditor.css' . $query_string;
+        }
         break;
 
       case 'self':
