diff --git a/www/advanced-unix-installation.html b/www/advanced-unix-installation.html
index 6e0958a..f02dc9a 100644
--- a/www/advanced-unix-installation.html
+++ b/www/advanced-unix-installation.html
@@ -21,10 +21,11 @@
   <meta name="resource-type" content="document">
   <meta name="copyright" content="Copyright (c) 1999-2012 ImageMagick Studio LLC">
   <meta name="distribution" content="Global">
+  <meta name="magick-serial" content="P131-S030410-R485315270133-P82224-A6668-G1245-1">
   <link rel="icon" href="../images/wand.png">
   <link rel="shortcut icon" href="../images/wand.ico" type="images/x-icon">
-  <link rel="stylesheet" href="www/css/bootstrap.min.css">
-  <link rel="stylesheet" href="www/css/magick.css">
+  <link rel="stylesheet" href="css/bootstrap.min.css">
+  <link rel="stylesheet" href="css/magick.css">
 </head>
 
 <body>
@@ -42,12 +43,12 @@
     <center><script type="text/javascript" src="http://localhost/pagead/show_ads.js">
     </script></center>
     <nav class="magick-nav">
-      <a class="magick-nav-item " href="http://www.imagemagick.org/ImageMagick-7.0.0/index.html">Home</a>
+      <a class="magick-nav-item " href="../index.html">Home</a>
       <a class="magick-nav-item " href="binary-releases.html">Downloads</a>
       <a class="magick-nav-item " href="command-line-tools.html">Tools</a>
       <a class="magick-nav-item " href="command-line-options.html">Options</a>
       <a class="magick-nav-item " href="api.html">Development</a>
-      <a class="magick-nav-item" href="../discourse-server">Community</a>
+      <a class="magick-nav-item" href="http://www.imagemagick.org/discourse-server/">Community</a>
       <a class="magick-nav-item navbar-right " href="search.html">Search</a>
     </nav>
   </div>
@@ -75,7 +76,7 @@
 
 <p>The configure script looks at your environment and decides what it can cobble together to get ImageMagick compiled and installed on your system.  This includes finding a compiler, where your compiler header files are located (e.g. stdlib.h), and if any delegate libraries are available for ImageMagick to use (e.g. JPEG, PNG, TIFF, etc.).  If you are willing to accept configure's default options, and build from within the source directory, you can simply type:</p>
 
-<p class="crt"><span class="crtprompt"> $magick&gt; </span><span class="crtin">cd ImageMagick-6.9.1-2</span><span class="crtout"></span><span class="crtprompt"> $magick&gt; </span><span class="crtin">./configure</span></p>
+<pre><span class="crtprompt"> </span><span class="crtin">cd ImageMagick-6.9.1-2</span><span class="crtout"></span><span class="crtprompt"> </span><span class="crtin">./configure</span></pre>
 <p>Watch the configure script output to verify that it finds everything that
  you think it should.  Pay particular attention to the last lines of the script output.  For example, here is a recent report from our system:</p>
 
@@ -505,7 +506,7 @@
 
 <p>After the build you, locate the RPMS folder and install the ImageMagick binary RPM distribution:</p>
 
-<p class="crt"><span class="crtprompt"> $magick&gt; </span><span class="crtin">rpm -ivh ImageMagick-6.9.1-?.*.rpm</span></p>
+<pre><span class="crtprompt"> </span><span class="crtin">rpm -ivh ImageMagick-6.9.1-?.*.rpm</span></pre>
 <h2 class="magick-header"><a id="macosx"></a>Mac OS X-specific Build instructions</h2>
 
 <p>Perform these steps as an administrator or with the <tt>sudo</tt> command:</p>
@@ -532,7 +533,7 @@
 
 	  <p><a href="download.html">Download</a> the ImageMagick source distribution and verify the distribution against its <a href="http://www.imagemagick.org/download/digest.rdf">message digest</a>.</p>
 	  <p>Unpack and change into the top-level ImageMagick directory:</p>
