-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIRS8863.xsl
1640 lines (1621 loc) · 79.8 KB
/
IRS8863.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="IRS8863Style.xsl"/>
<xsl:output method="html" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:param name="Form8863Data" select="$RtnDoc/IRS8863"/>
<xsl:param name="PartIData" select="$Form8863Data/RefundableAmerOppCreditGroup"/>
<xsl:param name="PartIIData" select="$Form8863Data/NonrefundableEducationCrGroup"/>
<xsl:param name="PartIIIData" select="$Form8863Data/StudentAndEducationalInstnGrp"/>
<xsl:template name="Form8863Page2">
<xsl:param name="NodeData" select="/.."/>
<!-- Page Header -->
<div style="width:187mm;padding-top:.5mm;border-bottom:1px solid black">
Form 8863 (2012)<span style="width:148mm;"/>
Page <span style="font-weight:bold;font-size:8pt;">2</span>
</div>
<!-- Name(s) shown on return -->
<div style="width:187mm;border-bottom:1px solid black;">
<div class="styFNBox" style="width:140mm; height:9mm;">
Name(s) shown on return<br/>
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="TargetNode">Name</xsl:with-param>
</xsl:call-template>
<br/>
</div>
<b>Your social security number</b>
<br/>
<div style="width:100%;text-align:center">
<xsl:call-template name="PopulateSSN">
<xsl:with-param name="TargetNode" select="$RtnHdrData/Filer/PrimarySSN"/>
</xsl:call-template>
</div>
</div>
<!-- Part III -->
<!-- Part III - Header -->
<div style="width:187mm; border-bottom:1px solid black">
<div class="styGenericDiv" style="width:18mm;padding-top:2mm;padding-bottom:2mm">
<img alt="Caution" src="{$ImagePath}/8863_Caution.gif" width="50" height="50"/>
</div>
<div class="styGenericDiv" style="width:169mm;padding-top:2mm;font-size:8pt;font-weight:bold">
<i>Complete Part III for each student for whom you are claiming either the American
opportunity credit or lifetime learning credit. Use additional copies of Page 2 as needed for
each student.</i>
</div>
</div>
<div style="width:187mm;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="width:15mm;font-size:13;">Part III</span>
<span style="width:172mm;font-weight:normal;font-size:8pt;" class="styPartDesc">
<span style="font-size:12.5;">
<b>Student and Educational Institution Information </b>
</span>
<br/>See instructions.
</span>
</div>
<table cellspacing="0" style="width:187mm">
<tbody>
<tr style="height:13mm" valign="top">
<td class="styTableCell" style="font-size:7pt;width:50%;border-color:black;text-align:left;">
<div class="styLNLeftNumBox">20</div>
Student name (as shown on page 1 of your tax return)<br/>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="StudentName/PersonFirstName"/>
</xsl:call-template>
<span style="width:5px"/>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="StudentName/PersonLastName"/>
</xsl:call-template>
<span style="width:5px"/>
<xsl:call-template name="LinkToLeftoverDataTableInline">
<xsl:with-param name="Desc">Part III Line 20 - Student <xsl:number value="position()"/> Name Control</xsl:with-param>
<xsl:with-param name="TargetNode" select="StudentNameControl"/>
</xsl:call-template>
</td>
<td class="styTableCell" style="font-size:7pt;width:50%;border-color:black;text-align:left;border-right-width:0px">
<div class="styLNLeftNumBox">21</div>
Student social security number (as shown on page 1 of your tax return)<br/>
<span style="padding-left:8.5mm">
<xsl:call-template name="PopulateSSN">
<xsl:with-param name="TargetNode" select="StudentSSN"/>
</xsl:call-template>
</span>
</td>
</tr>
<tr style="height:8.5mm" valign="top">
<td class="styTableCell" style="font-size:7pt;width:50%;border-right-width:0px;border-color:black;text-align:left;">
<div class="styLNLeftNumBox">22</div>
Educational institution information (see instructions)
</td>
<td class="styTableCell" style="font-size:7pt;width:50%;border-color:black;text-align:center;border-right-width:0px"> </td>
</tr>
</tbody>
</table>
<xsl:variable name="studentPos" select="position()"/>
<xsl:for-each select="$NodeData/EducationalInstitutionGroup">
<xsl:variable name="pos" select="position()"/>
<xsl:if test="$pos mod 2 = 1">
<table cellspacing="0" style="width:187mm;">
<tbody>
<!-- Lines a and b -->
<tr style="height:auto" valign="top">
<td class="styTableCell" style="font-size:7pt;width:93.5mm;border-color:black;text-align:left;word-wrap:break-word;">
<div class="styLNLeftNumBox" style="padding-left:5mm;height:13mm">a.</div>
Name of first educational institution <br/>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="InstitutionNm/BusinessNameLine1"/>
</xsl:call-template><br/>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="InstitutionNm/BusinessNameLine2"/>
</xsl:call-template>
</td>
<td class="styTableCell" style="font-size:7pt;width:93.5mm;border-color:black;text-align:left;border-right-width:0px;word-wrap:break-word;">
<div class="styLNLeftNumBox" style="padding-left:5mm;height:13mm">b.</div>
Name of second educational institution (if any)<br/>
<xsl:if test="$NodeData/EducationalInstitutionGroup[$pos+1]/InstitutionNm">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$NodeData/EducationalInstitutionGroup[$pos+1]/InstitutionNm/BusinessNameLine1"/>
</xsl:call-template><br/>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$NodeData/EducationalInstitutionGroup[$pos+1]/InstitutionNm/BusinessNameLine2"/>
</xsl:call-template>
</xsl:if>
</td>
</tr>
<!-- Lines a(1) and b(1) -->
<tr style="height:13mm" valign="top">
<td class="styTableCell" style="font-size:7pt;width:50%;border-color:black;text-align:left;">
<div class="styLNLeftNumBox" style="height:100%;padding-left:5mm;padding-right:1mm">(1)</div>
Address. Number and street (or P.O. box). City, town or
post office, state, and ZIP code. If a foreign address, see
instructions.<br/>
<xsl:if test="USAddress">
<xsl:call-template name="PopulateUSAddressTemplate">
<xsl:with-param name="TargetNode" select="USAddress"/>
</xsl:call-template>
</xsl:if>
<xsl:if test="ForeignAddress">
<xsl:call-template name="PopulateForeignAddressTemplate">
<xsl:with-param name="TargetNode" select="ForeignAddress"/>
</xsl:call-template>
</xsl:if>
</td>
<td class="styTableCell" style="font-size:7pt;width:50%;border-color:black;text-align:left;border-right-width:0px">
<div class="styLNLeftNumBox" style="height:100%;padding-left:5mm;padding-right:1mm">(1)</div>
Address. Number and street (or P.O. box). City, town or
post office, state, and ZIP code. If a foreign address, see
instructions.<br/>
<xsl:if test="$NodeData/EducationalInstitutionGroup[$pos+1]/InstitutionNm">
<xsl:if test="$NodeData/EducationalInstitutionGroup[$pos+1]/USAddress">
<xsl:call-template name="PopulateUSAddressTemplate">
<xsl:with-param name="TargetNode" select="$NodeData/EducationalInstitutionGroup[$pos+1]/USAddress"/>
</xsl:call-template>
</xsl:if>
<xsl:if test="$NodeData/EducationalInstitutionGroup[$pos+1]/ForeignAddress">
<xsl:call-template name="PopulateForeignAddressTemplate">
<xsl:with-param name="TargetNode" select="$NodeData/EducationalInstitutionGroup[$pos+1]/ForeignAddress"/>
</xsl:call-template>
</xsl:if>
</xsl:if>
</td>
</tr>
<!-- Lines a(2) and b(2) -->
<tr style="height:13mm" valign="top">
<td class="styTableCell" style="font-size:7pt;width:92mm;border-color:black;text-align:left;">
<div class="styLNLeftNumBox" style="height:100%;padding-left:5mm;padding-right:1mm">(2)</div>
<div class="styGenericDiv" style="width:63%; padding-left:0.5mm;">
Did the student receive Form 1098-T
from this institution for 2012?
</div>
<span>
<xsl:call-template name="PopulateSpan">
<xsl:with-param name="TargetNode" select="CurrentYear1098TReceivedInd"/>
</xsl:call-template>
<div class="styGenericDiv" style="width:13%; height:13mm;padding-top:3.5mm; padding-left:0mm">
<input type="checkbox" class="styCkbox" name="Checkbox">
<xsl:call-template name="PopulateYesCheckbox">
<xsl:with-param name="TargetNode" select="CurrentYear1098TReceivedInd"/>
<xsl:with-param name="BackupName">IRS8863CY1098TReceivedInd<xsl:value-of select="$studentPos"/>-<xsl:number value="position()"/></xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabelYes">
<xsl:with-param name="TargetNode" select="CurrentYear1098TReceivedInd"/>
<xsl:with-param name="BackupName">IRS8863CY1098TReceivedInd<xsl:value-of select="$studentPos"/>-<xsl:number value="position()"/></xsl:with-param>
</xsl:call-template>
Yes
</label>
</div>
<div class="styGenericDiv" style="width:12%;padding-top:3.5mm; padding-left:0mm">
<input type="checkbox" class="styCkbox" name="Checkbox">
<xsl:call-template name="PopulateNoCheckbox">
<xsl:with-param name="TargetNode" select="CurrentYear1098TReceivedInd"/>
<xsl:with-param name="BackupName">IRS8863CY1098TReceivedInd<xsl:value-of select="$studentPos"/>-<xsl:number value="position()"/></xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabelNo">
<xsl:with-param name="TargetNode" select="CurrentYear1098TReceivedInd"/>
<xsl:with-param name="BackupName">IRS8863CY1098TReceivedInd<xsl:value-of select="$studentPos"/>-<xsl:number value="position()"/></xsl:with-param>
</xsl:call-template>
No
</label>
</div>
</span>
</td>
<td class="styTableCell" style="font-size:7pt;width:94mm;border-color:black;text-align:left;border-right-width:0px">
<div class="styLNLeftNumBox" style="height:100%;padding-left:5mm;padding-right:1mm">(2)</div>
<div class="styGenericDiv" style="width:63%; padding-left:0.5mm">
Did the student receive Form 1098-T
from this institution for 2012?
</div>
<span>
<xsl:call-template name="PopulateSpan">
<xsl:with-param name="TargetNode" select="$NodeData/EducationalInstitutionGroup[$pos+1]/CurrentYear1098TReceivedInd"/>
</xsl:call-template>
<div class="styGenericDiv" style="width:13%; height:13mm;padding-top:3.5mm; padding-left:0mm">
<input type="checkbox" class="styCkbox" name="Checkbox">
<xsl:call-template name="PopulateYesCheckbox">
<xsl:with-param name="TargetNode" select="$NodeData/EducationalInstitutionGroup[$pos+1]/CurrentYear1098TReceivedInd"/>
<xsl:with-param name="BackupName">IRS8863CY1098TReceivedInd<xsl:value-of select="$studentPos"/>-<xsl:number value="position() + 1"/></xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabelYes">
<xsl:with-param name="TargetNode" select="$NodeData/EducationalInstitutionGroup[$pos+1]/CurrentYear1098TReceivedInd"/>
<xsl:with-param name="BackupName">IRS8863CY1098TReceivedInd<xsl:value-of select="$studentPos"/>-<xsl:number value="position() + 1"/></xsl:with-param>
</xsl:call-template>
Yes
</label>
</div>
<div class="styGenericDiv" style="width:13%;padding-top:3.5mm; padding-left:0mm">
<input type="checkbox" class="styCkbox" name="Checkbox">
<xsl:call-template name="PopulateNoCheckbox">
<xsl:with-param name="TargetNode" select="$NodeData/EducationalInstitutionGroup[$pos+1]/CurrentYear1098TReceivedInd"/>
<xsl:with-param name="BackupName">IRS8863CY1098TReceivedInd<xsl:value-of select="$studentPos"/>-<xsl:number value="position() + 1"/></xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabelNo">
<xsl:with-param name="TargetNode" select="$NodeData/EducationalInstitutionGroup[$pos+1]/CurrentYear1098TReceivedInd"/>
<xsl:with-param name="BackupName">IRS8863CY1098TReceivedInd<xsl:value-of select="$studentPos"/>-<xsl:number value="position() + 1"/></xsl:with-param>
</xsl:call-template>
No
</label>
</div>
</span>
</td>
</tr>
<!-- Lines a(3) and b(3) -->
<tr style="height:13mm" valign="top">
<td class="styTableCell" style="font-size:7pt;width:92mm;border-color:black;text-align:left;">
<div class="styLNLeftNumBox" style="height:100%;padding-left:5mm;padding-right:1mm">(3)</div>
<div class="styGenericDiv" style="width:63%;padding-left:0.5mm;">
Did the student receive Form 1098-T from this institution for 2011 with Box
2 filed in and Box 7 checked?
</div>
<span>
<xsl:call-template name="PopulateSpan">
<xsl:with-param name="TargetNode" select="PriorYear1098TReceivedInd"/>
</xsl:call-template>
<div class="styGenericDiv" style="width:13%; height:13mm;padding-top:3.5mm; padding-left:0mm">
<input type="checkbox" class="styCkbox" name="Checkbox">
<xsl:call-template name="PopulateYesCheckbox">
<xsl:with-param name="TargetNode" select="PriorYear1098TReceivedInd"/>
<xsl:with-param name="BackupName">IRS8863PY1098TReceivedInd<xsl:value-of select="$studentPos"/>-<xsl:number value="position()"/></xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabelYes">
<xsl:with-param name="TargetNode" select="PriorYear1098TReceivedInd"/>
<xsl:with-param name="BackupName">IRS8863PY1098TReceivedInd<xsl:value-of select="$studentPos"/>-<xsl:number value="position()"/></xsl:with-param>
</xsl:call-template>
Yes
</label>
</div>
<div class="styGenericDiv" style="width:12%;padding-top:3.5mm; padding-left:0mm">
<input type="checkbox" class="styCkbox" name="Checkbox">
<xsl:call-template name="PopulateNoCheckbox">
<xsl:with-param name="TargetNode" select="PriorYear1098TReceivedInd"/>
<xsl:with-param name="BackupName">IRS8863PY1098TReceivedInd<xsl:value-of select="$studentPos"/>-<xsl:number value="position()"/></xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabelNo">
<xsl:with-param name="TargetNode" select="PriorYear1098TReceivedInd"/>
<xsl:with-param name="BackupName">IRS8863PY1098TReceivedInd<xsl:value-of select="$studentPos"/>-<xsl:number value="position()"/></xsl:with-param>
</xsl:call-template>
No
</label>
</div>
</span>
</td>
<td class="styTableCell" style="font-size:7pt;width:94mm;border-color:black;text-align:left;border-right-width:0px">
<div class="styLNLeftNumBox" style="height:100%;padding-left:5mm;padding-right:1mm">(3)</div>
<div class="styGenericDiv" style="width:63%; padding-left:0.5mm;">
Did the student receive Form 1098-T from this institution for 2011 with Box
2 filed in and Box 7 checked?
</div>
<span>
<xsl:call-template name="PopulateSpan">
<xsl:with-param name="TargetNode" select="$NodeData/EducationalInstitutionGroup[$pos+1]/PriorYear1098TReceivedInd"/>
</xsl:call-template>
<div class="styGenericDiv" style="width:13%; height:13mm;padding-top:3.5mm; padding-left:0mm">
<input type="checkbox" class="styCkbox" name="Checkbox">
<xsl:call-template name="PopulateYesCheckbox">
<xsl:with-param name="TargetNode" select="$NodeData/EducationalInstitutionGroup[$pos+1]/PriorYear1098TReceivedInd"/>
<xsl:with-param name="BackupName">IRS8863PY1098TReceivedInd<xsl:value-of select="$studentPos"/>-<xsl:number value="position() + 1"/></xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabelYes">
<xsl:with-param name="TargetNode" select="$NodeData/EducationalInstitutionGroup[$pos+1]/PriorYear1098TReceivedInd"/>
<xsl:with-param name="BackupName">IRS8863PY1098TReceivedInd<xsl:value-of select="$studentPos"/>-<xsl:number value="position() + 1"/></xsl:with-param>
</xsl:call-template>
Yes
</label>
</div>
<div class="styGenericDiv" style="width:13%;padding-top:3.5mm; padding-left:0mm">
<input type="checkbox" class="styCkbox" name="Checkbox">
<xsl:call-template name="PopulateNoCheckbox">
<xsl:with-param name="TargetNode" select="$NodeData/EducationalInstitutionGroup[$pos+1]/PriorYear1098TReceivedInd"/>
<xsl:with-param name="BackupName">IRS8863PY1098TReceivedInd<xsl:value-of select="$studentPos"/>-<xsl:number value="position() + 1"/></xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabelNo">
<xsl:with-param name="TargetNode" select="$NodeData/EducationalInstitutionGroup[$pos+1]/PriorYear1098TReceivedInd"/>
<xsl:with-param name="BackupName">IRS8863PY1098TReceivedInd<xsl:value-of select="$studentPos"/>-<xsl:number value="position() + 1"/></xsl:with-param>
</xsl:call-template>
No
</label>
</div>
</span>
</td>
</tr>
<tr style="height:8mm" valign="top">
<td class="styTableCell" style="font-size:7pt;width:50%;border-color:black;text-align:left;">
If you checked “No” in <b>both (2) and (3)</b>, skip <b>(4)</b>.
</td>
<td class="styTableCell" style="font-size:7pt;width:50%;border-color:black;text-align:left;border-right-width:0px">
If you checked “No” in <b>both (2) and (3)</b>, skip <b>(4)</b>.
</td>
</tr>
<!-- Lines a(4) and b(4) -->
<tr style="height:13mm" valign="top">
<td class="styTableCell" style="font-size:7pt;width:50%;border-color:black;text-align:left;">
<div class="styLNLeftNumBox" style="height:100%;padding-left:5mm;padding-right:1mm">(4)</div>
If you checked “Yes” in either <b>(2) or (3)</b>, enter the institution's federal identification number (from Form
1098-T).<br/>
<xsl:call-template name="PopulateEIN">
<xsl:with-param name="TargetNode" select="EIN"/>
</xsl:call-template>
<xsl:if test= "not(EIN)">
_ _ - _ _ _ _ _ _ _
</xsl:if>
</td>
<td class="styTableCell" style="font-size:7pt;width:50%;border-color:black;text-align:left;border-right-width:0px">
<div class="styLNLeftNumBox" style="height:100%;padding-left:5mm;padding-right:1mm">(4)</div>
If you checked “Yes” in either <b>(2) or (3)</b>, enter the institution's federal identification number (from Form
1098-T).<br/>
<xsl:call-template name="PopulateEIN">
<xsl:with-param name="TargetNode" select="$NodeData/EducationalInstitutionGroup[$pos+1]/EIN"/>
</xsl:call-template>
<xsl:if test="not($NodeData/EducationalInstitutionGroup[$pos+1]/EIN)">
_ _ - _ _ _ _ _ _ _
</xsl:if>
</td>
</tr>
</tbody>
</table>
</xsl:if>
</xsl:for-each>
<table cellspacing="0" style="width:187mm;page-break-after:always;">
<tbody>
<!-- Line 23 -->
<tr style="height:13mm" valign="top">
<td class="styTableCell" style="font-size:7pt;width:50%;border-color:black;text-align:left;border-right-width:0px">
<div class="styLNLeftNumBox">23</div>
Has the Hope Scholarship Credit or American opportunity
credit been claimed for this student for any prior 4 tax
years?
</td>
<td class="styTableCell" style="font-size:7pt;width:50%;border-color:black;text-align:left;border-right-width:0px">
<xsl:call-template name="PopulateSpan">
<xsl:with-param name="TargetNode" select="PriorYearCreditClaimedInd"/>
</xsl:call-template>
<div class="styGenericDiv" style="width:5%;height:100%;padding-top:3.5mm; padding-left:2mm">
<input type="checkbox" class="styCkbox" name="Checkbox">
<xsl:call-template name="PopulateYesCheckbox">
<xsl:with-param name="TargetNode" select="PriorYearCreditClaimedInd"/>
<xsl:with-param name="BackupName">IRS8863PYCreditClaimedInd<xsl:number value="position()"/></xsl:with-param>
</xsl:call-template>
</input>
</div>
<div class="styGenericDiv" style="width:45%;padding-top:0.75mm;padding-left:1mm;height:100%;">
<label>
<xsl:call-template name="PopulateLabelYes">
<xsl:with-param name="TargetNode" select="PriorYearCreditClaimedInd"/>
<xsl:with-param name="BackupName">IRS8863PYCreditClaimedInd<xsl:number value="position()"/></xsl:with-param>
</xsl:call-template>
Yes
</label>
― <b>Stop!</b>
<br/> Go to line 31 for this student.
</div>
<div class="styGenericDiv" style="width:5%;padding-top:3.5mm; padding-left:2mm;height:100%;">
<input type="checkbox" class="styCkbox" name="Checkbox">
<xsl:call-template name="PopulateNoCheckbox">
<xsl:with-param name="TargetNode" select="PriorYearCreditClaimedInd"/>
<xsl:with-param name="BackupName">IRS8863PYCreditClaimedInd<xsl:number value="position()"/></xsl:with-param>
</xsl:call-template>
</input>
</div>
<div class="styGenericDiv" style="padding-top:1.5mm;width:44%;padding-left:1mm;height:100%;">
<label>
<xsl:call-template name="PopulateLabelNo">
<xsl:with-param name="TargetNode" select="PriorYearCreditClaimedInd"/>
<xsl:with-param name="BackupName">IRS8863PYCreditClaimedInd<xsl:number value="position()"/></xsl:with-param>
</xsl:call-template>
No
</label>
― Go to line 24.
</div>
</td>
</tr>
<!-- Line 24 -->
<tr style="height:13mm" valign="top">
<td class="styTableCell" style="font-size:7pt;width:50%;border-color:black;text-align:left;border-right-width:0px">
<div class="styLNLeftNumBox" style="height:100%">24</div>
Was the student enrolled at least half-time for at least one
academic period that began in 2012 at an eligible
educational institution in a program leading towards a
postsecondary degree, certificate, or other recognized
postsecondary educational credential? (see instructions)
</td>
<td class="styTableCell" style="font-size:7pt;width:50%;border-color:black;text-align:left;border-right-width:0px">
<xsl:call-template name="PopulateSpan">
<xsl:with-param name="TargetNode" select="AcademicPdEligibleStudentInd"/>
</xsl:call-template>
<div class="styGenericDiv" style="width:5%;height:100%;padding-top:3.5mm; padding-left:2mm">
<input type="checkbox" class="styCkbox" name="Checkbox">
<xsl:call-template name="PopulateYesCheckbox">
<xsl:with-param name="TargetNode" select="AcademicPdEligibleStudentInd"/>
<xsl:with-param name="BackupName">IRS8863AcademicPdEligStudentInd<xsl:number value="position()"/></xsl:with-param>
</xsl:call-template>
</input>
</div>
<div class="styGenericDiv" style="width:45%;padding-top:0.75mm;padding-left:1mm;height:100%;">
<label>
<xsl:call-template name="PopulateLabelYes">
<xsl:with-param name="TargetNode" select="AcademicPdEligibleStudentInd"/>
<xsl:with-param name="BackupName">IRS8863AcademicPdEligStudentInd<xsl:number value="position()"/></xsl:with-param>
</xsl:call-template>
Yes
</label>
― Go to line 25.
</div>
<div class="styGenericDiv" style="width:5%;padding-top:3.5mm; padding-left:2mm;height:100%;">
<input type="checkbox" class="styCkbox" name="Checkbox">
<xsl:call-template name="PopulateNoCheckbox">
<xsl:with-param name="TargetNode" select="AcademicPdEligibleStudentInd"/>
<xsl:with-param name="BackupName">IRS8863AcademicPdEligStudentInd<xsl:number value="position()"/></xsl:with-param>
</xsl:call-template>
</input>
</div>
<div class="styGenericDiv" style="padding-top:1.5mm;width:44%;padding-left:1mm;height:100%;">
<label>
<xsl:call-template name="PopulateLabelNo">
<xsl:with-param name="TargetNode" select="AcademicPdEligibleStudentInd"/>
<xsl:with-param name="BackupName">IRS8863AcademicPdEligStudentInd<xsl:number value="position()"/></xsl:with-param>
</xsl:call-template>
No
</label>
― <b>Stop!</b><br/> Go to line 31 for this student.
</div>
</td>
</tr>
<!-- Line 25 -->
<tr style="height:13mm" valign="top">
<td class="styTableCell" style="font-size:7pt;width:50%;border-color:black;text-align:left;border-right-width:0px">
<div class="styLNLeftNumBox">25</div>
Did the student complete the first 4 years of post-secondary
education before 2012?
</td>
<td class="styTableCell" style="font-size:7pt;width:50%;border-color:black;text-align:left;border-right-width:0px">
<xsl:call-template name="PopulateSpan">
<xsl:with-param name="TargetNode" select="PostSecondaryEducationInd"/>
</xsl:call-template>
<div class="styGenericDiv" style="width:5%;height:100%;padding-top:3.5mm; padding-left:2mm">
<input type="checkbox" class="styCkbox" name="Checkbox">
<xsl:call-template name="PopulateYesCheckbox">
<xsl:with-param name="TargetNode" select="PostSecondaryEducationInd"/>
<xsl:with-param name="BackupName">IRS8863PostSecondaryEducationInd<xsl:number value="position()"/></xsl:with-param>
</xsl:call-template>
</input>
</div>
<div class="styGenericDiv" style="width:45%;padding-top:0.75mm;padding-left:1mm;height:100%;">
<label>
<xsl:call-template name="PopulateLabelYes">
<xsl:with-param name="TargetNode" select="PostSecondaryEducationInd"/>
<xsl:with-param name="BackupName">IRS8863PostSecondaryEducationInd<xsl:number value="position()"/></xsl:with-param>
</xsl:call-template>
Yes
</label>
― <b>Stop!</b><br/> Go to line 31 for this student.
</div>
<div class="styGenericDiv" style="width:5%;padding-top:3.5mm; padding-left:2mm;height:100%;">
<input type="checkbox" class="styCkbox" name="Checkbox">
<xsl:call-template name="PopulateNoCheckbox">
<xsl:with-param name="TargetNode" select="PostSecondaryEducationInd"/>
<xsl:with-param name="BackupName">IRS8863PostSecondaryEducationInd<xsl:number value="position()"/></xsl:with-param>
</xsl:call-template>
</input>
</div>
<div class="styGenericDiv" style="padding-top:1.5mm;width:44%;padding-left:1mm;height:100%;">
<label>
<xsl:call-template name="PopulateLabelNo">
<xsl:with-param name="TargetNode" select="PostSecondaryEducationInd"/>
<xsl:with-param name="BackupName">IRS8863PostSecondaryEducationInd<xsl:number value="position()"/></xsl:with-param>
</xsl:call-template>
No
</label>
― Go to line 26.
</div>
</td>
</tr>
<!-- Line 26 -->
<tr style="height:13mm" valign="top">
<td class="styTableCell" style="font-size:7pt;width:50%;border-color:black;text-align:left;border-right-width:0px">
<div class="styLNLeftNumBox">26</div>
Was the student convicted, before the end of 2012, of a
felony for possession or distribution of a controlled
substance?
</td>
<td class="styTableCell" style="font-size:7pt;width:50%;border-color:black;text-align:left;border-right-width:0px">
<xsl:call-template name="PopulateSpan">
<xsl:with-param name="TargetNode" select="DrugFelonyConvictionInd"/>
</xsl:call-template>
<div class="styGenericDiv" style="width:5%;height:100%;padding-top:3.5mm; padding-left:2mm">
<input type="checkbox" class="styCkbox" name="Checkbox">
<xsl:call-template name="PopulateYesCheckbox">
<xsl:with-param name="TargetNode" select="DrugFelonyConvictionInd"/>
<xsl:with-param name="BackupName">IRS8863DrugFelonyConvictionInd<xsl:number value="position()"/></xsl:with-param>
</xsl:call-template>
</input>
</div>
<div class="styGenericDiv" style="width:45%;padding-top:0.75mm;padding-left:1mm;height:100%;">
<label>
<xsl:call-template name="PopulateLabelYes">
<xsl:with-param name="TargetNode" select="DrugFelonyConvictionInd"/>
<xsl:with-param name="BackupName">IRS8863DrugFelonyConvictionInd<xsl:number value="position()"/></xsl:with-param>
</xsl:call-template>
Yes
</label>
― <b>Stop!</b>
<br/> Go to line 31 for this student.
</div>
<div class="styGenericDiv" style="width:5%;padding-top:3.5mm; padding-left:2mm;height:100%;">
<input type="checkbox" class="styCkbox" name="Checkbox">
<xsl:call-template name="PopulateNoCheckbox">
<xsl:with-param name="TargetNode" select="DrugFelonyConvictionInd"/>
<xsl:with-param name="BackupName">IRS8863DrugFelonyConvictionInd<xsl:number value="position()"/></xsl:with-param>
</xsl:call-template>
</input>
</div>
<div class="styGenericDiv" style="padding-top:1.5mm;width:44%;padding-left:1mm;height:100%;">
<label>
<xsl:call-template name="PopulateLabelNo">
<xsl:with-param name="TargetNode" select="DrugFelonyConvictionInd"/>
<xsl:with-param name="BackupName">IRS8863DrugFelonyConvictionInd<xsl:number value="position()"/></xsl:with-param>
</xsl:call-template>
No
</label>
― See <i>Tip</i> below and complete <b>either</b> lines 27-30 <b>or</b> line 31 for this student.
</div>
</td>
</tr>
</tbody>
</table>
<div style="width:187mm;border-style:solid; border-bottom-width:1px;border-top-width:0px;
border-right-width:0px;border-left-width:0px;float:left;">
<!-- Tip -->
<div style="width:187mm;border-bottom:1px solid black;">
<div class="styGenericDiv" style="width:18mm;">
<img alt="Caution" src="{$ImagePath}/8863_Tip.gif" width="57" height="57"/>
</div>
<div class="styGenericDiv" style="width:169mm;padding-top:0.5mm;font-size:8pt;">
When you figure your taxes, you may want to compare the American opportunity credit and lifetime learning credits, and choose the credit for each student that gives you the lower tax liability. You <i><b>cannot</b> take the American opportunity credit and the lifetime learning credit for the <b>same student</b> in the
same year.</i> If you complete lines 27 through 30 for this student, do not complete line 31.
</div>
</div>
<span style="width:172mm;font-weight:normal;font-size:8pt;" class="styPartDesc">
<span style="font-size:12.5;">
<b>American Opportunity Credit</b>
</span>
</span>
</div>
<!-- Line 27 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:5mm;padding-top:1mm;padding-left: 2.25mm">27
</div>
<div class="styLNDesc" style="width:142mm;height:5mm;padding-top:1mm;">
Adjusted qualified education expenses (see instructions). <b> Do not enter more than $4,000</b>
<!--Dotted Line-->
<span class="styBoldText">
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
</span>
</div>
<div class="styLNRightNumBox" style="height:5mm;width:7.1mm;padding-top:0mm;">27</div>
<div class="styLNAmountBox" style="width:29.8mm;height:5mm;padding-top:0mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="AmerOppQualifiedExpensesAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Line 28 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:5mm;padding-top:1mm;padding-left: 2.25mm">28
</div>
<div class="styLNDesc" style="width:142mm;height:5mm;padding-top:1mm;">
Subtract $2,000 from line 27. If zero or less enter -0-
<!--Dotted Line-->
<span class="styBoldText">
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
</span>
</div>
<div class="styLNRightNumBox" style="height:5mm;width:7.1mm;padding-top:0mm;">28</div>
<div class="styLNAmountBox" style="width:29.8mm;height:5mm;padding-top:0mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="AmerOppQlfyExpnssLessAllwblAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Line 29 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:5mm;padding-top:1mm;padding-left: 2.25mm">29
</div>
<div class="styLNDesc" style="width:142mm;height:5mm;padding-top:1mm;">
Multiply line 28 by 25% (.25)
<!--Dotted Line-->
<span class="styBoldText">
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
</span>
</div>
<div class="styLNRightNumBox" style="height:5mm;width:7.1mm;padding-top:0mm;">29</div>
<div class="styLNAmountBox" style="width:29.8mm;height:5mm;padding-top:0mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="AmerOppAllwblExpnssTimesPctAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Line 30 -->
<div style="width:187mm;border-bottom:1px solid black">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;padding-top:0mm;padding-left: 2.25mm">30
</div>
<div class="styLNDesc" style="font-size:7pt;width:142mm;height:4mm;padding-top:0mm;">
If line 28 is zero, enter the amount from line 27. Otherwise, add $2,000 to the amount on line 29 and
enter<br/>the result. Skip line 31. Include the total of all amounts from all Parts III, line 30 on Part I, line 1
<!--Dotted Line-->
<span class="styBoldText">
<span style="width:16px"/>.
<span style="width:16px"/>.
</span>
</div>
<div class="styLNRightNumBox" style="height:7mm;width:7.1mm;padding-top:2mm;border-bottom-width:0px;">30</div>
<div class="styLNAmountBox" style="width:29.8mm;height:7mm;padding-top:2mm;border-bottom-width:0px;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="AmerOppCreditNetCalcExpnssAmt"/>
</xsl:call-template>
</div>
</div>
<div style="width:187mm;border-style:solid; border-bottom-width:1px;border-top-width:0px;
border-right-width:0px;border-left-width:0px;float:left;">
<span style="width:172mm;font-weight:normal;font-size:8pt;" class="styPartDesc">
<span style="font-size:12.5;">
<b>Lifetime Learning Credit</b>
</span>
<span style="width:9px"/>
</span>
</div>
<!-- Line 31 -->
<div style="width:187mm;border-bottom:1px solid black">
<div class="styLNLeftNumBox" style="font-size:7pt;height:5mm;padding-top:1mm;padding-left: 2.25mm">31
</div>
<div class="styLNDesc" style="width:142mm;height:5mm;padding-top:1mm;">
Adjusted qualified education expenses (see instructions). Include the total of all amounts from all Parts III, line 31, on Part II, line 10
<!--Dotted Line-->
<span class="styBoldText">
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
</span>
</div>
<div class="styLNRightNumBox" style="height:8mm;width:7.1mm;padding-top:4mm;border-bottom-width:0px">31</div>
<div class="styLNAmountBox" style="width:29.8mm;height:8mm;padding-top:4mm;border-bottom-width:0px">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="LifetimeQualifiedExpensesAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Page Break and Footer-->
<div style="width:187mm;padding-top:0mm;border-top-width:1px;">
<div style="width:100%;text-align:right">
Form <span class="styBoldText" style="font-size:8pt;">8863</span> (2012)
</div>
</div>
</xsl:template>
<xsl:template match="/">
<html lang="EN-US">
<head>
<title>
<xsl:call-template name="FormTitle">
<xsl:with-param name="RootElement" select="local-name($Form8863Data)"/>
</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 8863"/>
<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="IRS8863Style"/>
<xsl:call-template name="AddOnStyle"/>
</xsl:if>
</style>
<xsl:call-template name="GlobalStylesForm"/>
</head>
<body class="styBodyClass">
<form name="Form8863">
<xsl:call-template name="DocumentHeader"/>
<div class="styBB" style="width:187mm;height:23.5mm;">
<div class="styFNBox" style="width:31mm;height:100%;">
Form
<span class="styFormNumber">8863</span>
<br/>
<br/>
<span class="styAgency">Department of the Treasury</span>
<br/>
<span class="styAgency">Internal Revenue Service (99)</span>
</div>
<div class="styFTBox" style="width:125mm;height:100%;">
<div class="styMainTitle" style="height:7mm;padding-top:1mm;">Education Credits<br/>
<span style="font-weight:normal">(American Opportunity and Lifetime Learning Credits)</span>
</div>
<div class="styFBT" stype="font-size:7pt;height:6mm;padding-top:0mm;">
<img src="{$ImagePath}/8863_Bullet.gif" alt="MediumBullet"/> Information on Form 8863 and its separate instructions is at <i>www.irs.gov/form8863</i>.<br/>
<img src="{$ImagePath}/8863_Bullet.gif" alt="MediumBullet"/> Attach to Form 1040 or 1040A.<br/>
</div>
</div>
<div class="styTYBox" style="width:31mm; height:100%">
<div style="padding-top:1mm;border-bottom:1 solid black">OMB No. 1545-0074</div>
<div class="styTaxYear" style="font-size:21pt;">20<span class="styTYColor" style="font-size:21pt">12</span>
</div>
<div class="stySequence">Attachment<br/>Sequence No. <b style="font-size:8pt">50</b>
</div>
</div>
</div>
<!-- Name(s) shown on return -->
<div class="styBB" style="width:187mm;">
<div class="styFNBox" style="width:140mm; height:9mm;">
Name(s) shown on return<br/>
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="TargetNode">Name</xsl:with-param>
</xsl:call-template>
<br/>
</div>
<b>Your social security number</b>
<br/>
<div style="width:100%;text-align:center">
<xsl:call-template name="PopulateSSN">
<xsl:with-param name="TargetNode" select="$RtnHdrData/Filer/PrimarySSN"/>
</xsl:call-template>
</div>
</div>
<!-- Part l -->
<!-- Part I - Header -->
<div class="styBB" style="width:187mm;">
<div class="styGenericDiv" style="width:18mm;padding-top:2mm;padding-bottom:2mm">
<img alt="Caution" src="{$ImagePath}/8863_Caution.gif" width="50" height="50"/>
</div>
<div class="styGenericDiv" style="width:169mm;padding-top:4mm;font-size:8pt;font-style:italic">
Complete a separate Part III on page 2 for each student for whom you are claiming either
credit before you complete Parts I and II.
</div>
</div>
<div class="styBB" 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;">
<span class="styPartName" style="width:15mm;font-size:13;">Part I</span>
<span style="width:170mm;font-weight:normal;" class="styPartDesc">
<span style="width:3mm;font-size:10pt;vertical-align:bottom;"/>
<b>Refundable American Opportunity Credit</b>
</span>
</div>
<!--Line 1-->
<div style="width:187mm;">
<span style="float:left;">
<div class="styLNLeftNumBoxSD" style="font-size:7pt;height:4mm;padding-top:1mm;padding-left: 2.25mm">1
</div>
<div class="styLNDesc" style="font-size:7pt;width:142mm;height:4mm;padding-top:1mm;">
After completing Part III for each student, enter the total of all amounts from all Parts III, line 30
<!--Dotted Line-->
<span class="styBoldText">
<span style="width:16px"/>.
<span style="width:16px"/>.
</span>
</div>
</span>
<span style="float:right;">
<div class="styLNRightNumBox" style="font-size:7pt;height:5mm;width:7.1mm; text-align:center; ">1</div>
<div class="styLNAmountBox" style="width:29.8mm;height:5mm;">
<xsl:if test="$Form8863Data/RefundableAmerOppCreditGroup">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$PartIData/TentativeAmerOppCreditAmt"/>
</xsl:call-template>
</xsl:if>
</div>
</span>
</div>
<!--Line 2-->
<div style="width:187mm;">
<span style="float:left">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;padding-top:1mm;padding-left: 2.25mm">2
</div>
<div class="styLNDesc" style="font-size:7pt;width:104.98mm;height:4mm;padding-top:1mm;">
Enter: $180,000 if married filing jointly; $90,000 if single, head of <br/>household,
or qualifying widow(er)
<!--Dotted Line-->
<span class="styBoldText">
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
</span>
</div>
</span>
<span style="float:right;">
<div class="styLNRightNumBox" style="font-size:7pt;height:8mm;padding-top:3mm; width:7.1mm; text-align:center; ">2</div>
<div class="styLNAmountBox" style="width:29.8mm;height:8mm;padding-top:3mm; ">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$PartIData/EnterSpecifiedAmountForFSAmt"/>
</xsl:call-template>
</div>
<div class="styLNRightNumBox" style="width:7.1mm;background-color:lightgrey;border-bottom-width:0px;height:8mm;"/>
<div class="styLNAmountBox" style="width:29.8mm;border-bottom-width:0px;height:8mm;"/>
</span>
</div>
<!--Line 3-->
<div style="width:187mm;">
<span style="float:left;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;padding-top:1mm;padding-left: 2.25mm">3
</div>
<div class="styLNDesc" style="font-size:7pt;width:104.98mm;height:4mm;padding-top:1mm;">
Enter the amount from Form 1040, line 38, or Form 1040A, line 22. If you
are filing Form 2555, 2555-EZ, or 4563, or you are excluding income from
Puerto Rico, see Pub. 970 for the amount to enter
<!--Dotted Line-->
<span class="styBoldText">
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
</span>
</div>
</span>
<span style="float:right;">
<div class="styLNRightNumBox" style="font-size:7pt;height:11mm;padding-top:7mm; width:7.1mm; text-align:center; ">3</div>
<div class="styLNAmountBox" style="width:29.8mm;height:11mm;padding-top:7mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$PartIData/ModifiedAGIAmt"/>
</xsl:call-template>
</div>
<div class="styLNRightNumBox" style="width:7.1mm;background-color:lightgrey;border-bottom-width:0px;height:11mm;"/>
<div class="styLNAmountBox" style="width:29.8mm;border-bottom-width:0px;height:11mm;"/>
</span>
</div>
<!--Line 4-->
<div style="width:187mm;">
<span style="float:left;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;padding-top:1mm;padding-left: 2.25mm">4
</div>
<div class="styLNDesc" style="font-size:7pt;width:104.98mm;height:4mm;padding-top:1mm;">
Subtract line 3 from line 2. If zero or less, <b>stop;</b> you cannot take any
education credit
<!--Dotted Line-->
<span class="styBoldText">
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
</span>
</div>
</span>
<span style="float:right;">
<div class="styLNRightNumBox" style="font-size:7pt;height:8mm;padding-top:3mm; width:7.1mm; text-align:center; ">4</div>
<div class="styLNAmountBox" style="width:29.8mm;height:8mm;padding-top:3mm; font-size:7pt;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$PartIData/SubtractAGIFromAmt"/>
</xsl:call-template>
</div>
<div class="styLNRightNumBox" style="width:7.1mm;background-color:lightgrey;border-bottom-width:0px;height:8mm;"/>
<div class="styLNAmountBox" style="width:29.8mm;border-bottom-width:0px;height:8mm;"/>
</span>
</div>
<!--Line 5-->
<div style="width:187mm;">
<span style="float:left;">
<div class="styLNLeftNumBox" style="font-size:7pt;height:4mm;padding-top:1mm;padding-left: 2.25mm">5
</div>
<div class="styLNDesc" style="font-size:7pt;width:104.98mm;height:4mm;padding-top:1mm;">
Enter: $20,000 if married filing jointly; $10,000 if single, head of household,<br/>
or qualifying widow(er)
<!--Dotted Line-->
<span class="styBoldText">
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.