-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIRS2210F.xsl
759 lines (758 loc) · 42.4 KB
/
IRS2210F.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
<?xml version="1.0" encoding="UTF-8"?>
<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="IRS2210FStyle.xsl"/>
<xsl:output method="html" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:param name="Form2210FData" select="$RtnDoc/IRS2210F"/>
<xsl:template match="/">
<html lang="EN-US">
<head>
<title>
<xsl:call-template name="FormTitle">
<xsl:with-param name="RootElement" select="local-name($Form2210FData)"/>
</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 2210"/>
<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="IRS2210FStyle"/>
<xsl:call-template name="AddOnStyle"/>
</xsl:if>
</style>
<xsl:call-template name="GlobalStylesForm"/>
</head>
<body class="styBodyClass">
<form name="Form2210F">
<xsl:call-template name="DocumentHeader"/>
<div class="styBB" style="width:187mm;">
<div class="styFNBox" style="width:38mm;height:20mm;padding:bottom:0mm;">
Form<span style="width:1mm;"></span>
<span class="styFormNumber">2210-F</span>
<br/>
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$Form2210FData"/>
</xsl:call-template>
<div class="styAgency" style="padding-top:4mm;height:0mm;padding:bottom:0mm;">Department of the Treasury<br/>
Internal Revenue Service
</div>
</div>
<div class="styFTBox" style="width:110mm;height:20mm;">
<div class="styMainTitle" style="height:5mm;padding:bottom:0mm;">
Underpayment of Estimated Tax by<br/>Farmers and Fishermen
</div>
<div class="styFBT" stype="font-size:7pt;height:5mm;padding-top:1mm;">
<img src="{$ImagePath}/2210_Bullet.gif" alt="MediumBullet"/> Attach to Form 1040, Form 1040NR, or Form 1041.<br/>
<img src="{$ImagePath}/2210_Bullet.gif" alt="MediumBullet"/> See separate instructions.
</div>
</div>
<div class="styTYBox" style="width:38mm; height:20mm">
<div style="padding-top:0mm;border-bottom:1 solid black;font:6pt;">OMB No. 1545-0140</div>
<div>
<span class="styTaxYear" style="font-size:21pt;">20<span class="styTYColor">12</span></span>
</div>
<div class="stySequence">Attachment<br/>Sequence No. <b style="font-size:8pt">06A</b>
</div>
</div>
</div>
<!-- Name(s) shown on return -->
<div class="styBB" style="width:187mm;">
<div class="styFNBox" style="width:140mm; height:8mm">
Name(s) shown on tax return<br/>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$RtnHdrData/Filer/Name"/>
</xsl:call-template>
<br/>
<div style="line-height:100%; font-family:verdana;font-size:7pt"/>
</div>
<b> Identifying number</b><br/>
<span style="width:100%;text-align:center;">
<xsl:call-template name="PopulateSSN">
<xsl:with-param name="TargetNode" select="$RtnHdrData/Filer/PrimarySSN"/>
</xsl:call-template>
</span>
</div>
<!-- start instructions -->
<div style="width:187mm;border-bottom:1px solid black;padding bottom:1mm;">
<b>Generally, you do not need to file Form 2210-F.</b> The IRS will figure any penalty you owe and send you a bill. File Form2210-F <b>only</b> if one or both of the boxes in Part I apply to you. If you do not need to file Form 2210-F, you still can use it to figure your penalty. Enter the amount from line 16 on the penalty line of your return, but do not attach Form 2210-F.
</div>
<!-- Part I -->
<!-- Part I - Header -->
<div style="width:187mm;height:0mm;border-style:solid; border-bottom-width:1px;border-top-width:0px;
border-right-width:0px;border-left-width:0px;">
<span class="styPartName" style="height:1mm;width:15mm;font-size:13;">Part l</span>
<div class="styPartDesc" style="width:167mm;font-weight:normal;" >
<span style="width:3mm;font-size:10pt;height:0mm;vertical-align:top;"/>
<b>Reasons for Filing.</b> Check applicable boxes. If neither applies, <b>do not file Form 2210-F.</b>
</div>
</div>
<!-- End Part I Header -->
<!-- Part I body -->
<div style="width:187mm;height:0mm;border-style:solid; border-bottom-width:1px;border-top-width:0px;
border-right-width:0px;border-left-width:0px;">
<!-- Line A -->
<div style="width:187mm;padding-top:1mm;height:7mm;">
<div class="styLNLeftLtrBox" style="font-size:7pt;height:5mm;aligh-text:top;padding-top:0mm; padding-left: 2.25mm">A
</div>
<input type="checkbox" alt="alt" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form2210FData/PenaltyWaiverRequestInd"/>
<xsl:with-param name="BackupName">IRS2210FPenaltyWaiverRequestInd</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form2210FData/PenaltyWaiverRequestInd" />
</xsl:call-template>
You request a <b>waiver.</b> In certain circumstances, the IRS will waive all or part of the penalty. See Waiver of Penalty in the instructions.
</label>
</div>
<!-- Line B -->
<div style="width:187mm;padding-top:0mm;height:7mm;">
<div class="styLNLeftLtrBox" style="font-size:7pt;height:5mm;aligh-text:top; padding-top:0mm; padding-left: 2.25mm">B
</div>
<input type="checkbox" alt="alt" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form2210FData/JointReturnInd"/>
<xsl:with-param name="BackupName">IRS2210FJointReturnInd</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form2210FData/JointReturnInd"/>
<xsl:with-param name="BackupName">IRS2210FJointReturnInd</xsl:with-param>
</xsl:call-template>
You filed or are filing a joint return for either 2011 or 2012, but not for both years, and line 10 below is smaller than line 7 below.
</label>
</div>
</div>
<!-- Part lI -->
<!-- Part II - Header -->
<div style="width:187mm;height:0mm;border-style:solid; border-bottom-width:1px;border-top-width:0px;
border-right-width:0px;border-left-width:0px;float:left;padding-top:0mm;font-family:arial;">
<span class="styPartName" style="height:1mm;width:15mm;font-size:13;">Part II</span>
<span style="width:167mm;font-weight:normal;" class="styPartDesc">
<span style="width:3mm;font-size:10pt;height:0mm;vertical-align:top;"/>
<b>Figure Your Underpayment</b>
</span>
</div>
<!-- End Part II Header -->
<!-- Part II body -->
<div style="width:187mm;border-bottom:1px solid black;float:left;">
<!-- Line 1 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;padding-bottom:0mm;padding-left: 2.25mm">1
</div>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:4mm;padding-bottom:0mm;">
Enter your 2012 tax after credits from Form 1040, line 55; Form 1040NR, line 52; or Form 1041,
</div>
<div class="styLNRightNumBox" style="height:4mm; padding-bottom:0mm; border-bottom-width:0px;"/>
<div class="styLNAmountBox" style="width:36mm;height:4mm;padding-bottom:0mm;border-bottom-width:0px;"/>
</div>
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;padding-bottom:0mm;padding-left: 2.25mm"/>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:4mm;padding-bottom:0mm;">
<span style="float:left">
Schedule G, line 4
</span>
<span class="styIRS2210DotLn">............................</span>
</div>
<div class="styLNRightNumBox" style="height:4mm;padding-bottom:0mm; border-bottom-width:1px;">1</div>
<div class="styLNAmountBox" style="width:36mm;height:4mm;padding-bottom:0mm;border-bottom-width:1px;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form2210FData/CurrentYearTaxAfterCreditsAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Line 2 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;padding-bottom:0mm;padding-left: 2.25mm">2
</div>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:4mm;padding-bottom:0mm;">
<span style="float:left">Other taxes, including self-employment tax (see instructions)</span>
<span class="styIRS2210DotLn">..............</span>
</div>
<div class="styLNRightNumBox" style="height:4mm;padding-bottom:0mm;bottom-border-width:1px;">2</div>
<div class="styLNAmountBox" style="width:36mm;height:4mm;padding-bottom:0mm;bottom-border-width:1px;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form2210FData/OtherTaxesAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Line 3 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;padding-bottom:0mm;padding-left: 2.25mm">3
</div>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:4mm;padding-bottom:0mm;">
<span style="float:left">Add lines 1 and 2. If less than $1,000, you do not owe a penalty; <b>do not file Form 2210-F</b></span>
<span class="styIRS2210DotLn">.....</span>
</div>
<div class="styLNRightNumBox" style="height:4mm;padding-bottom:0mm;bottom-border-width:1px;">3</div>
<div class="styLNAmountBox" style="width:36mm;height:4mm;padding-bottom:0mm;bottom-border-width:1px;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form2210FData/TotalTaxAfterCrAndOtherTaxAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Line 4 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:3mm;padding-bottom:0mm;padding-left: 2.25mm">4
</div>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:3mm;padding-bottom:0mm;">
Refundable credits you claimed on your tax return.
</div>
<div class="styLNRightNumBox" style="height:3mm;background-color: lightgrey; padding-bottom:0mm; border-bottom-width:0px;"/>
<div class="styLNAmountBox" style="width:36mm;height:3mm;padding-bottom:0mm;border-bottom-width:0px;"/>
</div>
<!-- Line4a -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;padding-left:4mm;">a
</div>
<div class="styLNDesc" style="font-size:7pt;width:91.1mm;height:4mm;">
<span style="float:left">Earned income credit (EIC)</span>
<!--Dotted Line-->
<span class="styIRS2210DotLn">..............</span>
</div>
<div class="styLNRightNumBox" style="font-size:7pt;height:4mm;">4a
</div>
<div class="styLNAmountBox" style="width:35.91mm;height:4mm;border-bottom-width:1px;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form2210FData/EarnedIncomeCreditAmt"/>
</xsl:call-template>
</div>
<div class="styLNRightNumBox" style="font-size:7pt;background-color:lightgrey;border-bottom:none;height:4.5mm;"/>
<div style="float:left;clear;none;border-left:1px solid black;width:35.9mm;height:4.5mm;"/>
</div>
<!-- Line4b -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;padding-left:4mm;">b
</div>
<div class="styLNDesc" style="font-size:7pt;width:91.1mm;height:4mm;">
<span style="float:left">Additional child tax credit</span>
<!--Dotted Line-->
<span class="styIRS2210DotLn">...............</span>
</div>
<div class="styLNRightNumBox" style="font-size:7pt;height:4mm;">4b
</div>
<div class="styLNAmountBox" style="width:35.91mm;height:4mm;border-bottom-width:1px;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form2210FData/AdditionalChildTaxCreditAmt"/>
</xsl:call-template>
</div>
<div class="styLNRightNumBox" style="font-size:7pt;background-color:lightgrey;border-bottom:none;height:4.5mm;"/>
<div style="float:left;clear;none;border-left:1px solid black;width:35.9mm;height:4.5mm;"/>
</div>
<!-- Line4c -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;padding-left:4mm;">c
</div>
<div class="styLNDesc" style="font-size:7pt;width:91.1mm;height:4mm;">
<span style="float:left">American opportunity credit (Form 8863, line 8)</span>
<!--Dotted Line-->
<span class="styIRS2210DotLn">.......</span>
</div>
<div class="styLNRightNumBox" style="font-size:7pt;height:4mm;">4c
</div>
<div class="styLNAmountBox" style="width:35.91mm;height:4mm;border-bottom-width:1px;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form2210FData/RefundableAmerOppCreditAmt"/>
</xsl:call-template>
</div>
<div class="styLNRightNumBox" style="font-size:7pt;background-color:lightgrey;border-bottom:none;height:4.5mm;"/>
<div style="float:left;clear;none;border-left:1px solid black;width:35.9mm;height:4.5mm;"/>
</div>
<!-- Line4d -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;padding-left:4mm;">d
</div>
<div class="styLNDesc" style="font-size:7pt;width:91.1mm;height:4mm;">
<span style="float:left">First-time homebuyer credit (Form 5405, line 10)</span>
<!--Dotted Line-->
<span class="styIRS2210DotLn">.......</span>
</div>
<div class="styLNRightNumBox" style="font-size:7pt;height:4mm;">4d
</div>
<div class="styLNAmountBox" style="width:35.91mm;height:4mm;border-bottom-width:1px;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form2210FData/FirstTimeHmByrCreditAmt"/>
</xsl:call-template>
</div>
<div class="styLNRightNumBox" style="font-size:7pt;background-color:lightgrey;border-bottom:none;height:4.5mm;"/>
<div style="float:left;clear;none;border-left:1px solid black;width:35.9mm;height:4.5mm;"/>
</div>
<!-- Line4e-->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;padding-left:4mm;">e
</div>
<div class="styLNDesc" style="font-size:7pt;width:91.1mm;height:4mm;">
<span style="float:left">Credit for federal tax paid on fuels</span>
<!--Dotted Line-->
<span class="styIRS2210DotLn">............</span>
</div>
<div class="styLNRightNumBox" style="font-size:7pt;height:4mm;">4e
</div>
<div class="styLNAmountBox" style="width:35.91mm;height:4mm;border-bottom-width:1px;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form2210FData/FuelTaxCreditAmt"/>
</xsl:call-template>
</div>
<div class="styLNRightNumBox" style="font-size:7pt;background-color:lightgrey;border-bottom:none;height:4.5mm;"/>
<div style="float:left;clear;none;border-left:1px solid black;width:35.9mm;height:4.5mm;"/>
</div>
<!-- Line4f -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;padding-left:4mm;">f
</div>
<div class="styLNDesc" style="font-size:7pt;width:91.1mm;height:4mm;">
<span style="float:left">Adoption credit</span>
<!--Dotted Line-->
<span class="styIRS2210DotLn">..................</span>
</div>
<div class="styLNRightNumBox" style="font-size:7pt;height:4mm;">4f
</div>
<div class="styLNAmountBox" style="width:35.91mm;height:4mm;border-bottom-width:1px;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form2210FData/AdoptionCreditAmt"/>
</xsl:call-template>
</div>
<div class="styLNRightNumBox" style="font-size:7pt;background-color:lightgrey;border-bottom:none;height:4.5mm;"/>
<div style="float:left;clear;none;border-left:1px solid black;width:35.9mm;height:4.5mm;"/>
</div>
<!-- Line4g -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;padding-left:4mm;">g
</div>
<div class="styLNDesc" style="font-size:7pt;width:91.1mm;height:4mm;">
<span style="float:left">Refundable credit for prior year minimum tax (Form 8801, line 27)</span>
<!--Dotted Line-->
<span class="styIRS2210DotLn">.</span>
</div>
<div class="styLNRightNumBox" style="font-size:7pt;height:4mm;">4g
</div>
<div class="styLNAmountBox" style="width:35.91mm;height:4mm;border-bottom-width:1px;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form2210FData/RefundableCrForPriorYearAmt"/>
</xsl:call-template>
</div>
<div class="styLNRightNumBox" style="font-size:7pt;background-color:lightgrey;border-bottom:none;height:4.5mm;"/>
<div style="float:left;clear;none;border-left:1px solid black;width:35.9mm;height:4.5mm;"/>
</div>
<!-- Line4h -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;padding-left:4mm;">h
</div>
<div class="styLNDesc" style="font-size:7pt;width:91.1mm;height:4mm;">
<span style="float:left">Health coverage tax credit</span>
<!--Dotted Line-->
<span class="styIRS2210DotLn">..............</span>
</div>
<div class="styLNRightNumBox" style="font-size:7pt;height:4mm;">4h
</div>
<div class="styLNAmountBox" style="width:35.91mm;height:4mm;border-bottom-width:1px;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form2210FData/HealthCoverageTaxCreditAmt"/>
</xsl:call-template>
</div>
<div class="styLNRightNumBox" style="font-size:7pt;background-color:lightgrey;border-bottom:none;height:4.5mm;"/>
<div style="float:left;clear;none;border-left:1px solid black;width:35.9mm;height:4.5mm;"/>
</div>
<!-- Line4i -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;padding-left:4mm;">i
</div>
<div class="styLNDesc" style="font-size:7pt;width:91.1mm;height:4mm;">
<span style="float:left">Credit determined under section 1341(a)(5)(B) (see instructions)</span>
<!--Dotted Line-->
<span class="styIRS2210DotLn">.</span>
</div>
<div class="styLNRightNumBox" style="font-size:7pt;height:4mm;">4i
</div>
<div class="styLNAmountBox" style="width:35.91mm;height:4mm;border-bottom-width:1px;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form2210FData/Section1341a5BCreditAmt"/>
</xsl:call-template>
</div>
<div class="styLNRightNumBox" style="font-size:7pt;background-color:lightgrey;border-bottom:none;height:4.5mm;"/>
<div style="float:left;clear;none;border-left:1px solid black;width:35.9mm;height:4.5mm;"/>
</div>
<!-- Line 5 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;padding-bottom:0mm;padding-left: 2.25mm">5
</div>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:4mm;padding-bottom:0mm;">
<span style="float:left">Add lines 4a through 4i</span>
<span class="styIRS2210DotLn">..........................</span>
</div>
<div class="styLNRightNumBox" style="height:4mm;padding-bottom:0mm;bottom-border-width:1px;">5</div>
<div class="styLNAmountBox" style="width:36mm;height:4mm;padding-bottom:0mm;bottom-border-width:1px;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form2210FData/FarmOrFishermanCrSubtotalAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Line 6 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;padding-bottom:0mm;padding-left: 2.25mm">6
</div>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:4mm;padding-bottom:0mm;">
Current year tax. Subtract line 5 from line 3. If less than $1,000, you do not owe a penalty; <b>do</b>
</div>
<div class="styLNRightNumBox" style="height:4mm; padding-bottom:0mm; border-bottom-width:0px;"/>
<div class="styLNAmountBox" style="width:36mm;height:4mm;padding-bottom:0mm;border-bottom-width:0px;"/>
</div>
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;padding-bottom:0mm;padding-left: 2.25mm"/>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:4mm;padding-bottom:0mm;">
<span style="float:left">
<b>not file Form 2210-F</b>
</span>
<span class="styIRS2210DotLn">..........................</span>
</div>
<div class="styLNRightNumBox" style="height:4mm;padding-bottom:0mm; border-bottom-width:1px;">6</div>
<div class="styLNAmountBox" style="width:36mm;height:4mm;padding-bottom:0mm;border-bottom-width:1px;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form2210FData/CurrentYearTaxAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Line7 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;padding-left:2.5mm;">7
</div>
<div class="styLNDesc" style="font-size:7pt;width:91.1mm;height:4mm;">
<span style="float:left">Multiply line 6 by 66 2/3% (.667)</span>
<!--Dotted Line-->
<span class="styIRS2210DotLn">............</span>
</div>
<div class="styLNRightNumBox" style="font-size:7pt;height:4mm;">7
</div>
<div class="styLNAmountBox" style="width:35.91mm;height:4mm;border-bottom-width:1px;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form2210FData/CurrentYearTaxCalculatedAmt"/>
</xsl:call-template>
</div>
<div class="styLNRightNumBox" style="font-size:7pt;background-color:lightgrey;border-bottom:none;height:4.5mm;"/>
<div style="float:left;clear;none;border-left:1px solid black;width:35.9mm;height:4.5mm;"/>
</div>
<!-- Line 8 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;padding-bottom:0mm;padding-left: 2.25mm">8
</div>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:4mm;padding-bottom:0mm;">
<span style="float:left">Withholding taxes. <b>Do not</b> include any estimated tax payments on this line (see instructions)</span>
<span class="styIRS2210DotLn">....</span>
</div>
<div class="styLNRightNumBox" style="height:4mm;padding-bottom:0mm;bottom-border-width:1px;">8</div>
<div class="styLNAmountBox" style="width:36mm;height:4mm;padding-bottom:0mm;bottom-border-width:1px;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form2210FData/WithholdingTaxesAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Line 9 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;padding-bottom:0mm;padding-left: 2.25mm">9
</div>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:4mm;padding-bottom:0mm;">
<span style="float:left">Subtract line 8 from line 6. If less than $1,000, you do not owe a penalty; <b>do not file Form 2210-F</b></span>
<span class="styIRS2210DotLn">..</span>
</div>
<div class="styLNRightNumBox" style="height:4mm;padding-bottom:0mm;bottom-border-width:1px;">9</div>
<div class="styLNAmountBox" style="width:36mm;height:4mm;padding-bottom:0mm;bottom-border-width:1px;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form2210FData/NetTaxDueAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Line 10 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;padding-bottom:0mm;padding-left: 2.25mm">10
</div>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:4mm;padding-bottom:0mm;">
Enter the tax shown on your 2011 tax return (see instructions if your 2012 filing status changed to
</div>
<div class="styLNRightNumBox" style="height:4mm; padding-bottom:0mm; border-bottom-width:0px;"/>
<div class="styLNAmountBox" style="width:36mm;height:4mm;padding-bottom:0mm;border-bottom-width:0px;"/>
</div>
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;padding-bottom:0mm;padding-left: 2.25mm"/>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:4mm;padding-bottom:0mm;">
<span style="float:left">
or from married filing jointly)
</span>
<span class="styIRS2210DotLn">........................</span>
</div>
<div class="styLNRightNumBox" style="height:4mm;padding-bottom:0mm; border-bottom-width:1px;">10</div>
<div class="styLNAmountBox" style="width:36mm;height:4mm;padding-bottom:0mm;border-bottom-width:1px;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form2210FData/PriorYearTaxAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Line 11 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;padding-bottom:0mm;padding-left: 2.25mm">11
</div>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:4mm;padding-bottom:0mm;">
<span style="float:left"><b>Required annual payment.</b> Enter the <b>smaller</b> of line 7 or line 10</span>
<span class="styIRS2210DotLn">.............</span>
</div>
<div class="styLNRightNumBox" style="height:4mm;padding-bottom:0mm;bottom-border-width:1px;">11</div>
<div class="styLNAmountBox" style="width:36mm;height:4mm;padding-bottom:0mm;bottom-border-width:1px;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form2210FData/RequiredAnnualPaymentAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Note -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:3mm;padding-bottom:0mm;padding-left: 2.25mm">
</div>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:3mm;padding-bottom:0mm;">
<b>Note:</b> If line 8 is equal to or more than line 11, stop here; you do not owe the penalty. <b>Do not file</b>
</div>
<div class="styLNRightNumBox" style="height:3mm;background-color: lightgrey; padding-bottom:0mm; border-bottom-width:0px;"/>
<div class="styLNAmountBox" style="width:36mm;height:3mm;padding-bottom:0mm;border-bottom-width:0px;"/>
</div>
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:3mm;padding-bottom:0mm;padding-left: 2.25mm">
</div>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:3mm;padding-bottom:0mm;">
<b>Form 2210-F</b> unless you checked box <b>B</b> above.
</div>
<div class="styLNRightNumBox" style="height:3mm;background-color: lightgrey; padding-bottom:0mm; border-bottom-width:0px;"/>
<div class="styLNAmountBox" style="width:36mm;height:3mm;padding-bottom:0mm;border-bottom-width:0px;"/>
</div>
<!-- Line 12 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:3mm;padding-bottom:0mm;padding-left: 2.25mm">12
</div>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:3mm;padding-bottom:0mm;">
Enter the estimated tax payments you made by January 15, 2013, and any federal income tax
</div>
<div class="styLNRightNumBox" style="height:3mm;background-color: lightgrey; padding-bottom:0mm; border-bottom-width:0px;"/>
<div class="styLNAmountBox" style="width:36mm;height:3mm;padding-bottom:0mm;border-bottom-width:0px;"/>
</div>
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;padding-bottom:0mm;padding-left: 2.25mm"/>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:4mm;padding-bottom:0mm;">
<span style="float:left">
and excess social security or tier 1 railroad retirement tax withheld during 2012
</span>
<span class="styIRS2210DotLn">........</span>
</div>
<div class="styLNRightNumBox" style="height:4mm;padding-bottom:0mm; border-bottom-width:1px;">12</div>
<div class="styLNAmountBox" style="width:36mm;height:4mm;padding-bottom:0mm;border-bottom-width:1px;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form2210FData/EstTaxPaymentsAndOtherTaxesAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Line 13 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;padding-bottom:0mm;padding-left: 2.25mm">13
</div>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:4mm;padding-bottom:0mm;">
<b>Underpayment.</b> Subtract line 12 from line 11. If the result is zero or less, stop here; you do not
</div>
<div class="styLNRightNumBox" style="height:4mm; padding-bottom:0mm; border-bottom-width:0px;"/>
<div class="styLNAmountBox" style="width:36mm;height:4mm;padding-bottom:0mm;border-bottom-width:0px;"/>
</div>
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;padding-bottom:0mm;padding-left: 2.25mm"/>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:4mm;padding-bottom:0mm;">
<span style="float:left">
owe the penalty. <b>Do not file Form 2210-F</b> unless you checked box <b>B</b> above
</span>
<span class="styIRS2210DotLn">..........</span>
</div>
<div class="styLNRightNumBox" style="height:4mm;padding-bottom:0mm; border-bottom:none">13</div>
<div class="styLNAmountBox" style="width:36mm;height:4mm;padding-bottom:0mm;border-bottom:none;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form2210FData/UnderpaymentAmt"/>
</xsl:call-template>
</div>
</div>
</div>
<!-- Part lll -->
<!-- Part Ill - Header -->
<div style="width:187mm;height:4mm;border-style:solid; border-bottom-width:1px;border-top-width:0px;
border-right-width:0px;border-left-width:0px;float:left;">
<span class="styPartName" style="height:4mm;width:18mm;font-size:13;">Part lll</span>
<span style="width:167mm;font-weight:normal;" class="styPartDesc">
<span style="width:3mm;font-size:10pt;height:4mm;vertical-align:center;"/>
<b>Figure the Penalty</b>
</span>
</div>
<!-- END Part lll Header-->
<div class="styBB" style="width:187mm;border-bottom:1px solid black;">
<!-- Spacer Row -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:5mm;padding-left: 2.25mm"/>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:5mm;"/>
<div class="styLNRightNumBox" style="height:5mm;border-bottom:none;"></div>
<div class="styLNAmountBox" style="width:36mm;height:5mm;border-bottom:none;"/>
</div>
<!-- Line 14 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:5mm;padding-bottom:0mm;padding-left: 2.25mm">14
</div>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:4mm;padding-bottom:0mm;">
<span style="float:left">Enter the date the amount on line 13 was paid or April 15, 2013, whichever is earlier</span>
<span class="styIRS2210DotLn">......</span>
</div>
<div class="styLNRightNumBox" style="height:5mm;padding-bottom:0mm;bottom-border-width:1px;">14</div>
<div class="styLNAmountBox" style="width:36mm;height:5mm;padding-bottom:0mm;bottom-border-width:1px;">
<xsl:call-template name="PopulateMonth">
<xsl:with-param name="TargetNode" select="$Form2210FData/EarlierOfPaymentOrTaxDueDt"/>
</xsl:call-template>-<xsl:call-template name="PopulateDay">
<xsl:with-param name="TargetNode" select="$Form2210FData/EarlierOfPaymentOrTaxDueDt"/>
</xsl:call-template>-<xsl:call-template name="PopulateYear">
<xsl:with-param name="TargetNode" select="$Form2210FData/EarlierOfPaymentOrTaxDueDt"/>
</xsl:call-template>
</div>
</div>
<!-- Spacer Row -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:5mm;padding-left: 2.25mm"/>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:5mm;"/>
<div class="styLNRightNumBox" style="height:5mm;border-bottom:none;"></div>
<div class="styLNAmountBox" style="width:36mm;height:5mm;border-bottom:none;"/>
</div>
<!-- Line 15 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:5mm;padding-bottom:0mm;padding-left: 2.25mm">15
</div>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:4mm;padding-bottom:0mm;">
<span style="float:left">Number of days <b>from</b> January 15, 2013, <b>to</b> the date on line 14</span>
<span class="styIRS2210DotLn">.............</span>
</div>
<div class="styLNRightNumBox" style="height:5mm;padding-bottom:0mm;bottom-border-width:1px;">15</div>
<div class="styLNAmountBox" style="width:36mm;height:5mm;padding-bottom:0mm;bottom-border-width:1px;">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form2210FData/PenaltyDayCnt"/>
</xsl:call-template>
</div>
</div>
<!-- Spacer Row -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:5mm;padding-left: 2.25mm"/>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:5mm;"/>
<div class="styLNRightNumBox" style="height:5mm;border-bottom:none;"></div>
<div class="styLNAmountBox" style="width:36mm;height:5mm;border-bottom:none;"/>
</div>
<!-- Line 16 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:5mm;padding-bottom:0mm;padding-left: 2.25mm">16
</div>
<div class="styLNDesc" style="font-size:7pt;width:135mm;padding-bottom:0mm;">
<b style="float:left;">Penalty.</b>
<div style="height:4mm;text-align:center;vertical-align:super;float:left;margin:0mm 5mm;">
Underpayment<br/>
on line 13
</div>
<div style="float:left;">x</div>
<div style="height:4mm;text-align:center;vertical-align:super;float:left;margin:0mm 5mm;">
<span style="text-decoration:underline;">Number of days on line 15</span><br/>
365
</div>
<div style="height:4mm;float:left;">x </div>
<div style="height:4mm;float:left;margin-left:5mm">.XX</div>
<div style="height:4mm;float:left;margin-left:1mm">
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$Form2210FData/PenaltyAmt"/>
</xsl:call-template>
<xsl:call-template name="LinkToLeftoverDataTableInline">
<xsl:with-param name="Desc">Penalty Waiver Amount</xsl:with-param>
<xsl:with-param name="TargetNode" select="$Form2210FData/PenaltyAmt/@requestedPenaltyWaiverAmt"/>
</xsl:call-template>
</div>
<div class="styIRS2210DotLn" style="margin-left:2mm;">......</div>
<div style="padding-left:1.2mm;float:right">
<img src="{$ImagePath}/2210_Bullet.gif" alt="MediumBullet"></img>
</div>
</div>
<div class="styLNRightNumBox" style="height:8mm;padding-bottom:0mm;bottom-border-width:1px;">16</div>
<div class="styLNAmountBox" style="width:36mm;height:8mm;padding-bottom:0mm;bottom-border-width:1px;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form2210FData/PenaltyAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Spacer Row -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:5mm;padding-left: 2.25mm"/>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:5mm;"/>
<div class="styLNRightNumBox" style="height:5mm;border-bottom:none;background-color:lightgrey;"></div>
<div class="styLNAmountBox" style="width:36mm;height:5mm;border-bottom:none;border-left:none;background-color:lightgrey;"/>
</div>
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:5mm;padding-left: 2.25mm"/>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:5mm;"><li>Form 1040 filers, enter the amount from line 16 on Form 1040, line 77.</li></div>
<div class="styLNRightNumBox" style="height:5mm;border-bottom:none;background-color:lightgrey;"></div>
<div class="styLNAmountBox" style="width:36mm;height:5mm;border-bottom:none;border-left:none;background-color:lightgrey;"/>
</div>
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:5mm;padding-left: 2.25mm"/>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:5mm;"><li>Form 1040NR filers, enter the amount from line 16 on Form 1040NR, line 74.</li></div>
<div class="styLNRightNumBox" style="height:5mm;border-bottom:none;background-color:lightgrey;"></div>
<div class="styLNAmountBox" style="width:36mm;height:5mm;border-bottom:none;border-left:none;background-color:lightgrey;"/>
</div>
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:5mm;padding-left: 2.25mm"/>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:5mm;"><li>Form 1041 filers, enter the amount from line 16 on Form 1041, line 26.</li></div>
<div class="styLNRightNumBox" style="height:5mm;border-bottom:none;background-color:lightgrey;"></div>
<div class="styLNAmountBox" style="width:36mm;height:5mm;border-bottom:none;border-left:none;background-color:lightgrey;"/>
</div>
</div>
<!-- Page Break and Footer-->
<div class="pageEnd" style="width:187mm;padding-top:0mm;">
<div style="float:left;">
<span class="styBoldText">For Paperwork Reduction Act Notice, see instructions.</span>
</div>
<div style="float:right;">
Cat. No. 11745A
<span style="width:25mm;"/>
Form <span class="styBoldText" style="font-size:8pt;">2210-F</span> (2012)
</div>
</div>
<!-- END Page Break and Footer-->
<!-- Additonal Data Title Bar and Button -->
<div class="styLeftOverTitleLine" id="LeftoverData">
<div class="styLeftOverTitle">
Additional Data
</div>
<div class="styLeftOverButtonContainer">
<input class="styLeftoverTableBtn" type="button" TabIndex="-1" value="Return to Form" onclick="javascript:returnToWriteInImage();"/>
</div>
</div>
<table class="styLeftOverTbl">
<xsl:call-template name="PopulateCommonLeftover">
<xsl:with-param name="TargetNode" select="$Form2210FData"/>
<xsl:with-param name="DescWidth" select="100"/>
</xsl:call-template>
<xsl:call-template name="PopulateLeftoverRowAmount">
<xsl:with-param name="TargetNode" select="$Form2210FData/PenaltyAmt/@requestedPenaltyWaiverAmt"/>
<xsl:with-param name="Desc">Line 16 - Penalty Waiver Amount</xsl:with-param>
<xsl:with-param name="DescWidth" select="100"/>
</xsl:call-template>
</table>
<!-- Additional Data Table -->
</form>
</body>
</html>
</xsl:template>
</xsl:stylesheet>