Index: includes/css.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/ctools/includes/css.inc,v
retrieving revision 1.10.2.4
diff -u -p -r1.10.2.4 css.inc
--- includes/css.inc	16 Jul 2010 20:44:31 -0000	1.10.2.4
+++ includes/css.inc	20 Sep 2010 08:50:55 -0000
@@ -368,10 +368,11 @@ function _ctools_css_disassemble_declara
       // Clean up the current property-value pair.
       $propval_pair = preg_replace("/[\n|\t|\\|\s]+/", ' ', trim($propval_pair));
       // Explode the remaining fragements some more, but clean them up first.
-      list($property, $value) = explode(':', $propval_pair);
+      $property_value = explode(':', $propval_pair);
+      $property = trim(array_shift($property_value));
       // If the property survived, toss it onto the stack.
       if (!empty($property)) {
-        $formatted_statement[trim($property)] = trim($value);
+        $formatted_statement[$property] = trim(implode('', $property_value));
       }
     }
   }
