-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIRS8615.xsl
699 lines (697 loc) · 35.8 KB
/
IRS8615.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
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:include href="PopulateTemplate.xsl"/>
<xsl:include href="CommonPathRef.xsl"/>
<xsl:include href="AddHeader.xsl"/>
<xsl:include href="AddOnTable.xsl"/>
<xsl:include href="IRS8615Style.xsl"/>
<xsl:output method="html" indent="yes"/>
<xsl:strip-space elements="*"/>
<!-- Defines the stage of the data, e.g. original or latest -->
<xsl:param name="FormData" select="$RtnDoc/IRS8615"/>
<xsl:template match="/">
<html>
<head>
<title>
<xsl:call-template name="FormTitle">
<xsl:with-param name="RootElement" select="local-name($FormData)"/>
</xsl:call-template>
</title>
<!-- No Browser Caching -->
<meta http-equiv="Pragma" content="no-cache"/>
<meta http-equiv="Cache-Control" content="no-cache"/>
<meta http-equiv="Expires" content="0"/>
<!-- No Proxy Caching -->
<meta http-equiv="Cache-Control" content="private"/>
<!-- Define Character Set -->
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
<meta name="Description" content="IRS Form 8615"/>
<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="IRS8615Style"/>
<xsl:call-template name="AddOnStyle"/>
</xsl:if>
</style>
<xsl:call-template name="GlobalStylesForm"/>
</head>
<body class="styBodyClass">
<form name="Form8615">
<!--xsl:value-of select='$PageWatermark'/-->
<!-- BEGIN WARNING LINE -->
<xsl:call-template name="DocumentHeader"/>
<!-- END WARNING LINE -->
<!-- Begin Form Number and Name -->
<div class="styBB" style="width:187mm;">
<div class="styFNBox" style="width:31mm;height:22mm;">
Form <span class="styFormNumber">8615</span>
<div class="styAgency" style="padding-top:5mm;">Department of the Treasury<br/>Internal Revenue Service (99)</div>
</div>
<div class="styFTBox" style="width:125mm;height:22mm;">
<div class="styMainTitle" style="height:8mm;padding-top:2mm;">Tax for Certain Children Who Have Investment<br/>Income of More Than $1,900</div>
<div class="styFST" style="font-size:7pt;padding-top:2mm;">
<img src="{$ImagePath}/3903_Bullet.gif" width="9" height="9" alt="bullet image"/> Attach only to the child's Form 1040, Form 1040A, or Form 1040NR.<br/>
<img src="{$ImagePath}/3903_Bullet.gif" width="9" height="9" alt="bullet image"/> See separate instructions.
</div>
</div>
<div class="styTYBox" style="width:30mm;height:22mm;">
<div class="styOMB" style="height:1mm;">OMB No. 1545-0074</div>
<div class="styTY" style="height:7mm;font-size:22pt;">20<span class="styTYColor">12</span></div>
<div class="stySequence" style="height:9mm;border-bottom-width:0px;padding-left:4mm;border-left-width:0px;">Attachment<br/>
Sequence No. <span class="styBoldText">33</span>
</div>
</div>
</div>
<!-- End Form Number and Name section -->
<!-- Begin Names and Identifying number section -->
<div class="styBB" style="width:187mm;float:none;clear:none;">
<div class="styNameBox" style="width:136mm;height:8mm;font-size:7pt;">
<div>Child's name shown on return</div>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$RtnHdrData/Filer/Name"/>
</xsl:call-template>
</div>
<div class="styEINBox" style="width:50mm;height:4mm;padding-left:2mm;font-size:7pt;font-weight:bold;">
<div>Child's social security number</div>
<span style="width:42mm;text-align:center;font-weight:normal;">
<xsl:call-template name="PopulateSSN">
<xsl:with-param name="TargetNode" select="$RtnHdrData/Filer/PrimarySSN"/>
</xsl:call-template>
</span>
</div>
</div>
<div class="styBB" style="width:187mm;height:12mm;">
<div class="styGenericDiv" style="width:30mm;font-weight:bold;font-style:italic;">Before you begin:</div>
<div class="styGenericDiv" style="width:156mm;padding-bottom:2mm;">
If the child, the parent, or any of the parent's other children for whom Form 8615 must be filed must use the Schedule
D Tax Worksheet or has income from farming or fishing, see <b>Pub. 929,</b> Tax Rules for Children and Dependents. It
explains how to figure the child's tax using the <b>Schedule D Tax Worksheet or Schedule J</b> (Form 1040).</div>
</div>
<div class="styBB" style="width:187mm;float:none;clear:none;">
<div class="styNameBox" style="width:136mm;height:8mm;font-size:7pt;">
<div>
<span style="font-weight:bold;padding-right:2mm;">A</span>
Parent's name (first, initial, and last).
<b>Caution: </b>
<i>See instructions before completing.</i>
</div>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$FormData/ParentNm"/>
</xsl:call-template>
</div>
<div class="styEINBox" style="width:50mm;height:4mm;padding-left:2mm;font-size:7pt;font-weight:bold;">
<div>
<span style="font-weight:bold;padding-right:2mm;">B</span>Parent's social security number</div>
<span style="width:42mm;text-align:center;font-weight:normal;">
<xsl:call-template name="PopulateSSN">
<xsl:with-param name="TargetNode" select="$FormData/SSN"/>
</xsl:call-template>
</span>
</div>
</div>
<div class="styBB" style="width:187mm;float:none;clear:left;padding-bottom:1mm;">
<div class="styNameBox" style="width:187mm;height:8mm;font-size:7pt;border-right:none;">
<div>
<span style="font-weight:bold;padding-right:2mm;">C</span>Parent's filing status (check one):
<xsl:call-template name="LinkToLeftoverDataTableInline">
<xsl:with-param name="Desc">Filing Status Estimated Code</xsl:with-param>
<xsl:with-param name="TargetNode" select="$FormData/IndividualReturnFilingStatusCd/@filingStatusEstimatedCd"/>
</xsl:call-template>
</div>
<span style="margin:0mm 3mm;">
<input type="checkbox">
<xsl:call-template name="PopulateEnumeratedCheckbox">
<xsl:with-param name="TargetNode" select="$FormData/IndividualReturnFilingStatusCd"/>
<xsl:with-param name="DisplayedCheckboxValue" select="'1'"/>
<xsl:with-param name="BackupName">IRS8615IndividualReturnFilingStatusCd[1]</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$FormData/IndividualReturnFilingStatusCd"/>
<xsl:with-param name="DisplayedCheckboxValue" select="'1'"/>
<xsl:with-param name="BackupName">IRS1040IndividualReturnFilingStatusCd[1]</xsl:with-param>
</xsl:call-template>
Single
</label>
</span>
<span style="margin:0mm 3mm;">
<input type="checkbox">
<xsl:call-template name="PopulateEnumeratedCheckbox">
<xsl:with-param name="TargetNode" select="$FormData/IndividualReturnFilingStatusCd"/>
<xsl:with-param name="DisplayedCheckboxValue" select="'2'"/>
<xsl:with-param name="BackupName">IRS8615IndividualReturnFilingStatusCd[2]</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$FormData/IndividualReturnFilingStatusCd"/>
<xsl:with-param name="DisplayedCheckboxValue" select="'2'"/>
<xsl:with-param name="BackupName">IRS1040IndividualReturnFilingStatusCd[2]</xsl:with-param>
</xsl:call-template>
Married filing jointly
</label>
</span>
<span style="margin:0mm 3mm;">
<input type="checkbox">
<xsl:call-template name="PopulateEnumeratedCheckbox">
<xsl:with-param name="TargetNode" select="$FormData/IndividualReturnFilingStatusCd"/>
<xsl:with-param name="DisplayedCheckboxValue" select="'3'"/>
<xsl:with-param name="BackupName">IRS8615IndividualReturnFilingStatusCd[3]</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$FormData/IndividualReturnFilingStatusCd"/>
<xsl:with-param name="DisplayedCheckboxValue" select="'3'"/>
<xsl:with-param name="BackupName">IRS1040IndividualReturnFilingStatusCd[3]</xsl:with-param>
</xsl:call-template>
Married filing separately
</label>
</span>
<span style="margin:0mm 3mm;">
<input type="checkbox">
<xsl:call-template name="PopulateEnumeratedCheckbox">
<xsl:with-param name="TargetNode" select="$FormData/IndividualReturnFilingStatusCd"/>
<xsl:with-param name="DisplayedCheckboxValue" select="'4'"/>
<xsl:with-param name="BackupName">IRS8615IndividualReturnFilingStatusCd[4]</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$FormData/IndividualReturnFilingStatusCd"/>
<xsl:with-param name="DisplayedCheckboxValue" select="'4'"/>
<xsl:with-param name="BackupName">IRS1040IndividualReturnFilingStatusCd[4]</xsl:with-param>
</xsl:call-template>
Head of household
</label>
</span>
<span style="margin:0mm 3mm;">
<input type="checkbox">
<xsl:call-template name="PopulateEnumeratedCheckbox">
<xsl:with-param name="TargetNode" select="$FormData/IndividualReturnFilingStatusCd"/>
<xsl:with-param name="DisplayedCheckboxValue" select="'5'"/>
<xsl:with-param name="BackupName">IRS8615IndividualReturnFilingStatusCd[5]</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$FormData/IndividualReturnFilingStatusCd"/>
<xsl:with-param name="DisplayedCheckboxValue" select="'5'"/>
<xsl:with-param name="BackupName">IRS1040IndividualReturnFilingStatusCd[5]</xsl:with-param>
</xsl:call-template>
Qualifying widow(er)
</label>
</span>
</div>
</div>
<!-- Part I header -->
<div class="styBB" style="width: 187mm">
<div class="styPartName" style="font-family:sans-serif;height:3.75mm;">Part I</div>
<div class="styPartDesc">Child's Net Investment Income</div>
</div>
<div class="styBB" style="width:187mm;">
<!-- Vertical spacer row -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="width:5mm;height:4.5mm"/>
<div class="styLNDesc" style="width:141mm;height:4.5mm;"/>
<div class="styLNRightNumBox" style="height:4.5mm;border-bottom:none;"/>
<div class="styLNAmountBox" style="height:4.5mm;border-bottom:none;"/>
</div>
<!-- Line 1 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="padding-left:2.75mm;width:5mm;height:4.5mm">1 </div>
<div class="styLNDesc" style="width:141mm;height:4.5mm;">
Enter the child's investment income (see instructions)
<span style="letter-spacing:3mm;">...................</span>
</div>
<div class="styLNRightNumBox" style="height:4.5mm;position:relative">
<span style="position:absolute;bottom:0">1</span>
</div>
<div class="styLNAmountBox" style="height:4.5mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/ChildInvestmentIncomeAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Line 2 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="padding-left:2.75mm;width:5mm;height:8mm">2</div>
<div class="styLNDesc" style="width:141mm;height:8mm;">
If the child <b>did not</b> itemize deductions on <b>Schedule A</b> (Form 1040 or Form 1040NR), enter
$1,900. Otherwise, see instructions
<span style="letter-spacing:3mm;">............................</span>
</div>
<div class="styLNRightNumBox" style="height:8mm;position:relative">
<span style="position:absolute;bottom:0">2</span>
</div>
<div class="styLNAmountBox" style="height:8mm;padding-top:4mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/KiddieDeductionAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Line 3 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="padding-left:2.75mm;width:5mm;height:8mm">3</div>
<div class="styLNDesc" style="width:141mm;height:8mm;">
Subtract line 2 from line 1. If zero or less, <b>stop;</b> do not complete the rest of this form but <b>do</b>
attach it to the child's return
<span style="letter-spacing:3mm;">................................</span>
</div>
<div class="styLNRightNumBox" style="height:8mm;position:relative">
<span style="position:absolute;bottom:0">3</span>
</div>
<div class="styLNAmountBox" style="height:8mm;padding-top:4mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/ChildUnearnedIncomeAdjustedAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Line 4 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="padding-left:2.75mm;width:5mm;height:8mm">4</div>
<div class="styLNDesc" style="width:141mm;height:8mm;">
Enter the child's <b>taxable income</b> from Form 1040, line 43; Form 1040A, line 27; or Form 1040NR,
line 41. If the child files Form 2555 or 2555-EZ, see the instructions
<span style="letter-spacing:3mm;">................</span>
</div>
<div class="styLNRightNumBox" style="height:8mm;position:relative">
<span style="position:absolute;bottom:0">4</span>
</div>
<div class="styLNAmountBox" style="height:8mm;padding-top:4mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/ChildTaxableIncomeAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Line 5 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="padding-left:2.75mm;width:5mm;height:8mm">5</div>
<div class="styLNDesc" style="width:141mm;height:8mm;">
Enter the <b>smaller</b> of line 3 or line 4. If zero, <b>stop</b>; do not complete the rest of this form but
<b>do</b> attach it to the child's return
<span style="letter-spacing:3mm;">................................</span>
</div>
<div class="styLNRightNumBox" style="height:8mm;position:relative;border-bottom:none;">
<span style="position:absolute;bottom:0">5</span>
</div>
<div class="styLNAmountBox" style="height:8mm;padding-top:4mm;border-bottom:none;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/ChildNetInvestmentIncomeAmt"/>
</xsl:call-template>
</div>
</div>
</div>
<!-- Part II header -->
<div class="styBB" style="width: 187mm">
<div class="styPartName" style="font-family:sans-serif;height:3.75mm;">Part II</div>
<div class="styPartDesc">Tentative Tax Based on the Tax Rate of the Parent</div>
</div>
<div class="styBB" style="width:187mm;">
<!-- Line 6 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="height:11mm;padding-left:2.75mm;width:5mm;">6</div>
<div class="styLNDesc" style="height:11mm;width:141mm;">
Enter the parent's <b>taxable income</b> from Form 1040, line 43; Form 1040A, line 27; Form 1040EZ,
line 6; Form 1040NR, line 41; or Form 1040NR-EZ, line 14. If zero or less, enter -0-. If the parent
files Form 2555 or 2555-EZ, see the instructions
<span style="letter-spacing:3mm;">.......................</span>
<xsl:call-template name="LinkToLeftoverDataTableInline">
<xsl:with-param name="Desc">Parent Taxable Income Estimated Code</xsl:with-param>
<xsl:with-param name="TargetNode" select="$FormData/ParentTaxableIncomeAmt/@parentTaxableIncomeEstimatedCd"/>
</xsl:call-template>
</div>
<div class="styLNRightNumBox" style="height:11mm;position:relative">
<span style="position:absolute;bottom:0">6</span>
</div>
<div class="styLNAmountBox" style="height:11mm;padding-top:7mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/ParentTaxableIncomeAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Line 7 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="padding-left:2.75mm;width:5mm;height:8mm">7</div>
<div class="styLNDesc" style="width:141mm;height:8mm;">
Enter the total, if any, from Forms 8615, line 5, of <b>all other</b> children of the parent named above.
<b>Do not</b> include the amount from line 5 above
<span style="letter-spacing:3mm;">.......................</span>
<xsl:call-template name="LinkToLeftoverDataTableInline">
<xsl:with-param name="Desc">Other Children Investment Income Estimated Code</xsl:with-param>
<xsl:with-param name="TargetNode" select="$FormData/OtherChildrenInvestmentIncAmt/@othChildrenInvestmentIncEstCd"/>
</xsl:call-template>
</div>
<div class="styLNRightNumBox" style="height:8mm;position:relative">
<span style="position:absolute;bottom:0">7</span>
</div>
<div class="styLNAmountBox" style="height:8mm;padding-top:4mm;padding-left:0mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/OtherChildrenInvestmentIncAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Line 8 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="padding-left:2.75mm;width:5mm;height:4.5mm">8 </div>
<div class="styLNDesc" style="width:141mm;height:4.5mm;">
Add lines 5, 6, and 7 (see instructions)<span style="letter-spacing:3mm;">........................</span>
</div>
<div class="styLNRightNumBox" style="height:4.5mm;position:relative">
<span style="position:absolute;bottom:0">8</span>
</div>
<div class="styLNAmountBox" style="height:4.5mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/FamilyIncomeAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Line 9 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="height:11mm;padding-left:2.75mm;width:5mm;">9</div>
<div class="styLNDesc" style="height:11mm;width:141mm;position:relative;">
<div style="width:20mm;position:absolute;bottom:0;right:0;">
<img src="{$ImagePath}/3903_Bullet.gif" width="9" height="9" alt="bullet image" style="margin:0mm 3mm;"/>
<input type="checkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$FormData/FamilyCapitalGainsTaxInd"/>
<xsl:with-param name="BackupName">FormDataFamilyCapitalGainsTaxInd</xsl:with-param>
</xsl:call-template>
</input>
</div>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$FormData/FamilyCapitalGainsTaxInd"/>
<xsl:with-param name="BackupName">FormDataFamilyCapitalGainsTaxInd</xsl:with-param>
</xsl:call-template>
Enter the tax on the amount on line 8 based on the <b>parent's</b> filing status above (see instructions).
If the Qualified Dividends and Capital Gain Tax Worksheet, Schedule D Tax Worksheet, or
Schedule J (Form 1040) is used to figure the tax, check here
</label>
<span style="letter-spacing:3mm;">..................</span>
</div>
<div class="styLNRightNumBox" style="height:11mm;position:relative">
<span style="position:absolute;bottom:0">9</span>
</div>
<div class="styLNAmountBox" style="height:11mm;padding-top:7mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/FamilyTentativeTaxAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Line 10 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="height:18mm;width:5mm;">10</div>
<div class="styLNDesc" style="height:18mm;width:141mm;position:relative;">
<div style="width:20mm;position:absolute;bottom:0;right:0;">
<img src="{$ImagePath}/3903_Bullet.gif" width="9" height="9" alt="bullet image" style="margin:0mm 3mm;"/>
<input type="checkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$FormData/ParentCapitalGainsTaxInd"/>
<xsl:with-param name="BackupName">FormDataParentCapitalGainsTaxInd</xsl:with-param>
</xsl:call-template>
</input>
</div>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$FormData/ParentCapitalGainsTaxInd"/>
<xsl:with-param name="BackupName">FormDataParentCapitalGainsTaxInd</xsl:with-param>
</xsl:call-template>
Enter the parent's tax from Form 1040, line 44; Form 1040A, line 28, minus any alternative
minimum tax; Form 1040EZ, line 10; Form 1040NR, line 42; or Form 1040NR-EZ, line 15. <b>Do not</b>
include any tax from <b>Form 4972</b> or <b>8814</b> or any tax from recapture of an education credit. If the
parent files Form 2555 or 2555-EZ, see the instructions. If the Qualified Dividends and Capital
Gain Tax Worksheet, Schedule D Tax Worksheet, or Schedule J (Form 1040) was used to figure
the tax, check here
</label>
<span style="letter-spacing:3mm;">.....</span>
</div>
<div class="styLNRightNumBox" style="height:18mm;padding-top:14mm;">
10
</div>
<div class="styLNAmountBox" style="height:18mm;padding-top:14mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/ParentTentativeTaxAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Line 11 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="width:5mm;height:8mm">11</div>
<div class="styLNDesc" style="width:141mm;height:8mm;">
Subtract line 10 from line 9 and enter the result. If line 7 is blank, also enter this amount on line
13 and go to <b>Part III</b>
<span style="letter-spacing:3mm;">..................................</span>
</div>
<div class="styLNRightNumBox" style="height:8mm;padding-top:4mm;">
11
</div>
<div class="styLNAmountBox" style="height:8mm;padding-top:4mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/ChildrenTaxAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Line 12a -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="width:6mm;height:4.5mm">12a</div>
<div class="styLNDesc" style="width:99.9mm;height:4.5mm;padding-left:.5mm;">
Add lines 5 and 7<span style="letter-spacing:3mm;">....................</span>
</div>
<div class="styLNRightNumBox" style="height:4.5mm;position:relative;text-align:left;">
<div style="position:absolute;bottom:0;text-align:center;width:8mm;">12a</div>
</div>
<div class="styLNAmountBox" style="height:4.5mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/NetChildrenInvestmentIncomeAmt"/>
</xsl:call-template>
</div>
<div style="float:left;border-left:1px solid black;height:4.5mm;background-color:lightgrey;width:8mm;"/>
<div class="styLNAmountBox" style="height:4.5mm;border-bottom:none;"/>
</div>
<!-- Line 12b -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="padding-left:4.5mm;width:5mm;height:4.5mm">b </div>
<div class="styLNDesc" style="width:139.85mm;height:4.5mm;padding-left:.5mm;">
Divide line 5 by line 12a. Enter the result as a decimal (rounded to at least three places)
<span style="letter-spacing:3mm;">......</span>
</div>
<div class="styLNRightNumBox" style="height:4.5mm;position:relative;text-align:left">
<div style="position:absolute;bottom:0;text-align:center;width:8mm;">12b</div>
</div>
<div class="styLNAmountBox" style="height:4.5mm;color:darkblue;">
<span style="float:left;padding-left:16mm;">x</span>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$FormData/ChildrenInvestmentPct"/>
</xsl:call-template>
</div>
</div>
<!-- Line 13 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="width:5mm;height:4.5mm">13 </div>
<div class="styLNDesc" style="width:141mm;height:4.5mm;">
Multiply line 11 by line 12b<span style="letter-spacing:3mm;">............................</span>
</div>
<div class="styLNRightNumBox" style="height:4.5mm;border-bottom:none;">
13
</div>
<div class="styLNAmountBox" style="height:4.5mm;border-bottom:none">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/ChildrenInvestmentAllcblTaxAmt"/>
</xsl:call-template>
</div>
</div>
</div>
<!-- Part III header -->
<div class="styBB" style="width: 187mm">
<div class="styPartName" style="font-family:sans-serif;height:3.75mm;">Part III</div>
<div class="styPartDesc" style="font-weight:normal;">
<b>Child's Tax-</b>If lines 4 and 5 above are the same, enter -0- on line 15 and go to line 16.</div>
</div>
<!-- Vertical spacer row -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="padding-left:1mm;width:6mm;height:4.5mm"/>
<div class="styLNDesc" style="width:100mm;height:4.5mm;"/>
<div class="styLNRightNumBox" style="height:4.5mm;position:relative;text-align:left;border-bottom:none;"/>
<div class="styLNAmountBox" style="height:4.5mm;border-bottom:none;"/>
<div style="float:left;border-left:1px solid black;height:4.5mm;background-color:lightgrey;width:8mm;"/>
<div class="styLNAmountBox" style="height:4.5mm;border-bottom:none;"/>
</div>
<!-- Line 14 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="width:6mm;height:4.5mm">14</div>
<div class="styLNDesc" style="width:100mm;height:4.5mm;">
Subtract line 5 from line 4
<span style="letter-spacing:3mm;">.................</span>
</div>
<div class="styLNRightNumBox" style="height:4.5mm;">
14
</div>
<div class="styLNAmountBox" style="height:4.5mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/ChildNetIncomeAmt"/>
</xsl:call-template>
</div>
<div style="float:left;border-left:1px solid black;height:4.5mm;background-color:lightgrey;width:8mm;"/>
<div class="styLNAmountBox" style="height:4.5mm;border-bottom:none;"/>
</div>
<!-- Vertical spacer row -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="width:5mm;height:4.5mm"/>
<div class="styLNDesc" style="width:141mm;height:4.5mm;"/>
<div class="styLNRightNumBox" style="height:4.5mm;border-bottom:none;"/>
<div class="styLNAmountBox" style="height:4.5mm;border-bottom:none;"/>
</div>
<!-- Line 15 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="height:11mm;width:5mm;">15</div>
<div class="styLNDesc" style="height:11mm;width:141mm;position:relative;">
<div style="width:20mm;position:absolute;bottom:0;right:0;">
<img src="{$ImagePath}/3903_Bullet.gif" width="9" height="9" alt="bullet image" style="margin:0mm 3mm;"/>
<input type="checkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$FormData/ChildUnearnedIncomeInd"/>
<xsl:with-param name="BackupName">FormDataChildUnearnedIncomeInd</xsl:with-param>
</xsl:call-template>
</input>
</div>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$FormData/ChildUnearnedIncomeInd"/>
<xsl:with-param name="BackupName">FormDataChildUnearnedIncomeInd</xsl:with-param>
</xsl:call-template>
Enter the tax on the amount on line 14 based on the <b>child's</b> filing status (see instructions). If
the Qualified Dividends and Capital Gain Tax Worksheet, Schedule D Tax Worksheet, or
Schedule J (Form 1040) is used to figure the tax, check here
</label>
<span style="letter-spacing:3mm;">.....................</span>
</div>
<div class="styLNRightNumBox" style="height:11mm;padding-top:7mm;">
15
</div>
<div class="styLNAmountBox" style="height:11mm;padding-top:7mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/ChildNetIncomeTaxAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Vertical spacer row -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="width:5mm;height:4.5mm"/>
<div class="styLNDesc" style="width:141mm;height:4.5mm;"/>
<div class="styLNRightNumBox" style="height:4.5mm;border-bottom:none;"/>
<div class="styLNAmountBox" style="height:4.5mm;border-bottom:none;"/>
</div>
<!-- Line 16 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="width:5mm;height:4.5mm">16</div>
<div class="styLNDesc" style="width:141mm;height:4.5mm;">
Add lines 13 and 15
<span style="letter-spacing:3mm;">..............................</span>
</div>
<div class="styLNRightNumBox" style="height:4.5mm;">
16
</div>
<div class="styLNAmountBox" style="height:4.5mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/TotalAllocableAndNetTaxAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Line 17 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="height:11mm;width:5mm;">17</div>
<div class="styLNDesc" style="height:11mm;width:141mm;position:relative;">
<div style="width:20mm;position:absolute;bottom:0;right:0;">
<img src="{$ImagePath}/3903_Bullet.gif" width="9" height="9" alt="bullet image" style="margin:0mm 3mm;"/>
<input type="checkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$FormData/ChildCapitalGainInd"/>
<xsl:with-param name="BackupName">FormDataChildCapitalGainInd</xsl:with-param>
</xsl:call-template>
</input>
</div>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$FormData/ChildCapitalGainInd"/>
<xsl:with-param name="BackupName">FormDataChildCapitalGainInd</xsl:with-param>
</xsl:call-template>
Enter the tax on the amount on line 4 based on the <b>child's</b> filing status (see instructions). If
the Qualified Dividends and Capital Gain Tax Worksheet, Schedule D Tax Worksheet, or
Schedule J (Form 1040) is used to figure the tax, check here
</label>
<span style="letter-spacing:3mm;">......................</span>
</div>
<div class="styLNRightNumBox" style="height:11mm;padding-top:7mm;">
17
</div>
<div class="styLNAmountBox" style="height:11mm;padding-top:7mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/TaxOnChildTaxableIncomeAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Line 18 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="width:5mm;height:8mm">18</div>
<div class="styLNDesc" style="width:141mm;height:8mm;">
Enter the <b>larger</b> of line 16 or line 17 here and on the <b>child's</b> Form 1040, line 44; Form 1040A,
line 28; or Form 1040NR, line 42. If the child files Form 2555 or 2555-EZ, see the instructions
</div>
<div class="styLNRightNumBox" style="height:8mm;padding-top:4mm;border-bottom:none;">
18
</div>
<div class="styLNAmountBox" style="height:8mm;padding-top:4mm;border-bottom:none;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/KiddieTaxAmt"/>
</xsl:call-template>
</div>
</div>
<!-- capturing the page bottom info -->
<div class="pageEnd" style="width:187mm; font-size:7pt; border-top:2px solid black; padding-top:0.5mm">
<div style="float:left; font-size:8pt">
<b>For Paperwork Reduction Act Notice, see your tax return instructions.</b>
</div>
<div style="float:right">
Cat. No. 64113U
<span style="width:15mm"/>
Form <b style="font-size:9pt">8615</b> (2012)
</div>
</div>
<!-- Additonal Data Title Bar and Button -->
<div class="styLeftOverTitleLine" id="LeftoverData">
<div class="styLeftOverTitle">
Additional Data
</div>
<div class="styLeftOverButtonContainer">
<input class="styLeftoverTableBtn" type="button" TabIndex="-1" value="Return to Form" onclick="javascript:returnToWriteInImage();"/>
</div>
</div>
<table class="styLeftOverTbl">
<xsl:call-template name="PopulateCommonLeftover">
<xsl:with-param name="TargetNode" select="$FormData"/>
<xsl:with-param name="DescWidth" select="100"/>
</xsl:call-template>
<xsl:call-template name="PopulateLeftoverRow">
<xsl:with-param name="Desc">Line C - Filing Status Estimated Code</xsl:with-param>
<xsl:with-param name="TargetNode" select="$FormData/IndividualReturnFilingStatusCd/@filingStatusEstimatedCd"/>
<xsl:with-param name="DescWidth" select="100"/>
</xsl:call-template>
<xsl:call-template name="PopulateLeftoverRow">
<xsl:with-param name="Desc">Part II, Line 6 - Parent Taxable Income Estimated Code</xsl:with-param>
<xsl:with-param name="TargetNode" select="$FormData/ParentTaxableIncomeAmt/@parentTaxableIncomeEstimatedCd"/>
<xsl:with-param name="DescWidth" select="100"/>
</xsl:call-template>
<xsl:call-template name="PopulateLeftoverRow">
<xsl:with-param name="Desc">Part II, Line 7 - Other Children Investment Income Estimated Code</xsl:with-param>
<xsl:with-param name="TargetNode" select="$FormData/OtherChildrenInvestmentIncAmt/@othChildrenInvestmentIncEstCd"/>
<xsl:with-param name="DescWidth" select="100"/>
</xsl:call-template>
</table>
</form>
</body>
</html>
</xsl:template>
</xsl:stylesheet>