Index: includes/css.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/ctools/includes/css.inc,v
retrieving revision 1.8
diff -u -r1.8 css.inc
--- includes/css.inc	12 May 2009 00:41:10 -0000	1.8
+++ includes/css.inc	30 May 2009 08:48:34 -0000
@@ -297,7 +297,7 @@
       }
 
       // Disassemble the declaration, check it and tuck it into an array.
-      $disassembled_css[$selector_str] = _ctools_css_disassemble_declaration(strtolower($declaration));
+      $disassembled_css[$selector_str] = _ctools_css_disassemble_declaration($declaration);
     }
   }
   return $disassembled_css;
@@ -310,7 +310,7 @@
   // pass. Note that this handles 0, 1, or more valid selectors gracefully.
   foreach ($selectors as $key => $selector) {
     // Replace un-needed characters and do a little cleanup.
-    $selector = preg_replace("/[\n|\t|\\|\s]+/", ' ', strtolower(trim($selector)));
+    $selector = preg_replace("/[\n|\t|\\|\s]+/", ' ', trim($selector));
     // Make sure this is still a real selector after cleanup.
     if (!empty($selector)) {
       $selectors[$key] = $selector;
@@ -339,7 +339,7 @@
         continue;
       }
       // Clean up the current property-value pair.
-      $propval_pair = preg_replace("/[\n|\t|\\|\s]+/", ' ', strtolower(trim($propval_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);
       // If the property survived, toss it onto the stack.

