 |
 |
 |
Hi,
Aplogies for the big post!
I am trying to transform some XML data into a word document. When I do
it the transformation just creates a blank document. The xml has parent
& child data (i.e. one parent table, with a many relationship to the
children.)
Where there is only one table I can create a word doc OK, but I think
it is this relationship which is causing the whole thing not to work.
Below I have list (1) the c# code, (2) the XML I am trying to transform
and (3) the XSL.
Thanks in advance for any help you can provide!
(1) the c#:
//write the XML data to disc from the dataset
dsNewServiceCharge.WriteXml(sTemporaryXMLFile);
XmlDocument xmlD1 =3D new XmlDocument();
//read the xml data back in
xmlD1.Load(sTemporaryXMLFile);
XmlNodeList nlPrintQueueTable =3D
xmlD1.GetElementsByTagName("PrintQueueTable");
XmlNodeList nlDetail =3D xmlD1.GetElementsByTagName("Detail");
//insert the child so that it is WITHIN the parent data
XmlNode
CurrNode=3DnlPrintQueueTable[0].InsertAfter(nlDetail[0],nlPrintQueueTable[0=
]=2EChildNodes[nlPrintQueueTable[0].ChildNodes.Count-1]);
//save the temp file back to disk
xmlD1.Save(sTemporaryXMLFile);
XslTransform xsltSC =3D new XslTransform();
string sSCTemplate =3D sTemplateFolder + "\\servicecharge.xsl";
sOutput =3D sTemporaryFolder + @"\\tempservicecharge.xml";
xsltSC.Load(sSCTemplate,new XmlUrlResolver());
xslt.Transform(sTemporaryXMLFile, sOutput,new XmlUrlResolver());
(2) the XML I am trying to transform (after I have done the node
insertion above):
<?xml version=3D"1.0" standalone=3D"yes" ?>
- <PrintQueueServiceChargeDS>
- <PrintQueueTable>
<Name>A SMith</Name>
<AccountNumber>blah</AccountNumber>
<TenancyPK>blah</TenancyPK>
<PeriodFK>04</PeriodFK>
<PropertyRef>002blah</PropertyRef>
<Address1>2blah</Address1>
<Address2>blahblahblah</Address2>
<Address3>blahblahblah</Address3>
<PostCode>blahblah</PostCode>
<SupportingPeople>false</SupportingPeople>
<TotalAnnualCharge>17.1780</TotalAnnualCharge>
<TotalWeeklyCharge>0.3303</TotalWeeklyCharge>
<ManagementCharge>0</ManagementCharge>
<AnnualCharge>17.1780</AnnualCharge>
<WeeklyCharge>0.3303</WeeklyCharge>
<PropertyPK>102</PropertyPK>
<PropertyFK>102</PropertyFK>
<TenancyTypeFK>6</TenancyTypeFK>
<SchemeFK>856</SchemeFK>
- <Detail>
<Description>Resident Scheme Staff - Salaries</Description>
<PeriodFK>04</PeriodFK>
<PropertyFK>102</PropertyFK>
<Charge>17.1780</Charge>
<ServiceChargeDescriptionFK>1</ServiceChargeDescriptionFK>
</Detail>
</PrintQueueTable>
</PrintQueueServiceChargeDS>
(3) the XSL:
<?xml version=3D"1.0" encoding=3D"UTF-8" standalone=3D"yes"?>
<xsl:stylesheet version=3D"1.0"
xmlns:xsl=3D"http://www.w3.org/1999/XSL/Transform"
xmlns:w=3D"http://schemas.microsoft.com/office/word/2003/wordml"
xmlns:v=3D"urn:schemas-microsoft-com:vml"
xmlns:w10=3D"urn:schemas-microsoft-com:office:word"
xmlns:sl=3D"http://schemas.microsoft.com/schemaLibrary/2003/core"
xmlns:aml=3D"http://schemas.microsoft.com/aml/2001/core"
xmlns:wx=3D"http://schemas.microsoft.com/office/word/2003/auxHint"
xmlns:o=3D"urn:schemas-microsoft-com:office:office"
xmlns:dt=3D"uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
xmlns:ns0=3D"http://tempuri.org/PrintQueueServiceChargeDS.xsd">
<xsl:output method=3D"xml" encoding=3D"UTF-8" standalone=3D"yes" />
<xsl:template match=3D"/">
<xsl:processing-instruction name=3D"mso-application">
<xsl:text>progid=3D"Word.Document"</xsl:text>
</xsl:processing-instruction>
<w:wordDocument
xmlns:w=3D"http://schemas.microsoft.com/office/word/2003/wordml"
xmlns:v=3D"urn:schemas-microsoft-com:vml"
xmlns:w10=3D"urn:schemas-microsoft-com:office:word"
xmlns:sl=3D"http://schemas.microsoft.com/schemaLibrary/2003/core"
xmlns:aml=3D"http://schemas.microsoft.com/aml/2001/core"
xmlns:wx=3D"http://schemas.microsoft.com/office/word/2003/auxHint"
xmlns:o=3D"urn:schemas-microsoft-com:office:office"
xmlns:dt=3D"uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
xmlns:ns0=3D"http://tempuri.org/PrintQueueServiceChargeDS.xsd"
w:macrosPresent=3D"no" w:embeddedObjPresent=3D"no" w:ocxPresent=3D"no"
xml:space=3D"preserve">
<o:DocumentProperties>
<o:Title>Northern Counties Housing Association</o:Title>
<o:Author>Jim Ryder</o:Author>
<o:LastAuthor>Jim Ryder</o:LastAuthor>
<o:Revision>23</o:Revision>
<o:TotalTime>66</o:TotalTime>
<o:Created>2006-01-26T14:45:00Z</o:Created>
<o:LastSaved>2006-02-03T11:53:00Z</o:LastSaved>
<o:Pages>1</o:Pages>
<o:Words>56</o:Words>
<o:Characters>321</o:Characters>
<o:Company>Phoenix Software Ltd</o:Company>
<o:Lines>2</o:Lines>
<o:Paragraphs>1</o:Paragraphs>
<o:CharactersWithSpaces>376</o:CharactersWithSpaces>
<o:Version>11.6359</o:Version>
</o:DocumentProperties>
<w:fonts>
<w:defaultFonts w:ascii=3D"Times New Roman" w:fareast=3D"Times New
Roman" w:h-ansi=3D"Times New Roman" w:cs=3D"Times New Roman" />
<w:font w:name=3D"Tahoma">
<w:panose-1 w:val=3D"020B0604030504040204" />
<w:charset w:val=3D"00" />
<w:family w:val=3D"Swiss" />
<w:pitch w:val=3D"variable" />
<w:sig w:usb-0=3D"61007A87" w:usb-1=3D"80000000"
w:usb-2=3D"00000008" w:usb-3=3D"00000000" w:csb-0=3D"000101FF"
w:csb-1=3D"00000000" />
</w:font>
</w:fonts>
<w:lists>
<w:listDef w:listDefId=3D"0">
<w:lsid w:val=3D"798417C2" />
<w:plt w:val=3D"Multilevel" />
<w:tmpl w:val=3D"C6680E22" />
<w:lvl w:ilvl=3D"0">
<w:start w:val=3D"1" />
<w:lvlText w:val=3D"%1" />
<w:lvlJc w:val=3D"left" />
<w:pPr>
<w:tabs>
<w:tab w:val=3D"list" w:pos=3D"432" />
</w:tabs>
<w:ind w:left=3D"432" w:hanging=3D"432" />
</w:pPr>
<w:rPr>
<w:rFonts w:ascii=3D"Arial" w:h-ansi=3D"Arial"
w:hint=3D"default" />
<w:b />
<w:i w:val=3D"off" />
<w:strike w:val=3D"off" />
<w:dstrike w:val=3D"off" />
<w:outline w:val=3D"off" />
<w:shadow w:val=3D"off" />
<w:emboss w:val=3D"off" />
<w:imprint w:val=3D"off" />
<w:vanish w:val=3D"off" />
<w:sz w:val=3D"32" />
<w:sz-cs w:val=3D"32" />
<w:vertAlign w:val=3D"baseline" />
</w:rPr>
</w:lvl>
<w:lvl w:ilvl=3D"1">
<w:start w:val=3D"1" />
<w:pStyle w:val=3D"Heading1" />
<w:lvlText w:val=3D"%1.%2" />
<w:lvlJc w:val=3D"left" />
<w:pPr>
<w:tabs>
<w:tab w:val=3D"list" w:pos=3D"576" />
</w:tabs>
<w:ind w:left=3D"576" w:hanging=3D"576" />
</w:pPr>
<w:rPr>
<w:rFonts w:ascii=3D"Times New Roman" w:h-ansi=3D"Times New
Roman" w:cs=3D"Times New Roman" />
<w:b w:val=3D"off" />
<w:b-cs w:val=3D"off" />
<w:i w:val=3D"off" />
<w:i-cs w:val=3D"off" />
<w:caps w:val=3D"off" />
<w:smallCaps w:val=3D"off" />
<w:strike w:val=3D"off" />
<w:dstrike w:val=3D"off" />
<w:outline w:val=3D"off" />
<w:shadow w:val=3D"off" />
<w:emboss w:val=3D"off" />
<w:imprint w:val=3D"off" />
<w:noProof w:val=3D"off" />
<w:snapToGrid w:val=3D"off" />
<w:vanish w:val=3D"off" />
<w:spacing w:val=3D"0" />
<w:kern w:val=3D"0" />
<w:position w:val=3D"0" />
<w:u w:val=3D"none" />
<w:vertAlign w:val=3D"baseline" />
<w:em w:val=3D"none" />
</w:rPr>
</w:lvl>
<w:lvl w:ilvl=3D"2">
<w:start w:val=3D"1" />
<w:pStyle w:val=3D"Heading2" />
<w:lvlText w:val=3D"%1.%2.%3" />
<w:lvlJc w:val=3D"left" />
<w:pPr>
<w:tabs>
<w:tab w:val=3D"list" w:pos=3D"720" />
</w:tabs>
<w:ind w:left=3D"720" w:hanging=3D"720" />
</w:pPr>
<w:rPr>
<w:rFonts w:hint=3D"default" />
<w:b />
<w:i w:val=3D"off" />
<w:sz w:val=3D"28" />
<w:sz-cs w:val=3D"28" />
</w:rPr>
</w:lvl>
<w:lvl w:ilvl=3D"3">
<w:start w:val=3D"1" />
<w:pStyle w:val=3D"Heading3" />
<w:lvlText w:val=3D"%1.%2.%3.%4" />
<w:lvlJc w:val=3D"left" />
<w:pPr>
<w:tabs>
<w:tab w:val=3D"list" w:pos=3D"864" />
</w:tabs>
<w:ind w:left=3D"864" w:hanging=3D"864" />
</w:pPr>
<w:rPr>
<w:rFonts w:ascii=3D"Times New Roman" w:h-ansi=3D"Times New
Roman" w:cs=3D"Times New Roman" w:hint=3D"default" />
<w:b />
<w:b-cs w:val=3D"off" />
<w:i w:val=3D"off" />
<w:i-cs w:val=3D"off" />
<w:caps w:val=3D"off" />
<w:smallCaps w:val=3D"off" />
<w:strike w:val=3D"off" />
<w:dstrike w:val=3D"off" />
<w:outline w:val=3D"off" />
<w:shadow w:val=3D"off" />
<w:emboss w:val=3D"off" />
<w:imprint w:val=3D"off" />
<w:noProof w:val=3D"off" />
<w:snapToGrid w:val=3D"off" />
<w:vanish w:val=3D"off" />
<w:spacing w:val=3D"0" />
<w:kern w:val=3D"0" />
<w:position w:val=3D"0" />
<w:sz w:val=3D"24" />
<w:sz-cs w:val=3D"24" />
<w:u w:val=3D"none" />
<w:vertAlign w:val=3D"baseline" />
<w:em w:val=3D"none" />
</w:rPr>
</w:lvl>
<w:lvl w:ilvl=3D"4">
<w:start w:val=3D"1" />
<w:pStyle w:val=3D"Heading5" />
<w:lvlText w:val=3D"%1.%2.%3.%4.%5" />
<w:lvlJc w:val=3D"left" />
<w:pPr>
<w:tabs>
<w:tab w:val=3D"list" w:pos=3D"1008" />
</w:tabs>
<w:ind w:left=3D"1008" w:hanging=3D"1008" />
</w:pPr>
<w:rPr>
<w:rFonts w:hint=3D"default" />
</w:rPr>
</w:lvl>
<w:lvl w:ilvl=3D"5">
<w:start w:val=3D"1" />
<w:pStyle w:val=3D"Heading6" />
<w:lvlText w:val=3D"%1.%2.%3.%4.%5.%6" />
<w:lvlJc w:val=3D"left" />
<w:pPr>
<w:tabs>
<w:tab w:val=3D"list" w:pos=3D"1152" />
</w:tabs>
<w:ind w:left=3D"1152" w:hanging=3D"1152" />
</w:pPr>
<w:rPr>
<w:rFonts w:hint=3D"default" />
</w:rPr>
</w:lvl>
<w:lvl w:ilvl=3D"6">
<w:start w:val=3D"1" />
<w:pStyle w:val=3D"Heading7" />
<w:lvlText w:val=3D"%1.%2.%3.%4.%5.%6.%7" />
<w:lvlJc w:val=3D"left" />
<w:pPr>
<w:tabs>
<w:tab w:val=3D"list" w:pos=3D"1296" />
</w:tabs>
<w:ind w:left=3D"1296" w:hanging=3D"1296" />
</w:pPr>
<w:rPr>
<w:rFonts w:hint=3D"default" />
</w:rPr>
</w:lvl>
<w:lvl w:ilvl=3D"7">
<w:start w:val=3D"1" />
<w:pStyle w:val=3D"Heading8" />
<w:lvlText w:val=3D"%1.%2.%3.%4.%5.%6.%7.%8" />
<w:lvlJc w:val=3D"left" />
<w:pPr>
<w:tabs>
<w:tab w:val=3D"list" w:pos=3D"1440" />
</w:tabs>
<w:ind w:left=3D"1440" w:hanging=3D"1440" />
</w:pPr>
<w:rPr>
<w:rFonts w:hint=3D"default" />
</w:rPr>
</w:lvl>
<w:lvl w:ilvl=3D"8">
<w:start w:val=3D"1" />
<w:pStyle w:val=3D"Heading9" />
<w:lvlText w:val=3D"%1.%2.%3.%4.%5.%6.%7.%8.%9" />
<w:lvlJc w:val=3D"left" />
<w:pPr>
<w:tabs>
<w:tab w:val=3D"list" w:pos=3D"1584" />
</w:tabs>
<w:ind w:left=3D"1584" w:hanging=3D"1584" />
</w:pPr>
<w:rPr>
<w:rFonts w:hint=3D"default" />
</w:rPr>
</w:lvl>
</w:listDef>
<w:list w:ilfo=3D"1">
<w:ilst w:val=3D"0" />
</w:list>
<w:list w:ilfo=3D"2">
<w:ilst w:val=3D"0" />
</w:list>
<w:list w:ilfo=3D"3">
<w:ilst w:val=3D"0" />
</w:list>
<w:list w:ilfo=3D"4">
<w:ilst w:val=3D"0" />
</w:list>
<w:list w:ilfo=3D"5">
<w:ilst w:val=3D"0" />
</w:list>
<w:list w:ilfo=3D"6">
<w:ilst w:val=3D"0" />
</w:list>
<w:list w:ilfo=3D"7">
<w:ilst w:val=3D"0" />
</w:list>
<w:list w:ilfo=3D"8">
<w:ilst w:val=3D"0" />
</w:list>
</w:lists>
<w:styles>
<w:versionOfBuiltInStylenames w:val=3D"4" />
<w:latentStyles w:defLockedState=3D"off" w:latentStyleCount=3D"156"
/>
<w:style w:type=3D"paragraph" w:default=3D"on" w:styleId=3D"Normal">
<w:name w:val=3D"Normal" />
<w:rsid w:val=3D"00CB31E2" />
<w:rPr>
<wx:font wx:val=3D"Times New Roman" />
<w:snapToGrid w:val=3D"off" />
<w:sz w:val=3D"24" />
<w:lang w:val=3D"EN-GB" w:fareast=3D"EN-US" w:bidi=3D"AR-SA" />
</w:rPr>
</w:style>
<w:style w:type=3D"paragraph" w:styleId=3D"Heading1">
<w:name w:val=3D"heading 1" />
<wx:uiName wx:val=3D"Heading 1" />
<w:basedOn w:val=3D"Normal" />
<w:next w:val=3D"Normal" />
<w:rsid w:val=3D"00CB31E2" />
<w:pPr>
<w:pStyle w:val=3D"Heading1" />
<w:keepNext />
<w:listPr>
<w:ilvl w:val=3D"1" />
<w:ilfo w:val=3D"8" />
</w:listPr>
<w:ind w:right=3D"245" />
<w:jc w:val=3D"both" />
<w:outlineLvl w:val=3D"0" />
</w:pPr>
<w:rPr>
<wx:font wx:val=3D"Times New Roman" />
<w:b />
<w:caps />
<w:sz w:val=3D"28" />
</w:rPr>
</w:style>
<w:style w:type=3D"paragraph" w:styleId=3D"Heading2">
<w:name w:val=3D"heading 2" />
<wx:uiName wx:val=3D"Heading 2" />
<w:basedOn w:val=3D"Normal" />
<w:next w:val=3D"Normal" />
<w:rsid w:val=3D"00CB31E2" />
<w:pPr>
<w:pStyle w:val=3D"Heading2" />
<w:keepNext />
<w:listPr>
<w:ilvl w:val=3D"2" />
<w:ilfo w:val=3D"8" />
</w:listPr>
<w:spacing w:before=3D"120" w:after=3D"120" />
<w:outlineLvl w:val=3D"1" />
</w:pPr>
<w:rPr>
<wx:font wx:val=3D"Times New Roman" />
<w:b />
<w:smallCaps />
<w:sz w:val=3D"28" />
</w:rPr>
</w:style>
<w:style w:type=3D"paragraph" w:styleId=3D"Heading3">
<w:name w:val=3D"heading 3" />
<wx:uiName wx:val=3D"Heading 3" />
<w:basedOn w:val=3D"Normal" />
<w:next w:val=3D"Normal" />
<w:rsid w:val=3D"00CB31E2" />
<w:pPr>
<w:pStyle w:val=3D"Heading3" />
<w:keepNext />
<w:listPr>
<w:ilvl w:val=3D"3" />
<w:ilfo w:val=3D"8" />
</w:listPr>
<w:spacing w:before=3D"240" w:after=3D"60" />
<w:outlineLvl w:val=3D"2" />
</w:pPr>
<w:rPr>
<wx:font wx:val=3D"Times New Roman" />
<w:b />
</w:rPr>
</w:style>
<w:style w:type=3D"paragraph" w:styleId=3D"Heading4">
<w:name w:val=3D"heading 4" />
<wx:uiName wx:val=3D"Heading 4" />
<w:basedOn w:val=3D"Normal" />
<w:next w:val=3D"Normal" />
<w:rsid w:val=3D"00CB31E2" />
<w:pPr>
<w:pStyle w:val=3D"Heading4" />
<w:keepNext />
<w:spacing w:before=3D"240" w:after=3D"60" />
<w:outlineLvl w:val=3D"3" />
</w:pPr>
<w:rPr>
<w:rFonts w:ascii=3D"Arial" w:h-ansi=3D"Arial" />
<wx:font wx:val=3D"Arial" />
<w:b />
</w:rPr>
</w:style>
<w:style w:type=3D"paragraph" w:styleId=3D"Heading5">
<w:name w:val=3D"heading 5" />
<wx:uiName wx:val=3D"Heading 5" />
<w:basedOn w:val=3D"Normal" />
<w:next w:val=3D"Normal" />
<w:semiHidden />
<w:rsid w:val=3D"00CB31E2" />
<w:pPr>
<w:pStyle w:val=3D"Heading5" />
<w:listPr>
<w:ilvl w:val=3D"4" />
<w:ilfo w:val=3D"8" />
</w:listPr>
<w:spacing w:before=3D"240" w:after=3D"60" />
<w:outlineLvl w:val=3D"4" />
</w:pPr>
<w:rPr>
<wx:font wx:val=3D"Times New Roman" />
<w:sz w:val=3D"22" />
</w:rPr>
</w:style>
<w:style w:type=3D"paragraph" w:styleId=3D"Heading6">
<w:name w:val=3D"heading 6" />
<wx:uiName wx:val=3D"Heading 6" />
<w:basedOn w:val=3D"Normal" />
<w:next w:val=3D"Normal" />
<w:semiHidden />
<w:rsid w:val=3D"00CB31E2" />
<w:pPr>
<w:pStyle w:val=3D"Heading6" />
<w:listPr>
<w:ilvl w:val=3D"5" />
<w:ilfo w:val=3D"8" />
</w:listPr>
<w:spacing w:before=3D"240" w:after=3D"60" />
<w:outlineLvl w:val=3D"5" />
</w:pPr>
<w:rPr>
<wx:font wx:val=3D"Times New Roman" />
<w:i />
<w:sz w:val=3D"22" />
</w:rPr>
</w:style>
<w:style w:type=3D"paragraph" w:styleId=3D"Heading7">
<w:name w:val=3D"heading 7" />
<wx:uiName wx:val=3D"Heading 7" />
<w:basedOn w:val=3D"Normal" />
<w:next w:val=3D"Normal" />
<w:semiHidden />
<w:rsid w:val=3D"00CB31E2" />
<w:pPr>
<w:pStyle w:val=3D"Heading7" />
<w:listPr>
<w:ilvl w:val=3D"6" />
<w:ilfo w:val=3D"8" />
</w:listPr>
<w:spacing w:before=3D"240" w:after=3D"60" />
<w:outlineLvl w:val=3D"6" />
</w:pPr>
<w:rPr>
<w:rFonts w:ascii=3D"Arial" w:h-ansi=3D"Arial" />
<wx:font wx:val=3D"Arial" />
</w:rPr>
</w:style>
<w:style w:type=3D"paragraph" w:styleId=3D"Heading8">
<w:name w:val=3D"heading 8" />
<wx:uiName wx:val=3D"Heading 8" />
<w:basedOn w:val=3D"Normal" />
<w:next w:val=3D"Normal" />
<w:semiHidden />
<w:rsid w:val=3D"00CB31E2" />
<w:pPr>
<w:pStyle w:val=3D"Heading8" />
<w:listPr>
<w:ilvl w:val=3D"7" />
<w:ilfo w:val=3D"8" />
</w:listPr>
<w:spacing w:before=3D"240" w:after=3D"60" />
<w:outlineLvl w:val=3D"7" />
</w:pPr>
<w:rPr>
<w:rFonts w:ascii=3D"Arial" w:h-ansi=3D"Arial" />
<wx:font wx:val=3D"Arial" />
<w:i />
</w:rPr>
</w:style>
<w:style w:type=3D"paragraph" w:styleId=3D"Heading9">
<w:name w:val=3D"heading 9" />
<wx:uiName wx:val=3D"Heading 9" />
<w:basedOn w:val=3D"Normal" />
<w:next w:val=3D"Normal" />
<w:semiHidden />
<w:rsid w:val=3D"00CB31E2" />
<w:pPr>
<w:pStyle w:val=3D"Heading9" />
<w:listPr>
<w:ilvl w:val=3D"8" />
<w:ilfo w:val=3D"8" />
</w:listPr>
<w:spacing w:before=3D"240" w:after=3D"60" />
<w:outlineLvl w:val=3D"8" />
</w:pPr>
<w:rPr>
<w:rFonts w:ascii=3D"Arial" w:h-ansi=3D"Arial" />
<wx:font wx:val=3D"Arial" />
<w:b />
<w:i />
<w:sz w:val=3D"18" />
</w:rPr>
</w:style>
<w:style w:type=3D"character" w:default=3D"on"
w:styleId=3D"DefaultParagraphFont">
<w:name w:val=3D"Default Paragraph Font" />
<w:semiHidden />
</w:style>
<w:style w:type=3D"table" w:default=3D"on" w:styleId=3D"TableNormal=
">
<w:name w:val=3D"Normal Table" />
<wx:uiName wx:val=3D"Table Normal" />
<w:semiHidden />
<w:rPr>
<wx:font wx:val=3D"Times New Roman" />
</w:rPr>
<w:tblPr>
<w:tblInd w:w=3D"0" w:type=3D"dxa" />
<w:tblCellMar>
<w:top w:w=3D"0" w:type=3D"dxa" />
<w:left w:w=3D"108" w:type=3D"dxa" />
<w:bottom w:w=3D"0" w:type=3D"dxa" />
<w:right w:w=3D"108" w:type=3D"dxa" />
</w:tblCellMar>
</w:tblPr>
</w:style>
<w:style w:type=3D"list" w:default=3D"on" w:styleId=3D"NoList">
<w:name w:val=3D"No List" />
<w:semiHidden />
</w:style>
<w:style w:type=3D"paragraph" w:styleId=3D"BalloonText">
<w:name w:val=3D"Balloon Text" />
<w:basedOn w:val=3D"Normal" />
<w:semiHidden />
<w:rsid w:val=3D"00CB31E2" />
<w:pPr>
<w:pStyle w:val=3D"BalloonText" />
</w:pPr>
<w:rPr>
<w:rFonts w:ascii=3D"Tahoma" w:h-ansi=3D"Tahoma" w:cs=3D"Tahoma"
/>
<wx:font wx:val=3D"Tahoma" />
<w:sz w:val=3D"16" />
<w:sz-cs w:val=3D"16" />
</w:rPr>
</w:style>
<w:style w:type=3D"paragraph" w:styleId=3D"BlockText">
<w:name w:val=3D"Block Text" />
<w:basedOn w:val=3D"Normal" />
<w:semiHidden />
<w:rsid w:val=3D"00CB31E2" />
<w:pPr>
<w:pStyle w:val=3D"BlockText" />
<w:tabs>
<w:tab w:val=3D"left" w:pos=3D"2280" />
<w:tab w:val=3D"right" w:pos=3D"9360" />
</w:tabs>
<w:ind w:left=3D"360" w:right=3D"240" />
</w:pPr>
<w:rPr>
<wx:font wx:val=3D"Times New Roman" />
</w:rPr>
</w:style>
<w:style w:type=3D"paragraph" w:styleId=3D"BodyText">
<w:name w:val=3D"Body Text" />
<w:basedOn w:val=3D"Normal" />
<w:semiHidden />
<w:rsid w:val=3D"00CB31E2" />
<w:pPr>
<w:pStyle w:val=3D"BodyText" />
<w:tabs>
<w:tab w:val=3D"center" w:pos=3D"360" />
<w:tab w:val=3D"left" w:pos=3D"720" />
<w:tab w:val=3D"left" w:pos=3D"1440" />
<w:tab w:val=3D"left" w:pos=3D"1800" />
<w:tab w:val=3D"left" w:pos=3D"5580" />
</w:tabs>
</w:pPr>
<w:rPr>
<wx:font wx:val=3D"Times New Roman" />
<w:b />
</w:rPr>
</w:style>
<w:style w:type=3D"paragraph" w:styleId=3D"Footer">
<w:name w:val=3D"footer" />
<wx:uiName wx:val=3D"Footer" />
<w:basedOn w:val=3D"Normal" />
<w:semiHidden />
<w:rsid w:val=3D"00CB31E2" />
<w:pPr>
<w:pStyle w:val=3D"Footer" />
<w:tabs>
<w:tab w:val=3D"center" w:pos=3D"4153" />
<w:tab w:val=3D"right" w:pos=3D"8306" />
</w:tabs>
</w:pPr>
<w:rPr>
<wx:font wx:val=3D"Times New Roman" />
</w:rPr>
</w:style>
<w:style w:type=3D"paragraph" w:styleId=3D"Header">
<w:name w:val=3D"header" />
<wx:uiName wx:val=3D"Header" />
<w:basedOn w:val=3D"Normal" />
<w:semiHidden />
<w:rsid w:val=3D"00CB31E2" />
<w:pPr>
<w:pStyle w:val=3D"Header" />
</w:pPr>
<w:rPr>
<wx:font wx:val=3D"Times New Roman" />
<w:b />
<w:smallCaps />
<w:sz w:val=3D"28" />
</w:rPr>
</w:style>
<w:style w:type=3D"character" w:styleId=3D"Hyperlink">
<w:name w:val=3D"Hyperlink" />
<w:basedOn w:val=3D"DefaultParagraphFont" />
<w:semiHidden />
<w:rsid w:val=3D"00CB31E2" />
<w:rPr>
<w:color w:val=3D"0000FF" />
<w:u w:val=3D"single" />
</w:rPr>
</w:style>
<w:style w:type=3D"paragraph" w:styleId=3D"NormalIndent">
<w:name w:val=3D"Normal Indent" />
<w:basedOn w:val=3D"Normal" />
<w:semiHidden />
<w:rsid w:val=3D"00CB31E2" />
<w:pPr>
<w:pStyle w:val=3D"NormalIndent" />
<w:tabs>
<w:tab w:val=3D"left" w:pos=3D"1440" />
<w:tab w:val=3D"left" w:pos=3D"2160" />
</w:tabs>
<w:ind w:left=3D"720" />
</w:pPr>
<w:rPr>
<wx:font wx:val=3D"Times New Roman" />
</w:rPr>
</w:style>
<w:style w:type=3D"character" w:styleId=3D"PageNumber">
<w:name w:val=3D"page number" />
<wx:uiName wx:val=3D"Page Number" />
<w:basedOn w:val=3D"DefaultParagraphFont" />
<w:semiHidden />
<w:rsid w:val=3D"00CB31E2" />
</w:style>
<w:style w:type=3D"table" w:styleId=3D"TableGrid">
<w:name w:val=3D"Table Grid" />
<w:basedOn w:val=3D"TableNormal" />
<w:semiHidden />
<w:rsid w:val=3D"00CB31E2" />
<w:rPr>
<wx:font wx:val=3D"Times New Roman" />
</w:rPr>
<w:tblPr>
<w:tblInd w:w=3D"0" w:type=3D"dxa" />
<w:tblBorders>
<w:top w:val=3D"single" w:sz=3D"4" wx:bdrwidth=3D"10"
w:space=3D"0" w:color=3D"auto" />
<w:left w:val=3D"single" w:sz=3D"4" wx:bdrwidth=3D"10"
w:space=3D"0" w:color=3D"auto" />
<w:bottom w:val=3D"single" w:sz=3D"4" wx:bdrwidth=3D"10"
w:space=3D"0" w:color=3D"auto" />
<w:right w:val=3D"single" w:sz=3D"4" wx:bdrwidth=3D"10"
w:space=3D"0" w:color=3D"auto" />
<w:insideH w:val=3D"single" w:sz=3D"4" wx:bdrwidth=3D"10"
w:space=3D"0" w:color=3D"auto" />
<w:insideV w:val=3D"single" w:sz=3D"4" wx:bdrwidth=3D"10"
w:space=3D"0" w:color=3D"auto" />
</w:tblBorders>
<w:tblCellMar>
<w:top w:w=3D"0" w:type=3D"dxa" />
<w:left w:w=3D"108" w:type=3D"dxa" />
<w:bottom w:w=3D"0" w:type=3D"dxa" />
<w:right w:w=3D"108" w:type=3D"dxa" />
</w:tblCellMar>
</w:tblPr>
</w:style>
<w:style w:type=3D"table" w:styleId=3D"TableGrid8">
<w:name w:val=3D"Table Grid 8" />
<w:basedOn w:val=3D"TableNormal" />
<w:semiHidden />
<w:rsid w:val=3D"00CB31E2" />
<w:rPr>
<wx:font wx:val=3D"Times New Roman" />
</w:rPr>
<w:tblPr>
<w:tblInd w:w=3D"0" w:type=3D"dxa" />
<w:tblBorders>
<w:top w:val=3D"single" w:sz=3D"6" wx:bdrwidth=3D"15"
w:space=3D"0" w:color=3D"000080" />
<w:left w:val=3D"single" w:sz=3D"6" wx:bdrwidth=3D"15"
w:space=3D"0" w:color=3D"000080" />
<w:bottom w:val=3D"single" w:sz=3D"6" wx:bdrwidth=3D"15"
w:space=3D"0" w:color=3D"000080" />
<w:right w:val=3D"single" w:sz=3D"6" wx:bdrwidth=3D"15"
w:space=3D"0" w:color=3D"000080" />
<w:insideH w:val=3D"single" w:sz=3D"6" wx:bdrwidth=3D"15"
w:space=3D"0" w:color=3D"000080" />
<w:insideV w:val=3D"single" w:sz=3D"6" wx:bdrwidth=3D"15"
w:space=3D"0" w:color=3D"000080" />
</w:tblBorders>
<w:tblCellMar>
<w:top w:w=3D"0" w:type=3D"dxa" />
<w:left w:w=3D"108" w:type=3D"dxa" />
<w:bottom w:w=3D"0" w:type=3D"dxa" />
<w:right w:w=3D"108" w:type=3D"dxa" />
</w:tblCellMar>
</w:tblPr>
<w:tcPr>
<w:shd w:val=3D"clear" w:color=3D"auto" w:fill=3D"auto" />
</w:tcPr>
<w:tblStylePr w:type=3D"firstRow">
<w:rPr>
<w:b />
<w:b-cs />
<w:color w:val=3D"FFFFFF" />
</w:rPr>
<w:tblPr />
<w:tcPr>
<w:tcBorders>
<w:tl2br w:val=3D"none" w:sz=3D"0" wx:bdrwidth=3D"0"
w:space=3D"0" w:color=3D"auto" />
<w:tr2bl w:val=3D"none" w:sz=3D"0" wx:bdrwidth=3D"0"
w:space=3D"0" w:color=3D"auto" />
</w:tcBorders>
<w:shd w:val=3D"solid" w:color=3D"000080" w:fill=3D"FFFFFF"
wx:bgcolor=3D"000080" />
</w:tcPr>
</w:tblStylePr>
<w:tblStylePr w:type=3D"lastRow">
<w:rPr>
<w:b />
<w:b-cs />
<w:color w:val=3D"auto" />
</w:rPr>
<w:tblPr />
<w:tcPr>
<w:tcBorders>
<w:tl2br w:val=3D"none" w:sz=3D"0" wx:bdrwidth=3D"0"
w:space=3D"0" w:color=3D"auto" />
<w:tr2bl w:val=3D"none" w:sz=3D"0" wx:bdrwidth=3D"0"
w:space=3D"0" w:color=3D"auto" />
</w:tcBorders>
</w:tcPr>
</w:tblStylePr>
<w:tblStylePr w:type=3D"lastCol">
<w:rPr>
<w:b />
<w:b-cs />
<w:color w:val=3D"auto" />
</w:rPr>
<w:tblPr />
<w:tcPr>
<w:tcBorders>
<w:tl2br w:val=3D"none" w:sz=3D"0" wx:bdrwidth=3D"0"
w:space=3D"0" w:color=3D"auto" />
<w:tr2bl w:val=3D"none" w:sz=3D"0" wx:bdrwidth=3D"0"
w:space=3D"0" w:color=3D"auto" />
</w:tcBorders>
</w:tcPr>
</w:tblStylePr>
</w:style>
<w:style w:type=3D"paragraph" w:styleId=3D"TOC1">
<w:name w:val=3D"toc 1" />
<wx:uiName wx:val=3D"TOC 1" />
<w:basedOn w:val=3D"Normal" />
<w:next w:val=3D"Normal" />
<w:autoRedefine />
<w:semiHidden />
<w:rsid w:val=3D"00CB31E2" />
<w:pPr>
<w:pStyle w:val=3D"TOC1" />
<w:spacing w:before=3D"120" w:after=3D"120" />
</w:pPr>
<w:rPr>
<wx:font wx:val=3D"Times New Roman" />
<w:b />
<w:caps />
<w:sz w:val=3D"20" />
</w:rPr>
</w:style>
<w:style w:type=3D"paragraph" w:styleId=3D"TOC2">
<w:name w:val=3D"toc 2" />
<wx:uiName wx:val=3D"TOC 2" />
<w:basedOn w:val=3D"Normal" />
<w:next w:val=3D"Normal" />
<w:autoRedefine />
<w:semiHidden />
<w:rsid w:val=3D"00CB31E2" />
<w:pPr>
<w:pStyle w:val=3D"TOC2" />
<w:ind w:left=3D"240" />
</w:pPr>
<w:rPr>
<wx:font wx:val=3D"Times New Roman" />
<w:smallCaps />
<w:sz w:val=3D"20" />
</w:rPr>
</w:style>
<w:style w:type=3D"paragraph" w:styleId=3D"TOC3">
<w:name w:val=3D"toc 3" />
<wx:uiName wx:val=3D"TOC 3" />
<w:basedOn w:val=3D"Normal" />
<w:next w:val=3D"Normal" />
<w:autoRedefine />
<w:semiHidden />
<w:rsid w:val=3D"00CB31E2" />
<w:pPr>
<w:pStyle w:val=3D"TOC3" />
<w:ind w:left=3D"480" />
</w:pPr>
<w:rPr>
<wx:font wx:val=3D"Times New Roman" />
<w:i />
<w:sz w:val=3D"20" />
</w:rPr>
</w:style>
<w:style w:type=3D"paragraph" w:styleId=3D"TOC4">
<w:name w:val=3D"toc 4" />
<wx:uiName wx:val=3D"TOC 4" />
<w:basedOn w:val=3D"Normal" />
<w:next w:val=3D"Normal" />
<w:autoRedefine />
<w:semiHidden />
<w:rsid w:val=3D"00CB31E2" />
<w:pPr>
<w:pStyle w:val=3D"TOC4" />
<w:ind w:left=3D"720" />
</w:pPr>
<w:rPr>
<wx:font wx:val=3D"Times New Roman" />
<w:sz w:val=3D"18" />
</w:rPr>
</w:style>
<w:style w:type=3D"paragraph" w:styleId=3D"TOC5">
<w:name w:val=3D"toc 5" />
<wx:uiName wx:val=3D"TOC 5" />
<w:basedOn w:val=3D"Normal" />
<w:next w:val=3D"Normal" />
<w:autoRedefine />
<w:semiHidden />
<w:rsid w:val=3D"00CB31E2" />
<w:pPr>
<w:pStyle w:val=3D"TOC5" />
<w:ind w:left=3D"960" />
</w:pPr>
<w:rPr>
<wx:font wx:val=3D"Times New Roman" />
<w:sz w:val=3D"18" />
</w:rPr>
</w:style>
<w:style w:type=3D"paragraph" w:styleId=3D"TOC6">
<w:name w:val=3D"toc 6" />
<wx:uiName wx:val=3D"TOC 6" />
<w:basedOn w:val=3D"Normal" />
<w:next w:val=3D"Normal" />
<w:autoRedefine />
<w:semiHidden />
<w:rsid w:val=3D"00CB31E2" />
<w:pPr>
<w:pStyle w:val=3D"TOC6" />
<w:ind w:left=3D"1200" />
</w:pPr>
<w:rPr>
<wx:font wx:val=3D"Times New Roman" />
<w:sz w:val=3D"18" />
</w:rPr>
</w:style>
<w:style w:type=3D"paragraph" w:styleId=3D"TOC7">
<w:name w:val=3D"toc 7" />
<wx:uiName wx:val=3D"TOC 7" />
<w:basedOn w:val=3D"Normal" />
<w:next w:val=3D"Normal" />
<w:autoRedefine />
<w:semiHidden />
<w:rsid w:val=3D"00CB31E2" />
<w:pPr>
<w:pStyle w:val=3D"TOC7" />
<w:ind w:left=3D"1440" />
</w:pPr>
<w:rPr>
<wx:font wx:val=3D"Times New Roman" />
<w:sz w:val=3D"18" />
</w:rPr>
</w:style>
<w:style w:type=3D"paragraph" w:styleId=3D"TOC8">
<w:name w:val=3D"toc 8" />
<wx:uiName wx:val=3D"TOC 8" />
<w:basedOn w:val=3D"Normal" />
<w:next w:val=3D"Normal" />
<w:autoRedefine />
<w:semiHidden />
<w:rsid w:val=3D"00CB31E2" />
<w:pPr>
<w:pStyle w:val=3D"TOC8" />
<w:ind w:left=3D"1680" />
</w:pPr>
<w:rPr>
<wx:font wx:val=3D"Times New Roman" />
<w:sz w:val=3D"18" />
</w:rPr>
</w:style>
<w:style w:type=3D"paragraph" w:styleId=3D"TOC9">
<w:name w:val=3D"toc 9" />
<wx:uiName wx:val=3D"TOC 9" />
<w:basedOn w:val=3D"Normal" />
<w:next w:val=3D"Normal" />
<w:autoRedefine />
<w:semiHidden />
<w:rsid w:val=3D"00CB31E2" />
<w:pPr>
<w:pStyle w:val=3D"TOC9" />
<w:ind w:left=3D"1920" />
</w:pPr>
<w:rPr>
<wx:font wx:val=3D"Times New Roman" />
<w:sz w:val=3D"18" />
</w:rPr>
</w:style>
</w:styles>
<w:docPr>
<w:view w:val=3D"print" />
<w:zoom w:percent=3D"100" />
<w:doNotEmbedSystemFonts />
<w:proofState w:spelling=3D"clean" w:grammar=3D"clean" />
<w:attachedTemplate w:val=3D"" />
<w:defaultTabStop w:val=3D"720" />
<w:characterSpacingControl w:val=3D"DontCompress" />
<w:optimizeForBrowser />
<w:validateAgainstSchema w:val=3D"off" />
<w:saveInvalidXML />
<w:ignoreMixedContent />
<w:alwaysShowPlaceholderText />
<w:compat>
<w:breakWrappedTables />
<w:snapToGridInCell />
<w:wrapTextWithPunct />
<w:useAsianBreakRules />
<w:useWord2002TableStyleRules />
</w:compat>
<w:showXMLTags w:val=3D"off" />
</w:docPr>
<w:body>
<wx:sect>
<xsl:apply-templates select=3D"ns0:PrintQueueServiceChargeDS"
/>
<w:sectPr>
<w:pgSz w:w=3D"11906" w:h=3D"16838" />
<w:pgMar w:top=3D"1440" w:right=3D"1800" w:bottom=3D"1440"
w:left=3D"1800" w:header=3D"708" w:footer=3D"708" w:gutter=3D"0" />
<w:cols w:space=3D"708" />
<w:docGrid w:line-pitch=3D"360" />
</w:sectPr>
</wx:sect>
</w:body>
<o:CustomDocumentProperties>
<o:processingInstructions dt:dt=3D"string"> <xsl:for-each
select=3D"processing-instruction()"><xsl:text><?</xsl:text><xsl:value-of
select=3D"name()" /><xsl:text> </xsl:text><xsl:value-of select=3D"."
/><xsl:text>?></xsl:text></xsl:for-each></o:processingInstructions>
</o:CustomDocumentProperties>
</w:wordDocument>
</xsl:template>
<xsl:template match=3D"/ns0:PrintQueueServiceChargeDS">
<ns0:PrintQueueServiceChargeDS>
<xsl:for-each select=3D"@ns0:*|@*[namespace-uri()=3D'']">
<xsl:attribute name=3D"{name()}" namespace=3D"{namespace-uri()}">
<xsl:value-of select=3D"." />
</xsl:attribute>
</xsl:for-each>
<w:p />
<w:p>
<w:r> <w:t><xsl:text>Northern Counties Housing
Association</xsl:text></w:t></w:r>
</w:p>
<w:p />
<w:p>
<w:r> <w:t><xsl:text>Service Charge Summary for Property Ref:
</xsl:text></w:t></w:r>
<xsl:apply-templates select=3D"ns0:PrintQueueTable[1]" />
<w:r> <w:t><xsl:text>/</xsl:text></w:t></w:r>
<xsl:apply-templates select=3D"ns0:PrintQueueTable[2]" />
</w:p>
<w:p />
<w:p />
<w:p />
<w:p />
<w:p />
<w:p />
<w:p>
<w:r> <w:t><xsl:text>Period: </xsl:text></w:t></w:r>
</w:p>
<w:p />
<w:tbl>
<w:tblPr>
<w:tblStyle w:val=3D"TableGrid" />
<w:tblW w:w=3D"8729" w:type=3D"dxa" />
<w:tblBorders>
<w:top w:val=3D"none" w:sz=3D"0" wx:bdrwidth=3D"0" w:space=3D"0"
w:color=3D"auto" />
<w:left w:val=3D"none" w:sz=3D"0" wx:bdrwidth=3D"0" w:space=3D"=
0"
w:color=3D"auto" />
<w:bottom w:val=3D"none" w:sz=3D"0" wx:bdrwidth=3D"0" w:space=
=3D"0"
w:color=3D"auto" />
<w:right w:val=3D"none" w:sz=3D"0" wx:bdrwidth=3D"0" w:space=3D=
"0"
w:color=3D"auto" />
<w:insideH w:val=3D"none" w:sz=3D"0" wx:bdrwidth=3D"0"
w:space=3D"0" w:color=3D"auto" />
<w:insideV w:val=3D"none" w:sz=3D"0" wx:bdrwidth=3D"0"
w:space=3D"0" w:color=3D"auto" />
</w:tblBorders>
<w:tblLook w:val=3D"01E0" />
</w:tblPr>
<w:tblGrid>
<w:gridCol w:w=3D"5101" />
<w:gridCol w:w=3D"1814" />
<w:gridCol w:w=3D"1814" />
</w:tblGrid>
<w:tr>
<w:trPr>
<w:trHeight w:val=3D"550" />
</w:trPr>
<w:tc>
<w:tcPr>
<w:tcW w:w=3D"5101" w:type=3D"dxa" />
</w:tcPr>
<w:p>
<w:pPr>
<w:rPr>
<w:b />
</w:rPr>
</w:pPr>
<w:r>
<w:rPr>
<w:b />
</w:rPr> <w:t><xsl:text>Charges (Subject to Management
Charge)</xsl:text></w:t></w:r>
</w:p>
</w:tc>
<w:tc>
<w:tcPr>
<w:tcW w:w=3D"1814" w:type=3D"dxa" />
</w:tcPr>
<w:p>
<w:pPr>
<w:jc w:val=3D"right" />
<w:rPr>
<w:b />
</w:rPr>
</w:pPr>
<w:r>
<w:rPr>
<w:b />
</w:rPr> <w:t><xsl:text>Charge for Period 2003/04
(=A3)</xsl:text></w:t></w:r>
</w:p>
</w:tc>
<w:tc>
<w:tcPr>
<w:tcW w:w=3D"1814" w:type=3D"dxa" />
</w:tcPr>
<w:p>
<w:pPr>
<w:jc w:val=3D"right" />
<w:rPr>
<w:b />
</w:rPr>
</w:pPr>
<w:r>
<w:rPr>
<w:b />
</w:rPr> <w:t><xsl:text>Total
(=A3)</xsl:text></w:t></w:r>
</w:p>
</w:tc>
</w:tr>
<w:tr>
<w:tc>
<w:tcPr>
<w:tcW w:w=3D"5101" w:type=3D"dxa" />
</w:tcPr>
<w:p />
</w:tc>
<w:tc>
<w:tcPr>
<w:tcW w:w=3D"1814" w:type=3D"dxa" />
</w:tcPr>
<w:p>
<w:pPr>
<w:jc w:val=3D"right" />
</w:pPr>
</w:p>
</w:tc>
<w:tc>
<w:tcPr>
<w:tcW w:w=3D"1814" w:type=3D"dxa" />
</w:tcPr>
<w:p>
<w:pPr>
<w:jc w:val=3D"right" />
</w:pPr>
</w:p>
</w:tc>
</w:tr>
<w:tr>
<xsl:apply-templates select=3D"ns0:PrintQueueTable[position()
>=3D 3]" />
<w:tc>
<w:tcPr>
<w:tcW w:w=3D"1814" w:type=3D"dxa" />
</w:tcPr>
<w:p>
<w:pPr>
<w:jc w:val=3D"right" />
</w:pPr>
</w:p>
</w:tc>
</w:tr>
<w:tr>
<w:tc>
<w:tcPr>
<w:tcW w:w=3D"5101" w:type=3D"dxa" />
</w:tcPr>
<w:p />
</w:tc>
<w:tc>
<w:tcPr>
<w:tcW w:w=3D"1814" w:type=3D"dxa" />
</w:tcPr>
<w:p>
<w:pPr>
<w:jc w:val=3D"right" />
</w:pPr>
</w:p>
</w:tc>
<w:tc>
<w:tcPr>
<w:tcW w:w=3D"1814" w:type=3D"dxa" />
</w:tcPr>
<w:p>
<w:pPr>
<w:jc w:val=3D"right" />
</w:pPr>
</w:p>
</w:tc>
</w:tr>
<w:tr>
<w:tc>
<w:tcPr>
<w:tcW w:w=3D"5101" w:type=3D"dxa" />
</w:tcPr>
<w:p>
<w:pPr>
<w:rPr>
<w:b />
</w:rPr>
</w:pPr>
<w:r>
<w:rPr>
<w:b />
</w:rPr> <w:t><xsl:text>Management Charge
</xsl:text></w:t></w:r>
<w:r>
<w:rPr>
<w:b />
</w:rPr> <w:t><xsl:text>( %</xsl:text></w:t></w:r>
<w:r>
<w:rPr>
<w:b />
</w:rPr> <w:t><xsl:text>)</xsl:text></w:t></w:r>
</w:p>
</w:tc>
<w:tc>
<w:tcPr>
<w:tcW w:w=3D"1814" w:type=3D"dxa" />
</w:tcPr>
<w:p>
<w:pPr>
<w:jc w:val=3D"right" />
</w:pPr>
</w:p>
</w:tc>
<w:tc>
<w:tcPr>
<w:tcW w:w=3D"1814" w:type=3D"dxa" />
</w:tcPr>
<w:p>
<w:pPr>
<w:jc w:val=3D"right" />
</w:pPr>
</w:p>
</w:tc>
</w:tr>
<w:tr>
<w:tc>
<w:tcPr>
<w:tcW w:w=3D"5101" w:type=3D"dxa" />
</w:tcPr>
<w:p>
<w:pPr>
<w:rPr>
<w:b />
</w:rPr>
</w:pPr>
<w:r>
<w:rPr>
<w:b />
</w:rPr> <w:t><xsl:text>Charges (Not Subject to
Management Charge)</xsl:text></w:t></w:r>
</w:p>
</w:tc>
<w:tc>
<w:tcPr>
<w:tcW w:w=3D"1814" w:type=3D"dxa" />
</w:tcPr>
<w:p>
<w:pPr>
<w:jc w:val=3D"right" />
</w:pPr>
</w:p>
</w:tc>
<w:tc>
<w:tcPr>
<w:tcW w:w=3D"1814" w:type=3D"dxa" />
</w:tcPr>
<w:p>
<w:pPr>
<w:jc w:val=3D"right" />
</w:pPr>
</w:p>
</w:tc>
</w:tr>
<w:tr>
<w:tc>
<w:tcPr>
<w:tcW w:w=3D"5101" w:type=3D"dxa" />
</w:tcPr>
<w:p>
<w:pPr>
<w:rPr>
<w:b />
</w:rPr>
</w:pPr>
<w:r>
<w:rPr>
<w:b />
</w:rPr> <w:t><xsl:text>Surplus /
Deficit</xsl:text></w:t></w:r>
</w:p>
</w:tc>
<w:tc>
<w:tcPr>
<w:tcW w:w=3D"1814" w:type=3D"dxa" />
</w:tcPr>
<w:p>
<w:pPr>
<w:jc w:val=3D"right" />
</w:pPr>
</w:p>
</w:tc>
<w:tc>
<w:tcPr>
<w:tcW w:w=3D"1814" w:type=3D"dxa" />
</w:tcPr>
<w:p>
<w:pPr>
<w:jc w:val=3D"right" />
</w:pPr>
</w:p>
</w:tc>
</w:tr>
<w:tr>
<w:tc>
<w:tcPr>
<w:tcW w:w=3D"5101" w:type=3D"dxa" />
</w:tcPr>
<w:p>
<w:pPr>
<w:rPr>
<w:b />
</w:rPr>
</w:pPr>
</w:p>
</w:tc>
<w:tc>
<w:tcPr>
<w:tcW w:w=3D"1814" w:type=3D"dxa" />
</w:tcPr>
<w:p>
<w:pPr>
<w:jc w:val=3D"right" />
</w:pPr>
</w:p>
</w:tc>
<w:tc>
<w:tcPr>
<w:tcW w:w=3D"1814" w:type=3D"dxa" />
</w:tcPr>
<w:p>
<w:pPr>
<w:jc w:val=3D"right" />
</w:pPr>
</w:p>
</w:tc>
</w:tr>
<w:tr>
<w:tc>
<w:tcPr>
<w:tcW w:w=3D"5101" w:type=3D"dxa" />
</w:tcPr>
<w:p>
<w:pPr>
<w:rPr>
<w:b />
</w:rPr>
</w:pPr>
<w:r>
<w:rPr>
<w:b />
</w:rPr> <w:t><xsl:text>TOTAL ANNUAL
CHARGE</xsl:text></w:t></w:r>
</w:p>
</w:tc>
<w:tc>
<w:tcPr>
<w:tcW w:w=3D"1814" w:type=3D"dxa" />
</w:tcPr>
<w:p />
</w:tc>
<w:tc>
<w:tcPr>
<w:tcW w:w=3D"1814" w:type=3D"dxa" />
</w:tcPr>
<w:p>
<w:pPr>
<w:jc w:val=3D"right" />
</w:pPr>
</w:p>
</w:tc>
</w:tr>
</w:tbl>
<w:p />
<w:p>
<w:r> <w:t><xsl:text>(Total Weekly Service Charge per
week</xsl:text></w:t></w:r>
<w:r> <w:t><xsl:text>: )</xsl:text></w:t></w:r>
</w:p>
<w:p />
</ns0:PrintQueueServiceChargeDS>
</xsl:template>
<xsl:template
match=3D"/ns0:PrintQueueServiceChargeDS/ns0:PrintQueueTable[1]">
<ns0:PrintQueueTable>
<xsl:for-each select=3D"@ns0:*|@*[namespace-uri()=3D'']">
<xsl:attribute name=3D"{name()}" namespace=3D"{namespace-uri()}">
<xsl:value-of select=3D"." />
</xsl:attribute>
</xsl:for-each>
<xsl:apply-templates select=3D"ns0:AccountNumber" />
</ns0:PrintQueueTable>
</xsl:template>
<xsl:template
match=3D"/ns0:PrintQueueServiceChargeDS/ns0:PrintQueueTable[1]/ns0:AccountN=
umber">
<ns0:AccountNumber>
<xsl:for-each select=3D"@ns0:*|@*[namespace-uri()=3D'']">
<xsl:attribute name=3D"{name()}" namespace=3D"{namespace-uri()}">
<xsl:value-of select=3D"." />
</xsl:attribute>
</xsl:for-each>
<w:r>
<w:t>
<xsl:value-of select=3D"." />
</w:t>
</w:r>
</ns0:AccountNumber>
</xsl:template>
<xsl:template
match=3D"/ns0:PrintQueueServiceChargeDS/ns0:PrintQueueTable[2]">
<ns0:PrintQueueTable>
<xsl:for-each select=3D"@ns0:*|@*[namespace-uri()=3D'']">
<xsl:attribute name=3D"{name()}" namespace=3D"{namespace-uri()}">
<xsl:value-of select=3D"." />
</xsl:attribute>
</xsl:for-each>
<xsl:apply-templates select=3D"ns0:PropertyRef" />
</ns0:PrintQueueTable>
</xsl:template>
<xsl:template
match=3D"/ns0:PrintQueueServiceChargeDS/ns0:PrintQueueTable[2]/ns0:Property=
Ref">
<ns0:PropertyRef>
<xsl:for-each select=3D"@ns0:*|@*[namespace-uri()=3D'']">
<xsl:attribute name=3D"{name()}" namespace=3D"{namespace-uri()}">
<xsl:value-of select=3D"." />
</xsl:attribute>
</xsl:for-each>
<w:r>
<w:t>
<xsl:value-of select=3D"." />
</w:t>
</w:r>
</ns0:PropertyRef>
</xsl:template>
<xsl:template
match=3D"/ns0:PrintQueueServiceChargeDS/ns0:PrintQueueTable[3]/ns0:Detail">
<ns0:Detail>
<xsl:for-each select=3D"@ns0:*|@*[namespace-uri()=3D'']">
<xsl:attribute name=3D"{name()}" namespace=3D"{namespace-uri()}">
<xsl:value-of select=3D"." />
</xsl:attribute>
</xsl:for-each>
<xsl:apply-templates select=3D"ns0:Description" />
</ns0:Detail>
</xsl:template>
<xsl:template
match=3D"/ns0:PrintQueueServiceChargeDS/ns0:PrintQueueTable[3]/ns0:Detail/n=
s0:Description">
<ns0:Description>
<xsl:for-each select=3D"@ns0:*|@*[namespace-uri()=3D'']">
<xsl:attribute name=3D"{name()}" namespace=3D"{namespace-uri()}">
<xsl:value-of select=3D"." />
</xsl:attribute>
</xsl:for-each>
<w:tc>
<w:tcPr>
<w:tcW w:w=3D"5101" w:type=3D"dxa" />
</w:tcPr>
<w:p>
<w:r>
<w:t>
<xsl:value-of select=3D"." />
</w:t>
</w:r>
</w:p>
</w:tc>
</ns0:Description>
</xsl:template>
<xsl:template
match=3D"/ns0:PrintQueueServiceChargeDS/ns0:PrintQueueTable[position()
>=3D 4]/ns0:Detail">
<ns0:Detail>
<xsl:for-each select=3D"@ns0:*|@*[namespace-uri()=3D'']">
<xsl:attribute name=3D"{name()}" namespace=3D"{namespace-uri()}">
<xsl:value-of select=3D"." />
</xsl:attribute>
</xsl:for-each>
<xsl:apply-templates select=3D"ns0:Charge" />
</ns0:Detail>
</xsl:template>
<xsl:template
match=3D"/ns0:PrintQueueServiceChargeDS/ns0:PrintQueueTable[position()
>=3D 4]/ns0:Detail/ns0:Charge">
<ns0:Charge>
<xsl:for-each select=3D"@ns0:*|@*[namespace-uri()=3D'']">
<xsl:attribute name=3D"{name()}" namespace=3D"{namespace-uri()}">
<xsl:value-of select=3D"." />
</xsl:attribute>
</xsl:for-each>
<w:tc>
<w:tcPr>
<w:tcW w:w=3D"1814" w:type=3D"dxa" />
</w:tcPr>
<w:p>
<w:pPr>
<w:jc w:val=3D"right" />
</w:pPr>
<w:r>
<w:t>
<xsl:value-of select=3D"." />
</w:t>
</w:r>
</w:p>
</w:tc>
</ns0:Charge>
</xsl:template>
<xsl:template
match=3D"/ns0:PrintQueueServiceChargeDS/ns0:PrintQueueTable[position()
>=3D 3]">
<ns0:PrintQueueTable>
<xsl:for-each select=3D"@ns0:*|@*[namespace-uri()=3D'']">
<xsl:attribute name=3D"{name()}" namespace=3D"{namespace-uri()}">
<xsl:value-of select=3D"." />
</xsl:attribute>
</xsl:for-each>
<xsl:apply-templates select=3D"ns0:Detail" />
</ns0:PrintQueueTable>
</xsl:template>
</xsl:stylesheet>
|
 | 

|  |
These Archives are provided for informational purposes only and have been generated directly from the Altova mailing list archive system and are comprised of the lists set forth on www.altova.com/list/index.html. Therefore, Altova does not warrant or guarantee the accuracy, reliability, completeness, usefulness, non-infringement of intellectual property rights, or quality of any content on the Altova Mailing List Archive(s), regardless of who originates that content. You expressly understand and agree that you bear all risks associated with using or relying on that content. Altova will not be liable or responsible in any way for any content posted including, but not limited to, any errors or omissions in content, or for any losses or damage of any kind incurred as a result of the use of or reliance on any content. This disclaimer and limitation on liability is in addition to the disclaimers and limitations contained in the Website Terms of Use and elsewhere on the site.
|  |
| |
 |
 |
 |