-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIRS990ScheduleN.xsl
1580 lines (1551 loc) · 85.1 KB
/
IRS990ScheduleN.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"?>
<!-- This stylesheet was created by Sandy Cram and last modified on 11/25/2008 -->
<!-- This stylesheet was last modified by Sandy Cram on 1/8/2009 added shading for SRD -->
<!-- Last modified on 6/25/2009 by Sandy Cram changed all references to 2008 to 2009 per BSP-091509OTH -->
<!-- Last modified on 9/10/2009 by Sandy Cram Updates made per BSP-091865OTH -->
<!-- Last modified on 8/11/2010 by Robert Jones Updates made per BSP-101319OTH -->
<!-- Updated 7/21/2011 per UWR 40502 by Robert L Jones -->
<!--Updated 03/02/2012 Kisams #298847 by Robert L Jones -->
<!--Updated 03/02/2012 To stop SRD's from Populating in Additional Table Section. Even though developed that way by IBM they seem to be on that kick this year.- by Robert L Jones -->
<!--Updated 05/30/2012 Defect #32229 by Robert L Jones No problem found as it was fixed in prior that apparently wasn't delivered-->
<!-- Updated 6/29/2012 per UWR 58215 by Robert L Jones -->
<!-- Last modified on 09/19/2012 by Robert Jones for UWR 58215 after getting the 2012 PDF's-->
<!-- Last modified on 11/18/2012 by Robert Jones for IBM Defect 34268-->
<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="IRS990ScheduleNStyle.xsl"/>
<xsl:output method="html" indent="yes"/>
<xsl:strip-space elements="*"/>
<!-- Defines the stage of the data, e.g. original or latest -->
<xsl:param name="FormData" select="$RtnDoc/IRS990ScheduleN"/>
<xsl:template match="/">
<html>
<head>
<title>
<xsl:call-template name="FormTitle">
<xsl:with-param name="RootElement" select="local-name($FormData)"/>
</xsl:call-template>
</title>
<meta http-equiv="Pragma" content="no-cache"/>
<meta http-equiv="Cache-Control" content="no-cache"/>
<meta http-equiv="Expires" content="0"/>
<meta http-equiv="Cache-Control" content="private"/>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
<meta name="Description" content="IRS Form 990 Schedule N"/>
<META name="GENERATOR" content="IBM WebSphere Studio"/>
<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=''">
<!-- Form 990ScheduleN CSS Styles are located in the template called below -->
<xsl:call-template name="IRS990ScheduleNStyle"/>
<xsl:call-template name="AddOnStyle"/>
</xsl:if>
</style>
<xsl:call-template name="GlobalStylesForm"/>
</head>
<body class="styBodyClass">
<form name="IRS990ScheduleN">
<!-- BEGIN WARNING LINE -->
<xsl:call-template name="DocumentHeaderLandscape"/>
<!-- END WARNING LINE -->
<!-- BEGIN FORM HEADER -->
<!-- BEGIN FORM HEADER -->
<div class="sty990ScheduleNBB" style="width:256mm;height:18mm">
<div class="sty990ScheduleNFN">
<div class="sty990ScheduleNFNum" style="width:46mm;">SCHEDULE N
<br/>
<span class="sty990ScheduleNFNum2">(Form 990 or 990-EZ)</span>
</div>
<div class="sty990ScheduleNAgency" style="padding-top: 8mm">Department of the Treasury
<br/>Internal Revenue Service
</div>
</div>
<div class="sty990ScheduleNFTBox" style="width:163mm;border-right-width:1px;height:18mm;padding-top:1mm">
<div class="styMainTitle">Liquidation, Termination, Dissolution, or Significant Disposition of Assets</div>
<span class="sty990ScheduleNFST" style="padding-top:.5mm">
<img src="{$ImagePath}/990SchN_Bullet_Md.gif" alt="bullet"/>
Complete if the organization answered "Yes" to Form 990, Part IV, lines 31 or 32; or Form 990-EZ, line 36.
<br/>
<img src="{$ImagePath}/990SchN_Bullet_Md.gif" alt="bullet"/>
<span style="width: 4px"/> Attach certified copies of any articles of dissolution, resolutions, or plans.
<br/>
<img src="{$ImagePath}/990SchN_Bullet_Md.gif" alt="bullet"/>
<span style="width: 4px"/> Attach to Form 990 or 990-EZ.
<br/>
</span>
</div>
<div class="IRS990ScheduleN_FormYearBlock" style="height:18mm;float:right">
<!-- OMB No. -->
<div class="IRS990ScheduleN_OMB">OMB No. 1545-0047</div>
<!-- Tax Year -->
<div class="IRS990ScheduleN_TaxYear" style="padding-top:0mm;padding-bottom:0;">
<span>20<span class="styTYColor">12</span>
</span>
<div class="sty990ScheduleNPartName" style="font-size:7pt;font-family:verdana;width:45mm;padding-top:0mm;padding-bottom:0mm;height:7mm">Open to Public <br/>Inspection</div>
</div>
</div>
</div>
<!-- END FORM HEADER -->
<!-- BEGIN TAXPAYER INFO -->
<div style="width:256mm;float:left;clear:left;">
<div class="sty990ScheduleNBusinessName" style="width:200mm;height:30px;">
<span style="NormalText">Name of the organization</span>
<br/>
<span style="font-family: verdana, arial, sans-serif;font-size: 7pt;">
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="TargetNode">BusinessNameLine1</xsl:with-param>
</xsl:call-template>
<br/>
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="TargetNode">BusinessNameLine2</xsl:with-param>
</xsl:call-template>
</span>
</div>
<div class="sty990ScheduleNIN" style="width:56mm;height:30px;">
<span style="font-weight:bold;float:left; clear: none; margin-left: 1mm">Employer identification number</span>
<br/>
<span class="sty990ScheduleNINBox" style="font-weight:normal;font-size: 7pt; height:4mm;float:left; margin-left: 1mm; padding-top:2mm;">
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="TargetNode">EIN</xsl:with-param>
</xsl:call-template>
</span>
</div>
</div>
<!-- END TAXPAYER INFO -->
<!-- BEGIN HEADER -->
<div class="styBB" style="width: 256mm;border-top-width:1px">
<div class="styPartName">Part I</div>
<div class="styPartDesc" style="width: 242mm;">Liquidation, Termination, or Dissolution.
<span class="styNormalText">Complete this part if the organization answered "Yes" to Form 990, Part IV, line 31, or Form 990-EZ, line 36.</span><br/><span class="styNormalText">Part I can be duplicated if additional space is needed.</span>
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$FormData/LiquidationTable"/>
</xsl:call-template>
<!-- ================ Begin changes for Table I ========================================== -->
<xsl:variable name="table1RowCount" select="count($FormData/LiquidationTable/LiquidationDetail)"/>
<span style="width:4mm;text-align:right;float:right; clear: none;">
<xsl:call-template name="SetDynamicTableToggleRowCount">
<xsl:with-param name="DataRowCount" select="$table1RowCount"/>
<xsl:with-param name="containerHeight" select="9"/>
<xsl:with-param name="containerID" select=" 'p1TbCtnr' "/>
</xsl:call-template>
</span>
</div>
<!--Part I table -->
<div class="styTableContainerLandscape " id="p1TbCtnr">
<!-- print logic -->
<xsl:call-template name="SetInitialState"/>
<!-- end -->
<table cellspacing="0" style="font-size:7pt;margin-left:0mm">
<!--<div style="width: 256mm;">-->
<tr>
<th class="sty990ScheduleNLNCol" scope="col" style="text-align: center;font-size: 7pt; height: 15mm; border-bottom-width: 1px; border-top-width:1px;padding-top:1mm;font-weight:normal;vertical-align:top">
<span style="text-align:left;float:left;padding-left:1mm">
<b>1</b>
</span>
<b>(a)</b>Description of asset(s)<br/>distributed or transaction<br/>expenses paid</th>
<th class="sty990ScheduleNColA" scope="col" style="text-align: center; height: 15mm; width:20mm;border-bottom-width: 1px;border-top-width:1px; font-size: 7pt; padding-top: 1mm;font-weight:normal;vertical-align:top">
<b>(b)</b>Date of<br/>distribution</th>
<th class="sty990ScheduleNColB" scope="col" style="border-top-width:1px;text-align: center; height: 15mm; width:32mm; padding-right: 0px; font-size: 7pt; padding-top: 1mm;font-weight:normal;vertical-align:top">
<b>(c)</b>Fair market value of<br/>asset(s) distributed or<br/>amount of transaction<br/>expenses</th>
<!--<span style="width:94.75mm; height: 8mm">-->
<th class="sty990ScheduleNColC" scope="col" style="border-top-width:1px;text-align: center; height: 15mm;width:31mm; margin-top: 0mm;padding-top: 1mm;padding-right: 0px; font-size: 7pt;font-weight:normal;vertical-align:top">
<b>(d)</b>Method of <br/>determining FMV for<br/>asset(s) distributed or<br/>transaction expenses</th>
<th class="sty990ScheduleNCol" scope="col" style="border-top-width:1px;text-align: center; height: 15mm; width:30mm; padding-top: 1mm; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; float: none; clear:none; font-size: 7pt;font-weight:normal;vertical-align:top">
<b>(e)</b>EIN of recipient </th>
<th class="sty990ScheduleNCol" scope="col" style="border-top-width:1px;text-align: center; height: 15mm; width:48mm; padding-top: 1mm; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; float: none; clear:none; font-size: 7pt;font-weight:normal;vertical-align:top">
<b>(f)</b>Name and address of recipient</th>
<th class="sty990ScheduleNCol" scope="col" style="border-top-width:1px;text-align:center; height: 15mm; width: 32m;padding-top: 1mm; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; float: none; clear: none;font-size:6pt;font-weight:normal;vertical-align:top">
<span style="text-align:left">
<b>(g)</b>IRC section</span>
<br/>of recipient(s) (if<br/>
<span style="text-align:left">tax-exempt) or type<br/>
</span>of entity</th>
</tr>
<!-- END HEADER -->
<!-- BEGIN LINE 1 -->
<xsl:if test="($Print != $Separated) or count($FormData/LiquidationTable/LiquidationDetail) < 10">
<xsl:for-each select="$FormData/LiquidationTable/LiquidationDetail">
<tr>
<!-- Description of Asset col(a)-->
<td class="sty990ScheduleNLNCol" style="padding-top: 1mm;width:62mm;font-size:7pt;padding-left: 2.5mm;vertical-align:top">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="DescriptionOfAsset"/>
</xsl:call-template>
</td>
<!-- Date of Distribution col(b)-->
<td class="sty990ScheduleNColA" style="padding-top: 1mm;width:20mm;font-size:7pt;vertical-align:top;text-align:center">
<xsl:call-template name="PopulateMonthDayYear">
<xsl:with-param name="TargetNode" select="DateOfDistribution"/>
</xsl:call-template>
</td>
<!-- Fair Market Value col(c)-->
<td class="sty990ScheduleNColB" style="padding-top: 1mm;width: 32mm;font-size:7pt;vertical-align:top">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="FMVOfAsset"/>
</xsl:call-template>
</td>
<!-- Method of determining FMV col(d)-->
<td class="sty990ScheduleNColC" style="padding-top: 1mm;width: 31.75mm;font-size:7pt;vertical-align:top;text-align:left">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="MethodOfFMVDetermination"/>
</xsl:call-template>
</td>
<!-- EIN col(e)-->
<td class="sty990ScheduleNCol" style="padding-top: 1mm;width: 30mm;font-size:7pt;vertical-align:top;text-align:center">
<xsl:call-template name="PopulateEIN">
<xsl:with-param name="TargetNode" select="EIN"/>
</xsl:call-template>
</td>
<!-- Name and Address col(f)-->
<td class="sty990ScheduleNCol" style=" padding-top: 1mm;width: 47mm;font-size:7pt;vertical-align:top;text-align:left">
<xsl:choose>
<xsl:when test="NamePerson">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="NamePerson"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="NameBusiness/BusinessNameLine1"/>
</xsl:call-template>
<br/>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="NameBusiness/BusinessNameLine2"/>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
<br/>
<xsl:choose>
<xsl:when test="AddressUS">
<xsl:call-template name="PopulateUSAddressTemplate">
<xsl:with-param name="TargetNode" select="AddressUS"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="PopulateForeignAddressTemplate">
<xsl:with-param name="TargetNode" select="AddressForeign"/>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</td>
<!-- IRC Code col(g)-->
<td class="sty990ScheduleNCol" style="padding-top: 1mm;width: 32mm;font-size:7pt;padding-right:2mm;vertical-align:top;text-align:left">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="IRCSection"/>
</xsl:call-template>
</td>
</tr>
</xsl:for-each>
</xsl:if>
<xsl:if test="count($FormData/LiquidationTable) < 1 or
(($Print = $Separated) and (count($FormData/LiquidationTable/LiquidationDetail) > 9)) ">
<tr>
<td class="sty990ScheduleNLNCol" style="border-right-width:1px;text-align:center">
<xsl:call-template name="PopulateAdditionalDataTableMessage">
<xsl:with-param name="TargetNode" select="$FormData/LiquidationTable/LiquidationDetail"/>
</xsl:call-template>
<span style="width:3px"/>
</td>
<td class="sty990ScheduleNColA" style="border-right-width:1px;border-bottom-width:1px">
<span style="width:3px"/>
</td>
<td class="sty990ScheduleNColB" style="border-right-width:1px;border-bottom-width:1px">
<span style="width:3px"/>
</td>
<td class="sty990ScheduleNColC" style="border-right-width:1px;border-bottom-width:1px">
<span style="width:3px"/>
</td>
<td class="sty990ScheduleNColC" style="border-right-width:1px;border-bottom-width:1px">
<span style="width:3px"/>
</td>
<td class="sty990ScheduleNColC" style="border-right-width:1px;border-bottom-width:1px">
<span style="width:3px"/>
</td>
<td class="sty990ScheduleNCol" style="border-bottom-width:1px">
<span style="width:3px;"/>
</td>
</tr>
</xsl:if>
<xsl:if test="count($FormData/LiquidationTable/LiquidationDetail) < 2 or ((count($FormData/LiquidationTable/LiquidationDetail) > 11) and ($Print = $Separated))">
<xsl:call-template name="IRS990PartITableFillerRow"/>
</xsl:if>
<xsl:if test="count($FormData/LiquidationTable/LiquidationDetail) < 3 or ((count($FormData/LiquidationTable/LiquidationDetail) > 11) and ($Print = $Separated))">
<xsl:call-template name="IRS990PartITableFillerRow"/>
</xsl:if>
<xsl:if test="count($FormData/LiquidationTable/LiquidationDetail) < 4 or ((count($FormData/LiquidationTable/LiquidationDetail) > 11) and ($Print = $Separated))">
<xsl:call-template name="IRS990PartITableFillerRow"/>
</xsl:if>
<xsl:if test="count($FormData/LiquidationTable/LiquidationDetail) < 5 or ((count($FormData/LiquidationTable/LiquidationDetail) > 11) and ($Print = $Separated))">
<xsl:call-template name="IRS990PartITableFillerRow"/>
</xsl:if>
<xsl:if test="count($FormData/LiquidationTable/LiquidationDetail) < 6 or ((count($FormData/LiquidationTable/LiquidationDetail) > 11) and ($Print = $Separated))">
<xsl:call-template name="IRS990PartITableFillerRow"/>
</xsl:if>
<xsl:if test="count($FormData/LiquidationTable/LiquidationDetail) < 7 or ((count($FormData/LiquidationTable/LiquidationDetail) > 11) and ($Print = $Separated))">
<xsl:call-template name="IRS990PartITableFillerRow"/>
</xsl:if>
<xsl:if test="count($FormData/LiquidationTable/LiquidationDetail) < 8 or ((count($FormData/LiquidationTable/LiquidationDetail) > 11) and ($Print = $Separated))">
<xsl:call-template name="IRS990PartITableFillerRow"/>
</xsl:if>
<xsl:if test="count($FormData/LiquidationTable/LiquidationDetail) < 9 or ((count($FormData/LiquidationTable/LiquidationDetail) > 11) and ($Print = $Separated))">
<xsl:call-template name="IRS990PartITableFillerRow"/>
</xsl:if>
<xsl:if test="count($FormData/LiquidationTable/LiquidationDetail) < 10 or ((count($FormData/LiquidationTable/LiquidationDetail) > 11) and ($Print = $Separated))">
<xsl:call-template name="IRS990PartITableFillerRow"/>
</xsl:if>
<xsl:if test="count($FormData/LiquidationTable/LiquidationDetail) < 11 or ((count($FormData/LiquidationTable/LiquidationDetail) > 11) and ($Print = $Separated))">
<xsl:call-template name="IRS990PartITableFillerRow"/>
</xsl:if>
</table>
</div>
</div>
<xsl:call-template name="SetInitialDynamicTableHeight">
<xsl:with-param name="TargetNode" select="$FormData/LiquidationTable/LiquidationDetail"/>
<xsl:with-param name="headerHeight" select="2"/>
<xsl:with-param name="containerHeight" select="9"/>
<xsl:with-param name="containerID" select="'p1TbCtnr'"/>
</xsl:call-template>
<!-- END LINE 1 -->
<!-- Line 2 -->
<div style="width:256mm;">
<div class="styLNLeftNumBoxSD"/>
<div class="styLNDescLandscape" style="width:223mm">
<!--Dotted Line-->
<span class="styNoAudioRead" style="font-weight:bold;">
<span style="width:16px"/>
<span style="width:16px"/>
<span style="width:16px"/>
<span style="width:16px"/>
<span style="width:16px"/>
<span style="width:16px"/>
<span style="width:16px"/>
<span style="width:16px"/>
<span style="width:16px"/>
<span style="width:16px"/>
<span style="width:16px"/>
<span style="width:16px"/>
<span style="width:16px"/>
</span>
</div>
<div class="IRS990ScheduleN_LineIndexMid" style="width:8mm;height:4mm;border-top-width:0px;padding-top:0mm;border-left-width:0px"/>
<div class="IRS990ScheduleN_LineIndexMid" style="width:8mm;height:4mm;border-top-width:1px;padding-top:0mm;">Yes</div>
<div class="IRS990ScheduleN_LineIndexMid" style="width:8mm;height:4mm;border-top-width:1px;padding-top:0mm;border-right-width:0px">No</div>
</div>
<div style="width:256mm;">
<div class="styLNLeftNumBox">2</div>
<div class="styLNDescLandscape" style="width:223mm">Did or will any officer, director, trustee, or key employee of the organization:
<!--Dotted Line-->
</div>
<div class="IRS990ScheduleN_LineIndexMidFillerGray" style="width:8mm;height:4mm;border-top-width:0px;padding-top:0mm;border-right-width:1px;border-left-width:1px;"/>
<div class="IRS990ScheduleN_LineIndexMidFillerGray" style="width:8mm;height:4mm;border-top-width:0px;padding-top:0mm;"/>
<div class="IRS990ScheduleN_LineIndexMidFillerGray" style="width:8mm;height:4mm;border-top-width:0px;padding-top:0mm;border-right-width:0px"/>
</div>
<div style="width:256mm;">
<div class="styLNLeftNumBoxSD">a</div>
<div class="styLNDescLandscape" style="width:223mm">Become a director or trustee of a successor or transferee organization?
<!--Dotted Line-->
<span class="styNoAudioRead" style="font-weight:bold;">
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
</span>
</div>
<div class="IRS990ScheduleN_LineIndexMid" style="width:8mm;height:4mm;border-top-width:0px;padding-top:0mm;border-right-width:1px;border-left-width:1px;">2a</div>
<div class="IRS990ScheduleN_LineIndexMid" style="font-weight:normal;width:8mm;height:4mm;border-top-width:0px;padding-top:0mm;">
<xsl:call-template name="PopulateYesBoxText">
<xsl:with-param name="TargetNode" select="$FormData/DirectorOfSuccessor"/>
</xsl:call-template>
</div>
<div class="IRS990ScheduleN_LineIndexMid" style="font-weight:normal;width:8mm;height:4mm;border-top-width:0px;padding-top:0mm;border-right-width:0px">
<xsl:call-template name="PopulateNoBoxText">
<xsl:with-param name="TargetNode" select="$FormData/DirectorOfSuccessor"/>
</xsl:call-template>
</div>
<!-- <div class="styLNAmountBox"><xsl:call-template name="PopulateAmount"><xsl:with-param name="TargetNode" select="$FormData/ForeignOilGasExtractionIncome" /></xsl:call-template></div>-->
</div>
<div style="width:256mm;">
<div class="styLNLeftNumBoxSD">b</div>
<div class="styLNDescLandscape" style="width:223mm">Become an employee of, or independent contractor for, a successor or transferee organization?
<!--Dotted Line-->
<span class="styNoAudioRead" style="font-weight:bold;">
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
</span>
</div>
<div class="IRS990ScheduleN_LineIndexMid" style="width:8mm;height:4mm;border-top-width:0px;padding-top:0mm;border-right-width:1px;border-left-width:1px;">2b</div>
<div class="IRS990ScheduleN_LineIndexMid" style="font-weight:normal;width:8mm;height:4mm;border-top-width:0px;padding-top:0mm;">
<xsl:call-template name="PopulateYesBoxText">
<xsl:with-param name="TargetNode" select="$FormData/EmployeeOfSuccessor"/>
</xsl:call-template>
</div>
<div class="IRS990ScheduleN_LineIndexMid" style="font-weight:normal;width:8mm;height:4mm;border-top-width:0px;padding-top:0mm;border-right-width:0px">
<xsl:call-template name="PopulateNoBoxText">
<xsl:with-param name="TargetNode" select="$FormData/EmployeeOfSuccessor"/>
</xsl:call-template>
</div>
<!-- <div class="styLNAmountBox"><xsl:call-template name="PopulateAmount"><xsl:with-param name="TargetNode" select="$FormData/ForeignOilGasExtractionIncome" /></xsl:call-template></div>-->
</div>
<div style="width:256mm;">
<div class="styLNLeftNumBoxSD">c</div>
<div class="styLNDescLandscape" style="width:223mm">Become a direct or indirect owner of a successor or transferee organization?
<!--Dotted Line-->
<span class="styNoAudioRead" style="font-weight:bold;">
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
</span>
</div>
<div class="IRS990ScheduleN_LineIndexMid" style="width:8mm;height:4mm;border-top-width:0px;padding-top:0mm;border-right-width:1px;border-left-width:1px;">2c</div>
<div class="IRS990ScheduleN_LineIndexMid" style="font-weight:normal;width:8mm;height:4mm;border-top-width:0px;padding-top:0mm;">
<xsl:call-template name="PopulateYesBoxText">
<xsl:with-param name="TargetNode" select="$FormData/OwnerOfSuccessor"/>
</xsl:call-template>
</div>
<div class="IRS990ScheduleN_LineIndexMid" style="font-weight:normal;width:8mm;height:4mm;border-top-width:0px;padding-top:0mm;border-right-width:0px">
<xsl:call-template name="PopulateNoBoxText">
<xsl:with-param name="TargetNode" select="$FormData/OwnerOfSuccessor"/>
</xsl:call-template>
</div>
<!-- <div class="styLNAmountBox"><xsl:call-template name="PopulateAmount"><xsl:with-param name="TargetNode" select="$FormData/ForeignOilGasExtractionIncome" /></xsl:call-template></div>-->
</div>
<div style="width:256mm;">
<div class="styLNLeftNumBoxSD">d</div>
<div class="styLNDescLandscape" style="width:223mm">Receive, or become entitled to, compensation or other similar payments as a result of the organization's liquidation, termination, or dissolution?
<!--Dotted Line-->
<span class="styNoAudioRead" style="font-weight:bold;">
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
</span>
</div>
<div class="IRS990ScheduleN_LineIndexMid" style="width:8mm;height:4mm;border-top-width:0px;padding-top:0mm;border-right-width:1px;border-left-width:1px;">2d</div>
<div class="IRS990ScheduleN_LineIndexMid" style="font-weight:normal;width:8mm;height:4mm;border-top-width:0px;padding-top:0mm;">
<xsl:call-template name="PopulateYesBoxText">
<xsl:with-param name="TargetNode" select="$FormData/ReceiveCompensation"/>
</xsl:call-template>
</div>
<div class="IRS990ScheduleN_LineIndexMid" style="font-weight:normal;width:8mm;height:4mm;border-top-width:0px;padding-top:0mm;border-right-width:0px">
<xsl:call-template name="PopulateNoBoxText">
<xsl:with-param name="TargetNode" select="$FormData/ReceiveCompensation"/>
</xsl:call-template>
</div>
</div>
<div class="styBB">
<div style="width:256mm;padding-bottom:1mm">
<div class="styLNLeftNumBoxSD">e</div>
<div class="styLNDescLandscape" style="width:247mm">If the organization answered "Yes" to any of the questions in this line, provide the name of the person involved and explain in Part III.
<img src="{$ImagePath}/990SchN_Bullet_Md.gif" alt="bullet"/>
<!--Dotted Line-->
<!--<span class="styNoAudioRead" style="font-weight:bold;">
<span style="width:16px"></span>.
<span style="width:16px"></span>.
<span style="width:16px"></span>.
</span>-->
</div>
</div>
</div>
<!-- BEGIN FORM FOOTER -->
<div class="sty990ScheduleNFormFooter" style="padding-top:1mm">
<div style="width:140mm;font-weight:bold; float: left; clear: none;">For Paperwork Reduction Act Notice, see the Instructions for Form 990 or Form 990-EZ.</div>
<div style="width:60mm;font-weight:normal; float: left; clear: none;">Cat. No. 50087Z</div>
<div style="width:56mm;text-align:center;font-weight:bold; float: right; clear: none;">Schedule N (Form 990 or 990-EZ) (2012)</div>
</div>
<!-- END FORM FOOTER -->
<div class="pageEnd"/>
<br/>
<div class="styBB" style="width:256mm; float: none; clear:none;border-bottom-width:1px">
<div style="float:left">Schedule N (Form 990 or 990-EZ) (2012)</div>
<div style="float:right">Page <span style="font-weight:bold;font-size:8pt;padding-right:4mm">2</span>
</div>
</div>
<div class="styBB" style="width: 256mm;border-bottom-width:1px">
<div class="styPartName">Part I</div>
<div class="styPartDesc">Liquidation, Termination, or Dissolution <span style="font:italic;font-weight:normal">(continued)</span>
</div>
</div>
<div style="width:256mm; ">
<div class="styLNLeftNumBoxSD"/>
<div class="styLNDescLandscape" style="width:223mm;height:7.5mm;">
<span style="font-weight:bold;">Note.</span>
If the organization distributed all of its assets during the tax year, then Form 990, Part X, column (B), line 16 (Total assets), and line 26 (Total liabilities), should equal -0-.
<!--Dotted Line-->
<span class="styNoAudioRead" style="font-weight:bold;">
<span style="width:16px"/>
<span style="width:16px"/>
<span style="width:16px"/>
<span style="width:16px"/>
<span style="width:16px"/>
<span style="width:16px"/>
<span style="width:16px"/>
<span style="width:16px"/>
</span>
</div>
<div class="IRS990ScheduleN_LineIndexMid" style="width:8mm;height:7.5mm;border-top-width:0px;padding-top:0mm;border-left-width:0px"/>
<div class="IRS990ScheduleN_LineIndexMid" style="width:8mm;height:7.5mm;border-top-width:0px;padding-top:0mm;">Yes</div>
<div class="IRS990ScheduleN_LineIndexMid" style="width:8mm;height:7.5mm;border-top-width:0px;padding-top:0mm;border-right-width:0px">No</div>
</div>
<div style="width:256mm;">
<div class="styLNLeftNumBox">3</div>
<div class="styLNDescLandscape" style="width:223mm">Did the organization distribute its assets in accordance with its governing instrument(s)? If “No,” describe in Part III
<!--Dotted Line-->
<span class="styNoAudioRead" style="font-weight:bold;">
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
</span>
</div>
<div class="IRS990ScheduleN_LineIndexMid" style="width:8mm;height:4mm;border-top-width:0px;padding-top:0mm;border-right-width:1px;border-left-width:1px;">3</div>
<div class="IRS990ScheduleN_LineIndexMid" style="font-weight:normal;width:8mm;height:4mm;border-top-width:0px;padding-top:0mm;">
<xsl:call-template name="PopulateYesBoxText">
<xsl:with-param name="TargetNode" select="$FormData/AssetsDistributed"/>
</xsl:call-template>
</div>
<div class="IRS990ScheduleN_LineIndexMid" style="font-weight:normal;width:8mm;height:4mm;border-top-width:0px;padding-top:0mm;border-right-width:0px">
<xsl:call-template name="PopulateNoBoxText">
<xsl:with-param name="TargetNode" select="$FormData/AssetsDistributed"/>
</xsl:call-template>
</div>
</div>
<!--
<div style="width:256mm;">
<div class="styLNLeftNumBox">4a</div>
<div class="styLNDescLandscape" style="width:223mm">Did the organization request or receive a determination letter from EO Determinations that the organization’s exempt status was terminated?
<xsl:call-template name="SetFormLinkInline">
<xsl:with-param name="TargetNode" select="$FormData/DeterminationLetter"/>
</xsl:call-template>
<span class="styNoAudioRead" style="font-weight:bold;">
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
</span>
</div>
<div class="IRS990ScheduleN_LineIndexMid" style="width:8mm;height:4mm;border-top-width:0px;padding-top:0mm;border-right-width:1px;border-left-width:1px;">4a</div>
<div class="IRS990ScheduleN_LineIndexMid" style="font-weight:normal;width:8mm;height:4mm;border-top-width:0px;padding-top:0mm;">
<xsl:call-template name="PopulateYesBoxText">
<xsl:with-param name="TargetNode" select="$FormData/DeterminationLetter"/>
</xsl:call-template>
</div>
<div class="IRS990ScheduleN_LineIndexMid" style="font-weight:normal;width:8mm;height:4mm;border-top-width:0px;padding-top:0mm;border-right-width:0px">
<xsl:call-template name="PopulateNoBoxText">
<xsl:with-param name="TargetNode" select="$FormData/DeterminationLetter"/>
</xsl:call-template>
</div>
</div>
<div style="width:256mm;">
<div class="styLNLeftNumBoxSD">b</div>
<div class="styLNDescLandscape" style="width:223mm">(If “Yes,” provide the date of the letter.
<img src="{$ImagePath}/990SchN_Bullet_Md.gif" alt="bullet"/>
<span class="sty990ScheduleNUnderlineAmount" style="float:none;width:24mm;padding-top:0mm;padding-bottom:0mm">
<xsl:call-template name="PopulateMonthDayYear">
<xsl:with-param name="TargetNode" select="$FormData/DateOfLetter"/>
</xsl:call-template> )</span>
<span class="styNoAudioRead" style="font-weight:bold;">
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
</span>
</div>
<div class="IRS990ScheduleN_LineIndexMidFillerGray" style="width:8mm;height:4mm;border-top-width:0px;padding-top:0mm;border-right-width:1px;border-left-width:1px;"/>
<div class="IRS990ScheduleN_LineIndexMidFillerGray" style="width:8mm;height:4mm;border-top-width:0px;padding-top:0mm;"/>
<div class="IRS990ScheduleN_LineIndexMidFillerGray" style="width:8mm;height:4mm;border-top-width:0px;padding-top:0mm;border-right-width:0px"/>
</div>
-->
<div style="width:256mm;">
<div class="styLNLeftNumBox">4a</div>
<div class="styLNDescLandscape" style="width:223mm">Is the organization required to notify the attorney general or other appropriate state official of its intent to dissolve, liquidate, or terminate?
<!--Dotted Line-->
<span class="styNoAudioRead" style="font-weight:bold;">
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
</span>
</div>
<div class="IRS990ScheduleN_LineIndexMid" style="width:8mm;height:4mm;border-top-width:0px;padding-top:0mm;border-right-width:1px;border-left-width:1px;">4a</div>
<div class="IRS990ScheduleN_LineIndexMid" style="font-weight:normal;width:8mm;height:4mm;border-top-width:0px;padding-top:0mm;">
<xsl:call-template name="PopulateYesBoxText">
<xsl:with-param name="TargetNode" select="$FormData/RequiredToNotifyAG"/>
</xsl:call-template>
</div>
<div class="IRS990ScheduleN_LineIndexMid" style="font-weight:normal;width:8mm;height:4mm;border-top-width:0px;padding-top:0mm;border-right-width:0px">
<xsl:call-template name="PopulateNoBoxText">
<xsl:with-param name="TargetNode" select="$FormData/RequiredToNotifyAG"/>
</xsl:call-template>
</div>
</div>
<div style="width:256mm;">
<div class="styLNLeftNumBoxSD">b</div>
<div class="styLNDescLandscape" style="width:223mm">If “Yes,” did the organization provide such notice?
<!--Dotted Line-->
<span class="styNoAudioRead" style="font-weight:bold;">
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
</span>
</div>
<div class="IRS990ScheduleN_LineIndexMid" style="width:8mm;height:4mm;border-top-width:0px;padding-top:0mm;border-right-width:1px;border-left-width:1px;">4b</div>
<div class="IRS990ScheduleN_LineIndexMid" style="font-weight:normal;width:8mm;height:4mm;border-top-width:0px;padding-top:0mm;">
<xsl:call-template name="PopulateYesBoxText">
<xsl:with-param name="TargetNode" select="$FormData/AGNotified"/>
</xsl:call-template>
</div>
<div class="IRS990ScheduleN_LineIndexMid" style="font-weight:normal;width:8mm;height:4mm;border-top-width:0px;padding-top:0mm;border-right-width:0px">
<xsl:call-template name="PopulateNoBoxText">
<xsl:with-param name="TargetNode" select="$FormData/AGNotified"/>
</xsl:call-template>
</div>
</div>
<div style="width:256mm;">
<div class="styLNLeftNumBox">5</div>
<div class="styLNDescLandscape" style="width:223mm">Did the organization discharge or pay all of its liabilities in accordance with state laws?
<!--Dotted Line-->
<span class="styNoAudioRead" style="font-weight:bold;">
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
</span>
</div>
<div class="IRS990ScheduleN_LineIndexMid" style="width:8mm;height:4mm;border-top-width:0px;padding-top:0mm;border-right-width:1px;border-left-width:1px;">5</div>
<div class="IRS990ScheduleN_LineIndexMid" style="font-weight:normal;width:8mm;height:4mm;border-top-width:0px;padding-top:0mm;">
<xsl:call-template name="PopulateYesBoxText">
<xsl:with-param name="TargetNode" select="$FormData/LiabilitiesPaid"/>
</xsl:call-template>
</div>
<div class="IRS990ScheduleN_LineIndexMid" style="font-weight:normal;width:8mm;height:4mm;border-top-width:0px;padding-top:0mm;border-right-width:0px">
<xsl:call-template name="PopulateNoBoxText">
<xsl:with-param name="TargetNode" select="$FormData/LiabilitiesPaid"/>
</xsl:call-template>
</div>
</div>
<div style="width:256mm;">
<div class="styLNLeftNumBox">6a</div>
<div class="styLNDescLandscape" style="width:223mm">Did the organization have any tax-exempt bonds outstanding during the year? <!--Dotted Line-->
<span class="styNoAudioRead" style="font-weight:bold;">
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
<span style="width:16px"/>.
</span>
</div>
<div class="IRS990ScheduleN_LineIndexMid" style="width:8mm;height:4mm;border-top-width:0px;padding-top:0mm;border-right-width:1px;border-left-width:1px;">6a</div>
<div class="IRS990ScheduleN_LineIndexMid" style="font-weight:normal;width:8mm;height:4mm;border-top-width:0px;padding-top:0mm;">
<xsl:call-template name="PopulateYesBoxText">
<xsl:with-param name="TargetNode" select="$FormData/BondsOutstanding"/>
</xsl:call-template>
</div>
<div class="IRS990ScheduleN_LineIndexMid" style="font-weight:normal;width:8mm;height:4mm;border-top-width:0px;padding-top:0mm;border-right-width:0px">
<xsl:call-template name="PopulateNoBoxText">
<xsl:with-param name="TargetNode" select="$FormData/BondsOutstanding"/>
</xsl:call-template>
</div>
</div>
<div style="width:256mm;">
<div class="styLNLeftNumBoxSD">b</div>
<div class="styLNDescLandscape" style="width:223mm">Did the organization discharge or defease all of its tax-exempt bond liabilities during the tax year in accordance with the Internal Revenue Code and state laws?
<!--Dotted Line-->
<span class="styNoAudioRead" style="font-weight:bold;">
<span style="width:16px"/>.
</span>
</div>
<div class="IRS990ScheduleN_LineIndexMid" style="width:8mm;height:4mm;border-top-width:0px;padding-top:0mm;border-right-width:1px;border-left-width:1px;">6b</div>
<div class="IRS990ScheduleN_LineIndexMid" style="font-weight:normal;width:8mm;height:4mm;border-top-width:0px;padding-top:0mm;">
<xsl:call-template name="PopulateYesBoxText">
<xsl:with-param name="TargetNode" select="$FormData/BondLiabilitiesDischarged"/>
</xsl:call-template>
</div>
<div class="IRS990ScheduleN_LineIndexMid" style="font-weight:normal;width:8mm;height:4mm;border-top-width:0px;padding-top:0mm;border-right-width:0px">
<xsl:call-template name="PopulateNoBoxText">
<xsl:with-param name="TargetNode" select="$FormData/BondLiabilitiesDischarged"/>
</xsl:call-template>
</div>
</div>
<div style="width:256mm;">
<div class="styLNLeftNumBoxSD">c</div>
<div class="styLNDescLandscape" style="width:223mm">If "Yes" to line 6b, describe in Part III how the organization defeased or otherwise settled these liabilities. If “No,” explain in Part III.
<!--Dotted Line-->
</div>
<br/>
<!-- BEGIN HEADER -->
<div class="styBB" style="width: 256mm;border-top-width:1px">
<div class="sty990ScheduleNPartName">Part II</div>
<div class="sty990ScheduleNPartDesc">Sale, Exchange, Disposition, or Other Transfer of More Than 25% of the Organization's Assets.
<span style="font-weight:normal;">Complete this part if the organization answered "Yes" to Form 990, Part IV, line 32, or Form 990-EZ, line 36. Part II can be duplicated if additional space is needed.
</span>
</div>
<!--==============================Part II Table ======================================-->
<xsl:variable name="table2RowCount" select="count($FormData/DispositionTable)"/>
<span style="width:4mm;text-align:right;float:right; clear: none;">
<xsl:call-template name="SetDynamicTableToggleRowCount">
<xsl:with-param name="DataRowCount" select="$table2RowCount"/>
<xsl:with-param name="containerHeight" select="9"/>
<xsl:with-param name="containerID" select=" 'p2TbCtnr' "/>
</xsl:call-template>
</span>
</div>
<div class="styTableContainerLandscape " id="p2TbCtnr">
<!-- print logic -->
<xsl:call-template name="SetInitialState"/>
<!-- end -->
<table cellspacing="0" style="font-size:7pt;margin-left:0mm">
<thead class="styTableThead">
<tr>
<th class="sty990ScheduleNLNCol" scope="col" style="text-align: center;font-size: 7pt; height: 14mm; border- bottom-width: 1px; border-top-width:1px;padding-top:1mm;font-weight:normal;vertical-align:top">
<span style="text-align:left;float:left;padding-left:1mm">
<b>1</b>
</span>
<b>(a)</b> Description of asset(s)<br/>distributed or transaction<br/>expenses paid</th>
<th class="sty990ScheduleNColA" scope="col" style="text-align: center; height: 14mm; width:20mm;border-bottom-width: 1px;border-top-width:1px; font-size: 7pt; padding-top: 1mm;font-weight:normal;vertical-align:top">
<b>(b)</b> Date of<br/>distribution</th>
<th class="sty990ScheduleNColB" scope="col" style="border-top-width:1px;text-align: center; height: 14mm; width: 32mm; padding-right: 0px; font-size: 7pt; padding-top: 1mm;font-weight:normal;vertical-align:top">
<b>(c)</b> Fair market value of<br/>asset(s) distributed or<br/>amount of transaction<br/>expenses</th>
<!--<span style="width:94.75mm; height: 8mm">-->
<th class="sty990ScheduleNColC" scope="col" style="border-top-width:1px;text-align: center; height: 14mm;width:31mm; margin-top: 0mm;padding-top: 1mm;padding-right: 0px; font-size: 7pt;font-weight:normal;vertical-align:top">
<b>(d)</b> Method of <br/>determining FMV for<br/>asset(s) distributed or<br/>transaction expenses</th>
<th class="sty990ScheduleNCol" scope="col" style="border-top-width:1px;text-align: center; height: 14mm; width:30mm; padding-top: 1mm; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; float: none; clear: none; font-size: 7pt;font-weight:normal;vertical-align:top">
<b>(e)</b> EIN of recipient </th>
<th class="sty990ScheduleNCol" scope="col" style="border-top-width:1px;text-align: center; height: 14mm; width:49mm; padding-top: 1mm; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; float: none; clear:none; font-size: 7pt;font-weight:normal;vertical-align:top">
<b>(f)</b> Name and address of recipient</th>
<th class="sty990ScheduleNCol" scope="col" style="border-top-width:1px;text-align: center; height: 14mm; width: 30m;padding-top: 1mm; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; float: none; clear: none;font-size:6pt;font-weight:normal;vertical-align:top">
<span style="text-align:left">
<b>(g)</b> IRC section</span>
<br/>of recipient(s) (if<br/>
<span style="text-align:left">tax-exempt) or type</span>
<br/>of entity</th>
</tr>
</thead>
<tfoot/>
<tbody>
<!-- END HEADER -->
<!-- BEGIN LINE 1 -->
<xsl:if test="($Print != $Separated) or count($FormData/DispositionTable) < 10">
<xsl:for-each select="$FormData/DispositionTable">
<tr>
<!-- Description of Asset col(a) -->
<td class="sty990ScheduleNLNCol" style="padding-top: 1mm;width:62mm;font-size:7pt;padding-left: 2.5mm;vertical-align:top">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="DescriptionOfAsset"/>
</xsl:call-template>
</td>
<!-- Date of Distribution col(b) -->
<td class="sty990ScheduleNColA" style="padding-top: 1mm;width:20mm;font-size:7pt;vertical-align:top;text-align:center">
<xsl:call-template name="PopulateMonthDayYear">
<xsl:with-param name="TargetNode" select="DateOfDistribution"/>
</xsl:call-template>
</td>
<!-- Fair Market Value col(c) -->
<td class="sty990ScheduleNColB" style="padding-top: 1mm;width: 32mm;font-size:7pt;vertical-align:top">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="FMVOfAsset"/>
</xsl:call-template>
</td>
<!--Method of Determing FMV col(d) -->
<td class="sty990ScheduleNColC" style="padding-top: 1mm;width: 31.75mm;font-size:7pt;vertical-align:top;text-align:left">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="MethodOfFMVDetermination"/>
</xsl:call-template>
</td>
<!-- EIN col(e) -->
<td class="sty990ScheduleNCol" style="padding-top: 1mm;width: 30mm;font-size:7pt;vertical-align:top;text-align:center">
<xsl:call-template name="PopulateEIN">
<xsl:with-param name="TargetNode" select="EIN"/>
</xsl:call-template>
</td>
<!-- Name and Address col(f)-->
<td class="sty990ScheduleNCol" style=" padding-top: 1mm;width: 49mm;font-size:7pt;vertical-align:top;text-align:left;">
<xsl:choose>
<xsl:when test="NamePerson">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="NamePerson"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="NameBusiness/BusinessNameLine1"/>
</xsl:call-template>
<br/>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="NameBusiness/BusinessNameLine2"/>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
<br/>
<xsl:choose>
<xsl:when test="AddressUS">
<xsl:call-template name="PopulateUSAddressTemplate">
<xsl:with-param name="TargetNode" select="AddressUS"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="PopulateForeignAddressTemplate">
<xsl:with-param name="TargetNode" select="AddressForeign"/>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</td>
<!-- IRC Code col(g)-->
<td class="sty990ScheduleNCol" style="padding-top: 1mm;width: 30mm;font-size:7pt;padding-right:2mm;vertical-align:top;text-align:left">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="IRCSection"/>
</xsl:call-template>
</td>
</tr>
</xsl:for-each>
</xsl:if>
<xsl:if test="count($FormData/DispositionTable) < 1 or
(($Print = $Separated) and (count($FormData/DispositionTable) > 9)) ">
<tr>
<td class="sty990ScheduleNLNCol" style="padding-top: 1mm;width:62mm;font-size:7pt;padding-left: 2.5mm;">
<xsl:call-template name="PopulateAdditionalDataTableMessage">
<xsl:with-param name="TargetNode" select="$FormData/DispositionTable"/>
</xsl:call-template>
<span style="width:3px"/>
</td>
<td class="sty990ScheduleNColA" style="padding-top: 1mm;width:20mm;font-size:7pt">
<span style="width:3px"/>
</td>
<td class="sty990ScheduleNColB" style="padding-top: 1mm;width: 32mm;font-size:7pt">
<span style="width:3px"/>
</td>
<td class="sty990ScheduleNColC" style="padding-top: 1mm;width: 31.75mm;font-size:7pt">
<span style="width:3px"/>
</td>
<td class="sty990ScheduleNCol" style="padding-top: 1mm;width: 30mm;font-size:7pt">
<span style="width:3px;"/>
</td>
<td class="sty990ScheduleNCol" style=" padding-top: 1mm;width: 49mm;font-size:7pt">
<span style="width:3px;"/>
</td>
<td class="sty990ScheduleNCol" style="padding-top: 1mm;width: 30mm;font-size:7pt">
<span style="width:3px;"/>
</td>
</tr>
</xsl:if>
<xsl:if test="count($FormData/DispositionTable) < 2 or ((count($FormData/DispositionTable) > 9) and ($Print = $Separated))">
<xsl:call-template name="IRS990PartIITableFillerRow"/>
</xsl:if>
<xsl:if test="count($FormData/DispositionTable) < 3 or ((count($FormData/DispositionTable) > 9) and ($Print = $Separated))">
<xsl:call-template name="IRS990PartIITableFillerRow"/>
</xsl:if>
<xsl:if test="count($FormData/DispositionTable) < 4 or ((count($FormData/DispositionTable) > 9) and ($Print = $Separated))">
<xsl:call-template name="IRS990PartIITableFillerRow"/>
</xsl:if>
<xsl:if test="count($FormData/DispositionTable) < 5 or ((count($FormData/DispositionTable) > 9) and ($Print = $Separated))">
<xsl:call-template name="IRS990PartIITableFillerRow"/>
</xsl:if>
<xsl:if test="count($FormData/DispositionTable) < 6 or ((count($FormData/DispositionTable) > 9) and ($Print = $Separated))">
<xsl:call-template name="IRS990PartIITableFillerRow"/>
</xsl:if>
<xsl:if test="count($FormData/DispositionTable) < 7 or ((count($FormData/DispositionTable) > 9) and ($Print = $Separated))">
<xsl:call-template name="IRS990PartIITableFillerRow"/>
</xsl:if>
<xsl:if test="count($FormData/DispositionTable) < 8 or ((count($FormData/DispositionTable) > 9) and ($Print = $Separated))">
<xsl:call-template name="IRS990PartIITableFillerRow"/>
</xsl:if>