Index: civicspace/modules.css
===================================================================
RCS file: /cvs/drupal/contributions/themes/civicspace/modules.css,v
retrieving revision 1.2.2.3
diff -u -Ff -r1.2.2.3 modules.css
--- civicspace/modules.css	30 Nov 2005 21:06:47 -0000	1.2.2.3
+++ civicspace/modules.css	25 Dec 2005 10:29:26 -0000
@@ -267,6 +267,37 @@ /* Set background colors for sat and sun
  * =Book
  */
 
+div.book {
+display:                    block;
+background-color:           #ffe;
+border:                     5 solid black;
+}
+
+div.nav {
+	padding-top: 10px;
+}
+
+div.prev {	
+	vertical-align: bottom;
+	float: left;
+	width: 100px;
+}
+
+
+div.up {
+	vertical-align: bottom;
+	margin-left: 170px;
+	width: 100px;
+}
+
+
+div.next{
+	vertical-align: bottom;
+	text-align:right;
+	float: right;
+	width: 100px;
+}
+
 
 
 /**
Index: civicspace/page.tpl.php
===================================================================
RCS file: /cvs/drupal/contributions/themes/civicspace/page.tpl.php,v
retrieving revision 1.7.2.3
diff -u -Ff -r1.7.2.3 page.tpl.php
--- civicspace/page.tpl.php	30 Nov 2005 21:06:47 -0000	1.7.2.3
+++ civicspace/page.tpl.php	25 Dec 2005 10:30:29 -0000
@@ -259,7 +259,7 @@ <?php if (($sidebar_right != '')) { ?>
 <!-- START: FOOTER     |||||||||||||||||||||||||||||||||||||||||||||||||||||||| -->
 <?php if (($_GET['q']) != variable_get('site_frontpage','node') && $breadcrumb): /* this prevents breadcrumb from showing up on homepage */ ?>
   <div class="breadcrumb-container no-print">
-    You are here: <?php print $breadcrumb ?>
+    <?php print t('You are here: '); print $breadcrumb ?>
   </div>
 <?php endif; ?>
 
Index: civicspace/template.php
===================================================================
RCS file: /cvs/drupal/contributions/themes/civicspace/template.php,v
retrieving revision 1.8.2.5
diff -u -Ff -r1.8.2.5 template.php
--- civicspace/template.php	30 Nov 2005 21:06:47 -0000	1.8.2.5
+++ civicspace/template.php	25 Dec 2005 10:28:47 -0000
@@ -862,6 +862,7 @@     if ($prev = book_prev($node)) {
     }
     else {
       $links .= '<div class="prev">&nbsp;</div>'; // Make an empty div to fill the space.
+	  $titles .= '<div class="next">&nbsp;</div>';
     }
 
     if ($next = book_next($node)) {
@@ -872,6 +873,7 @@     if ($next = book_next($node)) {
     }
     else {
       $links .= '<div class="next">&nbsp;</div>'; // Make an empty div to fill the space.
+	  $titles .= '<div class="next">&nbsp;</div>';
     }
 
     if ($node->parent) {
@@ -884,6 +886,7 @@     if ($node->parent) {
     $output .= ' <div class="links">'. $links .'</div>';
     $output .= ' <div class="titles">'. $titles .'</div>';
     $output .= '</div>';
+	$output .= '<div style="clear:both">&nbsp;</div>';
     $output .= '</div>';
   }
 
Index: civicspace/visual.css
===================================================================
RCS file: /cvs/drupal/contributions/themes/civicspace/visual.css,v
retrieving revision 1.2.2.3
diff -u -Ff -r1.2.2.3 visual.css
--- civicspace/visual.css	30 Nov 2005 21:06:47 -0000	1.2.2.3
+++ civicspace/visual.css	25 Dec 2005 10:33:01 -0000
@@ -1248,3 +1248,42 @@   font-size:                  0.9em;
   background-color:           rgb(153, 51, 51);
   color:                      #fff;
 }
+
+.nav .links .next a:link {
+  padding: 17px 17px 17px 0;
+  background: transparent url(images/arrow-next.png) right center no-repeat;
+}
+.nav .links .next a:visited {
+  padding: 17px 17px 17px 0;
+  background: transparent url(images/arrow-next-visited.png) right center no-repeat;
+}
+.nav .links .next a:hover {
+  padding: 17px 17px 17px 0;
+  background: transparent url(images/arrow-next-hover.png) right center no-repeat;
+}
+.nav .links .prev a:link {
+  padding: 17px 0 17px 17px;
+  background: transparent url(images/arrow-prev.png) left center no-repeat;
+}
+.nav .links .prev a:visited {
+  padding: 17px 0 17px 17px;
+  background: transparent url(images/arrow-prev-visited.png) left center no-repeat;
+}
+.nav .links .prev a:hover {
+  padding: 17px 0 17px 17px;
+  background: transparent url(imagesa/rrow-prev-hover.png) left center no-repeat;
+}
+.nav .links .up a:link {
+  padding: 11px 0 17px 0;
+  background: transparent url(images/arrow-up.png) center top no-repeat;
+}
+.nav .links .up a:visited {
+  padding: 11px 0 17px 0;
+  background: transparent url(images/arrow-up-visited.png) center top no-repeat;
+}
+.nav .links .up a:hover {
+  padding: 11px 0 17px 0;
+  background: transparent url(images/arrow-up-hover.png) center top no-repeat;
+}
+ 
+
