diff --git a/sites/all/modules/contrib/panels/panels.module b/sites/all/modules/contrib/panels/panels.module
index 4b8c731..5710522 100644
--- a/sites/all/modules/contrib/panels/panels.module
+++ b/sites/all/modules/contrib/panels/panels.module
@@ -57,15 +57,18 @@ function panels_theme() {
   $theme['panels_layout_icon'] = array(
     'variables' => array('id' => NULL, 'image' => NULL, 'title' => NULL),
   );
+
   $theme['panels_pane'] = array(
     'variables' => array('content' => array(), 'pane' => array(), 'display' => array()),
     'path' => drupal_get_path('module', 'panels') . '/templates',
     'template' => 'panels-pane',
   );
+
   $theme['panels_common_content_list'] = array(
     'variables' => array('display' => NULL),
     'file' => 'includes/common.inc',
   );
+
   $theme['panels_render_display_form'] = array(
     'render element' => 'element',
   );
@@ -107,9 +110,9 @@ function panels_theme() {
 
   // We don't need layout and style themes in maintenance mode.
   // Disabling this: See http://drupal.org/node/979912 for information.
-//  if (defined('MAINTENANCE_MODE')) {
-//    return $theme;
-//  }
+  //  if (defined('MAINTENANCE_MODE')) {
+  //    return $theme;
+  //  }
 
   // Register layout and style themes on behalf of all of these items.
   ctools_include('plugins', 'panels');
@@ -144,6 +147,7 @@ function panels_theme() {
         'file' => $data['file'],
       );
     }
+
     if (!empty($data['render region'])) {
       $theme[$data['render region']] = array(
         'variables' => array('display' => NULL, 'owner_id' => NULL, 'panes' => NULL, 'settings' => NULL, 'region_id' => NULL, 'style' => NULL),
@@ -188,6 +192,7 @@ function panels_menu() {
     'file' => 'includes/callbacks.inc',
     'access arguments' => array('use panels dashboard'),
   );
+
   // Provide a nice location for a panels admin panel.
   $items['admin/structure/panels'] = array(
     'title' => 'Panels',
@@ -240,7 +245,6 @@ function panels_menu() {
     }
   }
 
-
   return $items;
 }
 
@@ -271,7 +275,6 @@ function panels_init() {
     }
     return;
   }
-
   ctools_add_css('panels', 'panels');
 }
 
@@ -645,6 +648,7 @@ function panels_edit($display, $destination = NULL, $content_types = NULL, $titl
 function panels_edit_layout($display, $finish, $destination = NULL, $allowed_layouts = NULL) {
   ctools_include('display-layout', 'panels');
   ctools_include('plugins', 'panels');
+  
   return _panels_edit_layout($display, $finish, $destination, $allowed_layouts);
 }
 
@@ -881,7 +885,6 @@ function panels_load_displays($dids) {
   $result = db_query("SELECT * FROM {panels_pane} WHERE did IN (:dids) ORDER BY did, panel, position", array(':dids' => $dids));
   foreach ($result as $obj) {
     $pane = ctools_export_unpack_object('panels_pane', $obj);
-
     $displays[$pane->did]->panels[$pane->panel][] = $pane->pid;
     $displays[$pane->did]->content[$pane->pid] = $pane;
   }
@@ -1117,16 +1120,16 @@ function panels_export_display($display, $prefix = '') {
         $pane->uuid = ctools_uuid_generate();
       }
       $pid = 'new-' . $pane->uuid;
-
       if ($pane->pid == $display->title_pane) {
         $title_pid = $pid;
-      }
+      }     
       $pane->pid = $pid;
       $output .= ctools_export_object('panels_pane', $pane, $prefix);
       $output .= $prefix . '$display->content[\'' . $pane->pid . '\'] = $pane' . ";\n";
       if (!isset($region_counters[$pane->panel])) {
         $region_counters[$pane->panel] = 0;
       }
+      
       $output .= $prefix . '$display->panels[\'' . $pane->panel . '\'][' . $region_counters[$pane->panel]++ .'] = \'' . $pane->pid . "';\n";
     }
   }
