diff -upr bluemarine.orig/block.tpl.php bluemarine/block.tpl.php
--- bluemarine.orig/block.tpl.php	2009-03-11 11:35:44.000000000 -0400
+++ bluemarine/block.tpl.php	2010-11-21 13:24:02.000000000 -0500
@@ -3,5 +3,5 @@
 ?>
   <div class="block block-<?php print $block->module; ?>" id="block-<?php print $block->module; ?>-<?php print $block->delta; ?>">
     <h2 class="title"><?php print $block->subject; ?></h2>
-    <div class="content"><?php print $block->content; ?></div>
+    <div class="content"><?php print $content; ?></div>
  </div>
diff -upr bluemarine.orig/bluemarine.info bluemarine/bluemarine.info
--- bluemarine.orig/bluemarine.info	2010-07-11 03:32:49.000000000 -0400
+++ bluemarine/bluemarine.info	2010-11-21 13:24:29.000000000 -0500
@@ -10,3 +10,4 @@ core = "7.x"
 project = "bluemarine"
 datestamp = "1278833569"
 
+stylesheets[all][] = style.css
Only in bluemarine.orig: box.tpl.php
diff -upr bluemarine.orig/comment.tpl.php bluemarine/comment.tpl.php
--- bluemarine.orig/comment.tpl.php	2009-03-11 11:35:44.000000000 -0400
+++ bluemarine/comment.tpl.php	2010-11-21 16:44:28.000000000 -0500
@@ -1,20 +1,20 @@
 <?php
 // $Id: comment.tpl.php,v 1.2 2009/03/11 15:35:44 johnalbin Exp $
 ?>
-  <div class="comment<?php print ' ' . $status; ?>">
-    <?php if ($picture) {
-    print $picture;
-  } ?>
-<h3 class="title"><?php print $title; ?></h3><?php if ($new != '') { ?><span class="new"><?php print $new; ?></span><?php } ?>
+  <div class="<?php print $classes . ' ' . $zebra; ?>"<?php print $attributes; ?>>
+    <?php print $picture; ?>
+<?php print render($title_prefix); ?>
+    <h3<?php print $title_attributes; ?>><?php print $title ?></h3>
+    <?php print render($title_suffix); ?>
     <div class="submitted"><?php print $submitted; ?></div>
-    <div class="content">
-     <?php print $content; ?>
-     <?php if ($signature): ?>
+    <div class="content"<?php print $content_attributes; ?>>
+      <?php hide($content['links']); print render($content); ?>
+      <?php if ($signature): ?>
       <div class="clearfix">
-       <div>—</div>
-       <?php print $signature ?>
+        <div>—</div>
+        <?php print $signature ?>
       </div>
-     <?php endif; ?>
+      <?php endif; ?>
     </div>
-    <div class="links">&raquo; <?php print $links; ?></div>
+    <div class="links">&raquo; <?php print render($content['links']) ?></div>
   </div>
diff -upr bluemarine.orig/node.tpl.php bluemarine/node.tpl.php
--- bluemarine.orig/node.tpl.php	2009-03-11 11:35:44.000000000 -0400
+++ bluemarine/node.tpl.php	2010-11-21 15:39:21.000000000 -0500
@@ -3,12 +3,18 @@
 ?>
   <div class="node<?php if ($sticky) { print " sticky"; } ?><?php if (!$status) { print " node-unpublished"; } ?>">
     <?php if ($picture) {
-      print $picture;
+      print $user_picture;
     }?>
     <?php if ($page == 0) { ?><h2 class="title"><a href="<?php print $node_url?>"><?php print $title?></a></h2><?php }; ?>
-    <span class="submitted"><?php print $submitted?></span>
-    <div class="taxonomy"><?php print $terms?></div>
-    <div class="content"><?php print $content?></div>
-    <?php if ($links) { ?><div class="links">&raquo; <?php print $links?></div><?php }; ?>
-    <?php print $comments; ?>
+    <span class="submitted"><?php print $date; ?> - <?php print $name; ?></span>
+    <div class="content"<?php print $content_attributes; ?>><?php
+      // We hide the comments and links now so that we can render them later.
+      hide($content['comments']);
+      hide($content['links']);
+      print render($content);
+    ?></div>
+    <?php if (!empty($content['links'])): ?>
+      <div class="links"><?php print render($content['links']); ?></div>
+    <?php endif; ?>
+    <?php print render($content['comments']); ?>
   </div>
diff -upr bluemarine.orig/page.tpl.php bluemarine/page.tpl.php
--- bluemarine.orig/page.tpl.php	2009-03-11 11:35:44.000000000 -0400
+++ bluemarine/page.tpl.php	2010-11-22 11:22:01.000000000 -0500
@@ -1,17 +1,6 @@
 <?php
 // $Id: page.tpl.php,v 1.8 2009/03/11 15:35:44 johnalbin Exp $
