-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIRS4972.xsl
1371 lines (1339 loc) · 62.3 KB
/
IRS4972.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 v2011 sp1 (http://www.altova.com) by Daniel Ashton (IRS) -->
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:include href="PopulateTemplate.xsl"/>
<xsl:include href="CommonPathRef.xsl"/>
<xsl:include href="AddHeader.xsl"/>
<xsl:include href="AddOnTable.xsl"/>
<xsl:include href="IRS4972Style.xsl"/>
<xsl:output method="html" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:param name="Form4972Data" select="$RtnDoc/IRS4972"/>
<!-- tallest box on the form was beside 5 lines of text and was 21mm tall -->
<xsl:variable name="lineHeight" select="21 div 5"/>
<!-- estimate of 1px line height or width in mm is 0.22 -->
<xsl:variable name="borderWidth" select="0.17"/>
<xsl:variable name="pageWidth" select="187"/>
<xsl:variable name="standardLine" select="'StdLn'"/>
<xsl:template match="/">
<html lang="EN-US">
<head>
<title>
<xsl:call-template name="FormTitle">
<xsl:with-param name="RootElement" select="local-name($Form4972Data)"/>
</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 4972"/>
<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="IRS4972Style"/>
<xsl:call-template name="AddOnStyle"/>
</xsl:if>
</style>
<xsl:call-template name="GlobalStylesForm"/>
</head>
<body class="styBodyClass">
<form name="Form4972">
<xsl:call-template name="DocumentHeader"/>
<div class="styBB" style="width:{$pageWidth}mm;">
<div class="styFNBox" style="width:31mm;height:23mm;padding:bottom:0mm;">
Form<span style="width:1mm;"/>
<span class="styFormNumber">4972</span>
<br/>
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$Form4972Data"/>
</xsl:call-template>
<div class="styAgency" style="padding-top:0mm;height:0mm;padding:bottom:0mm;">
Department of the Treasury<br/>
Internal Revenue Service (99)
</div>
</div>
<div class="styFTBox" style="width:125mm;height:23mm;">
<div class="styMainTitle" style="height:5mm;padding:bottom:0mm;">Tax on Lump-Sum Distributions<br/>
<span class="styTitleDesc" style="width:125mm;font-size:10pt;">(From Qualified Plans of Participants Born Before January 2, 1936)</span>
</div>
<div class="styFBT" style="font-size:7.5pt;height:5mm;padding-top:1mm;">
<img src="{$ImagePath}/4972_Bullet_Md.gif" alt="MediumBullet"/> Information about Form 4972 and its instructions is available<br />
at <i>www.irs.gov/form4972.</i><br />
<img src="{$ImagePath}/4972_Bullet_Md.gif" alt="MediumBullet"/> Attach to Form 1040, 1040NR, or Form 1041.</div>
</div>
<div class="styTYBox" style="width:31mm; height:23mm">
<div style="padding-top:0mm;border-bottom:1 solid black;font:7pt;height:4.5mm">
<span style="vertical-align:-30%">OMB No. 1545-0193</span>
</div>
<div style="margin-top:-1.5mm">
<span class="styTaxYear" style="line-height:75%;font-family:'Arial';font-size:20pt">20</span>
<span class="styTYColor" style="line-height:75%;font-family:'Arial Black';font-size:20pt">
<b>12</b>
</span>
</div>
<br/>
<div class="stySequence" style="">
<span style="float:left">Attachment<br/>Sequence No. </span>
<span>
<b style="font-size:11.5pt;font-family:'Arial';vertical-align:sub">28</b>
</span>
</div>
</div>
</div>
<!-- Name(s) shown on return -->
<div class="styBB" style="width:{$pageWidth}mm;">
<div class="styFNBox" style="width:150mm; height:8mm">
Name of recipient of distribution<br/>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form4972Data/PersonName"/>
</xsl:call-template>
<br/>
<div style="line-height:100%; font-family:verdana;font-size:7.5pt"/>
</div>
<b> Identifying number</b>
<br/>
<xsl:call-template name="PopulateSSN">
<xsl:with-param name="TargetNode" select="$Form4972Data/SSN"/>
</xsl:call-template>
</div>
<!-- Part I -->
<!-- Part I - Header -->
<div class="styBB" style="width:187mm;float:none;clear:both;">
<span class="styPartName" style="width:14mm;">Part I</span>
<span class="styPartDesc" style="">Complete this part to see if you can use Form 4972</span>
</div>
<!-- Part I - Body -->
<div class="styBB" style="width:187mm;">
<!-- Line 1 -->
<div style="width:187mm;float:left;clear:none;">
<span style="float:left;">
<div class="styLNLeftNumBox" style="width:10mm;padding-left: 3.2mm;">1</div>
<div class="styLNDesc" style="width:150.5mm;">
<span style="float:left;">Was this a distribution of a plan participant's entire balance (excluding deductible voluntary employee<br/>contributions and certain forfeited amounts) from all of an employer's qualified plans of one kind (pension,<br/>profit-sharing, or stock bonus)? If "No," <b>do not</b> use this form
<!--Dotted Line-->
<span class="styBoldText" style="padding-left:1mm">
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
</span>
</span>
</div>
</span>
<span style="float:right;">
<span class="styIRS4972LNYesNoBox" style="width:7.5mm;height:4.5mm;"/>
<span class="styIRS4972LNYesNoBox" style="height:4.5mm;width:7.5mm;">Yes</span>
<span class="styIRS4972LNYesNoBox" style="height:4.5mm;width:7.5mm;">No</span>
<br/>
<span class="styIRS4972LNYesNoBox" style="width:7.5mm;height:6mm;padding-top:1.5mm;">1</span>
<span class="styIRS4972LNYesNoBox" style="width:7.5mm;height:6mm;padding-top:1.5mm;font:normal;">
<xsl:call-template name="PopulateYesBoxText">
<xsl:with-param name="TargetNode" select="$Form4972Data/DistributionOfQualifiedPlanInd"/>
</xsl:call-template>
</span>
<span class="styIRS4972LNYesNoBox" style="width:7.5mm;height:6mm;padding-top:1.5mm;font:normal">
<xsl:call-template name="PopulateNoBoxText">
<xsl:with-param name="TargetNode" select="$Form4972Data/DistributionOfQualifiedPlanInd"/>
</xsl:call-template>
</span>
</span>
</div>
<!-- Line 2 -->
<div style="width:187mm;float:left;clear:none;">
<span style="float:left;">
<div class="styLNLeftNumBox" style="width:10mm;padding-left: 3.2mm;">2</div>
<div class="styLNDesc" style="width:150.5mm;">
<span style="float:left;">Did you roll over any part of the distribution? If "Yes," <b>do not</b> use this form
<!--Dotted Line-->
<span class="styBoldText" style="padding-left:1mm">
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
</span>
</span>
</div>
</span>
<span style="float:right;">
<span class="styIRS4972LNYesNoBox" style="width:7.5mm;height:4.5mm;">2</span>
<span class="styIRS4972LNYesNoBox" style="width:7.5mm;height:4.5mm;font:normal;">
<xsl:call-template name="PopulateYesBoxText">
<xsl:with-param name="TargetNode" select="$Form4972Data/RolloverInd"/>
</xsl:call-template>
</span>
<span class="styIRS4972LNYesNoBox" style="width:7.5mm;height:4.5mm;font:normal">
<xsl:call-template name="PopulateNoBoxText">
<xsl:with-param name="TargetNode" select="$Form4972Data/RolloverInd"/>
</xsl:call-template>
</span>
</span>
</div>
<!-- Line 3 -->
<div style="width:187mm;float:left;clear:none;">
<span style="float:left;">
<div class="styLNLeftNumBox" style="width:10mm;padding-left: 3.2mm;">3</div>
<div class="styLNDesc" style="width:149mm;">
<span style="float:left;">Was this distribution paid to you as a beneficiary of a plan participant who was born before January 2, 1936?
</span>
</div>
</span>
<span style="float:right;">
<span class="styIRS4972LNYesNoBox" style="width:7.5mm;height:4.5mm;">3</span>
<span class="styIRS4972LNYesNoBox" style="width:7.5mm;height:4.5mm;font:normal;">
<xsl:call-template name="PopulateYesBoxText">
<xsl:with-param name="TargetNode" select="$Form4972Data/EmployeeBeneficiaryDistriInd"/>
</xsl:call-template>
</span>
<span class="styIRS4972LNYesNoBox" style="width:7.5mm;height:4.5mm;font:normal">
<xsl:call-template name="PopulateNoBoxText">
<xsl:with-param name="TargetNode" select="$Form4972Data/EmployeeBeneficiaryDistriInd"/>
</xsl:call-template>
</span>
</span>
</div>
<!-- Line 4 -->
<div style="width:187mm;float:left;clear:none;">
<span style="float:left;">
<div class="styLNLeftNumBox" style="width:10mm;padding-left: 3.2mm;">4</div>
<div class="styLNDesc" style="width:150.5mm;">
<span style="float:left;">Were you <b>(a)</b> a plan participant who received this distribution, <b>(b)</b> born before January 2, 1936, <b>and (c)</b> a<br/>participant in the plan for at least 5 years before the year of the distribution?
<!--Dotted Line-->
<span class="styBoldText" style="padding-left:1mm">
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
</span>
</span>
</div>
</span>
<span style="float:right;">
<span class="styIRS4972LNYesNoBox" style="width:7.5mm;height:7.5mm;padding-top:3mm;">4</span>
<span class="styIRS4972LNYesNoBox" style="width:7.5mm;height:7.5mm;padding-top:3mm;font:normal;">
<xsl:call-template name="PopulateYesBoxText">
<xsl:with-param name="TargetNode" select="$Form4972Data/QualifyingAge5YearMemberInd"/>
</xsl:call-template>
</span>
<span class="styIRS4972LNYesNoBox" style="width:7.5mm;height:7.5mm;padding-top:3mm;font:normal">
<xsl:call-template name="PopulateNoBoxText">
<xsl:with-param name="TargetNode" select="$Form4972Data/QualifyingAge5YearMemberInd"/>
</xsl:call-template>
</span>
</span>
</div>
<!-- Line after 4 -->
<div style="width:187mm;float:left;clear:none;">
<span style="float:left;">
<div class="styLNLeftNumBox" style="width:10mm;padding-left: 3.2mm;"></div>
<div class="styLNDesc" style="width:138.5mm;">
<span style="float:left;">If you answered "No" to both questions 3 <b>and</b> 4, <b>do not</b> use this form.
</span>
</div>
</span>
<span style="float:right;">
<span class="styIRS4972LNYesNoBox" style="width:7.5mm;height:4.5mm;background-color:lightgray;border-bottom-width:0px;"/>
<span class="styIRS4972LNYesNoBox" style="width:7.5mm;height:4.5mm;font:normal;background-color:lightgray;border-bottom-width:0px;"/>
<span class="styIRS4972LNYesNoBox" style="width:7.5mm;height:4.5mm;font:normal;background-color:lightgray;border-bottom-width:0px;"/>
</span>
</div>
<!-- Line 5a-->
<div style="width:187mm;float:left;clear:none;">
<span style="float:left;">
<div class="styLNLeftNumBox" style="width:10mm;padding-left: 1.6mm;">5a</div>
<div class="styLNDesc" style="width:150.5mm;">
<span style="float:left;">Did you use Form 4972 after 1986 for a previous distribution from your own plan? If "Yes," <b>do not</b> use this<br/>form for a 2012 distribution from your own plan
<!--Dotted Line-->
<span class="styBoldText" style="padding-left:1mm">
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
</span>
</span>
</div>
</span>
<span style="float:right;">
<span class="styIRS4972LNYesNoBox" style="height:7.5mm;padding-top:3mm;width:7.5mm;">5a</span>
<span class="styIRS4972LNYesNoBox" style="width:7.5mm;height:7.5mm;padding-top:3mm;font:normal;">
<xsl:call-template name="PopulateYesBoxText">
<xsl:with-param name="TargetNode" select="$Form4972Data/PriorYearDistributionInd"/>
</xsl:call-template>
</span>
<span class="styIRS4972LNYesNoBox" style="width:7.5mm;height:7.5mm;padding-top:3mm;font:normal">
<xsl:call-template name="PopulateNoBoxText">
<xsl:with-param name="TargetNode" select="$Form4972Data/PriorYearDistributionInd"/>
</xsl:call-template>
</span>
</span>
</div>
<!-- Line (5)b-->
<div style="width:187mm;float:left;clear:none;">
<span style="float:left;">
<div class="styLNLeftNumBox" style="width:10mm;padding-left: 3.2mm;">b</div>
<div class="styLNDesc" style="width:150.5mm;">
<span style="float:left;">If you are receiving this distribution as a beneficiary of a plan participant who died, did you use Form 4972<br/>for a previous distribution received for that participant after 1986? If "Yes," <b>do not</b> use the form for this<br/>distribution
<!--Dotted Line-->
<span class="styBoldText" style="padding-left:1mm">
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
</span>
</span>
</div>
</span>
<span style="float:right;">
<span class="styIRS4972LNYesNoBox" style="width:7.5mm;height:10.5mm;padding-top:6mm;border-bottom-width:0px;">5b</span>
<span class="styIRS4972LNYesNoBox" style="width:7.5mm;height:10.5mm;padding-top:6mm;font:normal;border-bottom-width:0px;">
<xsl:call-template name="PopulateYesBoxText">
<xsl:with-param name="TargetNode" select="$Form4972Data/BeneficiaryDistributionInd"/>
</xsl:call-template>
</span>
<span class="styIRS4972LNYesNoBox" style="width:7.5mm;height:10.5mm;padding-top:6mm;font:normal;border-bottom-width:0px;">
<xsl:call-template name="PopulateNoBoxText">
<xsl:with-param name="TargetNode" select="$Form4972Data/BeneficiaryDistributionInd"/>
</xsl:call-template>
</span>
</span>
</div>
</div>
<!-- Part II - Header -->
<div class="styBB" style="width:187mm;float:none;clear:both;">
<span class="styPartName" style="width:14mm;">Part II</span>
<span class="styPartDesc" style="">Complete this part to choose the 20% capital gain election. <span style="font:normal;"> (see instructions)</span></span>
</div>
<!-- Part II - Body -->
<!-- Line 6-->
<div style="width:187mm;float:left;clear:none;">
<span style="float:left;">
<div class="styLNLeftNumBox" style="width:10mm;padding-left: 3.2mm;">6</div>
<div class="styLNDesc" style="width:138.5mm;">
<span style="float:left;">Capital gain part from Form 1099-R, box 3
<xsl:call-template name="LinkToLeftoverDataTableInline">
<xsl:with-param name="Desc">Capital Gaining Election NUA Amount</xsl:with-param>
<xsl:with-param name="TargetNode" select="$Form4972Data/CapitalGainElectionAmt/@capitalGainElectionNUAAmt"/>
</xsl:call-template>
<xsl:call-template name="LinkToLeftoverDataTableInline">
<xsl:with-param name="Desc">Capital Gaining Election NUA Code</xsl:with-param>
<xsl:with-param name="TargetNode" select="$Form4972Data/CapitalGainElectionAmt/@capitalGainElectionNUACd"/>
</xsl:call-template>
</span>
<!--Dotted Line-->
<div class="styDotLn" style="padding-right:1mm;">...................</div>
</div>
</span>
<span style="float:right;">
<div class="styLNRightNumBox" style="width:7.5mm;height:4.5mm;">6</div>
<div class="styLNAmountBox" style="width:31mm;height:4.5mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form4972Data/CapitalGainElectionAmt"/>
</xsl:call-template>
</div>
</span>
</div>
<!-- Line 7-->
<div style="width:187mm;float:left;clear:none;">
<span style="float:left;">
<div class="styLNLeftNumBox" style="width:10mm;padding-left: 3.2mm;">7</div>
<div class="styLNDesc" style="width:138.5mm;">
<span style="float:left;">Multiply line 6 by 20% (.20)</span>
<!--Dotted Line-->
<div class="styDotLn" style="float:right;padding-right:1mm;">......................
<img src="{$ImagePath}/4972_Bullet_Md.gif" alt="MediumBullet"/>
</div>
</div>
</span>
<span style="float:right;">
<div class="styLNRightNumBox" style="width:7.5mm;height:4.5mm;">7</div>
<div class="styLNAmountBox" style="width:31mm;height:4.5mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form4972Data/CapitalGainTimesElectionPctAmt"/>
</xsl:call-template>
</div>
</span>
</div>
<div style="width:187mm;float:left;clear:none;bottom;border-bottom: 1px solid black">
<div class="styLNDesc" style="width:148.5mm;padding-left:10mm">
<span style="float:left;">
If you also choose to use Part III, go to line 8. Otherwise, include the amount from line 7 in the total on<br/>
Form 1040, line 44, Form 1040NR, line 42, or Form 1041, Schedule G, line 1b, whichever applies.
</span>
</div>
<div class="styLNAmountBox" style="float:right;height:7.4mm;border-bottom:0px;width:38.5mm;background-color:LightGrey"/>
</div>
<!-- Part III - Header -->
<div class="styBB" style="width:187mm;float:none;clear:both;">
<span class="styPartName" style="width:14mm;">Part III</span>
<span class="styPartDesc" style="">Complete this part to choose the 10-year tax option <span style="font:normal;">(see instructions)</span></span>
</div>
<!-- Part III - Body -->
<div style="width:{$pageWidth}mm;height:0mm;border-style:solid; border-bottom-width:{$borderWidth}mm;border-top-width:0;
border-right-width:0;border-left-width:0;">
<!-- Line 8-->
<div class="styGenericDiv" style="width:187mm;height:7.5mm">
<span style="float:left;">
<div class="styLNLeftNumBox" style="width:10mm;padding-left: 3.2mm;">8</div>
<div class="styLNDesc" style="height:7.5mm;width:138.5mm;">
<span style="float:left;">
Enter the amount from Form 1099-R, box 2a minus box 3. If you did not complete Part II, enter the<br/>
amount from box 2a. Multiple recipients (and recipients who elect to include NUA in taxable income)<br/>
see instructions
<xsl:call-template name="LinkToLeftoverDataTableInline">
<xsl:with-param name="Desc">Net Unrealized Appreciation Amount</xsl:with-param>
<xsl:with-param name="TargetNode" select="$Form4972Data/LumpSumDistriOrdinaryIncmAmt/@netUnrealizedAppreciationAmt"/>
</xsl:call-template>
<xsl:call-template name="LinkToLeftoverDataTableInline">
<xsl:with-param name="Desc">Net Unrealized Appreciation Code</xsl:with-param>
<xsl:with-param name="TargetNode" select="$Form4972Data/LumpSumDistriOrdinaryIncmAmt/@netUnrealizedAppreciationCd"/>
</xsl:call-template>
<!--Dotted Line-->
<span class="styBoldText" style="padding-left:1mm">
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
</span>
</span>
</div>
</span>
<span style="float:right;">
<div class="styLNRightNumBox" style="height:10.8mm;width:7.5mm;padding-top:6.8mm;padding-right:0.5mm;">8</div>
<div class="styLNAmountBox" style="height:10.8mm;width:31mm;padding-top:6.8mm;padding-right:0.5mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form4972Data/LumpSumDistriOrdinaryIncmAmt"/>
</xsl:call-template>
</div>
</span>
</div>
<!-- Line 9-->
<div class="styGenericDiv" style="width:187mm;height:4.5mm">
<span style="float:left;">
<div class="styLNLeftNumBox" style="width:10mm;padding-left: 3.2mm;">9</div>
<div class="styLNDesc" style="height:4.5mm;width:138.5mm;">
<span style="float:left;">
Death benefit exclusion for a beneficiary of a plan participant who died before August 21, 1996
<!--Dotted Line-->
<span class="styBoldText" style="padding-left:1mm">
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
</span>
</span>
</div>
</span>
<span style="float:right;">
<div class="styLNRightNumBox" style="height:4.5mm;width:7.5mm;padding-right:0.5mm;">9</div>
<div class="styLNAmountBox" style="height:4.5mm;width:31mm;padding-right:0.5mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form4972Data/LumpSumDistriDeathBnftExclAmt"/>
</xsl:call-template>
</div>
</span>
</div>
<!-- Line 10-->
<div class="styGenericDiv" style="width:187mm;height:4.5mm">
<span style="float:left;">
<div class="styLNLeftNumBox" style="width:10mm;padding-left: 1.6mm;">10</div>
<div class="styLNDesc" style="height:4.5mm;width:138.5mm;">
<span style="float:left;">
Total taxable amount. Subtract line 9 from line 8
<!--Dotted Line-->
<span class="styBoldText" style="padding-left:1mm">
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
</span>
</span>
</div>
</span>
<span style="float:right;">
<div class="styLNRightNumBox" style="height:4.5mm;width:7.5mm;padding-right:0.5mm;">10</div>
<div class="styLNAmountBox" style="height:4.5mm;width:31mm;padding-right:0.5mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form4972Data/LumpSumDistriTotalTaxableAmt"/>
</xsl:call-template>
</div>
</span>
</div>
<!-- Line 11-->
<div class="styGenericDiv" style="width:187mm;height:4.5mm">
<span style="float:left;">
<div class="styLNLeftNumBox" style="width:10mm;padding-left: 1.6mm;">11</div>
<div class="styLNDesc" style="height:4.5mm;width:138.5mm;">
<span style="float:left;">
Current actuarial value of annuity from Form 1099-R, box 8. If none, enter -0-
<!--Dotted Line-->
<span class="styBoldText" style="padding-left:1mm">
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
</span>
</span>
</div>
</span>
<span style="float:right;">
<div class="styLNRightNumBox" style="height:4.5mm;width:7.5mm;padding-right:0.5mm;">11</div>
<div class="styLNAmountBox" style="height:4.5mm;width:31mm;padding-right:0.5mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form4972Data/AnnuityActuarialValueAmt"/>
</xsl:call-template>
</div>
</span>
</div>
<!-- Line 12-->
<div class="styGenericDiv" style="width:187mm;height:7.5mm">
<span style="float:left;">
<div class="styLNLeftNumBox" style="width:10mm;padding-left: 1.6mm;">12</div>
<div class="styLNDesc" style="height:7.5mm;width:138.5mm;">
<span style="float:left;">
Adjusted total taxable amount. Add lines 10 and 11. If this amount is $70,000 or more, <b>skip</b> lines<br/>
13 through 16, enter this amount on line 17, and go to line 18
<!--Dotted Line-->
<span class="styBoldText" style="padding-left:1mm">
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
</span>
</span>
</div>
</span>
<span style="float:right;">
<div class="styLNRightNumBox" style="height:7.5mm;width:7.5mm;padding-top:3.5mm;padding-right:0.5mm;">12</div>
<div class="styLNAmountBox" style="height:7.5mm;width:31mm;padding-top:3.5mm;padding-right:0.5mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form4972Data/LumpSumDistriAdjTotTaxableAmt"/>
</xsl:call-template>
</div>
</span>
</div>
<!-- Line 13-->
<div class="styGenericDiv" style="width:187mm;height:4.5mm">
<span style="float:left;">
<div class="styLNLeftNumBox" style="width:10mm;padding-left: 1.6mm;">13</div>
<div class="styLNDesc" style="height:4.5mm;width:auto;">
<span style="float:left;">
Multiply line 12 by 50% (.50), but <b>do not</b> enter more than $10,000
<span class="styBoldText" style="padding-left:1mm">
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
</span>
</span>
</div>
</span>
<span style="float:right;">
<div class="styLNRightNumBox" style="height:4.5mm;width:7.5mm;padding-right:0.5mm;">13</div>
<div class="styLNAmountBox" style="height:4.5mm;width:31mm;padding-right:0.5mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form4972Data/LumpSumDistri50PctTotalTxblAmt"/>
</xsl:call-template>
</div>
<div class="styLNRightNumBox" style="height:4.5mm;width:7.5mm;background-color:lightgray;border-bottom-width:0px;"/>
<div class="styLNAmountBox" style="height:4.5mm;width:31mm;border-bottom-width:0px;"/>
</span>
</div>
<!-- Line 14-->
<div class="styGenericDiv" style="width:187mm;height:7.5mm">
<span style="float:left;">
<div class="styLNLeftNumBox" style="width:10mm;padding-left: 1.6mm;">14</div>
<div class="styLNDesc" style="height:7.5mm;width:auto;">
<span style="float:left;">Subtract $20,000 from line 12. If line 12 is<br/>
$20,000 or less, enter -0-
<span class="styBoldText" style="padding-left:1mm">
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
</span>
</span>
</div>
</span>
<span style="float:right;">
<div class="styLNRightNumBox" style="height:7.5mm;width:7.5mm;padding-top:3.5mm;padding-right:0.5mm;">14</div>
<div class="styLNAmountBox" style="height:7.5mm;width:31mm;padding-top:3.5mm;padding-right:0.5mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form4972Data/LumpSumNetAdjTotalTaxableAmt"/>
</xsl:call-template>
</div>
<div class="styLNRightNumBox" style="height:7.5mm;width:7.5mm;background-color:lightgray;border-bottom-width:0px;"/>
<div class="styLNAmountBox" style="height:7.5mm;width:31mm;border-bottom-width:0px;"/>
<div class="styLNRightNumBox" style="height:7.5mm;width:7.5mm;background-color:lightgray;border-bottom-width:0px;"/>
<div class="styLNAmountBox" style="height:7.5mm;width:31mm;border-bottom-width:0px;"/>
</span>
</div>
<!-- Line 15-->
<div class="styGenericDiv" style="width:187mm;height:4.5mm">
<span style="float:left;">
<div class="styLNLeftNumBox" style="width:10mm;padding-left: 1.6mm;">15</div>
<div class="styLNDesc" style="height:4.5mm;width:auto;">
<span style="float:left;">Multiply line 14 by 20% (.20)
<span class="styBoldText" style="padding-left:1mm">
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
</span>
</span>
</div>
</span>
<span style="float:right;">
<div class="styLNRightNumBox" style="height:4.5mm;width:7.5mm;padding-right:0.5mm;">15</div>
<div class="styLNAmountBox" style="height:4.5mm;width:31mm;padding-right:0.5mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form4972Data/LumpSumDistriProratedTxblAmt"/>
</xsl:call-template>
</div>
<div class="styLNRightNumBox" style="height:4.5mm;width:7.5mm;background-color:lightgray;border-bottom-width:0px;"/>
<div class="styLNAmountBox" style="height:4.5mm;width:31mm;border-bottom-width:0px;"/>
</span>
</div>
<!-- Line 16-->
<div class="styGenericDiv" style="width:187mm;height:4.5mm">
<span style="float:left;">
<div class="styLNLeftNumBox" style="width:10mm;padding-left: 1.6mm;">16</div>
<div class="styLNDesc" style="height:4.5mm;width:138.5mm;">
<span style="float:left;">Minimum distribution allowance. Subtract line 15 from line 13
<!--Dotted Line-->
<span class="styBoldText" style="padding-left:1mm">
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
</span>
</span>
</div>
</span>
<span style="float:right;">
<div class="styLNRightNumBox" style="height:4.5mm;width:7.5mm;padding-right:0.5mm;">16</div>
<div class="styLNAmountBox" style="height:4.5mm;width:31mm;padding-right:0.5mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form4972Data/LumpSumMinDistriAllowanceAmt"/>
</xsl:call-template>
</div>
</span>
</div>
<!-- Line 17-->
<div class="styGenericDiv" style="width:187mm;height:4.5mm">
<span style="float:left;">
<div class="styLNLeftNumBox" style="width:10mm;padding-left: 1.6mm;">17</div>
<div class="styLNDesc" style="height:4.5mm;width:138.5mm;">
<span style="float:left;">Subtract line 16 from line 12
<!--Dotted Line-->
<span class="styBoldText" style="padding-left:1mm">
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
</span>
</span>
</div>
</span>
<span style="float:right;">
<div class="styLNRightNumBox" style="height:4.5mm;width:7.5mm;padding-right:0.5mm;">17</div>
<div class="styLNAmountBox" style="height:4.5mm;width:31mm;padding-right:0.5mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form4972Data/LumpSumDistriAllowableTxblAmt"/>
</xsl:call-template>
</div>
</span>
</div>
<!-- Line 18-->
<div class="styGenericDiv" style="width:187mm;height:4.5mm">
<span style="float:left;">
<div class="styLNLeftNumBox" style="width:10mm;padding-left: 1.6mm;">18</div>
<div class="styLNDesc" style="height:4.5mm;width:138.5mm;">
<span style="float:left;">Federal estate tax attributable to lump-sum distribution
<!--Dotted Line-->
<span class="styBoldText" style="padding-left:1mm">
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
</span>
</span>
</div>
</span>
<span style="float:right;">
<div class="styLNRightNumBox" style="height:4.5mm;width:7.5mm;padding-right:0.5mm;">18</div>
<div class="styLNAmountBox" style="height:4.5mm;width:31mm;padding-right:0.5mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form4972Data/LumpDistribFederalEstateTaxAmt"/>
</xsl:call-template>
</div>
</span>
</div>
<!-- Line 19-->
<div class="styGenericDiv" style="width:187mm;height:4.5mm">
<span style="float:left;">
<div class="styLNLeftNumBox" style="width:10mm;padding-left: 1.6mm;">19</div>
<div class="styLNDesc" style="height:4.5mm;width:138.5mm;">
<span style="float:left;">Subtract line 18 from line 17. If line 11 is zero, <b>skip</b> lines 20 through 22 and go to line 23
<!--Dotted Line-->
<span class="styBoldText" style="padding-left:1mm">
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
</span>
</span>
</div>
</span>
<span style="float:right;">
<div class="styLNRightNumBox" style="height:4.5mm;width:7.5mm;padding-right:0.5mm;">19</div>
<div class="styLNAmountBox" style="height:4.5mm;width:31mm;padding-right:0.5mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form4972Data/LumpSumDistriNetTaxableAmt"/>
</xsl:call-template>
</div>
</span>
</div>
<!-- Line 20-->
<div class="styGenericDiv" style="width:187mm;height:7.5mm">
<span style="float:left;">
<div class="styLNLeftNumBox" style="width:10mm;padding-left: 1.6mm;">20</div>
<div class="styLNDesc" style="height:7.5mm;width:auto;">
<span style="float:left;">Divide line 11 by line 12 and enter the result as a decimal (rounded to at<br/>
least three places)
<span class="styBoldText" style="padding-left:1mm">
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
</span>
</span>
</div>
</span>
<span style="float:right;">
<div class="styLNRightNumBox" style="height:7.5mm;width:7.5mm;padding-top:3.5mm;padding-right:0.5mm;">20</div>
<div class="styLNAmountBox" style="height:7.5mm;width:31mm;padding-top:3.5mm;padding-right:0.5mm;">
<xsl:call-template name="PopulatePercent">
<xsl:with-param name="TargetNode" select="$Form4972Data/LumpSumDistriActuarialAdjPct"/>
</xsl:call-template>
</div>
<div class="styLNRightNumBox" style="height:7.5mm;width:7.5mm;background-color:lightgray;border-bottom-width:0px;"/>
<div class="styLNAmountBox" style="height:7.5mm;width:31mm;border-bottom-width:0px;"/>
</span>
</div>
<!-- Line 21-->
<div class="styGenericDiv" style="width:187mm;height:4.5mm">
<span style="float:left;">
<div class="styLNLeftNumBox" style="width:10mm;padding-left: 1.6mm;">21</div>
<div class="styLNDesc" style="height:4.5mm;width:auto;">
<span style="float:left;">Multiply line 16 by the decimal on line 20
<span class="styBoldText" style="padding-left:1mm">
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
</span>
</span>
</div>
</span>
<span style="float:right;">
<div class="styLNRightNumBox" style="height:4.5mm;width:7.5mm;padding-right:0.5mm;">21</div>
<div class="styLNAmountBox" style="height:4.5mm;width:31mm;padding-right:0.5mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form4972Data/LumpSumDistriMinAllwPercentAmt"/>
</xsl:call-template>
</div>
<div class="styLNRightNumBox" style="height:4.5mm;width:7.5mm;background-color:lightgray;border-bottom-width:0px;"/>
<div class="styLNAmountBox" style="height:4.5mm;width:31mm;border-bottom-width:0px;"/>
</span>
</div>
<!-- Line 22-->
<div class="styGenericDiv" style="width:187mm;height:4.5mm">
<span style="float:left;">
<div class="styLNLeftNumBox" style="width:10mm;padding-left: 1.6mm;">22</div>
<div class="styLNDesc" style="height:4.5mm;width:auto">
<span style="float:left;">Subtract line 21 from line 11
<span class="styBoldText" style="padding-left:1mm">
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
<span style="width:2.6mm"/>.
</span>
</span>
</div>
</span>
<span style="float:right;">
<div class="styLNRightNumBox" style="height:4.5mm;width:7.5mm;padding-right:0.5mm;">22</div>
<div class="styLNAmountBox" style="height:4.5mm;width:31mm;padding-right:0.5mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form4972Data/LumpSumDistriAdjActuarialAmt"/>
</xsl:call-template>
</div>
<div class="styLNRightNumBox" style="height:4.5mm;width:7.5mm;background-color:lightgray;border-bottom-width:0px;"/>
<div class="styLNAmountBox" style="height:4.5mm;width:31mm;border-bottom-width:0px;"/>
</span>
</div>
<!-- Line 23-->
<div class="styGenericDiv" style="width:187mm;height:4.5mm">
<span style="float:left;">
<div class="styLNLeftNumBox" style="width:10mm;padding-left: 1.6mm;">23</div>
<div class="styLNDesc" style="height:4.5mm;width:138.5mm;">