Index: includes/webform.components.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/webform/includes/webform.components.inc,v
retrieving revision 1.53
diff -u -p -r1.53 webform.components.inc
--- includes/webform.components.inc	20 Oct 2010 03:05:13 -0000	1.53
+++ includes/webform.components.inc	18 Nov 2010 14:20:50 -0000
@@ -155,7 +155,7 @@ function theme_webform_components_form($
 
   $path = drupal_get_path('module', 'webform');
   $form['components']['#attached'] =  array(
-    'css' => array($path . '/css/webform-admin.css' => array('preprocess' => FALSE, 'weight' => CSS_DEFAULT + 1)),
+    'css' => array($path . '/css/webform-admin.css' => array('preprocess' => FALSE, 'group' => CSS_DEFAULT, 'weight' => 1)),
     'js' => array($path . '/js/webform-admin.js' => array('preprocess' => FALSE)),
   );
 
@@ -340,7 +340,7 @@ function webform_components_form_submit(
 
 function webform_component_edit_form($form, $form_state, $node, $component, $clone = FALSE) {
   drupal_set_title(t('Edit component: @name', array('@name' => $component['name'])), PASS_THROUGH);
-  drupal_add_css(drupal_get_path('module', 'webform') . '/css/webform-admin.css', array('weight' => CSS_THEME, 'preprocess' => FALSE));
+  drupal_add_css(drupal_get_path('module', 'webform') . '/css/webform-admin.css', array('group' => CSS_THEME, 'preprocess' => FALSE));
 
   // Print the correct field type specification.
   // We always need: name and description.
Index: includes/webform.emails.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/webform/includes/webform.emails.inc,v
retrieving revision 1.22
diff -u -p -r1.22 webform.emails.inc
--- includes/webform.emails.inc	22 Oct 2010 23:44:08 -0000	1.22
+++ includes/webform.emails.inc	18 Nov 2010 14:20:50 -0000
@@ -19,7 +19,7 @@ function webform_emails_form($form, $for
     '#tree' => TRUE,
     '#node' => $node,
     '#attached' =>  array(
-      'css' => array($path . '/css/webform-admin.css' => array('preprocess' => FALSE, 'weight' => CSS_DEFAULT + 1)),
+      'css' => array($path . '/css/webform-admin.css' => array('preprocess' => FALSE, 'group' => CSS_DEFAULT, 'weight' => 1)),
       'js' => array(
         $path . '/js/webform-admin.js' => array('preprocess' => FALSE),
         array(array('webform' => array('revertConfirm' => t('Are you sure you want to revert any changes to your template back to the default?'))), 'type' => 'setting'),
@@ -178,7 +178,7 @@ function webform_email_edit_form($form, 
   $form = array(
     '#tree' => TRUE,
     '#attached' =>  array(
-      'css' => array($path . '/css/webform-admin.css' => array('preprocess' => FALSE, 'weight' => CSS_DEFAULT + 1)),
+      'css' => array($path . '/css/webform-admin.css' => array('preprocess' => FALSE, 'group' => CSS_DEFAULT, 'weight' => 1)),
       'js' => array($path . '/js/webform-admin.js' => array('preprocess' => FALSE)),
     ),
   );
Index: includes/webform.report.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/webform/includes/webform.report.inc,v
retrieving revision 1.27
diff -u -p -r1.27 webform.report.inc
--- includes/webform.report.inc	29 Sep 2010 18:38:16 -0000	1.27
+++ includes/webform.report.inc	18 Nov 2010 14:20:50 -0000
@@ -82,7 +82,7 @@ function webform_results_submissions($no
   $element['#total_count'] = $count;
   $element['#pager_count'] = $pager_count;
   $element['#attached']['css'] = array(
-    drupal_get_path('module', 'webform') . '/css/webform-admin.css' => array('preprocess' => FALSE, 'weight' => CSS_DEFAULT + 1),
+    drupal_get_path('module', 'webform') . '/css/webform-admin.css' => array('preprocess' => FALSE, 'group' => CSS_DEFAULT, 'weight' => 1),
   );
 
   $element['table']['#theme'] = 'table';
@@ -221,7 +221,7 @@ function theme_webform_results_table_hea
  *   The number of results to be shown per page.
  */
 function theme_webform_results_table($variables) {
-  drupal_add_css(drupal_get_path('module', 'webform') . '/css/webform-admin.css', array('weight' => CSS_THEME, 'preprocess' => FALSE));
+  drupal_add_css(drupal_get_path('module', 'webform') . '/css/webform-admin.css', array('group' => CSS_THEME, 'preprocess' => FALSE));
 
   $node = $variables['node'];
   $components = $variables['components'];
@@ -426,7 +426,7 @@ function webform_results_download_form_s
  * Theme the output of the export form.
  */
 function theme_webform_results_download_form($variables) {
-  drupal_add_css(drupal_get_path('module', 'webform') . '/css/webform-admin.css', array('weight' => CSS_THEME, 'preprocess' => FALSE));
+  drupal_add_css(drupal_get_path('module', 'webform') . '/css/webform-admin.css', array('group' => CSS_THEME, 'preprocess' => FALSE));
 
   $form = $variables['form'];
 
@@ -437,7 +437,7 @@ function theme_webform_results_download_
  * Theme the output of the select list format radio buttons.
  */
 function theme_webform_results_download_select_format($variables) {
-  drupal_add_css(drupal_get_path('module', 'webform') . '/css/webform-admin.css', array('weight' => CSS_THEME, 'preprocess' => FALSE));
+  drupal_add_css(drupal_get_path('module', 'webform') . '/css/webform-admin.css', array('group' => CSS_THEME, 'preprocess' => FALSE));
 
   $element = $variables['element'];
   $output = '';
Index: templates/webform-submission-page.tpl.php
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/webform/templates/webform-submission-page.tpl.php,v
retrieving revision 1.4
diff -u -p -r1.4 webform-submission-page.tpl.php
--- templates/webform-submission-page.tpl.php	10 Apr 2010 22:02:12 -0000	1.4
+++ templates/webform-submission-page.tpl.php	18 Nov 2010 14:20:50 -0000
@@ -13,7 +13,7 @@
  * - $submission_information: The next submission ID.
  */
 
-drupal_add_css(drupal_get_path('module', 'webform') . '/css/webform-admin.css', array('weight' => CSS_THEME, 'preprocess' => FALSE));
+drupal_add_css(drupal_get_path('module', 'webform') . '/css/webform-admin.css', array('group' => CSS_THEME, 'preprocess' => FALSE));
 ?>
 
 <?php print $submission_navigation; ?>
