-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIRS5329.xsl
2581 lines (2571 loc) · 148 KB
/
IRS5329.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="PopulateTemplate.xsl"/>
<xsl:include href="CommonPathRef.xsl"/>
<xsl:include href="AddHeader.xsl"/>
<xsl:include href="AddOnTable.xsl"/>
<xsl:include href="IRS5329Style.xsl"/>
<xsl:output method="html" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:param name="Form5329Data" select="$RtnDoc/IRS5329"/>
<!-- ////////////////////////////////////////////////////////////// (Template: CreateBox) -->
<xsl:template name="CreateBox">
<xsl:param name="TargetNode"/>
<xsl:param name="AmountBoxStyle"/>
<xsl:param name="PopulateAsText"/>
<xsl:param name="Number"/>
<xsl:param name="NumberBoxStyle"/>
<xsl:param name="Width">29mm</xsl:param>
<xsl:param name="Height">5mm</xsl:param>
<div class="styLNAmountBox">
<xsl:attribute name="style">
width:<xsl:value-of select="$Width"/>;height:<xsl:value-of select="$Height"/>;
border-right-width:0px;float:right;text-align:right;padding-right:2px;font-size:6pt;
<xsl:choose><xsl:when test="$TargetNode"><xsl:choose><xsl:when test="$TargetNode/@referenceDocumentId">padding-top:3px;</xsl:when><xsl:otherwise>padding-top:6px;</xsl:otherwise></xsl:choose></xsl:when><xsl:otherwise>padding-top:6px;</xsl:otherwise></xsl:choose><xsl:if test="$AmountBoxStyle"><xsl:value-of select="$AmountBoxStyle"/></xsl:if></xsl:attribute>
<xsl:if test="$TargetNode">
<xsl:choose>
<xsl:when test="$PopulateAsText">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$TargetNode"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$TargetNode"/>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
<xsl:if test="$TargetNode/@referenceDocumentId">
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$TargetNode"/>
</xsl:call-template>
</xsl:if>
</xsl:if>
</div>
<div class="styLNRightNumBox">
<xsl:attribute name="style">
float:right;
padding:3px 0px 0px 0px;
border-right-width:0px;
height:<xsl:value-of select="$Height"/>;
<xsl:if test="$NumberBoxStyle"><xsl:value-of select="$NumberBoxStyle"/></xsl:if></xsl:attribute>
<xsl:if test="$Number">
<xsl:value-of select="$Number"/>
</xsl:if>
</div>
</xsl:template>
<!-- /////////////////////////////////////////////////////////////////////////////////////////////////////// -->
<xsl:template match="/">
<html lang="EN-US">
<head>
<title>
<xsl:call-template name="FormTitle">
<xsl:with-param name="RootElement" select="local-name($Form5329Data)"/>
</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 5329"/>
<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="IRS5329Style"/>
<xsl:call-template name="AddOnStyle"/>
</xsl:if>
</style>
<xsl:call-template name="GlobalStylesForm"/>
</head>
<body class="styBodyClass">
<form name="IRS5329">
<!-- Begin Header section 1 -->
<xsl:call-template name="DocumentHeader"/>
<div class="styBB" style="width:187mm;border-bottom-width:2px;float:none;clear:both;">
<div class="styFNBox" style="width:31mm;height:22mm;border-right-width:2px;padding-top:.5mm;">
<div style="padding-top:1mm;">
Form<span class="styFormNumber"> 5329</span>
</div>
<!--General Dependency Push Pin-->
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$Form5329Data"/>
</xsl:call-template>
<br/>
<span class="styAgency">Department of the Treasury</span>
<br/>
<span class="styAgency">Internal Revenue Service (99)</span>
</div>
<div class="styFTBox" style="width:125mm;">
<!-- Main Title >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> -->
<div class="styMainTitle" style="height:8mm;">
Additional Taxes on Qualified Plans<br/>(Including IRAs) and Other Tax-Favored Accounts
</div>
<div class="styFST" style="height:5mm;font-size:7pt;margin-left:2mm;text-align:center;">
<span style="text-align:center;font-weight:bold;">
<div style="width:100%;height:5mm;padding-left:35px;">
<div style="width:80mm;height:5mm;">
<br/>
<img src="{$ImagePath}/5329_Bullet_Sm.gif" alt="SmallBullet"/>
Attach to Form 1040 or Form 1040NR.<br/>
<img src="{$ImagePath}/5329_Bullet_Sm.gif" alt="SmallBullet"/>
See separate instructions.
</div>
</div>
</span>
</div>
</div>
<div class="styTYBox" style="width:30mm;border-left-width:2px;">
<div class="styOMB" style="height:2mm;font-size:7pt;">OMB No. 1545-0074</div>
<div class="styTY">20<span class="styTYColor">12</span>
</div>
<div style="margin-left:3mm;text-align:left;font-size:7pt;">
Attachment<br/>Sequence No.
<span class="styBoldText" style="font-size:9pt;">29</span>
</div>
</div>
</div>
<!-- End Header section 1 -->
<!-- Begin Names and Identifying number section -->
<div class="styBB" style="width:187mm;float:none;clear:both;">
<div class="styNameBox" style="width:137mm;height:8mm;font-weight:normal;font-size:7pt;">
Name of individual subject to additional tax. If married filing jointly, see instructions.<br/>
<xsl:choose>
<xsl:when test="$Form5329Data/PersonName">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form5329Data/PersonName"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="TargetNode">Name</xsl:with-param>
<xsl:with-param name="BackupName">$RtnHdrDataFilerName</xsl:with-param>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</div>
<div style="height:8mm;width:50mm;height:4mm;padding:0px 0px 0px 2mm;font-size:7pt;" class="styEINBox">
Your social security number
<br/>
<span style="font-weight:normal;text-align:left;width:100%">
<xsl:choose>
<xsl:when test="$Form5329Data/SSN">
<xsl:call-template name="PopulateSSN">
<xsl:with-param name="TargetNode" select="$Form5329Data/SSN"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="TargetNode">PrimarySSN</xsl:with-param>
<xsl:with-param name="BackupName">$RtnHdrDataFilerPrimarySSN</xsl:with-param>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</span>
</div>
</div>
<!-- End Names and Identifying number section -->
<!-- Begin Top Section -->
<!-- Fill in your address -->
<!-- End Names and Identifying number section -->
<!-- Begin Top Section -->
<div class="styGenericDiv" style="width:187mm;border-bottom:1px solid black">
<div class="styGenericDiv" style="">
<!-- Left Panel -->
<div class="styIRS5329LineItem" style="width:28%;float:left;height:42mm;border-right:1px solid black">
<!-- Text -->
<div class="styIRS5329LineItem" style="width:83%;float:left;font-size:8pt;padding-top:10mm">
<span class="styBoldText">
Fill in Your Address Only<br/>
If You Are Filing This<br/>
Form by Itself and Not<br/>
With Your Tax Return<br/>
</span>
</div>
<!-- Image -->
<div class="styIRS5329LineItem" style="width:17%;float:left;padding-top:10mm;padding-left:2.5mm">
<img src="{$ImagePath}/5329_Bullet_Lg.gif" alt="SmallBullet"/>
</div>
</div>
<!-- Right Panel -->
<div class="styIRS5329LineItem" style="width:72%;float:left;height:18mm;">
<div class="styIRS5329LineItem" style="width:100%;border-bottom-width:1px;border-color:black;height:12mm;">
<div class="styIRS5329LineItem" style="width:118mm;height:8mm;float:left;padding-left:4px;">
Home address (number and street), or P.O. box if mail is not delivered to your home
<br/>
<xsl:if test="$RtnHdrData/Filer/USAddress">
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="TargetNode">AddressLine1</xsl:with-param>
<xsl:with-param name="BackupName">$RtnHdrDataFilerUSAddressLine1</xsl:with-param>
</xsl:call-template>
<xsl:if test="$RtnHdrData/Filer/USAddress/AddressLine2">
<br/>
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="TargetNode">AddressLine2</xsl:with-param>
<xsl:with-param name="BackupName">$RtnHdrDataFilerUSAddressLine2</xsl:with-param>
</xsl:call-template>
</xsl:if>
</xsl:if>
<xsl:if test="$RtnHdrData/Filer/ForeignAddress">
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="TargetNode">AddressLine1</xsl:with-param>
<xsl:with-param name="BackupName">$RtnHdrDataFilerForeignAddressLine1</xsl:with-param>
</xsl:call-template>
<xsl:if test="$RtnHdrData/Filer/ForeignAddress/AddressLine2">
<br/>
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="TargetNode">AddressLine2</xsl:with-param>
<xsl:with-param name="BackupName">$RtnHdrDataFilerForeignAddressLine2</xsl:with-param>
</xsl:call-template>
</xsl:if>
</xsl:if>
</div>
<div class="styIRS5329LineItem" style="width:15mm;height:12.5mm;float:right;border-left-width:1px;border-color:black;padding-left:5px;">
Apt. no. <br/>
</div>
</div>
<div class="styIRS5329LineItem" style="width:100%;height:14mm;border-bottom:1px solid black">
<div class="styIRS5329LineItem" style="width:83mm;float:left;padding-left:4px;">
City, town or post office, state, and ZIP code. If you have a foreign address, also complete the spaces
below (see instructions)
<br/>
<xsl:if test="$RtnHdrData/Filer/USAddress">
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="TargetNode">City</xsl:with-param>
<xsl:with-param name="BackupName">$RtnHdrDataFilerUSAddressCity</xsl:with-param>
</xsl:call-template>,
<span style="width:2px;"/>
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="TargetNode">State</xsl:with-param>
<xsl:with-param name="BackupName">$RtnHdrDataFilerUSAddressState</xsl:with-param>
</xsl:call-template>,
<span style="width:2px;"/>
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="TargetNode">ZIPCode</xsl:with-param>
<xsl:with-param name="BackupName">$RtnHdrDataFilerUSAddressZip</xsl:with-param>
</xsl:call-template>
</xsl:if>
<xsl:if test="$RtnHdrData/Filer/ForeignAddress">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$RtnHdrData/Filer/ForeignAddress/City"/>
</xsl:call-template>,
<span style="width:2px;"/>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$RtnHdrData/Filer/ForeignAddress/ProvinceOrState"/>
</xsl:call-template>,
<span style="width:2px;"/>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$RtnHdrData/Filer/ForeignAddress/PostalCode"/>
</xsl:call-template>
</xsl:if>
</div>
<div class="styIRS5329LineItem" style="width:50mm;height:100%;float:right;border-left-width:1px;border-color:black;padding-left:5px;padding-top:3px;">
If this is an amended<br/>return, check here
<span class="styBoldText">
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:6px"/>
<img src="{$ImagePath}/5329_Bullet_Sm.gif" alt="SmallBullet"/>
<span style="width:5px"/>
<span>
<xsl:call-template name="PopulateSpan">
<xsl:with-param name="TargetNode" select="$Form5329Data/AmendedInd"/>
<xsl:with-param name="BackupName">IRS5329AmendedReturnInd</xsl:with-param>
</xsl:call-template>
<input type="checkbox" class="styCkbox" alt="Checkbox">
<xsl:call-template name="PopulateYesCheckbox">
<xsl:with-param name="TargetNode" select="$Form5329Data/AmendedInd"/>
<xsl:with-param name="BackupName">IRS5329AmendedReturnInd</xsl:with-param>
</xsl:call-template>
</input>
</span>
<span style="width:2mm;"/>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form5329Data/AmendedReturnInd"/>
<xsl:with-param name="BackupName">IRS5329AmendedReturnInd</xsl:with-param>
</xsl:call-template>
</label>
</span>
</div>
</div>
<div class="styGenericDiv" style="width:33.3%;border-right:1px solid black;height:14mm">
Foreign country name<br/>
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="TargetNode">Country</xsl:with-param>
<xsl:with-param name="BackupName">$RtnHdrDataFilerForeignAddressCountry</xsl:with-param>
</xsl:call-template>
</div>
<div class="styGenericDiv" style="width:33.3%;border-right:1px solid black;height:14mm">
Foreign province/county<br/>
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="TargetNode">ProvinceOrState</xsl:with-param>
<xsl:with-param name="BackupName">$RtnHdrDataFilerForeignAddressProvinceOrState</xsl:with-param>
</xsl:call-template>
</div>
<div class="styGenericDiv" style="width:33.3%;height:14mm">
Foreign postal code<br/>
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="TargetNode">PostalCode</xsl:with-param>
<xsl:with-param name="BackupName">$RtnHdrDataFilerForeignAddressZip</xsl:with-param>
</xsl:call-template>
</div>
</div>
</div>
</div>
<div class="styBB" style="width:187mm;">
If you <b>only</b> owe the additional 10% tax on early distributions, you may be able to report this tax directly on Form 1040, line 58, or<br/>
Form 1040NR, line 56, without filing Form 5329. See the instructions for Form 1040, line 58, or for Form 1040NR, line 56.
</div>
<!-- End Top Section -->
<!-- >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> -->
<!-- Begin Part I -->
<!-- <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< -->
<!-- Header -->
<div style="width:187mm;" class="styBB">
<!-- Content -->
<div class="styPartName" style="width:15mm;">Part I</div>
<div class="styPartDesc" style="padding-left:3mm;">
Additional Tax on Early Distributions<br/>
<span class="styNormalText" style="font-size:6.5pt;">
Complete this part if you took a taxable distribution before you reached age 59½ from a qualified retirement plan (including an IRA) or
modified endowment contract (unless you are reporting this tax directly on Form 1040 or Form 1040NR—see above). You may also have
to complete this part to indicate that you qualify for an exception to the additional tax on early distributions or for certain Roth IRA
distributions (see instructions).
</span>
</div>
</div>
<!-- Body -->
<div class="styBB" style="width:187mm;">
<!-- (1) ////////////////////////////////////////////////////-->
<div class="styIRS5329LineItem">
<div class="styIRS5329LNLeftNumBox">1</div>
<div class="styIRS5329LNDesc" style="width:143mm;height:100%;padding:0px 0px 0px 0px;">
<div class="styIRS5329LNDesc" style="width:auto;height:100%;">
Early distributions included in income. For Roth IRA distributions, see instructions
</div>
<div class="styIRS5329LNDesc" style="width:auto;height:100%;text-align:right;float:right;padding:0px 3mm 0px 0px;">
<!--Dotted Line-->
<span class="styBoldText">
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
</span>
</div>
</div>
<xsl:call-template name="CreateBox">
<xsl:with-param name="TargetNode" select="$Form5329Data/EarlyDistributionsAmt"/>
<xsl:with-param name="Number">1</xsl:with-param>
</xsl:call-template>
</div>
<!-- (2) ////////////////////////////////////////////////////-->
<div class="styIRS5329LineItem">
<div class="styIRS5329LNLeftNumBox">2</div>
<div class="styIRS5329LNDesc" style="width:143mm;height:100%;padding:0px 0px 0px 0px;">
<div class="styIRS5329LNDesc" style="width:auto;height:100%;">
Early distributions included on line 1 that are not subject to the additional tax (see instructions).<br/>
Enter the appropriate exception number from the instructions:
<span style="width:3px;"/>
<span style="border-width:0px 0px 1px 0px;border-style:solid;border-color:black;width:8mm;text-align:center;">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form5329Data/EarlyDistriExceptionReasonCd"/>
</xsl:call-template>
</span>
<!--Dotted Line-->
<span class="styBoldText">
<span style="width:21px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
</span>
</div>
</div>
<div class="styIRS5329LNDesc" style="height:100%;width:37mm;float:right;padding:0px 0px 0px 0px;">
<div class="styIRS5329LNDesc" style="height:2mm;width:37mm;float:right;padding:0px 0px 0px 0px;">
<xsl:call-template name="CreateBox">
<xsl:with-param name="Height">100%</xsl:with-param>
<xsl:with-param name="AmountBoxStyle">border-width:0px 0px 0px 1px;padding:0px 0px 0px 0px;</xsl:with-param>
<xsl:with-param name="NumberBoxStyle">border-width:0px 0px 0px 1px;padding:0px 0px 0px 0px;</xsl:with-param>
</xsl:call-template>
</div>
<div class="styIRS5329LNDesc" style="height:auto;width:37mm;float:right;padding:0px 0px 0px 0px;">
<xsl:call-template name="CreateBox">
<xsl:with-param name="TargetNode" select="$Form5329Data/EarlyDistriNotSubjectToTaxAmt"/>
<xsl:with-param name="Number">2</xsl:with-param>
</xsl:call-template>
</div>
</div>
</div>
<!-- (3) ////////////////////////////////////////////////////-->
<div class="styIRS5329LineItem">
<div class="styIRS5329LNLeftNumBox">3</div>
<div class="styIRS5329LNDesc" style="width:143mm;height:100%;padding:0px 0px 0px 0px;">
<div class="styIRS5329LNDesc" style="width:auto;height:100%;">
Amount subject to additional tax. Subtract line 2 from line 1
</div>
<div class="styIRS5329LNDesc" style="width:auto;height:100%;text-align:right;float:right;padding:0px 3mm 0px 0px;">
<!--Dotted Line-->
<span class="styBoldText">
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
</span>
</div>
</div>
<xsl:call-template name="CreateBox">
<xsl:with-param name="TargetNode" select="$Form5329Data/EarlyDistriSubjectToTaxAmt"/>
<xsl:with-param name="Number">3</xsl:with-param>
</xsl:call-template>
</div>
<!-- (4) ////////////////////////////////////////////////////-->
<div class="styIRS5329LineItem">
<div class="styIRS5329LNLeftNumBox">4</div>
<div class="styIRS5329LNDesc" style="width:143mm;height:100%;padding:0px 0px 0px 0px;">
<div class="styIRS5329LNDesc" style="width:auto;height:100%;">
<b>Additional tax.</b> Enter 10% (.10) of line 3. Include this amount on Form 1040, line 58, or Form<br/>
1040NR, line 56
<!--Dotted Line-->
<span class="styBoldText">
<span style="width:7px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
</span>
<b>Caution:</b>
<span class="styItalicText">If any part of the amount on line 3 was a distribution from a SIMPLE IRA, you may have<br/>
to include 25% of that amount on line 4 instead of 10% (see instructions).</span>
</div>
</div>
<div class="styIRS5329LNDesc" style="height:100%;width:37mm;float:right;padding:0px 0px 0px 0px;">
<div class="styIRS5329LNDesc" style="height:2mm;width:37mm;float:right;padding:0px 0px 0px 0px;">
<xsl:call-template name="CreateBox">
<xsl:with-param name="Height">100%</xsl:with-param>
<xsl:with-param name="AmountBoxStyle">border-width:0px 0px 0px 1px;padding:0px 0px 0px 0px;</xsl:with-param>
<xsl:with-param name="NumberBoxStyle">border-width:0px 0px 0px 1px;padding:0px 0px 0px 0px;</xsl:with-param>
</xsl:call-template>
</div>
<div class="styIRS5329LNDesc" style="height:auto;width:37mm;float:right;padding:0px 0px 0px 0px;">
<xsl:call-template name="CreateBox">
<xsl:with-param name="TargetNode" select="$Form5329Data/IRAEarlyDistributionsTaxAmt"/>
<xsl:with-param name="Number">4</xsl:with-param>
</xsl:call-template>
</div>
<div class="styIRS5329LNDesc" style="width:37mm;float:right;padding:0px 0px 0px 0px;">
<xsl:call-template name="CreateBox">
<xsl:with-param name="Height">6.5mm</xsl:with-param>
<xsl:with-param name="AmountBoxStyle">border-width:0px 0px 0px 0px;padding:0px 0px 0px 0px;background-color:lightgrey;</xsl:with-param>
<xsl:with-param name="NumberBoxStyle">border-width:0px 0px 0px 1px;padding:0px 0px 0px 0px;background-color:lightgrey;</xsl:with-param>
</xsl:call-template>
</div>
</div>
</div>
</div>
<!-- >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> -->
<!-- Begin Part II -->
<!-- <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< -->
<!-- Header -->
<div style="width:187mm;" class="styBB">
<!-- Content -->
<div class="styPartName" style="width:15mm;">Part II</div>
<div class="styPartDesc" style="padding-left:3mm;">
Additional Tax on Certain Distributions From Education Accounts<br/>
<span class="styNormalText" style="font-size:6.5pt;">
Complete this part if you included an amount in income, on Form 1040 or Form 1040NR, line 21, from a Coverdell
education savings account (ESA) or a qualified tuition program (QTP).
</span>
</div>
</div>
<!-- Body -->
<div class="styBB" style="width:187mm;">
<!-- (5) ////////////////////////////////////////////////////-->
<div class="styIRS5329LineItem">
<div class="styIRS5329LNLeftNumBox">5</div>
<div class="styIRS5329LNDesc" style="width:143mm;height:100%;padding:0px 0px 0px 0px;">
<div class="styIRS5329LNDesc" style="width:auto;height:100%;">
Distributions included in income from Coverdell ESAs and QTPs
</div>
<div class="styIRS5329LNDesc" style="width:auto;height:100%;text-align:right;float:right;padding:0px 3mm 0px 0px;">
<!--Dotted Line-->
<span class="styBoldText">.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
</span>
</div>
</div>
<xsl:call-template name="CreateBox">
<xsl:with-param name="TargetNode" select="$Form5329Data/EducAcctDistributionAmt"/>
<xsl:with-param name="Number">5</xsl:with-param>
</xsl:call-template>
</div>
<!-- (6) ////////////////////////////////////////////////////-->
<div class="styIRS5329LineItem">
<div class="styIRS5329LNLeftNumBox">6</div>
<div class="styIRS5329LNDesc" style="width:143mm;height:100%;padding:0px 0px 0px 0px;">
<div class="styIRS5329LNDesc" style="width:auto;height:100%;">
Distributions included on line 5 that are not subject to the additional tax (see instructions)
</div>
<div class="styIRS5329LNDesc" style="width:auto;height:100%;text-align:right;float:right;padding:0px 3mm 0px 0px;">
<!--Dotted Line-->
<span class="styBoldText">
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
</span>
</div>
</div>
<xsl:call-template name="CreateBox">
<xsl:with-param name="TargetNode" select="$Form5329Data/EducAcctDistriNotSubjToTaxAmt"/>
<xsl:with-param name="Number">6</xsl:with-param>
</xsl:call-template>
</div>
<!-- (7) ////////////////////////////////////////////////////-->
<div class="styIRS5329LineItem">
<div class="styIRS5329LNLeftNumBox">7</div>
<div class="styIRS5329LNDesc" style="width:143mm;height:100%;padding:0px 0px 0px 0px;">
<div class="styIRS5329LNDesc" style="width:auto;height:100%;">
Amount subject to additional tax. Subtract line 6 from line 5
</div>
<div class="styIRS5329LNDesc" style="width:auto;height:100%;text-align:right;float:right;padding:0px 3mm 0px 0px;">
<!--Dotted Line-->
<span class="styBoldText">
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
</span>
</div>
</div>
<xsl:call-template name="CreateBox">
<xsl:with-param name="TargetNode" select="$Form5329Data/EducAcctDistriSubjectToTaxAmt"/>
<xsl:with-param name="Number">7</xsl:with-param>
</xsl:call-template>
</div>
<!-- (8) ////////////////////////////////////////////////////-->
<div class="styIRS5329LineItem">
<div class="styIRS5329LNLeftNumBox">8</div>
<div class="styIRS5329LNDesc" style="width:143mm;height:100%;padding:0px 0px 0px 0px;">
<div class="styIRS5329LNDesc" style="width:auto;height:100%;">
<b>Additional tax.</b> Enter 10% (.10) of line 7. Include this amount on Form 1040, line 58, or Form 1040NR, line 56
</div>
</div>
<div class="styIRS5329LNDesc" style="height:100%;width:37mm;float:right;padding:0px 0px 0px 0px;">
<div class="styIRS5329LNDesc" style="height:2mm;width:37mm;float:right;padding:0px 0px 0px 0px;">
<xsl:call-template name="CreateBox">
<xsl:with-param name="Height">100%</xsl:with-param>
<xsl:with-param name="AmountBoxStyle">border-width:0px 0px 0px 1px;padding:0px 0px 0px 0px;</xsl:with-param>
<xsl:with-param name="NumberBoxStyle">border-width:0px 0px 0px 1px;padding:0px 0px 0px 0px;</xsl:with-param>
</xsl:call-template>
</div>
<div class="styIRS5329LNDesc" style="height:auto;width:37mm;float:right;padding:0px 0px 0px 0px;">
<xsl:call-template name="CreateBox">
<xsl:with-param name="TargetNode" select="$Form5329Data/EducIRADistributionsTaxAmt"/>
<xsl:with-param name="Number">8</xsl:with-param>
<xsl:with-param name="AmountBoxStyle">border-bottom-width:0px;</xsl:with-param>
<xsl:with-param name="NumberBoxStyle">border-bottom-width:0px;</xsl:with-param>
</xsl:call-template>
</div>
</div>
</div>
</div>
<!-- >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> -->
<!-- Begin Part III -->
<!-- <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< -->
<!-- Header -->
<div style="width:187mm;" class="styBB">
<!-- Content -->
<div class="styPartName" style="width:15mm;">Part III</div>
<div class="styPartDesc" style="padding-left:3mm;">
Additional Tax on Excess Contributions to Traditional IRAs<br/>
<span class="styNormalText" style="font-size:6.5pt;">
Complete this part if you contributed more to your traditional IRAs for 2012 than is allowable or you had an amount on<br/>
line 17 of your 2011 Form 5329.
</span>
</div>
</div>
<!-- Body -->
<div class="styBB" style="width:187mm;">
<!-- (9) ////////////////////////////////////////////////////-->
<div class="styIRS5329LineItem">
<div class="styIRS5329LNLeftNumBox">9</div>
<div class="styIRS5329LNDesc" style="width:143mm;height:100%;padding:0px 0px 0px 0px;">
<div class="styIRS5329LNDesc" style="width:auto;height:100%;">
Enter your excess contributions from line 16 of your 2011 Form 5329 (see instructions). If zero, go<br/>
to line 15
<!--Dotted Line-->
<span class="styBoldText">
<span style="width:8px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
</span>
</div>
</div>
<div class="styIRS5329LNDesc" style="height:100%;width:37mm;float:right;padding:0px 0px 0px 0px;">
<div class="styIRS5329LNDesc" style="height:2mm;width:37mm;float:right;padding:0px 0px 0px 0px;">
<xsl:call-template name="CreateBox">
<xsl:with-param name="Height">100%</xsl:with-param>
<xsl:with-param name="AmountBoxStyle">border-width:0px 0px 0px 1px;padding:0px 0px 0px 0px;</xsl:with-param>
<xsl:with-param name="NumberBoxStyle">border-width:0px 0px 0px 1px;padding:0px 0px 0px 0px;</xsl:with-param>
</xsl:call-template>
</div>
<div class="styIRS5329LNDesc" style="height:auto;width:37mm;float:right;padding:0px 0px 0px 0px;">
<xsl:call-template name="CreateBox">
<xsl:with-param name="TargetNode" select="$Form5329Data/IRAExcessContriPriorYearAmt"/>
<xsl:with-param name="Number">9</xsl:with-param>
</xsl:call-template>
</div>
</div>
</div>
<!-- (10) ////////////////////////////////////////////////////-->
<div class="styIRS5329LineItem">
<div class="styIRS5329LNLeftNumBox">10</div>
<div class="styIRS5329LNDesc" style="width:105mm;height:100%;padding:0px 0px 0px 0px;">
<div class="styIRS5329LNDesc" style="width:auto;height:100%;">
If your traditional IRA contributions for 2012 are less than your<br/>
maximum allowable contribution, see instructions. Otherwise, enter -0-
</div>
</div>
<div class="styIRS5329LNDesc" style="height:100%;width:75mm;float:right;padding:0px 0px 0px 0px;">
<div class="styIRS5329LNDesc" style="height:4mm;width:37mm;float:right;padding:0px 0px 0px 0px;">
<xsl:call-template name="CreateBox">
<xsl:with-param name="Height">100%</xsl:with-param>
<xsl:with-param name="AmountBoxStyle">border-width:0px 0px 0px 1px;padding:0px 0px 0px 0px;</xsl:with-param>
<xsl:with-param name="NumberBoxStyle">border-width:0px 0px 0px 1px;padding:0px 0px 0px 0px;background-color:lightgrey;</xsl:with-param>
</xsl:call-template>
</div>
<div class="styIRS5329LNDesc" style="height:4mm;width:37mm;float:right;padding:0px 0px 0px 0px;">
<xsl:call-template name="CreateBox">
<xsl:with-param name="Height">100%</xsl:with-param>
<xsl:with-param name="AmountBoxStyle">border-width:0px 0px 0px 1px;padding:0px 0px 0px 0px;</xsl:with-param>
<xsl:with-param name="NumberBoxStyle">border-width:0px 0px 0px 1px;padding:0px 0px 0px 0px;</xsl:with-param>
</xsl:call-template>
</div>
<div class="styIRS5329LNDesc" style="height:5mm;width:37mm;float:right;padding:0px 0px 0px 0px;">
<xsl:call-template name="CreateBox">
<xsl:with-param name="Height">100%</xsl:with-param>
<xsl:with-param name="AmountBoxStyle">border-width:0px 0px 0px 1px;padding:0px 0px 0px 0px;</xsl:with-param>
<xsl:with-param name="NumberBoxStyle">border-width:0px 0px 0px 1px;padding:0px 0px 0px 0px;background-color:lightgrey;</xsl:with-param>
</xsl:call-template>
</div>
<div class="styIRS5329LNDesc" style="height:auto;width:37mm;float:right;padding:0px 0px 0px 0px;">
<xsl:call-template name="CreateBox">
<xsl:with-param name="TargetNode" select="$Form5329Data/IRAExcessContriCreditAmt"/>
<xsl:with-param name="Number">10</xsl:with-param>
</xsl:call-template>
</div>
</div>
</div>
<!-- (11) ////////////////////////////////////////////////////-->
<div class="styIRS5329LineItem">
<div class="styIRS5329LNLeftNumBox">11</div>
<div class="styIRS5329LNDesc" style="width:105mm;height:100%;padding:0px 0px 0px 0px;">
<div class="styIRS5329LNDesc" style="width:auto;height:100%;">
2012 traditional IRA distributions included in income (see instructions)
<!--Dotted Line-->
<span class="styBoldText">
<span style="width:4px"/>.
</span>
</div>
</div>
<div class="styIRS5329LNDesc" style="height:100%;width:75mm;float:right;padding:0px 0px 0px 0px;">
<div class="styIRS5329LNDesc" style="height:5mm;width:37mm;float:right;padding:0px 0px 0px 0px;">
<xsl:call-template name="CreateBox">
<xsl:with-param name="Height">100%</xsl:with-param>
<xsl:with-param name="AmountBoxStyle">border-width:0px 0px 0px 1px;padding:0px 0px 0px 0px;</xsl:with-param>
<xsl:with-param name="NumberBoxStyle">border-width:0px 0px 0px 1px;padding:0px 0px 0px 0px;background-color:lightgrey;</xsl:with-param>
</xsl:call-template>
</div>
<div class="styIRS5329LNDesc" style="height:auto;width:37mm;float:right;padding:0px 0px 0px 0px;">
<xsl:call-template name="CreateBox">
<xsl:with-param name="TargetNode" select="$Form5329Data/IRADistriIncludedInIncomeAmt"/>
<xsl:with-param name="Number">11</xsl:with-param>
</xsl:call-template>
</div>
</div>
</div>
<!-- (12) ////////////////////////////////////////////////////-->
<div class="styIRS5329LineItem">
<div class="styIRS5329LNLeftNumBox">12</div>
<div class="styIRS5329LNDesc" style="width:105mm;height:100%;padding:0px 0px 0px 0px;">
<div class="styIRS5329LNDesc" style="width:auto;height:100%;">
2012 distributions of prior year excess contributions (see instructions)
<!--Dotted Line-->
<span class="styBoldText">
<span style="width:6px"/>.
</span>
</div>
</div>
<div class="styIRS5329LNDesc" style="height:100%;width:75mm;float:right;padding:0px 0px 0px 0px;">
<div class="styIRS5329LNDesc" style="height:5mm;width:37mm;float:right;padding:0px 0px 0px 0px;">
<xsl:call-template name="CreateBox">
<xsl:with-param name="Height">100%</xsl:with-param>
<xsl:with-param name="AmountBoxStyle">border-width:0px 0px 0px 1px;padding:0px 0px 0px 0px;</xsl:with-param>
<xsl:with-param name="NumberBoxStyle">border-width:0px 0px 0px 1px;padding:0px 0px 0px 0px;background-color:lightgrey;</xsl:with-param>
</xsl:call-template>
</div>
<div class="styIRS5329LNDesc" style="height:auto;width:37mm;float:right;padding:0px 0px 0px 0px;">
<xsl:call-template name="CreateBox">
<xsl:with-param name="TargetNode" select="$Form5329Data/IRAExcessContriWithdrawnAmt"/>
<xsl:with-param name="Number">12</xsl:with-param>
</xsl:call-template>
</div>
</div>
</div>
<!-- (13) ////////////////////////////////////////////////////-->
<div class="styIRS5329LineItem">
<div class="styIRS5329LNLeftNumBox">13</div>
<div class="styIRS5329LNDesc" style="padding-top:.75mm;padding-left:3mm;width:143mm;height:100%;">
Add lines 10, 11, and 12
<!--Dotted Line-->
<span class="styBoldText">
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
</span>
</div>
<xsl:call-template name="CreateBox">
<xsl:with-param name="TargetNode" select="$Form5329Data/IRAExcessContriAdjustmentAmt"/>
<xsl:with-param name="Number">13</xsl:with-param>
</xsl:call-template>
</div>
<!-- (14) ////////////////////////////////////////////////////-->
<div class="styIRS5329LineItem">
<div class="styIRS5329LNLeftNumBox">14</div>
<div class="styIRS5329LNDesc" style="padding-top:.75mm;padding-left:3mm;width:143mm;height:100%;">
Prior year excess contributions. Subtract line 13 from line 9. If zero or less, enter -0-
<!--Dotted Line-->
<span class="styBoldText">
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
</span>
</div>
<xsl:call-template name="CreateBox">
<xsl:with-param name="TargetNode" select="$Form5329Data/IRAExcessContriPrYrAdjustAmt"/>
<xsl:with-param name="Number">14</xsl:with-param>
</xsl:call-template>
</div>
<!-- (15) ////////////////////////////////////////////////////-->
<div class="styIRS5329LineItem">
<div class="styIRS5329LNLeftNumBox">15</div>
<div class="styIRS5329LNDesc" style="padding-top:.75mm;padding-left:3mm;width:143mm;height:100%;">
Excess contributions for 2012 (see instructions)
<!--Dotted Line-->
<span class="styBoldText">
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
</span>
</div>
<xsl:call-template name="CreateBox">
<xsl:with-param name="TargetNode" select="$Form5329Data/IRAExcessContriCurrentYearAmt"/>
<xsl:with-param name="Number">15</xsl:with-param>
</xsl:call-template>
</div>
<!-- (16) ////////////////////////////////////////////////////-->
<div class="styIRS5329LineItem">
<div class="styIRS5329LNLeftNumBox">16</div>
<div class="styIRS5329LNDesc" style="padding-top:.75mm;padding-left:3mm;width:143mm;height:100%;">
Total excess contributions. Add lines 14 and 15
<!--Dotted Line-->
<span class="styBoldText">
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
</span>
</div>
<xsl:call-template name="CreateBox">
<xsl:with-param name="TargetNode" select="$Form5329Data/IRAExcessContriTotalAmt"/>
<xsl:with-param name="Number">16</xsl:with-param>
</xsl:call-template>
</div>
<!-- (17) ////////////////////////////////////////////////////-->
<div class="styIRS5329LineItem">
<div class="styIRS5329LNLeftNumBox">17</div>
<div class="styIRS5329LNDesc" style="width:143mm;height:100%;padding:0px 0px 0px 0px;">
<div class="styIRS5329LNDesc" style="width:auto;height:100%;">
<b>Additional tax.</b> Enter 6% (.06) of the <b>smaller</b> of line 16 <b>or</b> the value of your traditional IRAs on December 31, 2012
(including 2012 contributions made in 2013). Include this amount on Form 1040, line 58, or Form 1040NR, line 56 .
</div>
</div>
<div class="styIRS5329LNDesc" style="height:100%;width:37mm;float:right;padding:0px 0px 0px 0px;">
<div class="styIRS5329LNDesc" style="height:6mm;width:37mm;float:right;padding:0px 0px 0px 0px;">
<xsl:call-template name="CreateBox">
<xsl:with-param name="Height">100%</xsl:with-param>
<xsl:with-param name="AmountBoxStyle">border-width:0px 0px 0px 1px;padding:0px 0px 0px 0px;</xsl:with-param>
<xsl:with-param name="NumberBoxStyle">border-width:0px 0px 0px 1px;padding:0px 0px 0px 0px;</xsl:with-param>
</xsl:call-template>
</div>
<div class="styIRS5329LNDesc" style="height:auto;width:37mm;float:right;padding:0px 0px 0px 0px;">
<xsl:call-template name="CreateBox">
<xsl:with-param name="TargetNode" select="$Form5329Data/IRAExcessContribTaxAmt"/>
<xsl:with-param name="Number">17</xsl:with-param>
<xsl:with-param name="AmountBoxStyle">border-bottom-width:0px;</xsl:with-param>
<xsl:with-param name="NumberBoxStyle">border-bottom-width:0px;</xsl:with-param>
</xsl:call-template>
</div>
</div>
</div>
</div>
<!-- >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> -->
<!-- Begin Part IV -->
<!-- <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< -->
<!-- Header -->
<div style="width:187mm;" class="styBB">
<!-- Content -->
<div class="styPartName" style="width:15mm;">Part IV</div>
<div class="styPartDesc" style="padding-left:3mm;">
Additional Tax on Excess Contributions to Roth IRAs<br/>
<span class="styNormalText" style="font-size:6.5pt;">
Complete this part if you contributed more to your Roth IRAs for 2012 than is allowable or you had an amount on line 25<br/>
of your 2011 Form 5329.
</span>
</div>
</div>
<!-- Body -->
<div class="styTBB" style="width:187mm;">
<!-- (18) ////////////////////////////////////////////////////-->
<div class="styIRS5329LineItem">
<div class="styIRS5329LNLeftNumBox">18</div>
<div class="styIRS5329LNDesc" style="width:143mm;height:100%;padding:0px 0px 0px 0px;">
<div class="styIRS5329LNDesc" style="width:auto;height:100%;">
Enter your excess contributions from line 24 of your 2011 Form 5329 (see instructions). If zero, go to <br/>line 23
<!--Dotted Line-->
<span class="styBoldText">
<span style="width:10px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.
<span style="width:11px"/>.