-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIRS7004.xsl
1272 lines (1269 loc) · 62 KB
/
IRS7004.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"?>
<!-- edited with XMLSpy v2010 rel. 2 (http://www.altova.com) by PJ Saini (Internal Revenue Service) -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:include href="PopulateTemplate.xsl"/>
<xsl:include href="CommonPathRef.xsl"/>
<xsl:include href="AddHeader.xsl"/>
<xsl:include href="AddOnTable.xsl"/>
<xsl:include href="IRS7004Style.xsl"/>
<xsl:output method="html" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:param name="FormData" select="$RtnDoc/IRS7004"/>
<xsl:template match="/">
<html>
<head>
<title>
<xsl:call-template name="FormTitle">
<xsl:with-param name="RootElement" select="local-name($FormData)"/>
</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="Form IRS7004"/>
<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="IRS7004Style"/>
<xsl:call-template name="AddOnStyle"/>
</xsl:if>
</style>
<xsl:call-template name="GlobalStylesForm"/>
</head>
<body class="styBodyClass">
<form name="Form7004">
<xsl:call-template name="DocumentHeader"/>
<!--Title of Form7004 -->
<div class="styBB" style="width:187mm;height: 20mm">
<div class="styFNBox" style="height:25mm; width:33mm;font-size: 9pt;
padding-top:2mm;">Form <span class="styFormNumber">7004</span>
<br/>
<span class="styAgency" style="font-weight:bold; ">
(Rev. December 2012)</span>
<span style="padding-left:2mm">
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$FormData"/>
</xsl:call-template>
</span>
<div>
<span class="styAgency">Department of the Treasury</span>
<br/>
<span class="styAgency">Internal Revenue Service</span>
</div>
</div>
<div class="styFTBox" style="width:123mm; height: 25mm">
<div class="styMainTitle" style="padding-top:2mm;font:11pt;font-weight:bold">
Application for Automatic Extension of Time To File <br/>
Certain Business Income Tax, Information, and Other Returns<br/>
</div>
<div class="styMainTitle" style="font:7pt;font-weight:normal;padding-top:5mm;">
<div class="styFBT" style="height:5mm;">
<img src="{$ImagePath}/5471_Bullet_Title.gif" alt="bullet"/>
File a separate application for each return.
<br/>
<img src="{$ImagePath}/5471_Bullet_Title.gif" alt="bullet"/>
See separate instructions.
</div>
</div>
</div>
<div class="styTYBox" style="width:31mm; height: 25mm">
<div style="padding-top:10mm; font-size:7pt;font-weight:bold;">OMB No. 1545-0233</div>
</div>
</div>
<!-- End title of Form -->
<div class="styGenericDiv" style="width:187mm;">
<div class="styIRS7004TextBox" style="font-size:12pt; width:17mm; height:36mm;border-bottom-width:0px">
<span class="styBoldText">
<br/>
<br/>
Print<br/>
or<br/>
Type
</span>
</div>
<!-- name -->
<div class="styIRS7004TextBox" style="font-size:7pt;width:114mm;height:10mm;
padding-left:2mm;border-bottom-width:0px;">Name
<div style="padding-left:5mm; line-height:110%">
<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>
</div>
<!-- end name -->
</div>
<!-- Taxpayer identification number -->
<div class="styIRS7004TextBox" style="font-size:7pt;width:55mm;height:10mm;
padding-left:2mm;border-right-width:0px;border-bottom-width:0px;">
<span class="styBoldText">Identifying number</span>
<div style="text-align:left; width:100%; padding-top:4mm; font-weight:normal">
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="EINChanged">true</xsl:with-param>
<xsl:with-param name="TargetNode">EIN</xsl:with-param>
</xsl:call-template>
</div>
</div>
<!-- end Taxpayer identification number -->
<!-- Number, street, and room or suite no. if P.O. box -->
<div class="styIRS7004TextBox" style="font-size:7pt;width:169mm;height:8mm;
border-top-width:1px;border-right-width:0px;padding-left:2mm">
Number, street, and room or suite no. (If P.O. box,
see instructions.)
<div style="padding-left:5mm; line-height:110%">
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="TargetNode">AddressLine1</xsl:with-param>
</xsl:call-template>
<br/>
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="TargetNode">AddressLine2</xsl:with-param>
</xsl:call-template>
</div>
</div>
<!-- end Number, street, and room or suite no. if P.O. box -->
<!-- City or town -->
<div class="styIRS7004TextBox" style="font-size:7pt;width:169mm;height:12mm;
border-right-width: 0px;border-bottom-width: 0px;padding-left:2mm">
City, town, state, and ZIP code (If a foreign address, enter city, province or state, and country (follow the country’s practice for entering
postal code)).
<div style="padding-left:5mm">
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="TargetNode">CityStateInfo</xsl:with-param>
</xsl:call-template>
<br/>
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="TargetNode">Country</xsl:with-param>
<xsl:with-param name="MainForm">true</xsl:with-param>
</xsl:call-template>
</div>
</div>
</div>
<div class="styBB" style="font-size:9pt; width:187mm; height:4mm; border-bottom-width: 0px;
border-top-width: 1px;">
<span class="styBoldText">Note.
<span class="styItalicText">File request for extension by the due date
of the return for which the extension is granted. See
instructions before completing this form.</span>
</span>
</div>
<!-- BEGIN Part I Title -->
<div class="styBB" style="width:187mm;border-top-width:1px;">
<div class="styPartName" style="width:23mm;">Part I</div>
<div class="styPartDesc" style="width:164mm;">Automatic 5-Month Extension
</div>
</div>
<!-- END Part I Title -->
<!-- line 1a -->
<div style="width:187mm">
<div class="styLNLeftNumBox" style="height:5mm;">1a</div>
<div class="styLNDesc" style="width:171mm;height:5mm;">
<span style="float:left">Enter the form code for the return
that this application is for (see below)
</span>
<span class="styBoldText" style="padding-right:1mm">
<span style="width:3px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
</span>
</div>
<div class="styFNBox" style="border-right-width: 1px;border-left-width: 1px;
border-bottom-width: 0px;border-top-width: 0px;height:5mm;width:8mm;
padding-left:2mm;">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$FormData/ReturnCodeForAuto5MonthExtns"/>
</xsl:call-template>
</div>
</div>
<!-- end line 1 -->
<!-- Table Header Line1 -->
<div style="width:187mm;clear:both;">
<div class="styLNAmountBox" style="height:5mm;width:80mm;border-top-width: 01px;
border-left-width: 0px;border-right-width: 0px;border-bottom-width:1px;
padding-top:.5mm;">
<span style="font-size: 8pt;font-weight:bold;text-align:left;
float:left; clear: none;">Application<br/> Is For:</span>
</div>
<div class="styLNAmountBox" style="height:5mm;width:13mm;border-top-width:1px;
border-left-width:1px;border-right-width: 1px;border-bottom-width: 1px;padding-top:.5mm;
padding-left:1mm">
<span style="font-size: 8pt;font-weight:bold;text-align:left;
float:left; clear: none;"> Form<br/>Code</span>
</div>
<div class="styLNAmountBox" style="height:5mm;width:80mm;border-top-width: 1px;
border-left-width: 1px;border-right-width: 0px;border-bottom-width: 1px;
padding-top:.5mm;padding-left:2mm">
<span style="font-size: 8pt;font-weight:bold;text-align:left;
float:left; clear: none;">Application<br/> Is For:</span>
</div>
<div class="styLNAmountBox" style="height:5mm;width:14mm;border-top-width:1px;
border-left-width: 1px;border-bottom-width: 1px;padding-top:.5mm;
padding-left:1mm">
<span style="font-size: 8pt;font-weight:bold;text-align:left;
float:left; clear: none;"> Form<br/>Code</span>
</div>
</div>
<!-- end Table Heder line1 -->
<!-- ************************************************************************** -->
<!-- Table line 1 -->
<div style="width:187mm;clear:both;">
<div class="styLNAmountBox" style="height:4mm;width:80mm;border-top-width: 0px;
;border-left-width:0px;border-right-width: 0px;border-bottom-width: 1px;
padding-top:.5mm;">
<span style="font-size: 9pt;text-align:left;
float:left; clear: none;">Form 1065</span>
</div>
<div class="styLNAmountBox" style="height:4mm;width:13mm;border-top-width: 0px;border-left-width: 1px
;border-right-width: 1px;border-bottom-width: 1px;padding-top:.5mm;
padding-left:1mm;">
<span style="font-size: 9pt;text-align:center;font-weight:bold;
padding-right:4mm;clear: none;">09</span>
</div>
<div class="styLNAmountBox" style="height:4mm;width:80mm;border-top-width: 0px;border-left-width: 1px
;border-right-width: 0px;border-bottom-width: 1px;padding-top:.5mm;
padding-left:2mm;background-color:lightgrey;">
<span style="font-size: 9pt;text-align:left;
float:left; clear: none;">Form 1041
<span style="font-size:7.5pt;">
(estate other than a bankruptcy estate)
</span>
</span>
</div>
<div class="styLNAmountBox" style="height:4mm;width:13mm;border-top-width: 0px;border-left-width: 1px
;border-bottom-width: 1px;padding-top:.5mm;
padding-left:1mm;background-color:lightgrey;">
<span style="font-size: 9pt;text-align:center;font-weight:bold;
padding-right:4mm;clear: none;">04</span>
</div>
</div>
<!-- end table line1 -->
<!-- Table line 2 -->
<div style="width:187mm;clear:both;">
<div class="styLNAmountBox" style="height:4mm;width:80mm;border-top-width: 0px;
;border-left-width:0px;border-right-width:0px;border-bottom-width: 0px;
padding-top:.5mm;background-color:lightgrey">
<span style="font-size: 9pt;text-align:left;
float:left; clear: none;">Form 8804</span>
</div>
<div class="styLNAmountBox" style="height:4mm;width:13mm;border-top-width: 0px;border-left-width: 1px
;border-right-width: 1px;border-bottom-width: 0px;padding-top:.5mm;
padding-left:1mm;background-color:lightgrey">
<span style="font-size: 9pt;text-align:center;font-weight:bold;
padding-right:4mm;clear: none;">31</span>
</div>
<div class="styLNAmountBox" style="height:4mm;width:80mm;border-top-width: 0px;
border-left-width: 1px;border-right-width: 0px;border-bottom-width: 0px;padding-top:.5mm
;padding-left:2mm;">
<span style="font-size: 9pt;text-align:left;
float:left; clear: none;">Form 1041 (trust)</span>
</div>
<div class="styLNAmountBox" style="height:4mm;width:13mm;border-top-width: 0px;border-left-width: 1px
;border-bottom-width: 0px;padding-top:.5mm;
padding-left:1mm;">
<span style="font-size: 9pt;text-align:center;font-weight:bold;
padding-right:4mm;clear: none;">05</span>
</div>
</div>
<!-- end Table line2 -->
<!-- ************************************************************************** -->
<!-- BEGIN Part II Title -->
<div class="styBB" style="width:187mm;border-top-width:1px;">
<div class="styPartName" style="width:23mm;">Part II</div>
<div class="styPartDesc" style="width:164mm;">Automatic 6-Month Extension
</div>
</div>
<!-- END Part II Title -->
<!-- line 1b -->
<div style="width:187mm">
<div class="styLNLeftNumBox" style="height:4mm;padding-left:2mm">b</div>
<div class="styLNDesc" style="width:171mm;height:4mm;">
<span style="float:left">Enter the form code for the return that this application
is for (see below)
</span>
<span class="styBoldText" style="padding-right:1mm">
<span style="width:3px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
</span>
</div>
<div class="styFNBox" style="border-right-width: 1px;border-left-width: 1px;
border-bottom-width: 0px;border-top-width: 0px;
height: 4mm;width:4mm;width:8mm;padding-left:2mm">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$FormData/ReturnCodeForAuto6MonthExtns"/>
</xsl:call-template>
</div>
</div>
<!-- end line 1b -->
<!-- line 1T -->
<div style="width:187mm;clear:both;">
<div class="styLNAmountBox" style="height:5mm;width:80mm;border-top-width: 01px;
border-left-width: 0px;border-right-width: 0px;border-bottom-width:1px;
padding-top:.5mm;">
<span style="font-size: 8pt;font-weight:bold;text-align:left;
float:left; clear: none;">Application<br/> Is For:</span>
</div>
<div class="styLNAmountBox" style="height:5mm;width:13mm;border-top-width: 1px;border-left-width: 1px
;border-right-width: 1px;border-bottom-width: 1px;padding-top:.5mm;
padding-left:1mm">
<span style="font-size: 8pt;font-weight:bold;text-align:left;
float:left; clear: none;"> Form<br/>Code</span>
</div>
<div class="styLNAmountBox" style="height:5mm;width:80mm;border-top-width: 1px;
border-left-width: 1px;border-right-width: 0px;border-bottom-width: 1px;
padding-top:.5mm;padding-left:2mm">
<span style="font-size: 8pt;font-weight:bold;text-align:left;
float:left; clear: none;">Application<br/> Is For:</span>
</div>
<div class="styLNAmountBox" style="height:4.5mm;width:14mm;border-top-width:1px;
border-left-width: 1px;border-bottom-width: 1px;padding-top:.5mm;
padding-left:1mm">
<span style="font-size: 8pt;font-weight:bold;text-align:left;
float:left; clear: none;"> Form<br/>Code</span>
</div>
</div>
<!-- end line1T -->
<!-- ************************************************************************** -->
<!-- Table line 1 -->
<div style="width:187mm;clear:both;">
<div class="styLNAmountBox" style="height:4mm;width:80mm;border-top-width: 0px;
border-left-width:0px;border-right-width: 0px;border-bottom-width: 1px;
padding-top:.5mm;">
<span style="font-size: 9pt;text-align:left;
float:left; clear: none;">Form 706-GS(D)</span>
</div>
<div class="styLNAmountBox" style="height:4mm;width:13mm;border-top-width: 0px;border-left-width: 1px
;border-right-width: 1px;border-bottom-width: 1px;padding-top:.5mm;
padding-left:1mm;">
<span style="font-size: 9pt;text-align:center;font-weight:bold;
padding-right:4mm;clear: none;">01</span>
</div>
<div class="styLNAmountBox" style="height:4mm;width:80mm;border-top-width: 0px;border-left-width: 1px
;border-right-width: 0px;border-bottom-width: 1px;padding-top:.5mm;
padding-left:2mm;background-color:lightgrey;">
<span style="font-size: 9pt;text-align:left;
float:left; clear: none;">Form 1120-ND (section 4951 taxes)</span>
</div>
<div class="styLNAmountBox" style="height:4mm;width:13mm;border-top-width: 0px;border-left-width: 1px
;border-bottom-width: 1px;padding-top:.5mm;
padding-left:1mm;background-color:lightgrey;">
<span style="font-size: 9pt;text-align:center;font-weight:bold;
padding-right:4mm;clear: none;">20</span>
</div>
</div>
<!-- end table line 1 -->
<!-- Table line 2 -->
<div style="width:187mm;clear:both;">
<div class="styLNAmountBox" style="height:4mm;width:80mm;border-top-width: 0px;
;border-left-width:0px;border-right-width:0px;border-bottom-width: 1px;
padding-top:.5mm;background-color:lightgrey">
<span style="font-size: 9pt;text-align:left;
float:left; clear: none;">Form 706-GS(T)</span>
</div>
<div class="styLNAmountBox" style="height:4mm;width:13mm;border-top-width: 0px;border-left-width: 1px
;border-right-width: 1px;border-bottom-width: 1px;padding-top:.5mm;
padding-left:1mm;background-color:lightgrey">
<span style="font-size: 9pt;text-align:center;font-weight:bold;
padding-right:4mm;clear: none;">02</span>
</div>
<div class="styLNAmountBox" style="height:4mm;width:80mm;border-top-width: 0px;border-left-width: 1px
;border-right-width: 0px;border-bottom-width: 1px;padding-top:.5mm;
padding-left:2mm;background-color:lightgrey;">
<span style="font-size: 9pt;text-align:left;
float:left; clear: none;">Form 1120-PC</span>
</div>
<div class="styLNAmountBox" style="height:4mm;width:13mm;border-top-width: 0px;border-left-width: 1px
;border-bottom-width: 1px;padding-top:.5mm;
padding-left:1mm;background-color:lightgrey;">
<span style="font-size: 9pt;text-align:center;font-weight:bold;
padding-right:4mm;clear: none;">21</span>
</div>
</div>
<!-- end Table line 2 -->
<!-- Table line 3 -->
<div style="width:187mm;clear:both;">
<div class="styLNAmountBox" style="height:4mm;width:80mm;border-top-width: 0px;
;border-left-width:0px;border-right-width:0px;border-bottom-width: 1px; padding-top:.5mm;">
<span style="font-size: 9pt;text-align:left;
float:left; clear: none;">Form 1041 (bankruptcy estate only)</span>
</div>
<div class="styLNAmountBox" style="height:4mm;width:13mm;border-top-width: 0px;border-left-width: 1px
;border-right-width: 1px;border-bottom-width: 1px;padding-top:.5mm;
padding-left:1mm;">
<span style="font-size: 9pt;text-align:center;font-weight:bold;
padding-right:4mm;clear: none;">03</span>
</div>
<div class="styLNAmountBox" style="height:4mm;width:80mm;border-top-width: 0px;border-left-width: 1px
;border-right-width: 0px;border-bottom-width: 1px;padding-top:.5mm
;padding-left:2mm;">
<span style="font-size: 9pt;text-align:left;
float:left; clear: none;">Form 1120-POL</span>
</div>
<div class="styLNAmountBox" style="height:4mm;width:13mm;border-top-width: 0px;border-left-width: 1px
;border-bottom-width: 1px;padding-top:.5mm;
padding-left:1mm;">
<span style="font-size: 9pt;text-align:center;font-weight:bold;
padding-right:4mm;clear: none;">22</span>
</div>
</div>
<!-- end Table line 3 -->
<!-- Table line 4-->
<div style="width:187mm;clear:both;">
<div class="styLNAmountBox" style="height:4mm;width:80mm;border-top-width: 0px;
;border-left-width:0px;border-right-width:0px;border-bottom-width: 1px;
padding-top:.5mm;;background-color:lightgrey">
<span style="font-size: 9pt;text-align:left;
float:left; clear: none;">Form 1041-N</span>
</div>
<div class="styLNAmountBox" style="height:4mm;width:13mm;border-top-width: 0px;border-left-width: 1px
;border-right-width: 1px;border-bottom-width: 1px;padding-top:.5mm;
padding-left:1mm;;background-color:lightgrey">
<span style="font-size: 9pt;text-align:center;font-weight:bold;
padding-right:4mm;clear: none;">06</span>
</div>
<div class="styLNAmountBox" style="height:4mm;width:80mm;border-top-width: 0px;border-left-width: 1px
;border-right-width: 0px;border-bottom-width: 1px;padding-top:.5mm
;padding-left:2mm;background-color:lightgrey">
<span style="font-size: 9pt;text-align:left;
float:left; clear: none;">Form 1120-REIT</span>
</div>
<div class="styLNAmountBox" style="height:4mm;width:13mm;border-top-width: 0px;border-left-width: 1px
;border-bottom-width: 1px;padding-top:.5mm;
padding-left:1mm;background-color:lightgrey">
<span style="font-size: 9pt;text-align:center;font-weight:bold;
padding-right:4mm;clear: none;">23</span>
</div>
</div>
<!-- end Table line 4-->
<!-- Table line 5-->
<div style="width:187mm;clear:both;">
<div class="styLNAmountBox" style="height:4mm;width:80mm;border-top-width: 0px;
;border-left-width:0px;border-right-width:0px;border-bottom-width: 1px;
padding-top:.5mm;">
<span style="font-size: 9pt;text-align:left;
float:left; clear: none;">Form 1041-QFT</span>
</div>
<div class="styLNAmountBox" style="height:4mm;width:13mm;border-top-width: 0px;border-left-width: 1px
;border-right-width: 1px;border-bottom-width: 1px;padding-top:.5mm;
padding-left:1mm;">
<span style="font-size: 9pt;text-align:center;font-weight:bold;
padding-right:4mm;clear: none;">07</span>
</div>
<div class="styLNAmountBox" style="height:4mm;width:80mm;border-top-width: 0px;border-left-width: 1px
;border-right-width: 0px;border-bottom-width: 1px;padding-top:.5mm
;padding-left:2mm;">
<span style="font-size: 9pt;text-align:left;
float:left; clear: none;">Form 1120-RIC</span>
</div>
<div class="styLNAmountBox" style="height:4mm;width:13mm;border-top-width: 0px;border-left-width: 1px
;border-bottom-width: 1px;padding-top:.5mm;
padding-left:1mm;">
<span style="font-size: 9pt;text-align:center;font-weight:bold;
padding-right:4mm;clear: none;">24</span>
</div>
</div>
<!-- end Table line 5-->
<!-- Table line 6-->
<div style="width:187mm;clear:both;">
<div class="styLNAmountBox" style="height:4mm;width:80mm;border-top-width: 0px;
;border-left-width:0px;border-right-width:0px;border-bottom-width: 1px;
padding-top:.5mm;;background-color:lightgrey">
<span style="font-size: 9pt;text-align:left;
float:left; clear: none;">Form 1042</span>
</div>
<div class="styLNAmountBox" style="height:4mm;width:13mm;border-top-width: 0px;border-left-width: 1px
;border-right-width: 1px;border-bottom-width: 1px;padding-top:.5mm;
padding-left:1mm;;background-color:lightgrey">
<span style="font-size: 9pt;text-align:center;font-weight:bold;
padding-right:4mm;clear: none;">08</span>
</div>
<div class="styLNAmountBox" style="height:4mm;width:80mm;border-top-width: 0px;border-left-width: 1px
;border-right-width: 0px;border-bottom-width: 1px;padding-top:.5mm
;padding-left:2mm;background-color:lightgrey">
<span style="font-size: 9pt;text-align:left;
float:left; clear: none;">Form 1120S</span>
</div>
<div class="styLNAmountBox" style="height:4mm;width:13mm;border-top-width: 0px;border-left-width: 1px
;border-bottom-width: 1px;padding-top:.5mm;
padding-left:1mm;background-color:lightgrey;">
<span style="font-size: 9pt;text-align:center;font-weight:bold;
padding-right:4mm;clear: none;">25</span>
</div>
</div>
<!-- end Table line 6-->
<!-- Table line 7-->
<div style="width:187mm;clear:both;">
<div class="styLNAmountBox" style="height:4mm;width:80mm;border-top-width: 0px;
;border-left-width:0px;border-right-width:0px;border-bottom-width: 1px;
padding-top:.5mm;">
<span style="font-size: 9pt;text-align:left;
float:left; clear: none;">Form 1065-B</span>
</div>
<div class="styLNAmountBox" style="height:4mm;width:13mm;border-top-width: 0px;border-left-width: 1px
;border-right-width: 1px;border-bottom-width: 1px;padding-top:.5mm;
padding-left:1mm;">
<span style="font-size: 9pt;text-align:center;font-weight:bold;
padding-right:4mm;clear: none;">10</span>
</div>
<div class="styLNAmountBox" style="height:4mm;width:80mm;border-top-width: 0px;border-left-width: 1px
;border-right-width: 0px;border-bottom-width: 1px;padding-top:.5mm
;padding-left:2mm;">
<span style="font-size: 9pt;text-align:left;
float:left; clear: none;">Form 1120-SF</span>
</div>
<div class="styLNAmountBox" style="height:4mm;width:13mm;border-top-width: 0px;border-left-width: 1px
;border-bottom-width: 1px;padding-top:.5mm;
padding-left:1mm;">
<span style="font-size: 9pt;text-align:center;font-weight:bold;
padding-right:4mm;clear: none;">26</span>
</div>
</div>
<!-- end Table line 7-->
<!-- Table line 8-->
<div style="width:187mm;clear:both;">
<div class="styLNAmountBox" style="height:4mm;width:80mm;border-top-width: 0px;
;border-left-width:0px;border-right-width:0px;border-bottom-width: 1px;
padding-top:.5mm;;background-color:lightgrey">
<span style="font-size: 9pt;text-align:left;
float:left; clear: none;">Form 1066</span>
</div>
<div class="styLNAmountBox" style="height:4mm;width:13mm;border-top-width: 0px;border-left-width: 1px
;border-right-width: 1px;border-bottom-width: 1px;padding-top:.5mm;
padding-left:1mm;;background-color:lightgrey">
<span style="font-size: 9pt;text-align:center;font-weight:bold;
padding-right:4mm;clear: none;">11</span>
</div>
<div class="styLNAmountBox" style="height:4mm;width:80mm;border-top-width: 0px;border-left-width: 1px
;border-right-width: 0px;border-bottom-width: 1px;padding-top:.5mm
;padding-left:2mm;background-color:lightgrey">
<span style="font-size: 9pt;text-align:left;
float:left; clear: none;">Form 3520-A</span>
</div>
<div class="styLNAmountBox" style="height:4mm;width:13mm;border-top-width: 0px;border-left-width: 1px
;border-bottom-width: 1px;padding-top:.5mm;
padding-left:1mm;background-color:lightgrey;">
<span style="font-size: 9pt;text-align:center;font-weight:bold;
padding-right:4mm;clear: none;">27</span>
</div>
</div>
<!-- end Table line 8-->
<!-- Table line 9-->
<div style="width:187mm;clear:both;">
<div class="styLNAmountBox" style="height:4mm;width:80mm;border-top-width: 0px;
;border-left-width:0px;border-right-width:0px;border-bottom-width: 1px;
padding-top:.5mm;">
<span style="font-size: 9pt;text-align:left;
float:left; clear: none;">Form 1120</span>
</div>
<div class="styLNAmountBox" style="height:4mm;width:13mm;border-top-width: 0px;border-left-width: 1px
;border-right-width: 1px;border-bottom-width: 1px;padding-top:.5mm;
padding-left:1mm;">
<span style="font-size: 9pt;text-align:center;font-weight:bold;
padding-right:4mm;clear: none;">12</span>
</div>
<div class="styLNAmountBox" style="height:4mm;width:80mm;border-top-width: 0px;border-left-width: 1px
;border-right-width: 0px;border-bottom-width: 1px;padding-top:.5mm
;padding-left:2mm;">
<span style="font-size: 9pt;text-align:left;
float:left; clear: none;">Form 8612</span>
</div>
<div class="styLNAmountBox" style="height:4mm;width:13mm;border-top-width: 0px;border-left-width: 1px
;border-bottom-width: 1px;padding-top:.5mm;
padding-left:1mm;">
<span style="font-size: 9pt;text-align:center;font-weight:bold;
padding-right:4mm;clear: none;">28</span>
</div>
</div>
<!-- end Table line 9-->
<!-- Table line 10-->
<div style="width:187mm;clear:both;">
<div class="styLNAmountBox" style="height:4mm;width:80mm;border-top-width: 0px;
;border-left-width:0px;border-right-width:0px;border-bottom-width: 1px;
padding-top:.5mm;;background-color:lightgrey">
<span style="font-size: 9pt;text-align:left;
float:left; clear: none;">Form 1120-C</span>
</div>
<div class="styLNAmountBox" style="height:4mm;width:13mm;border-top-width: 0px;border-left-width: 1px
;border-right-width: 1px;border-bottom-width: 1px;padding-top:.5mm;
padding-left:1mm;;background-color:lightgrey">
<span style="font-size: 9pt;text-align:center;font-weight:bold;
padding-right:4mm;clear: none;">34</span>
</div>
<div class="styLNAmountBox" style="height:4mm;width:80mm;border-top-width: 0px;border-left-width: 1px
;border-right-width: 0px;border-bottom-width: 1px;padding-top:.5mm
;padding-left:2mm;background-color:lightgrey">
<span style="font-size: 9pt;text-align:left;
float:left; clear: none;">Form 8613</span>
</div>
<div class="styLNAmountBox" style="height:4mm;width:13mm;border-top-width: 0px;border-left-width: 1px
;border-bottom-width: 1px;padding-top:.5mm;
padding-left:1mm;background-color:lightgrey;">
<span style="font-size: 9pt;text-align:center;font-weight:bold;
padding-right:4mm;clear: none;">29</span>
</div>
</div>
<!-- end Table line 10 -->
<!-- Table line 11-->
<div style="width:187mm;clear:both;">
<div class="styLNAmountBox" style="height:4mm;width:80mm;border-top-width: 0px;
;border-left-width:0px;border-right-width:0px;border-bottom-width: 1px;
padding-top:.5mm;">
<span style="font-size: 9pt;text-align:left;
float:left; clear: none;">Form 1120-F</span>
</div>
<div class="styLNAmountBox" style="height:4mm;width:13mm;border-top-width: 0px;border-left-width: 1px
;border-right-width: 1px;border-bottom-width: 1px;padding-top:.5mm;
padding-left:1mm;">
<span style="font-size: 9pt;text-align:center;font-weight:bold;
padding-right:4mm;clear: none;">15</span>
</div>
<div class="styLNAmountBox" style="height:4mm;width:80mm;border-top-width: 0px;border-left-width: 1px
;border-right-width: 0px;border-bottom-width: 1px;padding-top:.5mm
;padding-left:2mm;">
<span style="font-size: 9pt;text-align:left;
float:left; clear: none;">Form 8725</span>
</div>
<div class="styLNAmountBox" style="height:4mm;width:13mm;border-top-width: 0px;border-left-width: 1px
;border-bottom-width: 1px;padding-top:.5mm;
padding-left:1mm;">
<span style="font-size: 9pt;text-align:center;font-weight:bold;
padding-right:4mm;clear: none;">30</span>
</div>
</div>
<!-- end Table line 11-->
<!-- Table line 12-->
<div style="width:187mm;clear:both;">
<div class="styLNAmountBox" style="height:4mm;width:80mm;border-top-width: 0px;
;border-left-width:0px;border-right-width:0px;border-bottom-width: 1px;
padding-top:.5mm;;background-color:lightgrey">
<span style="font-size: 9pt;text-align:left;
float:left; clear: none;">Form 1120-FSC</span>
</div>
<div class="styLNAmountBox" style="height:4mm;width:13mm;border-top-width: 0px;border-left-width: 1px
;border-right-width: 1px;border-bottom-width: 1px;padding-top:.5mm;
padding-left:1mm;;background-color:lightgrey">
<span style="font-size: 9pt;text-align:center;font-weight:bold;
padding-right:4mm;clear: none;">16</span>
</div>
<div class="styLNAmountBox" style="height:4mm;width:80mm;border-top-width: 0px;border-left-width: 1px
;border-right-width: 0px;border-bottom-width: 1px;padding-top:.5mm
;padding-left:2mm;background-color:lightgrey">
<span style="font-size: 9pt;text-align:left;
float:left; clear: none;">Form 8831</span>
</div>
<div class="styLNAmountBox" style="height:4mm;width:13mm;border-top-width: 0px;border-left-width: 1px
;border-bottom-width: 1px;padding-top:.5mm;
padding-left:1mm;background-color:lightgrey;">
<span style="font-size: 9pt;text-align:center;font-weight:bold;
padding-right:4mm;clear: none;">32</span>
</div>
</div>
<!-- end Table line 12-->
<!-- Table line 13-->
<div style="width:187mm;clear:both;">
<div class="styLNAmountBox" style="height:4mm;width:80mm;border-top-width: 0px;
;border-left-width:0px;border-right-width:0px;border-bottom-width: 1px;
padding-top:.5mm;">
<span style="font-size: 9pt;text-align:left;
float:left; clear: none;">Form 1120-H</span>
</div>
<div class="styLNAmountBox" style="height:4mm;width:13mm;border-top-width: 0px;border-left-width: 1px
;border-right-width: 1px;border-bottom-width: 1px;padding-top:.5mm;
padding-left:1mm;">
<span style="font-size: 9pt;text-align:center;font-weight:bold;
padding-right:4mm;clear: none;">17</span>
</div>
<div class="styLNAmountBox" style="height:4mm;width:80mm;border-top-width: 0px;border-left-width: 1px
;border-right-width: 0px;border-bottom-width: 1px;padding-top:.5mm
;padding-left:2mm;">
<span style="font-size: 9pt;text-align:left;
float:left; clear: none;">Form 8876</span>
</div>
<div class="styLNAmountBox" style="height:4mm;width:13mm;border-top-width: 0px;border-left-width: 1px
;border-bottom-width: 1px;padding-top:.5mm;
padding-left:1mm;">
<span style="font-size: 9pt;text-align:center;font-weight:bold;
padding-right:4mm;clear: none;">33</span>
</div>
</div>
<!-- end Table line 13-->
<!-- Table line 14-->
<div style="width:187mm;clear:both;">
<div class="styLNAmountBox" style="height:4mm;width:80mm;border-top-width: 0px;
;border-left-width:0px;border-right-width:0px;border-bottom-width: 1px;
padding-top:.5mm;;background-color:lightgrey">
<span style="font-size: 9pt;text-align:left;
float:left; clear: none;">Form 1120-L</span>
</div>
<div class="styLNAmountBox" style="height:4mm;width:13mm;border-top-width: 0px;border-left-width: 1px
;border-right-width: 1px;border-bottom-width: 1px;padding-top:.5mm;
padding-left:1mm;;background-color:lightgrey">
<span style="font-size: 9pt;text-align:center;font-weight:bold;
padding-right:4mm;clear: none;">18</span>
</div>
<div class="styLNAmountBox" style="height:4mm;width:80mm;border-top-width: 0px;border-left-width: 1px
;border-right-width: 0px;border-bottom-width: 1px;padding-top:.5mm
;padding-left:2mm;background-color:lightgrey">
<span style="font-size: 9pt;text-align:left;
float:left; clear: none;">Form 8924</span>
</div>
<div class="styLNAmountBox" style="height:4mm;width:13mm;border-top-width: 0px;border-left-width: 1px
;border-bottom-width: 1px;padding-top:.5mm;
padding-left:1mm;background-color:lightgrey;">
<span style="font-size: 9pt;text-align:center;font-weight:bold;
padding-right:4mm;clear: none;">35</span>
</div>
</div>
<!-- end Table line 14-->
<!-- Table line 15-->
<div style="width:187mm;clear:both;">
<div class="styLNAmountBox" style="height:4mm;width:80mm;border-top-width: 0px;
;border-left-width:0px;border-right-width:0px;border-bottom-width: 1px;
padding-top:.5mm;">
<span style="font-size: 9pt;text-align:left;
float:left; clear: none;">Form 1120-ND</span>
</div>
<div class="styLNAmountBox" style="height:4mm;width:13mm;border-top-width: 0px;border-left-width: 1px
;border-right-width: 1px;border-bottom-width: 1px;padding-top:.5mm;
padding-left:1mm;">
<span style="font-size: 9pt;text-align:center;font-weight:bold;
padding-right:4mm;clear: none;">19</span>
</div>
<div class="styLNAmountBox" style="height:4mm;width:80mm;border-top-width: 0px;border-left-width: 1px
;border-right-width: 0px;border-bottom-width: 1px;padding-top:.5mm
;padding-left:2mm;">
<span style="font-size: 9pt;text-align:left;
float:left; clear: none;">Form 8928</span>
</div>
<div class="styLNAmountBox" style="height:4mm;width:13mm;border-top-width: 0px;border-left-width: 1px
;border-bottom-width: 1px;padding-top:.5mm;
padding-left:1mm;">
<span style="font-size: 9pt;text-align:center;font-weight:bold;
padding-right:4mm;clear: none;">36</span>
</div>
</div>
<!-- end Table line 15-->
<!-- line 2 -->
<div style="width:187mm">
<div class="styLNLeftNumBox" style="height:4mm;">2</div>
<div class="styLNDesc" style="width:168mm;height:4mm;">
<span style="float:left">
If the organization is a foreign corporation that does not have an office
or place of business in the United States, check here</span>
<span class="styBoldText" style="padding-right:1mm">
<img src="{$ImagePath}/5471_Bullet_Title.gif" alt="bullet"/>
</span>
</div>
<div class="styFNBox" style="border-right-width: 0px;height: 4mm; width:3mm;
border-top-width: 0px;"/>
<input type="checkbox" class="styCkbox" name="FrgnCorpDoesNotHaveOfficeInUS">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$FormData/FrgnCorpDoesNotHaveOfficeInUS"/>
<xsl:with-param name="BackupName">FrgnCorpDoesNotHaveOfficeInUS</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$FormData/FrgnCorpDoesNotHaveOfficeInUS"/>
<xsl:with-param name="BackupName">FrgnCorpDoesNotHaveOfficeInUS</xsl:with-param>
</xsl:call-template>
</label>
</div>
<!-- end line2 -->
<div style="width:187mm"/>
<!-- line 3 -->
<div style="width:187mm;height:4mm">
<div class="styLNLeftNumBox" style="height:4mm;">3</div>
<div class="styLNDesc" style="width:168mm;height:4mm;">
<span style="float:left">
If the organization is a corporation and is the common parent of a group
that intends to file a consolidated return,
check here</span>
<span class="styBoldText" style="padding-right:1mm">
<img src="{$ImagePath}/5471_Bullet_Title.gif" alt="bullet"/>
</span>
</div>
<div class="styFNBox" style="border-right-width: 0px;height: 4mm; width:3mm;
border-top-width: 0px;"/>
<input type="checkbox" class="styCkbox" name="CorpForConsolidatedGroup">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$FormData/CorpForConsolidatedGroup"/>
<xsl:with-param name="BackupName">CorpForConsolidatedGroup</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$FormData/CorpForConsolidatedGroup"/>
<xsl:with-param name="BackupName">CorpForConsolidatedGroup</xsl:with-param>
</xsl:call-template>
</label>
</div>
<!-- end line3 -->
<!-- note line 3 -->
<div style="width:187mm;height:4mm">
<div class="styLNLeftNumBox" style="height:4mm;"/>
<div class="styLNDesc" style="width:168mm;height:4mm;">
<span style="float:left">
If checked, attach a schedule, listing the name, address, and Employer
Identification Number (EIN) for each member covered by this application.
<span style="padding-left:2mm"/>
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$FormData/CorpForConsolidatedGroup"/>
</xsl:call-template>
</span>
</div>
</div>
<!-- end notes line3 -->
<!-- BEGIN Part III Title -->
<div class="styBB" style="width:187mm;border-top-width:1px;">
<div class="styPartName" style="width:23mm;">Part III</div>
<div class="styPartDesc" style="width:164mm;">All Filers Must Complete This Part
</div>
</div>
<!-- END Part III Title -->
<!-- line 4 -->
<div style="width:187mm;height:4mm">
<div class="styLNLeftNumBox" style="height:4mm;">4</div>
<div class="styLNDesc" style="width:168mm;height:4mm;">
<span style="float:left">
If the organization is a corporation or partnership
that qualifies under Regulations section 1.6081-5, check here
</span>
<span class="styBoldText" style="float:right;padding-right:1mm">
<span style="width:1px;"/>.
<span style="width:16px;"/>.
<span style="width:16px;"/>.
<img src="{$ImagePath}/5471_Bullet_Title.gif" alt="bullet"/>
</span>
</div>
<div class="styFNBox" style="border-right-width: 0px;height: 4mm; width:3mm;
border-top-width: 0px;"/>
<input type="checkbox" class="styCkbox" name="FilingUnderRegSect160815">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$FormData/FilingUnderRegSect160815"/>
<xsl:with-param name="BackupName">FilingUnderRegSect160815</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$FormData/FilingUnderRegSect160815"/>
<xsl:with-param name="BackupName">FilingUnderRegSect160815</xsl:with-param>
</xsl:call-template>
</label>
</div>
<!-- end line4 -->
<!-- line 5a -->
<div style="width:187mm;height:4mm">
<div class="styLNLeftNumBox" style="height:4mm;">5a
</div>
<div class="styGenericDiv">
The application is for calendar year
<span style="width: 10mm;border-bottom:1 solid black">
<xsl:call-template name="PopulateReturnHeaderTaxYear"/>
</span>, or other tax year beginning
<span style="width: 18mm;border-bottom:1 solid black;">
<!-- No need to send the parameters -->
<xsl:call-template name="PopulateReturnHeaderTaxPeriodBeginDate"/>
</span>, and ending
<span style="width: 18mm;border-bottom:1 solid black;">
<!-- No need to send the parameters -->
<xsl:call-template name="PopulateReturnHeaderTaxPeriodEndDate"/>
</span>
</div>
</div>
<!-- end line 5a -->
<div style="width:187mm"/>
<!-- line 5b -->
<div style="width:187mm;height:5mm;padding-left:3mm;font-weight:bold;">
b<span style="font-weight:bold;padding-left:3mm">Short tax year.</span>
<span style="font-weight:normal;"> If this tax year is less than 12 months, check the reason:</span>
</div>
<div class="styGenericDiv" style="width:187mm;">
<div class="styGenericDiv" style="padding-left:8mm;width:30mm;">
<input type="checkbox" class="styCkbox" name="InitialReturn">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$FormData/InitialReturn"/>
<xsl:with-param name="BackupName">InitialReturn</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$FormData/InitialReturn"/>
<xsl:with-param name="BackupName">InitialReturn</xsl:with-param>
</xsl:call-template>
Initial return
</label>
</div>
<div class="styGenericDiv" style="padding-left:8mm;width:30mm;">
<input type="checkbox" class="styCkbox" name="FinalReturn">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$FormData/FinalReturn"/>
<xsl:with-param name="BackupName">FinalReturn</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$FormData/FinalReturn"/>
<xsl:with-param name="BackupName">FinalReturn</xsl:with-param>
</xsl:call-template>
Final return
</label>
</div>
<div class="styGenericDiv" style="padding-left:8mm;width:50mm;">
<input type="checkbox" class="styCkbox" name="ChangeInAccountingPeriod">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$FormData/ChangeInAccountingPeriod"/>
<xsl:with-param name="BackupName">ChangeInAccountingPeriod</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$FormData/ChangeInAccountingPeriod"/>
<xsl:with-param name="BackupName">ChangeInAccountingPeriod</xsl:with-param>
</xsl:call-template>
Change in accounting period
</label>
</div>
<div class="styGenericDiv" style="padding-left:8mm;width:60mm;">
<input type="checkbox" class="styCkbox" name="ConsolidatedReturnToBeFiled">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$FormData/ConsolidatedReturnToBeFiled"/>
<xsl:with-param name="BackupName">ConsolidatedReturnToBeFiled</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$FormData/ConsolidatedReturnToBeFiled"/>
<xsl:with-param name="BackupName">ConsolidatedReturnToBeFiled</xsl:with-param>
</xsl:call-template>
Consolidated return to be filed
</label>
</div>
<br/>
<div class="styGenericDiv" style="padding-left:8mm;width:70mm;padding-top:4mm;">
<input type="checkbox" class="styCkbox" name="Other">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$FormData/Other"/>
<xsl:with-param name="BackupName">Other</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$FormData/Other"/>
<xsl:with-param name="BackupName">Other</xsl:with-param>
</xsl:call-template>
Other (see instructions-attach explanation)
</label>
</div>
</div>
<!-- end line 5b -->
<div style="width:187mm"/>
<!-- Start line 6 -->
<div style="width:187mm">
<div class="styLNLeftNumBox" style="height:4mm;"/>
<div class="styLNDesc" style="width:138.75mm;height:4mm;float:left;font-weight:bold">
<span style="font-weight:normal"/>
</div>
<div class="styLNRightNumBox" style="border-bottom-width:0px;"/>
<div class="styLNAmountBox" style="height:4mm;border-bottom-width:0px;"/>
</div>
<!-- End line 6 -->
<!-- Start line 6a -->