-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIRS1040ScheduleSE.xsl
1352 lines (1349 loc) · 77.9 KB
/
IRS1040ScheduleSE.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"?>
<!-- Last Modified by Andrew Werner on 8/18/2011 -->
<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="IRS1040ScheduleSEStyle.xsl"/>
<xsl:output method="html" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:param name="Form1040ScheduleSEData" select="$RtnDoc/IRS1040ScheduleSE"/>
<xsl:template match="/">
<html>
<head>
<title>
<xsl:call-template name="FormTitle">
<xsl:with-param name="RootElement" select="local-name($Form1040ScheduleSEData)"/>
</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 1040 Schedule SE"/>
<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="IRS1040ScheduleSEStyle"/>
<xsl:call-template name="AddOnStyle"/>
</xsl:if>
</style>
<xsl:call-template name="GlobalStylesForm"/>
</head>
<body class="styBodyClass">
<form name="Form1040 Schedule SE" style="font-size:7pt;">
<!-- BEGIN WARNING LINE -->
<xsl:call-template name="DocumentHeader"/>
<!-- END WARNING LINE -->
<!-- Begin Form Number and Name -->
<div class="styTBB" style="width:187mm;height:19mm;">
<div class="styFNBox" style="width:28mm;height:19mm;">
<div style="height:12mm;font-size:12px;font-weight:bold;">
SCHEDULE SE<br/>
(Form 1040)<br/>
<span style="width:1mm"/>
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleSEData"/>
</xsl:call-template>
</div>
<div style="height:4mm;padding-top:0mm;">
<span class="styAgency">Department of the Treasury</span>
<br/>
<span class="styAgency">Internal Revenue Service (99)</span>
</div>
</div>
<div class="styFTBox" style="width:126.7mm;height:19mm;">
<div class="styMainTitle" style="height:9mm;padding-top:1mm;">
Self-Employment Tax
</div>
<div class="styFST" style="height:4mm;font-size:6.5pt;padding-top:2mm;width:126mm;">
<img src="{$ImagePath}/1040SchSE_Bullet_Md.gif" alt="MediumBullet"/>
Information about Schedule SE and its separate instructions is at
<i>www.irs.gov/form1040</i>.<br />
<img src="{$ImagePath}/1040SchSE_Bullet_Md.gif" alt="MediumBullet"/>
Attach to Form 1040 or Form 1040NR.
</div>
</div>
<div class="styTYBox" style="width:32mm;height:19mm">
<div class="styOMB" style="height:2mm;">
OMB No. 1545-0074
</div>
<div class="styTY" style="height:6mm;font-size:21pt;padding-top:0mm;padding-bottom:0mm;line-height:100%;">
20<span class="stytycolor">12</span>
</div>
<div style="text-align:left;padding-left:7mm;">
Attachment<br/> Sequence No. <span class="styBoldText" style="font-size:8pt">17</span>
</div>
</div>
</div>
<!-- End Form Number and Name section -->
<!-- Begin Names and Identifying number section -->
<div class="styBB" style="width:187mm;">
<div class="styBB" style="width:102mm;height:8mm;border-bottom-width:0px">
<div class="styNameBox" style="width:102mm;height:6mm;font-size:7pt;font-weight:normal;">
Name of person with <b>self-employment</b> income (as shown on Form 1040)<br/>
</div>
<div class="styNameBox" style="width:102mm;height:1.9mm;padding-bottom:.7mm;font-size:7pt">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleSEData/Name"/>
</xsl:call-template>
</div>
</div>
<div class="styEINBox" style="width:50mm;height:7.9mm;padding-left:2mm;font-size:7pt;
border-right-width:1px;padding-top:1mm;font-weight:normal;border-bottom-width:0px">
Social security number of person with <b>self-employment </b>income
<img src="{$ImagePath}/1040SchSE_Bullet_Md.gif" alt="MediumBullet"/>
</div>
<div class="styLNAmountBox" style="height:10mm;width:35mm;border-bottom-width:0px;
text-align:center;padding-top:5mm">
<xsl:call-template name="PopulateSSN">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleSEData/SSN"/>
</xsl:call-template>
</div>
</div>
<!-- Comments-->
<div class="styBB" style="width:187mm;border-width:0px;">
<div class="styLNDesc" style="width:187mm;border-width:0px 0px 1px 0px;border-style:solid;border-color:black;">
<span style="font-size:9pt;padding-bottom:1mm;">
<b><i>Before you begin:</i></b><span style="width:1mm"/>
To determine if you must file Schedule SE, see the instructions.</span><br/></div>
<div class="styLNDesc" style="width:187mm;border-width:0px 0px 0px 0px;">
<b> <span style="font-size:9pt;padding-bottom:1mm;">
May l Use Short Schedule SE or Must l Use Long Schedule SE?</span></b><br/><br/>
<b>Note. </b> Use this flowchart <b>only if</b> you must file Schedule SE. If unsure, see
<i>Who Must File Schedule SE</i> in the instructions.
</div>
<!--<img alt="Note. Use this flowchart only if you must file Schedule SE. " src="{$ImagePath}/1040SchSE_FlowChart.gif" width="720" height="296" style="float:left;clear:none;padding-left:1px;"/>-->
</div>
<!--Flowchart-->
<div class="styGenericDiv" style="width:187mm;padding-top:2mm;">
<!--Start of first row-->
<div class="styGenericDiv" style="width:187mm;">
<div class="styGenericDiv" style="width:60mm;">
<div class="styGenericDiv" style="width:40mm;height:6mm;" />
<div class="styGenericDiv" style="width:20mm;height:3mm;" />
<div class="styGenericDiv" style="width:20mm;height:3mm;border-width:1px 0px 0px 1px;border-style:solid;border-color:black;" />
</div>
<div class="styGenericDiv" style="width:67mm;height:6mm;border-width:1px 1px 1px 1px;border-style:solid;border-color:black;text-align:center;padding-top:1mm;"><b>Did you receive wages or tips in 2012?</b></div>
<div class="styGenericDiv" style="width:60mm;">
<div class="styGenericDiv" style="width:60mm;height:3mm;" />
<div class="styGenericDiv" style="width:9mm;height:3mm;border-width:1px 1px 0px 0px;border-style:solid;border-color:black;" />
<div class="styGenericDiv" style="width:45mm;height:3mm;" />
</div>
</div>
<!--Start of first row-->
<!--Start of second row-->
<div class="styGenericDiv" style="width:187mm;height:8.5mm;">
<div class="styGenericDiv" style="width:78mm;height:8.5mm;">
<div class="styGenericDiv" style="width:40mm;height:7.5mm;" />
<div class="styGenericDiv" style="width:28mm;height:7.5mm;border-width:0px 0px 0px 1px;border-style:solid;border-color:black;padding-left:1mm;padding-top:3mm;text-align:left;" ><b>No</b>
</div>
<div class="styGenericDiv" style="width:10mm;" >
<div class="styGenericDiv" style="width:10mm;height:4mm;" />
<div class="styGenericDiv" style="width:10mm;height:3.5mm;border-width:1px 0px 0px 1px;border-style:solid;border-color:black;" />
</div>
<div class="styGenericDiv" style="width:78mm;height:1mm;" >
<div class="styGenericDiv" style="width:38.5mm;" />
<div class="styGenericDiv" style="border-top:2.99mm solid #000;border-left:1.45mm solid transparent;border-right:1.45mm solid transparent;font-size:0;
line-height:0;width:0;" />
<div class="styGenericDiv" style="width:25.4mm;" />
<div class="styGenericDiv" style="border-top:2.99mm solid #000;border-left:1.45mm solid transparent;border-right:1.45mm solid transparent;font-size:0;
line-height:0;width:0;" />
<div class="styGenericDiv" style="width:8.1mm;" />
</div>
</div>
<div class="styGenericDiv" style="width:22mm;height:10.5mm;">
<div class="styGenericDiv" style="width:22mm;height:4mm;" />
<div class="styGenericDiv" style="width:13mm;height:6.5mm;border-width:1px 1px 0px 0px;border-style:solid;border-color:black;" />
<div class="styGenericDiv" style="width:9mm;height:6.5mm;" />
</div>
<div class="styGenericDiv" style="width:87mm;height:8.5mm;">
<div class="styGenericDiv" style="width:36mm;height:7.5mm;border-width:0px 1px 0px 0px;border-style:solid;border-color:black;" />
<div class="styGenericDiv" style="width:51mm;height:7.5mm;padding-left:1mm;padding-top:3mm;"><b>Yes</b>
</div>
<div class="styGenericDiv" style="width:34.5mm;height:1mm;" />
<div class="styGenericDiv" style="border-top:2.99mm solid #000;border-left:1.45mm solid transparent;border-right:1.45mm solid transparent;font-size:0;
line-height:0;width:0;" />
<div class="styGenericDiv" style="width:49.5mm;height:1mm;" />
</div>
</div>
<!--End of second row-->
<!--Start of third row-->
<div class="styGenericDiv" style="width:187mm;height:19mm;">
<div class="styGenericDiv" style="width:5mm;height:19mm;" />
<div class="styGenericDiv" style="width:73mm;height:19mm;border-width:1px 1px 1px 1px;border-style:solid;border-color:black;padding:1mm;">
Are you a minister, member of a religious order, or<br />
Christian Science practitioner who received IRS<br />
approval not to be taxed on earnings from these<br />
sources, but you owe self-employment tax on other earnings?
</div>
<div class="styGenericDiv" style="width:22mm;height:19mm;">
<div class="styGenericDiv" style="width:6mm;height:19mm;">
<div class="styGenericDiv" style="width:6mm;height:9.5mm;border-width:0px 0px 1px 0px;border-style:solid;border-color:black;padding-left:1mm;padding-top:3mm;text-align:left;"><b>Yes</b>
</div>
<div class="styGenericDiv" style="width:6mm;height:9.5mm;" />
</div>
<div class="styGenericDiv" style="width:3mm;height:19mm;">
<div class="styGenericDiv" style="width:3mm;height:8mm;" />
<div class="styGenericDiv" style="border-left:2.99mm solid #000;border-top:1.45mm solid transparent;border-bottom:1.45mm solid transparent;border-right:0mm solid transparent;font-size:0;line-height:0;width:3mm;" />
<div class="styGenericDiv" style="width:3mm;height:8mm;" />
</div>
<div class="styGenericDiv" style="width:4mm;height:19mm;" >
<div class="styGenericDiv" style="width:4mm;height:9.5mm;border-width:0px 1px 0px 0px;border-style:solid;border-color:black;" />
<div class="styGenericDiv" style="width:4mm;height:9.5mm;border-width:0px 1px 0px 1px;border-style:solid;border-color:black;" />
</div>
<div class="styGenericDiv" style="width:9mm;height:19mm" />
</div>
<div class="styGenericDiv" style="width:73mm;height:19mm;border-width:1px 1px 1px 1px;border-style:solid;border-color:black;padding:1mm;">
Was the total of your wages and tips subject to social<br />
security or railroad retirement (tier 1) tax <b>plus</b> your<br />
net earnings from self-employment more than<br />
$110,100?
</div>
<div class="styGenericDiv" style="width:9mm;height:19mm;" >
<div class="styGenericDiv" style="width:6mm;height:19mm;">
<div class="styGenericDiv" style="width:6mm;height:9.5mm;border-width:0px 0px 1px 0px;border-style:solid;border-color:black;padding-left:1mm;padding-top:3mm;text-align:left;"><b>Yes</b>
</div>
<div class="styGenericDiv" style="width:6mm;height:8.5mm;" />
</div>
<div class="styGenericDiv" style="width:3mm;height:19mm;">
<div class="styGenericDiv" style="width:3mm;height:8mm;" />
<div class="styGenericDiv" style="border-left:2.99mm solid #000;border-top:1.45mm solid transparent;border-bottom:1.45mm solid transparent;border-right:0mm solid transparent;font-size:0;line-height:0;width:3mm;" />
<div class="styGenericDiv" style="width:3mm;height:8mm;" />
</div>
</div>
<div class="styGenericDiv" style="width:5mm;height:19mm;" >
<div class="styGenericDiv" style="width:5mm;height:9.5mm;" />
<div class="styGenericDiv" style="width:5mm;height:9.5mm;border-width:0px 0px 0px 1px;border-style:solid;border-color:black;" />
</div>
</div>
<!--End of third row-->
<!--Start of fourth row-->
<div class="styGenericDiv" style="width:187mm;height:6mm;">
<div class="styGenericDiv" style="width:78mm;height:6mm;">
<div class="styGenericDiv" style="width:40mm;height:5mm;" />
<div class="styGenericDiv" style="width:28mm;height:5mm;border-width:0px 0px 0px 1px;border-style:solid;border-color:black;padding-left:1mm;padding-top:1mm;text-align:left;" ><b>No</b>
</div>
<div class="styGenericDiv" style="width:78mm;height:1mm;" >
<div class="styGenericDiv" style="width:38.5mm;" />
<div class="styGenericDiv" style="border-top:2.99mm solid #000;border-left:1.45mm solid transparent;border-right:1.45mm solid transparent;font-size:0;line-height:0;width:0;" />
<div class="styGenericDiv" style="width:36.5mm;" />
</div>
</div>
<div class="styGenericDiv" style="width:22mm;height:8.1mm;">
<div class="styGenericDiv" style="width:9mm;height:8.1mm;" />
<div class="styGenericDiv" style="width:4mm;height:8.1mm;border-width:0px 1px 0px 1px;border-style:solid;border-color:black;" />
</div>
<div class="styGenericDiv" style="width:73mm;height:6mm;">
<div class="styGenericDiv" style="width:36mm;height:5mm;" />
<div class="styGenericDiv" style="width:32mm;height:5mm;border-width:0px 0px 0px 1px;border-style:solid;border-color:black;padding-left:1mm;padding-top:1mm;text-align:left;" ><b>No</b>
</div>
<div class="styGenericDiv" style="width:73mm;height:1mm;" >
<div class="styGenericDiv" style="width:34.7mm;" />
<div class="styGenericDiv" style="border-top:2.99mm solid #000;border-left:1.45mm solid transparent;border-right:1.45mm solid transparent;font-size:0;
line-height:0;width:0;" />
<div class="styGenericDiv" style="width:35.3mm;" />
</div>
</div>
<div class="styGenericDiv" style="width:9mm;height:8mm;" />
<div class="styGenericDiv" style="height:8.1mm;border-width:0px 0px 0px 1px;border-style:solid;border-color:black;padding-left:1mm;padding-top:1mm;text-align:left;" />
</div>
<!--End of fourth row-->
<!--Start of fifth row-->
<div class="styGenericDiv" style="width:187mm;height:12mm;">
<div class="styGenericDiv" style="width:5mm;height:12mm;" />
<div class="styGenericDiv" style="width:73mm;height:12.4mm;border-width:1px 1px 1px 1px;border-style:solid;border-color:black;padding:1mm;">
Are you using one of the optional methods to figure<br />
your net earnings (see instructions)?<br /><br />
</div>
<div class="styGenericDiv" style="width:22mm;height:12mm;">
<div class="styGenericDiv" style="width:6mm;height:12mm;">
<div class="styGenericDiv" style="width:6mm;height:6mm;border-width:0px 0px 1px 0px;border-style:solid;border-color:black;padding-left:1mm;padding-top:3mm;text-align:left;"><b>Yes</b>
</div>
<div class="styGenericDiv" style="width:6mm;height:6mm;" />
</div>
<div class="styGenericDiv" style="width:3mm;height:12mm;">
<div class="styGenericDiv" style="width:3mm;height:4.5mm;" />
<div class="styGenericDiv" style="border-left:2.99mm solid #000;border-top:1.45mm solid transparent;border-bottom:1.45mm solid transparent;border-right:0mm solid transparent;font-size:0;line-height:0;width:3mm;" />
<div class="styGenericDiv" style="width:3mm;height:4.8mm;" />
</div>
<div class="styGenericDiv" style="width:4mm;height:12mm;" >
<div class="styGenericDiv" style="width:4mm;height:6mm;border-width:0px 1px 0px 1px;border-style:solid;border-color:black;" />
<div class="styGenericDiv" style="width:4mm;height:6.4mm;border-width:0px 1px 0px 1px;border-style:solid;border-color:black;" />
</div>
<div class="styGenericDiv" style="width:9mm;height:12mm;" />
</div>
<div class="styGenericDiv" style="width:73mm;height:12.4mm;border-width:1px 1px 1px 1px;border-style:solid;border-color:black;padding:1mm;">
Did you receive tips subject to social security or<br />
Medicare tax that you <b>did not</b> report to your<br />
employer?
</div>
<div class="styGenericDiv" style="width:9mm;height:12mm;" >
<div class="styGenericDiv" style="width:6mm;height:12mm;">
<div class="styGenericDiv" style="width:6mm;height:6mm;border-width:0px 0px 1px 0px;border-style:solid;border-color:black;padding-left:1mm;padding-top:3mm;text-align:left;"><b>Yes</b>
</div>
<div class="styGenericDiv" style="width:6mm;height:6mm;" />
</div>
<div class="styGenericDiv" style="width:3mm;height:12mm;">
<div class="styGenericDiv" style="width:3mm;height:4.5mm;" />
<div class="styGenericDiv" style="border-left:2.99mm solid #000;border-top:1.45mm solid transparent;border-bottom:1.45mm solid transparent;border-right:0mm solid transparent;font-size:0;line-height:0;width:3mm;" />
<div class="styGenericDiv" style="width:3mm;height:4.5mm;" />
</div>
</div>
<div class="styGenericDiv" style="width:5mm;height:12mm;" >
<div class="styGenericDiv" style="width:5mm;height:6mm;border-width:0x 0px 0px 1px;border-style:solid;border-color:black;" />
<div class="styGenericDiv" style="width:5mm;height:6.4mm;border-width:0x 0px 0px 1px;border-style:solid;border-color:black;" />
</div>
</div>
<!--End of fifth row-->
<!--Start of sixth row-->
<div class="styGenericDiv" style="width:187mm;height:6mm;">
<div class="styGenericDiv" style="width:78mm;height:6mm;">
<div class="styGenericDiv" style="width:40mm;height:5mm;" />
<div class="styGenericDiv" style="width:28mm;height:5mm;border-width:0px 0px 0px 1px;border-style:solid;border-color:black;padding-left:1mm;padding-top:1mm;text-align:left;" ><b>No</b>
</div>
<div class="styGenericDiv" style="width:78mm;height:1mm;" >
<div class="styGenericDiv" style="width:38.5mm;" />
<div class="styGenericDiv" style="border-top:2.99mm solid #000;border-left:1.45mm solid transparent;border-right:1.45mm solid transparent;font-size:0;
line-height:0;width:0;" />
<div class="styGenericDiv" style="width:36.5mm;" />
</div>
</div>
<div class="styGenericDiv" style="width:22mm;height:8.1mm;">
<div class="styGenericDiv" style="width:9mm;height:8.1mm;" />
<div class="styGenericDiv" style="width:4mm;height:8.1mm;border-width:0px 1px 0px 1px;border-style:solid;border-color:black;" />
</div>
<div class="styGenericDiv" style="width:73mm;height:6mm;">
<div class="styGenericDiv" style="width:36mm;height:5mm;" />
<div class="styGenericDiv" style="width:32mm;height:5mm;border-width:0px 0px 0px 1px;border-style:solid;border-color:black;padding-left:1mm;padding-top:1mm;text-align:left;" ><b>No</b>
</div>
<div class="styGenericDiv" style="width:73mm;height:1mm;" >
<div class="styGenericDiv" style="width:34.7mm;" />
<div class="styGenericDiv" style="border-top:2.99mm solid #000;border-left:1.45mm solid transparent;border-right:1.45mm solid transparent;font-size:0;
line-height:0;width:0;" />
<div class="styGenericDiv" style="width:35.3mm;" />
</div>
</div>
<div class="styGenericDiv" style="width:9mm;height:8mm;" />
<div class="styGenericDiv" style="height:8.1mm;border-width:0px 0px 0px 1px;border-style:solid;border-color:black;padding-left:1mm;padding-top:1mm;text-align:left;" />
</div>
<!--End of sixth row-->
<!--Start of seventh row-->
<div class="styGenericDiv" style="width:187mm;height:12mm;">
<div class="styGenericDiv" style="width:5mm;height:12.4mm;" />
<div class="styGenericDiv" style="width:73mm;height:12.4mm;border-width:1px 1px 1px 1px;border-style:solid;border-color:black;padding:1mm;">
Did you receive church employee income (see<br />
instructions) reported on Form W-2 of $108.28 or<br />
more?
</div>
<div class="styGenericDiv" style="width:22mm;height:12mm;">
<div class="styGenericDiv" style="width:6mm;height:12mm;">
<div class="styGenericDiv" style="width:6mm;height:6mm;border-width:0px 0px 1px 0px;border-style:solid;border-color:black;padding-left:1mm;padding-top:3mm;text-align:left;"><b>Yes</b>
</div>
<div class="styGenericDiv" style="width:6mm;height:6mm;" />
</div>
<div class="styGenericDiv" style="width:3mm;height:12mm;">
<div class="styGenericDiv" style="width:3mm;height:4.5mm;" />
<div class="styGenericDiv" style="border-left:2.99mm solid #000;border-top:1.45mm solid transparent;border-bottom:1.45mm solid transparent;border-right:0mm solid transparent;font-size:0;line-height:0;width:3mm;" />
<div class="styGenericDiv" style="width:3mm;height:4.8mm;" />
</div>
<div class="styGenericDiv" style="width:4mm;height:12mm;" >
<div class="styGenericDiv" style="width:4mm;height:6mm;border-width:0px 1px 0px 1px;border-style:solid;border-color:black;" />
<div class="styGenericDiv" style="width:4mm;height:6.4mm;border-width:0px 0px 0px 1px;border-style:solid;border-color:black;" />
</div>
<div class="styGenericDiv" style="width:3mm;height:12mm;">
<div class="styGenericDiv" style="width:3mm;height:4.5mm;" />
<div class="styGenericDiv" style="border-left:0mm solid transparent;border-top:1.45mm solid transparent;border-bottom:1.45mm solid transparent;border-right:2.99mm solid #000;font-size:0;line-height:0;width:3mm;" />
<div class="styGenericDiv" style="width:3mm;height:4.8mm;" />
</div>
<div class="styGenericDiv" style="width:6mm;height:12mm;">
<div class="styGenericDiv" style="width:6mm;height:6mm;border-width:0px 0px 1px 0px;border-style:solid;border-color:black;padding-left:1mm;padding-top:3mm;text-align:left;"><b>No</b>
</div>
<div class="styGenericDiv" style="width:6mm;height:6mm;" />
</div>
</div>
<div class="styGenericDiv" style="width:73mm;height:12mm;border-width:1px 1px 1px 1px;border-style:solid;border-color:black;padding:1mm;">
Did you report any wages on Form 8919, Uncollected<br />
Social Security and Medicare Tax on Wages?
</div>
<div class="styGenericDiv" style="width:9mm;height:12.4mm;" >
<div class="styGenericDiv" style="width:6mm;height:12.4mm;">
<div class="styGenericDiv" style="width:6mm;height:6mm;border-width:0px 0px 1px 0px;border-style:solid;border-color:black;padding-left:1mm;padding-top:3mm;text-align:left;"><b>Yes</b>
</div>
<div class="styGenericDiv" style="width:6mm;height:6mm;" />
</div>
<div class="styGenericDiv" style="width:3mm;height:12mm;">
<div class="styGenericDiv" style="width:3mm;height:4.5mm;" />
<div class="styGenericDiv" style="border-left:2.99mm solid #000;border-top:1.45mm solid transparent;border-bottom:1.45mm solid transparent;border-right:0mm solid transparent;font-size:0;line-height:0;width:3mm;" />
<div class="styGenericDiv" style="width:3mm;height:4.5mm;" />
</div>
</div>
<div class="styGenericDiv" style="width:5mm;height:12mm;" >
<div class="styGenericDiv" style="width:5mm;height:6mm;border-width:0x 0px 0px 1px;border-style:solid;border-color:black;" />
<div class="styGenericDiv" style="width:5mm;height:6.4mm;border-width:0x 0px 0px 1px;border-style:solid;border-color:black;" />
</div>
</div>
<!--End of seventh row-->
<!--Start of eighth row-->
<div class="styGenericDiv" style="width:187mm;height:6mm;">
<div class="styGenericDiv" style="width:78mm;height:6mm;">
<div class="styGenericDiv" style="width:40mm;height:5mm;" />
<div class="styGenericDiv" style="width:28mm;height:5mm;border-width:0px 0px 0px 1px;border-style:solid;border-color:black;padding-left:1mm;padding-top:1mm;text-align:left;" ><b>No</b>
</div>
<div class="styGenericDiv" style="width:78mm;height:1mm;" >
<div class="styGenericDiv" style="width:38.5mm;" />
<div class="styGenericDiv" style="border-top:2.99mm solid #000;border-left:1.45mm solid transparent;border-right:1.45mm solid transparent;font-size:0;
line-height:0;width:0;" />
<div class="styGenericDiv" style="width:36.5mm;" />
</div>
</div>
<div class="styGenericDiv" style="width:22mm;height:8.1mm;">
<div class="styGenericDiv" style="width:9mm;height:8.1mm;" />
<div class="styGenericDiv" style="width:4mm;height:8.1mm;border-width:0px 0px 0px 1px;border-style:solid;border-color:black;" />
</div>
<div class="styGenericDiv" style="width:87mm;height:6mm;">
<div class="styGenericDiv" style="width:82mm;height:5mm;" />
<div class="styGenericDiv" style="height:5.1mm;border-width:0px 0px 0px 1px;border-style:solid;border-color:black;padding-left:1mm;padding-top:1mm;text-align:left;" />
<div class="styGenericDiv" style="width:87mm;height:1mm;" >
<div class="styGenericDiv" style="width:80.7mm;" />
<div class="styGenericDiv" style="border-top:2.99mm solid #000;border-left:1.45mm solid transparent;border-right:1.45mm solid transparent;font-size:0;line-height:0;width:0;" />
<div class="styGenericDiv" style="width:2mm;" />
</div>
</div>
</div>
<!--Start of eighth row-->
<!--Start of ninth row-->
<div class="styGenericDiv" style="width:187mm;height:6mm;">
<div class="styGenericDiv" style="width:5mm;height:6mm;" />
<div class="styGenericDiv" style="width:73mm;height:6mm;border-width:1px 1px 1px 1px;border-style:solid;border-color:black;text-align:center;padding-top:1mm;"><b>You may use Short Schedule SE below</b>
</div>
<div class="styGenericDiv" style="width:22mm;height:6mm;">
<div class="styGenericDiv" style="width:9mm;height:6mm;" />
<div class="styGenericDiv" style="width:4mm;height:6mm;" >
<div class="styGenericDiv" style="width:4mm;height:3mm;border-width:0px 0px 1px 1px;border-style:solid;border-color:black;" />
<div class="styGenericDiv" style="width:4mm;height:3mm;" />
</div>
<div class="styGenericDiv" style="width:6mm;height:6mm;">
<div class="styGenericDiv" style="width:6mm;height:3mm;border-width:0px 0px 1px 0px;border-style:solid;border-color:black;">
</div>
<div class="styGenericDiv" style="width:6mm;height:3mm;" />
</div>
<div class="styGenericDiv" style="width:3mm;height:6mm;">
<div class="styGenericDiv" style="border-left:2.99mm solid #000;border-top:1.45mm solid transparent;border-bottom:1.45mm solid transparent;border-right:0mm solid transparent;font-size:0;line-height:0;width:3mm;margin-top:1.5mm;" />
<div class="styGenericDiv" style="width:3mm;height:1.5mm;" />
</div>
</div>
<div class="styGenericDiv" style="width:84mm;height:6mm;border-width:1px 1px 1px 1px;border-style:solid;border-color:black;text-align:center;padding-top:1mm;"><b>You must use Long Schedule SE on page 2</b>
</div>
<div class="styGenericDiv" style="width:3mm;height:10mm;" />
</div>
<!--End of ninth row-->
</div>
<!--End of Flowchart-->
<div class="styBB" style="width:187mm;">
<!-- BEGIN Section A -->
<div class="styBB" style="width:187mm;border-top-width:1px;">
<div class="styMainTitle" style="font-size:8pt;padding-top:1mm;padding-bottom:1mm">
Section A—Short Schedule SE. Caution.
<span style="font-weight:normal;"> Read above to see if you can use Short Schedule SE.</span>
</div>
</div>
<!-- END Section A -->
<!-- Line 1a -->
<div style="width:187mm;">
<div class="styLNLeftNumBoxSD" style="height:5mm;padding-top:1mm">
1a
<!-- Position makes the 'a' in "1a" line up with the other letters. -->
</div>
<div class="styLNDesc" style="width:139mm;height:5mm;padding-top:1mm">
Net farm profit or (loss) from Schedule F, line 34, and farm partnerships,
Schedule K-1 (Form 1065),<br/> box 14, code A
<!--Dotted Line-->
<span style="width:1.8mm"/>
<span style=" letter-spacing:3.2mm; font-weight:bold; ">............................</span>
</div>
<div class="styLNRightNumBox" style="height:7mm;padding-top:4mm">
1a</div>
<div class="styLNAmountBox" style="text-align:right;height:7mm;padding-top:4mm">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode"
select="$Form1040ScheduleSEData/SectionA/NetFarmProfitLossAmt"/>
</xsl:call-template></div>
</div>
<!--End of line 1a -->
<!-- Line 1b -->
<div style="width:187mm;">
<div class="styLNLeftNumBoxSD" style="height:5mm;padding-top:1mm;padding-left:4mm">
b
<!-- Position makes the 'a' in "1a" line up with the other letters. -->
</div>
<div class="styLNDesc" style="width:139mm;height:5mm;padding-top:1mm">
If you received social security retirement or disability benefits, enter the amount of
Conservation <br/>Reserve Program payments included on Schedule F, line 4b,
or listed on Schedule K-1 (Form 1065),<br/> box 20, code Y
<!--Dotted Line-->
<span style="width:2mm"/>
<span style=" letter-spacing:3.2mm; font-weight:bold; ">............................</span>
</div>
<div class="styLNRightNumBox" style="height:7.5mm;padding-top:7.5mm;">
1b</div>
<div class="styLNAmountBox" style="text-align:right;height:7.5mm;padding-top:7.5mm">
<span style="font-size:6pt">(</span>
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode"
select="$Form1040ScheduleSEData/SectionA/ConservationReserveProgPymtAmt"/>
</xsl:call-template>
<span style="font-size:6pt">)</span>
</div>
</div>
<!--End of line 1 -->
<!-- Line 2 space -->
<!-- Line 2 -->
<div style="width:187mm;">
<div class="styLNLeftNumBoxSD" style="height:10mm;">
2</div>
<div class="styLNDesc" style="width:139mm;height:10mm;">
Net profit or (loss) from Schedule C, line 31; Schedule
K-1 (Form 1065), box 14, <br/>code A (other than farming); and Schedule K-1 (Form
1065-B), box 9, code J1. Ministers and members<br/>of religious orders, see instructions
for types of income to report on this line. See instructions for other <br/>income to
report
<span style="width:1px;"/>
<!--Dotted Line-->
<span style="width:.3mm"/>
<span style=" letter-spacing:3.2mm; font-weight:bold; ">............................</span>
</div>
<div class="styLNRightNumBox" style="height:12mm;padding-top:10mm">
2</div>
<div class="styLNAmountBox" style="height:12mm;text-align:right;padding-top:10mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode"
select="$Form1040ScheduleSEData/SectionA/NetNonFarmProfitLossAmt"/>
</xsl:call-template></div>
</div>
<!--End of line 2 -->
<!--Line 3 -->
<div style="width:187mm;">
<div class="styLNLeftNumBoxSD" style="height:6mm;;padding-top:1.5mm">
3</div>
<div class="styLNDesc" style="width:139mm;height:6mm;padding-top:1.5mm">
Combine lines 1a, 1b and 2.
<span style="width:.3mm"/>
<xsl:call-template name="LinkToLeftoverDataTableInline">
<xsl:with-param name="Desc">Section A Line 3 Additional Income Or Loss Amt </xsl:with-param>
<xsl:with-param name="TargetNode"
select="$Form1040ScheduleSEData/SectionA/SETotalNetEarningsOrLossAmt/@additionalIncomeOrLossAmt"/>
</xsl:call-template>
<xsl:call-template name="LinkToLeftoverDataTableInline">
<xsl:with-param name="Desc">Section A Line 3 Self Employment Tax Exempt Cd </xsl:with-param>
<xsl:with-param name="TargetNode"
select="$Form1040ScheduleSEData/SectionA/SETotalNetEarningsOrLossAmt/@selfEmploymentTaxExemptCd"/>
</xsl:call-template>
<xsl:call-template name="LinkToLeftoverDataTableInline">
<xsl:with-param name="Desc">Section A Line 3 Self Employment Tax Exempt Amt </xsl:with-param>
<xsl:with-param name="TargetNode"
select="$Form1040ScheduleSEData/SectionA/SETotalNetEarningsOrLossAmt/@selfEmploymentTaxExemptAmt"/>
</xsl:call-template>
<xsl:call-template name="LinkToLeftoverDataTableInline">
<xsl:with-param name="Desc">Section A Line 3 Additional Income Or Loss Cd</xsl:with-param>
<xsl:with-param name="TargetNode"
select="$Form1040ScheduleSEData/SectionA/SETotalNetEarningsOrLossAmt/@additionalIncomeOrLossCd"/>
</xsl:call-template>
<xsl:call-template name="LinkToLeftoverDataTableInline">
<xsl:with-param name="Desc">Section A Line 3 Community Income Taxed To Spouse Amt </xsl:with-param>
<xsl:with-param name="TargetNode"
select="$Form1040ScheduleSEData/SectionA/SETotalNetEarningsOrLossAmt/@communityIncTaxedToSpouseAmt"/>
</xsl:call-template>
<xsl:call-template name="LinkToLeftoverDataTableInline">
<xsl:with-param name="Desc">Section A Line 3 Chapter 11 Bankruptcy Income Cd </xsl:with-param>
<xsl:with-param name="TargetNode"
select="$Form1040ScheduleSEData/SectionA/SETotalNetEarningsOrLossAmt/@chap11BankruptcyIncomeCd"/>
</xsl:call-template>
<xsl:call-template name="LinkToLeftoverDataTableInline">
<xsl:with-param name="Desc">Section A Line 3 Community Income Taxed To Spouse Cd </xsl:with-param>
<xsl:with-param name="TargetNode"
select="$Form1040ScheduleSEData/SectionA/SETotalNetEarningsOrLossAmt/@communityIncTaxedToSpouseCd"/>
</xsl:call-template>
<xsl:call-template name="LinkToLeftoverDataTableInline">
<xsl:with-param name="Desc">Section A Line 3 Exempt Community Income Cd </xsl:with-param>
<xsl:with-param name="TargetNode"
select="$Form1040ScheduleSEData/SectionA/SETotalNetEarningsOrLossAmt/@exemptCommunityIncomeCd"/>
</xsl:call-template>
<xsl:call-template name="LinkToLeftoverDataTableInline">
<xsl:with-param name="Desc">Section A Line 3 Chapter 11 Bankruptcy Income Amt </xsl:with-param>
<xsl:with-param name="TargetNode"
select="$Form1040ScheduleSEData/SectionA/SETotalNetEarningsOrLossAmt/@chap11BankruptcyIncomeAmt"/>
</xsl:call-template>
<xsl:call-template name="LinkToLeftoverDataTableInline">
<xsl:with-param name="Desc">Section A Line 3 Exempt Community Income Amt </xsl:with-param>
<xsl:with-param name="TargetNode"
select="$Form1040ScheduleSEData/SectionA/SETotalNetEarningsOrLossAmt/@exemptCommunityIncomeAmt"/>
</xsl:call-template>
<!--Dotted Line-->
<span style="width:3mm"/>
<span style=" letter-spacing:3.2mm; font-weight:bold; ">................</span>
</div>
<div class="styLNRightNumBox" style="padding-top:2mm;height:6mm;">
3</div>
<div class="styLNAmountBox" style="padding-top:2mm;height:6mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleSEData/SectionA/SETotalNetEarningsOrLossAmt"/>
</xsl:call-template></div>
</div>
<!--End of line 3 -->
<!-- Line 4 -->
<div style="width:187mm;">
<div class="styLNLeftNumBoxSD" style="height:6mm;">
4
<!-- Position makes the 'a' in "1a" line up with the other letters. -->
</div>
<div class="styLNDesc" style="width:139mm;height:6mm;">
Multiply line 3 by 92.35% (.9235). If less than $400, you do not<br/>
owe self-employment tax;<b> do not </b> file this schedule unless you have an amount on line 1b
<!--Dotted Line-->
<span style="width:.5mm"/>
<span style=" letter-spacing:3.2mm; font-weight:bold; ">....</span>
<span style="width:8px;"/>
<img src="{$ImagePath}/1040SchSE_Bullet_Md.gif" alt="MediumBullet"/><br/>
<b>Note.</b><span style="width:.5mm"/>
If line 4 is less than $400 due to Conservation Reserve Program payments on line 1b,<br/>
see instructions.
</div>
<div class="styLNRightNumBox" style="height:6mm;padding-top:3.4mm">
4</div>
<div class="styLNAmountBox" style="text-align:right;height:6mm;padding-top:3.4mm">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode"
select="$Form1040ScheduleSEData/SectionA/MinimumProfitForSETaxAmt"/>
</xsl:call-template>
</div>
<div class="styLNRightNumBox" style="height:6mm;padding-top:3.4mm;
border-bottom:0 solid black"></div>
<div class="styLNAmountBox" style="text-align:right;height:6mm;padding-top:3.4mm;
border-bottom:0 solid black">
</div>
</div>
<!--End of line 4 -->
<!-- Line 5 -->
<div style="width:187mm;">
<div class="styLNLeftNumBoxSD" style="height:14mm;">
5</div>
<div class="styLNDesc" style="width:139mm;height:14mm;">
<b>Self-employment tax.</b> If the amount on line 4 is:<br/>
<img src="{$ImagePath}/1040SchSE_Bullet_Round.gif" alt="RoundBullet"/>
<span style="width:1mm;"></span>
$110,100 or less, multiply line 4 by 13.3% (.133). Enter the result here and on
<b>Form 1040, line 56,</b><br/> or <b>Form 1040R, line 54.</b><br/>
<img src="{$ImagePath}/1040SchSE_Bullet_Round.gif" alt="RoundBullet"/>
<span style="width:1mm;"></span>
More than $110,100, multiply line 4 by 2.9% (.029). Then, add $11,450.40 to the
result. <br/>Enter the total here and on<b> Form 1040, line 56, </b>or <b>Form 1040NR, line 54</b>
<!--Dotted Line-->
<span style="width:1.8mm"/>
<span style=" letter-spacing:3.2mm; font-weight:bold; ">.........</span>
</div>
<div class="styLNRightNumBox" style="height:17mm;padding-top:13mm">
5</div>
<div class="styLNAmountBox" style="height:17mm;text-align:right;padding-top:13mm;">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleSEData/SectionA/SelfEmploymentTaxAmt"/>
</xsl:call-template></div>
</div>
<!--End of line 5 -->
<!--Line 6 -->
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="height:7mm;padding-left:2mm;">6</div>
<div class="styLNDesc" style="width:99.7mm;height:4mm;">
<b>Deduction for employer-equivalent portion of self-employment tax. </b>
If the amount on line 5 is:<br/>
<img src="{$ImagePath}/1040SchSE_Bullet_Round.gif" alt="RoundBullet"/>
<span style="width:1mm;"></span>
$14,643.30 or less, multiply line 5 by 57.51 % (.5751).<br/>
<img src="{$ImagePath}/1040SchSE_Bullet_Round.gif" alt="RoundBullet"/>
<span style="width:1mm;"></span>
More than $14,643.30, multiply line 5 by 50% (.50). Then, add $1,100 to the result. <br/>
Enter the result here and on
<b> Form 1040, line 27,</b> or <b>Form 1040NR, line 27</b>
</div>
<div class="styLNRightNumBox" style="height:20.5mm;border-bottom-width:0px;padding-top:16.5mm" >
6</div>
<div class="styLNAmountBox" style="border-bottom-width:0px;height:20.5mm;width:31.3mm;padding-top:16.5mm">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode"
select="$Form1040ScheduleSEData/SectionA/DeductibleSelfEmploymentTaxAmt"/>
</xsl:call-template></div>
<div class="styLNRightNumBox" style="height:20.5mm;background-color:lightgrey;border-bottom-width:0px"/>
<div class="styLNAmountBox" style="height:20.5mm;border-bottom-width:0px;border-bottom-width:0px;
background-color:lightgrey;border-left-width:0px;"/>
</div>
<!--End of line 6 -->
</div>
<!-- capturing the page bottom info -->
<!-- FOOTER-->
<div style="width:187mm;">
<span style="width:140mm;float:left;">
<b>For Paperwork Reduction Act Notice, see your tax return instructions.</b>
<span style="width:12mm;"/>
Cat. No. 11358Z
</span>
<span class="styBoldText" style="float:right;">Schedule SE (Form 1040) 2012</span>
</div>
<!-- Adding page break -->
<p class="pageend"/>
<!-- Page Header -->
<div class="styBB" style="width:187mm;padding-top:.5mm;">
<div style="float:left;">Schedule SE (Form 1040) 2012<span style="width:70mm;"/>
Attachment Sequence No. <b>17</b></div>
<div style="float:right;">Page <span style="font-weight:bold;font-size:8pt;">2</span></div>
</div>
<!-- END Page Header -->
<!-- Begin Names and Identifying number section -->
<div class="styBB" style="width:187mm;">
<div class="styBB" style="width:102mm;height:8mm;border-bottom-width:0px;">
<div class="styNameBox" style="width:102mm;height:6mm;font-size:7pt;font-weight:normal;">
Name of person with <b>self-employment</b> income (as shown on Form 1040)<br/></div>
<div class="styNameBox" style="width:102mm;height:1.9mm;padding-bottom:.9mm;font-size:7pt;">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleSEData/Name"/></xsl:call-template></div>
</div>
<div class="styEINBox" style="width:50mm;height:7.9mm;padding-left:2mm;font-size:7pt;border-right-width:1px;
padding-top:1mm;font-weight:normal;border-bottom-width:0px">
Social security number of person with <b>self-employment </b>income
<img src="{$ImagePath}/1040SchSE_Bullet_Md.gif" alt="MediumBullet"/></div>
<div class="styLNAmountBox" style="height:10mm;width:35mm;border-bottom-width:0px;text-align:center;
padding-top:5mm">
<!--<span style="width:25mm;text-align:left;font-weight:normal;">-->
<xsl:call-template name="PopulateSSN">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleSEData/SSN"/>
</xsl:call-template><!--</span>--></div>
</div>
<!-- BEGIN Section B -->
<div class="styBB" style="width:187mm;border-top-width:1px;">
<div class="styMainTitle" style="font-size:8pt;padding-top:1mm;padding-bottom:1mm">
Section B—Long Schedule SE
</div>
</div>
<!-- END Section B -->
<!-- Part I -->
<div class="styBB" style="width:187mm;border-top-width:0px;">
<span class="styPartName" style="width:16mm;">Part I</span>
<!--Part I-->
<span style="width:150mm;" class="styPartDesc">Self-Employment Tax</span>
</div>
<!-- End Part I -->
<div style="width:187mm;">
<b>Note.</b> If your only income subject to self-employment tax is <b>church employee income,</b> see instructions.
</div>
<!-- SB-Line A -->
<div style="width:187mm;">
<div class="styLNLeftNumBoxSD" style="height:6mm;">A</div>
<div class="styLNDesc" style="width:178mm;height:6mm;">
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleSEData/SectionB/ExemptForm4361Ind"/>
<xsl:with-param name="BackupName">IRS1040ScheduleSE</xsl:with-param>
</xsl:call-template>
If you are a minister, member of a religious order, or Christian Science practitioner <b>and</b> you filed Form 4361, but you<br/>
had $400 or more of <b>other</b> net earnings from self-employment, check here and continue with Part I
</label>
<!--Dotted Line-->
<span style="width:1.8mm"/>
<span style=" letter-spacing:3.2mm; font-weight:bold; ">.........</span>
<span style="width:1mm"/>
<img src="{$ImagePath}/1040SchSE_Bullet_Md.gif" alt="MediumBullet"/>
<span style="width:4mm"/>
<input type="checkbox" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleSEData/SectionB/ExemptForm4361Ind"/>
<xsl:with-param name="BackupName">IRS1040ScheduleSE</xsl:with-param>
</xsl:call-template>
</input>
</div>
</div>
<!--End of line SB-1 -->
<!-- SB-Line 1a -->
<div style="width:187mm;">
<div class="styLNLeftNumBoxSD" style="height:6mm;">1a</div>
<div class="styLNDesc" style="width:139mm;height:6mm;">
Net farm profit or (loss) from Schedule F, line 34, and farm partnerships, Schedule K-1 (Form 1065), <br/>
<span style="float:left;">box 14, code A. <b>Note.</b> Skip lines 1a and 1b if you use the farm optional method (see instructions)</span>
<!--Dotted Line-->
<span class="styIRS1040ScheduleSEDotLn">..</span>
</div>
<div class="styLNRightNumBox" style="height:6mm;padding-top:4mm;border-top-width:1px">
1a</div>
<div class="styLNAmountBox" style="text-align:right;height:6mm;padding-top:4mm;border-top-width:1px">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleSEData/SectionB/NetFarmProfitLossAmt"/>
</xsl:call-template>
</div>
</div>
<!--End of line SB-1 -->
<!-- Line 1b -->
<div style="width:187mm;">
<div class="styLNLeftNumBoxSD" style="height:9mm;padding-left:4mm">b</div>
<div class="styLNDesc" style="width:139mm;height:9mm;font-family:Arial;font-size:8pt;">
If you received social security retirement or disability benefits, enter the amount of Conservation Reserve <br/>
Program payments included on Schedule F, line 4b, or listed on Schedule K-1 (Form 1065), box 20, code Y
</div>
<div class="styLNRightNumBox" style="height:9mm;padding-top:1.5mm;"><br/>1b</div>
<div class="styLNAmountBox" style="text-align:right;height:9mm;padding-top:1.5mm;"><br/>
<span style="font-size:6pt">(</span>
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleSEData/SectionB/ConservationReserveProgPymtAmt"/>
</xsl:call-template>
<span style="font-size:6pt">)</span>
</div>
</div>
<!--End of line 1 -->
<!-- Line SB-2 -->
<div style="width:187mm;">
<div class="styLNLeftNumBoxSD" style="height:12mm;">2</div>
<div class="styLNDesc" style="width:139mm;height:12mm;">
Net profit or (loss) from Schedule C, line 31; Schedule K-1 (Form 1065), box 14, code A (other than <br/>
farming); and Schedule K-1 (Form 1065-B), box 9, code J1. Ministers and members of religious <br/>
orders, see instructions for types of income to report on this line. See instructions for other income <br/>
<span style="float:left;">to report. <b>Note.</b> Skip this line if you use the nonfarm optional method (see instructions)</span>
<span class="styIRS1040ScheduleSEDotLn">.....</span>
</div>
<div class="styLNRightNumBox" style="height:14mm;padding-top:10mm;border-bottom-width:1px">2</div>
<div class="styLNAmountBox" style="height:14mm;text-align:right;border-bottom-width:1px;padding-top:10mm">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleSEData/SectionB/NetNonFarmProfitLossAmt"/>
</xsl:call-template>
</div>
</div>
<!--End of line SB-2 -->
<!--Line SB-3 -->
<div style="width:187mm;">
<div class="styLNLeftNumBoxSD">3</div>
<div class="styLNDesc" style="width:139mm;">
<span style="float:left;">
Combine lines 1a, 1b, and 2
<xsl:call-template name="LinkToLeftoverDataTableInline">
<xsl:with-param name="Desc">Part I, Line 3 - Self Employment Tax Exempt Cd </xsl:with-param>
<xsl:with-param name="TargetNode" select="$Form1040ScheduleSEData/SectionB/SETotalNetEarningsOrLossAmt/@selfEmploymentTaxExemptCd"/>
</xsl:call-template>
<xsl:call-template name="LinkToLeftoverDataTableInline">
<xsl:with-param name="Desc">Part I, Line 3 - Self Employment Tax Exempt Amt </xsl:with-param>
<xsl:with-param name="TargetNode" select="$Form1040ScheduleSEData/SectionB/SETotalNetEarningsOrLossAmt/@selfEmploymentTaxExemptAmt"/>
</xsl:call-template>
<xsl:call-template name="LinkToLeftoverDataTableInline">
<xsl:with-param name="Desc">Part I, Line 3 - Chapter 11 Bankruptcy Income Cd </xsl:with-param>
<xsl:with-param name="TargetNode" select="$Form1040ScheduleSEData/SectionB/SETotalNetEarningsOrLossAmt/@chap11BankruptcyIncomeCd"/>
</xsl:call-template>
<xsl:call-template name="LinkToLeftoverDataTableInline">
<xsl:with-param name="Desc">Part I, Line 3 - Chapter 11 Bankruptcy Income Amt </xsl:with-param>
<xsl:with-param name="TargetNode" select="$Form1040ScheduleSEData/SectionB/SETotalNetEarningsOrLossAmt/@chap11BankruptcyIncomeAmt"/>
</xsl:call-template>
<xsl:call-template name="LinkToLeftoverDataTableInline">
<xsl:with-param name="Desc">Part I, Line 3 - Community Income Taxed To Spouse Cd </xsl:with-param>
<xsl:with-param name="TargetNode" select="$Form1040ScheduleSEData/SectionB/SETotalNetEarningsOrLossAmt/@communityIncTaxedToSpouseCd"/>
</xsl:call-template>
<xsl:call-template name="LinkToLeftoverDataTableInline">
<xsl:with-param name="Desc">Part I, Line 3 - Community Income Taxed To Spouse Amt </xsl:with-param>
<xsl:with-param name="TargetNode" select="$Form1040ScheduleSEData/SectionB/SETotalNetEarningsOrLossAmt/@communityIncTaxedToSpouseAmt"/>
</xsl:call-template>
<xsl:call-template name="LinkToLeftoverDataTableInline">
<xsl:with-param name="Desc">Part I, Line 3 - Exempt Community Income Cd </xsl:with-param>
<xsl:with-param name="TargetNode" select="$Form1040ScheduleSEData/SectionB/SETotalNetEarningsOrLossAmt/@exemptCommunityIncomeCd"/>
</xsl:call-template>
<xsl:call-template name="LinkToLeftoverDataTableInline">
<xsl:with-param name="Desc">Part I, Line 3 - Exempt Community Income Amt </xsl:with-param>
<xsl:with-param name="TargetNode" select="$Form1040ScheduleSEData/SectionB/SETotalNetEarningsOrLossAmt/@exemptCommunityIncomeAmt"/>
</xsl:call-template>
<xsl:call-template name="LinkToLeftoverDataTableInline">
<xsl:with-param name="Desc">Part I, Line 3 - Additional Income Or Loss Cd</xsl:with-param>
<xsl:with-param name="TargetNode" select="$Form1040ScheduleSEData/SectionB/SETotalNetEarningsOrLossAmt/@additionalIncomeOrLossCd"/>
</xsl:call-template>
<xsl:call-template name="LinkToLeftoverDataTableInline">
<xsl:with-param name="Desc">Part I, Line 3 - Additional Income Or Loss Amt </xsl:with-param>
<xsl:with-param name="TargetNode" select="$Form1040ScheduleSEData/SectionB/SETotalNetEarningsOrLossAmt/@additionalIncomeOrLossAmt"/>
</xsl:call-template>
</span>
<span class="styIRS1040ScheduleSEDotLn">................</span>
</div>
<div class="styLNRightNumBox" style="height:4.4mm">3</div>
<div class="styLNAmountBox" style="height:4.4mm">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleSEData/SectionB/SETotalNetEarningsOrLossAmt"/>
</xsl:call-template>
</div>
</div>
<!--End of lineSB-3 -->
<!--Line SB-4a -->
<div style="width:187mm;">
<div class="styLNLeftNumBoxSD">4a</div>
<div class="styLNDesc" style="width:139mm;">
If line 3 is more than zero, multiply line 3 by 92.35% (.9235). Otherwise, enter amount from line 3
</div>
<div class="styLNRightNumBox">4a</div>
<div class="styLNAmountBox">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleSEData/SectionB/MinimumProfitForSETaxAmt"/>
</xsl:call-template>
</div>
</div>
<!--End of lineSB-4a -->
<!--Line SB-4b -->
<div style="width:187mm;">
<div class="styLNLeftNumBoxSD"></div>
<div class="styLNDesc" style="width:139mm;font-family:Arial;">
<b>Note.</b> If line 4a is less than $400 due to Conservation Reserve Program payments on line 1b, see instructions.
</div>
<div class="styLNRightNumBoxNBB"></div>
<div class="styLNAmountBoxNBB"></div>
</div>
<div style="width:187mm;">
<div class="styLNLeftNumBoxSD" style="padding-left:4mm">b</div>
<div class="styLNDesc" style="width:139mm;">
<span style="float:left;">If you elect one or both of the optional methods, enter the total of lines 15 and 17 here</span>
<span class="styIRS1040ScheduleSEDotLn">.....</span>
</div>
<div class="styLNRightNumBox">4b</div>
<div class="styLNAmountBox">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleSEData/SectionB/OptionalMethodAmt"/>
</xsl:call-template>
</div>
</div>
<!--End of lineSB-4B -->
<!--Line SB-4c -->
<div style="width:187mm;">
<div class="styLNLeftNumBoxSD" style="height:7.4mm;padding-left:4mm;">c</div>
<div class="styLNDesc" style="width:139mm;height:7.4mm;">
Combine lines 4a and 4b. If less than $400, <b>stop;</b> you do not owe self-employment tax.<br/>
<span style="float:left;"><b>Exception. </b>If less than $400 and you had <b>church employee income,</b> enter -0- and continue</span>
<!--Dotted Line-->
<img src="{$ImagePath}/1040SchSE_Bullet_Md.gif" alt="MediumBullet" style="float:right;margin-left:3px;margin-right:4px;"/>
<span class="styIRS1040ScheduleSEDotLn">...</span>
</div>
<div class="styLNRightNumBox" style="height:7.4mm;"><br/>4c</div>
<div class="styLNAmountBox" style="height:7.4mm;"><br/>
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleSEData/SectionB/CombinedSEAmt"/>
</xsl:call-template>
</div>
</div>
<!--End of lineSB-4C -->
<!-- Line SB5a -->
<div style="width:187mm;">
<div class="styLNLeftNumBoxSD" style="height:7.4mm;">5a </div>
<div class="styLNDesc" style="width:99mm;height:7.4mm;">
Enter your <b>church employee income</b> from Form W-2. See <br/>
<span style="float:left;">instructions for definition of church employee income</span>
<span class="styIRS1040ScheduleSEDotLn">......</span>
</div>
<div class="styLNRightNumBox" style="height:7.4mm;"><br/>5a</div>
<div class="styLNAmountBox" style="height:7.4mm;padding-right:1px;"><br/>
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleSEData/SectionB/W2WagesFromChurchesAmt"/>
</xsl:call-template>
</div>
<div class="styLNRightNumBoxNBB" style="height:7.6mm;background-color:lightgrey;"/>
<div class="styLNAmountBoxNBB" style="height:7.6mm;"/>
</div>
<!-- End LineSB 5a -->
<!--Line SB-5b -->
<div style="width:187mm;">
<div class="styLNLeftNumBoxSD" style="padding-left:4mm">b</div>
<div class="styLNDesc" style="width:139mm;">
<span style="float:left;">Multiply line 5a by 92.35% (.9235). If less than $100, enter -0-</span>
<span class="styIRS1040ScheduleSEDotLn">............</span>
</div>
<div class="styLNRightNumBox">5b</div>
<div class="styLNAmountBox">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleSEData/SectionB/MinAllowableChurchWagesAmt"/>
</xsl:call-template>
</div>
</div>
<!--End of lineSB-5B -->
<!--Line SB-6 -->
<div style="width:187mm;">
<div class="styLNLeftNumBoxSD">6</div>
<div class="styLNDesc" style="width:139mm;">
<span style="float:left;">Add lines 4c and 5b</span>
<span class="styIRS1040ScheduleSEDotLn">..........................</span>
</div>
<div class="styLNRightNumBox">6</div>
<div class="styLNAmountBox">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form1040ScheduleSEData/SectionB/CombinedSEAndChurchWagesAmt"/>
</xsl:call-template>
</div>
</div>
<!--End of lineSB-6 -->
<!-- Line SB7 -->
<div style="width:187mm;">
<div class="styLNLeftNumBoxSD" style="height:7.4mm;">7</div>
<div class="styLNDesc" style="width:139mm;height:7.4mm;">
Maximum amount of combined wages and self-employment earnings subject to social security <br/>
<span style="float:left;">tax or the 6.2% portion of the 7.65% railroad retirement (tier 1) tax for 2012</span>
<span class="styIRS1040ScheduleSEDotLn">........</span>
</div>
<div class="styLNRightNumBox" style="height:7.4mm;"><br/>7</div>
<div class="styLNAmountBox" style="text-align:right;height:7.4mm;"><br/>
<i>110,100</i>
</div>
</div>
<!--End of line SB7 -->
<!-- Line SB8a -->