diff --git a/installer/resources/themes/console/classic/console.css b/installer/resources/themes/console/classic/console.css
index 3816c0812f4d505a6bdbc583f959b046b1cdf55f..7e7286fdc2727a96d74a61a9bcbebe493be3fd25 100644
--- a/installer/resources/themes/console/classic/console.css
+++ b/installer/resources/themes/console/classic/console.css
@@ -4,7 +4,7 @@ body {
      text-align: center;
      background: #FFF;
      color: #000;
-     font: 100% Verdana, Tahoma, Helvetica, sans-serif;
+     font: 10pt/120% Verdana, Tahoma, Helvetica, sans-serif;
 }
 
 .hide {
@@ -54,10 +54,17 @@ div.routersummary {
      padding: 5px;
      text-align: left;
      border: medium solid #efefff;
-     font-size: 0.82em;
+     font-size: 9pt;
      word-wrap: break-word;
 }
 
+div.routersummary hr {
+     color: #ccf;
+     background: #ccf;
+     height: 2px;
+     border: 0px solid #ccf;
+     margin: 10px 0;
+}
 div.warning {
      margin: 0em 1em 1em 224px;
      padding: .5em 1em;
@@ -85,7 +92,7 @@ div.news {
      padding: .5em 1em;
      background: #ffffc0;
      border: medium solid #ffffa0;
-     text-align: left;
+     text-align: justify;
      color: inherit;
 }
 
@@ -120,3 +127,42 @@ h1 {
      font-size: 7pt;
      display: none !important;
 }
+
+table {
+     border-collapse: collapse;
+     width: 100%;
+     border: 5px solid #dfd;
+     margin: 5px 0px;
+     cell-padding: 1px;
+     font-size: 7pt;
+     background: #fff;
+}
+
+th {
+     background-color: #ccf;
+     padding: 5px 2px;
+}
+
+tt {
+     font-size: 8pt;
+}
+
+td {
+     padding: 2px;
+}
+
+tr:nth-child(even) {
+     background-color: #eef;
+}
+
+tr:nth-child(odd) {
+     background-color: #ddf;
+}
+
+hr {
+     color: #ff9;
+     background: #ff9;
+     height: 2px;
+     border: 0px solid #ff9;
+     margin: 10px 0;
+}
\ No newline at end of file
diff --git a/installer/resources/themes/console/dark/console.css b/installer/resources/themes/console/dark/console.css
index 3709ef0b5ee89143b54b65942b0c579431f1fb81..3c17280fe4d8e408b27093d493cca1004ab9cde9 100644
--- a/installer/resources/themes/console/dark/console.css
+++ b/installer/resources/themes/console/dark/console.css
@@ -591,7 +591,7 @@ form {}
 }
 
 .smallhead {
-     font-size: 8pt
+     font-size: 7pt
 }
 
 .mediumtags {
diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java
index 78e0509fd9b6dc02713a7be996fb018890fa0b9c..23d4b1f0db89ba2c753028d103ccd73e1d34c80b 100644
--- a/router/java/src/net/i2p/router/RouterVersion.java
+++ b/router/java/src/net/i2p/router/RouterVersion.java
@@ -18,7 +18,7 @@ public class RouterVersion {
     /** deprecated */
     public final static String ID = "Monotone";
     public final static String VERSION = CoreVersion.VERSION;
-    public final static long BUILD = 33;
+    public final static long BUILD = 34;
     /** for example "-test" */
     public final static String EXTRA = "-rc";
     public final static String FULL_VERSION = VERSION + "-" + BUILD + EXTRA;