Report page in validation service is not well-formed XML when the validation was successful

Hi all,

The validation results page in the css-validator returns not well-formed XML when the validation was successful. When the validation wasn't successful, the returned document is well-formed. First I tried this with file upload and then with validation per URL, always with the same result.
Interestingly enough, the page validates in the HTML validator, but it's obvious that the XML is invalid. The problem is in line 35, where there is a closing </a> tag within the <p> element but no opening <a>.

The background is that I wanted to build a validation script, upload the file(s) per URL and then check for the existence of a <div id="errors">. To do this, I parse the result page with an XML parser (it's supposed to be XHTML) and check for the div using an Xpath.

Thanks for any help,

Lars

Code follows:
<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN'
                      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html lang='en' xml:lang='en' xmlns='http://www.w3.org/1999/xhtml'>
    <head>
        <meta name="ROBOTS" content="NOINDEX, NOFOLLOW" />
        <title>Ergebnisse des CSS-Validators  file://localhost/fototour.css (CSS level 2.1)</title>
        <link href="http://jigsaw.w3.org/css-validator/" rel="validator" />
        <link type="text/css" rel='stylesheet' href='style/base.css' />
        <link type="text/css" rel='stylesheet' href='style/results.css' />
    </head>

    <body>
      <div id="banner">
       <h1 id="title"><a href="http://www.w3.org/"><img alt="W3C" width="110" height="61" id="logo" src="./images/w3c.png" /></a>
       <a href="./"><span>CSS Validation Service</span></a></h1>

       <p id="tagline">
         Ergebnisse des CSS-Validators  file://localhost/fototour.css (CSS level 2.1)
       </p>
      </div>

        <ul class="navbar" id="jumpbar">
            <li><strong>Zu:</strong></li>
        
            <li><a href="#warnings">Warnungen (4)</a></li>
        
            <li><a href="#css">Ihrem validierten Cascading Style Sheet</a></li>
    
        </ul>
<div id="results_container">
        <h2>Ergebnisse des CSS-Validators  <a href="file://localhost/fototour.css">file://localhost/fototour.css</a> (CSS level 2.1)</h2>

            <!-- NO ERRORS -->
        <div id='congrats'>
            <h3>Gratuliere! Keine Fehler gefunden.</h3>
            <p>
                </a>
                Dieses Dokument wurde als  <a href=http://www.w3.org/TR/CSS21/>CSS level 2.1</a> validiert! 
            </p>

            <p>
                Sie können dieses Icon auf jeder validierten Seite darstellen, um zu zeigen, daß Sie sich die Mühe gemacht haben interoperable Web-Seiten zu erstellen.  Nachfolgend finden Sie den XHTML-Code, den Sie verwenden können um das Icon in Ihre Web-Seiten einzubauen:
            </p>
            <img class="inline-badge" style="border:0;width:88px;height:31px" src="http://jigsaw.w3.org/css-validator/images/vcss" alt="CSS ist valide!" />   
            <pre class='example badgeSnippet'>
&lt;p&gt;
    &lt;a href="http://jigsaw.w3.org/css-validator/"&gt;
        &lt;img style="border:0;width:88px;height:31px"
            src="http://jigsaw.w3.org/css-validator/images/vcss"
            alt="CSS ist valide!" /&gt;
    &lt;/a&gt;

&lt;/p&gt;
            </pre>
        <img class="inline-badge" style="border:0;width:88px;height:31px" src="http://jigsaw.w3.org/css-validator/images/vcss-blue" alt="CSS ist valide!" />
        <pre class='example badgeSnippet'>
&lt;p&gt;
&lt;a href="http://jigsaw.w3.org/css-validator/"&gt;
    &lt;img style="border:0;width:88px;height:31px"
        src="http://jigsaw.w3.org/css-validator/images/vcss-blue"
        alt="CSS ist valide!" /&gt;
&lt;/a&gt;

&lt;/p&gt;
        </pre>
            <p>(beenden Sie ein img Tag mit &gt; anstatt /&gt; wenn Sie HTML &lt;= 4.01 verwenden)</p>
            <p>
                Sie können das Bild auch herunterladen und in Ihrem lokalen Web-Verzeichnis speichern.  In diesem Fall müssen sie das obere XHTML-Fragment so verändern, daß es auf Ihr lokales Bild verweist. 
            </p>

            
        </div>
        <p class="backtop"><a href="#banner">&uarr; Top</a></p>
            <!-- DEALING WITH WARNINGS -->
        <div id="warnings">
            <h3>Warnungen (4)</h3>
            <div class='warning-section-all'>
                                        
                <div class='warning-section'>

                    <h4>URI : <a href="file://localhost/fototour.css">file://localhost/fototour.css</a></h4>
                    <table>
                            
                        <tr class='warning'>
                            <td class='linenumber' title='Line 8'>8</td>
                            <td class='codeContext'> h1 </td>
                            <td class='level1' title='warning level 1'>Namen von Schriftfamilien, die Leerzeichen enthalten, sollten in (doppelte) Anführungszeichen eingeschlossen werden.  Ohne Anführungszeichen werden alle Leerraumzeichen (Leerzeichen, Tabulatoren, etc.) vor und nach dem Namen ignoriert, und jede Sequenz von Leerraumzeichen innerhalb des Namens wird durch ein einzelnes Leerzeichen ersetzt.</td>

                        </tr>
                            
                        <tr class='warning'>
                            <td class='linenumber' title='Line 21'>21</td>
                            <td class='codeContext'> input.submit </td>
                            <td class='level1' title='warning level 1'>Gleiche Farbe für background-color und border-top-color</td>
                        </tr>
                            
                        <tr class='warning'>

                            <td class='linenumber' title='Line 21'>21</td>
                            <td class='codeContext'> input.submit </td>
                            <td class='level1' title='warning level 1'>Gleiche Farbe für background-color und border-right-color</td>
                        </tr>
                            
                        <tr class='warning'>
                            <td class='linenumber' title='Line 21'>21</td>

                            <td class='codeContext'> input.submit </td>
                            <td class='level1' title='warning level 1'>Gleiche Farbe für background-color und border-left-color</td>
                        </tr>
                
                    </table>
                </div>
    
            </div>
        </div>

        <p class="backtop"><a href="#banner">&uarr; Top</a></p>

        <div id="css">
            <h3>Ihr validiertes Cascading Style Sheet:</h3>
            <div class='vAtRule'>
    
            
                    <div>
        
                        <div class='selector'>
                                                        <span class='selectorValue'>

                                h1
                            </span>
                            {
                                                        <div class='RuleList'>
            
                                <div class='Rule'>
                                    <span class='Property'>color</span> :
                                    <span class='PropertyValue'>#576072</span>;
                                </div>
            
                                <div class='Rule'>

                                    <span class='Property'>font-family</span> :
                                    <span class='PropertyValue'>times new roman, serif</span>;
                                </div>
            
                                <div class='Rule'>
                                    <span class='Property'>font-size</span> :
                                    <span class='PropertyValue'>1.6em</span>;
                                </div>
            
                                <div class='Rule'>

                                    <span class='Property'>font-weight</span> :
                                    <span class='PropertyValue'>normal</span>;
                                </div>
            
                                <div class='Rule'>
                                    <span class='Property'>letter-spacing</span> :
                                    <span class='PropertyValue'>0.15em</span>;
                                </div>
            
                                <div class='Rule'>

                                    <span class='Property'>line-height</span> :
                                    <span class='PropertyValue'>120%</span>;
                                </div>
            
                                <div class='Rule'>
                                    <span class='Property'>margin</span> :
                                    <span class='PropertyValue'>0 0 0.8em 0</span>;
                                </div>
            
                                <div class='Rule'>

                                    <span class='Property'>padding</span> :
                                    <span class='PropertyValue'>0</span>;
                                </div>
            
                                <div class='Rule'>
                                    <span class='Property'>text-transform</span> :
                                    <span class='PropertyValue'>uppercase</span>;
                                </div>
            
                            </div>

                                                        }
                                                    </div>
        
                        <div class='selector'>
                                                        <span class='selectorValue'>
                                h2
                            </span>
                            {
                                                        <div class='RuleList'>
            
                                <div class='Rule'>
                                    <span class='Property'>color</span> :
                                    <span class='PropertyValue'>#576072</span>;
                                </div>

            
                                <div class='Rule'>
                                    <span class='Property'>font-family</span> :
                                    <span class='PropertyValue'>verdana, arial, sans-serif</span>;
                                </div>
            
                                <div class='Rule'>
                                    <span class='Property'>font-size</span> :
                                    <span class='PropertyValue'>1.2em</span>;
                                </div>

            
                                <div class='Rule'>
                                    <span class='Property'>line-height</span> :
                                    <span class='PropertyValue'>120%</span>;
                                </div>
            
                                <div class='Rule'>
                                    <span class='Property'>margin</span> :
                                    <span class='PropertyValue'>20px 0 20px 0</span>;
                                </div>

            
                                <div class='Rule'>
                                    <span class='Property'>padding</span> :
                                    <span class='PropertyValue'>0</span>;
                                </div>
            
                            </div>
                                                        }
                                                    </div>
        
                        <div class='selector'>
                                                        <span class='selectorValue'>

                                h3
                            </span>
                            {
                                                        <div class='RuleList'>
            
                                <div class='Rule'>
                                    <span class='Property'>color</span> :
                                    <span class='PropertyValue'>#576072</span>;
                                </div>
            
                                <div class='Rule'>

                                    <span class='Property'>font-family</span> :
                                    <span class='PropertyValue'>verdana, arial, sans-serif</span>;
                                </div>
            
                                <div class='Rule'>
                                    <span class='Property'>font-size</span> :
                                    <span class='PropertyValue'>1em</span>;
                                </div>
            
                                <div class='Rule'>

                                    <span class='Property'>line-height</span> :
                                    <span class='PropertyValue'>120%</span>;
                                </div>
            
                                <div class='Rule'>
                                    <span class='Property'>margin</span> :
                                    <span class='PropertyValue'>10px 0 5px 0</span>;
                                </div>
            
                                <div class='Rule'>

                                    <span class='Property'>padding</span> :
                                    <span class='PropertyValue'>0</span>;
                                </div>
            
                            </div>
                                                        }
                                                    </div>
        
                        <div class='selector'>
                                                        <span class='selectorValue'>
                                h4
                            </span>

                            {
                                                        <div class='RuleList'>
            
                                <div class='Rule'>
                                    <span class='Property'>color</span> :
                                    <span class='PropertyValue'>#576072</span>;
                                </div>
            
                                <div class='Rule'>
                                    <span class='Property'>font-family</span> :
                                    <span class='PropertyValue'>verdana, arial, sans-serif</span>;
                                </div>

            
                                <div class='Rule'>
                                    <span class='Property'>font-size</span> :
                                    <span class='PropertyValue'>1em</span>;
                                </div>
            
                                <div class='Rule'>
                                    <span class='Property'>line-height</span> :
                                    <span class='PropertyValue'>120%</span>;
                                </div>

            
                                <div class='Rule'>
                                    <span class='Property'>margin</span> :
                                    <span class='PropertyValue'>10px 0 0 0</span>;
                                </div>
            
                                <div class='Rule'>
                                    <span class='Property'>padding</span> :
                                    <span class='PropertyValue'>0</span>;
                                </div>

            
                            </div>
                                                        }
                                                    </div>
        
                        <div class='selector'>
                                                        <span class='selectorValue'>
                                h1 a:link, h1 a:visited, h1 a:hover, h1 a:focus
                            </span>
                            {
                                                        <div class='RuleList'>
            
                                <div class='Rule'>

                                    <span class='Property'>color</span> :
                                    <span class='PropertyValue'>#576072</span>;
                                </div>
            
                                <div class='Rule'>
                                    <span class='Property'>text-decoration</span> :
                                    <span class='PropertyValue'>none</span>;
                                </div>
            
                            </div>

                                                        }
                                                    </div>
        
                        <div class='selector'>
                                                        <span class='selectorValue'>
                                h2 a:link, h2 a:visited, h2 a:hover, h2 a:focus
                            </span>
                            {
                                                        <div class='RuleList'>
            
                                <div class='Rule'>
                                    <span class='Property'>color</span> :
                                    <span class='PropertyValue'>#576072</span>;
                                </div>

            
                                <div class='Rule'>
                                    <span class='Property'>text-decoration</span> :
                                    <span class='PropertyValue'>none</span>;
                                </div>
            
                            </div>
                                                        }
                                                    </div>
        
                        <div class='selector'>
                                                        <span class='selectorValue'>

                                h3 a:link, h3 a:visited, h3 a:hover, h3 a:focus
                            </span>
                            {
                                                        <div class='RuleList'>
            
                                <div class='Rule'>
                                    <span class='Property'>color</span> :
                                    <span class='PropertyValue'>#576072</span>;
                                </div>
            
                                <div class='Rule'>

                                    <span class='Property'>text-decoration</span> :
                                    <span class='PropertyValue'>none</span>;
                                </div>
            
                            </div>
                                                        }
                                                    </div>
        
                        <div class='selector'>
                                                        <span class='selectorValue'>
                                h4 a:link, h4 a:visited, h4 a:hover, h4 a:focus
                            </span>

                            {
                                                        <div class='RuleList'>
            
                                <div class='Rule'>
                                    <span class='Property'>color</span> :
                                    <span class='PropertyValue'>#576072</span>;
                                </div>
            
                                <div class='Rule'>
                                    <span class='Property'>text-decoration</span> :
                                    <span class='PropertyValue'>none</span>;
                                </div>

            
                            </div>
                                                        }
                                                    </div>
        
                        <div class='selector'>
                                                        <span class='selectorValue'>
                                div.chapter h3
                            </span>
                            {
                                                        <div class='RuleList'>
            
                                <div class='Rule'>

                                    <span class='Property'>font-size</span> :
                                    <span class='PropertyValue'>1em</span>;
                                </div>
            
                                <div class='Rule'>
                                    <span class='Property'>margin</span> :
                                    <span class='PropertyValue'>0 0 0 180px</span>;
                                </div>
            
                            </div>

                                                        }
                                                    </div>
        
                        <div class='selector'>
                                                        <span class='selectorValue'>
                                select
                            </span>
                            {
                                                        <div class='RuleList'>
            
                                <div class='Rule'>

                                    <span class='Property'>cursor</span> :
                                    <span class='PropertyValue'> pointer</span>;
                                </div>
            
                                <div class='Rule'>
                                    <span class='Property'>font-size</span> :
                                    <span class='PropertyValue'>1em</span>;
                                </div>

            
                                <div class='Rule'>
                                    <span class='Property'>width</span> :
                                    <span class='PropertyValue'>12em</span>;
                                </div>
            
                            </div>
                                                        }
                                                    </div>
        
                        <div class='selector'>
                                                        <span class='selectorValue'>

                                .searchtext
                            </span>
                            {
                                                        <div class='RuleList'>
            
                                <div class='Rule'>
                                    <span class='Property'>font-size</span> :
                                    <span class='PropertyValue'>1em</span>;
                                </div>
            
                                <div class='Rule'>

                                    <span class='Property'>width</span> :
                                    <span class='PropertyValue'>12em</span>;
                                </div>
            
                            </div>
                                                        }
                                                    </div>
        
                        <div class='selector'>
                                                        <span class='selectorValue'>
                                input.submit
                            </span>

                            {
                                                        <div class='RuleList'>
            
                                <div class='Rule'>
                                    <span class='Property'>background</span> :
                                    <span class='PropertyValue'>#fcfaf2 url(../bilder/button_suche.gif) right 0%</span>;
                                </div>
            
                                <div class='Rule'>
                                    <span class='Property'>border</span> :
                                    <span class='PropertyValue'>1px solid #fcfaf2</span>;

                                </div>
            
                                <div class='Rule'>
                                    <span class='Property'>float</span> :
                                    <span class='PropertyValue'>right</span>;
                                </div>
            
                                <div class='Rule'>
                                    <span class='Property'>font-size</span> :
                                    <span class='PropertyValue'>1em</span>;
                                </div>

            
                                <div class='Rule'>
                                    <span class='Property'>margin-top</span> :
                                    <span class='PropertyValue'>8px</span>;
                                </div>
            
                                <div class='Rule'>
                                    <span class='Property'>padding-right</span> :
                                    <span class='PropertyValue'>5px</span>;
                                </div>

            
                                <div class='Rule'>
                                    <span class='Property'>width</span> :
                                    <span class='PropertyValue'>8em</span>;
                                </div>
            
                            </div>
                                                        }
                                                    </div>
        
                        <div class='selector'>

                                                        <span class='selectorValue'>
                                .searchform
                            </span>
                            {
                                                        <div class='RuleList'>
            
                                <div class='Rule'>
                                    <span class='Property'>background</span> :
                                    <span class='PropertyValue'>#fffac3</span>;
                                </div>

            
                                <div class='Rule'>
                                    <span class='Property'>border-top</span> :
                                    <span class='PropertyValue'>1px solid #c3c2ad</span>;
                                </div>
            
                                <div class='Rule'>
                                    <span class='Property'>border-bottom</span> :
                                    <span class='PropertyValue'>1px solid #c3c2ad</span>;
                                </div>

            
                                <div class='Rule'>
                                    <span class='Property'>line-height</span> :
                                    <span class='PropertyValue'>20px</span>;
                                </div>
            
                                <div class='Rule'>
                                    <span class='Property'>margin</span> :
                                    <span class='PropertyValue'>0 0 18px 0</span>;
                                </div>

            
                                <div class='Rule'>
                                    <span class='Property'>padding</span> :
                                    <span class='PropertyValue'>8px 0 8px 8px</span>;
                                </div>
            
                                <div class='Rule'>
                                    <span class='Property'>width</span> :
                                    <span class='PropertyValue'>13.7em</span>;
                                </div>

            
                            </div>
                                                        }
                                                    </div>
        
                        <div class='selector'>
                                                        <span class='selectorValue'>
                                * html .searchform
                            </span>
                            {
                                                        <div class='RuleList'>
            
                                <div class='Rule'>

                                    <span class='Property'>background</span> :
                                    <span class='PropertyValue'>#fffac3</span>;
                                </div>
            
                                <div class='Rule'>
                                    <span class='Property'>line-height</span> :
                                    <span class='PropertyValue'>20px</span>;
                                </div>

            
                                <div class='Rule'>
                                    <span class='Property'>margin</span> :
                                    <span class='PropertyValue'>0 0 18px 0</span>;
                                </div>
            
                                <div class='Rule'>
                                    <span class='Property'>padding</span> :
                                    <span class='PropertyValue'>8px 0 8px 8px</span>;
                                </div>

            
                                <div class='Rule'>
                                    <span class='Property'>width</span> :
                                    <span class='PropertyValue'>100%</span>;
                                </div>
            
                            </div>
                                                        }
                                                    </div>
        
                        <div class='selector'>
                                                        <span class='selectorValue'>

                                div.attention
                            </span>
                            {
                                                        <div class='RuleList'>
            
                                <div class='Rule'>
                                    <span class='Property'>background</span> :
                                    <span class='PropertyValue'> url(../bilder/icon_achtung.gif) no-repeat left top</span>;
                                </div>
            
                                <div class='Rule'>

                                    <span class='Property'>border-top</span> :
                                    <span class='PropertyValue'>1px solid #a0afd0</span>;
                                </div>
            
                                <div class='Rule'>
                                    <span class='Property'>color</span> :
                                    <span class='PropertyValue'>#5a74a9</span>;
                                </div>
            
                                <div class='Rule'>

                                    <span class='Property'>font-weight</span> :
                                    <span class='PropertyValue'>bold</span>;
                                </div>
            
                                <div class='Rule'>
                                    <span class='Property'>margin-bottom</span> :
                                    <span class='PropertyValue'>20px</span>;
                                </div>

            
                                <div class='Rule'>
                                    <span class='Property'>padding-left</span> :
                                    <span class='PropertyValue'>23px</span>;
                                </div>
            
                                <div class='Rule'>
                                    <span class='Property'>width</span> :
                                    <span class='PropertyValue'>95%</span>;
                                </div>

            
                            </div>
                                                        }
                                                    </div>
        
                        <div class='selector'>
                                                        <span class='selectorValue'>
                                div.chapters div.clear
                            </span>
                            {
                                                        <div class='RuleList'>
            
                                <div class='Rule'>

                                    <span class='Property'>font-size</span> :
                                    <span class='PropertyValue'>0</span>;
                                </div>
            
                                <div class='Rule'>
                                    <span class='Property'>height</span> :
                                    <span class='PropertyValue'>20px</span>;
                                </div>
            
                                <div class='Rule'>

                                    <span class='Property'>line-height</span> :
                                    <span class='PropertyValue'>0</span>;
                                </div>
            
                                <div class='Rule'>
                                    <span class='Property'>margin</span> :
                                    <span class='PropertyValue'>0</span>;
                                </div>
            
                                <div class='Rule'>

                                    <span class='Property'>padding</span> :
                                    <span class='PropertyValue'>0</span>;
                                </div>
            
                            </div>
                                                        }
                                                    </div>
        
                        <div class='selector'>
                                                        <span class='selectorValue'>
                                div.chapters p.legend span
                            </span>

                            {
                                                        <div class='RuleList'>
            
                                <div class='Rule'>
                                    <span class='Property'>color</span> :
                                    <span class='PropertyValue'>#595f6d</span>;
                                </div>
            
                            </div>
                                                        }
                                                    </div>

        
                        <div class='selector'>
                                                        <span class='selectorValue'>
                                div.chapter p
                            </span>
                            {
                                                        <div class='RuleList'>
            
                                <div class='Rule'>
                                    <span class='Property'>margin</span> :
                                    <span class='PropertyValue'>0 0 -3px 180px</span>;
                                </div>

            
                                <div class='Rule'>
                                    <span class='Property'>padding</span> :
                                    <span class='PropertyValue'>0</span>;
                                </div>
            
                            </div>
                                                        }
                                                    </div>
        
                        <div class='selector'>

                                                        <span class='selectorValue'>
                                div.chapter p.legend
                            </span>
                            {
                                                        <div class='RuleList'>
            
                                <div class='Rule'>
                                    <span class='Property'>background</span> :
                                    <span class='PropertyValue'>#e4eaf8</span>;
                                </div>

            
                                <div class='Rule'>
                                    <span class='Property'>color</span> :
                                    <span class='PropertyValue'>#595f6d</span>;
                                </div>
            
                                <div class='Rule'>
                                    <span class='Property'>float</span> :
                                    <span class='PropertyValue'>left</span>;
                                </div>

            
                                <div class='Rule'>
                                    <span class='Property'>font-size</span> :
                                    <span class='PropertyValue'>0.9em</span>;
                                </div>
            
                                <div class='Rule'>
                                    <span class='Property'>line-height</span> :
                                    <span class='PropertyValue'>1.2em</span>;
                                </div>

            
                                <div class='Rule'>
                                    <span class='Property'>margin</span> :
                                    <span class='PropertyValue'>0 0 10px 0</span>;
                                </div>
            
                                <div class='Rule'>
                                    <span class='Property'>padding</span> :
                                    <span class='PropertyValue'>0</span>;
                                </div>

            
                                <div class='Rule'>
                                    <span class='Property'>width</span> :
                                    <span class='PropertyValue'>162px</span>;
                                </div>
            
                            </div>
                                                        }
                                                    </div>
        
                        <div class='selector'>
                                                        <span class='selectorValue'>

                                div.chapter p.legend span
                            </span>
                            {
                                                        <div class='RuleList'>
            
                                <div class='Rule'>
                                    <span class='Property'>display</span> :
                                    <span class='PropertyValue'>block</span>;
                                </div>
            
                                <div class='Rule'>

                                    <span class='Property'>padding</span> :
                                    <span class='PropertyValue'>3px</span>;
                                </div>
            
                            </div>
                                                        }
                                                    </div>
        
                        <div class='selector'>
                                                        <span class='selectorValue'>
                                * html div.chapter p
                            </span>

                            {
                                                        <div class='RuleList'>
            
                                <div class='Rule'>
                                    <span class='Property'>width</span> :
                                    <span class='PropertyValue'>100%</span>;
                                </div>
            
                            </div>
                                                        }
                                                    </div>

        
                        <div class='selector'>
                                                        <span class='selectorValue'>
                                #content div.content_spacing ul
                            </span>
                            {
                                                        <div class='RuleList'>
            
                                <div class='Rule'>
                                    <span class='Property'>list-style</span> :
                                    <span class='PropertyValue'>none</span>;
                                </div>

            
                                <div class='Rule'>
                                    <span class='Property'>list-style-image</span> :
                                    <span class='PropertyValue'>none</span>;
                                </div>
            
                                <div class='Rule'>
                                    <span class='Property'>margin</span> :
                                    <span class='PropertyValue'>80px 0 0 0</span>;
                                </div>

            
                                <div class='Rule'>
                                    <span class='Property'>padding</span> :
                                    <span class='PropertyValue'>0</span>;
                                </div>
            
                            </div>
                                                        }
                                                    </div>
        
                        <div class='selector'>
                                                        <span class='selectorValue'>

                                #content div.content_spacing ul li
                            </span>
                            {
                                                        <div class='RuleList'>
            
                                <div class='Rule'>
                                    <span class='Property'>border-top</span> :
                                    <span class='PropertyValue'>1px solid #fff</span>;
                                </div>
            
                                <div class='Rule'>

                                    <span class='Property'>margin</span> :
                                    <span class='PropertyValue'>0</span>;
                                </div>
            
                                <div class='Rule'>
                                    <span class='Property'>padding</span> :
                                    <span class='PropertyValue'>0</span>;
                                </div>
            
                            </div>

                                                        }
                                                    </div>
        
                        <div class='selector'>
                                                        <span class='selectorValue'>
                                #content div.content_spacing ul li.on
                            </span>
                            {
                                                        <div class='RuleList'>
            
                                <div class='Rule'>
                                    <span class='Property'>font-weight</span> :
                                    <span class='PropertyValue'>bold</span>;
                                </div>

            
                            </div>
                                                        }
                                                    </div>
        
                        <div class='selector'>
                                                        <span class='selectorValue'>
                                #content div.content_spacing ul li a:link, #content div.content_spacing ul li a:visited
                            </span>
                            {
                                                        <div class='RuleList'>
            
                                <div class='Rule'>

                                    <span class='Property'>background</span> :
                                    <span class='PropertyValue'> url(../bilder/pfeil_rechts.gif) no-repeat top left</span>;
                                </div>
            
                                <div class='Rule'>
                                    <span class='Property'>color</span> :
                                    <span class='PropertyValue'>#425fa5</span>;
                                </div>

            
                                <div class='Rule'>
                                    <span class='Property'>display</span> :
                                    <span class='PropertyValue'>block</span>;
                                </div>
            
                                <div class='Rule'>
                                    <span class='Property'>text-decoration</span> :
                                    <span class='PropertyValue'>none</span>;
                                </div>

            
                                <div class='Rule'>
                                    <span class='Property'>padding</span> :
                                    <span class='PropertyValue'>0 0 1px 23px</span>;
                                </div>
            
                            </div>
                                                        }
                                                    </div>
        
                        <div class='selector'>
                                                        <span class='selectorValue'>

                                #content div.content_spacing ul li a:hover, #content div.content_spacing ul li a:focus
                            </span>
                            {
                                                        <div class='RuleList'>
            
                                <div class='Rule'>
                                    <span class='Property'>background</span> :
                                    <span class='PropertyValue'> url(../bilder/pfeil_rechts.gif) no-repeat top left</span>;
                                </div>

            
                                <div class='Rule'>
                                    <span class='Property'>color</span> :
                                    <span class='PropertyValue'>#425fa5</span>;
                                </div>
            
                                <div class='Rule'>
                                    <span class='Property'>display</span> :
                                    <span class='PropertyValue'>block</span>;
                                </div>

            
                                <div class='Rule'>
                                    <span class='Property'>text-decoration</span> :
                                    <span class='PropertyValue'>underline</span>;
                                </div>
            
                                <div class='Rule'>
                                    <span class='Property'>padding</span> :
                                    <span class='PropertyValue'>0 0 1px 23px</span>;
                                </div>

            
                            </div>
                                                        }
                                                    </div>
        
                        <div class='selector'>
                                                        <span class='selectorValue'>
                                * html #content div.content_spacing ul li a:link, * html #content div.content_spacing ul li a:visited
                            </span>
                            {
                                                        <div class='RuleList'>
            
                                <div class='Rule'>

                                    <span class='Property'>height</span> :
                                    <span class='PropertyValue'>10px</span>;
                                </div>
            
                            </div>
                                                        }
                                                    </div>
        
                    </div>
            
            </div>
        </div>

        <p class="backtop"><a href="#banner">&uarr; Top</a></p>
</div><!-- results_container -->
        <ul class="navbar" id="menu">
            <li><strong><a href="./" title="Homepage des W3C CSS Validierungsdienstes">Home</a></strong> <span class="hideme">|</span></li>
            <li><a href="about.html" title="Über den Dienst">About</a> <span class="hideme">|</span></li>

            <li><a href="documentation.html" title="Dokumentation zum W3C CSS Validation Service">Documentation</a> <span class="hideme">|</span></li>
            <li><a href="DOWNLOAD.html" title="Den CSS Validator herunterladen und installieren">Download</a> <span class="hideme">|</span></li>
            <li><a href="Email.html" title="Wie Sie Feedback zu diesem Service geben können">Feedback</a> <span class="hideme">|</span></li>
            <li><a href="thanks.html" title="Referenzen und Danksagungen">Credits</a></li>

        </ul>

<div id="footer">
        <p id="activity_logos">
            <a href="http://www.w3.org/QA/" title="W3C's Quality Assurance Activity, bringing you free Web quality tools and more"><img src="http://www.w3.org/QA/2002/12/qa-small.png" alt="QA" /></a><a href="http://www.w3.org/Style/CSS/learning" title="Learn more about Cascading Style Sheets"><img src="images/woolly-icon" alt="CSS" /></a>
        </p>
        <p id="support_logo">
            Support this tool, become a<br />
            <a href="http://www.w3.org/Consortium/supporters">

                <img src="http://www.w3.org/Consortium/supporter-logos/csupporter.png" alt="W3C Supporter" />
            </a>
        </p>
        <p class="copyright">
            <a rel="Copyright" href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a>
            &copy; 1994-2008
            <a href="http://www.w3.org/"><acronym title="World Wide Web Consortium">W3C</acronym></a>&reg;
            (<a href="http://www.csail.mit.edu/"><acronym title="Massachusetts Institute of Technology">MIT</acronym></a>,
            <a href="http://www.ercim.org/"><acronym title="European Research Consortium for Informatics and Mathematics">ERCIM</acronym></a>,
            <a href="http://www.keio.ac.jp/">Keio</a>),
            All Rights Reserved.
            W3C <a href="http://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>,
            <a href="http://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a>,
            <a rel="Copyright" href="http://www.w3.org/Consortium/Legal/copyright-documents">document use</a>

            and <a rel="Copyright" href="http://www.w3.org/Consortium/Legal/copyright-software">software licensing</a>
            rules apply. Your interactions with this site are in accordance
            with our <a href="http://www.w3.org/Consortium/Legal/privacy-statement#Public">public</a> and
            <a href="http://www.w3.org/Consortium/Legal/privacy-statement#Members">Member</a> privacy statements.
        </p>
</div>
    </body>
</html>

-- 
Dr. Lars G. Svensson
Deutsche Nationalbibliothek
Informationstechnik
Adickesallee 1
60322 Frankfurt
http://www.d-nb.de/

Received on Wednesday, 28 May 2008 11:26:43 UTC