diff --git a/modules/taxonomy/taxonomy.admin.css b/modules/taxonomy/taxonomy.admin.css
index e69de29..fcfef82 100644
--- a/modules/taxonomy/taxonomy.admin.css
+++ b/modules/taxonomy/taxonomy.admin.css
@@ -0,0 +1,10 @@
+
+tr.taxonomy-term-preview {
+  background-color: #EEE;
+}
+tr.taxonomy-term-divider-top {
+  border-bottom: none;
+}
+tr.taxonomy-term-divider-bottom {
+  border-top: 1px dotted #CCC;
+}
diff --git a/modules/taxonomy/taxonomy.admin.inc b/modules/taxonomy/taxonomy.admin.inc
index 2440a28..c50ac73 100644
--- a/modules/taxonomy/taxonomy.admin.inc
+++ b/modules/taxonomy/taxonomy.admin.inc
@@ -558,7 +558,7 @@ function theme_taxonomy_overview_terms($variables) {
     drupal_add_tabledrag('taxonomy', 'depth', 'group', 'term-depth', NULL, NULL, FALSE);
     drupal_add_js(drupal_get_path('module', 'taxonomy') . '/taxonomy.js');
     drupal_add_js(array('taxonomy' => array('backStep' => $back_step, 'forwardStep' => $forward_step)), 'setting');
-    drupal_add_css(drupal_get_path('module', 'taxonomy') . '/taxonomy.css');
+    drupal_add_css(drupal_get_path('module', 'taxonomy') . '/taxonomy.admin.css');
   }
   drupal_add_tabledrag('taxonomy', 'order', 'sibling', 'term-weight');
 
diff --git a/modules/taxonomy/taxonomy.css b/modules/taxonomy/taxonomy.css
deleted file mode 100644
index 36cd641..0000000
--- a/modules/taxonomy/taxonomy.css
+++ /dev/null
@@ -1,13 +0,0 @@
-
-tr.taxonomy-term-preview {
-  background-color: #EEE;
-}
-tr.taxonomy-term-divider-top {
-  border-bottom: none;
-}
-tr.taxonomy-term-divider-bottom {
-  border-top: 1px dotted #CCC;
-}
-.taxonomy-term-description {
-  margin: 5px 0 20px;
-}
diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module
index d7a5e9a..8eb2ad2 100644
--- a/modules/taxonomy/taxonomy.module
+++ b/modules/taxonomy/taxonomy.module
@@ -745,7 +745,7 @@ function taxonomy_term_view($term, $view_mode = 'full', $langcode = NULL) {
     );
   }
 
-  $build['#attached']['css'][] = drupal_get_path('module', 'taxonomy') . '/taxonomy.css';
+  $build['#attached']['css'][] = drupal_get_path('module', 'taxonomy') . '/taxonomy.theme.css';
 
   // Allow modules to modify the structured term.
   $type = 'taxonomy_term';
diff --git a/modules/taxonomy/taxonomy.theme.css b/modules/taxonomy/taxonomy.theme.css
index e69de29..f60ff16 100644
--- a/modules/taxonomy/taxonomy.theme.css
+++ b/modules/taxonomy/taxonomy.theme.css
@@ -0,0 +1,3 @@
+.taxonomy-term-description {
+  margin: 5px 0 20px;
+}
