-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIRS990ScheduleB.xsl
1722 lines (1640 loc) · 99.9 KB
/
IRS990ScheduleB.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"?>
<!DOCTYPE xsl:stylesheet [<!ENTITY nbsp " ">]>
<!-- Updated 7/21/2011 per UWR 40502 by Robert L Jones -->
<!-- Updated 1/21/2012 per UWR 40502 by Robert L Jones -->
<!-- Updated 06/05/2012 Defect 32176 and 32714 508 Accverify Compliance, Checkboxes needed BackupName by Robert L Jones -->
<!-- Lisa Lane provided fix to allow 508 Compliance/Accverify, JAWS test passage -->
<!-- Code submitted for Defect 32714 508 Compliance - RLJ-->
<!-- Last modified on 06/28/2012 by Robert Jones for UWR 58215 -->
<!-- Last modified on 09/06/2012 by Robert Jones for UWR 58215 after getting the 2012 PDF's-->
<!-- Last modified on 10/19/2012 by Robert Jones forIBM Defect 33480 Part II col C wrapping- NPF-RLJ-->
<!-- Last modified on 10/19/2012 by Robert Jones for IBM Defect 33481 Part II col C wrapping- NPF-RLJ-->
<!-- Last modified on 11/14/2012 by Robert Jones for IBM Defect 34323 Part II col C wrapping- NPF-RLJ-->
<!-- Last modified on 12/19/2012 by Robert Jones for IBM Defect 34811 Part II col C wrapping- NPF- Made Font 7pt instead of 8pt-RLJ-->
<!-- Last modified on 01/22/2012 by Robert Jones for TEGE PDF REVIEW - RLJ-->
<!-- Last modified on 01/24/2012 by Robert Jones for Defect 33481 - RLJ-->
<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="IRS990ScheduleBStyle.xsl"/>
<xsl:output method="html" indent="yes" encoding="iso-8859-1"/>
<xsl:strip-space elements="*" />
<xsl:param name="Form990ScheduleBData" select="$RtnDoc/IRS990ScheduleB" />
<xsl:template match="/">
<html>
<head>
<title>Schedule B (Form 990, 990-EZ, or 990-PF) (2012)</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"/>
<meta name="Description" content="Schedule B (Form 990, 990-EZ, or 990-PF)"/>
<meta name="GENERATOR" content="IBM WebSphere Studio"/>
<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=''">
<xsl:call-template name="IRS990ScheduleBStyle"></xsl:call-template>
<xsl:call-template name="AddOnStyle"></xsl:call-template>
</xsl:if>
</style>
<xsl:call-template name="GlobalStylesForm"/>
</head>
<body class="styBodyClass">
<form style="font-family:arial; font-size:8.5pt" name="Form990ScheduleB">
<xsl:call-template name="DocumentHeader"></xsl:call-template>
<div class="styTBB" style="width:187mm">
<div class="styFNBox" style="height:18mm; width:31mm">
<b style="font-size:12pt">
Schedule B
<div style="line-height:100%; font-size:7.5pt">
(Form 990, 990-EZ,<br />or 990-PF)
</div>
</b>
<div style="font-size:6pt; padding-top:1mm">
Department of the Treasury<br/>Internal Revenue Service
</div>
</div>
<div class="styFTBox" style="width:125mm">
<div class="styMainTitle" style="padding-top:1mm; font-size:12pt">Schedule of Contributors</div>
<div style="font-weight:bold; font-size:7.5pt; padding-top:2mm">
<img src="{$ImagePath}/990SchB_Bullet.gif" alt="Arrow Bullet"/>
Attach to Form 990, 990-EZ, or 990-PF.<br />
<!-- <img src="{$ImagePath}/990SchB_Bullet.gif" alt="Arrow Bullet"/> See separate instructions.-->
</div>
</div>
<div class="styTYBox" style="font-size:7pt; width:31mm; height:18mm">
<div class="styOMB" style="height:2mm;">OMB No. 1545-0047</div>
<div class="styFN" style="padding-top:3mm">
20<span class="styTYColor">12</span>
</div>
</div>
</div>
<!-- Begin Name and Identifying Number Section-->
<div class="styBB" style="width:187mm;clear:both;font-family:verdana;font-size:7pt;">
<div class="styFNBox" style="width:139mm;height:8mm;">
<span class="styBoldText">Name of the organization</span><br/>
<div style="font-family:verdana;font-size:6pt;">
<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>
</div>
</div>
<div class="styGenericDiv" style="width:47mm;height:4mm;padding-left:1mm;">
<span class="styBoldText">Employer identification number</span>
<br/><br/>
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="TargetNode">EIN</xsl:with-param>
</xsl:call-template>
</div>
</div>
<!-- End Name and Identifying Number Section-->
<div class="styBB" style="padding-bottom:6mm; width:187mm; height:8mm; clear:both; padding-top:1mm">
<div style="width:187mm">
<b>Organization type</b> (check one):
</div>
<div style="width:187mm; font-weight:bold; margin-top:5mm; margin-bottom:5mm">
<div style="width:40mm; float:left">
Filers of:
</div>
<div style="float:left">
Section:
</div>
</div>
<div class="styGenericDiv" style="height:15mm; width:40mm">Form 990 or 990-EZ</div>
<!-- Is it a 501(c)( ) checkbox -->
<div style="margin-left:40mm">
<input type="Checkbox" class="styIRS990ScheduleBCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form990ScheduleBData/Organization501c"/>
<!-- <xsl:with-param name="BackupName" select="IRS990ScheduleBOrganization501c"/>This will not pass 508-->
<xsl:with-param name="BackupName">IRS990SchBOrganization501c</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form990ScheduleBData/Organization501c" />
<!--<xsl:with-param name="BackupName" select="IRS990ScheduleBOrganization501c"/>This will not pass 508-->
<xsl:with-param name="BackupName">IRS990SchBOrganization501c</xsl:with-param>
</xsl:call-template>
501(c)(
<xsl:choose>
<xsl:when test="$Form990ScheduleBData/Organization501c/@typeOf501cOrganization">
<xsl:call-template name="PopulateText"><xsl:with-param name="TargetNode" select="$Form990ScheduleBData/Organization501c/@typeOf501cOrganization" /></xsl:call-template>
</xsl:when>
<xsl:otherwise>
</xsl:otherwise>
</xsl:choose>
) (enter number) organization
</label>
<br/><br/>
<input type="Checkbox" class="styIRS990ScheduleBCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form990ScheduleBData/Organization4947a1NotPF"/>
<xsl:with-param name="BackupName">IRS990SchBOrganization4947a1NotPF</xsl:with-param>
</xsl:call-template>
</input>
<!--Is it a 4947a1NotPF Checkbox-->
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form990ScheduleBData/Organization4947a1NotPF" />
<xsl:with-param name="BackupName">IRS990SchBOrganization4947a1NotPF</xsl:with-param>
</xsl:call-template>
4947(a)(1) nonexempt charitable trust <b>not</b> treated as a private foundation
</label>
<br/><br/>
<!--Is it a 527 Organization Checkbox-->
<input type="Checkbox" class="styIRS990ScheduleBCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form990ScheduleBData/Organization527"/>
<xsl:with-param name="BackupName">IRS990SchBOrganization527</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form990ScheduleBData/Organization527" />
<xsl:with-param name="BackupName">IRS990SchBOrganization527</xsl:with-param>
</xsl:call-template>
527 political organization
</label>
</div>
<br/>
<div class="styGenericDiv" style="clear:left; height:15mm; width:40mm">Form 990-PF</div>
<div style="margin-left:40mm">
<!--Organization 501(c)(3) Exempt PF Checkbox-->
<input type="Checkbox" class="styIRS990ScheduleBCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form990ScheduleBData/Organization501c3ExemptPF"/>
<xsl:with-param name="BackupName">IRS990SchBOrganization501c3ExemptPF</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form990ScheduleBData/Organization501c3ExemptPF" />
<xsl:with-param name="BackupName">IRS990SchBOrganization501c3ExemptPF</xsl:with-param>
</xsl:call-template>
501(c)(3) exempt private foundation
</label>
<br/><br/>
<!--Organization 4947a(1) Treated as PF Checkbox-->
<input type="Checkbox" class="styIRS990ScheduleBCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form990ScheduleBData/Organization4947a1TreatedAsPF"/>
<xsl:with-param name="BackupName">IRS990SchBOrganization4947a1TreatedAsPF</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form990ScheduleBData/Organization4947a1TreatedAsPF" />
<xsl:with-param name="BackupName">IRS990SchBOrganization4947a1TreatedAsPF</xsl:with-param>
</xsl:call-template>
4947(a)(1) nonexempt charitable trust treated as a private foundation
</label>
<br/><br/>
<!--Is it a 501(c)(3) Taxable Private Foundation Checkbox-->
<input type="Checkbox" class="styIRS990ScheduleBCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form990ScheduleBData/Organization501c3TaxablePF"/>
<xsl:with-param name="BackupName">IRS990SchBOrganization501c3TaxablePF</xsl:with-param>
</xsl:call-template>
</input>
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form990ScheduleBData/Organization501c3TaxablePF"/>
<xsl:with-param name="BackupName">IRS990SchBOrganization501c3TaxablePF</xsl:with-param>
</xsl:call-template>
501(c)(3) taxable private foundation
</label>
</div>
</div>
<div style="width:187mm; padding-top:1mm">
Check if your organization is covered by the <b>General Rule</b> or a <b>Special Rule.</b> <br/><b>Note.</b> Only a section 501(c)(7), (8), or (10) organization can check boxes for both the General Rule and a Special Rule. See instructions.
</div>
<div style="width:187mm; margin-top:5mm; margin-bottom:5mm">
<b>General Rule<!--—--></b>
</div>
<div style="padding-left:5mm; width:187mm">
<div style="float:left">
<input type="Checkbox" class="styIRS990ScheduleBCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form990ScheduleBData/GeneralRule"/>
<xsl:with-param name="BackupName">IRS990SchBGeneralRule</xsl:with-param>
</xsl:call-template>
</input>
</div>
<div style="float:right; width:177mm">
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form990ScheduleBData/GeneralRule" />
<xsl:with-param name="BackupName">IRS990SchBGeneralRule</xsl:with-param>
</xsl:call-template>
For an organization filing Form 990, 990-EZ, or 990-PF that received, during the year, $5,000 or more (in money or<br />property) from any one contributor. Complete Parts I and II.
</label>
</div>
</div>
<div style="width:187mm; margin-top:5mm; margin-bottom:5mm">
<b>Special Rules<!--—--></b>
</div>
<div style="padding-left:5mm; width:187mm">
<div style="float:left;width:4mm;padding-top:.7mm;">
<input type="Checkbox" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form990ScheduleBData/SpclRuleMetOneThirdSuprtTest"/>
<xsl:with-param name="BackupName">IRS990SchBSpclRuleMetOneThirdSuprtTest</xsl:with-param>
</xsl:call-template>
</input>
</div>
<div style="float:right;width:177mm;">
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form990ScheduleBData/SpclRuleMetOneThirdSuprtTest" />
<xsl:with-param name="BackupName">IRS990SchBSpclRuleMetOneThirdSuprtTest</xsl:with-param>
</xsl:call-template>
For a section 501(c)(3) organization filing Form 990 or 990-EZ that met the
33<font style="font-family: 'Arial Narrow'; font-size: smaller;"><sup>1</sup>/3</font>%
support test of the regulations <br/>under sections 509(a)(1) and 170(b)(1)(A)(vi) and received from any one contributor, during the year, a contribution of the <br/>greater of <b>(1)</b> $5,000 or <b>(2)</b> 2% of the amount on (i) Form 990, Part VIII, line 1h, or (ii) Form 990-EZ, line 1. Complete Parts I and II.
</label>
</div>
</div>
<div style="padding-left:5mm; margin-top:5mm; width:187mm">
<div style="float:left">
<input type="Checkbox" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form990ScheduleBData/SpclRuleRcvdTotContriMore1000"/>
<xsl:with-param name="BackupName">IRS990SchBSpclRuleRcvdTotContriMore1000</xsl:with-param>
</xsl:call-template>
</input>
</div>
<div style="float:right; width:177mm">
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form990ScheduleBData/SpclRuleRcvdTotContriMore1000" />
<xsl:with-param name="BackupName">IRS990SchBSpclRuleRcvdTotContriMore1000</xsl:with-param>
</xsl:call-template>
For a section 501(c)(7), (8), or (10) organization filing Form 990 or 990-EZ that received from any one contributor,<br />during the year, total contributions of more than $1,000 for use <i>exclusively</i> for religious, charitable,<br />scientific, literary, or educational purposes, or the prevention of cruelty to children or animals. Complete Parts I, II, and<br />III.
</label>
</div>
</div>
<div style="padding-left:5mm; margin-top:5mm; width:187mm">
<div style="float:left">
<input type="Checkbox" class="styCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form990ScheduleBData/SpclRuleRcvdTotContriUpTo1000"/>
<xsl:with-param name="BackupName">IRS990SchBSpclRuleRcvdTotContriUpTo1000</xsl:with-param>
</xsl:call-template>
</input>
</div>
<div style="float:right; width:177mm">
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form990ScheduleBData/SpclRuleRcvdTotContriUpTo1000" />
<xsl:with-param name="BackupName">IRS990SchBSpclRuleRcvdTotContriUpTo1000</xsl:with-param>
</xsl:call-template>
For a section 501(c)(7), (8), or (10) organization filing Form 990 or 990-EZ that received from any one contributor,<br />during the year, contributions for use <i>exclusively</i> for religious, charitable, etc., purposes, but these contributions did<br />not total to more than $1,000. If this box is checked, enter here the total contributions that were received during<br />the year for an <i>exclusively</i> religious, charitable, etc., purpose. Do not complete any of the parts unless the <b>General Rule</b><br />applies to this organization because it received nonexclusively religious, charitable, etc., contributions of $5,000 or more<br />during the year
</label>
<span class="styIRS990ScheduleBDotLn">
.........................
</span>
<img src="{$ImagePath}/990SchB_Bullet.gif" alt="Arrow Bullet"/> $
<span style="border-bottom:1 solid black; width:32mm; text-align:center; color:blue">
<xsl:call-template name="PopulateAmount"><xsl:with-param name="TargetNode" select="$Form990ScheduleBData/SpclRuleRcvdTotContriUpTo1000/@totalContributions" /></xsl:call-template>
</span>
</div>
</div>
<div style="border-bottom:1 solid black; width:187mm; margin-top:5mm; padding-bottom:3mm">
<b>Caution.</b> An organization that is not covered by the General Rule and/or the Special Rules does not file Schedule B (Form 990,<br />990-EZ, or 990-PF), but it <b>must</b> answer “No” on Part IV, line 2 of its Form 990; or check the box on line H of its<br />Form 990-EZ or on Part I, line 2 of its Form 990-PF, to certify that it does not meet the filing requirements of Schedule B (Form 990,<br/>990-EZ, or 990-PF).
</div>
<div style="width:187mm; font-size:7pt; border-top:1 solid black">
<xsl:call-template name="IRS990BFooter">
<xsl:with-param name="showAll" select="0"/>
</xsl:call-template>
</div>
<br class="pageEnd"/>
<div style="width:187mm;padding-top:2mm;">
<div style="float:left">
Schedule B (Form 990, 990-EZ, or 990-PF) (2012)
</div>
<div style="float:right">
Page <span class="styBoldText" style="font-size: 8pt; padding-top:5mm;">2</span>
</div>
</div>
<!-- BEGIN Part I -->
<xsl:variable name="totalRowCount1" select="count($Form990ScheduleBData/ContributorInfo)" />
<xsl:variable name="containerHeight" select="6" />
<table class="styIRS990ScheduleBTable" cellspacing="0" cellpadding="0" border="0" style="width:187mm;">
<xsl:choose>
<xsl:when test="($Print = $Separated) and (count($Form990ScheduleBData/ContributorInfo) > 6)">
<xsl:call-template name="p1TemplateEmpty">
<xsl:with-param name="max">
<xsl:choose>
<xsl:when test="$totalRowCount1 > $containerHeight">
<xsl:value-of select="ceiling($totalRowCount1 div 6)*6" />
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$containerHeight" />
</xsl:otherwise>
</xsl:choose>
</xsl:with-param>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="p1Template">
<xsl:with-param name="max">
<xsl:choose>
<xsl:when test="$totalRowCount1 > $containerHeight">
<xsl:value-of select="ceiling($totalRowCount1 div 6)*6" />
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$containerHeight" />
</xsl:otherwise>
</xsl:choose>
</xsl:with-param>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</table>
<!-- END Part I -->
<!-- BEGIN Part II -->
<xsl:variable name="totalRowCount2" select="count($Form990ScheduleBData/NoncashProperty)" />
<br class="pageEnd"/>
<!-- Begin Page 3 -->
<div style="width:187mm;padding-top:3mm;">
<div style="float:left">
Schedule B (Form 990, 990-EZ, or 990-PF) (2012)
</div>
<div style="float:right">
Page <span class="styBoldText" style="font-size: 8pt; ">3</span>
</div>
</div>
<table class="styIRS990ScheduleBTable" cellspacing="0" cellpadding="0" border="0" style="width:187mm;">
<xsl:choose>
<xsl:when test="($Print = $Separated) and (count($Form990ScheduleBData/NoncashProperty) > 6)">
<xsl:call-template name="p2TemplateEmpty">
<xsl:with-param name="max">
<xsl:choose>
<xsl:when test="$totalRowCount1 > $containerHeight">
<xsl:value-of select="ceiling($totalRowCount1 div 6)*6" />
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$containerHeight" />
</xsl:otherwise>
</xsl:choose>
</xsl:with-param>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="p2Template">
<xsl:with-param name="max">
<xsl:choose>
<xsl:when test="$totalRowCount2 > $containerHeight">
<xsl:value-of select="ceiling($totalRowCount2 div 6)*6" />
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$containerHeight" />
</xsl:otherwise>
</xsl:choose>
</xsl:with-param>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</table>
<!-- END Part II -->
<!-- BEGIN Part III -->
<br class="pageEnd"/>
<div style="width:187mm;padding-top:3mm;">
<div style="float:left">
Schedule B (Form 990, 990-EZ, or 990-PF) (2012)
</div>
<div style="float:right">
Page <span class="styBoldText" style="font-size: 8pt; ">4</span>
</div>
</div>
<xsl:variable name="totalRowCount3" select="count($Form990ScheduleBData/CharitableContributions)" />
<xsl:variable name="containerHeight3" select="4" />
<table class="styIRS990ScheduleBTable" cellspacing="0" cellpadding="0" border="0" style="width:187mm;">
<xsl:choose>
<xsl:when test="($Print = $Separated) and (count($Form990ScheduleBData/CharitableContributions) > 4)">
<xsl:call-template name="p3TemplateEmpty">
<xsl:with-param name="max">
<xsl:choose>
<xsl:when test="$totalRowCount1 > $containerHeight">
<xsl:value-of select="ceiling($totalRowCount1 div 6)*6" />
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$containerHeight" />
</xsl:otherwise>
</xsl:choose>
</xsl:with-param>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="p3Template">
<xsl:with-param name="max">
<xsl:choose>
<xsl:when test="$totalRowCount3 > $containerHeight3">
<xsl:value-of select="ceiling($totalRowCount3 div 4)*4" />
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$containerHeight3" />
</xsl:otherwise>
</xsl:choose>
</xsl:with-param>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</table>
<!-- END Part III -->
<p style="page-break-before:always" />
<div class="styLeftOverTitleLine" id="LeftoverData" style="font-family:verdana, arial, sans-serif">
<div class="styLeftOverTitle">
Additional Data
</div>
<div class="styLeftOverButtonContainer">
<input class="styLeftoverTableBtn" type="button" value="Return to Form" onclick="javascript:returnToWriteInImage()" tabindex="1"/>
</div>
</div>
<table class="styLeftOverTbl">
<xsl:call-template name="PopulateCommonLeftover">
<xsl:with-param name="TargetNode" select="$Form990ScheduleBData" />
</xsl:call-template>
</table>
<xsl:if test="($Print = $Separated) and (count($Form990ScheduleBData/ContributorInfo) > 6)">
<span class="styRepeatingDataTitle">Form 990 Schedule B, Part I - Contributors (see Instructions) Use duplicate copies of Part I if additional space is needed.</span>
<table class="styDepTbl" cellspacing="0" cellpadding="0" border="0" style="width:187mm;font-size:7pt;">
<xsl:call-template name="p1SRDTemplate" />
</table>
</xsl:if>
<xsl:if test="($Print = $Separated) and (count($Form990ScheduleBData/NoncashProperty) > 6)"> <br/>
<span class="styRepeatingDataTitle">Form 990 Schedule B, Part II - Noncash Property (see Instructions) Use duplicate copies of Part II if additional space is needed</span>
<table class="styDepTbl" cellspacing="0" cellpadding="0" border="0" style="width:187mm;font-size:7pt;">
<xsl:call-template name="p2SRDTemplate" />
</table>
</xsl:if>
<xsl:if test="($Print = $Separated) and (count($Form990ScheduleBData/CharitableContributions) > 4)"> <br/>
<span class="styRepeatingDataTitle">Form 990 Schedule B, Part III - Exclusively religious, charitable, etc., individual contributions to section 501(c)(7), (8), or (10) organizations
aggregating more than $1,000 for the year. (Complete columns (a) through (e) and the following line entry.):</span>
<table class="styDepTbl" cellspacing="0" cellpadding="0" border="0" style="width:187mm;font-size:7pt;">
<xsl:call-template name="p3SRDTemplate" />
</table>
</xsl:if>
</form>
</body>
</html>
</xsl:template>
<xsl:template name="p1Template">
<xsl:param name="index" select="1"/>
<xsl:param name="max" />
<xsl:if test="$index <= $max">
<xsl:if test="$index mod 6 = 1">
<xsl:call-template name="IRS990BHeader">
<xsl:with-param name="colSpan" select="5"/>
<xsl:with-param name="thisPage" select="ceiling($index div 6)"/>
<xsl:with-param name="pageTotal" select="$max div 6"/>
<xsl:with-param name="thisPart" select="'I'"/>
</xsl:call-template>
<tr style="font-size:7.5pt; height:9mm" valign="top">
<!--<th class="styFNBox" style="border-top:2 solid black; border-bottom:2 solid black;font-family:verdana;font-size:7pt;" nowrap="nowrap" colspan="3">-->
<th class="styFNBox" style="border-top:2 solid black; border-bottom:2 solid black;font-family:verdana;font-size:7pt;" scope="col" colspan="3">
<span class="styBoldText">Name of organization</span>
<br/>
<span style="font-weight:normal;font-family:verdana;font-size:6pt">
<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>
</th>
<th class="styIRS990ScheduleBTblCell" style="border-top:2 solid black; border-bottom:2 solid black;font-family:verdana;font-size:7pt;" scope="col" colspan="2">
<span class="styBoldText">Employer identification number</span>
<br/><br/>
<span style="font-weight:normal">
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="TargetNode">EIN</xsl:with-param>
</xsl:call-template>
</span>
</th>
</tr>
<tr>
<th style="width:10mm; border-bottom:1 solid black">
<div class="styPartName" style="width:10mm">Part I</div>
</th>
<th style="width:83mm; border-bottom:1 solid black">
<div class="styPartDesc" style="width:98mm">Contributors <span style="font-size:6pt;">(see instructions). Use duplicate copies of Part I if additional space is needed.</span></div>
</th>
<td style="width:34mm; border-bottom:1 solid black"> </td>
<td style="width:8mm; border-bottom:1 solid black"> </td>
<td style="border-bottom:1 solid black"> </td>
</tr>
</xsl:if>
<tr align="center">
<th class="styIRS990ScheduleBTblRB2" scope="col">(a)<br />No.</th>
<th class="styIRS990ScheduleBTblRB2" scope="col">(b)<br />Name, address, and ZIP + 4</th>
<th class="styIRS990ScheduleBTblRB2" scope="col" colspan="2">(c)<br />Total contributions</th>
<th class="styTblCell2" scope="col" style="border-bottom:1 solid black; height:8mm">(d)<br />Type of contribution</th>
</tr>
<tr>
<td valign="top" class="styIRS990ScheduleBTblRB">
<div style="margin-top:4mm; border-bottom:1 solid black; width:7mm; text-align:center">
<xsl:call-template name="PopulateText"><xsl:with-param name="TargetNode" select="$Form990ScheduleBData/ContributorInfo[$index]/ContributorNumber"/></xsl:call-template>
</div>
</td>
<td class="styIRS990ScheduleBTblRB">
<div class="styIRS990ScheduleBDotBB">
<div style="font-family:verdana;font-size:6pt;">
<xsl:call-template name="PopulateText"><xsl:with-param name="TargetNode" select="$Form990ScheduleBData/ContributorInfo[$index]/ContributorNameBusiness/BusinessNameLine1"/></xsl:call-template><br />
<xsl:call-template name="PopulateText"><xsl:with-param name="TargetNode" select="$Form990ScheduleBData/ContributorInfo[$index]/ContributorNameBusiness/BusinessNameLine2"/></xsl:call-template>
</div>
<br />
<xsl:call-template name="PopulateText"><xsl:with-param name="TargetNode" select="$Form990ScheduleBData/ContributorInfo[$index]/ContributorNameIndividual"/></xsl:call-template>
<xsl:call-template name="PopulateText"><xsl:with-param name="TargetNode" select="$Form990ScheduleBData/ContributorInfo[$index]/Pd527j1"/></xsl:call-template>
</div>
<div class="styIRS990ScheduleBDotBB">
<xsl:choose>
<xsl:when test="$Form990ScheduleBData/ContributorInfo[$index]/ContributorAddressUS">
<xsl:call-template name="PopulateText"><xsl:with-param name="TargetNode" select="$Form990ScheduleBData/ContributorInfo[$index]/ContributorAddressUS/AddressLine1"/></xsl:call-template><br />
<xsl:call-template name="PopulateText"><xsl:with-param name="TargetNode" select="$Form990ScheduleBData/ContributorInfo[$index]/ContributorAddressUS/AddressLine2"/></xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="PopulateText"><xsl:with-param name="TargetNode" select="$Form990ScheduleBData/ContributorInfo[$index]/ContributorAddressForeign/AddressLine1"/></xsl:call-template><br />
<xsl:call-template name="PopulateText"><xsl:with-param name="TargetNode" select="$Form990ScheduleBData/ContributorInfo[$index]/ContributorAddressForeign/AddressLine2"/></xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</div>
<div class="styIRS990ScheduleBDotBB">
<xsl:choose>
<xsl:when test="$Form990ScheduleBData/ContributorInfo[$index]/ContributorAddressUS">
<xsl:call-template name="PopulateText"><xsl:with-param name="TargetNode" select="$Form990ScheduleBData/ContributorInfo[$index]/ContributorAddressUS/City"/></xsl:call-template>,
<xsl:call-template name="PopulateText"><xsl:with-param name="TargetNode" select="$Form990ScheduleBData/ContributorInfo[$index]/ContributorAddressUS/State"/></xsl:call-template>
<xsl:call-template name="PopulateText"><xsl:with-param name="TargetNode" select="$Form990ScheduleBData/ContributorInfo[$index]/ContributorAddressUS/ZIPCode"/></xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:if test="$Form990ScheduleBData/ContributorInfo[$index]/ContributorAddressForeign">
<xsl:call-template name="PopulateText"><xsl:with-param name="TargetNode" select="$Form990ScheduleBData/ContributorInfo[$index]/ContributorAddressForeign/City"/></xsl:call-template>,
<xsl:call-template name="PopulateText"><xsl:with-param name="TargetNode" select="$Form990ScheduleBData/ContributorInfo[$index]/ContributorAddressForeign/ProvinceOrState"/></xsl:call-template>
<xsl:call-template name="PopulateText"><xsl:with-param name="TargetNode" select="$Form990ScheduleBData/ContributorInfo[$index]/ContributorAddressForeign/PostalCode"/></xsl:call-template>
<xsl:call-template name="PopulateText"><xsl:with-param name="TargetNode" select="$Form990ScheduleBData/ContributorInfo[$index]/ContributorAddressForeign/Country"/></xsl:call-template>
</xsl:if>
</xsl:otherwise>
</xsl:choose>
</div>
<br/>
</td>
<td class="styIRS990ScheduleBTblRB" colspan="2">
<span style="float:left; padding-right:1mm; padding-left:2mm">$</span>
<span style="border-bottom:1 solid black; float:left; width:30mm; text-align:right; font-size:8pt">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form990ScheduleBData/ContributorInfo[$index]/AggregateContributions"/>
</xsl:call-template>
</span>
</td>
<!-- Person, Payroll and Noncash Section fixed for 508 Compliance -->
<td class="styIRS990ScheduleBTblCell">
<div style="float:left; padding-left:10mm; font-weight:bold;">
<label >
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form990ScheduleBData/ContributorInfo[$index]/PersonContributionType" />
<xsl:with-param name="BackupName">IRS990SchBContributorInfoPersonContributionType<xsl:number value="$index"/>
</xsl:with-param>
</xsl:call-template>
Person
</label>
<span style="width: 8mm"/>
</div>
<div style="padding-top:0.5mm; padding-left:4mm;">
<input alt="styIRS990ScheduleBCkbox" type="Checkbox" class="styIRS990ScheduleBCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form990ScheduleBData/ContributorInfo[$index]/PersonContributionType"/>
<xsl:with-param name="BackupName">IRS990SchBContributorInfoPersonContributionType<xsl:number value="$index"/>
</xsl:with-param>
</xsl:call-template>
</input>
</div>
<br/>
<div style="float:left; padding-left:10mm; font-weight:bold;">
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form990ScheduleBData/ContributorInfo[$index]/PayrollContributionType" />
<xsl:with-param name="BackupName">IRS990SchBContributorInfoPayrollContributionType<xsl:number value="$index"/></xsl:with-param>
</xsl:call-template>
Payroll
</label>
<span style="width:9mm"/>
</div>
<div style="padding-top:0.5mm; padding-left:2mm;">
<input type="Checkbox" class="styIRS990ScheduleBCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form990ScheduleBData/ContributorInfo[$index]/PayrollContributionType"/>
<xsl:with-param name="BackupName">IRS990SchBContributorInfoPayrollContributionType<xsl:number value="$index"/> </xsl:with-param>
</xsl:call-template>
</input>
</div>
<br/>
<div style="float:left; padding-left:10mm; font-weight:bold;">
<label>
<xsl:call-template name="PopulateLabel">
<xsl:with-param name="TargetNode" select="$Form990ScheduleBData/ContributorInfo[$index]/NoncashContributionType" />
<xsl:with-param name="BackupName">IRS990SchBContributorInfoNoncashContributionType<xsl:number value="$index"/></xsl:with-param>
</xsl:call-template>
Noncash
</label>
<span style="width:6mm"/>
</div>
<div style="padding-top:0.5mm; ">
<input type="Checkbox" class="styIRS990ScheduleBCkbox">
<xsl:call-template name="PopulateCheckbox">
<xsl:with-param name="TargetNode" select="$Form990ScheduleBData/ContributorInfo[$index]/NoncashContributionType"/>
<xsl:with-param name="BackupName">IRS990SchBContributorInfoNoncashContributionType<xsl:number value="$index"/> </xsl:with-param>
</xsl:call-template>
</input>
</div>
<div style="font-size:7pt; clear:both; padding-top:2mm; padding-left:4mm">(Complete Part II if there is a noncash contribution.)</div>
</td>
</tr>
<xsl:if test="$index mod 6 = 0">
<tr style="page-break-after:always">
<td colspan="5" style="font-size:7pt; border-top:1 solid black">
<xsl:call-template name="IRS990BFooter">
<xsl:with-param name="showAll" select="1"/>
</xsl:call-template>
</td>
</tr>
</xsl:if>
<xsl:call-template name="p1Template">
<xsl:with-param name="index" select="$index + 1"/>
<xsl:with-param name="max" select="$max"/>
</xsl:call-template>
</xsl:if>
</xsl:template>
<xsl:template name="p1TemplateEmpty">
<xsl:param name="index" select="1"/>
<xsl:param name="max" />
<xsl:if test="$index <= 6">
<xsl:if test="$index mod 6 = 1">
<xsl:call-template name="IRS990BHeader">
<xsl:with-param name="colSpan" select="5"/>
<xsl:with-param name="thisPage" select="ceiling($index div 6)"/>
<xsl:with-param name="pageTotal" select="$max div 6"/>
<xsl:with-param name="thisPart" select="'I'"/>
</xsl:call-template>
<tr style="font-size:7.5pt; height:9mm" valign="top">
<th class="styFNBox" style="border-top:2 solid black; border-bottom:2 solid black;font-family:verdana;font-size:7pt;" scope="col" colspan="3">
<span class="styBoldText">Name of organization</span>
<br/>
<span style="font-weight:normal;font-family:verdana;font-size:6pt">
<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>
</th>
<th class="styIRS990ScheduleBTblCell" style="border-top:2 solid black; border-bottom:2 solid black;font-family:verdana;font-size:7pt;" scope="col" colspan="2">
<span class="styBoldText">Employer identification number</span>
<br/><br/>
<span style="font-weight:normal">
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="TargetNode">EIN</xsl:with-param>
</xsl:call-template>
</span>
</th>
</tr>
<tr>
<th style="width:10mm; border-bottom:1 solid black">
<div class="styPartName" style="width:10mm">Part I</div>
</th>
<th style="width:83mm; border-bottom:1 solid black">
<div class="styPartDesc" style="width:98mm">Contributors <span style="font-size:6pt;">(see Instructions) Use duplicate copies of Part I if additional space is needed.</span></div>
</th>
<td style="width:34mm; border-bottom:1 solid black"> </td>
<td style="width:8mm; border-bottom:1 solid black"> </td>
<td style="border-bottom:1 solid black"> </td>
</tr>
</xsl:if>
<tr align="center">
<th class="styIRS990ScheduleBTblRB2" scope="col">(a)<br />No.</th>
<th class="styIRS990ScheduleBTblRB2" scope="col">(b)<br />Name, address, and ZIP + 4</th>
<th class="styIRS990ScheduleBTblRB2" scope="col" colspan="2">(c)<br />Total contributions</th>
<th class="styTblCell2" scope="col" style="border-bottom:1 solid black; height:8mm">(d)<br />Type of contribution</th>
</tr>
<tr>
<td valign="top" class="styIRS990ScheduleBTblRB">
<div style="margin-top:4mm; border-bottom:1 solid black; width:7mm; text-align:center">
</div>
</td>
<td class="styIRS990ScheduleBTblRB">
<div class="styIRS990ScheduleBDotBB">
<xsl:if test="$index = 1">
<xsl:call-template name="PopulateAdditionalDataTableMessage">
<xsl:with-param name="TargetNode" select="$Form990ScheduleBData/ContributorInfo"/>
</xsl:call-template>
</xsl:if>
</div>
<div class="styIRS990ScheduleBDotBB"> </div>
<div class="styIRS990ScheduleBDotBB"> </div>
<br/>
</td>
<td class="styIRS990ScheduleBTblRB" colspan="2">
<span style="float:left; padding-right:1mm; padding-left:2mm">$</span>
<span style="border-bottom:1 solid black; float:left; width:30mm; text-align:right; font-size:8pt"></span>
</td>
<td class="styIRS990ScheduleBTblCell">
<div style="float:left; padding-left:10mm; font-weight:bold">
<label>
Person
</label><br/>
<label>
Payroll
</label><br/>
<label>
Noncash
</label>
</div>
<div style="padding-top:0.5mm; float:left; padding-left:2mm">
<input type="Checkbox" class="styIRS990ScheduleBCkbox"> </input><br/>
<input type="Checkbox" class="styIRS990ScheduleBCkbox"> </input><br/>
<input type="Checkbox" class="styIRS990ScheduleBCkbox"> </input>
</div>
<div style="font-size:7pt; clear:both; padding-top:2mm; padding-left:4mm">(Complete Part II if there is<br />a noncash contribution.)</div>
</td>
</tr>
<xsl:if test="$index mod 6 = 0">
<tr style="page-break-after:always">
<td colspan="5" style="font-size:7pt; border-top:1 solid black">
<xsl:call-template name="IRS990BFooter">
<xsl:with-param name="showAll" select="1"/>
</xsl:call-template>
</td>
</tr>
</xsl:if>
<xsl:call-template name="p1TemplateEmpty">
<xsl:with-param name="index" select="$index + 1"/>
<xsl:with-param name="max" select="$max"/>
</xsl:call-template>
</xsl:if>
</xsl:template>
<xsl:template name="p2Template">
<xsl:param name="index" select="1"/>
<xsl:param name="max" />
<xsl:if test="$index <= $max">
<xsl:if test="$index mod 6 = 1">
<xsl:call-template name="IRS990BHeader">
<xsl:with-param name="colSpan" select="5"/>
<xsl:with-param name="thisPage" select="ceiling($index div 6)"/>
<xsl:with-param name="pageTotal" select="$max div 6"/>
<xsl:with-param name="thisPart" select="'II'"/>
</xsl:call-template>
<tr style="font-size:7.5pt; height:9mm" valign="top">
<th class="styFNBox" style="border-top:2 solid black; border-bottom:2 solid black;font-family:verdana;font-size:7pt;" scope="col" colspan="3">
<span class="styBoldText">Name of organization</span>
<br/>
<span style="font-weight:normal;font-size:6pt;font-family:verdana;">
<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>
</th>
<th class="styIRS990ScheduleBTblCell" style="border-top:2 solid black; border-bottom:2 solid black;font-family:verdana;font-size:7pt;" scope="col" colspan="2">
<span class="styBoldText">Employer identification number</span>
<br/><br/>
<span style="font-weight:normal">
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="TargetNode">EIN</xsl:with-param>
</xsl:call-template>
</span>
</th>
</tr>
<tr>
<th style="width:10mm; border-bottom:1 solid black">
<div class="styPartName" style="width:10mm">Part II</div>
</th>
<th style="width:83mm; border-bottom:1 solid black">
<div class="styPartDesc" style="width:102mm">Noncash Property <span style="font-size:5pt;">(see instructions). Use duplicate copies of Part II if additional space is needed.</span></div>
</th>
<td style="width:30mm; border-bottom:1 solid black"> </td>
<td style="width:8mm; border-bottom:1 solid black"> </td>
<td style="border-bottom:1 solid black"> </td>
</tr>
</xsl:if>
<tr align="center" style="height:15mm">
<th class="styIRS990ScheduleBTblRB2" scope="col">(a) No.<br />from<br />Part I</th>
<th class="styIRS990ScheduleBTblRB2" scope="col">(b)<br />Description of noncash property given</th>
<th class="styIRS990ScheduleBTblRB2" scope="col" colspan="2">(c)<br />FMV (or estimate)<br /><span style="font-size:7pt">(see instructions)</span></th>
<th class="styTblCell2" scope="col" style="border-bottom:1 solid black; height:8mm">(d)<br />Date received</th>
</tr>
<tr style="height:21mm">
<td class="styIRS990ScheduleBTblRB" valign="top">
<div style="margin-top:4mm; border-bottom:1 solid black; width:7mm; text-align:center">
<!--xsl:value-of select="$index"/-->
<xsl:call-template name="PopulateText"><xsl:with-param name="TargetNode" select="$Form990ScheduleBData/NoncashProperty[$index]/ContributorNumberFromPartI"/></xsl:call-template>
</div>
</td>
<td class="styIRS990ScheduleBTblRB" style="font-size:7pt;font-family:verdana;">
<xsl:choose>
<xsl:when test="normalize-space($Form990ScheduleBData/NoncashProperty[$index]/NoncashPropertyDescription) = ''">
<div class="styIRS990ScheduleBDotBB" style="height: 3mm; width:94mm" />
<div class="styIRS990ScheduleBDotBB" style="height: 3mm; width:94mm" />
<div class="styIRS990ScheduleBDotBB" style="height: 3mm; width:94mm" />
<div class="styIRS990ScheduleBDotBB" style="height: 3mm; width:94mm" />
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$Form990ScheduleBData/NoncashProperty[$index]/NoncashPropertyDescription"/>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</td>
<td class="styIRS990ScheduleBTblRB" colspan="2" style="padding-top:8mm; font-size:7pt">
<span style="float:left; padding-right:1mm; padding-left:1mm">$</span>
<span style="border-bottom:1 solid black; float:left; width:30mm; text-align:right">
<xsl:call-template name="PopulateAmount">
<xsl:with-param name="TargetNode" select="$Form990ScheduleBData/NoncashProperty[$index]/FairMarketValue"/>
</xsl:call-template>
</span>
</td>
<td class="styIRS990ScheduleBTblCell" style="padding-top:8mm; padding-left:4mm">
<span style="border-bottom:1 solid black; float:left; width:33mm; text-align:center; margin-right:1mm">
<xsl:call-template name="PopulateText"><xsl:with-param name="TargetNode" select="$Form990ScheduleBData/NoncashProperty[$index]/DateReceived"/></xsl:call-template>
</span>
</td>
</tr>
<xsl:if test="$index mod 6 = 0">
<tr style="page-break-after:always">
<td colspan="5" style="font-size:7pt; border-top:1 solid black">
<xsl:call-template name="IRS990BFooter">
<xsl:with-param name="showAll" select="1"/>
</xsl:call-template>
</td>
</tr>
</xsl:if>
<xsl:call-template name="p2Template">
<xsl:with-param name="index" select="$index + 1"/>
<xsl:with-param name="max" select="$max"/>
</xsl:call-template>
</xsl:if>
</xsl:template>
<xsl:template name="p2TemplateEmpty">
<xsl:param name="index" select="1"/>
<xsl:param name="max" />
<xsl:if test="$index <= 6">
<xsl:if test="$index mod 6 = 1">
<xsl:call-template name="IRS990BHeader">
<xsl:with-param name="colSpan" select="5"/>
<xsl:with-param name="thisPage" select="ceiling($index div 6)"/>
<xsl:with-param name="pageTotal" select="$max div 6"/>
<xsl:with-param name="thisPart" select="'II'"/>
</xsl:call-template>
<tr style="font-size:7.5pt; height:9mm" valign="top">
<th class="styFNBox" style="border-top:2 solid black; border-bottom:2 solid black;font-family:verdana;font-size:7pt;" scope="col" colspan="3">
<span class="styBoldText">Name of organization</span>
<br/>
<span style="font-weight:normal;font-family:verdana;font-size:6pt;">
<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>
</th>
<th class="styIRS990ScheduleBTblCell" style="border-top:2 solid black; border-bottom:2 solid black;font-family:verdana;font-size:7pt;" scope="col" colspan="2">
<span class="styBoldText">Employer identification number</span>
<br/><br/>
<span style="font-weight:normal">
<xsl:call-template name="PopulateReturnHeaderFiler">
<xsl:with-param name="TargetNode">EIN</xsl:with-param>
</xsl:call-template>
</span>
</th>
</tr>
<tr>
<th style="width:10mm; border-bottom:1 solid black">
<div class="styPartName" style="width:10mm">Part II</div>
</th>
<th style="width:83mm; border-bottom:1 solid black">
<div class="styPartDesc" style="width:98mm">Noncash Property <span style="font-size:5pt">(see Instructions) Use duplicate copies of Part II if additional space is needed.</span></div>
</th>
<td style="width:30mm; border-bottom:1 solid black"> </td>
<td style="width:8mm; border-bottom:1 solid black"> </td>
<td style="border-bottom:1 solid black"> </td>
</tr>
</xsl:if>
<tr align="center" style="height:15mm">
<th class="styIRS990ScheduleBTblRB2" scope="col">(a) No.<br />from<br />Part I</th>
<th class="styIRS990ScheduleBTblRB2" scope="col">(b)<br />Description of noncash property given</th>
<th class="styIRS990ScheduleBTblRB2" scope="col" colspan="2">(c)<br />FMV (or estimate)<br /><span style="font-size:7pt">(see instructions)</span></th>
<th class="styTblCell2" scope="col" style="border-bottom:1 solid black; height:8mm">(d)<br />Date received</th>
</tr>
<tr style="height:21mm">
<td class="styIRS990ScheduleBTblRB" valign="top">