-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIRS6251.xsl
1338 lines (1326 loc) · 85.6 KB
/
IRS6251.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 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="IRS6251Style.xsl"/>
<xsl:output method="html" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:param name="FormData" select="$RtnDoc/IRS6251"/>
<xsl:template match="/">
<html lang="EN-US">
<head>
<title>
<xsl:call-template name="FormTitle">
<xsl:with-param name="RootElement" select="local-name($FormData)"/>
</xsl:call-template>
</title>
<!-- No Browser Caching -->
<meta http-equiv="Pragma" content="no-cache"/>
<meta http-equiv="Cache-Control" content="no-cache"/>
<meta http-equiv="Expires" content="0"/>
<!-- No Proxy Caching -->
<meta http-equiv="Cache-Control" content="private"/>
<!-- Define Character Set -->
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
<meta name="Description" content="IRS Form 6251"/>
<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="IRS6251Style"/>
<xsl:call-template name="AddOnStyle"/>
</xsl:if>
</style>
<xsl:call-template name="GlobalStylesForm"/>
</head>
<body class="styBodyClass">
<form name="Form6251">
<xsl:call-template name="DocumentHeader"/>
<div class="styBB" style="width:187mm;">
<div class="styFNBox" style="width:30mm;height:20mm;padding:bottom:0mm;">
Form<span style="width:1mm;"></span>
<span class="styFormNumber">6251</span>
<br/>
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$FormData"/>
</xsl:call-template><br/>
<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:121mm;height:20mm;">
<div class="styMainTitle" style="height:5mm;padding:bottom:0mm;">
Alternative Minimum Tax—Individuals
</div>
<div class="styFBT" style="font-size:7pt;height:5mm;padding-top:1mm;">
<img src="{$ImagePath}/2210_Bullet.gif" alt="MediumBullet"/> Information about Form 6251 and its instructions is at <i>www.irs.gov/form6251</i>.<br/><br/>
<img src="{$ImagePath}/2210_Bullet.gif" alt="MediumBullet"/> Attach to Form 1040 or Form 1040NR.
</div>
</div>
<div class="styTYBox" style="width:35mm; height:20mm">
<div style="padding-top:0mm;border-bottom:1 solid black;font:6pt;">OMB No. 1545-0074</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">32</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 Form 1040 or Form 1040NR<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> Your social security number</b><br/>
<xsl:call-template name="PopulateSSN">
<xsl:with-param name="TargetNode" select="$RtnHdrData/Filer/PrimarySSN"/>
</xsl:call-template>
</div>
<!-- Part l -->
<!-- Part I - Header -->
<div style="width:187mm;height:0mm;border-bottom:1px solid black;float:left;padding-top:0mm;font-family:arial;">
<span class="styPartName" style="height:4mm;width:15mm;font-size:13;">Part I</span>
<span style="width:167mm;font-weight:normal;" class="styPartDesc">
<span style="width:3mm;font-size:10pt;height:0mm;vertical-align:top;"/>
<b>Alternative Minimum Taxable Income</b> (See instructions for how to complete each line.)
</span>
</div>
<!-- End Part I Header -->
<!-- Part I 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;">
If filing Schedule A (Form 1040), enter the amount from Form 1040, line 41, and go to line 2.
</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>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:4mm;padding-bottom:0mm;">
Otherwise, enter the amount from Form 1040, line 38, and go to line 7. (If less than zero, enter as a
</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">
negative amount.)
</span>
<span class="styIRS6251DotLn">...........................</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="$FormData/AGIOrAGILessDeductionAmt"/>
</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;">
Medical and dental. Enter the <b>smaller</b> of Schedule A (Form 1040), line 4, <b>or</b> 2.5% (.025) of Form
</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">
1040, line 38. If zero or less, enter -0-
</span>
<span class="styIRS6251DotLn">.....................</span>
</div>
<div class="styLNRightNumBox" style="height:4mm;padding-bottom:0mm; border-bottom-width:1px;">2</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="$FormData/SmllrOfSchAMedDedOrCalAGIAmt"/>
</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">Taxes from Schedule A (Form 1040), line 9</span>
<span class="styIRS6251DotLn">................</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="$FormData/ScheduleATaxesAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Line 4 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;padding-bottom:0mm;padding-left: 2.25mm">4
</div>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:4mm;padding-bottom:0mm;">
Enter the home mortgage interest adjustment, if any, from line 6 of the worksheet in the instructions
</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>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:4mm;padding-bottom:0mm;">
<span style="float:left">for this line</span>
<span class="styIRS6251DotLn">.............................</span>
</div>
<div class="styLNRightNumBox" style="height:4mm;padding-bottom:0mm;bottom-border-width:1px;">4</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="$FormData/CertainHomeMortgageInterestAmt"/>
</xsl:call-template>
</div>
</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">Miscellaneous deductions from Schedule A (Form 1040), line 27</span>
<span class="styIRS6251DotLn">............</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="$FormData/SchANetMiscellaneousDedsAmt"/>
</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;">
<span style="float:left">Skip this line. It is reserved for future use</span>
<span class="styIRS6251DotLn" style="float:right;padding-right:2mm;">....................</span>
</div>
<div class="styLNRightNumBox" style="height:4mm;padding-bottom:0mm;bottom-border-width:1px;">6</div>
<div class="styLNAmountBox" style="width:36mm;height:4mm;padding-bottom:0mm;bottom-border-width:1px;background-color:lightgrey">
<!-- RESERVED -->
</div>
</div>
<!-- Line 7 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4.5mm;padding-bottom:0mm;padding-left: 2.25mm">7
</div>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:4.5mm;padding-bottom:0mm;">
<span style="float:left">Tax refund from Form 1040, line 10 or line 21</span>
<span class="styIRS6251DotLn">...................</span>
</div>
<div class="styLNRightNumBox" style="height:4.5mm;padding-bottom:0mm;bottom-border-width:1px;">7</div>
<div class="styLNAmountBox" style="width:36mm;height:4.5mm;padding-bottom:0mm;bottom-border-width:1px;">
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$FormData/TotalRefundReceivedAmt"/>
</xsl:call-template>
<xsl:call-template name="PopulateNegativeNumber">
<xsl:with-param name="TargetNode" select="$FormData/TotalRefundReceivedAmt"/>
</xsl:call-template>
</div>
</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">Investment interest expense (difference between regular tax and AMT)</span>
<span class="styIRS6251DotLn">..........</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="$FormData/InvestmentInterestAmt"/>
</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">Depletion (difference between regular tax and AMT)</span>
<span class="styIRS6251DotLn">.............</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="$FormData/DepletionAmt"/>
</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;">
<span style="float:left">Net operating loss deduction from Form 1040, line 21. Enter as a positive amount</span>
<span class="styIRS6251DotLn">.......</span>
</div>
<div class="styLNRightNumBox" style="height:4mm;padding-bottom:0mm;bottom-border-width:1px;">10</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="$FormData/NetOperatingLossDeductionAmt"/>
</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">Alternative tax net operating loss deduction</span>
<span class="styIRS6251DotLn">...................</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="PopulateNegativeNumber">
<xsl:with-param name="TargetNode" select="$FormData/AltTaxNetOperatingLossDedAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Line 12 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;padding-bottom:0mm;padding-left: 2.25mm">12
</div>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:4mm;padding-bottom:0mm;">
<span style="float:left">Interest from specified private activity bonds exempt from the regular tax</span>
<span class="styIRS6251DotLn">.........</span>
</div>
<div class="styLNRightNumBox" style="height:4mm;padding-bottom:0mm;bottom-border-width:1px;">12</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="$FormData/ExemptPrivateActivityBondsAmt"/>
</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;">
<span style="float:left">Qualified small business stock (7% of gain excluded under section 1202)</span>
<span class="styIRS6251DotLn">.........</span>
</div>
<div class="styLNRightNumBox" style="height:4mm;padding-bottom:0mm;bottom-border-width:1px;">13</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="$FormData/Section1202ExclusionAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Line 14 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;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">Exercise of incentive stock options (excess of AMT income over regular tax income)</span>
<span class="styIRS6251DotLn">......</span>
</div>
<div class="styLNRightNumBox" style="height:4mm;padding-bottom:0mm;bottom-border-width:1px;">14</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="$FormData/IncentiveStockOptionsAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Line 15 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;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">Estates and trusts (amount from Schedule K-1 (Form 1041), box 12, code A)</span>
<span class="styIRS6251DotLn">........</span>
</div>
<div class="styLNRightNumBox" style="height:4mm;padding-bottom:0mm;bottom-border-width:1px;">15</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="$FormData/EstatesAndTrustsAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Line 16 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;padding-bottom:0mm;padding-left: 2.25mm">16
</div>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:4mm;padding-bottom:0mm;">
<span style="float:left">Electing large partnerships (amount from Schedule K-1 (Form 1065-B), box 6)</span>
<span class="styIRS6251DotLn">.......</span>
</div>
<div class="styLNRightNumBox" style="height:4mm;padding-bottom:0mm;bottom-border-width:1px;">16</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="$FormData/LargePartnershipAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Line 17 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;padding-bottom:0mm;padding-left: 2.25mm">17
</div>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:4mm;padding-bottom:0mm;">
<span style="float:left">Disposition of property (difference between AMT and regular tax gain or loss)</span>
<span class="styIRS6251DotLn">........</span>
</div>
<div class="styLNRightNumBox" style="height:4mm;padding-bottom:0mm;bottom-border-width:1px;">17</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="$FormData/PropertyDispositionAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Line 18 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;padding-bottom:0mm;padding-left: 2.25mm">18
</div>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:4mm;padding-bottom:0mm;">
<span style="float:left">Depreciation on assets placed in service after 1986 (difference between regular tax and AMT)</span>
<span class="styIRS6251DotLn">..</span>
</div>
<div class="styLNRightNumBox" style="height:4mm;padding-bottom:0mm;bottom-border-width:1px;">18</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="$FormData/DepreciationAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Line 19 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;padding-bottom:0mm;padding-left: 2.25mm">19
</div>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:4mm;padding-bottom:0mm;">
<span style="float:left">Passive activities (difference between AMT and regular tax income or loss)</span>
<span class="styIRS6251DotLn">.........</span>
</div>
<div class="styLNRightNumBox" style="height:4mm;padding-bottom:0mm;bottom-border-width:1px;">19</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="$FormData/PassiveActivityAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Line 20 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;padding-bottom:0mm;padding-left: 2.25mm">20
</div>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:4mm;padding-bottom:0mm;">
<span style="float:left">Loss limitations (difference between AMT and regular tax income or loss)</span>
<span class="styIRS6251DotLn">.........</span>
</div>
<div class="styLNRightNumBox" style="height:4mm;padding-bottom:0mm;bottom-border-width:1px;">20</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="$FormData/LossLimitationAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Line 21 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;padding-bottom:0mm;padding-left: 2.25mm">21
</div>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:4mm;padding-bottom:0mm;">
<span style="float:left">Circulation costs (difference between regular tax and AMT)</span>
<span class="styIRS6251DotLn">..............</span>
</div>
<div class="styLNRightNumBox" style="height:4mm;padding-bottom:0mm;bottom-border-width:1px;">21</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="$FormData/CirculationCostAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Line 22 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;padding-bottom:0mm;padding-left: 2.25mm">22
</div>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:4mm;padding-bottom:0mm;">
<span style="float:left">Long-term contracts (difference between AMT and regular tax income)</span>
<span class="styIRS6251DotLn">..........</span>
</div>
<div class="styLNRightNumBox" style="height:4mm;padding-bottom:0mm;bottom-border-width:1px;">22</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="$FormData/LongTermContractAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Line 23 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;padding-bottom:0mm;padding-left: 2.25mm">23
</div>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:4mm;padding-bottom:0mm;">
<span style="float:left">Mining costs (difference between regular tax and AMT)</span>
<span class="styIRS6251DotLn">...............</span>
</div>
<div class="styLNRightNumBox" style="height:4mm;padding-bottom:0mm;bottom-border-width:1px;">23</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="$FormData/MiningCostsAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Line 24 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;padding-bottom:0mm;padding-left: 2.25mm">24
</div>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:4mm;padding-bottom:0mm;">
<span style="float:left">Research and experimental costs (difference between regular tax and AMT)</span>
<span class="styIRS6251DotLn">.........</span>
</div>
<div class="styLNRightNumBox" style="height:4mm;padding-bottom:0mm;bottom-border-width:1px;">24</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="$FormData/ResearchExperimentalCostAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Line 25 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;padding-bottom:0mm;padding-left: 2.25mm">25
</div>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:4mm;padding-bottom:0mm;">
<span style="float:left">Income from certain installment sales before January 1, 1987</span>
<span class="styIRS6251DotLn">.............</span>
</div>
<div class="styLNRightNumBox" style="height:4mm;padding-bottom:0mm;bottom-border-width:1px;">25</div>
<div class="styLNAmountBox" style="width:36mm;height:4mm;padding-bottom:0mm;bottom-border-width:1px;">
<xsl:call-template name="PopulateNegativeNumber">
<xsl:with-param name="TargetNode" select="$FormData/InstallmentSaleIncomeAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Line 26 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;padding-bottom:0mm;padding-left: 2.25mm">26
</div>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:4mm;padding-bottom:0mm;">
<span style="float:left">Intangible drilling costs preference</span>
<span class="styIRS6251DotLn">.....................</span>
</div>
<div class="styLNRightNumBox" style="height:4mm;padding-bottom:0mm;bottom-border-width:1px;">26</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="$FormData/IntangibleDrillingCostAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Line 27 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;padding-bottom:0mm;padding-left: 2.25mm">27
</div>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:4mm;padding-bottom:0mm;">
<span style="float:left">Other adjustments, including income-based related adjustments</span>
<span class="styIRS6251DotLn">............</span>
</div>
<div class="styLNRightNumBox" style="height:4mm;padding-bottom:0mm;bottom-border-width:1px;">27</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="$FormData/RelatedAdjustmentAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Line 28 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;padding-bottom:0mm;padding-left: 2.25mm">28
</div>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:4mm;padding-bottom:0mm;">
<b>Alternative minimum taxable income.</b> Combine lines 1 through 27. (If married filing separately,
</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>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:4mm;padding-bottom:0mm;">
<span style="float:left">see instructions.)</span>
<span class="styIRS6251DotLn">...........................</span>
</div>
<div class="styLNRightNumBox" style="height:4mm;padding-bottom:0mm;border-bottom;none">28</div>
<div class="styLNAmountBox" style="width:36mm;height:4mm;padding-bottom:0mm;border-bottom:none;">
<xsl:call-template name="LinkToLeftoverDataTableInline">
<xsl:with-param name="Desc">Residual Interest In REMIC Code</xsl:with-param>
<xsl:with-param name="TargetNode" select="$FormData/AlternativeMinTaxableIncomeAmt/@residualInterestInREMICCd"/>
</xsl:call-template>
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/AlternativeMinTaxableIncomeAmt"/>
</xsl:call-template>
</div>
</div>
</div>
<!-- Part ll -->
<!-- Part Il - Header -->
<div style="width:187mm;height:4mm;border-bottom:1px solid black;float:left;">
<span class="styPartName" style="height:4.5mm;width:18mm;font-size:13;font-family:arial;">Part II</span>
<span style="width:167mm;font-weight:normal;" class="styPartDesc">
<span style="width:3mm;font-size:10pt;height:4mm;"/>
<b>Alternative Minimum Tax (AMT)</b>
</span>
</div>
<!-- END Part ll Header-->
<!-- Line 29 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:3mm;padding-bottom:0;padding-left: 2.25mm">29</div>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:3mm;padding-bottom:0mm;">
<span style="float:left;">Exemption. See instructions</span>
<span class="styIRS6251DotLn">.......................</span>
</div>
<div class="styLNRightNumBox" style="height:4mm;padding-bottom:0mm;">29</div>
<div class="styLNAmountBox" style="width:36mm;height:4mm;padding-bottom:0mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/AlternativeMinimumTaxExemptAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Line 30 -->
<div class="styGenericDiv" style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:3mm;padding-bottom:0;padding-left: 2.25mm">30</div>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:3mm;padding-bottom:0mm;">
Subtract line 29 from line 28. If more than zero, go to line 31. If zero or less, enter -0- here and on
</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"> lines 31, 33 and 35, and go to line 34</span>
<span class="styIRS6251DotLn">....................</span>
</div>
<div class="styLNRightNumBox" style="height:4.2mm;padding-bottom:0mm;">30</div>
<div class="styLNAmountBox" style="width:36mm;height:4mm;padding-bottom:0mm;">
<xsl:call-template name="LinkToLeftoverDataTableInline">
<xsl:with-param name="Desc">RPI Special Processing Code</xsl:with-param>
<xsl:with-param name="TargetNode" select="$FormData/AdjAlternativeMinTaxableIncAmt/@rPISpecialProcessingCd"/>
</xsl:call-template>
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/AdjAlternativeMinTaxableIncAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Line 31 -->
<div style="width:187mm;">
<div style="float:left;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:26mm;padding-left: 2.25mm">31</div>
</div>
<div style="float:left;font-size:7pt;width:125mm;height:26mm;padding-top:.5mm;">
<ul style="margin-left:2mm;padding-left:2mm;margin-bottom:0mm;padding-bottom:0mm;">
<li>If you are filing Form 2555 or 2555-EZ, see instructions for the amount to enter.</li>
<li>If you reported capital gain distributions directly on Form 1040, line 13; you reported qualified dividends on Form 1040, line 9b; <b>or</b> you had a gain on both lines 15 and 16 of Schedule D (Form 1040) (as refigured for the AMT, if necessary), complete Part III on the back and enter the amount from line 54 here.</li>
<li><b>All others:</b> If line 30 is $175,000 or less ($87,500 or less if married filing separately), multiply line 30 by 26% (.26). Otherwise, multiply line 30 by 28% (.28) and subtract $3,500 ($1,750 if married filing separately) from the result.</li>
</ul>
</div>
<div style="float:left;width:5mm;height:26mm;padding-top:4mm;">
<img alt="right bracket" src="{$ImagePath}/6251_rt_bracket_lg.gif"/>
</div>
<div style="float:left;width:5mm;height:26mm;padding-top:11mm;">
<span style="letter-spacing:3mm;font-weight:bold;">..</span>
</div>
<div style="float:left;">
<div class="styLNRightNumBox" style="border-bottom-width:0px;height:10mm;background-color:lightgrey;"/>
<div class="styLNAmountBoxNBB" style="width:36mm;height:10mm;"/>
<div class="styLNRightNumBox" style="clear:left;height:5mm;">31</div>
<div class="styLNAmountBox" style="height:5mm;width:36mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/TaxOnAltMinTaxableIncAmt"/>
</xsl:call-template>
</div>
<div class="styLNRightNumBox" style="clear:left;height:14mm;background-color:lightgrey;border-bottom-width:0 px"/>
<div class="styLNAmountBoxNBB" style="width:36mm;height:14mm;"/>
</div>
</div>
<!-- Line 32 -->
<div class="styGenericDiv" style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;padding-bottom:0mm;padding-left: 2.25mm">32
</div>
<div class="styLNDesc" style="font-size:7pt;width:134.9mm;height:4mm;padding-bottom:0mm;">
<span style="float:left">Alternative minimum tax foreign tax credit (see instructions)</span>
<span class="styIRS6251DotLn">..............</span>
</div>
<div class="styLNRightNumBox" style="height:4mm;padding-bottom:0mm;bottom-border-width:1px;">32</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="$FormData/AMTForeignTaxCreditAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Line 33 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;padding-bottom:0mm;padding-left: 2.25mm">33
</div>
<div class="styLNDesc" style="font-size:7pt;width:134.9mm;height:4mm;padding-bottom:0mm;">
<span style="float:left">Tentative minimum tax. Subtract line 32 from line 31</span>
<span class="styIRS6251DotLn">................</span>
</div>
<div class="styLNRightNumBox" style="height:4mm;padding-bottom:0mm;bottom-border-width:1px;">33</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="$FormData/TentativeAlternativeMinTaxAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Line 34 -->
<div style="width:187mm;height:11.5mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:11.4mm;padding-left:2.25mm;width:8mm;">34</div>
<div class="styLNDesc" style="font-size:7pt;width:134.9mm;height:11.4mm;float:left;">
Tax from Form 1040, line 44 (minus any tax from Form 4972 and any foreign tax credit from Form<br/>
1040, line 47). If you used Schedule J to figure your tax, the amount from line 44 of Form 1040<br/>
must be refigured without using Schedule J (see instructions)
<span style="letter-spacing:3.2mm;font-weight:bold;">.........</span>
</div>
<div class="styLNRightNumBox" style="height:7.5mm;width:8mm;background-color:lightgrey;padding-bottom:0mm;border-bottom:0;"/>
<div class="styLNAmountBox" style="height:7.5mm;width:36mm;padding-bottom:0mm;border-bottom-width:0px;"/>
<div class="styLNRightNumBox" style="height:4mm;width:8mm;padding-bottom:1px;">34</div>
<div class="styLNAmountBox" style="width:36mm;height:4mm;padding-bottom:1px;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/AdjustedRegularTaxAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Line 35 -->
<div style="width:187mm;height:4mm;border-bottom:1px solid black;">
<div class="styLNLeftNumBox" style="height:4mm;font-size:7pt;padding-bottom:0mm;padding-left: 2.25mm">35
</div>
<div class="styLNDesc" style="height:4mm;font-size:7pt;width:134.9mm;padding-bottom:0mm;">
<span style="float:left"><b>AMT.</b> Subtract line 34 from line 33. If zero or less, enter -0-. Enter here and on Form 1040, line 45</span>
</div>
<div class="styLNRightNumBox" style="height:4mm;padding-bottom:0mm;border-bottom:none;">35</div>
<div class="styLNAmountBox" style="height:4mm;width:36mm;padding-bottom:0mm;border-bottom:none;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/AlternativeMinimumTaxAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Page Break and Footer-->
<div class="pageEnd" style="width:187mm;padding-top:1mm;">
<div style="float:left;">
<span class="styBoldText">For Paperwork Reduction Act Notice, see your tax return instructions.</span>
<span style="width:13mm;"/>
Cat. No. 13600G
</div>
<div style="float:right;">
<span style="width:40px;"/>
Form <span class="styBoldText" style="font-size:8pt;">6251</span> (2012)
</div>
</div>
<!-- END Page Break and Footer-->
<!--Begin Page 2 -->
<!-- Page Header -->
<div class="styBB" style="width:187mm;padding-top:.5mm;">
<div style="float:left;">Form 6251 (2012)<span style="width:148mm;"/>
</div>
<div style="float:right;">Page <span style="font-weight:bold;font-size:8pt;">2</span>
</div>
</div>
<!-- Part IlI - Header -->
<div style="width:187mm;height:4mm;border-bottom:1px solid black;border-top:1px solid black;float:left;">
<span class="styPartName" style="height:4.5mm;width:18mm;font-size:13;font-family:arial;">Part III</span>
<span style="width:167mm;font-weight:normal;" class="styPartDesc">
<span style="width:1mm;font-size:10pt;height:4mm;"/>
<b>Tax Computation Using Maximum Capital Gains Rates</b> <br/>
<span style="font-size:7.5pt;font-family:arial;">
Complete Part III only if you are required to do so by line 31 or by the Foreign Earned Income Tax Worksheet in the instructions.
</span>
</span>
</div>
<!-- END Part llI Header-->
<!-- Line 36 -->
<div class="styGenericDiv" style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;padding-bottom:0mm;padding-left: 2.25mm">36
</div>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:4mm;padding-bottom:0mm;">
Enter the amount from Form 6251, line 30. If you are filing Form 2555 or 2555-EZ,
enter the amount
</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">
from line 3 of the worksheet in the instructions for this line
</span>
<span class="styIRS6251DotLn">..............</span>
</div>
<div class="styLNRightNumBox" style="height:4mm;padding-bottom:0mm; border-bottom-width:1px;">36</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="$FormData/ReportedAltMinTaxableIncAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Line 37 -->
<div class="styGenericDiv" style="width:187mm;">
<div class="styLNLeftNumBox" style="height:17mm;font-size:7pt;padding-left: 2.25mm">37</div>
<div style="float:left;">
<div class="styLNDesc" style="font-size:7pt;width:91mm;">
Enter the amount from line 6 of the Qualified Dividends and Capital Gain Tax
Worksheet in the instructions for Form 1040, line 44, or the amount from
line 13 of the Schedule D Tax Worksheet in the instructions for Schedule D
(Form 1040), whichever applies (as refigured for the AMT, if necessary)
(see instructions). If you are filing Form 2555 or 2555-EZ,
see instructions for the amount to enter <span style="width:1mm;"/>
<span style="letter-spacing:3.2mm;font-weight:bold;">.....................</span>
</div>
</div>
<div style="float:left;">
<div class="styLNRightNumBox" style="height:18.5mm;padding-bottom:0mm;border-bottom:0;"/>
<div class="styLNRightNumBox" style="height:5mm;clear:left;">37</div>
</div>
<div style="float:left;">
<div class="styLNAmountBox" style="height:18.5mm;width:36mm;padding-bottom:0mm;border-bottom-width:0px;"/>
<div class="styLNAmountBox" style="height:5mm;width:36mm;padding-bottom:0mm;border-bottom:1px solid black;clear:left;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/CapitalGainsWorksheetAmt"/>
</xsl:call-template>
</div>
</div>
<div class="styLNRightNumBox" style="height:23.5mm;padding:0mm;border-bottom:0;background-color:lightgrey"/>
<div style="height:23.5mm;float:left;padding:0mm;border-bottom:0;border-left:1px solid black;"/>
</div>
<!-- Line 38 -->
<div class="styGenericDiv" style="width:187mm;">
<div class="styLNLeftNumBox" style="height:15mm;font-size:7pt;padding-left: 2.25mm">38</div>
<div style="float:left;">
<div class="styLNDesc" style="font-size:7pt;width:91mm;">
Enter the amount from Schedule D (Form 1040), line 19 (as refigured for the AMT,
if necessary) (see instructions). If you are filing Form 2555
or 2555-EZ, see instructions for the amount to enter
<span style="letter-spacing:3.2mm;font-weight:bold;">.....................</span>
</div>
</div>
<div style="float:left;">
<div class="styLNRightNumBox" style="height:10mm;padding-bottom:0mm;border-bottom:0;"/>
<div class="styLNRightNumBox" style="height:5mm;clear:left;">38</div>
</div>
<div style="float:left;">
<div class="styLNAmountBox" style="height:10mm;width:36mm;padding-bottom:0mm;border-bottom-width:0px;"/>
<div class="styLNAmountBox" style="height:5mm;width:36mm;padding-bottom:0mm;border-bottom:1px solid black;clear:left;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/UnrecapturedS1250GainAmt"/>
</xsl:call-template>
</div>
</div>
<div class="styLNRightNumBox" style="height:15mm;padding:0mm;border-bottom:0;background-color:lightgrey"/>
<div style="height:15mm;float:left;padding:0mm;border-bottom:0;border-left:1px solid black;"/>
</div>
<!-- Line 39 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="height:20mm;font-size:7pt;padding-left: 2.25mm">39</div>
<div style="float:left;">
<div class="styLNDesc" style="font-size:7pt;width:91mm;padding-right:1mm;">
If you did not complete a Schedule D Tax Worksheet for the regular tax or the AMT,
enter the amount from line 37. Otherwise, add lines 37 and 38, and enter the
<b>smaller</b> of that result or the amount from line 10 of the Schedule D
Tax Worksheet (as refigured for the AMT, if necessary). If you are filing
Form 2555 or 2555-EZ, see instructions for the amount to enter
<span style="letter-spacing:3.2mm;font-weight:bold;">...........</span>
</div>
</div>
<div style="float:left;">
<div class="styLNRightNumBox" style="height:15mm;padding-bottom:0mm;border-bottom:0;"/>
<div class="styLNRightNumBox" style="height:5mm;clear:left;">39</div>
</div>
<div style="float:left;">
<div class="styLNAmountBox" style="height:15mm;width:36mm;padding-bottom:0mm;border-bottom-width:0px;"/>
<div class="styLNAmountBox" style="height:5mm;width:36mm;padding-bottom:0mm;border-bottom:1px solid black;clear:left;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/SumPlusUnrecapturedS1250Amt"/>
</xsl:call-template>
</div>
</div>
<div class="styLNRightNumBox" style="height:20mm;padding:0mm;border-bottom:0;background-color:lightgrey"/>
<div style="height:20mm;float:left;padding:0mm;border-bottom:0;border-left:1px solid black;"/>
</div>
<!-- Line 40 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;padding-bottom:0mm;padding-left: 2.25mm">40
</div>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:4mm;padding-bottom:0mm;">
<span style="float:left">Enter the <b>smaller</b> of line 36 or line 39</span>
<span class="styIRS6251DotLn">.....................</span>
</div>
<div class="styLNRightNumBox" style="height:4mm;padding-bottom:0mm;bottom-border-width:1px;">40</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="$FormData/SmallerOfAltMinTxblIncOrSumAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Spacer Row -->
<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;"/>
<div class="styLNRightNumBox" style="height:4mm;padding-bottom:0mm;border-bottom:none;"/>
<div class="styLNAmountBox" style="width:36mm;height:4mm;padding-bottom:0mm;border-bottom:none;"/>
</div>
<!-- Line 41 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;padding-bottom:0mm;padding-left: 2.25mm">41
</div>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:4mm;padding-bottom:0mm;">
<span style="float:left">Subtract line 40 from line 36</span>
<span class="styIRS6251DotLn">.....................</span>
</div>
<div class="styLNRightNumBox" style="height:4mm;padding-bottom:0mm;bottom-border-width:1px;">41</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="$FormData/AdjAltMinTaxableIncLessGainAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Line 42 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;padding-bottom:0mm;padding-left: 2.25mm">42
</div>
<div class="styLNDesc" style="font-size:7pt;width:135mm;height:4mm;padding-bottom:0mm;">
If line 41 is $175,000 or less ($87,500 or less if married filing separately), multiply line 41 by 26%
</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">(.26). Otherwise, multiply line 41 by 28% (.28) and subtract $3,500 ($1,750 if married filing</span>
</div>
<div class="styLNRightNumBox" style="height:4mm;padding-bottom:0mm; border-bottom:none;"/>
<div class="styLNAmountBox" style="width:36mm;height:4mm;padding-bottom:0mm;border-bottom:none;"/>
</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;">separately) from the result</span><span class="styIRS6251DotLn">........................</span>
<img alt="bullet" src="{$ImagePath}/1040A_Bullet.gif" style="padding:0mm 1mm"/>
</div>
<div class="styLNRightNumBox" style="height:4mm; padding-bottom:0mm; border-bottom:1px solid black;">42</div>
<div class="styLNAmountBox" style="width:36mm;height:4mm;padding-bottom:0mm;border-bottom:1px solid black;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/NetAdjAltMinTxblIncTimesPctAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Line 43 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="height:17mm;font-size:7pt;padding-left: 2.25mm">43</div>
<div style="float:left;">
<div class="styLNDesc" style="font-size:7pt;width:91mm;">
<span style="float:right;text-align:right;letter-spacing:3mm;font-weight:bold;margin-top:8mm;margin-left:1mm;margin-right:2mm;">..</span>
<img alt="right bracket" src="{$ImagePath}/6251_rt_bracket_sm.gif" style="float:right;clear:none;margin-top:2mm;"/>
Enter:<br/>
<li>$70,700 if married filing jointly or qualifying widow(er),</li>
<li>$35,350 if single or married filing separately, or</li>
<li>$47,350 if head of household.</li>
</div>
</div>
<div style="float:left;">
<div class="styLNRightNumBox" style="height:12mm;padding-bottom:0mm;border-bottom:0;"/>
<div class="styLNRightNumBox" style="height:5mm;clear:left;">43</div>
</div>
<div style="float:left;">
<div class="styLNAmountBox" style="height:12mm;width:36mm;padding-bottom:0mm;border-bottom-width:0px;"/>
<div class="styLNAmountBox" style="height:5mm;width:36mm;padding-bottom:0mm;border-bottom:1px solid black;clear:left;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/FilingStatusLimitAmt"/>
</xsl:call-template>
</div>
</div>
<div class="styLNRightNumBox" style="height:17mm;padding:0mm;border-bottom:0;background-color:lightgrey"/>
<div style="height:17mm;float:left;padding:0mm;border-bottom:0;border-left:1px solid black;"/>
</div>
<!-- Line 44 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="height:20mm;font-size:7pt;padding-left: 2.25mm">44</div>
<div style="float:left;">
<div class="styLNDesc" style="font-size:7pt;width:91mm;padding-right:1mm;">
Enter the amount from line 7 of the Qualified Dividends and Capital Gain Tax Worksheet in the instructions for Form 1040, line 44, or the amount from line 14 of the Schedule D Tax Worksheet in the instructions for Schedule D (Form 1040), whichever applies (as figured for the regular tax). If you did not complete either worksheet for the regular tax, enter -0-
<span style="letter-spacing:3.2mm;font-weight:bold;">.............</span>
</div>
</div>
<div style="float:left;">
<div class="styLNRightNumBox" style="height:15mm;padding-bottom:0mm;border-bottom:0;"/>
<div class="styLNRightNumBox" style="height:5mm;clear:left;">44</div>
</div>
<div style="float:left;">
<div class="styLNAmountBox" style="height:15mm;width:36mm;padding-bottom:0mm;border-bottom-width:0px;"/>
<div class="styLNAmountBox" style="height:5mm;width:36mm;padding-bottom:0mm;border-bottom:1px solid black;clear:left;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/IncomeAboveThresholdWorkshtAmt"/>
</xsl:call-template>
</div>
</div>
<div class="styLNRightNumBox" style="height:20mm;padding:0mm;border-bottom:0;background-color:lightgrey"/>
<div style="height:20mm;float:left;padding:0mm;border-bottom:0;border-left:1px solid black;"/>
</div>
<!-- Spacer Row -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;padding-left: 2.25mm"/>
<div style="float:left;">
<div class="styLNDesc" style="font-size:7pt;width:91mm;padding-right:1mm;"/>
</div>
<div style="float:left;">
<div class="styLNRightNumBox" style="height:5mm;clear:left;border-bottom:none;"/>
</div>
<div style="float:left;">
<div class="styLNAmountBox" style="height:5mm;width:36mm;padding-bottom:0mm;border-bottom:none;clear:left;"/>
</div>
<div class="styLNRightNumBox" style="height:5mm;padding:0mm;border-bottom:0;background-color:lightgrey"/>
<div style="height:5mm;float:left;padding:0mm;border-bottom:0;border-left:1px solid black;"/>
</div>
<!-- Line 45 -->
<div style="width:187mm;">