-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIRS8832.xsl
1220 lines (1135 loc) · 65.9 KB
/
IRS8832.xsl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" ?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:include href="PopulateTemplate.xsl"/>
<xsl:include href="AddHeader.xsl"/>
<xsl:include href="CommonPathRef.xsl"/>
<xsl:include href="AddOnTable.xsl"/>
<xsl:include href="IRS8832Style.xsl"/>
<xsl:output method="html" indent="yes" />
<xsl:strip-space elements="*" />
<xsl:param name="Form8832Data" select="$RtnDoc/IRS8832" />
<xsl:template match="/">
<html lang="EN-US">
<head>
<title><xsl:call-template name="FormTitle"><xsl:with-param name="RootElement" select="local-name($Form8832Data)"></xsl:with-param></xsl:call-template></title>
<!-- No Browser Caching -->
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Cache-Control" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<!-- No Proxy Caching -->
<meta http-equiv="Cache-Control" content="private" />
<!-- Define Character Set -->
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<meta name="Description" content="IRS Form 8832" />
<script language="JavaScript" src="{$ScriptPath}/FormDisplay.js" type="text/javascript"></script>
<xsl:call-template name="InitJS"></xsl:call-template>
<style type="text/css">
<xsl:if test="not($Print) or $Print=''">
<!-- Form 8832 CSS Styles are located in the template called below -->
<xsl:call-template name="IRS8832Style"></xsl:call-template>
<xsl:call-template name="AddOnStyle"></xsl:call-template>
</xsl:if>
</style>
<xsl:call-template name="GlobalStylesForm"/>
</head>
<body class="styBodyClass">
<form name="Form8832">
<xsl:call-template name="DocumentHeader"></xsl:call-template>
<!-- Begin Form Number and Name -->
<div class="styTBB" style="width:187mm;height:22.5mm;">
<div class="styFNBox" style="width:32mm;height:22.5mm;">
<div style="height:13mm;">
Form<span class="styFormNumber" >8832</span><br/>
(Rev. January 2012)
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$Form8832Data"/>
</xsl:call-template>
</div>
<div style="height:7mm" >
<span class="styAgency">Department of the Treasury</span><br/>
<span class="styAgency">Internal Revenue Service</span>
</div>
</div>
<div class="styFTBox" style="width:125mm;height:22.5mm;padding-top:9mm;">
<div class="styMainTitle">Entity Classification Election </div>
</div>
<div class="styTYBox" style="width:30mm;height:22.5mm;padding-top:9mm;">
OMB No. 1545-1516
</div>
</div>
<!-- End Form Number and Name section -->
<div class="styBB" style="width:187mm;">
<div class="styUseLbl" style="width:10mm;height:32mm; text-align:center;padding-top:9.5mm;font-size:7pt;">
Type or Print</div>
<div class="styNameAddr" style="width:130mm;height:9.7mm;font-size:7pt;">
Name of eligible entity making election<br/>
<!--<span class = "stysmalltext"> -->
<div style="font-family:verdana;font-size:6pt;height:6.25mm">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form8832Data/EntityName/BusinessNameLine1" />
</xsl:call-template><br/>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form8832Data/EntityName/BusinessNameLine2" />
</xsl:call-template>
<!--</span> -->
</div>
</div>
<div class="styLNAmountBox" style="width:47mm;height: 9.7mm;font-size:7pt; text-align:left; padding-top: 1.8mm;">
<span style="width: 1mm;" /><b>Employer identification number</b><span style="width: 1mm;" />
<span style="width:25mm;padding-left:1mm">
<!-- If EntityEIN -->
<xsl:if test="not($Form8832Data/EntityEIN='' or not($Form8832Data/EntityEIN))">
<xsl:call-template name="PopulateEIN">
<xsl:with-param name="TargetNode" select="$Form8832Data/EntityEIN" />
</xsl:call-template>
</xsl:if>
</span>
</div>
<div class="styNameAddr" style="width:177mm;height:8mm;font-size:7pt;">
Number, street, and room or suite no. If a P.O. box, see instructions.<br/>
<xsl:choose>
<xsl:when test="$Form8832Data/EntityForeignAddress">
<!--<span class = "stysmalltext"> -->
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form8832Data/EntityForeignAddress/AddressLine1" />
</xsl:call-template><br/>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form8832Data/EntityForeignAddress/AddressLine2" />
</xsl:call-template>
<!--</span> -->
</xsl:when>
<xsl:otherwise>
<!--<span class = "stysmalltext"> -->
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form8832Data/EntityDomesticAddress/AddressLine1" />
</xsl:call-template><br/>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form8832Data/EntityDomesticAddress/AddressLine2" />
</xsl:call-template>
<!--</span> -->
</xsl:otherwise>
</xsl:choose>
</div>
<div class="styNumberBox" style="height:8mm;font-size:7pt;">
City or town,<span style="width:2px;"></span> state,<span style="width:2px;"></span> and<span style="width:2px;"></span> ZIP code.<span style="width:2px;"></span> If a
foreign address, enter city, province or state, postal code and country. Follow the country’s practice for
entering the postal code.
<br/>
<xsl:choose>
<xsl:when test="$Form8832Data/EntityForeignAddress">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form8832Data/EntityForeignAddress/City" />
</xsl:call-template>
<xsl:if test="$Form8832Data/EntityForeignAddress/City != '' and
$Form8832Data/EntityForeignAddress/ProvinceOrState != ''">,
<span style="width:2px;"></span>
</xsl:if>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form8832Data/EntityForeignAddress/ProvinceOrState" />
</xsl:call-template>
<span style="width:7px"></span>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form8832Data/EntityForeignAddress/PostalCode" />
</xsl:call-template><br/>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form8832Data/EntityForeignAddress/Country" />
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form8832Data/EntityDomesticAddress/City" />
</xsl:call-template>
<xsl:if test="$Form8832Data/EntityDomesticAddress/City != '' and
$Form8832Data/EntityDomesticAddress/State != ''">,
<span style="width:2px;"></span>
</xsl:if>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form8832Data/EntityDomesticAddress/State" />
</xsl:call-template>
<span style="width:7px"></span>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form8832Data/EntityDomesticAddress/ZIPCode" />
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</div>
</div>
<div style="width:187mm;padding-left:2mm">
<img src="{$ImagePath}/8832_Bullet_Lg.gif" alt="Bullet Image"/> Check if:
<input type="checkbox" class="styCkbox" name="Checkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form8832Data/AddressChange" />
<xsl:with-param name="BackupName">IRS8832AddressChange</xsl:with-param>
</xsl:call-template>
</input>
<span style="width:8px"></span>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form8832Data/AddressChange" />
<xsl:with-param name="BackupName">IRS8832AddressChange</xsl:with-param>
</xsl:call-template>
Address change
</label>
<span style="width:5mm"/>
<input type="checkbox" class="styCkbox" name="Checkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form8832Data/LateClassReliefRevProc200941" />
<xsl:with-param name="BackupName">IRS8832LateClassReliefRevProc200941</xsl:with-param>
</xsl:call-template>
</input>
<span style="width:8px"></span>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form8832Data/LateClassReliefRevProc200941" />
<xsl:with-param name="BackupName">IRS8832LateClassReliefRevProc200941</xsl:with-param>
</xsl:call-template>
Late classification relief sought under Revenue Procedure 2009-41
</label>
</div>
<!-- ***************************************************************************************************************** -->
<div class="styBB" style="width:187mm;padding-left:2mm">
<span style="width:16mm"/>
<input type="checkbox" class="styCkbox" name="Checkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form8832Data/LateClassReliefRevProc201032" />
<xsl:with-param name="BackupName">IRS8832LateClassReliefRevProc201032</xsl:with-param>
</xsl:call-template>
</input>
<span style="width:8px"></span>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form8832Data/LateClassReliefRevProc201032" />
<xsl:with-param name="BackupName">IRS8832LateClassReliefRevProc201032</xsl:with-param>
</xsl:call-template>
Relief for a late change of entity classification election sought under Revenue Procedure 2010-32
</label>
</div>
<!-- ***************************************************************************************************************** -->
<div class="styBB" style="width: 187mm;padding-top:4px;padding-bottom:4px;border-top-width:1px">
<div class="styPartName">Part I</div>
<div class="styPartDesc">Election Information</div>
</div>
<div style="width:187mm;"> </div>
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="height:4.5mm;">1</div>
<div class="styLNDesc" style="width:178mm;height:4.5mm;">
<span class="styBoldText">Type of election</span> (see instructions):
</div>
</div>
<!-- start line 1a -->
<div style="width:187mm;"/>
<div style="width:187mm;">
<div class="styLNLeftLtrBox" style="height:4.5mm;">a</div>
<div class="styLNDesc" style="width:178mm;height:4.5mm;">
<input type="checkbox" class="styCkbox" name="Checkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form8832Data/InitialClassification" />
<xsl:with-param name="BackupName">IRS8832InitialClassification</xsl:with-param>
</xsl:call-template>
</input>
<span style="width:8px"></span>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form8832Data/InitialClassification" />
<xsl:with-param name="BackupName">IRS8832InitialClassification</xsl:with-param>
</xsl:call-template>
Initial classification by a newly-formed entity. Skip lines 2a and 2b and go to line 3.
</label>
</div>
</div>
<!-- end line 1a -->
<!-- start line 1b -->
<div style="width:187mm;">
<div class="styLNLeftLtrBox" style="height:4.5mm;">b</div>
<div class="styLNDesc" style="width:158mm;height:4.5mm;">
<input type="checkbox" class="styCkbox" name="Checkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form8832Data/
ChangeInCurrentClassification" />
<xsl:with-param name="BackupName">IRS8832ChangeInCurrentClassification</xsl:with-param>
</xsl:call-template>
</input>
<span style="width:8px"></span>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form8832Data/
ChangeInCurrentClassification" />
<xsl:with-param name="BackupName">IRS8832ChangeInCurrentClassification</xsl:with-param>
</xsl:call-template>
Change in current classification. Go to line 2a
</label>
</div>
</div>
<!-- end line 1b -->
<!-- start line 2a -->
<div style="width:187mm;"/>
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="height:4.5mm;">2a</div>
<div class="styLNDesc" style="width:178mm;height:4.5mm;">
Has the eligible entity previously filed an entity election that had an effective date within the last 60 months?
</div>
</div>
<div style="width:187mm;"/>
<!-- Yes Check Box -->
<div style="width:187mm;">
<div class="styLNLeftLtrBox" style="height:4.5mm;"/>
<div class="styLNDesc" style="width:178mm;height:4.5mm;">
<input type="checkbox" class="styCkbox">
<xsl:call-template name="PopulateYesCheckbox">
<xsl:with-param name="TargetNode" select="$Form8832Data/ElecWithPriorEffectiveDateInd" />
<xsl:with-param name="BackupName">IRS8832ElecWithPriorEffectiveDateInd</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabelYes">
<xsl:with-param name="TargetNode" select="$Form8832Data/ElecWithPriorEffectiveDateInd" />
<!--<xsl:with-param name="BackupName" select="Form8832Data/ElecWithPriorEffectiveDateInd" />-->
<xsl:with-param name="BackupName">IRS8832ElecWithPriorEffectiveDateInd</xsl:with-param>
</xsl:call-template>
</label>
<b> Yes.</b>Go to line 2b.
</div>
</div>
<!-- No Check Box -->
<div style="width:187mm;">
<div class="styLNLeftLtrBox" style="height:4.5mm;"/>
<div class="styLNDesc" style="width:178mm;height:4.5mm;">
<input type="checkbox" class="styCkbox">
<xsl:call-template name="PopulateNoCheckbox">
<xsl:with-param name="TargetNode" select="$Form8832Data/ElecWithPriorEffectiveDateInd" />
<xsl:with-param name="BackupName">IRS8832ElecWithPriorEffectiveDateInd</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabelNo">
<xsl:with-param name="TargetNode" select="$Form8832Data/ElecWithPriorEffectiveDateInd" />
<xsl:with-param name="BackupName">IRS8832ElecWithPriorEffectiveDateInd</xsl:with-param>
</xsl:call-template>
</label>
<b> No. </b>Skip line 2b and go to line 3.
</div>
</div>
<!-- end line 2a -->
<!-- start line 2b -->
<div style="width:187mm;"/>
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="height:4.5mm;">2b</div>
<div class="styLNDesc" style="width:178mm;height:4.5mm;">
Was the eligible entity’s prior election an initial classification election by a newly formed entity that was effective on the date of
formation?
</div>
</div>
<div style="width:187mm;"/>
<!-- Yes Check Box -->
<div style="width:187mm;">
<div class="styLNLeftLtrBox" style="height:4.5mm;"/>
<div class="styLNDesc" style="width:178mm;height:4.5mm;">
<input type="checkbox" class="styCkbox">
<xsl:call-template name="PopulateYesCheckbox">
<xsl:with-param name="TargetNode" select="$Form8832Data/PriorElecDateOfFormationInd" />
<xsl:with-param name="BackupName">IRS8832PriorElecDateOfFormationInd</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabelYes">
<xsl:with-param name="TargetNode" select="$Form8832Data/PriorElecDateOfFormationInd" />
<xsl:with-param name="BackupName">IRS8832PriorElecDateOfFormationInd</xsl:with-param>
</xsl:call-template>
</label>
<b> Yes.</b>Go to line 3.
</div>
</div>
<!-- No Check Box -->
<div style="width:187mm;">
<div class="styLNLeftLtrBox" style="height:4.5mm;"/>
<div class="styLNDesc" style="width:178mm;height:4.5mm;">
<input type="checkbox" class="styCkbox">
<xsl:call-template name="PopulateNoCheckbox">
<xsl:with-param name="TargetNode" select="$Form8832Data/PriorElecDateOfFormationInd" />
<xsl:with-param name="BackupName">IRS8832PriorElecDateOfFormationInd</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabelNo">
<xsl:with-param name="TargetNode" select="$Form8832Data/PriorElecDateOfFormationInd" />
<xsl:with-param name="BackupName">IRS8832PriorElecDateOfFormationInd</xsl:with-param>
</xsl:call-template>
</label>
<b> No. </b>Stop here. You generally are not currently eligible to make the election (see instructions).
</div>
</div>
<!-- end line 2b -->
<!-- start line 3 -->
<div style="width:187mm;"/>
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="height:4.5mm;">3</div>
<div class="styLNDesc" style="width:178mm;height:4.5mm;">
Does the eligible entity have more than one owner?
</div>
</div>
<div style="width:187mm;"/>
<!-- Yes Check Box -->
<div style="width:187mm;">
<div class="styLNLeftLtrBox" style="height:4.5mm;"/>
<div class="styLNDesc" style="width:178mm;height:4.5mm;">
<input type="checkbox" class="styCkbox">
<xsl:call-template name="PopulateYesCheckbox">
<xsl:with-param name="TargetNode" select="$Form8832Data/MultipleOwnerYesOrNo" />
<xsl:with-param name="BackupName">IRS8832MultipleOwnerYesOrNo</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabelYes">
<xsl:with-param name="TargetNode" select="$Form8832Data/MultipleOwnerYesOrNo" />
<xsl:with-param name="BackupName">IRS8832MultipleOwnerYesOrNo</xsl:with-param>
</xsl:call-template>
</label>
<b> Yes.</b>You can elect to be classified as a partnership or an association taxable as a corporation. Skip line 4 and go to line 5. </div>
</div>
<!-- No Check Box -->
<div style="width:187mm;">
<div class="styLNLeftLtrBox" style="height:4.5mm;"/>
<div class="styLNDesc" style="width:178mm;height:4.5mm;">
<input type="checkbox" class="styCkbox">
<xsl:call-template name="PopulateNoCheckbox">
<xsl:with-param name="TargetNode" select="$Form8832Data/MultipleOwnerYesOrNo" />
<xsl:with-param name="BackupName">IRS8832MultipleOwnerYesOrNo</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabelNo">
<xsl:with-param name="TargetNode" select="$Form8832Data/MultipleOwnerYesOrNo" />
<xsl:with-param name="BackupName">IRS8832MultipleOwnerYesOrNo</xsl:with-param>
</xsl:call-template>
</label>
<b> No. </b>You can elect to be classified as an association taxable as a corporation or to be disregarded as a separate entity. Go to line 4.
</div>
</div>
<!-- end line 3 -->
<!-- start line 4 -->
<div style="width:187mm;"> </div>
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="height:4.5mm;">4</div>
<div class="styLNDesc" style="width:178mm;height:4.5mm;">
If the eligible entity has only one owner, provide the following information:
</div>
</div>
<div style="width:187mm;"/>
<!-- end line 4 -->
<!-- start line 4a -->
<div style="width:187mm;">
<div class="styLNLeftLtrBox" style="height:4.5mm;">a</div>
<div class="styLNDesc" style="width:30mm;height:4.5mm;">
Name of owner <img src="{$ImagePath}/8832_Bullet_Lg.gif" alt="Bullet Image"/>
</div>
<span class="styFixedUnderline" style ="width:110mm;height:4.5mm;">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form8832Data/
NameOfOwner/BusinessNameLine1" />
</xsl:call-template>
<span style="width:16px;"></span>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form8832Data/
NameOfOwner/BusinessNameLine2" />
</xsl:call-template>
</span>
</div>
<!-- end line 4a -->
<!-- start line 4b -->
<div style="width:187mm;">
<div class="styLNLeftLtrBox" style="height:4.5mm;">b</div>
<div class="styLNDesc" style="width:40mm;height:4.5mm;">
Identifying number of owner <img src="{$ImagePath}/8832_Bullet_Lg.gif" alt="Bullet Image"/>
</div>
<span class="styFixedUnderline" style ="width:110mm; height: 4.5mm;">
<xsl:choose>
<xsl:when test="$Form8832Data/OwnerEIN">
<xsl:call-template name="PopulateEIN">
<xsl:with-param name="TargetNode" select="$Form8832Data/OwnerEIN"/>
</xsl:call-template>
</xsl:when>
<xsl:when test="$Form8832Data/OwnerSSN">
<xsl:call-template name="PopulateSSN">
<xsl:with-param name="TargetNode" select="$Form8832Data/OwnerSSN"/>
</xsl:call-template>
</xsl:when>
<xsl:when test="$Form8832Data/MissingEINReason">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form8832Data/MissingEINReason"/>
</xsl:call-template>
</xsl:when>
</xsl:choose>
</span>
</div>
<!-- end line 4b -->
<!-- start line 5 -->
<div style="width:187mm;"> </div>
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="height:4.5mm;">5</div>
<div class="styLNDesc" style="width:178mm;height:4.5mm;">
If the eligible entity is owned by one or more affiliated corporations that file a consolidated return, provide the name and
employer identification number of the parent corporation:
</div>
</div>
<div style="width:187mm;"/>
<!-- end line 5 -->
<!-- start line 5a -->
<div style="width:187mm;">
<div class="styLNLeftLtrBox" style="height:4.5mm;">a</div>
<div class="styLNDesc" style="width:40mm;height:4.5mm;">
Name of parent corporation <img src="{$ImagePath}/8832_Bullet_Lg.gif" alt="Bullet Image"/>
</div>
<div class="styFixedUnderline" style ="width:110mm;">
<div style="font-family:verdana;font-size:6pt;">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form8832Data/ParentCorporationName
/BusinessNameLine1" />
</xsl:call-template>
<span style="width:16px;"></span>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form8832Data/ParentCorporationName
/BusinessNameLine2" />
</xsl:call-template>
</div>
</div>
</div>
<!-- end line 5a -->
<!-- start line 5b -->
<div style="width:187mm;">
<div class="styLNLeftLtrBox" style="height:4.5mm;">b</div>
<div class="styLNDesc" style="width:47mm;height:4.5mm;">
Employer identification number <img src="{$ImagePath}/8832_Bullet_Lg.gif" alt="Bullet Image"/>
</div>
<span class="styFixedUnderline" style ="width:103mm; height: 4.5mm;">
<xsl:choose>
<xsl:when test="$Form8832Data/EmployerIdentificationNumber">
<xsl:call-template name="PopulateEIN">
<xsl:with-param name="TargetNode" select="$Form8832Data/EmployerIdentificationNumber"/>
</xsl:call-template>
</xsl:when>
<xsl:when test="$Form8832Data/EmployerMissingEINReason">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form8832Data/EmployerMissingEINReason"/>
</xsl:call-template>
</xsl:when>
</xsl:choose>
</span>
</div>
<div style="width:187mm;"/>
<div class="styBB" style="width:187mm;"/>
<!-- end line 5b -->
<!-- Page Break and Footer-->
<div class="pageEnd" style="width:187mm;padding-top:1mm;">
<div style="float:left;">
<span class="styBoldText">For Paperwork Reduction Act Notice, see instructions. </span>
<span style="width:13mm;"></span>
Cat. No. 22598R
</div>
<div style="float:right;">
<span style="width:40px;"></span>
Form <span class="styBoldText" style="font-size:8pt;">8832</span>(Rev. 1-2012)
</div>
</div>
<!-- END Page Break and Footer-->
<!-- Page 2 -->
<!-- Page 2 Header -->
<div class="styBB" style="width:187mm;">
<div style="float:left;">Form 8832 (Rev. 1-2012)</div>
<div style="float:right;">Page <span style="font-size:9pt;font-weight:bold;">2</span></div>
</div>
<!-- start line 6 -->
<div class="styBB" style="width: 187mm;padding-top:4px;padding-bottom:4px;border-top-width:1px">
<div class="styPartName">Part I</div>
<div class="styPartDesc">Election Information <span style="font-weight:normal">(Continued)</span></div>
</div>
<div style="width:187mm;"/>
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="height:4.5mm;">6</div>
<div class="styLNDesc" style="width:178mm;height:4.5mm;">
<span class="styBoldText">Type of entity</span> (see instructions):
</div>
</div>
<div style="width:187mm;">
<div class="styLNLeftLtrBox" style="height:4.5mm;">a</div>
<div class="styLNDesc" style="width:178mm;height:4.5mm;">
<input type="checkbox" class="styCkbox" name="Checkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form8832Data/
DomAssocTaxableAsACorporation" />
<xsl:with-param name="BackupName">IRS8832DomAssocTaxableAsACorporation</xsl:with-param>
</xsl:call-template>
</input>
<span style="width:8px"></span>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form8832Data/
DomAssocTaxableAsACorporation" />
<xsl:with-param name="BackupName">IRS8832DomAssocTaxableAsACorporation</xsl:with-param>
</xsl:call-template>
A domestic eligible entity electing to be classified as an association taxable as a corporation.
</label>
</div>
</div>
<!-- end line 6a -->
<!-- start line 6b -->
<div style="width:187mm;">
<div class="styLNLeftLtrBox" style="height:4.5mm;">b</div>
<div class="styLNDesc" style="width:158mm;height:4.5mm;">
<input type="checkbox" class="styCkbox" name="Checkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form8832Data/
DomesticEntityAsAPartnership" />
<xsl:with-param name="BackupName">IRS8832DomesticEntityAsAPartnership</xsl:with-param>
</xsl:call-template>
</input>
<span style="width:8px"></span>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form8832Data/
DomesticEntityAsAPartnership" />
<xsl:with-param name="BackupName">IRS8832DomesticEntityAsAPartnership</xsl:with-param>
</xsl:call-template>
A domestic eligible entity electing to be classified as a partnership.
</label>
</div>
</div>
<!-- end line 6b -->
<!-- start line 6c -->
<div style="width:187mm;">
<div class="styLNLeftLtrBox" style="height:4.5mm;">c</div>
<div class="styLNDesc" style="width:178mm;height:4.5mm;">
<input type="checkbox" class="styCkbox" name="Checkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form8832Data/
DomSnglOwnerDisregardedSepEnt" />
<xsl:with-param name="BackupName">IRS8832DomSnglOwnerDisregardedSepEnt</xsl:with-param>
</xsl:call-template>
</input>
<span style="width:8px"></span>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form8832Data/
DomSnglOwnerDisregardedSepEnt" />
<xsl:with-param name="BackupName">IRS8832DomSnglOwnerDisregardedSepEnt</xsl:with-param>
</xsl:call-template>
A domestic eligible entity with a single owner electing to be disregarded as a separate entity.
</label>
</div>
</div>
<!-- end line 6c -->
<!-- start line 6d -->
<div style="width:187mm;">
<div class="styLNLeftLtrBox" style="height:4.5mm;">d</div>
<div class="styLNDesc" style="width:178mm;height:4.5mm;">
<input type="checkbox" class="styCkbox" name="Checkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form8832Data/
FrgnAssocTaxableAsACorporation" />
<xsl:with-param name="BackupName">IRS8832FrgnAssocTaxableAsACorporation</xsl:with-param>
</xsl:call-template>
</input>
<span style="width:8px"></span>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form8832Data/
FrgnAssocTaxableAsACorporation" />
<xsl:with-param name="BackupName">IRS8832FrgnAssocTaxableAsACorporation</xsl:with-param>
</xsl:call-template>
A foreign eligible entity electing to be classified as an association taxable as a corporation.
</label>
</div>
</div>
<!-- end line 6d -->
<!-- start line 6e -->
<div style="width:187mm;">
<div class="styLNLeftLtrBox" style="height:4.5mm;">e</div>
<div class="styLNDesc" style="width:178mm;height:4.5mm;">
<input type="checkbox" class="styCkbox" name="Checkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form8832Data/
ForeignEntityAsAPartnership" />
<xsl:with-param name="BackupName">IRS8832ForeignEntityAsAPartnership</xsl:with-param>
</xsl:call-template>
</input>
<span style="width:8px"></span>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form8832Data/
ForeignEntityAsAPartnership" />
<xsl:with-param name="BackupName">IRS8832ForeignEntityAsAPartnership</xsl:with-param>
</xsl:call-template>
A foreign eligible entity electing to be classified as a partnership.
</label>
</div>
</div>
<!-- end line 6e -->
<!-- start line 6f -->
<div style="width:187mm;">
<div class="styLNLeftLtrBox" style="height:4.5mm;">f</div>
<div class="styLNDesc" style="width:178mm;height:4.5mm;">
<input type="checkbox" class="styCkbox" name="Checkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form8832Data/
FrgnSnglOwnerDisregardedSepEnt" />
<xsl:with-param name="BackupName">IRS8832FrgnSnglOwnerDisregardedSepEnt</xsl:with-param>
</xsl:call-template>
</input>
<span style="width:8px"></span>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form8832Data/
FrgnSnglOwnerDisregardedSepEnt" />
<xsl:with-param name="BackupName">IRS8832FrgnSnglOwnerDisregardedSepEnt</xsl:with-param>
</xsl:call-template>
A foreign eligible entity with a single owner electing to be disregarded as a separate entity.
</label>
</div>
</div>
<!-- end line 6f -->
<!-- start line 7 -->
<div style="width:187mm;"> </div>
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="height:4.5mm;">7</div>
<div class="styLNDesc" style="width:178mm;height:4.5mm;">
If the eligible entity is created or organized in a foreign jurisdiction, provide the foreign country of
organization
</div>
</div>
<div style="width:187mm;">
<div class="styLNLeftLtrBox" style="height:4.5mm;"></div>
<div class="styLNDesc" style="width:10mm;height:4.5mm;">
<img src="{$ImagePath}/8832_Bullet_Lg.gif" alt="Bullet Image"/>
</div>
<div class="styFixedUnderline" style ="width:160mm;">
<div style="font-family:verdana;font-size:6pt;">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form8832Data/CountryOfOrganization" />
</xsl:call-template>
</div>
</div>
</div>
<!-- end line 7 -->
<!-- start line 8 -->
<div style="width:187mm;"> </div>
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="height:4.5mm;">8</div>
<div class="styLNDesc" style="width:148mm;height:4.5mm;">
Election is to be effective beginning (month, day, year) (see instructions)
<!--Dotted Line-->
<span class="styBoldText" style="width:180px;">
<span style="width:16px;">.</span>
<span style="width:16px;">.</span>
<span style="width:16px;">.</span>
<span style="width:16px;">.</span>
<span style="width:16px;">.</span>
<span style="width:16px;">.</span>
<span style="width:16px;">.</span>
<span style="width:16px;">.</span>
<span style="width:16px;">.</span>
<span style="width:16px;">.</span>
<span style="width:16px;">.</span>
</span>
<img src="{$ImagePath}/8832_Bullet_Lg.gif" alt="Bullet Image"/>
</div>
<div class="styFixedUnderline" style ="width:30mm;text-align:center;">
<xsl:call-template name="PopulateMonthDayYear">
<xsl:with-param name="TargetNode" select="$Form8832Data/ElectionEffectiveDate" />
</xsl:call-template>
</div>
<div style="width:4mm;float:left;Clear:none;"></div>
</div>
<!-- end line 8 -->
<!-- start line 9 -->
<div class="styTBB" style="width:187mm;">
<div class="styLNLeftNumBox" style="height:4.5mm;">9</div>
<div class="styLNDesc" style="width:108mm;height:7mm;font-size:7pt;">
Name and title of contact person whom the IRS may call for more information
<br/><br/>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form8832Data/
PersonNameIRSMayCallForInfo" />
</xsl:call-template>
<span style="width:8px;"></span>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form8832Data/
PersonTitleIRSMayCallForInfo" />
</xsl:call-template>
</div>
<!-- end line 9 -->
<!-- start line 10 -->
<div class="styLNAmountBox" style="border-bottom:0px;width:70mm;height:8mm;font-size:6pt; text-align:left;">
<div class="styLNLeftNumBox" style="width:55mm;height:4.5mm;">
<span class="styBoldText">10</span>
<span style="font-size:7pt; font-weight:normal; ">
<span style="width:8px;"></span>Contact person’s telephone number
<br/><br/>
<span style="width:50mm; text-align:left;">
<span style="width:15px;"></span>
<xsl:choose>
<xsl:when test="$Form8832Data/PhoneOfPersonIRSMayCallForInfo">
<xsl:call-template name="PopulatePhoneNumber">
<xsl:with-param name="TargetNode" select="$Form8832Data/
PhoneOfPersonIRSMayCallForInfo" />
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form8832Data/
ForeignPhoneOfPersonIRSMayCall" />
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</span>
</span>
</div>
</div>
</div>
<!-- end line 10 -->
<!-- Begin signature part -->
<div class="styBB" style="width:187mm;">
<div class="styLNDesc" style="width:187mm;height:4.5mm;text-align:center;font-size:9pt;">
<br/>
<span class="styBoldText">
Consent Statement and Signature(s) (see instructions)
</span>
<div style="width:187mm;"><br/> </div>
</div>
</div>
<!-- Page 2 Header -->
<div class="styForm8832SignatureText" style="width:187mm">
<br/>
Under penalties of perjury, I (we) declare that I (we) consent to the election of the
above-named entity to be classified as indicated above, and that I (we) have examined this
election and consent statement, and to the best of my (our) knowledge and belief, this election and consent statement
are true, correct, and complete. If I am an officer, manager, or member signing for the entity, I
further declare under penalties of perjury that I am authorized to make the election on its behalf.
</div>
<div style="width:187mm;"><br/> </div>
<div style="width:187mm;"><br/> </div>
<div style="width:187mm;">
<span class="styBoldText" style="width:260px; text-align:center">
Signature(s)
</span>
<span class="styBoldText" style="width:160px;text-align:center">
Date
</span>
<span class="styBoldText" style="width:260px;text-align:center">
Title
</span>
</div>
<div class="styBB" style="width:187mm;border-top-width:1px;border-bottom-width:0px;">
<div style="width:187mm;">
<table cellspacing="0" class="TableContainer" style="width:187mm;" summary="Table for Signatures">
<tr>
<td class="styTableCell" scope="row" style="width:72mm;text-align:left;font-weight:bold;border-color:black;"><div style="width:20mm;"> </div></td>
<td class="styTableCell" style="width:43mm;text-align:center;font-weight:bold;border-color:black;"><div style="width:20mm;"> </div></td>
<td class="styTableCell" style="width:72mm;text-align:center;font-weight:bold;border-color:black;border-right:none;"><div style="width:20mm;"> </div></td>
</tr>
<tr>
<td class="styTableCell" scope="row" style="width:72mm;text-align:left;font-weight:bold;border-color:black;"><div style="width:20mm;"> </div></td>
<td class="styTableCell" style="width:43mm;text-align:center;font-weight:bold;border-color:black;"><div style="width:20mm;"> </div></td>
<td class="styTableCell" style="width:72mm;text-align:center;font-weight:bold;border-color:black;border-right:none;"><div style="width:20mm;"> </div></td>
</tr>
<tr>
<td class="styTableCell" scope="row" style="width:72mm;text-align:left;font-weight:bold;border-color:black;"><div style="width:20mm;"> </div></td>
<td class="styTableCell" style="width:43mm;text-align:center;font-weight:bold;border-color:black;"><div style="width:20mm;"> </div></td>
<td class="styTableCell" style="width:72mm;text-align:center;font-weight:bold;border-color:black;border-right:none;"><div style="width:20mm;"> </div></td>
</tr>
<tr>
<td class="styTableCell" scope="row" style="width:72mm;text-align:left;font-weight:bold;border-color:black;"><div style="width:20mm;"> </div></td>
<td class="styTableCell" style="width:43mm;text-align:center;font-weight:bold;border-color:black;"><div style="width:20mm;"> </div></td>
<td class="styTableCell" style="width:72mm;text-align:center;font-weight:bold;border-color:black;border-right:none;"><div style="width:20mm;"> </div></td>
</tr>
<tr>
<td class="styTableCell" scope="row" style="width:72mm;text-align:left;font-weight:bold;border-color:black;"><div style="width:20mm;"> </div></td>
<td class="styTableCell" style="width:43mm;text-align:center;font-weight:bold;border-color:black;"><div style="width:20mm;"> </div></td>
<td class="styTableCell" style="width:72mm;text-align:center;font-weight:bold;border-color:black;border-right:none;"><div style="width:20mm;"> </div></td>
</tr>
<tr>
<td class="styTableCell" scope="row" style="width:72mm;text-align:left;font-weight:bold;border-color:black;"><div style="width:20mm;"> </div></td>
<td class="styTableCell" style="width:43mm;text-align:center;font-weight:bold;border-color:black;"><div style="width:20mm;"> </div></td>
<td class="styTableCell" style="width:72mm;text-align:center;font-weight:bold;border-color:black;border-right:none;"><div style="width:20mm;"> </div></td>
</tr>
<tr>
<td class="styTableCell" scope="row" style="width:72mm;text-align:left;font-weight:bold;border-color:black;"><div style="width:20mm;"> </div></td>
<td class="styTableCell" style="width:43mm;text-align:center;font-weight:bold;border-color:black;"><div style="width:20mm;"> </div></td>
<td class="styTableCell" style="width:72mm;text-align:center;font-weight:bold;border-color:black;border-right:none;"><div style="width:20mm;"> </div></td>
</tr>
<tr>
<td class="styTableCell" scope="row" style="width:72mm;text-align:left;font-weight:bold;border-color:black;"><div style="width:20mm;"> </div></td>
<td class="styTableCell" style="width:43mm;text-align:center;font-weight:bold;border-color:black;"><div style="width:20mm;"> </div></td>
<td class="styTableCell" style="width:72mm;text-align:center;font-weight:bold;border-color:black;border-right:none;"><div style="width:20mm;"> </div></td>
</tr>
<tr>
<td class="styTableCell" scope="row" style="width:72mm;text-align:left;font-weight:bold;border-color:black;"><div style="width:20mm;"> </div></td>
<td class="styTableCell" style="width:43mm;text-align:center;font-weight:bold;border-color:black;"><div style="width:20mm;"> </div></td>
<td class="styTableCell" style="width:72mm;text-align:center;font-weight:bold;border-color:black;border-right:none;"><div style="width:20mm;"> </div></td>
</tr>
<tr>
<td class="styTableCell" scope="row" style="width:72mm;text-align:left;font-weight:bold;border-color:black;"><div style="width:20mm;"> </div></td>
<td class="styTableCell" style="width:43mm;text-align:center;font-weight:bold;border-color:black;"><div style="width:20mm;"> </div></td>
<td class="styTableCell" style="width:72mm;text-align:center;font-weight:bold;border-color:black;border-right:none;"><div style="width:20mm;"> </div></td>
</tr>
<tr>
<td class="styTableCell" scope="row" style="width:72mm;text-align:left;font-weight:bold;border-color:black;"><div style="width:20mm;"> </div></td>
<td class="styTableCell" style="width:43mm;text-align:center;font-weight:bold;border-color:black;"><div style="width:20mm;"> </div></td>
<td class="styTableCell" style="width:72mm;text-align:center;font-weight:bold;border-color:black;border-right:none;"><div style="width:20mm;"> </div></td>
</tr>
<tr>
<td class="styTableCell" scope="row" style="width:72mm;text-align:left;font-weight:bold;border-color:black;"><div style="width:20mm;"> </div></td>
<td class="styTableCell" style="width:43mm;text-align:center;font-weight:bold;border-color:black;"><div style="width:20mm;"> </div></td>
<td class="styTableCell" style="width:72mm;text-align:center;font-weight:bold;border-color:black;border-right:none;"><div style="width:20mm;"> </div></td>
</tr>
<tr>
<td class="styTableCell" scope="row" style="width:72mm;text-align:left;font-weight:bold;border-color:black;"><div style="width:20mm;"> </div></td>
<td class="styTableCell" style="width:43mm;text-align:center;font-weight:bold;border-color:black;"><div style="width:20mm;"> </div></td>
<td class="styTableCell" style="width:72mm;text-align:center;font-weight:bold;border-color:black;border-right:none;"><div style="width:20mm;"> </div></td>
</tr>
<tr>
<td class="styTableCell" scope="row" style="width:72mm;text-align:left;font-weight:bold;border-color:black;"><div style="width:20mm;"> </div></td>
<td class="styTableCell" style="width:43mm;text-align:center;font-weight:bold;border-color:black;"><div style="width:20mm;"> </div></td>
<td class="styTableCell" style="width:72mm;text-align:center;font-weight:bold;border-color:black;border-right:none;"><div style="width:20mm;"> </div></td>
</tr>
<tr>
<td class="styTableCell" scope="row" style="width:72mm;text-align:left;font-weight:bold;border-color:black;"><div style="width:20mm;"> </div></td>
<td class="styTableCell" style="width:43mm;text-align:center;font-weight:bold;border-color:black;"><div style="width:20mm;"> </div></td>
<td class="styTableCell" style="width:72mm;text-align:center;font-weight:bold;border-color:black;border-right:none;"><div style="width:20mm;"> </div></td>
</tr>
<tr>
<td class="styTableCell" scope="row" style="width:72mm;text-align:left;font-weight:bold;border-color:black;"><div style="width:20mm;"> </div></td>
<td class="styTableCell" style="width:43mm;text-align:center;font-weight:bold;border-color:black;"><div style="width:20mm;"> </div></td>
<td class="styTableCell" style="width:72mm;text-align:center;font-weight:bold;border-color:black;border-right:none;"><div style="width:20mm;"> </div></td>
</tr>
</table>
</div>
</div>
<!-- End signature part -->
<div style="width:187mm;">
<span class="styBoldText" style="width:330px;"> </span>
<span style="width:144px;"></span>
<span style="width:88px;"></span>
Form <span class="styBoldText">8832</span> (Rev. 1-2012)
</div>
<!-- End signature part -->
<br/>
<br class="pageEnd"/>
<div class="styBB" style="width:187mm;">
<div style="float:left;">Form 8832 (Rev. 1-2012)</div>
<div style="float:right;">Page <span style="font-size:9pt;font-weight:bold;">3</span></div>
</div>
<!-- BEGIN Left Over Table -->
<div class="styBB" style="width: 187mm;padding-top:4px;padding-bottom:4px;border-top-width:1px">
<div class="styPartName">Part II</div>
<div class="styPartDesc">Late Election Relief</div>
</div>
<div style="width:187mm;"> </div>
<div style="width:187mm;">
<div class="styLNLeftNumBox" style="height:4.5mm;">11</div>
<div class="styLNDesc" style="width:178mm;height:4.5mm;">
Provide the explanation as to why the entity classification election was not filed on time (see instructions).
</div>
</div>
<div class="styBB" style="width:187mm;border-top-width:1px;border-bottom-width:0px;">
<div style="width:187mm;">
<table cellspacing="0" class="TableContainer" style="width:187mm;" summary="Table for Signatures">
<tr>
<td class="styTableCell" scope="row" colspan="3" style="border-right-width:0px;text-align:left;font-weight:normal;border-color:black;font-size:7pt;">
<div style="width:180mm;">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form8832Data/ExplEntClassElectNotTimelyFile" />
</xsl:call-template> </div></td>