-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIRS970.xsl
1180 lines (1163 loc) · 62 KB
/
IRS970.xsl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:include href="CommonPathRef.xsl"/>
<xsl:include href="PopulateTemplate.xsl"/>
<xsl:include href="AddHeader.xsl"/>
<xsl:include href="AddOnTable.xsl"/>
<xsl:include href="IRS970Style.xsl"/>
<xsl:output method="html" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:param name="Form970" select="$RtnDoc/IRS970"/>
<xsl:template match="/">
<html>
<head>
<title>
<xsl:call-template name="FormTitle">
<xsl:with-param name="RootElement" select="local-name($Form970)"/>
</xsl:call-template>
</title>
<!-- No Browser Caching -->
<meta http-equiv="Pragma" content="no-cache"/>
<meta http-equiv="Cache-Control" content="no-cache"/>
<meta http-equiv="Expires" content="0"/>
<!-- No Proxy Caching -->
<meta http-equiv="Cache-Control" content="private"/>
<!-- Define Character Set -->
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
<meta name="Description" content="IRS Form 970"/>
<xsl:call-template name="GlobalStylesForm"/>
<script language="JavaScript" src="{$ScriptPath}/FormDisplay.js" type="text/javascript"/>
<xsl:call-template name="InitJS"/>
<style type="text/css">
<xsl:if test="not($Print) or $Print=''">
<xsl:call-template name="IRS970Style"/>
<xsl:call-template name="AddOnStyle"/>
</xsl:if>
</style>
</head>
<body class="styBodyClass">
<form name="Form970">
<xsl:call-template name="DocumentHeader"/>
<div class="styTBB" style="width:187mm;">
<div class="styFNBox" style="width:31mm;height:19mm;">
Form <span class="styFormNumber">970</span>
<br/>
<span class="styAgency">(Rev. November 2012)</span>
<span style="width:1mm;"/>
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$Form970"/>
</xsl:call-template>
<br/>
<span class="styAgency">Department of the Treasury</span>
<br/>
<span class="styAgency">Internal Revenue Service</span>
</div>
<div class="styFTBox" style="width:125mm;height:19mm;">
<br/>
<div class="styMainTitle">Application To Use LIFO Inventory Method</div>
<br/>
<div class="styFST" style="height:3mm;">
<img src="{$ImagePath}/970_Bullet.gif" alt="bullet image"/>
Attach to your tax return.
</div>
<div class="styFST" style="height:5mm;font-size:6pt;padding-top:1mm;">
<img src="{$ImagePath}/970_Bullet.gif" alt="bullet image"/>
Information about Form 970 and it instructions is at
<a href="http://www.irs.gov/form970. " title="Link to irs.gov">
<i>www.irs.gov/form970 </i>
</a>
</div>
</div>
<div class="styTYBox" style="width:30mm;height:19.5mm;">
<div class="styOMB" style="height:2mm;">OMB No. 1545-0042</div>
<br/>
<div>
<span style="padding-right:30px;">Attachment </span>
<br/>Sequence No.<span class="styBoldText">
<span style="width:4px;"/>122</span>
</div>
</div>
</div>
<!-- Begin Name and Identifying Number Section-->
<div class="styBB" style="width:187mm;clear:both;">
<div class="styFNBox" style="width:117mm;height:8mm;">
Name of filer (name of parent corporation if a consolidated group) (see instructions)<br/>
<!--<xsl:when test="/AppData/Parameters/SubmissionType='CIT'">-->
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="TargetNode">BusinessNameLine1</xsl:with-param>
</xsl:call-template>
<br/>
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="TargetNode">BusinessNameLine2</xsl:with-param>
</xsl:call-template>
<!--</xsl:when>-->
<!--<xsl:otherwise>-->
<br/>
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="TargetNode">Name</xsl:with-param>
</xsl:call-template>
<!--</xsl:otherwise>-->
<!--</xsl:choose> -->
</div>
<!-- Begin Identifying Number Section-->
<div class="styGenericDiv" style="width:69mm;height:4mm;padding-left:1mm;">
<span class="styBoldText">Filer's identification number</span> (see instructions)
<br/>
<br/>
<!-- ****************************************************************************** -->
<!-- <xsl:choose>-->
<!--<xsl:when test="/AppData/Parameters/SubmissionType='CIT'">-->
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="TargetNode">EIN</xsl:with-param>
</xsl:call-template>
<!--</xsl:when>
-->
<!--<xsl:otherwise>-->
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="TargetNode">PrimarySSN</xsl:with-param>
</xsl:call-template>
<!--</xsl:otherwise>
</xsl:choose> -->
<!-- ****************************************************************************** -->
</div>
</div>
<!-- Begin Other Name and Identifying Number Section -->
<div class="styBB" style="width:187mm;height:8mm;clear:both;">
Name of applicant(s) (if different from filer) and identification number(s)<br/>
<xsl:for-each select="$Form970/ApplicantInformation">
<xsl:choose>
<xsl:when test="ApplicantBusinessName !=''">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="ApplicantBusinessName/BusinessNameLine1"/>
</xsl:call-template>
<xsl:if test="ApplicantBusinessName/BusinessNameLine2 !=''">
<br/>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="ApplicantBusinessName/BusinessNameLine2"/>
</xsl:call-template>
</xsl:if>,
</xsl:when>
</xsl:choose>
<xsl:choose>
<xsl:when test="ApplicantPersonName !=''">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="ApplicantPersonName"/>
</xsl:call-template>,
<span style="width:3mm:"/>
</xsl:when>
</xsl:choose>
<xsl:if test="SSN !=' '">
<span style="font-weight:normal;">
<xsl:call-template name="PopulateSSN">
<xsl:with-param name="TargetNode" select="SSN"/>
</xsl:call-template>
</span>
</xsl:if>
<xsl:if test="EIN !=' '">
<span style="font-weight:normal;">
<xsl:call-template name="PopulateEIN">
<xsl:with-param name="TargetNode" select="EIN"/>
</xsl:call-template>
</span>
</xsl:if>
<xsl:if test="MissingEINReason !=' '">
<span style="font-weight:normal;">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="MissingEINReason"/>
</xsl:call-template>
</span>
</xsl:if>
<br/>
</xsl:for-each>
</div>
<!-- End Name and Identifying Number Section-->
<!-- BEGIN Part I Title -->
<div class="styBB" style="width:187mm;">
<div class="styPartName" style="height:3.5mm;">Part I </div>
<div class="styPartDesc" style="width:152mm;height:3.5mm;">Statement of Election under Section 472</div>
<div class="styIRS970LNYesNoBox" style="width:10mm;height:3.5mm;text-align:center;font-weight:bold;padding-top:.7mm;border-bottom-width:0px;padding-top:0mm;padding-bottom:0mm;">Yes</div>
<div class="styIRS970LNYesNoBox" style="width:10mm;height:3.5mm;text-align:center;font-weight:bold;padding-top:.7mm;border-bottom-width:0px;padding-top:0mm;padding-bottom:0mm;">No</div>
</div>
<!-- END Part I Title -->
<!--Begin Part I -->
<div style="width:187mm;height:4.5mm;">
<div class="styLNLeftNumBoxSD" style="height:4.5mm;padding-top:1.8mm;">1</div>
<div class="styLNDesc" style="width:158mm;height:4.5mm;">
The applicant elects to use the LIFO inventory method for the tax year ending
(enter month, day, year)
<span style="width:2px"/>
<img src="{$ImagePath}/970_Bullet.gif" alt="Bullet"/>
<span style="width:4px;"/>
<span class="styUnderlineAmount" style="width:18mm; float:none;text-align:left;">
<xsl:call-template name="PopulateMonthDayYear">
<xsl:with-param name="TargetNode" select="$Form970/ElectsLIFOMthdForFirstTYEnding"/>
</xsl:call-template>
</span>
<br/>
<span style="vertical-align:top;">
for the following goods (enter here):
</span>
<span style="width:2px;"/>
<span class="styUnderlineAmount" style="width:108mm;float:none;text-align:left;">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form970/LIFOMthdGoodsForFirstTY"/>
</xsl:call-template>
</span>
</div>
<div class="styShadingCell" style="height:100%;width:10mm;"/>
<div class="styShadingCell" style="height:100%;width:10mm;"/>
</div>
<div style="width:187mm;height:6mm;">
<div class="styLNLeftNumBoxSD"/>
<div class="styLNDesc" style="width:158mm;">
See instructions and attach a statement if necessary.
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$Form970/LIFOMthdGoodsForFirstTY"/>
</xsl:call-template>
</div>
<div class="styShadingCell" style="height:100%;width:10mm;"/>
<div class="styShadingCell" style="height:100%;width:10mm;"/>
</div>
<div style="width:187mm;height:8mm;">
<div class="styLNLeftNumBoxSD">2</div>
<div class="styLNDesc" style="width:158mm;">
In an attached statement, identify and describe the inventory method(s) used by
the applicant in the prior tax year for the goods covered by this election.
</div>
<div class="styShadingCell" style="height:100%;width:10mm;"/>
<div class="styShadingCell" style="height:100%;width:10mm;"/>
</div>
<div style="width:187mm;">
<div class="styLNLeftNumBoxSD" style="height:4.5mm;padding-top:.7mm;">3a</div>
<div class="styLNDesc" style="width:158mm;height:4.5mm;">
Is the applicant already using the LIFO inventory method for any other goods?
<span style="width:2px;"/>
<!--Dotted Line-->
<span style="letter-spacing:4mm;font-weight:bold">...........</span>
</div>
<div class="styIRS970LNYesNoBox" style="height:4.5mm;">
<xsl:call-template name="PopulateYesBoxText">
<xsl:with-param name="TargetNode" select="$Form970/LIFOMthdCurrUsedForOthGoods"/>
</xsl:call-template>
</div>
<div class="styIRS970LNYesNoBox" style="height:4.5mm;">
<xsl:call-template name="PopulateNoBoxText">
<xsl:with-param name="TargetNode" select="$Form970/LIFOMthdCurrUsedForOthGoods"/>
</xsl:call-template>
</div>
</div>
<div style="width:187mm;height:4mm;">
<div class="styLNLeftNumBoxSD" style="padding-left:4mm;">b</div>
<div class="styLNDesc" style="width:158mm;">
If "Yes" to line 3a, attach a statement identifying and describing the goods and the LIFO methods used.
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$Form970/LIFOMthdCurrUsedForOthGoods"/>
</xsl:call-template>
</div>
<div class="styShadingCell" style="height:100%;width:10mm;"/>
<div class="styShadingCell" style="height:100%;width:10mm;"/>
</div>
<div style="width:187mm;">
<div class="styLNLeftNumBoxSD" style="height:6mm;padding-top:2.2mm;">4a</div>
<div class="styLNDesc" style="width:158mm;height:6mm;padding-top:2mm;">
Has the applicant ever used the LIFO inventory method for the goods covered by this election?
<!--Dotted Line-->
<span style="letter-spacing:4mm;font-weight:bold;">.......</span>
</div>
<div class="styIRS970LNYesNoBox" style="height:6mm;padding-top:2mm;">
<xsl:call-template name="PopulateYesBoxText">
<xsl:with-param name="TargetNode" select="$Form970/LIFOInventoryMethodUsedBefore"/>
</xsl:call-template>
</div>
<div class="styIRS970LNYesNoBox" style="height:6mm;padding-top:2mm;">
<xsl:call-template name="PopulateNoBoxText">
<xsl:with-param name="TargetNode" select="$Form970/LIFOInventoryMethodUsedBefore"/>
</xsl:call-template>
</div>
</div>
<div style="width:187mm;height:8mm;">
<div class="styLNLeftNumBoxSD" style="padding-left:4mm;">b</div>
<div class="styLNDesc" style="width:158mm;">
If "Yes" to line 4a, attach a statement listing the tax years for which the LIFO inventory
method was used and explaining why the LIFO inventory method was discontinued.
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$Form970/LIFOInventoryMethodUsedBefore"/>
</xsl:call-template>
</div>
<div class="styShadingCell" style="height:100%;width:10mm;"/>
<div class="styShadingCell" style="height:100%;width:10mm;"/>
</div>
<!-- Line 5 -->
<div class="styBB" style="width:187mm;height:4.5mm;">
<div class="styLNLeftNumBoxSD" style="height:4.5mm;padding-top:1.8mm;">5</div>
<div class="styLNDesc" style="width:158mm;height:4.5mm;">
The applicant will not use the LIFO inventory method to account for the following goods
(enter here):
<span style="width:2px"/>
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$Form970/LIFOInventoryMethodUsedBefore"/>
</xsl:call-template>
<span style="width:4px;"/>
<img src="{$ImagePath}/970_Bullet.gif" alt="Bullet"/>
<span style="width:4px;"/>
<span class="styUnderlineAmount" style="width:14mm; float:none;text-align:left;"/>
<br/>
<xsl:for-each select="$Form970/LIFOMethodGoods">
<span class="styUnderlineAmount" style="width:156mm;float:none;text-align:left;">
<span style="width:2px"/>
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$Form970/LIFOInventoryMethodUsedBefore"/>
</xsl:call-template>
<span style="width:4px"/>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="."/>
</xsl:call-template></span>
<br/>
</xsl:for-each>
<br/>
Attach a statement if necessary.
</div>
<div class="styShadingCell" style="height:100%;width:10mm;"/>
<div class="styShadingCell" style="height:100%;width:10mm;"/>
</div>
<!--End Part I -->
<!-- BEGIN Part II Title -->
<div class="styBB" style="width:187mm;">
<div class="styPartName" style="height:3.5mm;">Part II</div>
<div class="styPartDesc" style="width:152mm;height:3.5mm;">LIFO Inventory Requirements</div>
<div class="styIRS970LNYesNoBox" style="width:10mm;height:3.5mm;text-align:center;font-weight:bold;padding-top:.7mm;border-bottom-width:0px;padding-top:0mm;padding-bottom:0mm;">Yes</div>
<div class="styIRS970LNYesNoBox" style="width:10mm;height:3.5mm;text-align:center;font-weight:bold;padding-top:.7mm;border-bottom-width:0px;padding-top:0mm;padding-bottom:0mm;">No</div>
</div>
<!-- END Part II Title -->
<!--Begin Part II -->
<div style="width:187mm;">
<div class="styLNLeftNumBoxSD" style="height:7.5mm;padding-top:.7mm;">6a</div>
<div class="styLNDesc" style="width:158mm;height:7.5mm;">
Did the applicant value the closing inventories of goods covered by this election at
cost for the tax year immediately preceding the tax year specified on line 1?
<!--Dotted Line-->
<span style="letter-spacing:4mm;font-weight:bold;">.....................</span>
</div>
<div class="styIRS970LNYesNoBox" style="height:7.5mm;padding-top:3.5mm;">
<xsl:call-template name="PopulateYesBoxText">
<xsl:with-param name="TargetNode" select="$Form970/ClsInventoriesValuedForPriorTY"/>
</xsl:call-template>
</div>
<div class="styIRS970LNYesNoBox" style="height:7.5mm;padding-top:3.5mm;">
<xsl:call-template name="PopulateNoBoxText">
<xsl:with-param name="TargetNode" select="$Form970/ClsInventoriesValuedForPriorTY"/>
</xsl:call-template>
</div>
</div>
<div style="width:187mm;height:4mm;">
<div class="styLNLeftNumBoxSD" style="padding-left:4mm;height:7.5mm;">b</div>
<div class="styLNDesc" style="width:158mm;height:7.5mm;">
If "No" to line 6a, did the applicant value the beginning inventories of goods covered
by this election at cost for the tax year specified on line 1 as required by section 472(d)?
<!--Dotted Line-->
<span style="letter-spacing:4mm;font-weight:bold;">..................</span>
</div>
<div class="styShadingCell" style="height:3.3mm;width:10mm;"/>
<div class="styShadingCell" style="height:3.3mm;width:10mm;"/>
<div class="styIRS970LNYesNoBox" style="height:3.2mm;">
<xsl:call-template name="PopulateYesBoxText">
<xsl:with-param name="TargetNode" select="$Form970/BegngInventoryValuedForFirstTY"/>
</xsl:call-template>
</div>
<div class="styIRS970LNYesNoBox" style="height:3.2mm;">
<xsl:call-template name="PopulateNoBoxText">
<xsl:with-param name="TargetNode" select="$Form970/BegngInventoryValuedForFirstTY"/>
</xsl:call-template>
</div>
</div>
<div style="width:187mm;height:4mm;">
<div class="styLNLeftNumBoxSD" style="padding-top:0mm;padding-left:4mm;"/>
<div class="styLNDesc" style="width:158mm;padding-top:0mm;">
If "No" to line 6b, attach an explanation.
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$Form970/BegngInventoryValuedForFirstTY"/>
</xsl:call-template>
</div>
<div class="styShadingCell" style="height:100%;width:10mm;"/>
<div class="styShadingCell" style="height:100%;width:10mm;"/>
</div>
<div style="width:187mm;">
<div class="styLNLeftNumBoxSD" style="padding-left:4mm;height:4.5mm;">c</div>
<div class="styLNDesc" style="width:158mm;height:4.5mm;">
If "Yes" to line 6b, will the applicant account for the adjustment required by
section 472(d) over a 3-year period?
</div>
<div class="styIRS970LNYesNoBox" style="height:4.5mm;">
<xsl:call-template name="PopulateYesBoxText">
<xsl:with-param name="TargetNode" select="$Form970/AdjIncludedInIncomeOver3Years"/>
</xsl:call-template>
</div>
<div class="styIRS970LNYesNoBox" style="height:4.5mm;">
<xsl:call-template name="PopulateNoBoxText">
<xsl:with-param name="TargetNode" select="$Form970/AdjIncludedInIncomeOver3Years"/>
</xsl:call-template>
</div>
</div>
<div style="width:187mm;height:4mm;">
<div class="styLNLeftNumBoxSD" style="padding-top:0mm;padding-left:4mm;"/>
<div class="styLNDesc" style="width:158mm;padding-top:0mm;">
If "No" to line 6c, attach an explanation.
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$Form970/AdjIncludedInIncomeOver3Years"/>
</xsl:call-template>
</div>
<div class="styShadingCell" style="height:100%;width:10mm;"/>
<div class="styShadingCell" style="height:100%;width:10mm;"/>
</div>
<div style="width:187mm;height:3mm;">
<div class="styGenericDiv" style="width:166mm;"/>
<div class="styShadingCell" style="height:100%;width:10mm;"/>
<div class="styShadingCell" style="height:100%;width:10mm;"/>
</div>
<div style="width:187mm;">
<div class="styLNLeftNumBoxSD" style="height:7.5mm;padding-top:.7mm;">7a</div>
<div class="styLNDesc" style="width:158mm;height:7.5mm;">
When determining the beginning inventories of goods covered by this election, did the
applicant treat those goods as being acquired for a unit cost that is equal to the
total cost of those goods divided by the total number of units on hand?
</div>
<div class="styShadingCell" style="height:3.3mm;width:10mm;"/>
<div class="styShadingCell" style="height:3.3mm;width:10mm;"/>
<div class="styIRS970LNYesNoBox" style="height:3.2mm;">
<xsl:call-template name="PopulateYesBoxText">
<xsl:with-param name="TargetNode" select="$Form970/ItemAGoodsTreatedAsAcquired"/>
</xsl:call-template>
</div>
<div class="styIRS970LNYesNoBox" style="height:3.2mm;">
<xsl:call-template name="PopulateNoBoxText">
<xsl:with-param name="TargetNode" select="$Form970/ItemAGoodsTreatedAsAcquired"/>
</xsl:call-template>
</div>
</div>
<div style="width:187mm;height:4mm;">
<div class="styLNLeftNumBoxSD" style="padding-top:0mm;padding-left:4mm;">b</div>
<div class="styLNDesc" style="width:158mm;padding-top:0mm;">
If "No" to line 7a, attach an explanation.
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$Form970/ItemAGoodsTreatedAsAcquired"/>
</xsl:call-template>
</div>
<div class="styShadingCell" style="height:100%;width:10mm;"/>
<div class="styShadingCell" style="height:100%;width:10mm;"/>
</div>
<div style="width:187mm;height:3mm;">
<div class="styGenericDiv" style="width:166mm;"/>
<div class="styShadingCell" style="height:100%;width:10mm;"/>
<div class="styShadingCell" style="height:100%;width:10mm;"/>
</div>
<div style="width:187mm;">
<div class="styLNLeftNumBoxSD" style="height:10.5mm;padding-top:.7mm;">8a</div>
<div class="styLNDesc" style="width:158mm;height:10.5mm;">
Did the applicant (or any member of the same group of financially related corporations
as defined in section 472(g)) issue credit statements or reports to shareholders,
partners, other proprietors, or beneficiaries covering the tax year specified on line 1?
<!--Dotted Line-->
<span style="letter-spacing:4mm;font-weight:bold;">............................</span>
</div>
<div class="styShadingCell" style="height:6mm;width:10mm;"/>
<div class="styShadingCell" style="height:6mm;width:10mm;"/>
<div class="styIRS970LNYesNoBox" style="height:3.2mm;">
<xsl:call-template name="PopulateYesBoxText">
<xsl:with-param name="TargetNode" select="$Form970/CrStatementsOrReportsIssued"/>
</xsl:call-template>
</div>
<div class="styIRS970LNYesNoBox" style="height:3.2mm;">
<xsl:call-template name="PopulateNoBoxText">
<xsl:with-param name="TargetNode" select="$Form970/CrStatementsOrReportsIssued"/>
</xsl:call-template>
</div>
</div>
<div style="width:187mm;height:4mm;">
<div class="styLNLeftNumBoxSD" style="padding-top:0mm;padding-left:4mm;">b</div>
<div class="styLNDesc" style="width:158mm;padding-top:0mm;">
If "Yes" to line 8a, attach a statement describing the recipient(s), the date(s) of
issuance, and the inventory method(s) used to determine income, profit, or loss in
those statements.
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$Form970/CrStatementsOrReportsIssued"/>
</xsl:call-template>
</div>
<div class="styShadingCell" style="height:100%;width:10mm;"/>
<div class="styShadingCell" style="height:100%;width:10mm;"/>
</div>
<div style="width:187mm;height:3mm;">
<div class="styGenericDiv" style="width:166mm;"/>
<div class="styShadingCell" style="height:100%;width:10mm;"/>
<div class="styShadingCell" style="height:100%;width:10mm;"/>
</div>
<div style="width:187mm;">
<div class="styLNLeftNumBoxSD" style="height:4.5mm;">9a</div>
<div class="styLNDesc" style="width:158mm;height:4.5mm;">
Will the applicant determine beginning and ending inventories at cost regardless of market value?
<!--Dotted Line-->
<span style="letter-spacing:4mm;font-weight:bold;">......</span>
</div>
<div class="styIRS970LNYesNoBox" style="height:4.5mm;">
<xsl:call-template name="PopulateYesBoxText">
<xsl:with-param name="TargetNode" select="$Form970/InventoryNotTakenAtActualCost"/>
</xsl:call-template>
</div>
<div class="styIRS970LNYesNoBox" style="height:4.5mm;">
<xsl:call-template name="PopulateNoBoxText">
<xsl:with-param name="TargetNode" select="$Form970/InventoryNotTakenAtActualCost"/>
</xsl:call-template>
</div>
</div>
<div style="width:187mm;height:4mm;">
<div class="styLNLeftNumBoxSD" style="padding-top:0mm;padding-left:4mm;">b</div>
<div class="styLNDesc" style="width:158mm;padding-top:0mm;">
If "No" to line 9a, attach an explanation.
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$Form970/InventoryNotTakenAtActualCost"/>
</xsl:call-template>
</div>
<div class="styShadingCell" style="height:100%;width:10mm;"/>
<div class="styShadingCell" style="height:100%;width:10mm;"/>
</div>
<div style="width:187mm;height:3mm;">
<div class="styGenericDiv" style="width:166mm;"/>
<div class="styShadingCell" style="height:100%;width:10mm;"/>
<div class="styShadingCell" style="height:100%;width:10mm;"/>
</div>
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="height:13.5mm;padding-top:.7mm;">10a</div>
<div class="styLNDesc" style="width:158mm;height:13.5mm;">
As a condition of adopting the LIFO inventory method, Regulations section 1.472-4 requires a taxpayer to agree
to make any adjustments incident to the change to, the change from, or the use of, the LIFO inventory method
that, upon the examination of the taxpayer's income tax return, the IRS determines are necessary to clearly reflect
income. Does the applicant agree to this condition?
<!--Dotted Line-->
<span style="letter-spacing:4mm;font-weight:bold;">.......................</span>
</div>
<div class="styShadingCell" style="height:9.5mm;width:10mm;"/>
<div class="styShadingCell" style="height:9.5mm;width:10mm;"/>
<div class="styIRS970LNYesNoBox" style="height:4mm;border-bottom-width:0px;">
<xsl:call-template name="PopulateYesBoxText">
<xsl:with-param name="TargetNode" select="$Form970/Sect14724AdjustmentAgreement"/>
</xsl:call-template>
</div>
<div class="styIRS970LNYesNoBox" style="height:4mm;border-bottom-width:0px;">
<xsl:call-template name="PopulateNoBoxText">
<xsl:with-param name="TargetNode" select="$Form970/Sect14724AdjustmentAgreement"/>
</xsl:call-template>
</div>
</div>
<div class="styBB" style="width:187mm;height:4mm;">
<div class="styLNLeftNumBoxSD" style="padding-top:0mm;padding-left:4mm;">b</div>
<div class="styLNDesc" style="width:158mm;padding-top:0mm;">
If “No” to line 10a, the applicant is not eligible to use the LIFO inventory method and does not need to file Form 970.
</div>
<div class="styShadingCell" style="height:100%;width:10mm;"/>
<div class="styShadingCell" style="height:100%;width:10mm;"/>
</div>
<!--End Part II -->
<!-- BEGIN Part III Title -->
<div class="styBB" style="width:187mm;">
<div class="styPartName" style="height:3.5mm;">Part III</div>
<div class="styPartDesc" style="height:3.5mm;">Specific Goods (Unit) Method</div>
</div>
<!-- END Part III Title -->
<!-- Begin Part III -->
<div class="styBB" style="width:187mm;">
<div class="styLNLeftNumBox" style="padding-top:0mm;">11</div>
<div class="styGenericDiv" style="width:179mm;">
Under Regulations section 1.472-1, the types of goods in the opening inventory must be
compared with similar types of goods in the closing inventories. Attach a list of the
types or categories of goods that will be compared, describe the goods that will be
included in each type or category, and identify the unit of measure (pounds, barrels,
feet, etc.) used for each type or category.
</div>
</div>
<!-- Begin Footer -->
<div style="width:187mm;padding-top:1mm;">
<div style="float:left;">
<span class="styBoldText">For Paperwork Reduction Act Notice, see the instructions.</span>
<span style="width:90px;"/>
Cat. No. 17057T
</div>
<div style="float:right;">
<span style="width:1px;"/>
Form<span class="styBoldText"> 970 </span>(Rev. 11-2012)
</div>
</div>
<!-- End Footer -->
<br class="pageEnd"/>
<div class="styBB" style="width:187mm;padding-top:.5mm;">
<div style="float:left;">Form 970 (Rev. 11-2012)<span style="width:100mm;"/>
</div>
<div style="float:right;">Page <span style="font-weight:bold;font-size:8pt;">2</span>
</div>
</div>
<!-- BEGIN Part III Title -->
<div class="styBB" style="width:187mm;">
<div class="styPartName" style="height:3.5mm;">Part III</div>
<div class="styPartDesc" style="height:3.5mm;">
Specific Goods (Unit) Method
<span style="font-weight:normal;">(Continued)</span>
</div>
</div>
<!-- END Part III Title -->
<div style="width:187mm;height:8mm;">
<div class="styLNLeftNumBoxSD" style="padding-top:.7mm;">12</div>
<div class="styGenericDiv" style="width:179mm;padding-top:.7mm;">
Check the box corresponding to the method that the applicant will use to determine the cost of the goods in the closing
inventories in excess of the cost of the goods in the opening inventories (see instructions):
</div>
</div>
<div style="width:187mm;height:4mm;padding-left:8mm;">
<input type="checkbox" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form970/ActCostGdsMostRctPrchsOrPrdcd"/>
<xsl:with-param name="BackupName">IRS970ActCostGdsMostRctPrchsOrPrdcd</xsl:with-param>
</xsl:call-template>
</input>
<span style="width:1mm;"/>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form970/ActCostGdsMostRctPrchsOrPrdcd"/>
<xsl:with-param name="BackupName">IRS970ActCostGdsMostRctPrchsOrPrdcd</xsl:with-param>
</xsl:call-template>
Actual cost of goods most recently purchased or produced
</label>
</div>
<div style="width:187mm;height:4mm;padding-left:8mm;">
<input type="checkbox" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form970/AvgCostOfGdsPrchsOrPrdcdDurYr"/>
<xsl:with-param name="BackupName">IRS970AvgCostOfGdsPrchsOrPrdcdDurYr</xsl:with-param>
</xsl:call-template>
</input>
<span style="width:1mm;"/>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form970/AvgCostOfGdsPrchsOrPrdcdDurYr"/>
<xsl:with-param name="BackupName">IRS970AvgCostOfGdsPrchsOrPrdcdDurYr</xsl:with-param>
</xsl:call-template>
Average cost of goods purchased or produced during the tax year
</label>
</div>
<div style="width:187mm;height:4mm;padding-left:8mm;">
<input type="checkbox" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form970/ActlCostGdsPrchsOrPrdcdAcqOrd"/>
<xsl:with-param name="BackupName">IRS970ActlCostGdsPrchsOrPrdcdAcqOrd</xsl:with-param>
</xsl:call-template>
</input>
<span style="width:1mm;"/>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form970/ActlCostGdsPrchsOrPrdcdAcqOrd"/>
<xsl:with-param name="BackupName">IRS970ActlCostGdsPrchsOrPrdcdAcqOrd</xsl:with-param>
</xsl:call-template>
Actual cost of goods purchased or produced in the order of acquisition
</label>
</div>
<div class="styBB" style="width:187mm;height:7mm;padding-left:8mm;">
<input type="checkbox" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form970/OtherMethodUsed"/>
<xsl:with-param name="BackupName">IRS970OtherMethodUsed</xsl:with-param>
</xsl:call-template>
</input>
<span style="width:1mm;"/>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form970/OtherMethodUsed"/>
<xsl:with-param name="BackupName">IRS970OtherMethodUsed</xsl:with-param>
</xsl:call-template>
Other (attach explanation)
</label>
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$Form970/OtherMethodUsed"/>
</xsl:call-template>
</div>
<!--End Part III -->
<!-- BEGIN Part IV Title -->
<div class="styBB" style="width:187mm;">
<div class="styPartName" style="height:3.5mm;">Part IV</div>
<div class="styPartDesc" style="height:3.5mm;">
Dollar-Value Method
</div>
</div>
<!-- END Part IV Title -->
<!--Begin Part IV -->
<div style="width:187mm;">
<div class="styLNLeftNumBoxSD" style="padding-top:.7mm;">13</div>
<div class="styGenericDiv" style="width:179mm;padding-top:.7mm;">
Attach a statement describing the applicant's method of defining "items."
</div>
</div>
<div style="width:187mm;height:3mm;"/>
<div style="width:187mm;">
<div class="styLNLeftNumBoxSD" style="padding-top:0mm;">14a</div>
<div class="styGenericDiv" style="width:157mm;">
Did the applicant acquire any of the goods covered by this election at below-market prices?
<!--Dotted Line-->
<span style="letter-spacing:4mm;font-weight:bold;">........</span>
</div>
<div class="styGenericDiv" style="font-weight:bold;width:14mm;">
<span>
<xsl:call-template name="PopulateSpan">
<xsl:with-param name="TargetNode" select="$Form970/GoodsAcquiredAtBelowMrktPrices"/>
</xsl:call-template>
<input type="checkbox" class="styCkbox" name="Checkbox">
<xsl:call-template name="PopulateYesCheckbox">
<xsl:with-param name="TargetNode" select="$Form970/GoodsAcquiredAtBelowMrktPrices"/>
<xsl:with-param name="BackupName" select="IRS970GoodsAcquiredAtBelowMrktPrices"/>
</xsl:call-template>
</input>
</span>
<label>
<xsl:call-template name="PopulateLabelYes">
<xsl:with-param name="TargetNode" select="$Form970/GoodsAcquiredAtBelowMrktPrices"/>
<xsl:with-param name="BackupName" select="IRS970GoodsAcquiredAtBelowMrktPrices"/>
</xsl:call-template>
Yes
</label>
</div>
<div class="styGenericDiv" style="font-weight:bold;width:8mm;">
<span>
<xsl:call-template name="PopulateSpan">
<xsl:with-param name="TargetNode" select="$Form970/GoodsAcquiredAtBelowMrktPrices"/>
</xsl:call-template>
<input type="checkbox" class="styCkbox" name="Checkbox">
<xsl:call-template name="PopulateNoCheckbox">
<xsl:with-param name="TargetNode" select="$Form970/GoodsAcquiredAtBelowMrktPrices"/>
<xsl:with-param name="BackupName" select="IRS970GoodsAcquiredAtBelowMrktPrices"/>
</xsl:call-template>
</input>
</span>
<label>
<xsl:call-template name="PopulateLabelNo">
<xsl:with-param name="TargetNode" select="$Form970/GoodsAcquiredAtBelowMrktPrices"/>
</xsl:call-template>
No
</label>
</div>
</div>
<div style="width:187mm;">
<div class="styLNLeftNumBoxSD" style="padding-left:5.7mm;padding-top:0mm;">b</div>
<div class="styGenericDiv" style="width:179mm;padding-top:0mm;">
If "Yes" to line 14a, attach a statement explaining whether the applicant did, or will,
account for the goods purchased at below-market prices and similar goods produced or
acquired at market prices as separate items. If the applicant did, or will, account
for both types of goods as the same item, explain and justify.
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$Form970/GoodsAcquiredAtBelowMrktPrices"/>
</xsl:call-template>
</div>
</div>
<div style="width:187mm;height:3mm;"/>
<div style="width:187mm;">
<div class="styLNLeftNumBoxSD" style="padding-top:.7mm;">15</div>
<div class="styGenericDiv" style="width:179mm;padding-top:.7mm;">
Attach a statement describing the method of pooling the applicant will use for the goods
covered by this election. If the applicant will use more than one dollar-value pool, list
and describe the contents of each dollar-value pool (see instructions).
</div>
</div>
<div style="width:187mm;height:3mm;"/>
<div style="width:187mm;">
<div class="styLNLeftNumBoxSD" style="padding-top:.7mm;">16</div>
<div class="styGenericDiv" style="width:179mm;padding-top:.7mm;">
Identify or describe the method the applicant will use to compute the LIFO value of each
dollar-value pool containing goods covered by
</div>
</div>
<div style="width:187mm;">
<div class="styLNLeftNumBoxSD" style="padding-top:0mm;"/>
<div class="styGenericDiv" style="width:121mm;padding-top:0mm;">
this election (for example, double-extension method, link-chain method, or index method).
</div>
<div class="styUnderlineAmount" style="width:45mm;text-align:left;">
<span style="width:5mm;">
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$Form970/LIFOCmptMthdForDolValuePooling"/>
</xsl:call-template>
</span>
<xsl:for-each select="$Form970/LIFOCmptMthdForDolValuePooling">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="."/>
</xsl:call-template>
<br/>
</xsl:for-each>
</div>
</div>
<div style="width:187mm;">
<div class="styLNLeftNumBoxSD" style="padding-top:0mm;"/>
<div class="styGenericDiv" style="width:179mm;padding-top:0mm;">
If the applicant's method is neither the double-extension method nor the Inventory Price
Index Computation method, attach a statement describing the method in detail and justifying
the applicant's use of the selected method (see instructions).
</div>
</div>
<div style="width:187mm;height:3mm;"/>
<div style="width:187mm;">
<div class="styLNLeftNumBoxSD" style="padding-top:.7mm;">17</div>
<div class="styGenericDiv" style="width:179mm;padding-top:.7mm;">
Check the box corresponding to the method the applicant will use to determine the
current-year cost of goods in the closing inventories and to value the LIFO
increments of the dollar-value pool(s) (see instructions).
</div>
</div>
<div style="width:187mm;height:4mm;padding-left:8mm;">
<input type="checkbox" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form970/DollarValueMthdCostOfGdsPrchs"/>
<xsl:with-param name="BackupName">Form970DollarValueMthdCostOfGdsPrchs</xsl:with-param>
</xsl:call-template>
</input>
<span style="width:1mm;"/>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form970/DollarValueMthdCostOfGdsPrchs"/>
<xsl:with-param name="BackupName">Form970DollarValueMthdCostOfGdsPrchs</xsl:with-param>
</xsl:call-template>
Actual cost of goods most recently purchased or produced
</label>
</div>
<div style="width:187mm;height:4mm;padding-left:8mm;">
<input type="checkbox" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form970/DolValueMthdAvgCostOfGdsPrch"/>
<xsl:with-param name="BackupName">Form970DolValueMthdAvgCostOfGdsPrch</xsl:with-param>
</xsl:call-template>
</input>
<span style="width:1mm;"/>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form970/DolValueMthdAvgCostOfGdsPrch"/>
<xsl:with-param name="BackupName">Form970DolValueMthdAvgCostOfGdsPrch</xsl:with-param>
</xsl:call-template>
Average cost of goods purchased or produced during the tax year
</label>
</div>
<div style="width:187mm;height:4mm;padding-left:8mm;">
<input type="checkbox" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form970/DolVlMthdCostOfGdsPrchsInOrd"/>
<xsl:with-param name="BackupName">Form970DolVlMthdCostOfGdsPrchsInOrd</xsl:with-param>
</xsl:call-template>
</input>
<span style="width:1mm;"/>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form970/DolVlMthdCostOfGdsPrchsInOrd"/>
<xsl:with-param name="BackupName">Form970DolVlMthdCostOfGdsPrchsInOrd</xsl:with-param>
</xsl:call-template>
Actual cost of goods purchased or produced in the order of acquisition
</label>
</div>
<div class="styBB" style="width:187mm;height:7mm;padding-left:8mm;">
<input type="checkbox" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form970/DollarValueOtherMethodUsed"/>
<xsl:with-param name="BackupName">Form970DollarValueOtherMethodUsed</xsl:with-param>
</xsl:call-template>
</input>
<span style="width:1mm;"/>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form970/DollarValueOtherMethodUsed"/>
<xsl:with-param name="BackupName">Form970DollarValueOtherMethodUsed</xsl:with-param>
</xsl:call-template>
Other (attach explanation)
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$Form970/DollarValueOtherMethodUsed"/>
<xsl:with-param name="BackupName">Form970DollarValueOtherMethodUsed</xsl:with-param>
</xsl:call-template>
</label>
</div>
<!--End Part IV -->
<!-- BEGIN Part V Title -->
<div class="styBB" style="width:187mm;">
<div class="styPartName" style="height:3.5mm;">Part V</div>
<div class="styPartDesc" style="height:3.5mm;">
Inventory Price Index Computation (IPIC) Method
</div>
</div>
<!-- END Part V Title -->
<!--Begin Part V -->
<div style="width:187mm;">
<div class="styLNLeftNumBoxSD" style="padding-top:.7mm;">18</div>
<div class="styGenericDiv" style="width:179mm;padding-top:.7mm;">
Check the box corresponding to the method the applicant will use to compute the LIFO value
of each dollar-value pool containing goods covered by this election (see instructions).
</div>
</div>
<div style="width:187mm;height:4mm;padding-left:8mm;">
<input type="checkbox" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form970/DoubleExtensionIPICMethod"/>
<xsl:with-param name="BackupName">Form970DoubleExtensionIPICMethod</xsl:with-param>
</xsl:call-template>
</input>
<span style="width:1mm;"/>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form970/DoubleExtensionIPICMethod"/>
<xsl:with-param name="BackupName">Form970DoubleExtensionIPICMethod</xsl:with-param>
</xsl:call-template>
Double-extension IPIC method
</label>
</div>
<div style="width:187mm;height:4mm;padding-left:8mm;">
<input type="checkbox" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form970/LinkChainIPICMethod"/>
<xsl:with-param name="BackupName">Form970LinkChainIPICMethod</xsl:with-param>
</xsl:call-template>
</input>
<span style="width:1mm;"/>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form970/LinkChainIPICMethod"/>
<xsl:with-param name="BackupName">Form970LinkChainIPICMethod</xsl:with-param>
</xsl:call-template>
Link-chain IPIC method
</label>
</div>
<div style="width:187mm;height:3mm;"/>
<div style="width:187mm;">
<div class="styLNLeftNumBoxSD" style="padding-top:.7mm;">19</div>
<div class="styGenericDiv" style="width:179mm;padding-top:.7mm;">
Check the box corresponding to the table from which the applicant will select Bureau of Labor
Statistics (BLS) price indexes (see instructions).
</div>
</div>
<div style="width:187mm;height:4mm;padding-left:8mm;">
<input type="checkbox" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form970/Table3CPIDetailedReport"/>
<xsl:with-param name="BackupName">Form970Table3CPIDetailedReport</xsl:with-param>
</xsl:call-template>
</input>
<span style="width:1mm;"/>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form970/Table3CPIDetailedReport"/>
<xsl:with-param name="BackupName">Form970Table3CPIDetailedReport</xsl:with-param>
</xsl:call-template>
Table 3 of the Consumer Price Index (CPI) Detailed Report
</label>
</div>
<div style="width:187mm;height:4mm;padding-left:8mm;">
<input type="checkbox" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form970/Table6PPIDetailedReport"/>
<xsl:with-param name="BackupName">Form970Table6PPIDetailedReport</xsl:with-param>
</xsl:call-template>
</input>
<span style="width:1mm;"/>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form970/Table6PPIDetailedReport"/>
<xsl:with-param name="BackupName">Form970Table6PPIDetailedReport</xsl:with-param>
</xsl:call-template>
Table 6 of the Producer Price Index (PPI) Detailed Report
</label>
</div>
<div style="width:187mm;height:4mm;padding-left:8mm;">
<input type="checkbox" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form970/OtherTablePPIDetailedReport"/>
<xsl:with-param name="BackupName">Form970OtherTablePPIDetailedReport</xsl:with-param>
</xsl:call-template>
</input>
<span style="width:1mm;"/>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form970/OtherTablePPIDetailedReport"/>
<xsl:with-param name="BackupName">Form970OtherTablePPIDetailedReport</xsl:with-param>
</xsl:call-template>
Other table of the PPI Detailed Report
</label>
</div>
<div style="width:187mm;">
<div class="styLNLeftNumBoxSD" style="padding-top:0mm;"/>
<div class="styGenericDiv" style="width:179mm;padding-top:0mm;">