-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIRS1040ScheduleD.xsl
1129 lines (1124 loc) · 55.7 KB
/
IRS1040ScheduleD.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"?>
<!DOCTYPE xsl:stylesheet [
<!ENTITY nbsp " ">
]>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="html" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:include href="PopulateTemplate.xsl"/>
<xsl:include href="AddHeader.xsl"/>
<xsl:include href="CommonPathRef.xsl"/>
<xsl:include href="AddOnTable.xsl"/>
<xsl:include href="IRS1040ScheduleDStyle.xsl"/>
<xsl:param name="FormData" select="$RtnDoc/IRS1040ScheduleD"/>
<xsl:template match="/">
<html>
<head>
<!-- Set Document Title -->
<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"/>
<!-- Set Target to Top -->
<!-- <meta http-equiv="Window-target" content="_top" /> -->
<!-- Set Filename and Description -->
<meta name="Description" content="Schedule D (Form 1040)"/>
<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="IRS1040ScheduleDStyle"/>
<xsl:call-template name="AddOnStyle"/>
</xsl:if>
</style>
<xsl:call-template name="GlobalStylesForm"/>
</head>
<!-- <body onload="init();"> -->
<body class="styBodyClass">
<form name="Form1040ScheduleD">
<!-- BEGIN WARNING LINE -->
<xsl:call-template name="DocumentHeader"/>
<!-- END WARNING LINE -->
<!-- BEGIN FORM HEADER -->
<div style="width:187mm;">
<div class="styBB" style="width: 187mm;">
<!-- Form Name -->
<div class="styFNBox" style="width:26mm;height:20mm;">
<!-- Form Name -->
<div class="styFormNumber" style="font-size: 10pt;height:13.3mm">SCHEDULE D<br/>
<div class="styFormNumber" style="font-size: 8pt;">(Form 1040)</div>
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$FormData"/>
</xsl:call-template>
</div>
<!-- Agency Name -->
<span class="styAgency" style="font-size:6pt;">Department of the Treasury</span><br/>
<span class="styAgency" style="font-size:6pt;">Internal Revenue Service (99)</span>
</div>
<!-- Form Title Box -->
<div class="styFTBox" style="width:130mm;height:20mm;">
<!-- Form Title -->
<div class="styMainTitle" style="height:6.5mm;padding-top: 1.7mm;padding-bottom: 1.2mm;">Capital Gains and Losses</div>
<!-- Form Subtitle -->
<div>
<span style="font-weight:bold; height:4mm;">
<img src="{$ImagePath}/1040SchD_Bullet.gif" alt="Right arrow" border="0"/> Attach to Form 1040 or Form 1040NR.
</span>
</div>
<div>
<span style="font-weight: bold;height: 4mm;">
<img src="{$ImagePath}/1040SchD_Bullet.gif" alt="Right arrow" border="0"/> Information about Schedule D and its separate instructions is at <i>www.irs.gov/scheduled.</i>
</span>
</div>
<div>
<span style="font-weight: bold;height: 4mm;">
<img src="{$ImagePath}\1040SchD_Bullet.gif" alt="Right Arrow" border="0"/> Use Form 8949 to list additional transactions for lines 1, 2, 3, 8, 9, and 10.
</span>
</div>
</div>
<!-- Tax Year Box -->
<div class="styTYBox" style="width:31mm;height:20mm;">
<!--<div style="padding-left:7mm;font-size:6pt;width:30mm;font-weight:bold;" >Version A, Cycle 1</div>-->
<!-- OMB No. -->
<div class="styOMB" style="height: 4mm;">OMB No. 1545-0074</div>
<!-- Tax Year -->
<div class="styTaxYear" style="height:8mm;">20<span style="color:green;">12</span>
</div>
<div style="padding-left:5mm;font-weight:normal;text-align: left;font-size:7pt;">Attachment<br/> Sequence No. <span style="font-weight: bold">12</span>
</div>
</div>
</div>
<!-- END FORM HEADER -->
<!-- BEGIN TAXPAYER INFO -->
<div class="styBB" style="width:187mm;float:left;clear:none">
<!-- Name -->
<div class="styNameBox" style="width:136mm;height:4mm;font-size:7pt;font-weight:normal;">
Name(s) shown on return<br/>
<span>
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="TargetNode">Name</xsl:with-param>
</xsl:call-template>
</span>
</div>
<!-- SSN -->
<div class="styEINBox" style="width:50mm;height:4mm;padding-left:2mm;font-size:7pt;font-weight:bold;">
Your social security number
<br/>
<span style="width:100%;text-align:center;font-weight:normal;">
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="TargetNode">PrimarySSN</xsl:with-param>
</xsl:call-template>
</span>
</div>
</div>
<!-- END TAXPAYER INFO -->
<!-- BEGIN PART I HEADER -->
<div class="styBB" style="width:187mm;margin-top:2mm;">
<span class="styPartName" style="width:12mm;font-size:9pt;">Part l</span>
<div class="styPartDesc" style="padding-left:1mm;width:168mm;font-size:9pt;padding-bottom:2mm;">
Short-Term Capital Gains and Losses—Assets Held One Year or Less
</div>
</div>
<!-- END PART I HEADER -->
<div class="styGenericDiv" id="STCapGainTableContainer">
<table class="IRS1040ScheduleD_styTable" cellspacing="0" name="STCapGainTable" id="STCapGainTable">
<!-- BEGIN PART I TABLE HEADER -->
<tr>
<th class="IRS1040ScheduleD_styTableCellNote" style="font-weight:normal;" scope="col">
Complete Form 8949 before completing line 1, 2, or 3.<br/>
<span style="padding-top:0.8mm;">This form may be easier to complete if you round off cents to whole dollars.</span>
</th>
<th class="IRS1040ScheduleD_styTableCellAmt" style="text-align:center;font-weight:normal;" scope="col">
<span style="font-weight:bold;">(d)</span> Sales price from <br/>Form(s) 8949, line 2 <br/>column (d)</th>
<th class="IRS1040ScheduleD_styTableCellAmt" style="text-align:center;font-weight:normal;" scope="col">
<span style="font-weight:bold;">(e)</span> Cost or other basis<br/>from Forms(s) 8949, <br/>line 2, column (e)</th>
<th class="IRS1040ScheduleD_styTableCellAmt" style="text-align:center;font-weight:normal;" scope="col">
<span style="font-weight:bold;">(g)</span> Adjustments to <br/>gain or loss from <br/>Form(s) 8949, <br/>line 2, column(g)</th>
<th class="IRS1040ScheduleD_styTableCellAmt" style="text-align:center;font-weight:normal;border-right-width:0px;" scope="col">
<b>(h) Gain or (loss)</b>
<br/>Combine columns (d), <br/>(e), and (g)
</th>
</tr>
<!-- END PART I TABLE HEADER -->
<!-- BEGIN PART I TABLE -->
<!-- Line 1 -->
<tr>
<td class="IRS1040ScheduleD_styTableCellNote">
<span class="styLNLeftNumBoxSD">1</span>
<span class="styLNDesc" style="width:48.7mm;padding-right:4px;">
Short-term totals from all Forms 8949 with <b>box A</b> checked in <b>Part I</b>
</span>
</td>
<td class="IRS1040ScheduleD_styTableCellAmt">
<br/>
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/TotalSTCGL1099BShowsBasisGrp/TotalSalesPrice"/>
</xsl:call-template>
</td>
<td class="IRS1040ScheduleD_styTableCellAmt">
<br/>
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/TotalSTCGL1099BShowsBasisGrp/TotalCostOrOtherBasis"/>
</xsl:call-template>
</td>
<td class="IRS1040ScheduleD_styTableCellAmt">
<br/>
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/TotalSTCGL1099BShowsBasisGrp/TotAdjustmentsToGainOrLossAmt"/>
</xsl:call-template>
</td>
<td class="IRS1040ScheduleD_styTableCellAmt" style="border-right-width:0px;">
<br/>
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/TotalSTCGL1099BShowsBasisGrp/TotalGainOrLossAmt"/>
</xsl:call-template>
</td>
</tr>
<!-- Line 2-->
<tr>
<td class="IRS1040ScheduleD_styTableCellNote">
<span class="styLNLeftNumBoxSD">2</span>
<span class="styLNDesc" style="width:48.7mm;padding-right:4px;">
Short-term totals from all Forms 8949 with <b>box B</b> checked in <b>Part I</b>
</span>
</td>
<td class="IRS1040ScheduleD_styTableCellAmt">
<br/>
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/TotalSTCGL1099BNotShowBasisGrp/TotalSalesPrice"/>
</xsl:call-template>
</td>
<td class="IRS1040ScheduleD_styTableCellAmt">
<br/>
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/TotalSTCGL1099BNotShowBasisGrp/TotalCostOrOtherBasis"/>
</xsl:call-template>
</td>
<td class="IRS1040ScheduleD_styTableCellAmt">
<br/>
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/TotalSTCGL1099BNotShowBasisGrp/TotAdjustmentsToGainOrLossAmt"/>
</xsl:call-template>
</td>
<td class="IRS1040ScheduleD_styTableCellAmt" style="border-right-width:0px;">
<br/>
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/TotalSTCGL1099BNotShowBasisGrp/TotalGainOrLossAmt"/>
</xsl:call-template>
</td>
</tr>
<!-- Line 3 -->
<tr>
<td class="IRS1040ScheduleD_styTableCellNote">
<span class="styLNLeftNumBoxSD">3</span>
<span class="styLNDesc" style="width:48.7mm;padding-right:4px;">
Short-term totals from all Forms 8949 with <b>box C</b> checked in <b>Part I</b>
</span>
</td>
<td class="IRS1040ScheduleD_styTableCellAmt">
<br/>
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/TotalSTCGL1099BNotReceivedGrp/TotalSalesPrice"/>
</xsl:call-template>
</td>
<td class="IRS1040ScheduleD_styTableCellAmt">
<br/>
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/TotalSTCGL1099BNotReceivedGrp/TotalCostOrOtherBasis"/>
</xsl:call-template>
</td>
<td class="IRS1040ScheduleD_styTableCellAmt">
<br/>
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/TotalSTCGL1099BNotReceivedGrp/TotAdjustmentsToGainOrLossAmt"/>
</xsl:call-template>
</td>
<td class="IRS1040ScheduleD_styTableCellAmt" style="border-right-width:0px;">
<br/>
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/TotalSTCGL1099BNotReceivedGrp/TotalGainOrLossAmt"/>
</xsl:call-template>
</td>
</tr>
</table>
</div>
<!-- END PART I TABLE -->
<div class="styGenericDiv" style="width:187mm;">
<div class="styLNLeftNumBox"/>
<div class="styLNDesc" style="width:138.8mm;"/>
<div class="styLNRightNumBox" style="border-bottom-width:0px;"/>
<div class="styLNAmountBox" style="border-bottom-width:0px;"/>
</div>
<!-- Line 4 -->
<div class="styBB" style="width:187mm;border-bottom-width:0px;">
<div class="styLNLeftNumBoxSD">4</div>
<div class="styLNDesc" style="width:138.8mm;">
<span style="float:left;">Short-term gain from Form 6252 and short-term gain or (loss) from Forms 4684, 6781, and 8824</span>
<span style="float:right;font-weight:bold;padding-right:3mm;">
.
<span style="width:11px;"/>.
</span>
</div>
<div class="styLNRightNumBox">4</div>
<div class="styLNAmountBox">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/STGainOrLossFromFormsAmt"/>
</xsl:call-template>
</div>
</div>
<!-- END LINE 4 -->
<!-- BEGIN LINE 5 -->
<div class="styGenericDiv" style="width:187mm;height:8mm;">
<div class="styLNLeftNumBoxSD">5</div>
<div class="styLNDesc" style="width:138.8mm;">
Net short-term gain or (loss) from partnerships, S corporations, estates, and trusts from <br/>
<span style="float:left;">Schedule(s) K-1</span>
<span style="float:right;font-weight:bold;padding-right:3mm;">
.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
</span>
</div>
<div class="styLNRightNumBox" style="height:8mm;"><br/>5</div>
<div class="styLNAmountBox" style="height:8mm;">
<br/>
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/NetSTGainOrLossFromSchK1Amt"/>
</xsl:call-template>
</div>
</div>
<!-- END LINE 5 -->
<!-- BEGIN LINE 6 -->
<div class="styGenericDiv" style="width:187mm;height:8mm;">
<div class="styLNLeftNumBoxSD">6</div>
<div class="styLNDesc" style="width:138.8mm;">
Short-term capital loss carryover. Enter the amount, if any, from line 8 of your <b>Capital Loss</b> <br/>
<span style="float:left;"><b>Carryover Worksheet</b> in the instructions</span>
<span style="float:right;font-weight:bold;padding-right:3mm;">
.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
</span>
</div>
<div class="styLNRightNumBox" style="height:8mm;"><br/>6</div>
<div class="styLNAmountBox" style="height:8mm;">
<br/>
(<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/STCapitalLossCarryoverAmt"/>
</xsl:call-template>)
</div>
</div>
<!-- END LINE 6 -->
<div class="styGenericDiv" style="width:187mm;">
<div class="styLNLeftNumBox"/>
<div class="styLNDesc" style="width:138.8mm;"/>
<div class="styLNRightNumBox" style="border-bottom-width:0px;"/>
<div class="styLNAmountBox" style="border-bottom-width:0px;"/>
</div>
<!-- BEGIN LINE 7 -->
<div class="styBB" style="width:187mm;">
<div class="styLNLeftNumBoxSD">7</div>
<div class="styLNDesc" style="width:138.8mm;">
<span style="float:left;"><b>Net short-term capital gain or (loss). </b>Combine lines 1 through 6 in column (h)</span>
<span style="float:right;font-weight:bold;padding-right:3mm;">
.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
</span>
</div>
<div class="styLNRightNumBox" style="border-bottom-width:0px;">7</div>
<div class="styLNAmountBox" style="border-bottom-width:0px;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/NetSTCapitalGainOrLossAmt"/>
</xsl:call-template>
</div>
</div>
<!-- END LINE 7 -->
<!-- BEGIN PART II HEADER -->
<div class="styBB" style="width:187mm;margin-top:2mm;">
<span class="styPartName" style="width:12mm;font-size:9pt;">Part ll</span>
<div class="styPartDesc" style="padding-left:1mm;width:168mm;font-size:9pt;padding-bottom:2mm;">
Long-Term Capital Gains and Losses—Assets Held More Than One Year
</div>
</div>
<!-- END PART II HEADER -->
<!-- BEGIN PART II TABLE -->
<div class="styGenericDiv" id="LTCapGainTableContainer">
<table class="IRS1040ScheduleD_styTable" cellspacing="0" name="LTCapGainTable" id="LTCapGainTable">
<!-- BEGIN PART II TABLE HEADER -->
<tr>
<th class="IRS1040ScheduleD_styTableCellNote" style="font-weight:normal;" scope="col">
Complete Form 8949 before completing line 8, 9, or 10.<br/>
<span style="padding-top:0.8mm;">This form may be easier to complete if you round off cents to whole dollars.</span>
</th>
<th class="IRS1040ScheduleD_styTableCellAmt" style="text-align:center;font-weight:normal;" scope="col">
<span style="font-weight:bold;">(d)</span> Sales price from <br/>Form(s) 8949, line 4 <br/>column (d)</th>
<th class="IRS1040ScheduleD_styTableCellAmt" style="text-align:center;font-weight:normal;" scope="col">
<span style="font-weight:bold;">(e)</span> Cost or other basis<br/>from Forms(s) 8949, <br/>line 4, column (e)</th>
<th class="IRS1040ScheduleD_styTableCellAmt" style="text-align:center;font-weight:normal;" scope="col">
<span style="font-weight:bold;">(g)</span> Adjustments to <br/>gain or loss from <br/>Form(s) 8949, <br/>line 4, column(g)</th>
<th class="IRS1040ScheduleD_styTableCellAmt" style="text-align:center;font-weight:normal;border-right-width:0px;" scope="col">
<b>(h) Gain or (loss)</b>
<br/>Combine columns (d), <br/>(e), and (g)
</th>
</tr>
<!-- END PART II TABLE HEADER -->
<!-- BEGIN PART II TABLE -->
<!-- Line 8 -->
<tr>
<td class="IRS1040ScheduleD_styTableCellNote">
<span class="styLNLeftNumBoxSD">8</span>
<span class="styLNDesc" style="width:48.7mm;padding-right:4px;">
Long-term totals from all Forms 8949 with <b>box A</b> checked in <b>Part II</b>
</span>
</td>
<td class="IRS1040ScheduleD_styTableCellAmt">
<br/>
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/TotaLTCGL1099BShowsBasisGrp/TotalSalesPrice"/>
</xsl:call-template>
</td>
<td class="IRS1040ScheduleD_styTableCellAmt">
<br/>
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/TotaLTCGL1099BShowsBasisGrp/TotalCostOrOtherBasis"/>
</xsl:call-template>
</td>
<td class="IRS1040ScheduleD_styTableCellAmt">
<br/>
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/TotaLTCGL1099BShowsBasisGrp/TotAdjustmentsToGainOrLossAmt"/>
</xsl:call-template>
</td>
<td class="IRS1040ScheduleD_styTableCellAmt" style="border-right-width:0px;">
<br/>
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/TotaLTCGL1099BShowsBasisGrp/TotalGainOrLossAmt"/>
</xsl:call-template>
</td>
</tr>
<!-- Line 9-->
<tr>
<td class="IRS1040ScheduleD_styTableCellNote">
<span class="styLNLeftNumBoxSD">9</span>
<span class="styLNDesc" style="width:48.7mm;padding-right:4px;">
Long-term totals from all Forms 8949 with <b>box B</b> checked in <b>Part II</b>
</span>
</td>
<td class="IRS1040ScheduleD_styTableCellAmt">
<br/>
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/TotalLTCGL1099BNotShowBasisGrp/TotalSalesPrice"/>
</xsl:call-template>
</td>
<td class="IRS1040ScheduleD_styTableCellAmt">
<br/>
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/TotalLTCGL1099BNotShowBasisGrp/TotalCostOrOtherBasis"/>
</xsl:call-template>
</td>
<td class="IRS1040ScheduleD_styTableCellAmt">
<br/>
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/TotalLTCGL1099BNotShowBasisGrp/TotAdjustmentsToGainOrLossAmt"/>
</xsl:call-template>
</td>
<td class="IRS1040ScheduleD_styTableCellAmt" style="border-right-width:0px;">
<br/>
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/TotalLTCGL1099BNotShowBasisGrp/TotalGainOrLossAmt"/>
</xsl:call-template>
</td>
</tr>
<!-- Line 10 -->
<tr>
<td class="IRS1040ScheduleD_styTableCellNote">
<span class="styLNLeftNumBox">10</span>
<span class="styLNDesc" style="width:48.7mm;padding-right:4px;">
Long-term totals from all Forms 8949 with <b>box C</b> checked in <b>Part II</b>
</span>
</td>
<td class="IRS1040ScheduleD_styTableCellAmt">
<br/>
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/TotaLTCGL1099BNotReceivedGrp/TotalSalesPrice"/>
</xsl:call-template>
</td>
<td class="IRS1040ScheduleD_styTableCellAmt">
<br/>
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/TotaLTCGL1099BNotReceivedGrp/TotalCostOrOtherBasis"/>
</xsl:call-template>
</td>
<td class="IRS1040ScheduleD_styTableCellAmt">
<br/>
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/TotaLTCGL1099BNotReceivedGrp/TotAdjustmentsToGainOrLossAmt"/>
</xsl:call-template>
</td>
<td class="IRS1040ScheduleD_styTableCellAmt" style="border-right-width:0px;">
<br/>
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/TotaLTCGL1099BNotReceivedGrp/TotalGainOrLossAmt"/>
</xsl:call-template>
</td>
</tr>
</table>
</div>
<!-- END PART II TABLE -->
<!-- BEGIN LINE 11 -->
<div class="styGenericDiv" style="width:187mm;height:8mm;">
<div class="styLNLeftNumBox">11</div>
<div class="styLNDesc" style="width:138.8mm;height:8mm;">
Gain from Form 4797, Part I; long-term gain from Forms 2439 and 6252; and long-term gain or (loss) <br/>
<span style="float:left;">from Forms 4684, 6781, and 8824</span>
<span style="float:right;font-weight:bold;padding-right:3mm;">
.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
</span>
</div>
<div class="styLNRightNumBox" style="height:8mm;"><br/>11</div>
<div class="styLNAmountBox" style="height:8mm;">
<br/>
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/LTGainOrLossFromFormsAmt"/>
</xsl:call-template>
</div>
</div>
<!-- END LINE 11 -->
<!-- BEGIN LINE 12 -->
<div class="styGenericDiv">
<div class="styLNLeftNumBox"/>
<div class="styLNDesc" style="width:138.8mm;"/>
<div class="styLNRightNumBox" style="border-bottom-width:0px;"/>
<div class="styLNAmountBox" style="border-bottom-width:0px;"/>
</div>
<div class="styGenericDiv" style="width:187mm;">
<div class="styLNLeftNumBox">12</div>
<div class="styLNDesc" style="width:138.8mm;">
Net long-term gain or (loss) from partnerships, S corporations, estates, and trusts from Schedule(s) K-1
</div>
<div class="styLNRightNumBox">12</div>
<div class="styLNAmountBox">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/NetLTGainOrLossFromSchK1Amt"/>
</xsl:call-template>
</div>
</div>
<!-- END LINE 12 -->
<!-- BEGIN LINE 13 -->
<div class="styGenericDiv">
<div class="styLNLeftNumBox"/>
<div class="styLNDesc" style="width:138.8mm;"/>
<div class="styLNRightNumBox" style="border-bottom-width:0px;"/>
<div class="styLNAmountBox" style="border-bottom-width:0px;"/>
</div>
<div class="styGenericDiv" style="width:187mm;">
<div class="styLNLeftNumBox">13</div>
<div class="styLNDesc" style="width:138.8mm;">
<span style="float:left;">
Capital gain distributions. See the instructions
<span style="width:2px;"/>
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$FormData/CapitalGainDistributionsAmt"/>
</xsl:call-template>
<span style="width:2px;"/>
<xsl:call-template name="LinkToLeftoverDataTableInline">
<xsl:with-param name="Desc">Part II, Line 13 - Form 8814 Literal Code</xsl:with-param>
<xsl:with-param name="TargetNode" select="$FormData/Form8814LiteralCd"/>
</xsl:call-template>
<span style="width:2px;"/>
<xsl:call-template name="LinkToLeftoverDataTableInline">
<xsl:with-param name="Desc">Part II, Line 13 - Form 8814 Amount</xsl:with-param>
<xsl:with-param name="TargetNode" select="$FormData/Form8814Amt"/>
</xsl:call-template>
</span>
<span style="float:right;font-weight:bold;padding-right:3mm;">
.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
</span>
</div>
<div class="styLNRightNumBox" style="height:4.4mm;">13</div>
<div class="styLNAmountBox" style="height:4.4mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/CapitalGainDistributionsAmt"/>
</xsl:call-template>
</div>
</div>
<!-- END LINE 13 -->
<!-- BEGIN LINE 14 -->
<div class="styGenericDiv" style="width:187mm;height:8mm;">
<div class="styLNLeftNumBox">14</div>
<div class="styLNDesc" style="width:138.8mm;height:8mm;">
Long-term capital loss carryover. Enter the amount, if any, from line 13 of your <b>Capital Loss Carryover </b><br/>
<span style="float:left;"><b>Worksheet</b> in the instructions</span>
<span style="float:right;font-weight:bold;padding-right:3mm;">
.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
</span>
</div>
<div class="styLNRightNumBox" style="height:8mm;"><br/>14</div>
<div class="styLNAmountBox" style="height:8mm;">
<br/>
(<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/LTCapitalLossCarryoverAmt"/>
</xsl:call-template>)
</div>
</div>
<!-- END LINE 14 -->
<!-- BEGIN LINE 15 -->
<div class="styGenericDiv" style="width:187mm;height:8mm;">
<div class="styLNLeftNumBox">15</div>
<div class="styLNDesc" style="width:138.8mm;height:8mm;">
<b>Net long-term capital gain or (loss). </b>Combine lines 8 through 14 in column (h). Then go to Part III <br/>
<span style="float:left;">on the back</span>
<span style="float:right;font-weight:bold;padding-right:3mm;">
.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
<span style="width:11px;"/>.
</span>
</div>
<div class="styLNRightNumBox" style="height:8mm;border-bottom-width:0px;"><br/>15</div>
<div class="styLNAmountBox" style="height:8mm;border-bottom-width:0px;">
<br/>
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/NetLTCapitalGainOrLossAmt"/>
</xsl:call-template>
</div>
</div>
<!-- END LINE 15 -->
<!-- page footer -->
<div class="pageEnd" style="width:187mm;padding-top:1mm;border-top:1 solid black;border-top-width:1px;">
<div class="stySmallText" style="width:110mm;">
<span class="styBoldText">For Paperwork Reduction Act Notice, see your tax return instructions.</span>
</div>
<div class="stySmallText" style="width:29mm;">Cat. No. 11338H</div>
<div class="stySmallText" style="width:48mm;text-align:right;"><span class="styBoldText">Schedule D (Form 1040) 2012</span> </div>
</div>
<!--Begin Page 2 -->
<div class="styBB" style="width:187mm;border-bottom-width:1px;">
<span style="width:65mm;font-size:7pt;" class="styGenericDiv">Schedule D (Form 1040) 2012</span>
<span style="float:right;font-size:7pt;text-align:center;" class="styGenericDiv">Page <b>2</b></span>
</div>
<!-- PART III HEADER -->
<div class="styBB" style="width:187mm;margin-top:2mm;">
<span class="styPartName" style="width:17mm;font-size:9pt;">Part lll</span>
<div class="styPartDesc" style="padding-left:1mm;width:168mm;font-size:9pt;padding-bottom:2mm;">
<span style="width:3mm;"/>
Summary <span style="padding-left:20mm;font-size:8pt;font-weight:normal;"><b>Note:</b> Please round and use whole dollars on this form.</span>
</div>
</div>
<!-- END PART III HEADER -->
<!-- BEGIN LINE 16 -->
<div class="styBB" style="width:187mm;border-bottom-width:0px;">
<div class="styLNLeftNumBox" style="width:6mm;padding-top:1mm;">16</div>
<div class="styLNDesc" style="width:135mm;padding-top:1mm;">Combine lines 7 and 15 and enter the result
<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>
</div>
<div class="styLNRightNumBox" style="height:6mm;padding-top:1mm;width:8.2mm;">16</div>
<div class="styLNAmountBox" style="width:37mm;height:6mm;padding-top:1mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/NetSTAndLTCapitalGainOrLossAmt"/>
</xsl:call-template>
</div>
</div>
<!-- Line 16 - first bulleted item -->
<div class="styGenericDiv " style="width:187mm;">
<div class="styLNLeftNumBox" style="width:6mm;padding-top:1mm;"></div>
<div class="styLNDesc" style="width: 135mm;">
<img src="{$ImagePath}/1040SchD_Bullet_Round.gif" alt="bullet image"/>
<span style="width: .5mm"/> If line 16 is a<b> gain, </b>enter the amount from line 16 on Form 1040, line 13, or Form 1040NR, line 14.<br/>
<span style="width: 2.1mm"/>Then go to line 17 below.
</div>
<div class="styLNRightNumBox" style="width:8.2mm;background-color:lightgrey;border-bottom-width:0px;height:8mm;"/>
<div class="styLNAmountBox" style="width: 37mm;border-bottom-width:0px;height:8mm;"/>
</div>
<!-- Line 16 - second bulleted item -->
<div class="styGenericDiv " style="width:187mm;">
<div class="styLNLeftNumBox" style="width:6mm;padding-top:1mm;"></div>
<div class="styLNDesc" style="width: 135mm;">
<span>
<img src="{$ImagePath}/1040SchD_Bullet_Round.gif" alt="bullet image"/>
</span>
<span style="width:1mm"/> If line 16 is a <b>loss,</b> skip lines 17 through 20 below. Then go to line 21. Also be sure to complete <br/>
<span style="width: 2mm"/> line 22.
</div>
<div class="styLNRightNumBox" style="width:8.2mm;background-color:lightgrey;border-bottom-width:0px;height:8mm;"/>
<div class="styLNAmountBox" style="width: 37mm;border-bottom-width:0px;height:8mm;"/>
</div>
<!-- Line 16 - third bulleted item, line 1 -->
<div class="styGenericDiv " style="width:187mm;">
<div class="styLNLeftNumBox" style="width:6mm;padding-top:1mm;"></div>
<div class="styLNDesc" style="width: 135mm;">
<span>
<img src="{$ImagePath}/1040SchD_Bullet_Round.gif" alt="bullet image"/>
</span>
<span style="width:1mm"/> If line 16 is <b>zero,</b> skip lines 17 through 21 below and enter -0- on Form 1040, line 13, or Form<br/>
<span style="width: 2mm"/> 1040NR, line 14. Then go to line 22.
</div>
<div class="styLNRightNumBox" style="width:8.2mm;background-color:lightgrey;border-bottom-width:0px;height:9mm;"/>
<div class="styLNAmountBox" style="width:37mm;border-bottom-width:0px;height:9mm;"/>
</div>
<!-- END LINE 16 -->
<!-- BEGIN LINE 17 -->
<div class="styGenericDiv " style="width:187mm;height:3mm;padding-top:0mm;">
<div class="styLNLeftNumBox" style="width:6mm;padding-top:0mm;height:3mm;">17</div>
<div class="styLNDesc" style="width:135mm;padding-top:0mm;height:3mm;">Are lines 15 and 16 <span style="font-weight:bold">both</span> gains?</div>
<div class="styLNRightNumBox" style="width:8.2mm;background-color:lightgrey;border-bottom-width:0px;height:3mm;"/>
<div class="styLNAmountBox" style="width:37mm;border-bottom-width:0px;height:3mm;"/>
</div>
<!-- LINE 17 2nd line, YES checkbox -->
<div class="styGenericDiv " style="width:187mm;height:5mm;">
<div class="styLNLeftNumBox" style="width:6mm;height:5mm;"></div>
<div class="styLNDesc" style="width:135mm;height:5mm;">
<input type="checkbox" class="styCkBox">
<xsl:call-template name="PopulateYesCheckbox">
<xsl:with-param name="TargetNode" select="$FormData/STAndLTGainInd"/>
<xsl:with-param name="BackupName">IRS1040ScheduleD/STAndLTGainInd</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabelYes">
<xsl:with-param name="TargetNode" select="$FormData/STAndLTGainInd" />
<xsl:with-param name="BackupName">IRS1040ScheduleD/STAndLTGainInd</xsl:with-param>
</xsl:call-template>
<span style="font-weight:bold;padding-left:1mm;">Yes.</span>
</label>
Go to line 18.</div>
<div class="styLNRightNumBox" style="width:8.2mm;background-color:lightgrey;border-bottom-width:0px;height:5mm;"/>
<div class="styLNAmountBox" style="width:37mm;border-bottom-width:0px;height:5mm;"/>
</div>
<!-- LINE 17 2nd line end -->
<!-- LINE 17 3rd line, No checkbox -->
<div class="styGenericDiv " style="width:187mm;">
<div class="styLNLeftNumBox" style="width:6mm;padding-top:1mm;"></div>
<div class="styLNDesc" style="width:135mm;">
<input type="checkbox" class="styCkBox">
<xsl:call-template name="PopulateNoCheckbox">
<xsl:with-param name="TargetNode" select="$FormData/STAndLTGainInd"/>
<xsl:with-param name="BackupName">IRS1040ScheduleD/STAndLTGainInd</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabelNo">
<xsl:with-param name="TargetNode" select="$FormData/STAndLTGainInd" />
<xsl:with-param name="BackupName">IRS1040ScheduleD/STAndLTGainInd</xsl:with-param>
</xsl:call-template>
<span style="font-weight:bold;padding-left:1mm;">No.</span>
</label>
Skip lines 18 through 21, and go to line 22.</div>
<div class="styLNRightNumBox" style="width:8.2mm;background-color:lightgrey;border-bottom-width:0px;height:6mm;"/>
<div class="styLNAmountBox" style="width:37mm;border-bottom-width:0px;height:6mm;"/>
</div>
<!-- END LINE 17 -->
<!-- BEGIN Line 18 -->
<div class="styGenericDiv" style="width:187mm;">
<div class="styLNLeftNumBox" style="width:6mm;">18</div>
<div class="styLNDesc" style="width: 135mm;">Enter the amount, if any, from line 7 of the <b>28% Rate Gain Worksheet</b> in the instructions
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$FormData/RateGainWrkshtAmt"/>
</xsl:call-template>
<span class="styBoldText">
<span style="width:11px"/>.
<span style="width:16px"/>.
</span>
<img src="{$ImagePath}/1040SchD_Bullet.gif" alt="right pointing bullet image" border="0"/>
</div>
<div class="styLNRightNumBox" style="width:8.2mm;height:4.4mm;">18</div>
<div class="styLNAmountBox" style="width: 37mm;height:4.4mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/RateGainWrkshtAmt"/>
</xsl:call-template>
</div>
</div>
<!-- END LINE 18 -->
<div class="styGenericDiv" style="width:187mm;">
<div class="styLNLeftNumBox" style="width:6mm;"/>
<div class="styLNDesc" style="width:135mm;"/>
<div class="styLNRightNumBox" style="width:8.2mm;border-bottom-width:0px;background-color:lightgrey;"/>
<div class="styLNAmountBox" style="width:37mm;border-bottom-width:0px;"/>
</div>
<!-- BEGIN LINE 19 -->
<div class="styGenericDiv " style="width:187mm;">
<div class="styLNLeftNumBox" style="width:6mm;padding-top:1mm;">19</div>
<div class="styLNDesc" style="width:135mm;">Enter the amount, if any, from line 18 of the
<span style="font-weight:bold">Unrecaptured Section 1250 Gain Worksheet</span> in the </div>
<div class="styLNRightNumBox" style="width:8.2mm;height:4mm;background-color:lightgrey;border-bottom-width:0px"/>
<div class="styLNAmountBox" style="width:37mm;height:4mm;border-bottom-width:0px;"/>
<div class="styLNDesc" style="width:135mm;">instructions
<span class="styBoldText">
<span style="width:6px"/>.
<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 style="width:16px"/>.
<span style="width:16px"/>.
</span>
<img src="{$ImagePath}/1040SchD_Bullet.gif" alt="right pointing bullet image" border="0"/>
</div>
<div class="styLNRightNumBox" style="width:8.2mm;height:4mm;">19</div>
<div class="styLNAmountBox" style="width:37mm;height:4mm;border-bottom-width:1px;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$FormData/UnrcptrSect1250GainWrkshtAmt"/>
</xsl:call-template>
</div>
</div>
<!-- END LINE 19 -->
<div class="styGenericDiv" style="width:187mm;">
<div class="styLNLeftNumBox" style="width:6mm;"/>
<div class="styLNDesc" style="width:135mm;"/>
<div class="styLNRightNumBox" style="width:8.2mm;border-bottom-width:0px;background-color:lightgrey;"/>
<div class="styLNAmountBox" style="width:37mm;border-bottom-width:0px;"/>
</div>
<!-- BEGIN LINE 20 -->
<div class="styGenericDiv " style="width:187mm;">
<div class="styLNLeftNumBox" style="width:6mm;">20</div>
<div class="styLNDesc" style="width:135mm;">Are lines 18 and 19 <span style="font-weight:bold">both</span> zero or blank?
</div>
<div class="styLNRightNumBox" style="width:8.2mm;background-color:lightgrey;border-bottom-width:0px;"/>
<div class="styLNAmountBox" style="width:37mm;border-bottom-width:0px;"/>
</div>
<!-- LINE 20 2nd line, YES checkbox -->
<div class="styGenericDiv " style="width:187mm;">
<div class="styLNLeftNumBox" style="width:6mm;"></div>
<div class="styLNDesc" style="width: 135mm;">
<input type="checkbox" class="styCkBox">
<xsl:call-template name="PopulateYesCheckbox">
<xsl:with-param name="TargetNode" select="$FormData/ZeroOrBlankInd"/>
<xsl:with-param name="BackupName">IRS1040ScheduleD/ZeroOrBlankInd</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabelYes">
<xsl:with-param name="TargetNode" select="$FormData/ZeroOrBlankInd" />
<xsl:with-param name="BackupName">IRS1040ScheduleD/ZeroOrBlankInd</xsl:with-param>
</xsl:call-template>
<span style="font-weight:bold;padding-left:1mm;">Yes.</span>
</label>
Complete the <b>Qualified Dividends and Capital Gain Tax Worksheet </b>
in the instructions for<br/>
<span style="padding-left:7mm;"/> Form 1040, line 44 (or in the instructions for
Form 1040NR, line 42). <b>Do not</b> complete lines 21<br/>
<span style="padding-left:7mm;"/> and 22 below.
</div>
<div class="styLNRightNumBox" style="width:8.2mm;background-color:lightgrey;border-bottom-width:0px;height:10.5mm;"/>
<div class="styLNAmountBox" style="width:37mm;border-bottom-width:0px;height:10.5mm;"/>
</div>
<!-- LINE 20 2nd line end -->
<!-- LINE 20 3rd line, No checkbox -->
<div class="styGenericDiv " style="width:187mm;">
<div class="styLNLeftNumBox" style="width:6mm;"></div>
<div class="styLNDesc" style="width: 135mm;">
<input type="checkbox" class="styCkBox">
<xsl:call-template name="PopulateNoCheckbox">
<xsl:with-param name="TargetNode" select="$FormData/ZeroOrBlankInd"/>
<xsl:with-param name="BackupName">IRS1040ScheduleD/ZeroOrBlankInd</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabelNo">
<xsl:with-param name="TargetNode" select="$FormData/ZeroOrBlankInd" />
<xsl:with-param name="BackupName">IRS1040ScheduleD/ZeroOrBlankInd</xsl:with-param>
</xsl:call-template>
<span style="font-weight:bold;padding-left:1mm;">No.</span>
</label>
Complete the <b>Schedule D Tax Worksheet</b> in the instructions. <b> Do not</b> complete lines 21 and 22<br/> <span style="padding-left:7mm;"/> below.
</div>
<div class="styLNRightNumBox" style="width:8.2mm;background-color:lightgrey;border-bottom-width:0px;height:11mm;"/>
<div class="styLNAmountBox" style="width:37mm;border-bottom-width:0px;height:11mm;"/>
<br/>
</div>
<!-- END LINE 20 -->
<!-- BEGIN LINE 21 -->
<div class="styGenericDiv " style="width:187mm;">
<div class="styLNLeftNumBox" style="width:6mm;">21</div>
<div class="styLNDesc" style="width: 135mm;">If line 16 is a loss, enter here and on Form 1040, line 13, or Form 1040NR, line 14, the <b>smaller</b> of:
</div>
<div class="styLNRightNumBox" style="width:8.2mm;background-color:lightgrey;border-bottom-width:0px;height:6mm"/>
<div class="styLNAmountBox" style="width:37mm;border-bottom-width:0px;height:6mm"/>
<br/>
<!-- BEGIN LINEs 21 a, b, and Note line -->
<div class="styGenericDiv " style="width:187mm;">
<div class="styLNLeftNumBox" style="width:6mm;"></div>
<div class="styLNDesc" style="width:70.2mm;height:8mm;">
<img src="{$ImagePath}/1040SchD_Bullet_Round.gif" alt="bullet image"/>
The loss on line 16 or<br/>
<img src="{$ImagePath}/1040SchD_Bullet_Round.gif" alt="bullet image"/>