diff --git a/plugins/styles/naked.inc b/plugins/styles/naked.inc
old mode 100644
new mode 100755
index dbe8446..1fdb3e2
--- a/plugins/styles/naked.inc
+++ b/plugins/styles/naked.inc
@@ -8,7 +8,8 @@
 // Plugin definition
 $plugin = array(
   'title' => t('No markup at all'),
-  'description' => t('Display the pane with no markup, not even a title.'),
+  'description' => t('Display the pane or region with no markup, not even a title.'),
+  'render region' => 'panels_naked_style_render_region',
   'render pane' => 'panels_naked_style_render_pane',
   'weight' => -5,
 );
@@ -18,6 +19,15 @@ $plugin = array(
  *
  * @ingroup themeable
  */
+function theme_panels_naked_style_render_region($vars) {
+  return implode($vars['panes']);
+}
+
+/**
+ * Render callback.
+ *
+ * @ingroup themeable
+ */
 function theme_panels_naked_style_render_pane($vars) {
   return render($vars['content']->content);
 }
