diff --git a/adaptivetheme/adaptivetheme.info b/adaptivetheme/adaptivetheme.info
index 3c8b04f..44ef175 100644
--- a/adaptivetheme/adaptivetheme.info
+++ b/adaptivetheme/adaptivetheme.info
@@ -1,4 +1,3 @@
-; $Id$
 
 ;----------// Theme Information
 
@@ -157,6 +156,8 @@
   settings[equal_heights_blocks]           = 0
   settings[equal_heights_gpanels]          = 0
   settings[horizontal_login_block]         = 0
+  settings[horizontal_login_block_overlabel] = ''
+  settings[slider_login_block_enable]      = 0
   settings[horizontal_login_block_enable]  = 'on'
   settings[style_schemes]                  = 'style-default.css'
   settings[style_enable_schemes]           = 'off'
diff --git a/adaptivetheme/css/base.css b/adaptivetheme/css/base.css
index 63b4787..7117d13 100644
--- a/adaptivetheme/css/base.css
+++ b/adaptivetheme/css/base.css
@@ -1,5 +1,4 @@
 /** 
- * $Id$
  */
 
 /* Reset */
diff --git a/adaptivetheme/css/edit-links.css b/adaptivetheme/css/edit-links.css
index f89a16e..eccef0c 100644
--- a/adaptivetheme/css/edit-links.css
+++ b/adaptivetheme/css/edit-links.css
@@ -1,5 +1,4 @@
 /** 
- * $Id$
  *
  * @file
  * Basic styles for block edit links.
diff --git a/adaptivetheme/css/layout.css b/adaptivetheme/css/layout.css
index c0933d1..c5f977e 100644
--- a/adaptivetheme/css/layout.css
+++ b/adaptivetheme/css/layout.css
@@ -1,5 +1,4 @@
 /** 
- * $Id$
  *
  * @file
  * Fallback layout and helpers.
diff --git a/adaptivetheme/inc/template.preprocess-node.inc b/adaptivetheme/inc/template.preprocess-node.inc
index 9197b8d..34e9b94 100644
--- a/adaptivetheme/inc/template.preprocess-node.inc
+++ b/adaptivetheme/inc/template.preprocess-node.inc
@@ -59,6 +59,7 @@ $vars['template_files'][] = 'node-'.$vars['node']->nid;
 $vars['terms'] = theme('links', $vars['taxonomy'], array('class' => 'links term-links'));
 $vars['links'] = theme('links', $vars['node']->links, array('class' => 'links link-links'));
 
+$vars['unpublished'] = '';
 if (!$vars['node']->status) {
   if ($vars['page']) {
     drupal_set_message(t('%title is currently unpublished', array('%title' => $vars['node']->title)), 'warning');
@@ -66,4 +67,4 @@ if (!$vars['node']->status) {
   else {
     $vars['unpublished'] = '<span class="unpublished">'. t('Unpublished') .'</span>';
   }
-}
\ No newline at end of file
+}
diff --git a/adaptivetheme/inc/template.preprocess-page.inc b/adaptivetheme/inc/template.preprocess-page.inc
index 966f7fa..a450217 100644
--- a/adaptivetheme/inc/template.preprocess-page.inc
+++ b/adaptivetheme/inc/template.preprocess-page.inc
@@ -17,7 +17,7 @@ if ($vars['in_maintenance'] && !$vars['logged_in'] && arg(0) == 'user' && (!arg(
   $vars['title'] = drupal_set_title(t('User Login'));
 }
 
-if ($vars['content_front'] && $vars['is_front']) {
+if ($vars['is_front'] && isset($vars['content_front']) && $vars['content_front']) {
   $vars['content'] = $vars['content_front'];
 }
 
diff --git a/adaptivetheme/inc/template.theme-overrides.inc b/adaptivetheme/inc/template.theme-overrides.inc
index 941d3a1..1b63952 100644
--- a/adaptivetheme/inc/template.theme-overrides.inc
+++ b/adaptivetheme/inc/template.theme-overrides.inc
@@ -38,7 +38,7 @@ function adaptivetheme_button($element) {
   else {
     $element['#attributes']['class'] = 'form-'. $element['#button_type'];
   }
-  if (stristr($element['#attributes']['style'], 'display: none;') || stristr($element['#attributes']['class'], 'fivestar-submit')) {
+  if ((isset($element['#attributes']['style']) && stristr($element['#attributes']['style'], 'display: none;')) || (isset($element['#attributes']['class']) && stristr($element['#attributes']['class'], 'fivestar-submit'))) {
     return '<input type="submit" '. (empty($element['#name']) ? '' : 'name="'. $element['#name'] .'" ')  .'id="'. $element['#id'] .'" value="'. check_plain($element['#value']) .'" '. drupal_attributes($element['#attributes']) ." />\n";
   }
   else {
@@ -67,7 +67,8 @@ function adaptivetheme_fieldset($element) {
     }
   }
   $css_class = 'fieldset-'. safe_string($element['#title']);
-  $element['#attributes']['class'] .= (!empty($element['#attributes']['class']) ? " " : "") . $css_class;
+   
+  $element['#attributes']['class'] = ((isset($element['#attributes']['class']) && !empty($element['#attributes']['class'])) ? $element['#attributes']['class'].' ' : '') . $css_class;
   return '<fieldset'. drupal_attributes($element['#attributes']) .'>'. ($element['#title'] ? '<legend>'. $element['#title'] .'</legend>' : '') . ($element['#description'] ? '<div class="description">'. $element['#description'] .'</div>' : '') . $element['#children'] . $element['#value'] ."</fieldset>\n";
 }
 
@@ -80,7 +81,7 @@ function adaptivetheme_system_settings_form($form) {
     $form['theme_specific']['#title'] = t('Advanced theme settings');
     $form_elements = element_children($form);
     foreach ($form_elements as $element) {
-      if ($form[$element]['#type'] == 'fieldset') {
+      if (isset($form[$element]['#type']) && $form[$element]['#type'] == 'fieldset') {
         $form[$element]['#collapsible'] = TRUE;
         $form[$element]['#collapsed']   = TRUE;
         $form[$element]['#prefix'] = '<div class="'. safe_string($element) .'-settings-wrapper">';
@@ -103,6 +104,7 @@ function adaptivetheme_system_settings_form($form) {
  */
 function adaptivetheme_links($links, $attributes = array('class' => 'links')) {
   $output = '';
+  $class = '';
   if (count($links) > 0) {
     $output = '<ul'. drupal_attributes($attributes) .'>';
     $num_links = count($links);
@@ -122,7 +124,7 @@ function adaptivetheme_links($links, $attributes = array('class' => 'links')) {
         $class .= ' active';
       }
       if (isset($link['href'])) {
-        if (strpos($link['attributes']['class'], 'active-trail') !== FALSE && strpos($class, 'active') === FALSE) {
+        if (isset($link['attributes']['class']) && strpos($link['attributes']['class'], 'active-trail') !== FALSE && strpos($class, 'active') === FALSE) {
           $class .= ' active';
           $link['attributes']['class'] .= ' active';
         }
diff --git a/adaptivetheme/js/at-scripts.js b/adaptivetheme/js/at-scripts.js
index 6d6b119..dd46141 100644
--- a/adaptivetheme/js/at-scripts.js
+++ b/adaptivetheme/js/at-scripts.js
@@ -1,4 +1,3 @@
-// $Id$
 /**
  * Insert WAI-ARIA Landmark Roles (Roles for Accessible Rich Internet Applications)
  *
diff --git a/adaptivetheme/js/equalize-blocks.js b/adaptivetheme/js/equalize-blocks.js
index dc2f4d1..80668fd 100644
--- a/adaptivetheme/js/equalize-blocks.js
+++ b/adaptivetheme/js/equalize-blocks.js
@@ -1,4 +1,3 @@
-// $Id$
 // adaptivethemes.com
 
 /**
diff --git a/adaptivetheme/js/equalize-columns.js b/adaptivetheme/js/equalize-columns.js
index 6bb7eb8..aea6d8d 100644
--- a/adaptivetheme/js/equalize-columns.js
+++ b/adaptivetheme/js/equalize-columns.js
@@ -1,4 +1,3 @@
-// $Id$
 $(document).ready(function() {
   $('#content-column, .sidebar').equalHeight();
 });
\ No newline at end of file
diff --git a/adaptivetheme/js/equalize-gpanels.js b/adaptivetheme/js/equalize-gpanels.js
index b78fe47..192766d 100644
--- a/adaptivetheme/js/equalize-gpanels.js
+++ b/adaptivetheme/js/equalize-gpanels.js
@@ -1,4 +1,3 @@
-// $Id$
 $(document).ready(function() {
   $('.gpanel .block-inner').equalHeight();
 });
\ No newline at end of file
diff --git a/adaptivetheme/js/loginslider.js b/adaptivetheme/js/loginslider.js
index 2a429ca..1f03d5a 100644
--- a/adaptivetheme/js/loginslider.js
+++ b/adaptivetheme/js/loginslider.js
@@ -1,4 +1,3 @@
-// $Id$
 Drupal.behaviors.LoginSlider = function (context) {
   $("#slider-login:not(.slider-login-processed)", context).each(
     function() {
diff --git a/adaptivetheme/panels/fivecol_5x20/fivecol-5x20.tpl.php b/adaptivetheme/panels/fivecol_5x20/fivecol-5x20.tpl.php
index aaafa48..91e2187 100644
--- a/adaptivetheme/panels/fivecol_5x20/fivecol-5x20.tpl.php
+++ b/adaptivetheme/panels/fivecol_5x20/fivecol-5x20.tpl.php
@@ -1,5 +1,4 @@
 <?php
-// $Id$
 /**
  * @file
  * Template for a 5 column panel layout.
diff --git a/adaptivetheme/panels/fivecol_5x20/fivecol_5x20.css b/adaptivetheme/panels/fivecol_5x20/fivecol_5x20.css
index ab7a794..38a99ed 100644
--- a/adaptivetheme/panels/fivecol_5x20/fivecol_5x20.css
+++ b/adaptivetheme/panels/fivecol_5x20/fivecol_5x20.css
@@ -1,4 +1,3 @@
-/* $Id$ */
 /* adaptivethemes.com */
 
 .at-panel div.block,.at-panel div.panel-pane{padding:0 10px;}
diff --git a/adaptivetheme/panels/fourcol_4x25/fourcol-4x25.tpl.php b/adaptivetheme/panels/fourcol_4x25/fourcol-4x25.tpl.php
index bc65ee1..c2b1556 100644
--- a/adaptivetheme/panels/fourcol_4x25/fourcol-4x25.tpl.php
+++ b/adaptivetheme/panels/fourcol_4x25/fourcol-4x25.tpl.php
@@ -1,5 +1,4 @@
 <?php
-// $Id$
 /**
  * @file
  * Template for a 4 column panel layout.
diff --git a/adaptivetheme/panels/fourcol_4x25/fourcol_4x25.css b/adaptivetheme/panels/fourcol_4x25/fourcol_4x25.css
index bf4e1ad..f1f125a 100644
--- a/adaptivetheme/panels/fourcol_4x25/fourcol_4x25.css
+++ b/adaptivetheme/panels/fourcol_4x25/fourcol_4x25.css
@@ -1,4 +1,3 @@
-/* $Id$ */
 /* adaptivethemes.com */
 
 .at-panel div.block,.at-panel div.panel-pane{padding:0 10px;}
diff --git a/adaptivetheme/panels/sixcol_6x16/sixcol-6x16.tpl.php b/adaptivetheme/panels/sixcol_6x16/sixcol-6x16.tpl.php
index 3704f52..f6cff70 100644
--- a/adaptivetheme/panels/sixcol_6x16/sixcol-6x16.tpl.php
+++ b/adaptivetheme/panels/sixcol_6x16/sixcol-6x16.tpl.php
@@ -1,5 +1,4 @@
 <?php
-// $Id$
 /**
  * @file
  * Template for a 6 column panel layout.
diff --git a/adaptivetheme/panels/sixcol_6x16/sixcol_6x16.css b/adaptivetheme/panels/sixcol_6x16/sixcol_6x16.css
index 233b92d..9d3592d 100644
--- a/adaptivetheme/panels/sixcol_6x16/sixcol_6x16.css
+++ b/adaptivetheme/panels/sixcol_6x16/sixcol_6x16.css
@@ -1,4 +1,3 @@
-/* $Id$ */
 /* adaptivethemes.com */
 
 .at-panel div.block,.at-panel div.panel-pane{padding:0 10px;}
diff --git a/adaptivetheme/panels/threecol_at_25_25_50/threecol-at-25-25-50.tpl.php b/adaptivetheme/panels/threecol_at_25_25_50/threecol-at-25-25-50.tpl.php
index 263b416..ed18e45 100644
--- a/adaptivetheme/panels/threecol_at_25_25_50/threecol-at-25-25-50.tpl.php
+++ b/adaptivetheme/panels/threecol_at_25_25_50/threecol-at-25-25-50.tpl.php
@@ -1,5 +1,4 @@
 <?php
-// $Id$
 /**
  * @file
  * Template for a 3 column panel layout.
diff --git a/adaptivetheme/panels/threecol_at_25_25_50/threecol_at_25_25_50.css b/adaptivetheme/panels/threecol_at_25_25_50/threecol_at_25_25_50.css
index fc34d5c..9b08788 100644
--- a/adaptivetheme/panels/threecol_at_25_25_50/threecol_at_25_25_50.css
+++ b/adaptivetheme/panels/threecol_at_25_25_50/threecol_at_25_25_50.css
@@ -1,4 +1,3 @@
-/* $Id$ */
 /* adaptivethemes.com */
 
 .at-panel div.block,.at-panel div.panel-pane{padding:0 10px;}
diff --git a/adaptivetheme/panels/threecol_at_50_25_25/threecol-at-50-25-25.tpl.php b/adaptivetheme/panels/threecol_at_50_25_25/threecol-at-50-25-25.tpl.php
index 6466520..52d7715 100644
--- a/adaptivetheme/panels/threecol_at_50_25_25/threecol-at-50-25-25.tpl.php
+++ b/adaptivetheme/panels/threecol_at_50_25_25/threecol-at-50-25-25.tpl.php
@@ -1,5 +1,4 @@
 <?php
-// $Id$
 /**
  * @file
  * Template for a 3 column panel layout.
diff --git a/adaptivetheme/panels/threecol_at_50_25_25/threecol_at_50_25_25.css b/adaptivetheme/panels/threecol_at_50_25_25/threecol_at_50_25_25.css
index d631e84..0d7bcc2 100644
--- a/adaptivetheme/panels/threecol_at_50_25_25/threecol_at_50_25_25.css
+++ b/adaptivetheme/panels/threecol_at_50_25_25/threecol_at_50_25_25.css
@@ -1,4 +1,3 @@
-/* $Id$ */
 /* adaptivethemes.com */
 
 .at-panel div.block,.at-panel div.panel-pane{padding:0 10px;}
diff --git a/adaptivetheme/panels/threecol_at_stacked_inset/threecol-at-stacked-inset.tpl.php b/adaptivetheme/panels/threecol_at_stacked_inset/threecol-at-stacked-inset.tpl.php
index 9cac7f2..f803545 100644
--- a/adaptivetheme/panels/threecol_at_stacked_inset/threecol-at-stacked-inset.tpl.php
+++ b/adaptivetheme/panels/threecol_at_stacked_inset/threecol-at-stacked-inset.tpl.php
@@ -1,5 +1,4 @@
 <?php
-// $Id$
 //adaptivethemes
 
 /**
diff --git a/adaptivetheme/panels/threecol_at_stacked_inset/threecol_at_stacked_inset.css b/adaptivetheme/panels/threecol_at_stacked_inset/threecol_at_stacked_inset.css
index fb077b0..bb82f31 100644
--- a/adaptivetheme/panels/threecol_at_stacked_inset/threecol_at_stacked_inset.css
+++ b/adaptivetheme/panels/threecol_at_stacked_inset/threecol_at_stacked_inset.css
@@ -1,4 +1,3 @@
-/* $Id$ */
 /* adaptivethemes.com */
 
 .at-panel div.block,.at-panel div.panel-pane{padding:0 10px;}
diff --git a/adaptivetheme/panels/twocol_at_33_66/twocol-at-33-66.tpl.php b/adaptivetheme/panels/twocol_at_33_66/twocol-at-33-66.tpl.php
index aa8f631..f72d11a 100644
--- a/adaptivetheme/panels/twocol_at_33_66/twocol-at-33-66.tpl.php
+++ b/adaptivetheme/panels/twocol_at_33_66/twocol-at-33-66.tpl.php
@@ -1,5 +1,4 @@
 <?php
-// $Id$
 /**
  * @file
  * Template for a 2 column panel layout.
diff --git a/adaptivetheme/panels/twocol_at_33_66/twocol_at_33_66.css b/adaptivetheme/panels/twocol_at_33_66/twocol_at_33_66.css
index 68c763e..cecd1ab 100644
--- a/adaptivetheme/panels/twocol_at_33_66/twocol_at_33_66.css
+++ b/adaptivetheme/panels/twocol_at_33_66/twocol_at_33_66.css
@@ -1,4 +1,3 @@
-/* $Id$ */
 /* adaptivethemes.com */
 
 .at-panel div.block,.at-panel div.panel-pane{padding:0 10px;}
diff --git a/adaptivetheme/panels/twocol_at_66_33/twocol-at-66-33.tpl.php b/adaptivetheme/panels/twocol_at_66_33/twocol-at-66-33.tpl.php
index 9a42819..d345ab4 100644
--- a/adaptivetheme/panels/twocol_at_66_33/twocol-at-66-33.tpl.php
+++ b/adaptivetheme/panels/twocol_at_66_33/twocol-at-66-33.tpl.php
@@ -1,5 +1,4 @@
 <?php
-// $Id$
 /**
  * @file
  * Template for a 2 column panel layout.
diff --git a/adaptivetheme/panels/twocol_at_66_33/twocol_at_66_33.css b/adaptivetheme/panels/twocol_at_66_33/twocol_at_66_33.css
index dd346f5..05c9373 100644
--- a/adaptivetheme/panels/twocol_at_66_33/twocol_at_66_33.css
+++ b/adaptivetheme/panels/twocol_at_66_33/twocol_at_66_33.css
@@ -1,4 +1,3 @@
-/* $Id$ */
 /* adaptivethemes.com */
 
 .at-panel div.block,.at-panel div.panel-pane{padding:0 10px;}
diff --git a/adaptivetheme/panels/twocol_at_stacked_inset/twocol-at-stacked-inset.tpl.php b/adaptivetheme/panels/twocol_at_stacked_inset/twocol-at-stacked-inset.tpl.php
index cf5fd49..ebab56d 100644
--- a/adaptivetheme/panels/twocol_at_stacked_inset/twocol-at-stacked-inset.tpl.php
+++ b/adaptivetheme/panels/twocol_at_stacked_inset/twocol-at-stacked-inset.tpl.php
@@ -1,5 +1,4 @@
 <?php
-// $Id$
 //adaptivethemes
 
 /**
diff --git a/adaptivetheme/panels/twocol_at_stacked_inset/twocol_at_stacked_inset.css b/adaptivetheme/panels/twocol_at_stacked_inset/twocol_at_stacked_inset.css
index b23a96e..2edfc2e 100644
--- a/adaptivetheme/panels/twocol_at_stacked_inset/twocol_at_stacked_inset.css
+++ b/adaptivetheme/panels/twocol_at_stacked_inset/twocol_at_stacked_inset.css
@@ -1,4 +1,3 @@
-/* $Id$ */
 /* adaptivethemes.com */
 
 .at-panel div.block,.at-panel div.panel-pane{padding:0 10px;}
diff --git a/adaptivetheme/theme-settings.php b/adaptivetheme/theme-settings.php
index 5d7d05a..617c46f 100644
--- a/adaptivetheme/theme-settings.php
+++ b/adaptivetheme/theme-settings.php
@@ -73,6 +73,7 @@ function adaptivetheme_settings($saved_settings, $subtheme_defaults = array()) {
     'style_enable_schemes'              => $settings['style_enable_schemes'],
   );
   // Output key value pairs formatted as settings
+  $output = '';
   foreach($exportable_settings as $key => $value) {
   	$value = filter_xss($value);
   	$output .= "settings[$key]=\"$value\"\n";
diff --git a/adaptivetheme_admin/adaptivetheme_admin.info b/adaptivetheme_admin/adaptivetheme_admin.info
index 1dd0b69..f416126 100644
--- a/adaptivetheme_admin/adaptivetheme_admin.info
+++ b/adaptivetheme_admin/adaptivetheme_admin.info
@@ -1,4 +1,3 @@
-; $Id$
 
 ;----------// Theme Information
   name        = AT Admin
diff --git a/adaptivetheme_admin/css/amber.css b/adaptivetheme_admin/css/amber.css
index a9f5e19..5079088 100644
--- a/adaptivetheme_admin/css/amber.css
+++ b/adaptivetheme_admin/css/amber.css
@@ -1,5 +1,4 @@
 /** 
- * $Id$
  * adaptivethemes.com
  *
  * @file amber.css
diff --git a/adaptivetheme_admin/css/at-admin-rtl.css b/adaptivetheme_admin/css/at-admin-rtl.css
index b189f92..4412d51 100644
--- a/adaptivetheme_admin/css/at-admin-rtl.css
+++ b/adaptivetheme_admin/css/at-admin-rtl.css
@@ -1,6 +1,5 @@
 @charset "utf-8";
 /**
- * $Id$ 
  * adaptivethemes.com 
  *
  * @file at-admin-rtl.css
diff --git a/adaptivetheme_admin/css/at-admin.css b/adaptivetheme_admin/css/at-admin.css
index ff41358..3d43f7d 100644
--- a/adaptivetheme_admin/css/at-admin.css
+++ b/adaptivetheme_admin/css/at-admin.css
@@ -1,5 +1,4 @@
 /**
- * $Id$ 
  *
  * @file
  * Contains all styles for the built in Administration Theme.
diff --git a/adaptivetheme_admin/css/emerald.css b/adaptivetheme_admin/css/emerald.css
index d5bdd59..544fb11 100644
--- a/adaptivetheme_admin/css/emerald.css
+++ b/adaptivetheme_admin/css/emerald.css
@@ -1,5 +1,4 @@
 /**
- * $Id$
  * adaptivethemes.com
  *
  * @file emerald.css
diff --git a/adaptivetheme_admin/css/ruby.css b/adaptivetheme_admin/css/ruby.css
index 51b2627..6c1acfc 100644
--- a/adaptivetheme_admin/css/ruby.css
+++ b/adaptivetheme_admin/css/ruby.css
@@ -1,5 +1,4 @@
 /**
- * $Id$
  * adaptivethemes.com
  *
  * @file ruby.css
diff --git a/adaptivetheme_admin/css/saphire.css b/adaptivetheme_admin/css/saphire.css
index 6e2807d..4619a6a 100644
--- a/adaptivetheme_admin/css/saphire.css
+++ b/adaptivetheme_admin/css/saphire.css
@@ -1,4 +1,3 @@
-/* $Id$ */
 /* adaptivethemes.com */
 
 /**
diff --git a/adaptivetheme_admin/css/style-default.css b/adaptivetheme_admin/css/style-default.css
index 6df7334..0ee6bf6 100644
--- a/adaptivetheme_admin/css/style-default.css
+++ b/adaptivetheme_admin/css/style-default.css
@@ -1,5 +1,4 @@
 /**
- * $Id$ 
  * adaptivethemes.com 
  *
  * @file colors-default.css
diff --git a/adaptivetheme_subtheme/adaptivetheme_subtheme.info b/adaptivetheme_subtheme/adaptivetheme_subtheme.info
index 648298a..c7bdcd1 100644
--- a/adaptivetheme_subtheme/adaptivetheme_subtheme.info
+++ b/adaptivetheme_subtheme/adaptivetheme_subtheme.info
@@ -1,4 +1,3 @@
-; $Id$
 
 ;----------// Theme Information
   name        = AT Subtheme
diff --git a/adaptivetheme_subtheme/css/admin-section.css b/adaptivetheme_subtheme/css/admin-section.css
index 2547d75..5b92908 100644
--- a/adaptivetheme_subtheme/css/admin-section.css
+++ b/adaptivetheme_subtheme/css/admin-section.css
@@ -1,5 +1,4 @@
 /** 
- * $Id$
  */
 
 div.admin-panel {
diff --git a/adaptivetheme_subtheme/css/articles.css b/adaptivetheme_subtheme/css/articles.css
index 874ba74..9e7071a 100644
--- a/adaptivetheme_subtheme/css/articles.css
+++ b/adaptivetheme_subtheme/css/articles.css
@@ -1,5 +1,4 @@
 /** 
- * $Id$
  */
 
 /* Articles (nodes) */
diff --git a/adaptivetheme_subtheme/css/blocks.css b/adaptivetheme_subtheme/css/blocks.css
index 9b22d8f..95249f4 100644
--- a/adaptivetheme_subtheme/css/blocks.css
+++ b/adaptivetheme_subtheme/css/blocks.css
@@ -1,5 +1,4 @@
 /** 
- * $Id$
  */
 
 /* Blocks. */
diff --git a/adaptivetheme_subtheme/css/comments.css b/adaptivetheme_subtheme/css/comments.css
index 6bb1e67..6d8f20f 100644
--- a/adaptivetheme_subtheme/css/comments.css
+++ b/adaptivetheme_subtheme/css/comments.css
@@ -1,5 +1,4 @@
 /** 
- * $Id$
  */
 
 /* Comment wrapper: wraps all comments and the comment form. */
diff --git a/adaptivetheme_subtheme/css/dark.css b/adaptivetheme_subtheme/css/dark.css
index ddead7c..4023f07 100644
--- a/adaptivetheme_subtheme/css/dark.css
+++ b/adaptivetheme_subtheme/css/dark.css
@@ -1,5 +1,4 @@
 /**
- * $Id$
  * adaptivethemes.com
  *
  * @file dark.css
diff --git a/adaptivetheme_subtheme/css/forms.css b/adaptivetheme_subtheme/css/forms.css
index e3ab5a6..998c3a9 100644
--- a/adaptivetheme_subtheme/css/forms.css
+++ b/adaptivetheme_subtheme/css/forms.css
@@ -1,5 +1,4 @@
 /** 
- * $Id$
  */
 
 /* Forms */
diff --git a/adaptivetheme_subtheme/css/html-elements.css b/adaptivetheme_subtheme/css/html-elements.css
index 20a1f16..72671d9 100644
--- a/adaptivetheme_subtheme/css/html-elements.css
+++ b/adaptivetheme_subtheme/css/html-elements.css
@@ -1,5 +1,4 @@
 /** 
- * $Id$
  */
 html {
   font-size:75%; /* 16px x 75% = 12px */
diff --git a/adaptivetheme_subtheme/css/ie/ie-lte-7-rtl.css b/adaptivetheme_subtheme/css/ie/ie-lte-7-rtl.css
index 0d9adfe..0204f24 100644
--- a/adaptivetheme_subtheme/css/ie/ie-lte-7-rtl.css
+++ b/adaptivetheme_subtheme/css/ie/ie-lte-7-rtl.css
@@ -1,6 +1,5 @@
 @charset "utf-8";
 /**
- * $Id$
  * adaptivethemes.com
  *
  * @file ie-lte-7.css
diff --git a/adaptivetheme_subtheme/css/ie/ie-lte-7.css b/adaptivetheme_subtheme/css/ie/ie-lte-7.css
index 8a24741..5010675 100644
--- a/adaptivetheme_subtheme/css/ie/ie-lte-7.css
+++ b/adaptivetheme_subtheme/css/ie/ie-lte-7.css
@@ -1,5 +1,4 @@
 /**
- * $Id$
  * adaptivethemes.com
  *
  * @file ie-lte-7.css
diff --git a/adaptivetheme_subtheme/css/navigation.css b/adaptivetheme_subtheme/css/navigation.css
index e01e573..3ac45a7 100644
--- a/adaptivetheme_subtheme/css/navigation.css
+++ b/adaptivetheme_subtheme/css/navigation.css
@@ -1,5 +1,4 @@
 /** 
- * $Id$
  */
 
 a {}
diff --git a/adaptivetheme_subtheme/css/page.css b/adaptivetheme_subtheme/css/page.css
index 04b17c8..c041212 100644
--- a/adaptivetheme_subtheme/css/page.css
+++ b/adaptivetheme_subtheme/css/page.css
@@ -1,5 +1,4 @@
 /** 
- * $Id$
  */
 
 #header {
diff --git a/adaptivetheme_subtheme/css/panel-panes.css b/adaptivetheme_subtheme/css/panel-panes.css
index 1acfe4c..343f623 100644
--- a/adaptivetheme_subtheme/css/panel-panes.css
+++ b/adaptivetheme_subtheme/css/panel-panes.css
@@ -1,5 +1,4 @@
 /** 
- * $Id$
  */
 
 .panel-pane {}
diff --git a/adaptivetheme_subtheme/css/schemes/style-default.css b/adaptivetheme_subtheme/css/schemes/style-default.css
index 7fd6b89..fa9925e 100644
--- a/adaptivetheme_subtheme/css/schemes/style-default.css
+++ b/adaptivetheme_subtheme/css/schemes/style-default.css
@@ -1,5 +1,4 @@
 /** 
- * $Id$
  *
  * Default Style Scheme 
  */
diff --git a/adaptivetheme_subtheme/css/skins.css b/adaptivetheme_subtheme/css/skins.css
index fa31a56..fc617fd 100644
--- a/adaptivetheme_subtheme/css/skins.css
+++ b/adaptivetheme_subtheme/css/skins.css
@@ -1,5 +1,4 @@
 /** 
- * $Id$
  */
 
 /* Content alignment */
diff --git a/adaptivetheme_subtheme/css/tables.css b/adaptivetheme_subtheme/css/tables.css
index 9be1a2a..26cdd83 100644
--- a/adaptivetheme_subtheme/css/tables.css
+++ b/adaptivetheme_subtheme/css/tables.css
@@ -1,5 +1,4 @@
 /** 
- * $Id$
  */
 
 /* Tables */
