diff --git a/content/technical/2008/04/mp3-decoder-libraries-compared.html b/content/technical/2008/04/mp3-decoder-libraries-compared.html
index 4fe508c..1305ca8 100644
--- a/content/technical/2008/04/mp3-decoder-libraries-compared.html
+++ b/content/technical/2008/04/mp3-decoder-libraries-compared.html
@@ -9,6 +9,7 @@ I did some searching and came up with two other libraries that seemed well suite
I built the two additional libraries with the default configuration options, except for libmad, which I added the --enable-speed
option. With the help of example code I made programs out of each that were comparable to the first version for Core Audio. I.e. MP3 file in, 16-bit Linear PCM audio samples out.
To provide a benchmark I wrote a script that would run each of the three programs against a source MP3 file. Each program reported the elapsed time (via time(3)) and the processor time (via clock(3)) when it finished decoding. The programs were run one after another on the source file 10 times. Their PCM output was written to a new file for each invocation.
+
Environment
@@ -22,180 +23,180 @@ The results of the tests for my sample MP3s is below. The individual times were
Medium Mono File
Large File
Large VBR File
diff --git a/output/css/screen.css b/output/css/screen.css
index 95605db..1b50bdd 100644
--- a/output/css/screen.css
+++ b/output/css/screen.css
@@ -330,4 +330,19 @@ ul.inline li:first-child {
border-top-color: #999;
width: 10em;
margin: 0;
-}
\ No newline at end of file
+}
+
+/* Styles for MP3 Decoder post */
+table.left_headers, table.top_headers {
+ border: 1px solid #D8D8D8;
+ border-collapse: collapse;
+ margin: 1em 0;
+}
+table.left_headers td, table.left_headers th,
+table.top_headers td, table.top_headers th {
+ border: 1px solid #D8D8D8;
+ padding: 0.3em 0.7em 0.3em 0.7em;
+}
+table.left_headers th {
+ text-align: right;
+}