@@ -1227,6 +1230,7 @@ function theme_panels_layout_link($vars) {
   $output .= $vars['image'];
   $output .= '<div>' . $vars['title'] . '</div>';
   $output .= '</div>';
+  
   return $output;
 }
 
@@ -1266,6 +1270,7 @@ function panels_get_legacy_state() {
     ctools_include('legacy', 'panels');
     $legacy = new PanelsLegacyState();
   }
+  
   return $legacy;
 }
 
@@ -1372,16 +1377,12 @@ function template_preprocess_panels_pane(&$vars) {
   // Add template file suggestion for content type and sub-type.
   $vars['theme_hook_suggestions'][] = $base . $delimiter . $content->type;
   $vars['theme_hook_suggestions'][] = $base . $delimiter . strtr(ctools_cleanstring($content->type, array('lower case' => TRUE)), '-', '_') . $delimiter . strtr(ctools_cleanstring($content->subtype, array('lower case' => TRUE)), '-', '_');
-
   $vars['pane_prefix'] = !empty($content->pane_prefix) ? $content->pane_prefix : '';
   $vars['pane_suffix'] = !empty($content->pane_suffix) ? $content->pane_suffix : '';
-
   $vars['title'] = !empty($content->title) ? $content->title : '';
   $vars['title_heading'] = !empty($content->title_heading) ? $content->title_heading : variable_get('override_title_heading', 'h2');
   $vars['title_attributes_array']['class'][] = 'pane-title';
-
   $vars['feeds'] = !empty($content->feeds) ? implode(' ', $content->feeds) : '';
-
   $vars['links'] = !empty($content->links) ? theme('links', array('links' => $content->links)) : '';
   $vars['more'] = '';
   if (!empty($content->more)) {
@@ -1392,7 +1393,6 @@ function template_preprocess_panels_pane(&$vars) {
   }
 
   $vars['content'] = !empty($content->content) ? $content->content : '';
-
 }
 
 /**
@@ -1528,6 +1528,7 @@ function panels_edit_cache_get_default(&$display, $content_types = NULL, $title
   $cache->display_title = $title;
 
   panels_edit_cache_set($cache);
+
   return $cache;
 }
 
@@ -1939,7 +1940,7 @@ function panels_get_pane_links_alter(&$links, $pane, $content_type) {
 
     // check for module provided menu blocks like Devels or Features
     // menus of that type have a subtype that is prefixed with menu-
-    elseif(substr($prefixed_name, 0, 5) === "menu-"){
+    elseif (substr($prefixed_name, 0, 5) === "menu-") {
       // remove the first prefix menu- to get the name.
       $name_of_block = substr($prefixed_name, 5);
 
@@ -1957,7 +1958,7 @@ function panels_get_pane_links_alter(&$links, $pane, $content_type) {
     }
 
     // check for system blocks with menu links
-    elseif(substr($prefixed_name, 0, 7) === "system-") {
+    elseif (substr($prefixed_name, 0, 7) === "system-") {
       // remove the first prefix system- to get the name
       $name_of_block = substr($prefixed_name, 7);
 
@@ -1969,7 +1970,7 @@ function panels_get_pane_links_alter(&$links, $pane, $content_type) {
         'attributes' => array('target' => array('_blank')),
       );
 
-      if (array_key_exists($name_of_block, $names_of_system_menus)){
+      if (array_key_exists($name_of_block, $names_of_system_menus)) {
         $links['top'][] = array(
           'title' => t('Edit menu links'),
           'href' => url('admin/structure/menu/manage/' . $name_of_block, array('absolute' => TRUE)),
@@ -1979,7 +1980,7 @@ function panels_get_pane_links_alter(&$links, $pane, $content_type) {
     }
 
     // for all other blocks without menus
-    else{
+    else {
       $links['top'][] = array(
         'title' => t('Edit block'),
         'href' => url('admin/structure/block/manage/' . $subtype_prefix . '/' . $name_of_block . '/configure', array('absolute' => TRUE)),
@@ -2018,4 +2019,4 @@ function panels_preprocess_html(&$vars) {
   if (!empty($panel_body_css['body_classes_to_add'])) {
     $vars['classes_array'][] = check_plain($panel_body_css['body_classes_to_add']);
   }
-}
+}
\ No newline at end of file
