-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIRS1040ScheduleEIC.xsl
845 lines (839 loc) · 48.7 KB
/
IRS1040ScheduleEIC.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
<?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="AddHeader.xsl"/>
<xsl:include href="CommonPathRef.xsl"/>
<xsl:include href="AddOnTable.xsl"/>
<xsl:include href="IRS1040ScheduleEICStyle.xsl"/>
<xsl:output method="html" indent="yes" />
<xsl:strip-space elements="*" />
<xsl:param name="Form1040ScheduleEICData" select="$RtnDoc/IRS1040ScheduleEIC" />
<xsl:template match="/">
<html lang="EN-US">
<head>
<title><xsl:call-template name="FormTitle"><xsl:with-param name="RootElement" select="local-name($Form1040ScheduleEICData)"></xsl:with-param></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 1040ScheduleC" />
<script language="JavaScript" src="{$ScriptPath}/FormDisplay.js" type="text/javascript"></script>
<xsl:call-template name="InitJS"></xsl:call-template>
<style type="text/css">
<xsl:if test="not($Print) or $Print=''">
<!-- Form 1040ScheduleEIC CSS Styles are located in the template called below -->
<xsl:call-template name="IRS1040ScheduleEICStyle"></xsl:call-template>
<xsl:call-template name="AddOnStyle"></xsl:call-template>
</xsl:if>
</style>
<xsl:call-template name="GlobalStylesForm"/>
</head>
<body class="styBodyClass" >
<form name="Form1040ScheduleEIC">
<!-- WARNING LINE -->
<xsl:call-template name="DocumentHeader"></xsl:call-template>
<!-- Begin Form Number and Name -->
<div class="styBB" style="width:187mm;height:20mm;">
<div class="styFNBox" style="width:31mm;height:21.75mm;">
<div style="padding-top:1mm;line-height:180%;">
<span class="styFormNumber" style="font-size:9pt;">SCHEDULE EIC</span>
<br/>
<span class="styFormNumber" style="font-size:7pt;padding-top:2mm;">(Form 1040A or 1040)</span>
<br/>
</div>
<div style="padding-top:5mm;">
<span class="styAgency">Department of the Treasury</span><br/>
<span class="styAgency">Internal Revenue Service <span style="width:3mm" /> (99)</span>
</div>
</div>
<div class="styFTBox" style="width:125mm;height:21.75mm;">
<div class="styMainTitle" style="height:5mm;margin-top:0mm;padding-left:3px;">
<div style="width:70mm;float:left;clear:none;vertical-align:top;padding-top:1mm;padding-left:20mm;"> Earned Income Credit </div>
<div style="float:right;text-align:right;width:19mm;padding-top:2mm;padding-right:13mm;">
<img src="{$ImagePath}/1040SchEIC_Form.gif" alt="Attach image" border="darkgray" width="56" height="57"/>
</div>
<div style="width:69.5mm;font-size:9pt;margin-top:0mm;font-weight:normal;vertical-align:top;float:left;clear:none;padding-left:16mm;padding-bottom:2mm;">
Qualifying Child Information</div>
<div class="styFBT" style="width:90mm;font-size:7pt;margin-top:0mm;font-weight:normal;float:left;text-align:left">
<img src="{$ImagePath}/1040SchEIC_Bullet_Sm.gif" alt="SmallBullet" style="margin-right:2px;"/><i>Complete and attach to Form 1040A or
1040 only if you have a qualifying child.</i></div>
<div class="styFBT" style="width:95mm;font-size:7pt;margin-top:0mm;font-weight:normal;float:left;text-align:left;font-family:Arial Narrow;font-size:7pt;">
<img src="{$ImagePath}/1040SchEIC_Bullet_Sm.gif" alt="SmallBullet" style="margin-right:2px;"/><i>Information about Schedule EIC (Form
1040A or 1040) and its instructions is at</i> www.irs.gov/form1040.</div>
</div>
</div>
<div class="styTYBox" style="width:30mm;height:21.75mm;">
<div class="styOMB" style="height:2mm;">OMB No. 1545-0074</div>
<div class="styTaxYear">
20<span class="styTYColor">12</span>
</div>
<div style="margin-left:3mm; text-align:left;">
Attachment<br/>Sequence No. <span class="styBoldText">43</span>
</div>
</div>
</div>
<!-- End Form Number and Name section -->
<div class="styBB" style="width:187mm;">
<div class="styNameBox" style="width:140mm;height:8mm;font-size:7pt;">
Name(s) shown on return <br/>
<!-- <Name on return>-->
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="TargetNode">Name</xsl:with-param>
</xsl:call-template>
<br/>
</div>
<!--SSN on retun-->
<div class="styEINBox" style="width:45mm;height:8mm;font-size:7pt;padding-left:2mm;font-weight:normal;">
<b>Your social security number</b><br/>
<span style="width:100%;text-align:center;">
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="TargetNode">PrimarySSN</xsl:with-param>
</xsl:call-template>
</span>
</div>
</div>
<!--Note-->
<div class="styBB" style="width:187mm;">
<div class="styGenericDiv" style="width:37mm; height:4.5mm;padding-left: 0px;font-size: 13pt;font-family: Arial;">
<i><b>Before you begin:</b></i>
</div>
<div class="styLNDesc" style="width:149mm;height:17mm;">
<li>See the instructions for Form 1040A, line 38a and 38b, or Form 1040, lines 64a and 64b, to make<br/> <span style="width:4.5mm;"></span>sure that <b>(a) </b>you can
take the EIC, and <b>(b) </b>you have a qualifying child.</li>
<li>Be sure the child’s name on line 1 and social security number (SSN) on line 2 agree with the child’s<br/>
<span style="width:4.5mm;"></span>social security card. Otherwise, at the time we process your return, we may reduce or disallow your <br/><span style="width:4.5mm;">
</span>EIC. If the name or SSN on the child's social security card is not correct, call the Social Security <br/><span style="width:4.5mm;"></span>Administration at 1-800-772-1213.
</li>
</div>
</div>
<!--Caution-->
<div class="styBB" style="width:190.6mm;border-bottom-width:1px">
<div class="styBB" style="width:15mm; border-bottom-width: 0px;height: 17mm;padding-top:3mm;font-size:7pt;">
<img src="{$ImagePath}/1040SchEIC2_Caution.gif" alt="Bullet"/>
</div>
<div class="styLNDesc" style="width:165mm;height:14mm;padding-top:1.5mm;">
<li>If you take the EIC even though you are not eligible, you may not be allowed to take the credit for up to 10 years. See<br/>
<span style="width:4.5mm;"></span> page 2 for details.</li>
<li>It will take us longer to process your return and issue your refund if you do not fill in all lines that apply for each<br/>
<span style="width:4.5mm;"></span>qualifying child.
</li>
</div>
</div>
<!--Qualifying Child information table-->
<!-- BEGIN Qualifying Child title -->
<table class="styTable" style="width:187mm;font-size:7pt;display:table;" cellspacing="0">
<thead>
<tr>
<td colspan="2" class="styBB" style="border-top-width: 2px;border-bottom-width: 2px; width:79mm;">
<div class="styFMT" style="font-size: 13pt;padding-top:1.0mm;padding-bottom:1mm;"><font color="gray" >Qualifying Child Information</font>
</div>
</td>
<td scope="col" class="styBB" style="text-align:center;padding-top:1.0mm;padding-bottom:1mm;font-weight: bold;border-top-width: 2px;border-bottom-width: 2px; width:34mm; font-size:10pt;">Child 1</td>
<td scope="col" class="styBB" style="text-align:center;padding-top:1.0mm;padding-bottom:1mm;font-weight: bold;border-top-width: 2px;border-bottom-width: 2px; width:34mm; font-size:10pt;"> Child 2</td>
<td scope="col" class="styBB" style="text-align:center;padding-top:1.0mm;padding-bottom:1mm;font-weight: bold;border-top-width: 2px;border-bottom-width: 2px; width:34mm; font-size:10pt;"> Child 3</td>
</tr>
<!-- End Qualifying Child title -->
<!-- BEGIN Part II Line Items -->
<!-- BEGIN Left Side Table of Part II-->
<tr>
<td class="styTableCellHeader" style="width:4mm;height:3mm;"/>
<td class="styTableCellHeader" style="width:75mm;height:3mm;"/>
<th scope="col" class="styTableCellHeader" style="width:34mm;height:3mm;border-left-width:1px;border-color:black;border-right-width: 0px;font-weight:normal;">
First name <span style="width:2mm;"></span> Last name
</th>
<th scope="col" class="styTableCellHeader" style="width:34mm;height:3mm;border-left-width:1px;border-color: black;border-right-width: 0px;font-weight:normal;">
First name <span style="width:2mm;"></span> Last name
</th>
<th scope="col" class="styTableCellHeader" style="width:34mm;height:3mm;border-left-width:1px;border-color: black;border-right-width: 0px;font-weight:normal;">
First name <span style="width:2mm;"></span> Last name
</th>
</tr>
</thead>
<tfoot></tfoot>
<tbody>
<!--Line 1-->
<tr>
<td class="styLNLeftNumBoxSD" style="vertical-align:top;width:4mm;padding-top:1mm;padding-left:1.5mm;">1</td>
<td scope="row" class="styFixedUnderline" style="width:75mm;border-bottom-width:1px;padding-top:1mm;" >
<span style="font-size:9pt;"><b>Child's name</b></span><br/>
<span style="font-weight:normal;width:72mm;"> If you have more than three qualifying children, you<br/>
only have to list three to get the maximum credit.</span>
</td>
<xsl:if test="count($Form1040ScheduleEICData/QualifyingChildInformation) <1">
<td class="styLNAmountBox" style="width:34mm;border-right-width:0px;padding-left:1mm;text-align:left;border-bottom-width:1px">
<span style="width:1mm;"></span>
</td>
<td class="styLNAmountBox" style="width:34mm;border-right-width:0px;padding-left:1mm;text-align:left;border-bottom-width:1px">
<span style="width:1mm;"></span>
</td>
<td class="styLNAmountBox" style="width:34mm;border-right-width:0px;padding-left:1mm;text-align:left;border-bottom-width:1px">
<span style="width:1mm;"></span>
</td>
</xsl:if>
<xsl:if test="$Form1040ScheduleEICData/QualifyingChildInformation/ChildFirstAndLastName">
<xsl:call-template name="CreateTable">
<xsl:with-param name="Start" select="position()" />
<xsl:with-param name="Stop" select="position()+3" />
<xsl:with-param name="TargetNode" select="$Form1040ScheduleEICData/QualifyingChildInformation" />
</xsl:call-template>
</xsl:if>
</tr>
<!--Line 2-->
<tr>
<td class="styLNLeftNumBoxSD" style="vertical-align:top;width:4mm;padding-top:1mm;padding-left:1.5mm;">2</td>
<td scope="row" class="styFixedUnderline" style="width:75mm;border-bottom-width:1px;padding-top:1mm:padding-left:0mm;" >
<span style="font-size:9pt;"><b>Child's SSN</b></span><br/>
<span style="font-weight:normal;"> The child must have an SSN as defined in the
instructions for Form 1040A, lines 38a and 38b, or
Form 1040, lines 64a and 64b, unless the child was
born and died in 2012. If your child was born and died
in 2012 and did not have an SSN, enter "Died" on this
line and attach a copy of the child's birth certificate,
death certificate, or hospital medical records.
</span>
</td>
<td class="styLNAmountBox" style="width:34mm;border-right-width:0px;padding-top:10mm;text-align:center">
<xsl:choose>
<xsl:when test="$Form1040ScheduleEICData/QualifyingChildInformation[1]/QualifyingChildSSN">
<xsl:call-template name="PopulateSSN">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleEICData/QualifyingChildInformation[1]/QualifyingChildSSN" />
</xsl:call-template>
</xsl:when>
<xsl:when test="$Form1040ScheduleEICData/QualifyingChildInformation[1]/DiedLiteralCd">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleEICData/QualifyingChildInformation[1]/DiedLiteralCd" />
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<span class="styTableCellPad"/>
</xsl:otherwise>
</xsl:choose>
</td>
<td class="styLNAmountBox" style="width:34mm;border-right-width:0px;padding-top:10mm;text-align:center">
<xsl:choose>
<xsl:when test="$Form1040ScheduleEICData/QualifyingChildInformation[2]/QualifyingChildSSN">
<xsl:call-template name="PopulateSSN">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleEICData/QualifyingChildInformation[2]/QualifyingChildSSN" />
</xsl:call-template>
</xsl:when>
<xsl:when test="$Form1040ScheduleEICData/QualifyingChildInformation[2]/DiedLiteralCd">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleEICData/QualifyingChildInformation[2]/DiedLiteralCd" />
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<span class="styTableCellPad"/>
</xsl:otherwise>
</xsl:choose>
</td>
<td class="styLNAmountBox" style="width:34mm;border-right-width:0px;padding-top:10mm;text-align:center">
<xsl:choose>
<xsl:when test="$Form1040ScheduleEICData/QualifyingChildInformation[3]/QualifyingChildSSN">
<xsl:call-template name="PopulateSSN">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleEICData/QualifyingChildInformation[3]/QualifyingChildSSN" />
</xsl:call-template>
</xsl:when>
<xsl:when test="$Form1040ScheduleEICData/QualifyingChildInformation[3]/DiedLiteralCd">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleEICData/QualifyingChildInformation[3]/DiedLiteralCd" />
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<span class="styTableCellPad"/>
</xsl:otherwise>
</xsl:choose>
</td>
</tr>
<!--Line 3 -->
<tr>
<td class="styLNLeftNumBoxBB" style="vertical-align:top;width:4mm;padding-top:1mm;border-bottom-width:2px;padding-left:1.5mm;">3</td>
<td scope="row" class="styFixedUnderline" style="width:75mm;border-bottom-width:1px;vertical-align:top;padding-top:1mm;border-bottom-width:2px;" >
<span style="font-size:9pt;"><b>Child's year of birth</b></span>
<span style="font-weight:normal;">
</span>
</td>
<xsl:if test="count($Form1040ScheduleEICData/QualifyingChildInformation/ChildYearOfBirth) <1">
<td class="styLNAmountBox" style="width:34mm;border-right-width:0px;padding-top:1mm;text-align:left;border-bottom-width:2px;padding-left:1mm;">
Year <span style="width:2mm;">
</span>
<div style="font-size: 6pt;padding-top:1.0mm;padding-bottom:1mm;text-align:left;color:black;">
<i>If born after 1993 <b>and</b> the child was younger than you (or your spouse, if filing jointly), skip lines 4a and 4b; go to line 5.</i>
</div>
</td>
<td class="styLNAmountBox" style="width:34mm;border-right-width:0px;padding-top:1mm;text-align:left;border-bottom-width:2px;padding-left:1mm;">
Year <span style="width:2mm;">
</span>
<div style="font-size: 6pt;padding-top:1.0mm;padding-bottom:1mm;text-align:left;color:black;">
<i>If born after 1993 <b>and</b> the child was younger than you (or your spouse, if filing jointly), skip lines 4a and 4b; go to line 5.</i>
</div>
</td>
<td class="styLNAmountBox" style="width:34mm;border-right-width:0px;padding-top:1mm;text-align:left;border-bottom-width:2px;padding-left:1mm;">
Year <span style="width:2mm;">
</span>
<div style="font-size: 6pt;padding-top:1.0mm;padding-bottom:1mm;text-align:left;color:black;">
<i>If born after 1993 <b>and</b> the child was younger than you (or your spouse, if filing jointly), skip lines 4a and 4b; go to line 5.</i>
</div>
</td>
</xsl:if>
<xsl:if test="$Form1040ScheduleEICData/QualifyingChildInformation/ChildYearOfBirth">
<xsl:call-template name="CreateTableChildYearOfBirth">
<xsl:with-param name="Start" select="position()" />
<xsl:with-param name="Stop" select="position()+3" />
<xsl:with-param name="TargetNode" select="$Form1040ScheduleEICData/QualifyingChildInformation/ChildYearOfBirth" />
</xsl:call-template>
</xsl:if>
</tr>
<!--Line 4-->
<tr>
<td class="styLNLeftNumBoxBB" style="height:4.0mm;vertical-align:top;width:4.5mm;padding-top:1mm;border-bottom-width:0px;padding-left:1mm;">4<span style="width:.5mm"></span><b>a</b></td>
<td scope="row" class="styFixedUnderline" style="height:4.0mm;width:75mm;border-top-width:0px;vertical-align:top;padding-top:1mm;border-bottom-width:0px" >
<span style="font-size:7pt;">Was the child under age 24 at the end of <br/>2012, a student, and younger than you (or your spouse, if filing jointly)? </span>
</td>
<td class="styLNAmountBox" style="height:4.0mm;width:34mm;border-right-width:0px;padding-top:1mm;border-top-width:0px;text-align:left;padding-left:4mm;">
<span>
<xsl:call-template name="PopulateSpan">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleEICData/QualifyingChildInformation[1]/ChildIsAStudentUnder24Ind" />
</xsl:call-template>
<input type="checkbox" class="styCkbox" name="Checkbox">
<xsl:call-template name="PopulateYesCheckbox">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleEICData/QualifyingChildInformation[1]/ChildIsAStudentUnder24Ind" />
<xsl:with-param name="BackupName">IRS1040ScheduleEICChildsaStudentunder24[1]</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabelYes">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleEICData/QualifyingChildInformation[1]/ChildIsAStudentUnder24Ind"/>
<xsl:with-param name="BackupName">IRS1040ScheduleEICChildsaStudentunder24[1]</xsl:with-param>
</xsl:call-template>
<span class="styBoldText"> Yes</span>
</label>
<span style="width:10mm;"></span>
<input type="checkbox" class="styCkbox" name="Checkbox">
<xsl:call-template name="PopulateNoCheckbox">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleEICData/QualifyingChildInformation[1]/ChildIsAStudentUnder24Ind" />
<xsl:with-param name="BackupName">IRS1040ScheduleEICChildsaStudentunder24[1]</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabelNo">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleEICData/QualifyingChildInformation[1]/ChildIsAStudentUnder24Ind" />
<xsl:with-param name="BackupName">IRS1040ScheduleEICChildsaStudentunder24[1]</xsl:with-param>
</xsl:call-template>
<span class="styBoldText"> No</span>
</label>
</span>
<div style="padding-top:1.0mm;padding-bottom:1mm;text-align:top;font-size:6pt;font-style:italic;">
<div style="color:black;width:16mm;float:left;">Go to <br/>line 5.</div>
<div style="color:black;width:16mm;float:left;">Go to line 4b.</div>
</div>
</td>
<td class="styLNAmountBox" style="height:4.0mm;width:34mm;border-right-width:0px;padding-top:1mm;border-top-width:0px;text-align:left;padding-left:4mm;">
<span>
<xsl:call-template name="PopulateSpan">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleEICData/QualifyingChildInformation[2]/ChildIsAStudentUnder24Ind" />
</xsl:call-template>
<input type="checkbox" class="styCkbox" name="Checkbox">
<xsl:call-template name="PopulateYesCheckbox">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleEICData/QualifyingChildInformation[2]/ChildIsAStudentUnder24Ind" />
<xsl:with-param name="BackupName">IRS1040ScheduleEICChildsaStudentunder24[2]</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabelYes">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleEICData/QualifyingChildInformation[2]/ChildIsAStudentUnder24Ind" />
<xsl:with-param name="BackupName">IRS1040ScheduleEICChildsaStudentunder24[2]</xsl:with-param>
</xsl:call-template>
<span class="styBoldText"> Yes</span>
</label>
<span style="width:10mm;"></span>
<input type="checkbox" class="styCkbox" name="Checkbox">
<xsl:call-template name="PopulateNoCheckbox">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleEICData/QualifyingChildInformation[2]/ChildIsAStudentUnder24Ind" />
<xsl:with-param name="BackupName">IRS1040ScheduleEICChildsaStudentunder24[2]</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabelNo">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleEICData/QualifyingChildInformation[2]/ChildIsAStudentUnder24Ind" />
<xsl:with-param name="BackupName">IRS1040ScheduleEICChildsaStudentunder24[2]</xsl:with-param>
</xsl:call-template>
<span class="styBoldText"> No</span>
</label>
</span>
<div style="padding-top:1.0mm;padding-bottom:1mm;text-align:top;font-size:6pt;font-style:italic;">
<div style="color:black;width:16mm;float:left;">Go to <br/>line 5.</div>
<div style="color:black;width:16mm;float:left;">Go to line 4b.</div>
</div>
</td>
<td class="styLNAmountBox" style="height:4.0mm;width:34mm;border-right-width:0px;padding-top:1mm;border-top-width:0px;text-align:left;padding-left:4mm;">
<span>
<xsl:call-template name="PopulateSpan">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleEICData/QualifyingChildInformation[3]/ChildIsAStudentUnder24Ind" />
</xsl:call-template>
<input type="checkbox" class="styCkbox" name="Checkbox">
<xsl:call-template name="PopulateYesCheckbox">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleEICData/QualifyingChildInformation[3]/ChildIsAStudentUnder24Ind" />
<xsl:with-param name="BackupName">IRS1040ScheduleEICChildsaStudentunder24[3]</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabelYes">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleEICData/QualifyingChildInformation[3]/ChildIsAStudentUnder24Ind" />
<xsl:with-param name="BackupName">IRS1040ScheduleEICChildsaStudentunder24[3]</xsl:with-param>
</xsl:call-template>
<span class="styBoldText"> Yes</span>
</label>
<span style="width:10mm;"></span>
<input type="checkbox" class="styCkbox" name="Checkbox">
<xsl:call-template name="PopulateNoCheckbox">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleEICData/QualifyingChildInformation[3]/ChildIsAStudentUnder24Ind" />
<xsl:with-param name="BackupName">IRS1040ScheduleEICChildsaStudentunder24[3]</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabelNo">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleEICData/QualifyingChildInformation[3]/ChildIsAStudentUnder24Ind" />
<xsl:with-param name="BackupName">IRS1040ScheduleEICChildsaStudentunder24[3]</xsl:with-param>
</xsl:call-template>
<span class="styBoldText"> No</span>
</label>
</span>
<div style="padding-top:1.0mm;padding-bottom:1mm;text-align:top;font-size:6pt;font-style:italic;">
<div style="color:black;width:16mm;float:left;">Go to <br/>line 5.</div>
<div style="color:black;width:16mm;float:left;">Go to line 4b.</div>
</div>
</td>
</tr>
<!--Line 4b-->
<tr>
<td class="styLNLeftNumBoxBB" style="height:4.0mm;vertical-align:top;width:4mm;padding-top:1mm;border-top-width:0px;border-bottom-width:2px;padding-left:3.5mm;"><b>b</b></td>
<td scope="row" class="styFixedUnderline" style="height:4.0mm;width:75mm;border-top-width:1px;vertical-align:top;padding-top:1mm;border-bottom-width:2px" >
Was the child permanently and totally disabled during <br/> any part of 2012?
</td>
<td class="styLNAmountBox" style="height:4.0mm;width:34mm;border-right-width:0px;padding-top:1mm;border-top-width:0px;text-align:left;padding-left:4mm;border-bottom-width:2px">
<span>
<xsl:call-template name="PopulateSpan">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleEICData/QualifyingChildInformation[1]/ChildPermanentlyDisabledInd" />
</xsl:call-template>
<input type="checkbox" class="styCkbox" name="Checkbox">
<xsl:call-template name="PopulateYesCheckbox">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleEICData/QualifyingChildInformation[1]/ChildPermanentlyDisabledInd" />
<xsl:with-param name="BackupName">IRS1040ScheduleEICChildPermanentlyDisabledInd[1]</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabelYes">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleEICData/QualifyingChildInformation[1]/ChildPermanentlyDisabledInd" />
<xsl:with-param name="BackupName">IRS1040ScheduleEICChildPermanentlyDisabledInd[1]</xsl:with-param>
</xsl:call-template>
<span class="styBoldText"> Yes</span>
</label>
<span style="width:10mm;"></span>
<input type="checkbox" class="styCkbox" name="Checkbox">
<xsl:call-template name="PopulateNoCheckbox">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleEICData/QualifyingChildInformation[1]/ChildPermanentlyDisabledInd" />
<xsl:with-param name="BackupName">IRS1040ScheduleEICChildPermanentlyDisabledInd[1]</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabelNo">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleEICData/QualifyingChildInformation[1]/ChildPermanentlyDisabledInd" />
<xsl:with-param name="BackupName">IRS1040ScheduleEICChildPermanentlyDisabledInd[1]</xsl:with-param>
</xsl:call-template>
<span class="styBoldText"> No</span>
</label>
</span>
<div style="padding-top:1.0mm;padding-bottom:1mm;text-align:top;width:33mm;font-size:6pt;color:black;">
<div style="width:13mm;float:left;font-style:italic;">Go to <br/>line 5.</div>
<div style="width:20mm;float:left;"> The child is not a <br/>qualifying child.</div>
</div>
</td>
<td class="styLNAmountBox" style="height:4.0mm;width:34mm;border-right-width:0px;padding-top:1mm;border-top-width:0px;text-align:left;padding-left:4mm;border-bottom-width:2px">
<span>
<xsl:call-template name="PopulateSpan">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleEICData/QualifyingChildInformation[2]/ChildPermanentlyDisabledInd" />
</xsl:call-template>
<input type="checkbox" class="styCkbox" name="Checkbox">
<xsl:call-template name="PopulateYesCheckbox">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleEICData/QualifyingChildInformation[2]/ChildPermanentlyDisabledInd" />
<xsl:with-param name="BackupName">IRS1040ScheduleEICChildPermanentlyDisabledInd[2]</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabelYes">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleEICData/QualifyingChildInformation[2]/ChildPermanentlyDisabledInd" />
<xsl:with-param name="BackupName">IRS1040ScheduleEICChildPermanentlyDisabledInd[2]</xsl:with-param>
</xsl:call-template>
<span class="styBoldText"> Yes</span>
</label>
<span style="width:10mm;"></span>
<input type="checkbox" class="styCkbox" name="Checkbox">
<xsl:call-template name="PopulateNoCheckbox">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleEICData/QualifyingChildInformation[2]/ChildPermanentlyDisabledInd" />
<xsl:with-param name="BackupName">IRS1040ScheduleEICChildPermanentlyDisabledInd[2]</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabelNo">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleEICData/QualifyingChildInformation[2]/ChildPermanentlyDisabledInd" />
<xsl:with-param name="BackupName">IRS1040ScheduleEICChildPermanentlyDisabledInd[2]</xsl:with-param>
</xsl:call-template>
<span class="styBoldText"> No</span>
</label>
</span>
<div style="padding-top:1.0mm;padding-bottom:1mm;text-align:top;width:33mm;font-size:6pt;color:black;">
<div style="width:13mm;float:left;font-style:italic;">Go to <br/>line 5.</div>
<div style="width:20mm;float:left;"> The child is not a <br/>qualifying child.</div>
</div>
</td>
<td class="styLNAmountBox" style="height:4.0mm;width:34mm;border-right-width:0px;padding-top:1mm;border-top-width:0px;text-align:left;padding-left:4mm;border-bottom-width:2px">
<span>
<xsl:call-template name="PopulateSpan">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleEICData/QualifyingChildInformation[3]/ChildPermanentlyDisabledInd" />
</xsl:call-template>
<input type="checkbox" class="styCkbox" name="Checkbox">
<xsl:call-template name="PopulateYesCheckbox">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleEICData/QualifyingChildInformation[3]/ChildPermanentlyDisabledInd" />
<xsl:with-param name="BackupName">IRS1040ScheduleEICChildPermanentlyDisabledInd[3]</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabelYes">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleEICData/QualifyingChildInformation[3]/ChildPermanentlyDisabledInd" />
<xsl:with-param name="BackupName">IRS1040ScheduleEICChildPermanentlyDisabledInd[3]</xsl:with-param>
</xsl:call-template>
<span class="styBoldText"> Yes</span>
</label>
<span style="width:10mm;"></span>
<input type="checkbox" class="styCkbox" name="Checkbox">
<xsl:call-template name="PopulateNoCheckbox">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleEICData/QualifyingChildInformation[3]/ChildPermanentlyDisabledInd" />
<xsl:with-param name="BackupName">IRS1040ScheduleEICChildPermanentlyDisabledInd[3]</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabelNo">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleEICData/QualifyingChildInformation[3]/ChildPermanentlyDisabledInd" />
<xsl:with-param name="BackupName">IRS1040ScheduleEICChildPermanentlyDisabledInd[3]</xsl:with-param>
</xsl:call-template>
<span class="styBoldText"> No</span>
</label>
</span>
<div style="padding-top:1.0mm;padding-bottom:1mm;text-align:top;width:33mm;font-size:6pt;color:black;">
<div style="width:13mm;float:left;font-style:italic;">Go to <br/>line 5.</div>
<div style="width:20mm;float:left;"> The child is not a <br/>qualifying child.</div>
</div>
</td>
</tr>
<!--Line 5-->
<tr>
<td class="styLNLeftNumBoxSD" style="vertical-align:top;width:4mm;padding-top:1mm;padding-left:1.5mm;">5</td>
<td scope="row" class="styFixedUnderline" style="width:75mm;border-bottom-width:1px;padding-top:1mm" >
<span style="font-size:9pt;"><b>Child's relationship to you</b></span><br/>
<span style="font-weight:normal;"> (for example, son, daughter, grandchild,<br/>
niece, nephew, foster child, etc.)
</span>
</td>
<td class="styLNAmountBox" style="width:34mm;border-right-width:0px;padding-top:10mm;text-align:center">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleEICData/QualifyingChildInformation[1]/ChildRelationship" />
</xsl:call-template>
<span class="styTableCellPad"></span>
</td>
<td class="styLNAmountBox" style="width:34mm;border-right-width:0px;padding-top:10mm;text-align:center">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleEICData/QualifyingChildInformation[2]/ChildRelationship" />
</xsl:call-template>
<span class="styTableCellPad"></span>
</td>
<td class="styLNAmountBox" style="width:34mm;border-right-width:0px;padding-top:10mm;text-align:center">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleEICData/QualifyingChildInformation[3]/ChildRelationship" />
</xsl:call-template>
<span class="styTableCellPad"></span>
</td>
</tr>
<!--Line 6-->
<tr>
<td class="styLNLeftNumBoxSD" style="vertical-align:top;width:4mm;padding-top:1mm;padding-left:1.5mm;">6</td>
<td scope="row" style="width:75mm;border-bottom-width:0px;padding-top:1mm" >
<span style="font-size:9pt;"><b>Number of months child lived with</b></span><br/>
<span style="font-size:9pt;"><b>you in the United States during 2012</b></span><br/><br/>
<li>If the child lived with you for more than half of<br/>
<span style="width:4.5mm;"></span> 2012 but less than 7 months, enter "7".</li>
<li>If the child was born or died in 2012 and your<br/>
<span style="width:4.5mm;"></span>home was the child's home for more than half the<br/>
<span style="width:4.5mm;"></span>time he or she was alive during 2012, enter "12."<br/>
</li>
</td>
<!--If child lives with you-->
<xsl:if test="$Form1040ScheduleEICData/QualifyingChildInformation[1]/MonthsChildLivedWithYouCnt">
<td class="styLNAmountBox" style="height:4.0mm;width:34mm;border-right-width:0px;padding-top:10mm;text-align:center;border-bottom-width:0px;">
<div class="styLNLeftNumBoxSD" style="vertical-align:top;width:0mm;padding-top:1mm;padding-left:1.5mm;"></div>
<div class="styFixedUnderline" style="width:7mm;">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleEICData/QualifyingChildInformation[1]/MonthsChildLivedWithYouCnt" />
</xsl:call-template>
<span class="styTableCellPad"></span>
</div>
<span style="padding-top:2mm;width:1mm;">months</span>
<div style="padding-top:1.0mm;padding-bottom:1mm;font-size:6pt;text-align:left;color:black">
<br/>
<span style="width:1mm;"></span>
<span style="color:black" ><i>Do not enter more than 12<br/><span style="width:1mm;"></span> months.</i>
</span>
</div>
</td>
</xsl:if>
<!--If child is kidnapped-->
<xsl:if test="$Form1040ScheduleEICData/QualifyingChildInformation[1]/KidnappedChildCd">
<td class="styLNAmountBox" style="height:4.0mm;width:34mm;border-right-width:0px;padding-top:10mm;text-align:center;border-bottom-width:0px;">
<div class="styLNLeftNumBoxSD" style="vertical-align:top;width:0mm;padding-top:1mm;padding-left:1.5mm;"></div>
<div class="styFixedUnderline" style="width:10mm;float:center">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleEICData/QualifyingChildInformation[1]/KidnappedChildCd" />
</xsl:call-template>
</div>
<span style="padding-top:2mm;width:1mm;"></span>
<div style="padding-top:1.0mm;padding-bottom:1mm;font-size:6pt;text-align:left;">
<br/>
<span style="width:1mm;"></span>
<font color="gray" ><i>Do not enter more than 12<br/><span style="width:1mm;"></span> months.</i>
</font>
</div>
</td>
</xsl:if>
<xsl:if test="$Form1040ScheduleEICData/QualifyingChildInformation[2]/MonthsChildLivedWithYouCnt">
<td class="styLNAmountBox" style="height:4.0mm;width:34mm;border-right-width:0px;padding-top:10mm;text-align:center;border-bottom-width:0px;">
<div class="styLNLeftNumBoxSD" style="vertical-align:top;width:0mm;padding-top:1mm;padding-left:1.5mm;"></div>
<div class="styFixedUnderline" style="width:7mm;">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleEICData/QualifyingChildInformation[2]/MonthsChildLivedWithYouCnt" />
</xsl:call-template>
<span class="styTableCellPad"></span>
</div>
<span style="padding-top:2mm;width:1mm;">months</span>
<div style="padding-top:1.0mm;padding-bottom:1mm;font-size:6pt;text-align:left;">
<br/>
<span style="width:1mm;"></span>
<span style="color:black" ><i>Do not enter more than 12<br/><span style="width:1mm;"></span> months.</i>
</span>
</div>
</td>
</xsl:if>
<xsl:if test="$Form1040ScheduleEICData/QualifyingChildInformation[2]/KidnappedChildCd">
<td class="styLNAmountBox" style="height:4.0mm;width:34mm;border-right-width:0px;padding-top:10mm;text-align:center;border-bottom-width:0px;">
<div class="styLNLeftNumBoxSD" style="vertical-align:top;width:0mm;padding-top:1mm;padding-left:1.5mm;"></div>
<div class="styFixedUnderline" style="width:7mm;float:center">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleEICData/QualifyingChildInformation[2]/KidnappedChildCd" />
</xsl:call-template>
</div>
<span style="padding-top:2mm;width:1mm;">months</span>
<div style="padding-top:1.0mm;padding-bottom:1mm;font-size:6pt;text-align:left;">
<br/>
<span style="width:1mm;"></span>
<span style="color:black" ><i>Do not enter more than 12<br/><span style="width:1mm;"></span> months.</i>
</span>
</div>
</td>
</xsl:if>
<xsl:if test="$Form1040ScheduleEICData/QualifyingChildInformation[3]/MonthsChildLivedWithYouCnt">
<td class="styLNAmountBox" style="height:4.0mm;width:34mm;border-right-width:0px;padding-top:10mm;text-align:center;border-bottom-width:0px;">
<div class="styLNLeftNumBoxSD" style="vertical-align:top;width:0mm;padding-top:1mm;padding-left:1.5mm;"></div>
<div class="styFixedUnderline" style="width:7mm;">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleEICData/QualifyingChildInformation[3]/MonthsChildLivedWithYouCnt" />
</xsl:call-template>
<span class="styTableCellPad"></span>
</div>
<span style="padding-top:2mm;width:1mm;">months</span>
<div style="padding-top:1.0mm;padding-bottom:1mm;font-size:6pt;text-align:left;">
<br/>
<span style="width:1mm;"></span>
<span style="color:black" ><i>Do not enter more than 12<br/><span style="width:1mm;"></span> months.</i>
</span>
</div>
</td>
</xsl:if>
<xsl:if test="$Form1040ScheduleEICData/QualifyingChildInformation[3]/KidnappedChildCd">
<td class="styLNAmountBox" style="height:4.0mm;width:34mm;border-right-width:0px;padding-top:10mm;text-align:center;border-bottom-width:0px;">
<div class="styLNLeftNumBoxSD" style="vertical-align:top;width:0mm;padding-top:1mm;padding-left:1.5mm;"></div>
<div class="styFixedUnderline" style="width:7mm;float:center">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleEICData/QualifyingChildInformation[3]/KidnappedChildCd" />
</xsl:call-template>
</div>
<span style="padding-top:2mm;width:1mm;">months</span>
<div style="padding-top:1.0mm;padding-bottom:1mm;font-size:6pt;text-align:left;">
<br/>
<span style="width:1mm;"></span>
<span style="color:black" ><i>Do not enter more than 12<br/><span style="width:1mm;"></span> months.</i>
</span>
</div>
</td>
</xsl:if>
<!--Blank lines for no children-->
<xsl:if test="(count($Form1040ScheduleEICData/QualifyingChildInformation) = 0) ">
<td class="styLNAmountBox" style="height:4.0mm;width:34mm;border-right-width:0px;padding-top:10mm;text-align:center;border-bottom-width:0px;">
<div class="styLNLeftNumBoxSD" style="vertical-align:top;width:0mm;padding-top:1mm;padding-left:1.5mm;"></div>
<div class="styFixedUnderline" style="width:10mm;float:center">
</div>
<span style="padding-top:2mm;width:1mm;"></span>
<div style="padding-top:1.0mm;padding-bottom:1mm;font-size:6pt;text-align:left;">
<br/>
<span style="width:1mm;"></span>
<span style="color:black" ><i>Do not enter more than 12<br/><span style="width:1mm;"></span> months.</i>
</span>
</div>
</td>
</xsl:if>
<!--Blank lines for no children-->
<xsl:if test="(count($Form1040ScheduleEICData/QualifyingChildInformation) <= 1) ">
<td class="styLNAmountBox" style="height:4.0mm;width:34mm;border-right-width:0px;padding-top:10mm;text-align:center;border-bottom-width:0px;">
<div class="styLNLeftNumBoxSD" style="vertical-align:top;width:0mm;padding-top:1mm;padding-left:1.5mm;"></div>
<div class="styFixedUnderline" style="width:7mm;float:center">
</div>
<span style="padding-top:2mm;width:1mm;">months</span>
<div style="padding-top:1.0mm;padding-bottom:1mm;font-size:6pt;text-align:left;">
<br/>
<span style="width:1mm;"></span>
<span style="color:black" ><i>Do not enter more than 12<br/><span style="width:1mm;"></span> months.</i>
</span>
</div>
</td>
</xsl:if>
<!--Blank lines for no children-->
<xsl:if test="(count($Form1040ScheduleEICData/QualifyingChildInformation) <=2) ">
<td class="styLNAmountBox" style="height:4.0mm;width:34mm;border-right-width:0px;padding-top:10mm;text-align:center;border-bottom-width:0px;">
<div class="styLNLeftNumBoxSD" style="vertical-align:top;width:0mm;padding-top:1mm;padding-left:1.5mm;"></div>
<div class="styFixedUnderline" style="width:7mm;float:center">
</div>
<span style="padding-top:2mm;width:1mm;">months</span>
<div style="padding-top:1.0mm;padding-bottom:1mm;font-size:6pt;text-align:left;">
<br/>
<span style="width:1mm;"></span>
<span style="color:black" ><i>Do not enter more than 12<br/><span style="width:1mm;"></span> months.</i>
</span>
</div>
</td>
</xsl:if>
</tr>
</tbody>
</table>
<!--TIP-->
<div class="styFixedUnderline" style="width:187mm;padding-top:0mm;height:0.5mm;border-bottom-width:0px;border-top-width:2px;">
<!-- Footer-->
<div style="float:left;">
<span class="styBoldText">For Paperwork Reduction Act Notice, see your tax
<span style="width:80px;"></span>
<span style="font-weight:normal;">Cat. No. 13339M </span>
<br/>return instructions. </span>
</div>
<div style="float:right;">
<span style="width:20px;"></span>
<span class="styBoldText" >Schedule EIC (Form 1040A or 1040) 2012 </span>
</div>
</div>
<br/> <br/>
<div class="pageEnd" style="width:187mm;"> </div>
<!-- BEGIN Left Over Table -->
<!-- Additonal Data Title Bar and Button -->
<!-- Additonal Data Title Bar and Button -->
<div class="styLeftOverTitleLine" id="LeftoverData">
<div class="styLeftOverTitle">
Additional Data
</div>
<div class="styLeftOverButtonContainer">
<input class="styLeftoverTableBtn" type="button" TabIndex="1" value="Return to Form" onclick="javascript:returnToWriteInImage();"/>
</div>
</div>
<!-- Additional Data Table -->
<table class="styLeftOverTbl">
<xsl:call-template name="PopulateCommonLeftover">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleEICData" />
<xsl:with-param name="DescWidth" select="100"/>
</xsl:call-template>
<xsl:for-each select="$Form1040ScheduleEICData/QualifyingChildInformation">
<xsl:call-template name="PopulateLeftoverRow">
<xsl:with-param name="Desc">Line 1 - Child <xsl:number value="position()" format="1"/> Name Control</xsl:with-param>
<xsl:with-param name="TargetNode" select="QualifyingChildNameControl"/>
<xsl:with-param name="DescWidth" select="100"/>
</xsl:call-template>
</xsl:for-each>
</table>
<!-- END Left Over Table -->
</form>
</body>
</html>
</xsl:template>
<xsl:template name="CreateTable">
<xsl:param name="Start" />
<xsl:param name="Stop" />
<xsl:param name="TargetNode" />
<xsl:if test="$Start < $Stop">
<td class="styLNAmountBox" style="width:34mm;border-right-width:0px;padding-left:1mm;text-align:left;border-bottom-width:1px">
<xsl:call-template name="PopulateName">
<xsl:with-param name="TargetNode" select="$TargetNode[position()=$Start]" />
</xsl:call-template>
</td>
<xsl:call-template name="CreateTable">
<xsl:with-param name="Start" select="$Start + 1" />
<xsl:with-param name="Stop" select="$Stop" />
<xsl:with-param name="TargetNode" select="$TargetNode" />
</xsl:call-template>
</xsl:if>
</xsl:template>
<xsl:template name="PopulateName">
<xsl:param name="TargetNode" />
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$TargetNode/ChildFirstAndLastName/PersonFirstName" />
</xsl:call-template>
<span style="width:1mm;"></span>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$TargetNode/ChildFirstAndLastName/PersonLastName" />
</xsl:call-template>
<span style="width:1mm;"/>
<xsl:call-template name="LinkToLeftoverDataTableInline">
<xsl:with-param name="Desc">Line 1 - Qualifying Child Name Control</xsl:with-param>
<xsl:with-param name="TargetNode" select="$TargetNode/QualifyingChildNameControl" />
</xsl:call-template>
</xsl:template>
<xsl:template name="CreateTableChildYearOfBirth">
<xsl:param name="Start" />
<xsl:param name="Stop" />
<xsl:param name="TargetNode" />
<xsl:if test="$Start < $Stop">
<td class="styLNAmountBox" style="width:34mm;border-right-width:0px;padding-top:1mm;text-align:center;border-bottom-width:2px">
Year <span style="width:2mm;">
</span>
<xsl:call-template name="PopulateYear1">
<xsl:with-param name="TargetNode" select="$TargetNode[position()=$Start]" />
</xsl:call-template>
<div style="font-size:6pt;padding-top:1.0mm;padding-bottom:1mm;text-align:left;color:black;padding-left:2mm;">
<i>If born after 1993 <b>and</b> the child was younger than you (or your spouse, if filing jointly), skip lines 4a and 4b; go to line 5.</i>
</div>
</td>
<xsl:call-template name="CreateTableChildYearOfBirth">
<xsl:with-param name="Start" select="$Start + 1" />
<xsl:with-param name="Stop" select="$Stop" />
<xsl:with-param name="TargetNode" select="$TargetNode" />
</xsl:call-template>
</xsl:if>
</xsl:template>
<xsl:template name="PopulateYear1">
<xsl:param name="TargetNode" />
<xsl:call-template name="PopulateYear">
<xsl:with-param name="TargetNode" select="$TargetNode" />
</xsl:call-template>
</xsl:template>
<xsl:template name="AddPositionNumber">
<xsl:if test="position()=1">1</xsl:if>
<xsl:if test="position()=2">2</xsl:if>
<xsl:if test="position()=3">3</xsl:if>
</xsl:template>
</xsl:stylesheet>