I'm having trouble applying any formatting to text whatsoever using wordml in an XSLT file. I'm new to this, so I might have made a silly mistake here. Anyway, the text appears no problem when I apply the XSLT template to my XML file, but I can't bold it, italic it, underline it, nothing. I've tried applying the formatting directly to the paragraph, and also using a style and referencing it in the paragraph. Anyway, here's my code for the style:
<w:styles>
<w:style w:type="paragraph" w:default="on" w:styleId="order">
<w:name w:val="Order" />
<w:pPr>
<w:b/>
</w:pPr>
</w:style>
</w:styles>
And for the run of text:
<w:body>
<w:p>
<w:pPr>
<w:pStyle w:val="order"/>
</w:pPr>
<w:r>
<w:t>
Text here
</w:t>
</w:r>
</w:p>
</w:body>
No matter what I do, only the plain text shows up in Word 2003. Do I perhaps need to use a .dot file, or does that not matter?
Thanks!

@w:valfor your style is "Order" and the value in your document is "order" (different case for the O/o). Is that a type-o in your question? – Mads Hansen Sep 25 '11 at 13:22"w;"is bound) correctly? As presented, the two XML documents are not namespace-wellformed. – Dimitre Novatchev Sep 25 '11 at 15:06w:styleIdis used to reference the style notw:valas far as I know, but thanks! – IceDragon Oct 1 '11 at 13:57<?xml version="1.0" encoding="iso-8859-1"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:w="http://schemas.microsoft.com/office/word/2003/wordml" xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:wx="http://schemas.microsoft.com/office/word/2003/auxHint" exclude-result-prefixes="msxsl"> <xsl:output method="xml" indent="yes"/>– IceDragon Oct 1 '11 at 13:57