-		<p class="crt"><span class="crtprompt"> $magick&gt; </span><span class="crtin">tar xvzf ImageMagick-6.9.1-2.tar.gz</span><span class="crtout"></span><span class="crtprompt"> $magick&gt; </span><span class="crtin">cd ImageMagick-6.9.1-2</span></p>	  <p>Configure ImageMagick:</p>
+		<pre><span class="crtprompt"> </span><span class="crtin">tar xvzf ImageMagick-6.9.1-2.tar.gz</span><span class="crtout"></span><span class="crtprompt"> </span><span class="crtin">cd ImageMagick-6.9.1-2</span></pre>	  <p>Configure ImageMagick:</p>
 <pre>
 ./configure --prefix=/opt --with-quantum-depth=16 \
   --disable-dependency-tracking --with-x=yes \
@@ -564,7 +565,7 @@
 
 <p>Although you can download and install delegate libraries yourself, many are already available in the <a href="http://gnuwin32.sourceforge.net/">GnuWin32</a> distribution.  Download and install whichever delegate libraries you require such as JPEG, PNG, TIFF, etc.  Make sure you specify the development headers when you install a package.  Next type,</p>
 
-<p class="crt"><span class="crtprompt"> $magick&gt; </span><span class="crtin">tar jxvf ImageMagick-6.9.1-?.tar.bz2</span><span class="crtout"><br></span><span class="crtprompt"> $magick&gt; </span><span class="crtin">cd ImageMagick-6.9.1-2</span><span class="crtout"><br></span><span class="crtprompt"> $magick&gt; </span><span class="crtin">export CPPFLAGS="-Ic:/Progra~1/GnuWin32/include"</span><span class="crtout"><br></span><span class="crtprompt"> $magick&gt; </span><span class="crtin">export LDFLAGS="-Lc:/Progra~1/GnuWin32/lib"</span><span class="crtout"><br></span><span class="crtprompt"> $magick&gt; </span><span class="crtin">./configure --without-perl</span><span class="crtout"><br></span><span class="crtprompt"> $magick&gt; </span><span class="crtin">make</span><span class="crtout"><br></span><span class="crtprompt"> $magick&gt; </span><span class="crtin">sudo make install</span></p>
+<pre><span class="crtprompt"> </span><span class="crtin">tar jxvf ImageMagick-6.9.1-?.tar.bz2</span><span class="crtout"><br></span><span class="crtprompt"> </span><span class="crtin">cd ImageMagick-6.9.1-2</span><span class="crtout"><br></span><span class="crtprompt"> </span><span class="crtin">export CPPFLAGS="-Ic:/Progra~1/GnuWin32/include"</span><span class="crtout"><br></span><span class="crtprompt"> </span><span class="crtin">export LDFLAGS="-Lc:/Progra~1/GnuWin32/lib"</span><span class="crtout"><br></span><span class="crtprompt"> </span><span class="crtin">./configure --without-perl</span><span class="crtout"><br></span><span class="crtprompt"> </span><span class="crtin">make</span><span class="crtout"><br></span><span class="crtprompt"> </span><span class="crtin">sudo make install</span></pre>
 <h2 class="magick-header"><a id="problems"></a>Dealing with Unexpected Problems</h2>
 
 <p>Chances are the download, configure, build, and install of ImageMagick went flawlessly as it is intended, however, certain systems and environments may cause one or more steps to fail.  We discuss a few problems we've run across and how to take corrective action to ensure you have a working release of ImageMagick</p>
@@ -620,7 +621,7 @@
       <a href="support.html">Donations</a>
     </div>
     <div class="magick-nav-item navbar-right">
-      <a class="FlattrButton" style="display:none;" rev="flattr;button:compact;" href="http://www.imagemagick.org/"></a>
+      <a class="FlattrButton" style="display:none;" rev="flattr;button:compact;" href="../index.html"></a>
       <noscript>
         <a href="http://flattr.com/thing/947300/Convert-Edit-And-Compose-Images" target="_blank">
         <img src="http://api.flattr.com/button/flattr-badge-large.png" alt="Flattr this" title="Flattr this" border="0"></a>
@@ -652,4 +653,4 @@
   </script>
 </div>
 </body>
-</html>
+</html><!-- Magick Cache 4th May 2015 17:59 -->