-?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language->language ?>" dir="<?php print $language->dir ?>"
-  <?php print $rdf_namespaces ?>>
-<head profile="<?php print $grddl_profile ?>">
-  <title><?php print $head_title ?></title>
-  <?php print $head ?>
-  <?php print $styles ?>
-  <?php print $scripts ?>
-  <script type="text/javascript"><?php /* Needed to avoid Flash of Unstyle Content in IE */ ?> </script>
-</head>
-
-<body class="<?php print $body_classes; ?>">
+?>
   <div id="header" class="clearfix">
     <?php if ($search_box) { ?><div class="search-box"><?php print $search_box ?></div><?php }; ?>
     <?php if ($logo) { ?><a class="logo" href="<?php print $front_page ?>" title="<?php print t('Home') ?>"><img src="<?php print $logo ?>" alt="<?php print t('Home') ?>" /></a><?php } ?>
@@ -19,37 +8,45 @@
     <?php if ($site_slogan) { ?><div class='site-slogan'><?php print $site_slogan ?></div><?php } ?>
 
     <div id="menu">
-      <?php if (isset($secondary_menu)) { ?><?php print theme('links', $secondary_menu, array('class' => 'links', 'id' => 'subnavlist')); ?><?php } ?>
-      <?php if (isset($main_menu)) { ?><?php print theme('links', $main_menu, array('class' => 'links', 'id' => 'navlist')) ?><?php } ?>
+      <?php print theme('links__system_secondary_menu', array(
+          'links' => $secondary_menu,
+          'attributes' => array(
+            'id' => 'subnavlist',
+            'class' => array('links'),
+          ),
+        )); ?>
+      <?php print theme('links__system_main_menu', array(
+          'links' => $main_menu,
+          'attributes' => array(
+            'id' => 'navlist',
+            'class' => array('links'),
+          ),
+        )); ?>
     </div>
 
-    <div id="header-region"><?php print $header ?></div>
+    <div id="header-region"><?php print render($page['header']) ?></div>
   </div>
 
   <div class="layout-columns">
-    <?php if ($left) { ?><div id="sidebar-left" class="column"><?php print $left ?></div><?php } ?>
+    <?php if ($page['sidebar_first']) { ?><div id="sidebar-left" class="column"><?php print render($page['sidebar_first']) ?></div><?php } ?>
 
     <div id="main" class="column">
-      <?php if ($mission) { ?><div id="mission"><?php print $mission ?></div><?php } ?>
+      <?php if ($page['highlighted']) { ?><div id="mission"><?php print render($page['highlighted']) ?></div><?php } ?>
       <div class="inner">
         <?php print $breadcrumb ?>
-        <h1 class="title"><?php print $title ?></h1>
-        <?php if ($tabs) { ?><div class="tabs"><?php print $tabs ?></div><?php } ?>
-        <?php print $help ?>
+        <?php print render($title_prefix) ?><h1 class="title"><?php print $title ?></h1><?php print render($title_suffix) ?>
+        <?php if ($tabs) { ?><div class="tabs"><?php print render($tabs) ?></div><?php } ?>
+        <?php print render($page['help']) ?>
         <?php if ($show_messages) { print $messages; } ?>
-        <?php print $content; ?>
+		<?php if ($action_links): ?><ul class="action-links"><?php print render($action_links); ?></ul><?php endif; ?>
+        <?php print render($page['content']); ?>
         <?php print $feed_icons; ?>
       </div>
     </div>
 
-    <?php if ($right) { ?><div id="sidebar-right" class="column"><?php print $right ?></div><?php } ?>
+    <?php if ($page['sidebar_second']) { ?><div id="sidebar-right" class="column"><?php print render($page['sidebar_second']) ?></div><?php } ?>
   </div>
 
   <div id="footer">
-    <?php print $footer_message ?>
-    <?php print $footer ?>
+    <?php print render($page['footer']) ?>
   </div>
-
-<?php print $closure ?>
-</body>
-</html>
diff -upr bluemarine.orig/style.css bluemarine/style.css
--- bluemarine.orig/style.css	2009-03-11 11:35:44.000000000 -0400
+++ bluemarine/style.css	2010-11-22 17:33:11.000000000 -0500
@@ -126,6 +126,7 @@ body {
   margin: 0.6em 0 0 ;
   font-size: 2em;
   white-space: nowrap;
+  float: left;
 }
 .site-name a:link, .site-name a:visited {
   color: #fff;
@@ -151,6 +152,17 @@ body {
   text-align: right; /* LTR */
   vertical-align: middle;
 }
+
+ul.menu{
+  padding: 0;
+  margin-left: 0;
+}
+
+ul.menu li{
+  padding: 0;
+  margin-left: 15px;
+}
+
 #header-region {
   clear: both;
 }
@@ -164,6 +176,19 @@ body {
   font-weight: bold;
   color: #fff;
 }
+
+#navlist ul {
+  text-align: right;
+}
+
+#navlist li {
+  text-align: right;
+  display: inline;
+  list-style: none;
+  padding-left: 3px;
+  padding-right: 3px;
+}
+
 #subnavlist {
   padding: 0.5em 1.2em 0.4em 0; /* LTR */
   font-size: 0.8em;
@@ -173,6 +198,20 @@ body {
   font-weight: bold;
   color: #9cf;
 }
+
+#subnavlist ul {
+  text-align: right;
+  float: right;
+}
+
+#subnavlist li {
+  text-align: right;
+  display: inline;
+  list-style: none;
+  padding-left: 3px;
+  padding-right: 3px;
+}
+
 ul.links li {
   border-left: 1px solid #9cf; /* LTR */
 }
