Index: template.php
===================================================================
RCS file: /cvs/drupal-contrib/contributions/themes/blueprint/template.php,v
retrieving revision 1.15.2.1.2.23
diff -u -r1.15.2.1.2.23 template.php
--- template.php	22 Mar 2010 14:31:28 -0000	1.15.2.1.2.23
+++ template.php	12 May 2010 18:52:23 -0000
@@ -14,6 +14,24 @@
  * @param $vars
  *   A sequential array of variables passed to the theme function.
  */
+function blueprint_preprocess(&$variables, $hook) {
+  if (module_exists('libraries')) {
+    $path = module_invoke('libraries', 'get_path', 'blueprint');
+  }
+  else {
+    $path = drupal_get_path('theme', 'blueprint');
+  }
+  drupal_add_css($path.'/blueprint/screen.css', 'theme', 'screen,projection');
+  drupal_add_css($path.'/blueprint/print.css', 'theme', 'print');
+}
+
+
+/**
+ * Intercept page template variables
+ *
+ * @param $vars
+ *   A sequential array of variables passed to the theme function.
+ */
 function blueprint_preprocess_page(&$vars) {
   global $user;
   $vars['path'] = base_path() . path_to_theme() .'/';

