-
Notifications
You must be signed in to change notification settings - Fork 36
/
201533089349301428.csv
We can't make this file beautiful and searchable because it's too large.
3000 lines (3000 loc) · 892 KB
/
201533089349301428.csv
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
object_id,form,line_number,description,value,variable_name,xpath,in_group,group_name,group_index
201533089349301428,ReturnHeader,,The date and time when the return was created,2015-11-04T20:09:01-06:00,returnheader990x_part_i.RtrnHdr_RtrnTs,/ReturnHeader/ReturnTs,False,,
201533089349301428,ReturnHeader,,,2014-12-31,returnheader990x_part_i.RtrnHdr_TxPrdEndDt,/ReturnHeader/TaxPeriodEndDt,False,,
201533089349301428,ReturnHeader,,Business name line 1,ERNST & YOUNG US LLP,returnheader990x_part_i.PrprrFrmNm_BsnssNmLn1Txt,/ReturnHeader/PreparerFirmGrp/PreparerFirmName/BusinessNameLine1Txt,False,,
201533089349301428,ReturnHeader,,Address line 1,4370 LA JOLLA VILLAGE DR SUITE 500,returnheader990x_part_i.PrprrUSAddrss_AddrssLn1Txt,/ReturnHeader/PreparerFirmGrp/PreparerUSAddress/AddressLine1Txt,False,,
201533089349301428,ReturnHeader,,City,SAN DIEGO,returnheader990x_part_i.PrprrUSAddrss_CtyNm,/ReturnHeader/PreparerFirmGrp/PreparerUSAddress/CityNm,False,,
201533089349301428,ReturnHeader,,State,CA,returnheader990x_part_i.PrprrUSAddrss_SttAbbrvtnCd,/ReturnHeader/PreparerFirmGrp/PreparerUSAddress/StateAbbreviationCd,False,,
201533089349301428,ReturnHeader,,ZIP code,92122,returnheader990x_part_i.PrprrUSAddrss_ZIPCd,/ReturnHeader/PreparerFirmGrp/PreparerUSAddress/ZIPCd,False,,
201533089349301428,ReturnHeader,,,990,returnheader990x_part_i.RtrnHdr_RtrnCd,/ReturnHeader/ReturnTypeCd,False,,
201533089349301428,ReturnHeader,,,2014-01-01,returnheader990x_part_i.RtrnHdr_TxPrdBgnDt,/ReturnHeader/TaxPeriodBeginDt,False,,
201533089349301428,ReturnHeader,,,941156621,returnheader990x_part_i.Flr_EIN,/ReturnHeader/Filer/EIN,False,,
201533089349301428,ReturnHeader,,Business name line 1,SUTTER HEALTH SACRAMENTO SIERRA REGION,returnheader990x_part_i.BsnssNm_BsnssNmLn1Txt,/ReturnHeader/Filer/BusinessName/BusinessNameLine1Txt,False,,
201533089349301428,ReturnHeader,,,% CHRIS BOUDREAUX,returnheader990x_part_i.Flr_InCrOfNm,/ReturnHeader/Filer/InCareOfNm,False,,
201533089349301428,ReturnHeader,,,SUTT,returnheader990x_part_i.Flr_BsnssNmCntrlTxt,/ReturnHeader/Filer/BusinessNameControlTxt,False,,
201533089349301428,ReturnHeader,,,9162866665,returnheader990x_part_i.Flr_PhnNm,/ReturnHeader/Filer/PhoneNum,False,,
201533089349301428,ReturnHeader,,Address line 1,PO BOX 160727,returnheader990x_part_i.USAddrss_AddrssLn1Txt,/ReturnHeader/Filer/USAddress/AddressLine1Txt,False,,
201533089349301428,ReturnHeader,,City,SACRAMENTO,returnheader990x_part_i.USAddrss_CtyNm,/ReturnHeader/Filer/USAddress/CityNm,False,,
201533089349301428,ReturnHeader,,State,CA,returnheader990x_part_i.USAddrss_SttAbbrvtnCd,/ReturnHeader/Filer/USAddress/StateAbbreviationCd,False,,
201533089349301428,ReturnHeader,,ZIP code,95816,returnheader990x_part_i.USAddrss_ZIPCd,/ReturnHeader/Filer/USAddress/ZIPCd,False,,
201533089349301428,ReturnHeader,,,Paige Terra,returnheader990x_part_i.BsnssOffcr_PrsnNm,/ReturnHeader/BusinessOfficerGrp/PersonNm,False,,
201533089349301428,ReturnHeader,,,CFO,returnheader990x_part_i.BsnssOffcr_PrsnTtlTxt,/ReturnHeader/BusinessOfficerGrp/PersonTitleTxt,False,,
201533089349301428,ReturnHeader,,,9162866665,returnheader990x_part_i.BsnssOffcr_PhnNm,/ReturnHeader/BusinessOfficerGrp/PhoneNum,False,,
201533089349301428,ReturnHeader,,,2015-11-02,returnheader990x_part_i.BsnssOffcr_SgntrDt,/ReturnHeader/BusinessOfficerGrp/SignatureDt,False,,
201533089349301428,ReturnHeader,,,true,returnheader990x_part_i.BsnssOffcr_DscssWthPdPrprrInd,/ReturnHeader/BusinessOfficerGrp/DiscussWithPaidPreparerInd,False,,
201533089349301428,ReturnHeader,,,DEBRA HEISKALA,returnheader990x_part_i.PrprrPrsn_PrprrPrsnNm,/ReturnHeader/PreparerPersonGrp/PreparerPersonNm,False,,
201533089349301428,ReturnHeader,,,P00649485,returnheader990x_part_i.PrprrPrsn_PTIN,/ReturnHeader/PreparerPersonGrp/PTIN,False,,
201533089349301428,ReturnHeader,,,8585357200,returnheader990x_part_i.PrprrPrsn_PhnNm,/ReturnHeader/PreparerPersonGrp/PhoneNum,False,,
201533089349301428,ReturnHeader,,,2014,returnheader990x_part_i.RtrnHdr_TxYr,/ReturnHeader/TaxYr,False,,
201533089349301428,ReturnHeader,None,None,2016-04-25 22:37:26Z,,/ReturnHeader/BuildTS,False,,
201533089349301428,IRS990,F,Name of principal officer - Person,JAMES CONFORTI,part_0.PrncplOffcrNm,/IRS990/PrincipalOfficerNm,False,,
201533089349301428,IRS990,F,Address of principal officer - US; Address line 1,PO BOX 160727,part_0.USAddrss_AddrssLn1Txt,/IRS990/USAddress/AddressLine1Txt,False,,
201533089349301428,IRS990,F,Address of principal officer - US; City,SACRAMENTO,part_0.USAddrss_CtyNm,/IRS990/USAddress/CityNm,False,,
201533089349301428,IRS990,F,Address of principal officer - US; State,CA,part_0.USAddrss_SttAbbrvtnCd,/IRS990/USAddress/StateAbbreviationCd,False,,
201533089349301428,IRS990,F,Address of principal officer - US; ZIP code,95816,part_0.USAddrss_ZIPCd,/IRS990/USAddress/ZIPCd,False,,
201533089349301428,IRS990,G,Gross receipts,1956012898,part_0.GrssRcptsAmt,/IRS990/GrossReceiptsAmt,False,,
201533089349301428,IRS990,H(a),Group return for affiliates?,false,part_0.GrpRtrnFrAffltsInd,/IRS990/GroupReturnForAffiliatesInd,False,,
201533089349301428,IRS990,I,Indicates a 501(c)(3) organization,X,part_0.Orgnztn501c3Ind,/IRS990/Organization501c3Ind,False,,
201533089349301428,IRS990,J,Web site,WWW.SUTTERHEALTH.ORG,part_0.WbstAddrssTxt,/IRS990/WebsiteAddressTxt,False,,
201533089349301428,IRS990,K,Type of organization - corporation,X,part_0.OfOrgnztnCrpInd,/IRS990/TypeOfOrganizationCorpInd,False,,
201533089349301428,IRS990,L,Year of formation,1935,part_0.FrmtnYr,/IRS990/FormationYr,False,,
201533089349301428,IRS990,M,State of legal domicile,CA,part_0.LglDmclSttCd,/IRS990/LegalDomicileStateCd,False,,
201533089349301428,IRS990,Part I Line 1,Activity or mission description,SEE SCHEDULE O,part_i.ActvtyOrMssnDsc,/IRS990/ActivityOrMissionDesc,False,,
201533089349301428,IRS990,Part I Line 3,Number voting members governing body,17,part_i.VtngMmbrsGvrnngBdyCnt,/IRS990/VotingMembersGoverningBodyCnt,False,,
201533089349301428,IRS990,Part I Line 4,Number independent voting members,11,part_i.VtngMmbrsIndpndntCnt,/IRS990/VotingMembersIndependentCnt,False,,
201533089349301428,IRS990,Part I Line 5,total Number employees,9722,part_i.TtlEmplyCnt,/IRS990/TotalEmployeeCnt,False,,
201533089349301428,IRS990,Part I Line 6,Total number volunteers,1141,part_i.TtlVlntrsCnt,/IRS990/TotalVolunteersCnt,False,,
201533089349301428,IRS990,Part I Line 7a,Total gross UBI,2606709,part_i.TtlGrssUBIAmt,/IRS990/TotalGrossUBIAmt,False,,
201533089349301428,IRS990,Part I Line 7b,Net unrelated business taxable income,0,part_i.NtUnrltdBsTxblIncmAmt,/IRS990/NetUnrelatedBusTxblIncmAmt,False,,
201533089349301428,IRS990,Part I Line 8,Contributions and grants - prior year,8201030,part_i.PYCntrbtnsGrntsAmt,/IRS990/PYContributionsGrantsAmt,False,,
201533089349301428,IRS990,Part I Line 8,Contributions and grants - current year,11938059,part_i.CYCntrbtnsGrntsAmt,/IRS990/CYContributionsGrantsAmt,False,,
201533089349301428,IRS990,Part I Line 9,Program service revenue - prior year,1873497794,part_i.PYPrgrmSrvcRvnAmt,/IRS990/PYProgramServiceRevenueAmt,False,,
201533089349301428,IRS990,Part I Line 9,Program service revenue - current year,1935783239,part_i.CYPrgrmSrvcRvnAmt,/IRS990/CYProgramServiceRevenueAmt,False,,
201533089349301428,IRS990,Part I Line 10,Investment income - prior year,588430,part_i.PYInvstmntIncmAmt,/IRS990/PYInvestmentIncomeAmt,False,,
201533089349301428,IRS990,Part I Line 10,Investment income - current year,3481561,part_i.CYInvstmntIncmAmt,/IRS990/CYInvestmentIncomeAmt,False,,
201533089349301428,IRS990,Part I Line 11,Other revenue - prior year,2340647,part_i.PYOthrRvnAmt,/IRS990/PYOtherRevenueAmt,False,,
201533089349301428,IRS990,Part I Line 11,Other revenue - current year,3552356,part_i.CYOthrRvnAmt,/IRS990/CYOtherRevenueAmt,False,,
201533089349301428,IRS990,Part I Line 12,Total revenue - prior year,1884627901,part_i.PYTtlRvnAmt,/IRS990/PYTotalRevenueAmt,False,,
201533089349301428,IRS990,Part I Line 12,Total revenue - current year,1954755215,part_i.CYTtlRvnAmt,/IRS990/CYTotalRevenueAmt,False,,
201533089349301428,IRS990,Part I Line 13,Grants and similar amounts - prior year,5127958,part_i.PYGrntsAndSmlrPdAmt,/IRS990/PYGrantsAndSimilarPaidAmt,False,,
201533089349301428,IRS990,Part I Line 13,Grants and similar amounts - current year,4149472,part_i.CYGrntsAndSmlrPdAmt,/IRS990/CYGrantsAndSimilarPaidAmt,False,,
201533089349301428,IRS990,Part I Line 14,Benefits paid to members - prior year,0,part_i.PYBnftsPdTMmbrsAmt,/IRS990/PYBenefitsPaidToMembersAmt,False,,
201533089349301428,IRS990,Part I Line 14,Benefits paid to members - current year,0,part_i.CYBnftsPdTMmbrsAmt,/IRS990/CYBenefitsPaidToMembersAmt,False,,
201533089349301428,IRS990,Part I Line 15,"Salaries, etc - prior year",891327486,part_i.PYSlrsCmpEmpBnftPdAmt,/IRS990/PYSalariesCompEmpBnftPaidAmt,False,,
201533089349301428,IRS990,Part I Line 15,"Salaries, etc - current year",889426297,part_i.CYSlrsCmpEmpBnftPdAmt,/IRS990/CYSalariesCompEmpBnftPaidAmt,False,,
201533089349301428,IRS990,Part I Line 16a,Total professional fundraising expense - prior year,0,part_i.PYTtlPrfFndrsngExpnsAmt,/IRS990/PYTotalProfFndrsngExpnsAmt,False,,
201533089349301428,IRS990,Part I Line 16a,Total professional fundraising expense - current year,0,part_i.CYTtlPrfFndrsngExpnsAmt,/IRS990/CYTotalProfFndrsngExpnsAmt,False,,
201533089349301428,IRS990,Part I Line 16b,Total fundraising expense - current year,0,part_i.CYTtlFndrsngExpnsAmt,/IRS990/CYTotalFundraisingExpenseAmt,False,,
201533089349301428,IRS990,Part I Line 17,Other expenses - prior year,839560221,part_i.PYOthrExpnssAmt,/IRS990/PYOtherExpensesAmt,False,,
201533089349301428,IRS990,Part I Line 17,Other expenses - current year,871558764,part_i.CYOthrExpnssAmt,/IRS990/CYOtherExpensesAmt,False,,
201533089349301428,IRS990,Part I Line 18,Total Expenses - prior year,1736015665,part_i.PYTtlExpnssAmt,/IRS990/PYTotalExpensesAmt,False,,
201533089349301428,IRS990,Part I Line 18,Total Expenses - current year,1765134533,part_i.CYTtlExpnssAmt,/IRS990/CYTotalExpensesAmt,False,,
201533089349301428,IRS990,Part I Line 19,Revenues less expenses - prior year,148612236,part_i.PYRvnsLssExpnssAmt,/IRS990/PYRevenuesLessExpensesAmt,False,,
201533089349301428,IRS990,Part I Line 19,Revenues less expenses - current year,189620682,part_i.CYRvnsLssExpnssAmt,/IRS990/CYRevenuesLessExpensesAmt,False,,
201533089349301428,IRS990,Part I Line 20,"Total Assets, BOY",1738079830,part_i.TtlAsstsBOYAmt,/IRS990/TotalAssetsBOYAmt,False,,
201533089349301428,IRS990,Part I Line 20,"Total Assets, EOY",1866955706,part_i.TtlAsstsEOYAmt,/IRS990/TotalAssetsEOYAmt,False,,
201533089349301428,IRS990,Part I Line 21,"Total Liabilities, BOY",1255476921,part_i.TtlLbltsBOYAmt,/IRS990/TotalLiabilitiesBOYAmt,False,,
201533089349301428,IRS990,Part I Line 21,"Total Liabilities, EOY",1199059743,part_i.TtlLbltsEOYAmt,/IRS990/TotalLiabilitiesEOYAmt,False,,
201533089349301428,IRS990,Part I Line 22,"Net Assets or Fund Balances, BOY",482602909,part_i.NtAsstsOrFndBlncsBOYAmt,/IRS990/NetAssetsOrFundBalancesBOYAmt,False,,
201533089349301428,IRS990,Part I Line 22,"Net Assets or Fund Balances, EOY",667895963,part_i.NtAsstsOrFndBlncsEOYAmt,/IRS990/NetAssetsOrFundBalancesEOYAmt,False,,
201533089349301428,IRS990,Part III,Schedule O contains a response to a question in Part III,X,part_iii.InfInSkdOPrtIIIInd,/IRS990/InfoInScheduleOPartIIIInd,False,,
201533089349301428,IRS990,Part III Line 1,Mission description,SEE SCHEDULE O,part_iii.MssnDsc,/IRS990/MissionDesc,False,,
201533089349301428,IRS990,Part III Line 2,Significant new program services?,false,part_iii.SgnfcntNwPrgrmSrvcInd,/IRS990/SignificantNewProgramSrvcInd,False,,
201533089349301428,IRS990,Part III Line 3,Significant change?,false,part_iii.SgnfcntChngInd,/IRS990/SignificantChangeInd,False,,
201533089349301428,IRS990,Part III Line 4a,Expense,1608656855,part_iii.ExpnsAmt,/IRS990/ExpenseAmt,False,,
201533089349301428,IRS990,Part III Line 4a,Grants,4149472,part_iii.GrntAmt,/IRS990/GrantAmt,False,,
201533089349301428,IRS990,Part III Line 4a,Revenue,1935783239,part_iii.RvnAmt,/IRS990/RevenueAmt,False,,
201533089349301428,IRS990,Part III Line 4a,Description,SEE SCHEDULE O,part_iii.Dsc,/IRS990/Desc,False,,
201533089349301428,IRS990,Part III Line 4e,Total program service expense,1608656855,part_iii.TtlPrgrmSrvcExpnssAmt,/IRS990/TotalProgramServiceExpensesAmt,False,,
201533089349301428,IRS990,Part IV Line 1,Described in 501(c)(3)?,true,part_iv.DscrbdInSctn501c3Ind,/IRS990/DescribedInSection501c3Ind,False,,
201533089349301428,IRS990,Part IV Line 2,Schedule B required?,true,part_iv.SkdBRqrdInd,/IRS990/ScheduleBRequiredInd,False,,
201533089349301428,IRS990,Part IV Line 3,Political activities?,false,part_iv.PltclCmpgnActyInd,/IRS990/PoliticalCampaignActyInd,False,,
201533089349301428,IRS990,Part IV Line 4,Lobbying activities?,true,part_iv.LbbyngActvtsInd,/IRS990/LobbyingActivitiesInd,False,,
201533089349301428,IRS990,Part IV Line 5,Subject to proxy tax?,false,part_iv.SbjctTPrxyTxInd,/IRS990/SubjectToProxyTaxInd,False,,
201533089349301428,IRS990,Part IV Line 6,Donor advised funds?,false,part_iv.DnrAdvsdFndInd,/IRS990/DonorAdvisedFundInd,False,,
201533089349301428,IRS990,Part IV Line 7,Conservation easements?,false,part_iv.CnsrvtnEsmntsInd,/IRS990/ConservationEasementsInd,False,,
201533089349301428,IRS990,Part IV Line 8,Collections of art?,false,part_iv.CllctnsOfArtInd,/IRS990/CollectionsOfArtInd,False,,
201533089349301428,IRS990,Part IV Line 9,Credit counseling?,false,part_iv.CrdtCnslngInd,/IRS990/CreditCounselingInd,False,,
201533089349301428,IRS990,Part IV Line 10,Term or permanent endowments?,true,part_iv.TmpOrPrmnntEndwmntsInd,/IRS990/TempOrPermanentEndowmentsInd,False,,
201533089349301428,IRS990,Part IV Line 11a,"Balance sheet land, buildings, equipment amounts reported?",true,part_iv.RprtLndBldngEqpmntInd,/IRS990/ReportLandBuildingEquipmentInd,False,,
201533089349301428,IRS990,Part IV Line 11b,Balance sheet investments - other securities amounts reported?,false,part_iv.RprtInvstmntsOthrScInd,/IRS990/ReportInvestmentsOtherSecInd,False,,
201533089349301428,IRS990,Part IV Line 11c,Balance sheet investments - program related amounts reported?,false,part_iv.RprtPrgrmRltdInvstInd,/IRS990/ReportProgramRelatedInvstInd,False,,
201533089349301428,IRS990,Part IV Line 11d,Balance sheet other assets amounts reported?,true,part_iv.RprtOthrAsstsInd,/IRS990/ReportOtherAssetsInd,False,,
201533089349301428,IRS990,Part IV Line 11e,Balance sheet other liabilities amounts reported?,true,part_iv.RprtOthrLbltsInd,/IRS990/ReportOtherLiabilitiesInd,False,,
201533089349301428,IRS990,Part IV Line 11f,Balance sheet footnote for liability under FIN 48?,true,part_iv.IncldFIN48FtntInd,/IRS990/IncludeFIN48FootnoteInd,False,,
201533089349301428,IRS990,Part IV Line 12a,Independent audited financial statements?,false,part_iv.IndpndntAdtFnclStmtInd,/IRS990/IndependentAuditFinclStmtInd,False,,
201533089349301428,IRS990,Part IV Line 12b,Consolidated audited financial statement?,true,part_iv.CnsldtdAdtFnclStmtInd,/IRS990/ConsolidatedAuditFinclStmtInd,False,,
201533089349301428,IRS990,Part IV Line 13,School?,false,part_iv.SchlOprtngInd,/IRS990/SchoolOperatingInd,False,,
201533089349301428,IRS990,Part IV Line 14a,Foreign office?,false,part_iv.FrgnOffcInd,/IRS990/ForeignOfficeInd,False,,
201533089349301428,IRS990,Part IV Line 14b,"Foreign activities, etc?",false,part_iv.FrgnActvtsInd,/IRS990/ForeignActivitiesInd,False,,
201533089349301428,IRS990,Part IV Line 15,"More than $5000 to organizations Part IX, line 3?",false,part_iv.MrThn5000KTOrgInd,/IRS990/MoreThan5000KToOrgInd,False,,
201533089349301428,IRS990,Part IV Line 16,"More than $5000 to individuals Part IX, line 3?",false,part_iv.MrThn5000KTIndvdlsInd,/IRS990/MoreThan5000KToIndividualsInd,False,,
201533089349301428,IRS990,Part IV Line 17,Professional fundraising?,false,part_iv.PrfssnlFndrsngInd,/IRS990/ProfessionalFundraisingInd,False,,
201533089349301428,IRS990,Part IV Line 18,Fundraising activities?,true,part_iv.FndrsngActvtsInd,/IRS990/FundraisingActivitiesInd,False,,
201533089349301428,IRS990,Part IV Line 19,Gaming?,false,part_iv.GmngActvtsInd,/IRS990/GamingActivitiesInd,False,,
201533089349301428,IRS990,Part IV Line 20a,Hospital?,true,part_iv.OprtHsptlInd,/IRS990/OperateHospitalInd,False,,
201533089349301428,IRS990,Part IV Line 20b,Audited financial statement attached?,true,part_iv.AdtdFnnclStmtAttInd,/IRS990/AuditedFinancialStmtAttInd,False,,
201533089349301428,IRS990,Part IV Line 21,Grants to organizations?,true,part_iv.GrntsTOrgnztnsInd,/IRS990/GrantsToOrganizationsInd,False,,
201533089349301428,IRS990,Part IV Line 22,Grants to individuals?,false,part_iv.GrntsTIndvdlsInd,/IRS990/GrantsToIndividualsInd,False,,
201533089349301428,IRS990,Part IV Line 23,"Part VII, Lines 3, 4, or 5 = ""Yes""?",true,part_iv.SkdJRqrdInd,/IRS990/ScheduleJRequiredInd,False,,
201533089349301428,IRS990,Part IV Line 24a,Tax exempt bonds?,true,part_iv.TxExmptBndsInd,/IRS990/TaxExemptBondsInd,False,,
201533089349301428,IRS990,Part IV Line 24b,Investment income?,false,part_iv.InvstTxExmptBndsInd,/IRS990/InvestTaxExemptBondsInd,False,,
201533089349301428,IRS990,Part IV Line 24c,Escrow account?,false,part_iv.EscrwAccntInd,/IRS990/EscrowAccountInd,False,,
201533089349301428,IRS990,Part IV Line 24d,On behalf of issuer?,false,part_iv.OnBhlfOfIssrInd,/IRS990/OnBehalfOfIssuerInd,False,,
201533089349301428,IRS990,Part IV Line 25a,Excess benefit transaction?,false,part_iv.EnggdInExcssBnftTrnsInd,/IRS990/EngagedInExcessBenefitTransInd,False,,
201533089349301428,IRS990,Part IV Line 25b,Prior excess benefit transaction?,false,part_iv.PYExcssBnftTrnsInd,/IRS990/PYExcessBenefitTransInd,False,,
201533089349301428,IRS990,Part IV Line 26,Loan to officer or DQP?,false,part_iv.LnOtstndngInd,/IRS990/LoanOutstandingInd,False,,
201533089349301428,IRS990,Part IV Line 27,Grant to related person?,false,part_iv.GrntTRltdPrsnInd,/IRS990/GrantToRelatedPersonInd,False,,
201533089349301428,IRS990,Part IV Line 28a,Business relationship with organization?,false,part_iv.BsnssRlnWthOrgMmInd,/IRS990/BusinessRlnWithOrgMemInd,False,,
201533089349301428,IRS990,Part IV Line 28b,Business relationship thru family member?,true,part_iv.BsnssRlnWthFmMmInd,/IRS990/BusinessRlnWithFamMemInd,False,,
201533089349301428,IRS990,Part IV Line 28c,"Officer, etc. of entity with business relationship?",true,part_iv.BsnssRlnWthOffcrEntInd,/IRS990/BusinessRlnWithOfficerEntInd,False,,
201533089349301428,IRS990,Part IV Line 29,Deductible non-cash contributions?,true,part_iv.DdctblNnCshCntrInd,/IRS990/DeductibleNonCashContriInd,False,,
201533089349301428,IRS990,Part IV Line 30,"Deductible contributions of art, etc?",false,part_iv.DdctblArtCntrbtnInd,/IRS990/DeductibleArtContributionInd,False,,
201533089349301428,IRS990,Part IV Line 31,Terminated?,false,part_iv.TrmntOprtnsInd,/IRS990/TerminateOperationsInd,False,,
201533089349301428,IRS990,Part IV Line 32,Partial liquidation?,false,part_iv.PrtlLqdtnInd,/IRS990/PartialLiquidationInd,False,,
201533089349301428,IRS990,Part IV Line 33,Disregarded entity?,false,part_iv.DsrgrddEnttyInd,/IRS990/DisregardedEntityInd,False,,
201533089349301428,IRS990,Part IV Line 34,Related entity?,true,part_iv.RltdEnttyInd,/IRS990/RelatedEntityInd,False,,
201533089349301428,IRS990,Part IV Line 35a,Related organization a controlled entity?,true,part_iv.RltdOrgnztnCtrlEntInd,/IRS990/RelatedOrganizationCtrlEntInd,False,,
201533089349301428,IRS990,Part IV Line 35b,Payment from or engage in transaction with a controlled entity?,true,part_iv.TrnsctnWthCntrlEntInd,/IRS990/TransactionWithControlEntInd,False,,
201533089349301428,IRS990,Part IV Line 36,Any transfers to exempt non-charitable org?,false,part_iv.TrnsfrExmptNnChrtblRltdOrgInd,/IRS990/TrnsfrExmptNonChrtblRltdOrgInd,False,,
201533089349301428,IRS990,Part IV Line 37,Activities conducted thru partnership?,false,part_iv.ActvtsCndctdPrtshpInd,/IRS990/ActivitiesConductedPrtshpInd,False,,
201533089349301428,IRS990,Part IV Line 38,Governing body and public disclosure explained in Schedule O?,true,part_iv.SkdORqrdInd,/IRS990/ScheduleORequiredInd,False,,
201533089349301428,IRS990,Part V Line 1a,Number forms transmitted with 1096,894,part_v.IRPDcmntCnt,/IRS990/IRPDocumentCnt,False,,
201533089349301428,IRS990,Part V Line 1b,Number W-2Gs included in 1a,0,part_v.IRPDcmntW2GCnt,/IRS990/IRPDocumentW2GCnt,False,,
201533089349301428,IRS990,Part V Line 1c,Compliance with backup witholding?,true,part_v.BckpWthldCmplncInd,/IRS990/BackupWthldComplianceInd,False,,
201533089349301428,IRS990,Part V Line 2a,Number of employees,9722,part_v.EmplyCnt,/IRS990/EmployeeCnt,False,,
201533089349301428,IRS990,Part V Line 2b,Employment tax returns filed?,true,part_v.EmplymntTxRtrnsFldInd,/IRS990/EmploymentTaxReturnsFiledInd,False,,
201533089349301428,IRS990,Part V Line 3a,Unrelated business income?,true,part_v.UnrltdBsIncmOvrLmtInd,/IRS990/UnrelatedBusIncmOverLimitInd,False,,
201533089349301428,IRS990,Part V Line 3b,Form 990-T filed?,true,part_v.Frm990TFldInd,/IRS990/Form990TFiledInd,False,,
201533089349301428,IRS990,Part V Line 4a,Foreign financial account?,false,part_v.FrgnFnnclAccntInd,/IRS990/ForeignFinancialAccountInd,False,,
201533089349301428,IRS990,Part V Line 5a,Prohibited tax shelter transaction?,false,part_v.PrhbtdTxShltrTrnsInd,/IRS990/ProhibitedTaxShelterTransInd,False,,
201533089349301428,IRS990,Part V Line 5b,Taxable party notification?,false,part_v.TxblPrtyNtfctnInd,/IRS990/TaxablePartyNotificationInd,False,,
201533089349301428,IRS990,Part V Line 6a,Non-deductible contributions?,false,part_v.NnddctblCntrbtnsInd,/IRS990/NondeductibleContributionsInd,False,,
201533089349301428,IRS990,Part V Line 7a,Quid pro quo contributions?,true,part_v.QdPrQCntrbtnsInd,/IRS990/QuidProQuoContributionsInd,False,,
201533089349301428,IRS990,Part V Line 7b,Quid pro quo disclosure?,true,part_v.QdPrQCntrDsclInd,/IRS990/QuidProQuoContriDisclInd,False,,
201533089349301428,IRS990,Part V Line 7c,Form 8282 property disposed of?,false,part_v.Frm8282PrprtyDspsdOfInd,/IRS990/Form8282PropertyDisposedOfInd,False,,
201533089349301428,IRS990,Part V Line 7e,Funds to pay premiums?,false,part_v.RcvFndsTPyPrsnlBnftCntrctInd,/IRS990/RcvFndsToPayPrsnlBnftCntrctInd,False,,
201533089349301428,IRS990,Part V Line 7f,Premiums paid?,false,part_v.PyPrmmsPrsnlBnftCntrctInd,/IRS990/PayPremiumsPrsnlBnftCntrctInd,False,,
201533089349301428,IRS990,Part V Line 14a,Payments received for indoor tanning services?,false,part_v.IndrTnnngSrvcsInd,/IRS990/IndoorTanningServicesInd,False,,
201533089349301428,IRS990,Part VI,Schedule O contains a response to a question in Part VI,X,part_vi.InfInSkdOPrtVIInd,/IRS990/InfoInScheduleOPartVIInd,False,,
201533089349301428,IRS990,Part VI Section A Line 1a,Number of voting governing body members,17,part_vi.GvrnngBdyVtngMmbrsCnt,/IRS990/GoverningBodyVotingMembersCnt,False,,
201533089349301428,IRS990,Part VI Section A Line 1b,Number of independent voting members,11,part_vi.IndpndntVtngMmbrCnt,/IRS990/IndependentVotingMemberCnt,False,,
201533089349301428,IRS990,Part VI Section A Line 2,Family or business relationship?,false,part_vi.FmlyOrBsnssRlnInd,/IRS990/FamilyOrBusinessRlnInd,False,,
201533089349301428,IRS990,Part VI Section A Line 3,Delegation of management duties?,false,part_vi.DlgtnOfMgmtDtsInd,/IRS990/DelegationOfMgmtDutiesInd,False,,
201533089349301428,IRS990,Part VI Section A Line 4,Changes to organizing docs?,false,part_vi.ChngTOrgDcmntsInd,/IRS990/ChangeToOrgDocumentsInd,False,,
201533089349301428,IRS990,Part VI Section A Line 5,Material diversion or misuse?,false,part_vi.MtrlDvrsnOrMssInd,/IRS990/MaterialDiversionOrMisuseInd,False,,
201533089349301428,IRS990,Part VI Section A Line 6,Members or stockholders?,true,part_vi.MmbrsOrStckhldrsInd,/IRS990/MembersOrStockholdersInd,False,,
201533089349301428,IRS990,Part VI Section A Line 7a,election of board members?,true,part_vi.ElctnOfBrdMmbrsInd,/IRS990/ElectionOfBoardMembersInd,False,,
201533089349301428,IRS990,Part VI Section A Line 7b,decisions subject to approval?,true,part_vi.DcsnsSbjctTApprvInd,/IRS990/DecisionsSubjectToApprovaInd,False,,
201533089349301428,IRS990,Part VI Section A Line 8a,Minutes of governing body?,true,part_vi.MntsOfGvrnngBdyInd,/IRS990/MinutesOfGoverningBodyInd,False,,
201533089349301428,IRS990,Part VI Section A Line 8b,Minutes of committees?,true,part_vi.MntsOfCmmttsInd,/IRS990/MinutesOfCommitteesInd,False,,
201533089349301428,IRS990,Part VI Section A Line 9,Officer mailing address?,false,part_vi.OffcrMlngAddrssInd,/IRS990/OfficerMailingAddressInd,False,,
201533089349301428,IRS990,Part VI Section B Line 10a,Local chapters?,false,part_vi.LclChptrsInd,/IRS990/LocalChaptersInd,False,,
201533089349301428,IRS990,Part VI Section B Line 11,Form 990 provided to governing body?,true,part_vi.Frm990PrvddTGvrnBdyInd,/IRS990/Form990ProvidedToGvrnBodyInd,False,,
201533089349301428,IRS990,Part VI Section B Line 12a,Conflict of interest policy?,true,part_vi.CnflctOfIntrstPlcyInd,/IRS990/ConflictOfInterestPolicyInd,False,,
201533089349301428,IRS990,Part VI Section B Line 12b,Annual disclosure by covered persons?,true,part_vi.AnnlDsclsrCvrdPrsnInd,/IRS990/AnnualDisclosureCoveredPrsnInd,False,,
201533089349301428,IRS990,Part VI Section B Line 12c,Regular monitoring and enforcement?,true,part_vi.RglrMntrngEnfrcInd,/IRS990/RegularMonitoringEnfrcInd,False,,
201533089349301428,IRS990,Part VI Section B Line 13,Whistleblower policy?,true,part_vi.WhstlblwrPlcyInd,/IRS990/WhistleblowerPolicyInd,False,,
201533089349301428,IRS990,Part VI Section B Line 14,Document retention policy?,true,part_vi.DcmntRtntnPlcyInd,/IRS990/DocumentRetentionPolicyInd,False,,
201533089349301428,IRS990,Part VI Section B Line 15a,Compensation process CEO?,true,part_vi.CmpnstnPrcssCEOInd,/IRS990/CompensationProcessCEOInd,False,,
201533089349301428,IRS990,Part VI Section B Line 15b,Compensation process other?,true,part_vi.CmpnstnPrcssOthrInd,/IRS990/CompensationProcessOtherInd,False,,
201533089349301428,IRS990,Part VI Section B Line 16a,Investment in joint venture?,true,part_vi.InvstmntInJntVntrInd,/IRS990/InvestmentInJointVentureInd,False,,
201533089349301428,IRS990,Part VI Section B Line 16b,Written policy or procedure?,true,part_vi.WrttnPlcyOrPrcdrInd,/IRS990/WrittenPolicyOrProcedureInd,False,,
201533089349301428,IRS990,Part VI Section C Line 17,States where return filed,CA,SttsWhrCpyOfRtrnIsFldCd.SttsWhrCpyOfRtrnIsFldCd,/IRS990/StatesWhereCopyOfReturnIsFldCd,True,SttsWhrCpyOfRtrnIsFldCd,0
201533089349301428,IRS990,Part VI Section C Line 18,Upon request,X,part_vi.UpnRqstInd,/IRS990/UponRequestInd,False,,
201533089349301428,IRS990,Part VI Section C Line 20,The books are in care of; Name - Person,CHRIS BOUDREAUX,part_vi.BksInCrOfDtl_PrsnNm,/IRS990/BooksInCareOfDetail/PersonNm,False,,
201533089349301428,IRS990,Part VI Section C Line 20,The books are in care of; Telephone number,9162978007,part_vi.BksInCrOfDtl_PhnNm,/IRS990/BooksInCareOfDetail/PhoneNum,False,,
201533089349301428,IRS990,Part VI Section C Line 20,The books are in care of; Address - US; Address line 1,9100 FOOTHILLS BLVD,part_vi.USAddrss_AddrssLn1Txt,/IRS990/BooksInCareOfDetail/USAddress/AddressLine1Txt,False,,
201533089349301428,IRS990,Part VI Section C Line 20,The books are in care of; Address - US; City,ROSEVILLE,part_vi.USAddrss_CtyNm,/IRS990/BooksInCareOfDetail/USAddress/CityNm,False,,
201533089349301428,IRS990,Part VI Section C Line 20,The books are in care of; Address - US; State,CA,part_vi.USAddrss_SttAbbrvtnCd,/IRS990/BooksInCareOfDetail/USAddress/StateAbbreviationCd,False,,
201533089349301428,IRS990,Part VI Section C Line 20,The books are in care of; Address - US; ZIP code,95747,part_vi.USAddrss_ZIPCd,/IRS990/BooksInCareOfDetail/USAddress/ZIPCd,False,,
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Name - Person",James Conforti,Frm990PrtVIISctnA.PrsnNm,/IRS990/Form990PartVIISectionAGrp/PersonNm,True,Frm990PrtVIISctnA,0
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Title","Regional President, SHSSR",Frm990PrtVIISctnA.TtlTxt,/IRS990/Form990PartVIISectionAGrp/TitleTxt,True,Frm990PrtVIISctnA,0
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week",40.0,Frm990PrtVIISctnA.AvrgHrsPrWkRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRt,True,Frm990PrtVIISctnA,0
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week for related organizations",0.0,Frm990PrtVIISctnA.AvrgHrsPrWkRltdOrgRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRltdOrgRt,True,Frm990PrtVIISctnA,0
201533089349301428,IRS990,Part VII Section A Line 1a C,"Section A, at least name required; Individual trustee or director",X,Frm990PrtVIISctnA.IndvdlTrstOrDrctrInd,/IRS990/Form990PartVIISectionAGrp/IndividualTrusteeOrDirectorInd,True,Frm990PrtVIISctnA,0
201533089349301428,IRS990,Part VII Section A Line 1a C,"Section A, at least name required; Officer",X,Frm990PrtVIISctnA.OffcrInd,/IRS990/Form990PartVIISectionAGrp/OfficerInd,True,Frm990PrtVIISctnA,0
201533089349301428,IRS990,Part VII Section A Line 1a D,"Section A, at least name required; Reportable compensation from organization",0,Frm990PrtVIISctnA.RprtblCmpFrmOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromOrgAmt,True,Frm990PrtVIISctnA,0
201533089349301428,IRS990,Part VII Section A Line 1a E,"Section A, at least name required; Reportable compensation from related organizations",1074810,Frm990PrtVIISctnA.RprtblCmpFrmRltdOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromRltdOrgAmt,True,Frm990PrtVIISctnA,0
201533089349301428,IRS990,Part VII Section A Line 1a F,"Section A, at least name required; Other compensation",332008,Frm990PrtVIISctnA.OthrCmpnstnAmt,/IRS990/Form990PartVIISectionAGrp/OtherCompensationAmt,True,Frm990PrtVIISctnA,0
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Name - Person",Viva Ettin,Frm990PrtVIISctnA.PrsnNm,/IRS990/Form990PartVIISectionAGrp/PersonNm,True,Frm990PrtVIISctnA,1
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Title",Trustee,Frm990PrtVIISctnA.TtlTxt,/IRS990/Form990PartVIISectionAGrp/TitleTxt,True,Frm990PrtVIISctnA,1
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week",2.0,Frm990PrtVIISctnA.AvrgHrsPrWkRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRt,True,Frm990PrtVIISctnA,1
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week for related organizations",0.0,Frm990PrtVIISctnA.AvrgHrsPrWkRltdOrgRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRltdOrgRt,True,Frm990PrtVIISctnA,1
201533089349301428,IRS990,Part VII Section A Line 1a C,"Section A, at least name required; Individual trustee or director",X,Frm990PrtVIISctnA.IndvdlTrstOrDrctrInd,/IRS990/Form990PartVIISectionAGrp/IndividualTrusteeOrDirectorInd,True,Frm990PrtVIISctnA,1
201533089349301428,IRS990,Part VII Section A Line 1a D,"Section A, at least name required; Reportable compensation from organization",0,Frm990PrtVIISctnA.RprtblCmpFrmOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromOrgAmt,True,Frm990PrtVIISctnA,1
201533089349301428,IRS990,Part VII Section A Line 1a E,"Section A, at least name required; Reportable compensation from related organizations",0,Frm990PrtVIISctnA.RprtblCmpFrmRltdOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromRltdOrgAmt,True,Frm990PrtVIISctnA,1
201533089349301428,IRS990,Part VII Section A Line 1a F,"Section A, at least name required; Other compensation",0,Frm990PrtVIISctnA.OthrCmpnstnAmt,/IRS990/Form990PartVIISectionAGrp/OtherCompensationAmt,True,Frm990PrtVIISctnA,1
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Name - Person",Patrick Fry,Frm990PrtVIISctnA.PrsnNm,/IRS990/Form990PartVIISectionAGrp/PersonNm,True,Frm990PrtVIISctnA,2
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Title","Trustee, President & CEO SH",Frm990PrtVIISctnA.TtlTxt,/IRS990/Form990PartVIISectionAGrp/TitleTxt,True,Frm990PrtVIISctnA,2
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week",2.0,Frm990PrtVIISctnA.AvrgHrsPrWkRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRt,True,Frm990PrtVIISctnA,2
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week for related organizations",40.0,Frm990PrtVIISctnA.AvrgHrsPrWkRltdOrgRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRltdOrgRt,True,Frm990PrtVIISctnA,2
201533089349301428,IRS990,Part VII Section A Line 1a C,"Section A, at least name required; Individual trustee or director",X,Frm990PrtVIISctnA.IndvdlTrstOrDrctrInd,/IRS990/Form990PartVIISectionAGrp/IndividualTrusteeOrDirectorInd,True,Frm990PrtVIISctnA,2
201533089349301428,IRS990,Part VII Section A Line 1a D,"Section A, at least name required; Reportable compensation from organization",0,Frm990PrtVIISctnA.RprtblCmpFrmOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromOrgAmt,True,Frm990PrtVIISctnA,2
201533089349301428,IRS990,Part VII Section A Line 1a E,"Section A, at least name required; Reportable compensation from related organizations",3626367,Frm990PrtVIISctnA.RprtblCmpFrmRltdOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromRltdOrgAmt,True,Frm990PrtVIISctnA,2
201533089349301428,IRS990,Part VII Section A Line 1a F,"Section A, at least name required; Other compensation",2728330,Frm990PrtVIISctnA.OthrCmpnstnAmt,/IRS990/Form990PartVIISectionAGrp/OtherCompensationAmt,True,Frm990PrtVIISctnA,2
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Name - Person",Gary Hooper,Frm990PrtVIISctnA.PrsnNm,/IRS990/Form990PartVIISectionAGrp/PersonNm,True,Frm990PrtVIISctnA,3
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Title","Trustee, Chair Fin & Plan",Frm990PrtVIISctnA.TtlTxt,/IRS990/Form990PartVIISectionAGrp/TitleTxt,True,Frm990PrtVIISctnA,3
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week",4.0,Frm990PrtVIISctnA.AvrgHrsPrWkRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRt,True,Frm990PrtVIISctnA,3
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week for related organizations",0.0,Frm990PrtVIISctnA.AvrgHrsPrWkRltdOrgRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRltdOrgRt,True,Frm990PrtVIISctnA,3
201533089349301428,IRS990,Part VII Section A Line 1a C,"Section A, at least name required; Individual trustee or director",X,Frm990PrtVIISctnA.IndvdlTrstOrDrctrInd,/IRS990/Form990PartVIISectionAGrp/IndividualTrusteeOrDirectorInd,True,Frm990PrtVIISctnA,3
201533089349301428,IRS990,Part VII Section A Line 1a C,"Section A, at least name required; Officer",X,Frm990PrtVIISctnA.OffcrInd,/IRS990/Form990PartVIISectionAGrp/OfficerInd,True,Frm990PrtVIISctnA,3
201533089349301428,IRS990,Part VII Section A Line 1a D,"Section A, at least name required; Reportable compensation from organization",0,Frm990PrtVIISctnA.RprtblCmpFrmOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromOrgAmt,True,Frm990PrtVIISctnA,3
201533089349301428,IRS990,Part VII Section A Line 1a E,"Section A, at least name required; Reportable compensation from related organizations",0,Frm990PrtVIISctnA.RprtblCmpFrmRltdOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromRltdOrgAmt,True,Frm990PrtVIISctnA,3
201533089349301428,IRS990,Part VII Section A Line 1a F,"Section A, at least name required; Other compensation",0,Frm990PrtVIISctnA.OthrCmpnstnAmt,/IRS990/Form990PartVIISectionAGrp/OtherCompensationAmt,True,Frm990PrtVIISctnA,3
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Name - Person",Scott Howell,Frm990PrtVIISctnA.PrsnNm,/IRS990/Form990PartVIISectionAGrp/PersonNm,True,Frm990PrtVIISctnA,4
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Title",Trustee,Frm990PrtVIISctnA.TtlTxt,/IRS990/Form990PartVIISectionAGrp/TitleTxt,True,Frm990PrtVIISctnA,4
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week",2.0,Frm990PrtVIISctnA.AvrgHrsPrWkRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRt,True,Frm990PrtVIISctnA,4
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week for related organizations",0.0,Frm990PrtVIISctnA.AvrgHrsPrWkRltdOrgRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRltdOrgRt,True,Frm990PrtVIISctnA,4
201533089349301428,IRS990,Part VII Section A Line 1a C,"Section A, at least name required; Individual trustee or director",X,Frm990PrtVIISctnA.IndvdlTrstOrDrctrInd,/IRS990/Form990PartVIISectionAGrp/IndividualTrusteeOrDirectorInd,True,Frm990PrtVIISctnA,4
201533089349301428,IRS990,Part VII Section A Line 1a D,"Section A, at least name required; Reportable compensation from organization",0,Frm990PrtVIISctnA.RprtblCmpFrmOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromOrgAmt,True,Frm990PrtVIISctnA,4
201533089349301428,IRS990,Part VII Section A Line 1a E,"Section A, at least name required; Reportable compensation from related organizations",0,Frm990PrtVIISctnA.RprtblCmpFrmRltdOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromRltdOrgAmt,True,Frm990PrtVIISctnA,4
201533089349301428,IRS990,Part VII Section A Line 1a F,"Section A, at least name required; Other compensation",0,Frm990PrtVIISctnA.OthrCmpnstnAmt,/IRS990/Form990PartVIISectionAGrp/OtherCompensationAmt,True,Frm990PrtVIISctnA,4
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Name - Person",Peter Hull MD,Frm990PrtVIISctnA.PrsnNm,/IRS990/Form990PartVIISectionAGrp/PersonNm,True,Frm990PrtVIISctnA,5
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Title",Trustee,Frm990PrtVIISctnA.TtlTxt,/IRS990/Form990PartVIISectionAGrp/TitleTxt,True,Frm990PrtVIISctnA,5
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week",2.0,Frm990PrtVIISctnA.AvrgHrsPrWkRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRt,True,Frm990PrtVIISctnA,5
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week for related organizations",0.0,Frm990PrtVIISctnA.AvrgHrsPrWkRltdOrgRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRltdOrgRt,True,Frm990PrtVIISctnA,5
201533089349301428,IRS990,Part VII Section A Line 1a C,"Section A, at least name required; Individual trustee or director",X,Frm990PrtVIISctnA.IndvdlTrstOrDrctrInd,/IRS990/Form990PartVIISectionAGrp/IndividualTrusteeOrDirectorInd,True,Frm990PrtVIISctnA,5
201533089349301428,IRS990,Part VII Section A Line 1a D,"Section A, at least name required; Reportable compensation from organization",15766,Frm990PrtVIISctnA.RprtblCmpFrmOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromOrgAmt,True,Frm990PrtVIISctnA,5
201533089349301428,IRS990,Part VII Section A Line 1a E,"Section A, at least name required; Reportable compensation from related organizations",0,Frm990PrtVIISctnA.RprtblCmpFrmRltdOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromRltdOrgAmt,True,Frm990PrtVIISctnA,5
201533089349301428,IRS990,Part VII Section A Line 1a F,"Section A, at least name required; Other compensation",0,Frm990PrtVIISctnA.OthrCmpnstnAmt,/IRS990/Form990PartVIISectionAGrp/OtherCompensationAmt,True,Frm990PrtVIISctnA,5
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Name - Person",Jeffrey Jenkins MD,Frm990PrtVIISctnA.PrsnNm,/IRS990/Form990PartVIISectionAGrp/PersonNm,True,Frm990PrtVIISctnA,6
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Title",Trustee,Frm990PrtVIISctnA.TtlTxt,/IRS990/Form990PartVIISectionAGrp/TitleTxt,True,Frm990PrtVIISctnA,6
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week",2.0,Frm990PrtVIISctnA.AvrgHrsPrWkRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRt,True,Frm990PrtVIISctnA,6
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week for related organizations",0.0,Frm990PrtVIISctnA.AvrgHrsPrWkRltdOrgRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRltdOrgRt,True,Frm990PrtVIISctnA,6
201533089349301428,IRS990,Part VII Section A Line 1a C,"Section A, at least name required; Individual trustee or director",X,Frm990PrtVIISctnA.IndvdlTrstOrDrctrInd,/IRS990/Form990PartVIISectionAGrp/IndividualTrusteeOrDirectorInd,True,Frm990PrtVIISctnA,6
201533089349301428,IRS990,Part VII Section A Line 1a D,"Section A, at least name required; Reportable compensation from organization",0,Frm990PrtVIISctnA.RprtblCmpFrmOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromOrgAmt,True,Frm990PrtVIISctnA,6
201533089349301428,IRS990,Part VII Section A Line 1a E,"Section A, at least name required; Reportable compensation from related organizations",0,Frm990PrtVIISctnA.RprtblCmpFrmRltdOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromRltdOrgAmt,True,Frm990PrtVIISctnA,6
201533089349301428,IRS990,Part VII Section A Line 1a F,"Section A, at least name required; Other compensation",0,Frm990PrtVIISctnA.OthrCmpnstnAmt,/IRS990/Form990PartVIISectionAGrp/OtherCompensationAmt,True,Frm990PrtVIISctnA,6
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Name - Person",Christopher Johnson,Frm990PrtVIISctnA.PrsnNm,/IRS990/Form990PartVIISectionAGrp/PersonNm,True,Frm990PrtVIISctnA,7
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Title",Trustee,Frm990PrtVIISctnA.TtlTxt,/IRS990/Form990PartVIISectionAGrp/TitleTxt,True,Frm990PrtVIISctnA,7
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week",2.0,Frm990PrtVIISctnA.AvrgHrsPrWkRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRt,True,Frm990PrtVIISctnA,7
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week for related organizations",0.0,Frm990PrtVIISctnA.AvrgHrsPrWkRltdOrgRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRltdOrgRt,True,Frm990PrtVIISctnA,7
201533089349301428,IRS990,Part VII Section A Line 1a C,"Section A, at least name required; Individual trustee or director",X,Frm990PrtVIISctnA.IndvdlTrstOrDrctrInd,/IRS990/Form990PartVIISectionAGrp/IndividualTrusteeOrDirectorInd,True,Frm990PrtVIISctnA,7
201533089349301428,IRS990,Part VII Section A Line 1a D,"Section A, at least name required; Reportable compensation from organization",0,Frm990PrtVIISctnA.RprtblCmpFrmOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromOrgAmt,True,Frm990PrtVIISctnA,7
201533089349301428,IRS990,Part VII Section A Line 1a E,"Section A, at least name required; Reportable compensation from related organizations",0,Frm990PrtVIISctnA.RprtblCmpFrmRltdOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromRltdOrgAmt,True,Frm990PrtVIISctnA,7
201533089349301428,IRS990,Part VII Section A Line 1a F,"Section A, at least name required; Other compensation",0,Frm990PrtVIISctnA.OthrCmpnstnAmt,/IRS990/Form990PartVIISectionAGrp/OtherCompensationAmt,True,Frm990PrtVIISctnA,7
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Name - Person",Richard Kramer,Frm990PrtVIISctnA.PrsnNm,/IRS990/Form990PartVIISectionAGrp/PersonNm,True,Frm990PrtVIISctnA,8
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Title",Trustee,Frm990PrtVIISctnA.TtlTxt,/IRS990/Form990PartVIISectionAGrp/TitleTxt,True,Frm990PrtVIISctnA,8
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week",2.0,Frm990PrtVIISctnA.AvrgHrsPrWkRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRt,True,Frm990PrtVIISctnA,8
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week for related organizations",0.0,Frm990PrtVIISctnA.AvrgHrsPrWkRltdOrgRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRltdOrgRt,True,Frm990PrtVIISctnA,8
201533089349301428,IRS990,Part VII Section A Line 1a C,"Section A, at least name required; Individual trustee or director",X,Frm990PrtVIISctnA.IndvdlTrstOrDrctrInd,/IRS990/Form990PartVIISectionAGrp/IndividualTrusteeOrDirectorInd,True,Frm990PrtVIISctnA,8
201533089349301428,IRS990,Part VII Section A Line 1a D,"Section A, at least name required; Reportable compensation from organization",0,Frm990PrtVIISctnA.RprtblCmpFrmOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromOrgAmt,True,Frm990PrtVIISctnA,8
201533089349301428,IRS990,Part VII Section A Line 1a E,"Section A, at least name required; Reportable compensation from related organizations",0,Frm990PrtVIISctnA.RprtblCmpFrmRltdOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromRltdOrgAmt,True,Frm990PrtVIISctnA,8
201533089349301428,IRS990,Part VII Section A Line 1a F,"Section A, at least name required; Other compensation",0,Frm990PrtVIISctnA.OthrCmpnstnAmt,/IRS990/Form990PartVIISectionAGrp/OtherCompensationAmt,True,Frm990PrtVIISctnA,8
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Name - Person",Sarah Krevans,Frm990PrtVIISctnA.PrsnNm,/IRS990/Form990PartVIISectionAGrp/PersonNm,True,Frm990PrtVIISctnA,9
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Title",COO Sutter Health,Frm990PrtVIISctnA.TtlTxt,/IRS990/Form990PartVIISectionAGrp/TitleTxt,True,Frm990PrtVIISctnA,9
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week",2.0,Frm990PrtVIISctnA.AvrgHrsPrWkRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRt,True,Frm990PrtVIISctnA,9
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week for related organizations",40.0,Frm990PrtVIISctnA.AvrgHrsPrWkRltdOrgRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRltdOrgRt,True,Frm990PrtVIISctnA,9
201533089349301428,IRS990,Part VII Section A Line 1a C,"Section A, at least name required; Individual trustee or director",X,Frm990PrtVIISctnA.IndvdlTrstOrDrctrInd,/IRS990/Form990PartVIISectionAGrp/IndividualTrusteeOrDirectorInd,True,Frm990PrtVIISctnA,9
201533089349301428,IRS990,Part VII Section A Line 1a D,"Section A, at least name required; Reportable compensation from organization",0,Frm990PrtVIISctnA.RprtblCmpFrmOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromOrgAmt,True,Frm990PrtVIISctnA,9
201533089349301428,IRS990,Part VII Section A Line 1a E,"Section A, at least name required; Reportable compensation from related organizations",1762486,Frm990PrtVIISctnA.RprtblCmpFrmRltdOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromRltdOrgAmt,True,Frm990PrtVIISctnA,9
201533089349301428,IRS990,Part VII Section A Line 1a F,"Section A, at least name required; Other compensation",424237,Frm990PrtVIISctnA.OthrCmpnstnAmt,/IRS990/Form990PartVIISectionAGrp/OtherCompensationAmt,True,Frm990PrtVIISctnA,9
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Name - Person",Pat Fong Kushida,Frm990PrtVIISctnA.PrsnNm,/IRS990/Form990PartVIISectionAGrp/PersonNm,True,Frm990PrtVIISctnA,10
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Title",Trustee,Frm990PrtVIISctnA.TtlTxt,/IRS990/Form990PartVIISectionAGrp/TitleTxt,True,Frm990PrtVIISctnA,10
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week",2.0,Frm990PrtVIISctnA.AvrgHrsPrWkRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRt,True,Frm990PrtVIISctnA,10
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week for related organizations",0.0,Frm990PrtVIISctnA.AvrgHrsPrWkRltdOrgRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRltdOrgRt,True,Frm990PrtVIISctnA,10
201533089349301428,IRS990,Part VII Section A Line 1a C,"Section A, at least name required; Individual trustee or director",X,Frm990PrtVIISctnA.IndvdlTrstOrDrctrInd,/IRS990/Form990PartVIISectionAGrp/IndividualTrusteeOrDirectorInd,True,Frm990PrtVIISctnA,10
201533089349301428,IRS990,Part VII Section A Line 1a D,"Section A, at least name required; Reportable compensation from organization",0,Frm990PrtVIISctnA.RprtblCmpFrmOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromOrgAmt,True,Frm990PrtVIISctnA,10
201533089349301428,IRS990,Part VII Section A Line 1a E,"Section A, at least name required; Reportable compensation from related organizations",0,Frm990PrtVIISctnA.RprtblCmpFrmRltdOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromRltdOrgAmt,True,Frm990PrtVIISctnA,10
201533089349301428,IRS990,Part VII Section A Line 1a F,"Section A, at least name required; Other compensation",0,Frm990PrtVIISctnA.OthrCmpnstnAmt,/IRS990/Form990PartVIISectionAGrp/OtherCompensationAmt,True,Frm990PrtVIISctnA,10
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Name - Person",Marion Leff MD,Frm990PrtVIISctnA.PrsnNm,/IRS990/Form990PartVIISectionAGrp/PersonNm,True,Frm990PrtVIISctnA,11
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Title",Trustee,Frm990PrtVIISctnA.TtlTxt,/IRS990/Form990PartVIISectionAGrp/TitleTxt,True,Frm990PrtVIISctnA,11
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week",2.0,Frm990PrtVIISctnA.AvrgHrsPrWkRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRt,True,Frm990PrtVIISctnA,11
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week for related organizations",0.0,Frm990PrtVIISctnA.AvrgHrsPrWkRltdOrgRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRltdOrgRt,True,Frm990PrtVIISctnA,11
201533089349301428,IRS990,Part VII Section A Line 1a C,"Section A, at least name required; Individual trustee or director",X,Frm990PrtVIISctnA.IndvdlTrstOrDrctrInd,/IRS990/Form990PartVIISectionAGrp/IndividualTrusteeOrDirectorInd,True,Frm990PrtVIISctnA,11
201533089349301428,IRS990,Part VII Section A Line 1a D,"Section A, at least name required; Reportable compensation from organization",0,Frm990PrtVIISctnA.RprtblCmpFrmOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromOrgAmt,True,Frm990PrtVIISctnA,11
201533089349301428,IRS990,Part VII Section A Line 1a E,"Section A, at least name required; Reportable compensation from related organizations",0,Frm990PrtVIISctnA.RprtblCmpFrmRltdOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromRltdOrgAmt,True,Frm990PrtVIISctnA,11
201533089349301428,IRS990,Part VII Section A Line 1a F,"Section A, at least name required; Other compensation",0,Frm990PrtVIISctnA.OthrCmpnstnAmt,/IRS990/Form990PartVIISectionAGrp/OtherCompensationAmt,True,Frm990PrtVIISctnA,11
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Name - Person",Jerry May PHD,Frm990PrtVIISctnA.PrsnNm,/IRS990/Form990PartVIISectionAGrp/PersonNm,True,Frm990PrtVIISctnA,12
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Title","Trustee, Vice-Chair",Frm990PrtVIISctnA.TtlTxt,/IRS990/Form990PartVIISectionAGrp/TitleTxt,True,Frm990PrtVIISctnA,12
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week",4.0,Frm990PrtVIISctnA.AvrgHrsPrWkRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRt,True,Frm990PrtVIISctnA,12
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week for related organizations",0.0,Frm990PrtVIISctnA.AvrgHrsPrWkRltdOrgRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRltdOrgRt,True,Frm990PrtVIISctnA,12
201533089349301428,IRS990,Part VII Section A Line 1a C,"Section A, at least name required; Individual trustee or director",X,Frm990PrtVIISctnA.IndvdlTrstOrDrctrInd,/IRS990/Form990PartVIISectionAGrp/IndividualTrusteeOrDirectorInd,True,Frm990PrtVIISctnA,12
201533089349301428,IRS990,Part VII Section A Line 1a C,"Section A, at least name required; Officer",X,Frm990PrtVIISctnA.OffcrInd,/IRS990/Form990PartVIISectionAGrp/OfficerInd,True,Frm990PrtVIISctnA,12
201533089349301428,IRS990,Part VII Section A Line 1a D,"Section A, at least name required; Reportable compensation from organization",0,Frm990PrtVIISctnA.RprtblCmpFrmOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromOrgAmt,True,Frm990PrtVIISctnA,12
201533089349301428,IRS990,Part VII Section A Line 1a E,"Section A, at least name required; Reportable compensation from related organizations",0,Frm990PrtVIISctnA.RprtblCmpFrmRltdOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromRltdOrgAmt,True,Frm990PrtVIISctnA,12
201533089349301428,IRS990,Part VII Section A Line 1a F,"Section A, at least name required; Other compensation",0,Frm990PrtVIISctnA.OthrCmpnstnAmt,/IRS990/Form990PartVIISectionAGrp/OtherCompensationAmt,True,Frm990PrtVIISctnA,12
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Name - Person",Mike Newell,Frm990PrtVIISctnA.PrsnNm,/IRS990/Form990PartVIISectionAGrp/PersonNm,True,Frm990PrtVIISctnA,13
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Title","Trustee, Chair",Frm990PrtVIISctnA.TtlTxt,/IRS990/Form990PartVIISectionAGrp/TitleTxt,True,Frm990PrtVIISctnA,13
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week",4.0,Frm990PrtVIISctnA.AvrgHrsPrWkRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRt,True,Frm990PrtVIISctnA,13
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week for related organizations",0.0,Frm990PrtVIISctnA.AvrgHrsPrWkRltdOrgRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRltdOrgRt,True,Frm990PrtVIISctnA,13
201533089349301428,IRS990,Part VII Section A Line 1a C,"Section A, at least name required; Individual trustee or director",X,Frm990PrtVIISctnA.IndvdlTrstOrDrctrInd,/IRS990/Form990PartVIISectionAGrp/IndividualTrusteeOrDirectorInd,True,Frm990PrtVIISctnA,13
201533089349301428,IRS990,Part VII Section A Line 1a C,"Section A, at least name required; Officer",X,Frm990PrtVIISctnA.OffcrInd,/IRS990/Form990PartVIISectionAGrp/OfficerInd,True,Frm990PrtVIISctnA,13
201533089349301428,IRS990,Part VII Section A Line 1a D,"Section A, at least name required; Reportable compensation from organization",0,Frm990PrtVIISctnA.RprtblCmpFrmOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromOrgAmt,True,Frm990PrtVIISctnA,13
201533089349301428,IRS990,Part VII Section A Line 1a E,"Section A, at least name required; Reportable compensation from related organizations",0,Frm990PrtVIISctnA.RprtblCmpFrmRltdOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromRltdOrgAmt,True,Frm990PrtVIISctnA,13
201533089349301428,IRS990,Part VII Section A Line 1a F,"Section A, at least name required; Other compensation",0,Frm990PrtVIISctnA.OthrCmpnstnAmt,/IRS990/Form990PartVIISectionAGrp/OtherCompensationAmt,True,Frm990PrtVIISctnA,13
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Name - Person",Pat Pathipati,Frm990PrtVIISctnA.PrsnNm,/IRS990/Form990PartVIISectionAGrp/PersonNm,True,Frm990PrtVIISctnA,14
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Title",Trustee,Frm990PrtVIISctnA.TtlTxt,/IRS990/Form990PartVIISectionAGrp/TitleTxt,True,Frm990PrtVIISctnA,14
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week",2.0,Frm990PrtVIISctnA.AvrgHrsPrWkRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRt,True,Frm990PrtVIISctnA,14
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week for related organizations",0.0,Frm990PrtVIISctnA.AvrgHrsPrWkRltdOrgRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRltdOrgRt,True,Frm990PrtVIISctnA,14
201533089349301428,IRS990,Part VII Section A Line 1a C,"Section A, at least name required; Individual trustee or director",X,Frm990PrtVIISctnA.IndvdlTrstOrDrctrInd,/IRS990/Form990PartVIISectionAGrp/IndividualTrusteeOrDirectorInd,True,Frm990PrtVIISctnA,14
201533089349301428,IRS990,Part VII Section A Line 1a D,"Section A, at least name required; Reportable compensation from organization",0,Frm990PrtVIISctnA.RprtblCmpFrmOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromOrgAmt,True,Frm990PrtVIISctnA,14
201533089349301428,IRS990,Part VII Section A Line 1a E,"Section A, at least name required; Reportable compensation from related organizations",0,Frm990PrtVIISctnA.RprtblCmpFrmRltdOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromRltdOrgAmt,True,Frm990PrtVIISctnA,14
201533089349301428,IRS990,Part VII Section A Line 1a F,"Section A, at least name required; Other compensation",0,Frm990PrtVIISctnA.OthrCmpnstnAmt,/IRS990/Form990PartVIISectionAGrp/OtherCompensationAmt,True,Frm990PrtVIISctnA,14
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Name - Person",Paige Stauss,Frm990PrtVIISctnA.PrsnNm,/IRS990/Form990PartVIISectionAGrp/PersonNm,True,Frm990PrtVIISctnA,15
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Title",Trustee,Frm990PrtVIISctnA.TtlTxt,/IRS990/Form990PartVIISectionAGrp/TitleTxt,True,Frm990PrtVIISctnA,15
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week",2.0,Frm990PrtVIISctnA.AvrgHrsPrWkRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRt,True,Frm990PrtVIISctnA,15
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week for related organizations",0.0,Frm990PrtVIISctnA.AvrgHrsPrWkRltdOrgRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRltdOrgRt,True,Frm990PrtVIISctnA,15
201533089349301428,IRS990,Part VII Section A Line 1a C,"Section A, at least name required; Individual trustee or director",X,Frm990PrtVIISctnA.IndvdlTrstOrDrctrInd,/IRS990/Form990PartVIISectionAGrp/IndividualTrusteeOrDirectorInd,True,Frm990PrtVIISctnA,15
201533089349301428,IRS990,Part VII Section A Line 1a D,"Section A, at least name required; Reportable compensation from organization",0,Frm990PrtVIISctnA.RprtblCmpFrmOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromOrgAmt,True,Frm990PrtVIISctnA,15
201533089349301428,IRS990,Part VII Section A Line 1a E,"Section A, at least name required; Reportable compensation from related organizations",0,Frm990PrtVIISctnA.RprtblCmpFrmRltdOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromRltdOrgAmt,True,Frm990PrtVIISctnA,15
201533089349301428,IRS990,Part VII Section A Line 1a F,"Section A, at least name required; Other compensation",0,Frm990PrtVIISctnA.OthrCmpnstnAmt,/IRS990/Form990PartVIISectionAGrp/OtherCompensationAmt,True,Frm990PrtVIISctnA,15
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Name - Person",Helen Thomson,Frm990PrtVIISctnA.PrsnNm,/IRS990/Form990PartVIISectionAGrp/PersonNm,True,Frm990PrtVIISctnA,16
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Title",Trustee,Frm990PrtVIISctnA.TtlTxt,/IRS990/Form990PartVIISectionAGrp/TitleTxt,True,Frm990PrtVIISctnA,16
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week",2.0,Frm990PrtVIISctnA.AvrgHrsPrWkRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRt,True,Frm990PrtVIISctnA,16
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week for related organizations",0.0,Frm990PrtVIISctnA.AvrgHrsPrWkRltdOrgRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRltdOrgRt,True,Frm990PrtVIISctnA,16
201533089349301428,IRS990,Part VII Section A Line 1a C,"Section A, at least name required; Individual trustee or director",X,Frm990PrtVIISctnA.IndvdlTrstOrDrctrInd,/IRS990/Form990PartVIISectionAGrp/IndividualTrusteeOrDirectorInd,True,Frm990PrtVIISctnA,16
201533089349301428,IRS990,Part VII Section A Line 1a D,"Section A, at least name required; Reportable compensation from organization",0,Frm990PrtVIISctnA.RprtblCmpFrmOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromOrgAmt,True,Frm990PrtVIISctnA,16
201533089349301428,IRS990,Part VII Section A Line 1a E,"Section A, at least name required; Reportable compensation from related organizations",0,Frm990PrtVIISctnA.RprtblCmpFrmRltdOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromRltdOrgAmt,True,Frm990PrtVIISctnA,16
201533089349301428,IRS990,Part VII Section A Line 1a F,"Section A, at least name required; Other compensation",0,Frm990PrtVIISctnA.OthrCmpnstnAmt,/IRS990/Form990PartVIISectionAGrp/OtherCompensationAmt,True,Frm990PrtVIISctnA,16
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Name - Person",Jeffrey Sprague,Frm990PrtVIISctnA.PrsnNm,/IRS990/Form990PartVIISectionAGrp/PersonNm,True,Frm990PrtVIISctnA,17
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Title","CFO, Sac Sierra Region (Pt Yr)",Frm990PrtVIISctnA.TtlTxt,/IRS990/Form990PartVIISectionAGrp/TitleTxt,True,Frm990PrtVIISctnA,17
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week",40.0,Frm990PrtVIISctnA.AvrgHrsPrWkRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRt,True,Frm990PrtVIISctnA,17
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week for related organizations",0.0,Frm990PrtVIISctnA.AvrgHrsPrWkRltdOrgRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRltdOrgRt,True,Frm990PrtVIISctnA,17
201533089349301428,IRS990,Part VII Section A Line 1a C,"Section A, at least name required; Officer",X,Frm990PrtVIISctnA.OffcrInd,/IRS990/Form990PartVIISectionAGrp/OfficerInd,True,Frm990PrtVIISctnA,17
201533089349301428,IRS990,Part VII Section A Line 1a D,"Section A, at least name required; Reportable compensation from organization",0,Frm990PrtVIISctnA.RprtblCmpFrmOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromOrgAmt,True,Frm990PrtVIISctnA,17
201533089349301428,IRS990,Part VII Section A Line 1a E,"Section A, at least name required; Reportable compensation from related organizations",1054869,Frm990PrtVIISctnA.RprtblCmpFrmRltdOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromRltdOrgAmt,True,Frm990PrtVIISctnA,17
201533089349301428,IRS990,Part VII Section A Line 1a F,"Section A, at least name required; Other compensation",399561,Frm990PrtVIISctnA.OthrCmpnstnAmt,/IRS990/Form990PartVIISectionAGrp/OtherCompensationAmt,True,Frm990PrtVIISctnA,17
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Name - Person",Paige Terra,Frm990PrtVIISctnA.PrsnNm,/IRS990/Form990PartVIISectionAGrp/PersonNm,True,Frm990PrtVIISctnA,18
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Title",CFO (Part Year),Frm990PrtVIISctnA.TtlTxt,/IRS990/Form990PartVIISectionAGrp/TitleTxt,True,Frm990PrtVIISctnA,18
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week",40.0,Frm990PrtVIISctnA.AvrgHrsPrWkRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRt,True,Frm990PrtVIISctnA,18
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week for related organizations",0.0,Frm990PrtVIISctnA.AvrgHrsPrWkRltdOrgRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRltdOrgRt,True,Frm990PrtVIISctnA,18
201533089349301428,IRS990,Part VII Section A Line 1a C,"Section A, at least name required; Officer",X,Frm990PrtVIISctnA.OffcrInd,/IRS990/Form990PartVIISectionAGrp/OfficerInd,True,Frm990PrtVIISctnA,18
201533089349301428,IRS990,Part VII Section A Line 1a D,"Section A, at least name required; Reportable compensation from organization",0,Frm990PrtVIISctnA.RprtblCmpFrmOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromOrgAmt,True,Frm990PrtVIISctnA,18
201533089349301428,IRS990,Part VII Section A Line 1a E,"Section A, at least name required; Reportable compensation from related organizations",555720,Frm990PrtVIISctnA.RprtblCmpFrmRltdOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromRltdOrgAmt,True,Frm990PrtVIISctnA,18
201533089349301428,IRS990,Part VII Section A Line 1a F,"Section A, at least name required; Other compensation",101568,Frm990PrtVIISctnA.OthrCmpnstnAmt,/IRS990/Form990PartVIISectionAGrp/OtherCompensationAmt,True,Frm990PrtVIISctnA,18
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Name - Person",PENNY WESTFALL,Frm990PrtVIISctnA.PrsnNm,/IRS990/Form990PartVIISectionAGrp/PersonNm,True,Frm990PrtVIISctnA,19
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Title","VP & REG COUNSEL, SSR",Frm990PrtVIISctnA.TtlTxt,/IRS990/Form990PartVIISectionAGrp/TitleTxt,True,Frm990PrtVIISctnA,19
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week",40.0,Frm990PrtVIISctnA.AvrgHrsPrWkRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRt,True,Frm990PrtVIISctnA,19
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week for related organizations",0.0,Frm990PrtVIISctnA.AvrgHrsPrWkRltdOrgRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRltdOrgRt,True,Frm990PrtVIISctnA,19
201533089349301428,IRS990,Part VII Section A Line 1a C,"Section A, at least name required; Officer",X,Frm990PrtVIISctnA.OffcrInd,/IRS990/Form990PartVIISectionAGrp/OfficerInd,True,Frm990PrtVIISctnA,19
201533089349301428,IRS990,Part VII Section A Line 1a D,"Section A, at least name required; Reportable compensation from organization",0,Frm990PrtVIISctnA.RprtblCmpFrmOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromOrgAmt,True,Frm990PrtVIISctnA,19
201533089349301428,IRS990,Part VII Section A Line 1a E,"Section A, at least name required; Reportable compensation from related organizations",564797,Frm990PrtVIISctnA.RprtblCmpFrmRltdOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromRltdOrgAmt,True,Frm990PrtVIISctnA,19
201533089349301428,IRS990,Part VII Section A Line 1a F,"Section A, at least name required; Other compensation",73392,Frm990PrtVIISctnA.OthrCmpnstnAmt,/IRS990/Form990PartVIISectionAGrp/OtherCompensationAmt,True,Frm990PrtVIISctnA,19
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Name - Person",Thomas Blinn,Frm990PrtVIISctnA.PrsnNm,/IRS990/Form990PartVIISectionAGrp/PersonNm,True,Frm990PrtVIISctnA,20
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Title","CEO, Reg Amb Care, SRR",Frm990PrtVIISctnA.TtlTxt,/IRS990/Form990PartVIISectionAGrp/TitleTxt,True,Frm990PrtVIISctnA,20
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week",40.0,Frm990PrtVIISctnA.AvrgHrsPrWkRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRt,True,Frm990PrtVIISctnA,20
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week for related organizations",0.0,Frm990PrtVIISctnA.AvrgHrsPrWkRltdOrgRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRltdOrgRt,True,Frm990PrtVIISctnA,20
201533089349301428,IRS990,Part VII Section A Line 1a C,"Section A, at least name required; Key Employee",X,Frm990PrtVIISctnA.KyEmplyInd,/IRS990/Form990PartVIISectionAGrp/KeyEmployeeInd,True,Frm990PrtVIISctnA,20
201533089349301428,IRS990,Part VII Section A Line 1a D,"Section A, at least name required; Reportable compensation from organization",0,Frm990PrtVIISctnA.RprtblCmpFrmOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromOrgAmt,True,Frm990PrtVIISctnA,20
201533089349301428,IRS990,Part VII Section A Line 1a E,"Section A, at least name required; Reportable compensation from related organizations",841783,Frm990PrtVIISctnA.RprtblCmpFrmRltdOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromRltdOrgAmt,True,Frm990PrtVIISctnA,20
201533089349301428,IRS990,Part VII Section A Line 1a F,"Section A, at least name required; Other compensation",165871,Frm990PrtVIISctnA.OthrCmpnstnAmt,/IRS990/Form990PartVIISectionAGrp/OtherCompensationAmt,True,Frm990PrtVIISctnA,20
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Name - Person",Pat Brady,Frm990PrtVIISctnA.PrsnNm,/IRS990/Form990PartVIISectionAGrp/PersonNm,True,Frm990PrtVIISctnA,21
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Title","CEO, Sutter Roseville Med. Ctr",Frm990PrtVIISctnA.TtlTxt,/IRS990/Form990PartVIISectionAGrp/TitleTxt,True,Frm990PrtVIISctnA,21
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week",40.0,Frm990PrtVIISctnA.AvrgHrsPrWkRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRt,True,Frm990PrtVIISctnA,21
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week for related organizations",0.0,Frm990PrtVIISctnA.AvrgHrsPrWkRltdOrgRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRltdOrgRt,True,Frm990PrtVIISctnA,21
201533089349301428,IRS990,Part VII Section A Line 1a C,"Section A, at least name required; Key Employee",X,Frm990PrtVIISctnA.KyEmplyInd,/IRS990/Form990PartVIISectionAGrp/KeyEmployeeInd,True,Frm990PrtVIISctnA,21
201533089349301428,IRS990,Part VII Section A Line 1a D,"Section A, at least name required; Reportable compensation from organization",0,Frm990PrtVIISctnA.RprtblCmpFrmOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromOrgAmt,True,Frm990PrtVIISctnA,21
201533089349301428,IRS990,Part VII Section A Line 1a E,"Section A, at least name required; Reportable compensation from related organizations",830302,Frm990PrtVIISctnA.RprtblCmpFrmRltdOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromRltdOrgAmt,True,Frm990PrtVIISctnA,21
201533089349301428,IRS990,Part VII Section A Line 1a F,"Section A, at least name required; Other compensation",159096,Frm990PrtVIISctnA.OthrCmpnstnAmt,/IRS990/Form990PartVIISectionAGrp/OtherCompensationAmt,True,Frm990PrtVIISctnA,21
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Name - Person",Dennie Conrad,Frm990PrtVIISctnA.PrsnNm,/IRS990/Form990PartVIISectionAGrp/PersonNm,True,Frm990PrtVIISctnA,22
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Title","REG VP, PLNNG & BUS DEV SHSSR",Frm990PrtVIISctnA.TtlTxt,/IRS990/Form990PartVIISectionAGrp/TitleTxt,True,Frm990PrtVIISctnA,22
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week",40.0,Frm990PrtVIISctnA.AvrgHrsPrWkRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRt,True,Frm990PrtVIISctnA,22
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week for related organizations",0.0,Frm990PrtVIISctnA.AvrgHrsPrWkRltdOrgRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRltdOrgRt,True,Frm990PrtVIISctnA,22
201533089349301428,IRS990,Part VII Section A Line 1a C,"Section A, at least name required; Key Employee",X,Frm990PrtVIISctnA.KyEmplyInd,/IRS990/Form990PartVIISectionAGrp/KeyEmployeeInd,True,Frm990PrtVIISctnA,22
201533089349301428,IRS990,Part VII Section A Line 1a D,"Section A, at least name required; Reportable compensation from organization",0,Frm990PrtVIISctnA.RprtblCmpFrmOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromOrgAmt,True,Frm990PrtVIISctnA,22
201533089349301428,IRS990,Part VII Section A Line 1a E,"Section A, at least name required; Reportable compensation from related organizations",422402,Frm990PrtVIISctnA.RprtblCmpFrmRltdOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromRltdOrgAmt,True,Frm990PrtVIISctnA,22
201533089349301428,IRS990,Part VII Section A Line 1a F,"Section A, at least name required; Other compensation",63701,Frm990PrtVIISctnA.OthrCmpnstnAmt,/IRS990/Form990PartVIISectionAGrp/OtherCompensationAmt,True,Frm990PrtVIISctnA,22
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Name - Person",Terry Glubka,Frm990PrtVIISctnA.PrsnNm,/IRS990/Form990PartVIISectionAGrp/PersonNm,True,Frm990PrtVIISctnA,23
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Title","CEO, Sutter Solano Medical Ctr",Frm990PrtVIISctnA.TtlTxt,/IRS990/Form990PartVIISectionAGrp/TitleTxt,True,Frm990PrtVIISctnA,23
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week",40.0,Frm990PrtVIISctnA.AvrgHrsPrWkRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRt,True,Frm990PrtVIISctnA,23
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week for related organizations",0.0,Frm990PrtVIISctnA.AvrgHrsPrWkRltdOrgRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRltdOrgRt,True,Frm990PrtVIISctnA,23
201533089349301428,IRS990,Part VII Section A Line 1a C,"Section A, at least name required; Key Employee",X,Frm990PrtVIISctnA.KyEmplyInd,/IRS990/Form990PartVIISectionAGrp/KeyEmployeeInd,True,Frm990PrtVIISctnA,23
201533089349301428,IRS990,Part VII Section A Line 1a D,"Section A, at least name required; Reportable compensation from organization",0,Frm990PrtVIISctnA.RprtblCmpFrmOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromOrgAmt,True,Frm990PrtVIISctnA,23
201533089349301428,IRS990,Part VII Section A Line 1a E,"Section A, at least name required; Reportable compensation from related organizations",599097,Frm990PrtVIISctnA.RprtblCmpFrmRltdOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromRltdOrgAmt,True,Frm990PrtVIISctnA,23
201533089349301428,IRS990,Part VII Section A Line 1a F,"Section A, at least name required; Other compensation",106345,Frm990PrtVIISctnA.OthrCmpnstnAmt,/IRS990/Form990PartVIISectionAGrp/OtherCompensationAmt,True,Frm990PrtVIISctnA,23
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Name - Person",Mitch Hanna,Frm990PrtVIISctnA.PrsnNm,/IRS990/Form990PartVIISectionAGrp/PersonNm,True,Frm990PrtVIISctnA,24
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Title","CAO, SAFH",Frm990PrtVIISctnA.TtlTxt,/IRS990/Form990PartVIISectionAGrp/TitleTxt,True,Frm990PrtVIISctnA,24
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week",40.0,Frm990PrtVIISctnA.AvrgHrsPrWkRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRt,True,Frm990PrtVIISctnA,24
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week for related organizations",0.0,Frm990PrtVIISctnA.AvrgHrsPrWkRltdOrgRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRltdOrgRt,True,Frm990PrtVIISctnA,24
201533089349301428,IRS990,Part VII Section A Line 1a C,"Section A, at least name required; Key Employee",X,Frm990PrtVIISctnA.KyEmplyInd,/IRS990/Form990PartVIISectionAGrp/KeyEmployeeInd,True,Frm990PrtVIISctnA,24
201533089349301428,IRS990,Part VII Section A Line 1a D,"Section A, at least name required; Reportable compensation from organization",0,Frm990PrtVIISctnA.RprtblCmpFrmOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromOrgAmt,True,Frm990PrtVIISctnA,24
201533089349301428,IRS990,Part VII Section A Line 1a E,"Section A, at least name required; Reportable compensation from related organizations",558417,Frm990PrtVIISctnA.RprtblCmpFrmRltdOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromRltdOrgAmt,True,Frm990PrtVIISctnA,24
201533089349301428,IRS990,Part VII Section A Line 1a F,"Section A, at least name required; Other compensation",89334,Frm990PrtVIISctnA.OthrCmpnstnAmt,/IRS990/Form990PartVIISectionAGrp/OtherCompensationAmt,True,Frm990PrtVIISctnA,24
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Name - Person",Carrie Owen-Plietz,Frm990PrtVIISctnA.PrsnNm,/IRS990/Form990PartVIISectionAGrp/PersonNm,True,Frm990PrtVIISctnA,25
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Title","CEO, Sutter Med Ctr Sacramento",Frm990PrtVIISctnA.TtlTxt,/IRS990/Form990PartVIISectionAGrp/TitleTxt,True,Frm990PrtVIISctnA,25
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week",40.0,Frm990PrtVIISctnA.AvrgHrsPrWkRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRt,True,Frm990PrtVIISctnA,25
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week for related organizations",0.0,Frm990PrtVIISctnA.AvrgHrsPrWkRltdOrgRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRltdOrgRt,True,Frm990PrtVIISctnA,25
201533089349301428,IRS990,Part VII Section A Line 1a C,"Section A, at least name required; Key Employee",X,Frm990PrtVIISctnA.KyEmplyInd,/IRS990/Form990PartVIISectionAGrp/KeyEmployeeInd,True,Frm990PrtVIISctnA,25
201533089349301428,IRS990,Part VII Section A Line 1a D,"Section A, at least name required; Reportable compensation from organization",0,Frm990PrtVIISctnA.RprtblCmpFrmOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromOrgAmt,True,Frm990PrtVIISctnA,25
201533089349301428,IRS990,Part VII Section A Line 1a E,"Section A, at least name required; Reportable compensation from related organizations",781368,Frm990PrtVIISctnA.RprtblCmpFrmRltdOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromRltdOrgAmt,True,Frm990PrtVIISctnA,25
201533089349301428,IRS990,Part VII Section A Line 1a F,"Section A, at least name required; Other compensation",153280,Frm990PrtVIISctnA.OthrCmpnstnAmt,/IRS990/Form990PartVIISectionAGrp/OtherCompensationAmt,True,Frm990PrtVIISctnA,25
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Name - Person",Anne Platt,Frm990PrtVIISctnA.PrsnNm,/IRS990/Form990PartVIISectionAGrp/PersonNm,True,Frm990PrtVIISctnA,26
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Title","CEO, SUTTER AMADOR HOSPITAL",Frm990PrtVIISctnA.TtlTxt,/IRS990/Form990PartVIISectionAGrp/TitleTxt,True,Frm990PrtVIISctnA,26
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week",40.0,Frm990PrtVIISctnA.AvrgHrsPrWkRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRt,True,Frm990PrtVIISctnA,26
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week for related organizations",0.0,Frm990PrtVIISctnA.AvrgHrsPrWkRltdOrgRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRltdOrgRt,True,Frm990PrtVIISctnA,26
201533089349301428,IRS990,Part VII Section A Line 1a C,"Section A, at least name required; Key Employee",X,Frm990PrtVIISctnA.KyEmplyInd,/IRS990/Form990PartVIISectionAGrp/KeyEmployeeInd,True,Frm990PrtVIISctnA,26
201533089349301428,IRS990,Part VII Section A Line 1a D,"Section A, at least name required; Reportable compensation from organization",0,Frm990PrtVIISctnA.RprtblCmpFrmOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromOrgAmt,True,Frm990PrtVIISctnA,26
201533089349301428,IRS990,Part VII Section A Line 1a E,"Section A, at least name required; Reportable compensation from related organizations",499953,Frm990PrtVIISctnA.RprtblCmpFrmRltdOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromRltdOrgAmt,True,Frm990PrtVIISctnA,26
201533089349301428,IRS990,Part VII Section A Line 1a F,"Section A, at least name required; Other compensation",79313,Frm990PrtVIISctnA.OthrCmpnstnAmt,/IRS990/Form990PartVIISectionAGrp/OtherCompensationAmt,True,Frm990PrtVIISctnA,26
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Name - Person",Thomas Ream II,Frm990PrtVIISctnA.PrsnNm,/IRS990/Form990PartVIISectionAGrp/PersonNm,True,Frm990PrtVIISctnA,27
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Title","Reg CIO, Sac Sierra Region",Frm990PrtVIISctnA.TtlTxt,/IRS990/Form990PartVIISectionAGrp/TitleTxt,True,Frm990PrtVIISctnA,27
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week",40.0,Frm990PrtVIISctnA.AvrgHrsPrWkRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRt,True,Frm990PrtVIISctnA,27
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week for related organizations",0.0,Frm990PrtVIISctnA.AvrgHrsPrWkRltdOrgRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRltdOrgRt,True,Frm990PrtVIISctnA,27
201533089349301428,IRS990,Part VII Section A Line 1a C,"Section A, at least name required; Key Employee",X,Frm990PrtVIISctnA.KyEmplyInd,/IRS990/Form990PartVIISectionAGrp/KeyEmployeeInd,True,Frm990PrtVIISctnA,27
201533089349301428,IRS990,Part VII Section A Line 1a D,"Section A, at least name required; Reportable compensation from organization",0,Frm990PrtVIISctnA.RprtblCmpFrmOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromOrgAmt,True,Frm990PrtVIISctnA,27
201533089349301428,IRS990,Part VII Section A Line 1a E,"Section A, at least name required; Reportable compensation from related organizations",369365,Frm990PrtVIISctnA.RprtblCmpFrmRltdOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromRltdOrgAmt,True,Frm990PrtVIISctnA,27
201533089349301428,IRS990,Part VII Section A Line 1a F,"Section A, at least name required; Other compensation",55482,Frm990PrtVIISctnA.OthrCmpnstnAmt,/IRS990/Form990PartVIISectionAGrp/OtherCompensationAmt,True,Frm990PrtVIISctnA,27
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Name - Person",Janet Wagner,Frm990PrtVIISctnA.PrsnNm,/IRS990/Form990PartVIISectionAGrp/PersonNm,True,Frm990PrtVIISctnA,28
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Title","CAO, Sutter Davis Hospital",Frm990PrtVIISctnA.TtlTxt,/IRS990/Form990PartVIISectionAGrp/TitleTxt,True,Frm990PrtVIISctnA,28
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week",40.0,Frm990PrtVIISctnA.AvrgHrsPrWkRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRt,True,Frm990PrtVIISctnA,28
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week for related organizations",0.0,Frm990PrtVIISctnA.AvrgHrsPrWkRltdOrgRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRltdOrgRt,True,Frm990PrtVIISctnA,28
201533089349301428,IRS990,Part VII Section A Line 1a C,"Section A, at least name required; Key Employee",X,Frm990PrtVIISctnA.KyEmplyInd,/IRS990/Form990PartVIISectionAGrp/KeyEmployeeInd,True,Frm990PrtVIISctnA,28
201533089349301428,IRS990,Part VII Section A Line 1a D,"Section A, at least name required; Reportable compensation from organization",0,Frm990PrtVIISctnA.RprtblCmpFrmOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromOrgAmt,True,Frm990PrtVIISctnA,28
201533089349301428,IRS990,Part VII Section A Line 1a E,"Section A, at least name required; Reportable compensation from related organizations",552560,Frm990PrtVIISctnA.RprtblCmpFrmRltdOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromRltdOrgAmt,True,Frm990PrtVIISctnA,28
201533089349301428,IRS990,Part VII Section A Line 1a F,"Section A, at least name required; Other compensation",193425,Frm990PrtVIISctnA.OthrCmpnstnAmt,/IRS990/Form990PartVIISectionAGrp/OtherCompensationAmt,True,Frm990PrtVIISctnA,28
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Name - Person",John Boyd,Frm990PrtVIISctnA.PrsnNm,/IRS990/Form990PartVIISectionAGrp/PersonNm,True,Frm990PrtVIISctnA,29
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Title","CAO, MNTL HLTH & CONT CARE SSR",Frm990PrtVIISctnA.TtlTxt,/IRS990/Form990PartVIISectionAGrp/TitleTxt,True,Frm990PrtVIISctnA,29
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week",40.0,Frm990PrtVIISctnA.AvrgHrsPrWkRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRt,True,Frm990PrtVIISctnA,29
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week for related organizations",0.0,Frm990PrtVIISctnA.AvrgHrsPrWkRltdOrgRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRltdOrgRt,True,Frm990PrtVIISctnA,29
201533089349301428,IRS990,Part VII Section A Line 1a C,"Section A, at least name required; Highest compensated employee",X,Frm990PrtVIISctnA.HghstCmpnstdEmplyInd,/IRS990/Form990PartVIISectionAGrp/HighestCompensatedEmployeeInd,True,Frm990PrtVIISctnA,29
201533089349301428,IRS990,Part VII Section A Line 1a D,"Section A, at least name required; Reportable compensation from organization",0,Frm990PrtVIISctnA.RprtblCmpFrmOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromOrgAmt,True,Frm990PrtVIISctnA,29
201533089349301428,IRS990,Part VII Section A Line 1a E,"Section A, at least name required; Reportable compensation from related organizations",399100,Frm990PrtVIISctnA.RprtblCmpFrmRltdOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromRltdOrgAmt,True,Frm990PrtVIISctnA,29
201533089349301428,IRS990,Part VII Section A Line 1a F,"Section A, at least name required; Other compensation",94197,Frm990PrtVIISctnA.OthrCmpnstnAmt,/IRS990/Form990PartVIISectionAGrp/OtherCompensationAmt,True,Frm990PrtVIISctnA,29
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Name - Person",Shelly McGriff,Frm990PrtVIISctnA.PrsnNm,/IRS990/Form990PartVIISectionAGrp/PersonNm,True,Frm990PrtVIISctnA,30
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Title",CNE Sutter Med Ctr Sac.,Frm990PrtVIISctnA.TtlTxt,/IRS990/Form990PartVIISectionAGrp/TitleTxt,True,Frm990PrtVIISctnA,30
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week",40.0,Frm990PrtVIISctnA.AvrgHrsPrWkRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRt,True,Frm990PrtVIISctnA,30
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week for related organizations",0.0,Frm990PrtVIISctnA.AvrgHrsPrWkRltdOrgRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRltdOrgRt,True,Frm990PrtVIISctnA,30
201533089349301428,IRS990,Part VII Section A Line 1a C,"Section A, at least name required; Highest compensated employee",X,Frm990PrtVIISctnA.HghstCmpnstdEmplyInd,/IRS990/Form990PartVIISectionAGrp/HighestCompensatedEmployeeInd,True,Frm990PrtVIISctnA,30
201533089349301428,IRS990,Part VII Section A Line 1a D,"Section A, at least name required; Reportable compensation from organization",0,Frm990PrtVIISctnA.RprtblCmpFrmOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromOrgAmt,True,Frm990PrtVIISctnA,30
201533089349301428,IRS990,Part VII Section A Line 1a E,"Section A, at least name required; Reportable compensation from related organizations",415684,Frm990PrtVIISctnA.RprtblCmpFrmRltdOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromRltdOrgAmt,True,Frm990PrtVIISctnA,30
201533089349301428,IRS990,Part VII Section A Line 1a F,"Section A, at least name required; Other compensation",61460,Frm990PrtVIISctnA.OthrCmpnstnAmt,/IRS990/Form990PartVIISectionAGrp/OtherCompensationAmt,True,Frm990PrtVIISctnA,30
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Name - Person",John Mesic MD,Frm990PrtVIISctnA.PrsnNm,/IRS990/Form990PartVIISectionAGrp/PersonNm,True,Frm990PrtVIISctnA,31
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Title","CMO, Sac Sierra Region",Frm990PrtVIISctnA.TtlTxt,/IRS990/Form990PartVIISectionAGrp/TitleTxt,True,Frm990PrtVIISctnA,31
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week",40.0,Frm990PrtVIISctnA.AvrgHrsPrWkRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRt,True,Frm990PrtVIISctnA,31
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week for related organizations",0.0,Frm990PrtVIISctnA.AvrgHrsPrWkRltdOrgRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRltdOrgRt,True,Frm990PrtVIISctnA,31
201533089349301428,IRS990,Part VII Section A Line 1a C,"Section A, at least name required; Highest compensated employee",X,Frm990PrtVIISctnA.HghstCmpnstdEmplyInd,/IRS990/Form990PartVIISectionAGrp/HighestCompensatedEmployeeInd,True,Frm990PrtVIISctnA,31
201533089349301428,IRS990,Part VII Section A Line 1a D,"Section A, at least name required; Reportable compensation from organization",0,Frm990PrtVIISctnA.RprtblCmpFrmOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromOrgAmt,True,Frm990PrtVIISctnA,31
201533089349301428,IRS990,Part VII Section A Line 1a E,"Section A, at least name required; Reportable compensation from related organizations",849664,Frm990PrtVIISctnA.RprtblCmpFrmRltdOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromRltdOrgAmt,True,Frm990PrtVIISctnA,31
201533089349301428,IRS990,Part VII Section A Line 1a F,"Section A, at least name required; Other compensation",119275,Frm990PrtVIISctnA.OthrCmpnstnAmt,/IRS990/Form990PartVIISectionAGrp/OtherCompensationAmt,True,Frm990PrtVIISctnA,31
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Name - Person",Jeffrey Szczesny,Frm990PrtVIISctnA.PrsnNm,/IRS990/Form990PartVIISectionAGrp/PersonNm,True,Frm990PrtVIISctnA,32
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Title","Reg VP HR, Sac Sierra Region",Frm990PrtVIISctnA.TtlTxt,/IRS990/Form990PartVIISectionAGrp/TitleTxt,True,Frm990PrtVIISctnA,32
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week",40.0,Frm990PrtVIISctnA.AvrgHrsPrWkRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRt,True,Frm990PrtVIISctnA,32
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week for related organizations",0.0,Frm990PrtVIISctnA.AvrgHrsPrWkRltdOrgRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRltdOrgRt,True,Frm990PrtVIISctnA,32
201533089349301428,IRS990,Part VII Section A Line 1a C,"Section A, at least name required; Highest compensated employee",X,Frm990PrtVIISctnA.HghstCmpnstdEmplyInd,/IRS990/Form990PartVIISectionAGrp/HighestCompensatedEmployeeInd,True,Frm990PrtVIISctnA,32
201533089349301428,IRS990,Part VII Section A Line 1a D,"Section A, at least name required; Reportable compensation from organization",0,Frm990PrtVIISctnA.RprtblCmpFrmOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromOrgAmt,True,Frm990PrtVIISctnA,32
201533089349301428,IRS990,Part VII Section A Line 1a E,"Section A, at least name required; Reportable compensation from related organizations",546328,Frm990PrtVIISctnA.RprtblCmpFrmRltdOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromRltdOrgAmt,True,Frm990PrtVIISctnA,32
201533089349301428,IRS990,Part VII Section A Line 1a F,"Section A, at least name required; Other compensation",87055,Frm990PrtVIISctnA.OthrCmpnstnAmt,/IRS990/Form990PartVIISectionAGrp/OtherCompensationAmt,True,Frm990PrtVIISctnA,32
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Name - Person",BARBARA NELSON,Frm990PrtVIISctnA.PrsnNm,/IRS990/Form990PartVIISectionAGrp/PersonNm,True,Frm990PrtVIISctnA,33
201533089349301428,IRS990,Part VII Section A Line 1a A,"Section A, at least name required; Title","CNE, SUTTER ROSEVILLE MED. CTR",Frm990PrtVIISctnA.TtlTxt,/IRS990/Form990PartVIISectionAGrp/TitleTxt,True,Frm990PrtVIISctnA,33
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week",40.0,Frm990PrtVIISctnA.AvrgHrsPrWkRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRt,True,Frm990PrtVIISctnA,33
201533089349301428,IRS990,Part VII Section A Line 1a B,"Section A, at least name required; Average hours per week for related organizations",0.0,Frm990PrtVIISctnA.AvrgHrsPrWkRltdOrgRt,/IRS990/Form990PartVIISectionAGrp/AverageHoursPerWeekRltdOrgRt,True,Frm990PrtVIISctnA,33
201533089349301428,IRS990,Part VII Section A Line 1a C,"Section A, at least name required; Highest compensated employee",X,Frm990PrtVIISctnA.HghstCmpnstdEmplyInd,/IRS990/Form990PartVIISectionAGrp/HighestCompensatedEmployeeInd,True,Frm990PrtVIISctnA,33
201533089349301428,IRS990,Part VII Section A Line 1a D,"Section A, at least name required; Reportable compensation from organization",0,Frm990PrtVIISctnA.RprtblCmpFrmOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromOrgAmt,True,Frm990PrtVIISctnA,33
201533089349301428,IRS990,Part VII Section A Line 1a E,"Section A, at least name required; Reportable compensation from related organizations",399392,Frm990PrtVIISctnA.RprtblCmpFrmRltdOrgAmt,/IRS990/Form990PartVIISectionAGrp/ReportableCompFromRltdOrgAmt,True,Frm990PrtVIISctnA,33
201533089349301428,IRS990,Part VII Section A Line 1a F,"Section A, at least name required; Other compensation",51074,Frm990PrtVIISctnA.OthrCmpnstnAmt,/IRS990/Form990PartVIISectionAGrp/OtherCompensationAmt,True,Frm990PrtVIISctnA,33
201533089349301428,IRS990,Part VII Section A Line 1d D,"Total, column D",15766,part_vii.TtlRprtblCmpFrmOrgAmt,/IRS990/TotalReportableCompFromOrgAmt,False,,
201533089349301428,IRS990,Part VII Section A Line 1d E,"Total, column E",16704464,part_vii.TtRprtblCmpRltdOrgAmt,/IRS990/TotReportableCompRltdOrgAmt,False,,
201533089349301428,IRS990,Part VII Section A Line 1d F,"Total, column F",5538004,part_vii.TtlOthrCmpnstnAmt,/IRS990/TotalOtherCompensationAmt,False,,
201533089349301428,IRS990,Part VII Section A Line 2,Number individuals greater than $100K,2774,part_vii.IndvRcvdGrtrThn100KCnt,/IRS990/IndivRcvdGreaterThan100KCnt,False,,
201533089349301428,IRS990,Part VII Section A Line 3,Formers listed in 1a?,false,part_vii.FrmrOfcrEmplysLstdInd,/IRS990/FormerOfcrEmployeesListedInd,False,,
201533089349301428,IRS990,Part VII Section A Line 4,"Line1a, total greater than $150K?",true,part_vii.TtlCmpGrtrThn150KInd,/IRS990/TotalCompGreaterThan150KInd,False,,
201533089349301428,IRS990,Part VII Section A Line 5,Compensation from other sources?,false,part_vii.CmpnstnFrmOthrSrcsInd,/IRS990/CompensationFromOtherSrcsInd,False,,
201533089349301428,IRS990,Part VII Section B; Part VII Section B Line 1(A),Section B; Name of contractor; Name - Person,TOWERS WATSON DELAWARE INC,CntrctrCmpnstn.CntrctrNm_PrsnNm,/IRS990/ContractorCompensationGrp/ContractorName/PersonNm,True,CntrctrCmpnstn,0
201533089349301428,IRS990,Part VII Section B; Part VII Section B Line 1(A),Section B; Address of contractor; Address - US; Address line 1,28025 NETWORK PL,CntrctrCmpnstn.USAddrss_AddrssLn1Txt,/IRS990/ContractorCompensationGrp/ContractorAddress/USAddress/AddressLine1Txt,True,CntrctrCmpnstn,0
201533089349301428,IRS990,Part VII Section B; Part VII Section B Line 1(A),Section B; Address of contractor; Address - US; City,CHICAGO,CntrctrCmpnstn.USAddrss_CtyNm,/IRS990/ContractorCompensationGrp/ContractorAddress/USAddress/CityNm,True,CntrctrCmpnstn,0
201533089349301428,IRS990,Part VII Section B; Part VII Section B Line 1(A),Section B; Address of contractor; Address - US; State,IL,CntrctrCmpnstn.USAddrss_SttAbbrvtnCd,/IRS990/ContractorCompensationGrp/ContractorAddress/USAddress/StateAbbreviationCd,True,CntrctrCmpnstn,0
201533089349301428,IRS990,Part VII Section B; Part VII Section B Line 1(A),Section B; Address of contractor; Address - US; ZIP code,60673,CntrctrCmpnstn.USAddrss_ZIPCd,/IRS990/ContractorCompensationGrp/ContractorAddress/USAddress/ZIPCd,True,CntrctrCmpnstn,0
201533089349301428,IRS990,Part VII Section B; Part VII Section B Line 1(B),Section B; Description of services,CONSULTING SERVICES,CntrctrCmpnstn.CntrctrCmpnstn_SrvcsDsc,/IRS990/ContractorCompensationGrp/ServicesDesc,True,CntrctrCmpnstn,0
201533089349301428,IRS990,Part VII Section B; Part VII Section B Line 1(C),Section B; Compensation,15615305,CntrctrCmpnstn.CntrctrCmpnstn_CmpnstnAmt,/IRS990/ContractorCompensationGrp/CompensationAmt,True,CntrctrCmpnstn,0
201533089349301428,IRS990,Part VII Section B; Part VII Section B Line 1(A),Section B; Name of contractor; Name - Person,PULMONARY MEDICINE ASSOCIATES,CntrctrCmpnstn.CntrctrNm_PrsnNm,/IRS990/ContractorCompensationGrp/ContractorName/PersonNm,True,CntrctrCmpnstn,1
201533089349301428,IRS990,Part VII Section B; Part VII Section B Line 1(A),Section B; Address of contractor; Address - US; Address line 1,1300 ETHAN WY STE 600,CntrctrCmpnstn.USAddrss_AddrssLn1Txt,/IRS990/ContractorCompensationGrp/ContractorAddress/USAddress/AddressLine1Txt,True,CntrctrCmpnstn,1
201533089349301428,IRS990,Part VII Section B; Part VII Section B Line 1(A),Section B; Address of contractor; Address - US; City,SACRAMENTO,CntrctrCmpnstn.USAddrss_CtyNm,/IRS990/ContractorCompensationGrp/ContractorAddress/USAddress/CityNm,True,CntrctrCmpnstn,1
201533089349301428,IRS990,Part VII Section B; Part VII Section B Line 1(A),Section B; Address of contractor; Address - US; State,CA,CntrctrCmpnstn.USAddrss_SttAbbrvtnCd,/IRS990/ContractorCompensationGrp/ContractorAddress/USAddress/StateAbbreviationCd,True,CntrctrCmpnstn,1
201533089349301428,IRS990,Part VII Section B; Part VII Section B Line 1(A),Section B; Address of contractor; Address - US; ZIP code,95825,CntrctrCmpnstn.USAddrss_ZIPCd,/IRS990/ContractorCompensationGrp/ContractorAddress/USAddress/ZIPCd,True,CntrctrCmpnstn,1
201533089349301428,IRS990,Part VII Section B; Part VII Section B Line 1(B),Section B; Description of services,MEDICAL SERVICES,CntrctrCmpnstn.CntrctrCmpnstn_SrvcsDsc,/IRS990/ContractorCompensationGrp/ServicesDesc,True,CntrctrCmpnstn,1
201533089349301428,IRS990,Part VII Section B; Part VII Section B Line 1(C),Section B; Compensation,5055698,CntrctrCmpnstn.CntrctrCmpnstn_CmpnstnAmt,/IRS990/ContractorCompensationGrp/CompensationAmt,True,CntrctrCmpnstn,1
201533089349301428,IRS990,Part VII Section B; Part VII Section B Line 1(A),Section B; Name of contractor; Name - Person,ACUTE CARE SURGERY MEDICAL GROUP IN,CntrctrCmpnstn.CntrctrNm_PrsnNm,/IRS990/ContractorCompensationGrp/ContractorName/PersonNm,True,CntrctrCmpnstn,2
201533089349301428,IRS990,Part VII Section B; Part VII Section B Line 1(A),Section B; Address of contractor; Address - US; Address line 1,PO BOX 1528,CntrctrCmpnstn.USAddrss_AddrssLn1Txt,/IRS990/ContractorCompensationGrp/ContractorAddress/USAddress/AddressLine1Txt,True,CntrctrCmpnstn,2
201533089349301428,IRS990,Part VII Section B; Part VII Section B Line 1(A),Section B; Address of contractor; Address - US; City,SACRAMENTO,CntrctrCmpnstn.USAddrss_CtyNm,/IRS990/ContractorCompensationGrp/ContractorAddress/USAddress/CityNm,True,CntrctrCmpnstn,2
201533089349301428,IRS990,Part VII Section B; Part VII Section B Line 1(A),Section B; Address of contractor; Address - US; State,CA,CntrctrCmpnstn.USAddrss_SttAbbrvtnCd,/IRS990/ContractorCompensationGrp/ContractorAddress/USAddress/StateAbbreviationCd,True,CntrctrCmpnstn,2
201533089349301428,IRS990,Part VII Section B; Part VII Section B Line 1(A),Section B; Address of contractor; Address - US; ZIP code,95812,CntrctrCmpnstn.USAddrss_ZIPCd,/IRS990/ContractorCompensationGrp/ContractorAddress/USAddress/ZIPCd,True,CntrctrCmpnstn,2
201533089349301428,IRS990,Part VII Section B; Part VII Section B Line 1(B),Section B; Description of services,MEDICAL SERVICES,CntrctrCmpnstn.CntrctrCmpnstn_SrvcsDsc,/IRS990/ContractorCompensationGrp/ServicesDesc,True,CntrctrCmpnstn,2
201533089349301428,IRS990,Part VII Section B; Part VII Section B Line 1(C),Section B; Compensation,4947754,CntrctrCmpnstn.CntrctrCmpnstn_CmpnstnAmt,/IRS990/ContractorCompensationGrp/CompensationAmt,True,CntrctrCmpnstn,2
201533089349301428,IRS990,Part VII Section B; Part VII Section B Line 1(A),Section B; Name of contractor; Name - Person,UNGER CONSTRUCTION COMPANY,CntrctrCmpnstn.CntrctrNm_PrsnNm,/IRS990/ContractorCompensationGrp/ContractorName/PersonNm,True,CntrctrCmpnstn,3
201533089349301428,IRS990,Part VII Section B; Part VII Section B Line 1(A),Section B; Address of contractor; Address - US; Address line 1,910 X STREET,CntrctrCmpnstn.USAddrss_AddrssLn1Txt,/IRS990/ContractorCompensationGrp/ContractorAddress/USAddress/AddressLine1Txt,True,CntrctrCmpnstn,3
201533089349301428,IRS990,Part VII Section B; Part VII Section B Line 1(A),Section B; Address of contractor; Address - US; City,SACRAMENTO,CntrctrCmpnstn.USAddrss_CtyNm,/IRS990/ContractorCompensationGrp/ContractorAddress/USAddress/CityNm,True,CntrctrCmpnstn,3
201533089349301428,IRS990,Part VII Section B; Part VII Section B Line 1(A),Section B; Address of contractor; Address - US; State,CA,CntrctrCmpnstn.USAddrss_SttAbbrvtnCd,/IRS990/ContractorCompensationGrp/ContractorAddress/USAddress/StateAbbreviationCd,True,CntrctrCmpnstn,3
201533089349301428,IRS990,Part VII Section B; Part VII Section B Line 1(A),Section B; Address of contractor; Address - US; ZIP code,95818,CntrctrCmpnstn.USAddrss_ZIPCd,/IRS990/ContractorCompensationGrp/ContractorAddress/USAddress/ZIPCd,True,CntrctrCmpnstn,3
201533089349301428,IRS990,Part VII Section B; Part VII Section B Line 1(B),Section B; Description of services,CONSTRUCTION,CntrctrCmpnstn.CntrctrCmpnstn_SrvcsDsc,/IRS990/ContractorCompensationGrp/ServicesDesc,True,CntrctrCmpnstn,3
201533089349301428,IRS990,Part VII Section B; Part VII Section B Line 1(C),Section B; Compensation,4643194,CntrctrCmpnstn.CntrctrCmpnstn_CmpnstnAmt,/IRS990/ContractorCompensationGrp/CompensationAmt,True,CntrctrCmpnstn,3
201533089349301428,IRS990,Part VII Section B; Part VII Section B Line 1(A),Section B; Name of contractor; Name - Person,DIAGNOSTIC PATHOLOGY MEDICAL GROUP,CntrctrCmpnstn.CntrctrNm_PrsnNm,/IRS990/ContractorCompensationGrp/ContractorName/PersonNm,True,CntrctrCmpnstn,4
201533089349301428,IRS990,Part VII Section B; Part VII Section B Line 1(A),Section B; Address of contractor; Address - US; Address line 1,3301 C ST STE 200E,CntrctrCmpnstn.USAddrss_AddrssLn1Txt,/IRS990/ContractorCompensationGrp/ContractorAddress/USAddress/AddressLine1Txt,True,CntrctrCmpnstn,4
201533089349301428,IRS990,Part VII Section B; Part VII Section B Line 1(A),Section B; Address of contractor; Address - US; City,SACRAMENTO,CntrctrCmpnstn.USAddrss_CtyNm,/IRS990/ContractorCompensationGrp/ContractorAddress/USAddress/CityNm,True,CntrctrCmpnstn,4
201533089349301428,IRS990,Part VII Section B; Part VII Section B Line 1(A),Section B; Address of contractor; Address - US; State,CA,CntrctrCmpnstn.USAddrss_SttAbbrvtnCd,/IRS990/ContractorCompensationGrp/ContractorAddress/USAddress/StateAbbreviationCd,True,CntrctrCmpnstn,4
201533089349301428,IRS990,Part VII Section B; Part VII Section B Line 1(A),Section B; Address of contractor; Address - US; ZIP code,95816,CntrctrCmpnstn.USAddrss_ZIPCd,/IRS990/ContractorCompensationGrp/ContractorAddress/USAddress/ZIPCd,True,CntrctrCmpnstn,4
201533089349301428,IRS990,Part VII Section B; Part VII Section B Line 1(B),Section B; Description of services,MEDICAL SERVICES,CntrctrCmpnstn.CntrctrCmpnstn_SrvcsDsc,/IRS990/ContractorCompensationGrp/ServicesDesc,True,CntrctrCmpnstn,4
201533089349301428,IRS990,Part VII Section B; Part VII Section B Line 1(C),Section B; Compensation,4594841,CntrctrCmpnstn.CntrctrCmpnstn_CmpnstnAmt,/IRS990/ContractorCompensationGrp/CompensationAmt,True,CntrctrCmpnstn,4
201533089349301428,IRS990,Part VII Section B Line 2,Number of contractors greater than $100K,167,part_vii.CntrctRcvdGrtrThn100KCnt,/IRS990/CntrctRcvdGreaterThan100KCnt,False,,
201533089349301428,IRS990,Part VIII Line 1c,Fundraising events,36703,part_viii.FndrsngAmt,/IRS990/FundraisingAmt,False,,
201533089349301428,IRS990,Part VIII Line 1d,Related organizations,6893842,part_viii.RltdOrgnztnsAmt,/IRS990/RelatedOrganizationsAmt,False,,
201533089349301428,IRS990,Part VIII Line 1e,Government grants (contributions),1542510,part_viii.GvrnmntGrntsAmt,/IRS990/GovernmentGrantsAmt,False,,
201533089349301428,IRS990,Part VIII Line 1f,"All other contributions, gifts, grants, and similar amounts not included in above",3465004,part_viii.AllOthrCntrbtnsAmt,/IRS990/AllOtherContributionsAmt,False,,
201533089349301428,IRS990,Part VIII Line 1g,Noncash contributions,70018,part_viii.NncshCntrbtnsAmt,/IRS990/NoncashContributionsAmt,False,,
201533089349301428,IRS990,Part VIII Line 1h Column (A),Total contributions,11938059,part_viii.TtlCntrbtnsAmt,/IRS990/TotalContributionsAmt,False,,
201533089349301428,IRS990,Part VIII Line 2a - 2e,Program service revenue: Enter miscellaneous description and entries; Description,PATIENT SERVICE REVENUE,PrgrmSrvcRvn.Dsc,/IRS990/ProgramServiceRevenueGrp/Desc,True,PrgrmSrvcRvn,0
201533089349301428,IRS990,Part VIII Line 2a - 2e; Part VIII,Program service revenue: Enter miscellaneous description and entries; Business code,621110,PrgrmSrvcRvn.BsnssCd,/IRS990/ProgramServiceRevenueGrp/BusinessCd,True,PrgrmSrvcRvn,0
201533089349301428,IRS990,Part VIII Line 2a - 2e; Part VIII Column (A),Program service revenue: Enter miscellaneous description and entries; Total revenue,1926941993,PrgrmSrvcRvn.TtlRvnClmnAmt,/IRS990/ProgramServiceRevenueGrp/TotalRevenueColumnAmt,True,PrgrmSrvcRvn,0
201533089349301428,IRS990,Part VIII Line 2a - 2e; Part VIII Column (B),Program service revenue: Enter miscellaneous description and entries; Related or exempt function revenue,1926941993,PrgrmSrvcRvn.RltdOrExmptFncIncmAmt,/IRS990/ProgramServiceRevenueGrp/RelatedOrExemptFuncIncomeAmt,True,PrgrmSrvcRvn,0
201533089349301428,IRS990,Part VIII Line 2a - 2e,Program service revenue: Enter miscellaneous description and entries; Description,RENTAL TO AFFILIATES,PrgrmSrvcRvn.Dsc,/IRS990/ProgramServiceRevenueGrp/Desc,True,PrgrmSrvcRvn,1
201533089349301428,IRS990,Part VIII Line 2a - 2e; Part VIII,Program service revenue: Enter miscellaneous description and entries; Business code,621110,PrgrmSrvcRvn.BsnssCd,/IRS990/ProgramServiceRevenueGrp/BusinessCd,True,PrgrmSrvcRvn,1
201533089349301428,IRS990,Part VIII Line 2a - 2e; Part VIII Column (A),Program service revenue: Enter miscellaneous description and entries; Total revenue,8353211,PrgrmSrvcRvn.TtlRvnClmnAmt,/IRS990/ProgramServiceRevenueGrp/TotalRevenueColumnAmt,True,PrgrmSrvcRvn,1
201533089349301428,IRS990,Part VIII Line 2a - 2e; Part VIII Column (B),Program service revenue: Enter miscellaneous description and entries; Related or exempt function revenue,8353211,PrgrmSrvcRvn.RltdOrExmptFncIncmAmt,/IRS990/ProgramServiceRevenueGrp/RelatedOrExemptFuncIncomeAmt,True,PrgrmSrvcRvn,1
201533089349301428,IRS990,Part VIII Line 2a - 2e,Program service revenue: Enter miscellaneous description and entries; Description,ROSEVILLE ENDOSCOPY,PrgrmSrvcRvn.Dsc,/IRS990/ProgramServiceRevenueGrp/Desc,True,PrgrmSrvcRvn,2
201533089349301428,IRS990,Part VIII Line 2a - 2e; Part VIII,Program service revenue: Enter miscellaneous description and entries; Business code,621110,PrgrmSrvcRvn.BsnssCd,/IRS990/ProgramServiceRevenueGrp/BusinessCd,True,PrgrmSrvcRvn,2
201533089349301428,IRS990,Part VIII Line 2a - 2e; Part VIII Column (A),Program service revenue: Enter miscellaneous description and entries; Total revenue,502491,PrgrmSrvcRvn.TtlRvnClmnAmt,/IRS990/ProgramServiceRevenueGrp/TotalRevenueColumnAmt,True,PrgrmSrvcRvn,2
201533089349301428,IRS990,Part VIII Line 2a - 2e; Part VIII Column (B),Program service revenue: Enter miscellaneous description and entries; Related or exempt function revenue,502491,PrgrmSrvcRvn.RltdOrExmptFncIncmAmt,/IRS990/ProgramServiceRevenueGrp/RelatedOrExemptFuncIncomeAmt,True,PrgrmSrvcRvn,2
201533089349301428,IRS990,Part VIII Line 2a - 2e,Program service revenue: Enter miscellaneous description and entries; Description,SUTTER AMADOR SURGERY,PrgrmSrvcRvn.Dsc,/IRS990/ProgramServiceRevenueGrp/Desc,True,PrgrmSrvcRvn,3
201533089349301428,IRS990,Part VIII Line 2a - 2e; Part VIII,Program service revenue: Enter miscellaneous description and entries; Business code,621110,PrgrmSrvcRvn.BsnssCd,/IRS990/ProgramServiceRevenueGrp/BusinessCd,True,PrgrmSrvcRvn,3
201533089349301428,IRS990,Part VIII Line 2a - 2e; Part VIII Column (A),Program service revenue: Enter miscellaneous description and entries; Total revenue,-14456,PrgrmSrvcRvn.TtlRvnClmnAmt,/IRS990/ProgramServiceRevenueGrp/TotalRevenueColumnAmt,True,PrgrmSrvcRvn,3
201533089349301428,IRS990,Part VIII Line 2a - 2e; Part VIII Column (B),Program service revenue: Enter miscellaneous description and entries; Related or exempt function revenue,-14456,PrgrmSrvcRvn.RltdOrExmptFncIncmAmt,/IRS990/ProgramServiceRevenueGrp/RelatedOrExemptFuncIncomeAmt,True,PrgrmSrvcRvn,3
201533089349301428,IRS990,Part VIII Line 2g,Program service revenue total,1935783239,part_viii.TtlPrgrmSrvcRvnAmt,/IRS990/TotalProgramServiceRevenueAmt,False,,
201533089349301428,IRS990,Part VIII Line 3; Part VIII Column (A),Investment income; Total revenue,591660,part_viii.InvstmntIncm_TtlRvnClmnAmt,/IRS990/InvestmentIncomeGrp/TotalRevenueColumnAmt,False,,
201533089349301428,IRS990,Part VIII Line 3; Part VIII Column (D),"Investment income; Excluded by section 512, 513, or 514: amount",591660,part_viii.InvstmntIncm_ExclsnAmt,/IRS990/InvestmentIncomeGrp/ExclusionAmt,False,,
201533089349301428,IRS990,Part VIII Line 4; Part VIII Column (A),Income from investment of bond proceeds; Total revenue,0,part_viii.IncmFrmInvstBndPrcds_TtlRvnClmnAmt,/IRS990/IncmFromInvestBondProceedsGrp/TotalRevenueColumnAmt,False,,
201533089349301428,IRS990,Part VIII Line 5; Part VIII Column (A),"Other revenue, royalties; Total revenue",0,part_viii.RyltsRvn_TtlRvnClmnAmt,/IRS990/RoyaltiesRevenueGrp/TotalRevenueColumnAmt,False,,
201533089349301428,IRS990,Part VIII Line 6a; Part VIII Column (i),"Other revenue, gross rents; Real amount",2142201,part_viii.GrssRnts_RlAmt,/IRS990/GrossRentsGrp/RealAmt,False,,
201533089349301428,IRS990,Part VIII Line 6b; Part VIII Column (i),"Other revenue, less rental expenses; Real amount",1209020,part_viii.LssRntlExpnss_RlAmt,/IRS990/LessRentalExpensesGrp/RealAmt,False,,
201533089349301428,IRS990,Part VIII Line 6c; Part VIII Column (i),"Other revenue, rental income or loss; Real amount",933181,part_viii.RntlIncmOrLss_RlAmt,/IRS990/RentalIncomeOrLossGrp/RealAmt,False,,
201533089349301428,IRS990,Part VIII Line 6c; Part VIII Column (ii),"Other revenue, rental income or loss; Amount",0,part_viii.RntlIncmOrLss_PrsnlAmt,/IRS990/RentalIncomeOrLossGrp/PersonalAmt,False,,
201533089349301428,IRS990,Part VIII Line 6d; Part VIII Column (A),"Other revenue, net rental income or loss; Total revenue",933181,part_viii.NtRntlIncmOrLss_TtlRvnClmnAmt,/IRS990/NetRentalIncomeOrLossGrp/TotalRevenueColumnAmt,False,,
201533089349301428,IRS990,Part VIII Line 6d; Part VIII Column (D),"Other revenue, net rental income or loss; Excluded by section 512, 513, or 514: amount",933181,part_viii.NtRntlIncmOrLss_ExclsnAmt,/IRS990/NetRentalIncomeOrLossGrp/ExclusionAmt,False,,
201533089349301428,IRS990,Part VIII Line 7a; Part VIII Column (ii),"Other revenue, gross amount of sales of assets other than inventory; Other amount",2921558,part_viii.GrssAmntSlsAssts_OthrAmt,/IRS990/GrossAmountSalesAssetsGrp/OtherAmt,False,,
201533089349301428,IRS990,Part VIII Line 7b; Part VIII Column (ii),"Other revenue, less cost or other basis and sales expenses; Other amount",31657,part_viii.LssCstOthBssSlsExpnss_OthrAmt,/IRS990/LessCostOthBasisSalesExpnssGrp/OtherAmt,False,,
201533089349301428,IRS990,Part VIII Line 7c; Part VIII Column (ii),"Other revenue, gain or loss; Other amount",2889901,part_viii.GnOrLss_OthrAmt,/IRS990/GainOrLossGrp/OtherAmt,False,,
201533089349301428,IRS990,Part VIII Line 7d; Part VIII Column (A),"Other revenue, Net gain or loss from investments. Combine Line 7c, columns (i) and (ii); Total revenue",2889901,part_viii.NtGnOrLssInvstmnts_TtlRvnClmnAmt,/IRS990/NetGainOrLossInvestmentsGrp/TotalRevenueColumnAmt,False,,
201533089349301428,IRS990,Part VIII Line 7d; Part VIII Column (D),"Other revenue, Net gain or loss from investments. Combine Line 7c, columns (i) and (ii); Excluded by section 512, 513, or 514: amount",2889901,part_viii.NtGnOrLssInvstmnts_ExclsnAmt,/IRS990/NetGainOrLossInvestmentsGrp/ExclusionAmt,False,,
201533089349301428,IRS990,Part VIII Line 8a,"Gross income from fundraising events, Line 8a box",25439,part_viii.FndrsngGrssIncmAmt,/IRS990/FundraisingGrossIncomeAmt,False,,
201533089349301428,IRS990,Part VIII Line 8a,"Contributions reported from fundraising events on line 1c, Line 8a underline",36703,part_viii.CntrRptFndrsngEvntAmt,/IRS990/ContriRptFundraisingEventAmt,False,,
201533089349301428,IRS990,Part VIII Line 8b,Direct expenses,17006,part_viii.FndrsngDrctExpnssAmt,/IRS990/FundraisingDirectExpensesAmt,False,,
201533089349301428,IRS990,Part VIII Line 8c; Part VIII Column (A),Net income from fundraising events; Total revenue,8433,part_viii.NtIncmFrmFndrsngEvt_TtlRvnClmnAmt,/IRS990/NetIncmFromFundraisingEvtGrp/TotalRevenueColumnAmt,False,,
201533089349301428,IRS990,Part VIII Line 8c; Part VIII Column (D),"Net income from fundraising events; Excluded by section 512, 513, or 514: amount",8433,part_viii.NtIncmFrmFndrsngEvt_ExclsnAmt,/IRS990/NetIncmFromFundraisingEvtGrp/ExclusionAmt,False,,
201533089349301428,IRS990,Part VIII Line 9a,Gross income from gaming,4033,part_viii.GmngGrssIncmAmt,/IRS990/GamingGrossIncomeAmt,False,,
201533089349301428,IRS990,Part VIII Line 9c; Part VIII Column (A),Net income from gaming; Total revenue,4033,part_viii.NtIncmFrmGmng_TtlRvnClmnAmt,/IRS990/NetIncomeFromGamingGrp/TotalRevenueColumnAmt,False,,
201533089349301428,IRS990,Part VIII Line 9c; Part VIII Column (D),"Net income from gaming; Excluded by section 512, 513, or 514: amount",4033,part_viii.NtIncmFrmGmng_ExclsnAmt,/IRS990/NetIncomeFromGamingGrp/ExclusionAmt,False,,
201533089349301428,IRS990,Part VIII Line 10c; Part VIII Column (A),Net income or loss from sales of inventory; Total revenue,0,part_viii.NtIncmOrLss_TtlRvnClmnAmt,/IRS990/NetIncomeOrLossGrp/TotalRevenueColumnAmt,False,,
201533089349301428,IRS990,Part VIII Line 11a 11b 11c,Other revenue; Description,UBI - LABORATORY,OthrRvnMsc.Dsc,/IRS990/OtherRevenueMiscGrp/Desc,True,OthrRvnMsc,0
201533089349301428,IRS990,Part VIII Line 11a 11b 11c; Part VIII,Other revenue; Business code,621500,OthrRvnMsc.BsnssCd,/IRS990/OtherRevenueMiscGrp/BusinessCd,True,OthrRvnMsc,0
201533089349301428,IRS990,Part VIII Line 11a 11b 11c; Part VIII Column (A),Other revenue; Total revenue,2188865,OthrRvnMsc.TtlRvnClmnAmt,/IRS990/OtherRevenueMiscGrp/TotalRevenueColumnAmt,True,OthrRvnMsc,0
201533089349301428,IRS990,Part VIII Line 11a 11b 11c; Part VIII Column (C),Other revenue; Unrelated business revenue,2188865,OthrRvnMsc.UnrltdBsnssRvnAmt,/IRS990/OtherRevenueMiscGrp/UnrelatedBusinessRevenueAmt,True,OthrRvnMsc,0
201533089349301428,IRS990,Part VIII Line 11a 11b 11c,Other revenue; Description,UBI - PARKING,OthrRvnMsc.Dsc,/IRS990/OtherRevenueMiscGrp/Desc,True,OthrRvnMsc,1
201533089349301428,IRS990,Part VIII Line 11a 11b 11c; Part VIII,Other revenue; Business code,812930,OthrRvnMsc.BsnssCd,/IRS990/OtherRevenueMiscGrp/BusinessCd,True,OthrRvnMsc,1
201533089349301428,IRS990,Part VIII Line 11a 11b 11c; Part VIII Column (A),Other revenue; Total revenue,199149,OthrRvnMsc.TtlRvnClmnAmt,/IRS990/OtherRevenueMiscGrp/TotalRevenueColumnAmt,True,OthrRvnMsc,1
201533089349301428,IRS990,Part VIII Line 11a 11b 11c; Part VIII Column (C),Other revenue; Unrelated business revenue,199149,OthrRvnMsc.UnrltdBsnssRvnAmt,/IRS990/OtherRevenueMiscGrp/UnrelatedBusinessRevenueAmt,True,OthrRvnMsc,1
201533089349301428,IRS990,Part VIII Line 11a 11b 11c,Other revenue; Description,UBI - PHARMACY,OthrRvnMsc.Dsc,/IRS990/OtherRevenueMiscGrp/Desc,True,OthrRvnMsc,2
201533089349301428,IRS990,Part VIII Line 11a 11b 11c; Part VIII,Other revenue; Business code,446110,OthrRvnMsc.BsnssCd,/IRS990/OtherRevenueMiscGrp/BusinessCd,True,OthrRvnMsc,2
201533089349301428,IRS990,Part VIII Line 11a 11b 11c; Part VIII Column (A),Other revenue; Total revenue,69,OthrRvnMsc.TtlRvnClmnAmt,/IRS990/OtherRevenueMiscGrp/TotalRevenueColumnAmt,True,OthrRvnMsc,2
201533089349301428,IRS990,Part VIII Line 11a 11b 11c; Part VIII Column (C),Other revenue; Unrelated business revenue,69,OthrRvnMsc.UnrltdBsnssRvnAmt,/IRS990/OtherRevenueMiscGrp/UnrelatedBusinessRevenueAmt,True,OthrRvnMsc,2
201533089349301428,IRS990,Part VIII Line 11d; Part VIII Column (A),Other miscellaneous revenue; Total revenue,218626,part_viii.MscRvn_TtlRvnClmnAmt,/IRS990/MiscellaneousRevenueGrp/TotalRevenueColumnAmt,False,,
201533089349301428,IRS990,Part VIII Line 11d; Part VIII Column (C),Other miscellaneous revenue; Unrelated business revenue,218626,part_viii.MscRvn_UnrltdBsnssRvnAmt,/IRS990/MiscellaneousRevenueGrp/UnrelatedBusinessRevenueAmt,False,,
201533089349301428,IRS990,Part VIII Line 11e,Other miscellaneous revenue total,2606709,part_viii.OthrRvnTtlAmt,/IRS990/OtherRevenueTotalAmt,False,,
201533089349301428,IRS990,Part VIII Line 12; Part VIII Column (A),Total Revenue; Total revenue,1954755215,part_viii.TtlRvn_TtlRvnClmnAmt,/IRS990/TotalRevenueGrp/TotalRevenueColumnAmt,False,,
201533089349301428,IRS990,Part VIII Line 12; Part VIII Column (B),Total Revenue; Related or exempt function revenue,1935783239,part_viii.TtlRvn_RltdOrExmptFncIncmAmt,/IRS990/TotalRevenueGrp/RelatedOrExemptFuncIncomeAmt,False,,
201533089349301428,IRS990,Part VIII Line 12; Part VIII Column (C),Total Revenue; Unrelated business revenue,2606709,part_viii.TtlRvn_UnrltdBsnssRvnAmt,/IRS990/TotalRevenueGrp/UnrelatedBusinessRevenueAmt,False,,
201533089349301428,IRS990,Part VIII Line 12; Part VIII Column (D),"Total Revenue; Excluded by section 512, 513, or 514: amount",4427208,part_viii.TtlRvn_ExclsnAmt,/IRS990/TotalRevenueGrp/ExclusionAmt,False,,
201533089349301428,IRS990,Part IX Line 1; col (A),"Grants to governments and organizations in the U.S. Complete Parts I and III of Schedule I if total exceeds $5,000; Total",4149472,part_ix.GrntsTDmstcOrgs_TtlAmt,/IRS990/GrantsToDomesticOrgsGrp/TotalAmt,False,,
201533089349301428,IRS990,Part IX Line 1; col (B),"Grants to governments and organizations in the U.S. Complete Parts I and III of Schedule I if total exceeds $5,000; Program services",4149472,part_ix.GrntsTDmstcOrgs_PrgrmSrvcsAmt,/IRS990/GrantsToDomesticOrgsGrp/ProgramServicesAmt,False,,
201533089349301428,IRS990,Part IX Line 2; col (A),"Grants and other assistance to individuals in the U.S. Complete Parts II and III of Schedule I if total exceeds $5,000; Total",0,part_ix.GrntsTDmstcIndvdls_TtlAmt,/IRS990/GrantsToDomesticIndividualsGrp/TotalAmt,False,,
201533089349301428,IRS990,Part IX Line 3; col (A),"Grants and other assistance to governments, organizations and individuals outside the U.S.; Total",0,part_ix.FrgnGrnts_TtlAmt,/IRS990/ForeignGrantsGrp/TotalAmt,False,,
201533089349301428,IRS990,Part IX Line 4; col (A),Benefits paid to or for members; Total,0,part_ix.BnftsTMmbrs_TtlAmt,/IRS990/BenefitsToMembersGrp/TotalAmt,False,,
201533089349301428,IRS990,Part IX Line 5; col (A),"Compensation of current officers, directors, and key employees; Total",10020531,part_ix.CmpCrrntOfcrDrctrs_TtlAmt,/IRS990/CompCurrentOfcrDirectorsGrp/TotalAmt,False,,
201533089349301428,IRS990,Part IX Line 5; col (C),"Compensation of current officers, directors, and key employees; Management and general",10020531,part_ix.CmpCrrntOfcrDrctrs_MngmntAndGnrlAmt,/IRS990/CompCurrentOfcrDirectorsGrp/ManagementAndGeneralAmt,False,,
201533089349301428,IRS990,Part IX Line 6; col (A),Compensation and other distributions not included above to disqualified persons; Total,100312,part_ix.CmpDsqlPrsns_TtlAmt,/IRS990/CompDisqualPersonsGrp/TotalAmt,False,,
201533089349301428,IRS990,Part IX Line 6; col (B),Compensation and other distributions not included above to disqualified persons; Program services,100312,part_ix.CmpDsqlPrsns_PrgrmSrvcsAmt,/IRS990/CompDisqualPersonsGrp/ProgramServicesAmt,False,,
201533089349301428,IRS990,Part IX Line 7; col (A),Other salaries and wages; Total,593244619,part_ix.OthrSlrsAndWgs_TtlAmt,/IRS990/OtherSalariesAndWagesGrp/TotalAmt,False,,
201533089349301428,IRS990,Part IX Line 7; col (B),Other salaries and wages; Program services,534289384,part_ix.OthrSlrsAndWgs_PrgrmSrvcsAmt,/IRS990/OtherSalariesAndWagesGrp/ProgramServicesAmt,False,,
201533089349301428,IRS990,Part IX Line 7; col (C),Other salaries and wages; Management and general,58955235,part_ix.OthrSlrsAndWgs_MngmntAndGnrlAmt,/IRS990/OtherSalariesAndWagesGrp/ManagementAndGeneralAmt,False,,
201533089349301428,IRS990,Part IX Line 8; col (A),Pension plan contributions; Total,11684912,part_ix.PnsnPlnCntrbtns_TtlAmt,/IRS990/PensionPlanContributionsGrp/TotalAmt,False,,
201533089349301428,IRS990,Part IX Line 8; col (B),Pension plan contributions; Program services,10349112,part_ix.PnsnPlnCntrbtns_PrgrmSrvcsAmt,/IRS990/PensionPlanContributionsGrp/ProgramServicesAmt,False,,
201533089349301428,IRS990,Part IX Line 8; col (C),Pension plan contributions; Management and general,1335800,part_ix.PnsnPlnCntrbtns_MngmntAndGnrlAmt,/IRS990/PensionPlanContributionsGrp/ManagementAndGeneralAmt,False,,
201533089349301428,IRS990,Part IX Line 9; col (A),Other employee benefits; Total,222669256,part_ix.OthrEmplyBnfts_TtlAmt,/IRS990/OtherEmployeeBenefitsGrp/TotalAmt,False,,
201533089349301428,IRS990,Part IX Line 9; col (B),Other employee benefits; Program services,197214066,part_ix.OthrEmplyBnfts_PrgrmSrvcsAmt,/IRS990/OtherEmployeeBenefitsGrp/ProgramServicesAmt,False,,
201533089349301428,IRS990,Part IX Line 9; col (C),Other employee benefits; Management and general,25455190,part_ix.OthrEmplyBnfts_MngmntAndGnrlAmt,/IRS990/OtherEmployeeBenefitsGrp/ManagementAndGeneralAmt,False,,
201533089349301428,IRS990,Part IX Line 10; col (A),Payroll taxes; Total,51706667,part_ix.PyrllTxs_TtlAmt,/IRS990/PayrollTaxesGrp/TotalAmt,False,,
201533089349301428,IRS990,Part IX Line 10; col (B),Payroll taxes; Program services,45795644,part_ix.PyrllTxs_PrgrmSrvcsAmt,/IRS990/PayrollTaxesGrp/ProgramServicesAmt,False,,
201533089349301428,IRS990,Part IX Line 10; col (C),Payroll taxes; Management and general,5911023,part_ix.PyrllTxs_MngmntAndGnrlAmt,/IRS990/PayrollTaxesGrp/ManagementAndGeneralAmt,False,,
201533089349301428,IRS990,Part IX Line 11a; col (A),Fees for services (non-employees): Management; Total,5782808,part_ix.FsFrSrvcsMngmnt_TtlAmt,/IRS990/FeesForServicesManagementGrp/TotalAmt,False,,
201533089349301428,IRS990,Part IX Line 11a; col (C),Fees for services (non-employees): Management; Management and general,5782808,part_ix.FsFrSrvcsMngmnt_MngmntAndGnrlAmt,/IRS990/FeesForServicesManagementGrp/ManagementAndGeneralAmt,False,,
201533089349301428,IRS990,Part IX Line 11b; col (A),Fees for services (non-employees): Legal; Total,3458761,part_ix.FsFrSrvcsLgl_TtlAmt,/IRS990/FeesForServicesLegalGrp/TotalAmt,False,,
201533089349301428,IRS990,Part IX Line 11b; col (B),Fees for services (non-employees): Legal; Program services,3458761,part_ix.FsFrSrvcsLgl_PrgrmSrvcsAmt,/IRS990/FeesForServicesLegalGrp/ProgramServicesAmt,False,,
201533089349301428,IRS990,Part IX Line 11c; col (A),Fees for services (non-employees): accounting; Total,6399,part_ix.FsFrSrvcsAccntng_TtlAmt,/IRS990/FeesForServicesAccountingGrp/TotalAmt,False,,
201533089349301428,IRS990,Part IX Line 11c; col (C),Fees for services (non-employees): accounting; Management and general,6399,part_ix.FsFrSrvcsAccntng_MngmntAndGnrlAmt,/IRS990/FeesForServicesAccountingGrp/ManagementAndGeneralAmt,False,,
201533089349301428,IRS990,Part IX Line 11d; col (A),Fees for services (non-employees): Lobbying; Total,29560,part_ix.FsFrSrvcsLbbyng_TtlAmt,/IRS990/FeesForServicesLobbyingGrp/TotalAmt,False,,
201533089349301428,IRS990,Part IX Line 11d; col (C),Fees for services (non-employees): Lobbying; Management and general,29560,part_ix.FsFrSrvcsLbbyng_MngmntAndGnrlAmt,/IRS990/FeesForServicesLobbyingGrp/ManagementAndGeneralAmt,False,,
201533089349301428,IRS990,Part IX Line 11e; col (A),Fees for services (non-employees): Professional fundraising; Total,0,part_ix.FsFrSrvcsPrfFndrsng_TtlAmt,/IRS990/FeesForServicesProfFundraising/TotalAmt,False,,
201533089349301428,IRS990,Part IX Line 11f; col (A),Fees for services (non-employees): Investment management fees; Total,268017,part_ix.FsFrSrvcInvstMgmntFs_TtlAmt,/IRS990/FeesForSrvcInvstMgmntFeesGrp/TotalAmt,False,,
201533089349301428,IRS990,Part IX Line 11f; col (C),Fees for services (non-employees): Investment management fees; Management and general,268017,part_ix.FsFrSrvcInvstMgmntFs_MngmntAndGnrlAmt,/IRS990/FeesForSrvcInvstMgmntFeesGrp/ManagementAndGeneralAmt,False,,
201533089349301428,IRS990,Part IX Line 11g; col (A),Fees for services (non-employees): Other; Total,81378293,part_ix.FsFrSrvcsOthr_TtlAmt,/IRS990/FeesForServicesOtherGrp/TotalAmt,False,,
201533089349301428,IRS990,Part IX Line 11g; col (B),Fees for services (non-employees): Other; Program services,78279153,part_ix.FsFrSrvcsOthr_PrgrmSrvcsAmt,/IRS990/FeesForServicesOtherGrp/ProgramServicesAmt,False,,
201533089349301428,IRS990,Part IX Line 11g; col (C),Fees for services (non-employees): Other; Management and general,3099140,part_ix.FsFrSrvcsOthr_MngmntAndGnrlAmt,/IRS990/FeesForServicesOtherGrp/ManagementAndGeneralAmt,False,,
201533089349301428,IRS990,Part IX Line 12; col (A),Advertising; Total,1324629,part_ix.Advrtsng_TtlAmt,/IRS990/AdvertisingGrp/TotalAmt,False,,
201533089349301428,IRS990,Part IX Line 12; col (B),Advertising; Program services,6687,part_ix.Advrtsng_PrgrmSrvcsAmt,/IRS990/AdvertisingGrp/ProgramServicesAmt,False,,
201533089349301428,IRS990,Part IX Line 12; col (C),Advertising; Management and general,1317942,part_ix.Advrtsng_MngmntAndGnrlAmt,/IRS990/AdvertisingGrp/ManagementAndGeneralAmt,False,,
201533089349301428,IRS990,Part IX Line 13; col (A),Office expenses; Total,24527642,part_ix.OffcExpnss_TtlAmt,/IRS990/OfficeExpensesGrp/TotalAmt,False,,
201533089349301428,IRS990,Part IX Line 13; col (B),Office expenses; Program services,11358605,part_ix.OffcExpnss_PrgrmSrvcsAmt,/IRS990/OfficeExpensesGrp/ProgramServicesAmt,False,,
201533089349301428,IRS990,Part IX Line 13; col (C),Office expenses; Management and general,13169037,part_ix.OffcExpnss_MngmntAndGnrlAmt,/IRS990/OfficeExpensesGrp/ManagementAndGeneralAmt,False,,
201533089349301428,IRS990,Part IX Line 14; col (A),Information technology; Total,32475736,part_ix.InfrmtnTchnlgy_TtlAmt,/IRS990/InformationTechnologyGrp/TotalAmt,False,,
201533089349301428,IRS990,Part IX Line 14; col (B),Information technology; Program services,27961372,part_ix.InfrmtnTchnlgy_PrgrmSrvcsAmt,/IRS990/InformationTechnologyGrp/ProgramServicesAmt,False,,
201533089349301428,IRS990,Part IX Line 14; col (C),Information technology; Management and general,4514364,part_ix.InfrmtnTchnlgy_MngmntAndGnrlAmt,/IRS990/InformationTechnologyGrp/ManagementAndGeneralAmt,False,,
201533089349301428,IRS990,Part IX Line 15; col (A),Royalties; Total,0,part_ix.Rylts_TtlAmt,/IRS990/RoyaltiesGrp/TotalAmt,False,,
201533089349301428,IRS990,Part IX Line 16; col (A),Occupancy; Total,24618866,part_ix.Occpncy_TtlAmt,/IRS990/OccupancyGrp/TotalAmt,False,,
201533089349301428,IRS990,Part IX Line 16; col (B),Occupancy; Program services,24618866,part_ix.Occpncy_PrgrmSrvcsAmt,/IRS990/OccupancyGrp/ProgramServicesAmt,False,,
201533089349301428,IRS990,Part IX Line 17; col (A),Travel; Total,1609223,part_ix.Trvl_TtlAmt,/IRS990/TravelGrp/TotalAmt,False,,
201533089349301428,IRS990,Part IX Line 17; col (B),Travel; Program services,1311026,part_ix.Trvl_PrgrmSrvcsAmt,/IRS990/TravelGrp/ProgramServicesAmt,False,,
201533089349301428,IRS990,Part IX Line 17; col (C),Travel; Management and general,298197,part_ix.Trvl_MngmntAndGnrlAmt,/IRS990/TravelGrp/ManagementAndGeneralAmt,False,,
201533089349301428,IRS990,Part IX Line 18; col (A),"Payments of travel or entertainment expenses for any Federal, state or local public officials; Total",0,part_ix.PymtTrvlEntrtnmntPbOfcl_TtlAmt,/IRS990/PymtTravelEntrtnmntPubOfclGrp/TotalAmt,False,,
201533089349301428,IRS990,Part IX Line 19; col (A),"Conferences, conventions and meetings; Total",1040932,part_ix.CnfrncsMtngs_TtlAmt,/IRS990/ConferencesMeetingsGrp/TotalAmt,False,,
201533089349301428,IRS990,Part IX Line 19; col (B),"Conferences, conventions and meetings; Program services",751288,part_ix.CnfrncsMtngs_PrgrmSrvcsAmt,/IRS990/ConferencesMeetingsGrp/ProgramServicesAmt,False,,
201533089349301428,IRS990,Part IX Line 19; col (C),"Conferences, conventions and meetings; Management and general",289644,part_ix.CnfrncsMtngs_MngmntAndGnrlAmt,/IRS990/ConferencesMeetingsGrp/ManagementAndGeneralAmt,False,,
201533089349301428,IRS990,Part IX Line 20; col (A),Interest; Total,16562085,part_ix.Intrst_TtlAmt,/IRS990/InterestGrp/TotalAmt,False,,
201533089349301428,IRS990,Part IX Line 20; col (B),Interest; Program services,16562085,part_ix.Intrst_PrgrmSrvcsAmt,/IRS990/InterestGrp/ProgramServicesAmt,False,,
201533089349301428,IRS990,Part IX Line 21; col (A),Payments to affiliates; Total,0,part_ix.PymntsTAfflts_TtlAmt,/IRS990/PaymentsToAffiliatesGrp/TotalAmt,False,,
201533089349301428,IRS990,Part IX Line 22; col (A),"Depreciation, depletion, and amortization; Total",67345271,part_ix.DprctnDpltn_TtlAmt,/IRS990/DepreciationDepletionGrp/TotalAmt,False,,
201533089349301428,IRS990,Part IX Line 22; col (B),"Depreciation, depletion, and amortization; Program services",67345271,part_ix.DprctnDpltn_PrgrmSrvcsAmt,/IRS990/DepreciationDepletionGrp/ProgramServicesAmt,False,,
201533089349301428,IRS990,Part IX Line 23; col (A),Insurance; Total,13646558,part_ix.Insrnc_TtlAmt,/IRS990/InsuranceGrp/TotalAmt,False,,
201533089349301428,IRS990,Part IX Line 23; col (B),Insurance; Program services,11440905,part_ix.Insrnc_PrgrmSrvcsAmt,/IRS990/InsuranceGrp/ProgramServicesAmt,False,,
201533089349301428,IRS990,Part IX Line 23; col (C),Insurance; Management and general,2205653,part_ix.Insrnc_MngmntAndGnrlAmt,/IRS990/InsuranceGrp/ManagementAndGeneralAmt,False,,
201533089349301428,IRS990,Part IX Line 24a - 24d,Other expenses; Description,MEDICAL SUPPLIES,OthrExpnss.Dsc,/IRS990/OtherExpensesGrp/Desc,True,OthrExpnss,0
201533089349301428,IRS990,Part IX Line 24a - 24d; col (A),Other expenses; Total,264515706,OthrExpnss.TtlAmt,/IRS990/OtherExpensesGrp/TotalAmt,True,OthrExpnss,0
201533089349301428,IRS990,Part IX Line 24a - 24d; col (B),Other expenses; Program services,264515706,OthrExpnss.PrgrmSrvcsAmt,/IRS990/OtherExpensesGrp/ProgramServicesAmt,True,OthrExpnss,0
201533089349301428,IRS990,Part IX Line 24a - 24d,Other expenses; Description,PURCHASED SERVICES,OthrExpnss.Dsc,/IRS990/OtherExpensesGrp/Desc,True,OthrExpnss,1
201533089349301428,IRS990,Part IX Line 24a - 24d; col (A),Other expenses; Total,150045693,OthrExpnss.TtlAmt,/IRS990/OtherExpensesGrp/TotalAmt,True,OthrExpnss,1
201533089349301428,IRS990,Part IX Line 24a - 24d; col (B),Other expenses; Program services,144443720,OthrExpnss.PrgrmSrvcsAmt,/IRS990/OtherExpensesGrp/ProgramServicesAmt,True,OthrExpnss,1
201533089349301428,IRS990,Part IX Line 24a - 24d; col (C),Other expenses; Management and general,5601973,OthrExpnss.MngmntAndGnrlAmt,/IRS990/OtherExpensesGrp/ManagementAndGeneralAmt,True,OthrExpnss,1
201533089349301428,IRS990,Part IX Line 24a - 24d,Other expenses; Description,HOSPITAL PROVIDER FEES,OthrExpnss.Dsc,/IRS990/OtherExpensesGrp/Desc,True,OthrExpnss,2
201533089349301428,IRS990,Part IX Line 24a - 24d; col (A),Other expenses; Total,69699877,OthrExpnss.TtlAmt,/IRS990/OtherExpensesGrp/TotalAmt,True,OthrExpnss,2
201533089349301428,IRS990,Part IX Line 24a - 24d; col (B),Other expenses; Program services,69699877,OthrExpnss.PrgrmSrvcsAmt,/IRS990/OtherExpensesGrp/ProgramServicesAmt,True,OthrExpnss,2
201533089349301428,IRS990,Part IX Line 24a - 24d,Other expenses; Description,CAPITATED PURCHASED SERVICES,OthrExpnss.Dsc,/IRS990/OtherExpensesGrp/Desc,True,OthrExpnss,3
201533089349301428,IRS990,Part IX Line 24a - 24d; col (A),Other expenses; Total,55233378,OthrExpnss.TtlAmt,/IRS990/OtherExpensesGrp/TotalAmt,True,OthrExpnss,3
201533089349301428,IRS990,Part IX Line 24a - 24d; col (B),Other expenses; Program services,55233378,OthrExpnss.PrgrmSrvcsAmt,/IRS990/OtherExpensesGrp/ProgramServicesAmt,True,OthrExpnss,3
201533089349301428,IRS990,Part IX Line 24e; col (A),All other expenses; Total,57989330,part_ix.AllOthrExpnss_TtlAmt,/IRS990/AllOtherExpensesGrp/TotalAmt,False,,
201533089349301428,IRS990,Part IX Line 24e; col (B),All other expenses; Program services,39772165,part_ix.AllOthrExpnss_PrgrmSrvcsAmt,/IRS990/AllOtherExpensesGrp/ProgramServicesAmt,False,,
201533089349301428,IRS990,Part IX Line 24e; col (C),All other expenses; Management and general,18217165,part_ix.AllOthrExpnss_MngmntAndGnrlAmt,/IRS990/AllOtherExpensesGrp/ManagementAndGeneralAmt,False,,
201533089349301428,IRS990,Part IX Line 25; col (A),Total functional expenses; Total,1765134533,part_ix.TtlFnctnlExpnss_TtlAmt,/IRS990/TotalFunctionalExpensesGrp/TotalAmt,False,,
201533089349301428,IRS990,Part IX Line 25; col (B),Total functional expenses; Program services,1608656855,part_ix.TtlFnctnlExpnss_PrgrmSrvcsAmt,/IRS990/TotalFunctionalExpensesGrp/ProgramServicesAmt,False,,
201533089349301428,IRS990,Part IX Line 25; col (C),Total functional expenses; Management and general,156477678,part_ix.TtlFnctnlExpnss_MngmntAndGnrlAmt,/IRS990/TotalFunctionalExpensesGrp/ManagementAndGeneralAmt,False,,
201533089349301428,IRS990,Part IX Line 25; col (D),Total functional expenses; Fundraising,0,part_ix.TtlFnctnlExpnss_FndrsngAmt,/IRS990/TotalFunctionalExpensesGrp/FundraisingAmt,False,,
201533089349301428,IRS990,Part X Line 1; Part X Column (A),Cash - Non interest bearing; Beginnning of year,0,part_x.CshNnIntrstBrng_BOYAmt,/IRS990/CashNonInterestBearingGrp/BOYAmt,False,,
201533089349301428,IRS990,Part X Line 1; Part X Column (B),Cash - Non interest bearing; Ending of year,0,part_x.CshNnIntrstBrng_EOYAmt,/IRS990/CashNonInterestBearingGrp/EOYAmt,False,,
201533089349301428,IRS990,Part X Line 2; Part X Column (A),Savings and temporary cash investments; Beginnning of year,69889638,part_x.SvngsAndTmpCshInvst_BOYAmt,/IRS990/SavingsAndTempCashInvstGrp/BOYAmt,False,,
201533089349301428,IRS990,Part X Line 2; Part X Column (B),Savings and temporary cash investments; Ending of year,83587028,part_x.SvngsAndTmpCshInvst_EOYAmt,/IRS990/SavingsAndTempCashInvstGrp/EOYAmt,False,,
201533089349301428,IRS990,Part X Line 3; Part X Column (A),"Pledges and grants receivable, net; Beginnning of year",141201,part_x.PldgsAndGrntsRcvbl_BOYAmt,/IRS990/PledgesAndGrantsReceivableGrp/BOYAmt,False,,
201533089349301428,IRS990,Part X Line 3; Part X Column (B),"Pledges and grants receivable, net; Ending of year",75869,part_x.PldgsAndGrntsRcvbl_EOYAmt,/IRS990/PledgesAndGrantsReceivableGrp/EOYAmt,False,,
201533089349301428,IRS990,Part X Line 4; Part X Column (A),"Accounts receivable, net; Beginnning of year",277199156,part_x.AccntsRcvbl_BOYAmt,/IRS990/AccountsReceivableGrp/BOYAmt,False,,
201533089349301428,IRS990,Part X Line 4; Part X Column (B),"Accounts receivable, net; Ending of year",270450987,part_x.AccntsRcvbl_EOYAmt,/IRS990/AccountsReceivableGrp/EOYAmt,False,,
201533089349301428,IRS990,Part X Line 5; Part X Column (A),"Receivables from Officers, etc.; Beginnning of year",0,part_x.RcvblsFrmOffcrsEtc_BOYAmt,/IRS990/ReceivablesFromOfficersEtcGrp/BOYAmt,False,,
201533089349301428,IRS990,Part X Line 5; Part X Column (B),"Receivables from Officers, etc.; Ending of year",0,part_x.RcvblsFrmOffcrsEtc_EOYAmt,/IRS990/ReceivablesFromOfficersEtcGrp/EOYAmt,False,,
201533089349301428,IRS990,Part X Line 6; Part X Column (A),Receivables from other disqualified persons; Beginnning of year,0,part_x.RcvblFrmDsqlfdPrsn_BOYAmt,/IRS990/RcvblFromDisqualifiedPrsnGrp/BOYAmt,False,,
201533089349301428,IRS990,Part X Line 6; Part X Column (B),Receivables from other disqualified persons; Ending of year,0,part_x.RcvblFrmDsqlfdPrsn_EOYAmt,/IRS990/RcvblFromDisqualifiedPrsnGrp/EOYAmt,False,,
201533089349301428,IRS990,Part X Line 7; Part X Column (A),Other notes and loans receivable net; Beginnning of year,0,part_x.OthNtsLnsRcvblNt_BOYAmt,/IRS990/OthNotesLoansReceivableNetGrp/BOYAmt,False,,
201533089349301428,IRS990,Part X Line 7; Part X Column (B),Other notes and loans receivable net; Ending of year,0,part_x.OthNtsLnsRcvblNt_EOYAmt,/IRS990/OthNotesLoansReceivableNetGrp/EOYAmt,False,,
201533089349301428,IRS990,Part X Line 8; Part X Column (A),Inventories for sale or use; Beginnning of year,25513499,part_x.InvntrsFrSlOrUs_BOYAmt,/IRS990/InventoriesForSaleOrUseGrp/BOYAmt,False,,
201533089349301428,IRS990,Part X Line 8; Part X Column (B),Inventories for sale or use; Ending of year,26151250,part_x.InvntrsFrSlOrUs_EOYAmt,/IRS990/InventoriesForSaleOrUseGrp/EOYAmt,False,,
201533089349301428,IRS990,Part X Line 9; Part X Column (A),Prepaid expenses and deferred charges; Beginnning of year,4388831,part_x.PrpdExpnssDfrdChrgs_BOYAmt,/IRS990/PrepaidExpensesDefrdChargesGrp/BOYAmt,False,,
201533089349301428,IRS990,Part X Line 9; Part X Column (B),Prepaid expenses and deferred charges; Ending of year,11072282,part_x.PrpdExpnssDfrdChrgs_EOYAmt,/IRS990/PrepaidExpensesDefrdChargesGrp/EOYAmt,False,,
201533089349301428,IRS990,Part X Line 10a,"Land, buildings, and equipment basis",2151576783,part_x.LndBldgEqpCstOrOthrBssAmt,/IRS990/LandBldgEquipCostOrOtherBssAmt,False,,
201533089349301428,IRS990,Part X Line 10b,Less: accumulated depreciation,861243413,part_x.LndBldgEqpAccmDprcAmt,/IRS990/LandBldgEquipAccumDeprecAmt,False,,
201533089349301428,IRS990,Part X Line 10c; Part X Column (A),"Land, buildings, and equipment basis net; Beginnning of year",1247300940,part_x.LndBldgEqpBssNt_BOYAmt,/IRS990/LandBldgEquipBasisNetGrp/BOYAmt,False,,
201533089349301428,IRS990,Part X Line 10c; Part X Column (B),"Land, buildings, and equipment basis net; Ending of year",1290333370,part_x.LndBldgEqpBssNt_EOYAmt,/IRS990/LandBldgEquipBasisNetGrp/EOYAmt,False,,
201533089349301428,IRS990,Part X Line 11; Part X Column (A),Investments publicly traded securities; Beginnning of year,62341837,part_x.InvstmntsPbTrddSc_BOYAmt,/IRS990/InvestmentsPubTradedSecGrp/BOYAmt,False,,
201533089349301428,IRS990,Part X Line 11; Part X Column (B),Investments publicly traded securities; Ending of year,27042041,part_x.InvstmntsPbTrddSc_EOYAmt,/IRS990/InvestmentsPubTradedSecGrp/EOYAmt,False,,
201533089349301428,IRS990,Part X Line 12; Part X Column (A),Investments other securities; Beginnning of year,0,part_x.InvstmntsOthrScrts_BOYAmt,/IRS990/InvestmentsOtherSecuritiesGrp/BOYAmt,False,,
201533089349301428,IRS990,Part X Line 12; Part X Column (B),Investments other securities; Ending of year,0,part_x.InvstmntsOthrScrts_EOYAmt,/IRS990/InvestmentsOtherSecuritiesGrp/EOYAmt,False,,
201533089349301428,IRS990,Part X Line 13; Part X Column (A),Investments-program related; Beginnning of year,1057297,part_x.InvstmntsPrgrmRltd_BOYAmt,/IRS990/InvestmentsProgramRelatedGrp/BOYAmt,False,,
201533089349301428,IRS990,Part X Line 13; Part X Column (B),Investments-program related; Ending of year,976468,part_x.InvstmntsPrgrmRltd_EOYAmt,/IRS990/InvestmentsProgramRelatedGrp/EOYAmt,False,,
201533089349301428,IRS990,Part X Line 14; Part X Column (A),Intangible assets; Beginnning of year,0,part_x.IntngblAssts_BOYAmt,/IRS990/IntangibleAssetsGrp/BOYAmt,False,,
201533089349301428,IRS990,Part X Line 14; Part X Column (B),Intangible assets; Ending of year,0,part_x.IntngblAssts_EOYAmt,/IRS990/IntangibleAssetsGrp/EOYAmt,False,,
201533089349301428,IRS990,Part X Line 15; Part X Column (A),Other assets; Beginnning of year,50247431,part_x.OthrAsstsTtl_BOYAmt,/IRS990/OtherAssetsTotalGrp/BOYAmt,False,,
201533089349301428,IRS990,Part X Line 15; Part X Column (B),Other assets; Ending of year,157266411,part_x.OthrAsstsTtl_EOYAmt,/IRS990/OtherAssetsTotalGrp/EOYAmt,False,,
201533089349301428,IRS990,Part X Line 16; Part X Column (A),Total assets; Beginnning of year,1738079830,part_x.TtlAssts_BOYAmt,/IRS990/TotalAssetsGrp/BOYAmt,False,,
201533089349301428,IRS990,Part X Line 16; Part X Column (B),Total assets; Ending of year,1866955706,part_x.TtlAssts_EOYAmt,/IRS990/TotalAssetsGrp/EOYAmt,False,,
201533089349301428,IRS990,Part X Line 17; Part X Column (A),Accounts payable and accrued expenses; Beginnning of year,291568856,part_x.AccntsPyblAccrExpnss_BOYAmt,/IRS990/AccountsPayableAccrExpnssGrp/BOYAmt,False,,
201533089349301428,IRS990,Part X Line 17; Part X Column (B),Accounts payable and accrued expenses; Ending of year,252113401,part_x.AccntsPyblAccrExpnss_EOYAmt,/IRS990/AccountsPayableAccrExpnssGrp/EOYAmt,False,,
201533089349301428,IRS990,Part X Line 18; Part X Column (A),Grants payable; Beginnning of year,0,part_x.GrntsPybl_BOYAmt,/IRS990/GrantsPayableGrp/BOYAmt,False,,
201533089349301428,IRS990,Part X Line 18; Part X Column (B),Grants payable; Ending of year,0,part_x.GrntsPybl_EOYAmt,/IRS990/GrantsPayableGrp/EOYAmt,False,,
201533089349301428,IRS990,Part X Line 19; Part X Column (A),Deferred revenue; Beginnning of year,0,part_x.DfrrdRvn_BOYAmt,/IRS990/DeferredRevenueGrp/BOYAmt,False,,
201533089349301428,IRS990,Part X Line 19; Part X Column (B),Deferred revenue; Ending of year,0,part_x.DfrrdRvn_EOYAmt,/IRS990/DeferredRevenueGrp/EOYAmt,False,,
201533089349301428,IRS990,Part X Line 20; Part X Column (A),Tax-exempt bond liabilities; Beginnning of year,939590161,part_x.TxExmptBndLblts_BOYAmt,/IRS990/TaxExemptBondLiabilitiesGrp/BOYAmt,False,,
201533089349301428,IRS990,Part X Line 20; Part X Column (B),Tax-exempt bond liabilities; Ending of year,931085770,part_x.TxExmptBndLblts_EOYAmt,/IRS990/TaxExemptBondLiabilitiesGrp/EOYAmt,False,,
201533089349301428,IRS990,Part X Line 21; Part X Column (A),Escrow account liability; Beginnning of year,0,part_x.EscrwAccntLblty_BOYAmt,/IRS990/EscrowAccountLiabilityGrp/BOYAmt,False,,
201533089349301428,IRS990,Part X Line 21; Part X Column (B),Escrow account liability; Ending of year,0,part_x.EscrwAccntLblty_EOYAmt,/IRS990/EscrowAccountLiabilityGrp/EOYAmt,False,,
201533089349301428,IRS990,Part X Line 22; Part X Column (A),"Payable to current and former officers, directors, trustees, or key employees; Beginnning of year",0,part_x.LnsFrmOffcrsDrctrs_BOYAmt,/IRS990/LoansFromOfficersDirectorsGrp/BOYAmt,False,,
201533089349301428,IRS990,Part X Line 22; Part X Column (B),"Payable to current and former officers, directors, trustees, or key employees; Ending of year",0,part_x.LnsFrmOffcrsDrctrs_EOYAmt,/IRS990/LoansFromOfficersDirectorsGrp/EOYAmt,False,,
201533089349301428,IRS990,Part X Line 23; Part X Column (A),Mortgages and notes payable secured by investment property; Beginnning of year,4660681,part_x.MrtgNtsPyblScrdInvstPrp_BOYAmt,/IRS990/MortgNotesPyblScrdInvstPropGrp/BOYAmt,False,,
201533089349301428,IRS990,Part X Line 23; Part X Column (B),Mortgages and notes payable secured by investment property; Ending of year,4795321,part_x.MrtgNtsPyblScrdInvstPrp_EOYAmt,/IRS990/MortgNotesPyblScrdInvstPropGrp/EOYAmt,False,,
201533089349301428,IRS990,Part X Line 24; Part X Column (A),Unsecured notes and loans payable; Beginnning of year,0,part_x.UnscrdNtsLnsPybl_BOYAmt,/IRS990/UnsecuredNotesLoansPayableGrp/BOYAmt,False,,
201533089349301428,IRS990,Part X Line 24; Part X Column (B),Unsecured notes and loans payable; Ending of year,0,part_x.UnscrdNtsLnsPybl_EOYAmt,/IRS990/UnsecuredNotesLoansPayableGrp/EOYAmt,False,,
201533089349301428,IRS990,Part X Line 25; Part X Column (A),Other liabilities; Beginnning of year,19657223,part_x.OthrLblts_BOYAmt,/IRS990/OtherLiabilitiesGrp/BOYAmt,False,,
201533089349301428,IRS990,Part X Line 25; Part X Column (B),Other liabilities; Ending of year,11065251,part_x.OthrLblts_EOYAmt,/IRS990/OtherLiabilitiesGrp/EOYAmt,False,,
201533089349301428,IRS990,Part X Line 26; Part X Column (A),Total liabilities; Beginnning of year,1255476921,part_x.TtlLblts_BOYAmt,/IRS990/TotalLiabilitiesGrp/BOYAmt,False,,
201533089349301428,IRS990,Part X Line 26; Part X Column (B),Total liabilities; Ending of year,1199059743,part_x.TtlLblts_EOYAmt,/IRS990/TotalLiabilitiesGrp/EOYAmt,False,,
201533089349301428,IRS990,Part X,"Organizations that follow SFAS 117, check here",X,part_x.OrgnztnFllwsSFAS117Ind,/IRS990/OrganizationFollowsSFAS117Ind,False,,
201533089349301428,IRS990,Part X Line 27; Part X Column (A),Unrestricted net assets; Beginnning of year,480508141,part_x.UnrstrctdNtAssts_BOYAmt,/IRS990/UnrestrictedNetAssetsGrp/BOYAmt,False,,
201533089349301428,IRS990,Part X Line 27; Part X Column (B),Unrestricted net assets; Ending of year,665425208,part_x.UnrstrctdNtAssts_EOYAmt,/IRS990/UnrestrictedNetAssetsGrp/EOYAmt,False,,
201533089349301428,IRS990,Part X Line 28; Part X Column (A),Temporarily restricted net assets; Beginnning of year,2094768,part_x.TmprrlyRstrNtAssts_BOYAmt,/IRS990/TemporarilyRstrNetAssetsGrp/BOYAmt,False,,
201533089349301428,IRS990,Part X Line 28; Part X Column (B),Temporarily restricted net assets; Ending of year,2470755,part_x.TmprrlyRstrNtAssts_EOYAmt,/IRS990/TemporarilyRstrNetAssetsGrp/EOYAmt,False,,
201533089349301428,IRS990,Part X Line 29; Part X Column (A),Permanently restricted net assets; Beginnning of year,0,part_x.PrmnntlyRstrNtAssts_BOYAmt,/IRS990/PermanentlyRstrNetAssetsGrp/BOYAmt,False,,
201533089349301428,IRS990,Part X Line 29; Part X Column (B),Permanently restricted net assets; Ending of year,0,part_x.PrmnntlyRstrNtAssts_EOYAmt,/IRS990/PermanentlyRstrNetAssetsGrp/EOYAmt,False,,
201533089349301428,IRS990,Part X Line 33; Part X Column (A),Total net assets or fund balances; Beginnning of year,482602909,part_x.TtlNtAsstsFndBlnc_BOYAmt,/IRS990/TotalNetAssetsFundBalanceGrp/BOYAmt,False,,
201533089349301428,IRS990,Part X Line 33; Part X Column (B),Total net assets or fund balances; Ending of year,667895963,part_x.TtlNtAsstsFndBlnc_EOYAmt,/IRS990/TotalNetAssetsFundBalanceGrp/EOYAmt,False,,
201533089349301428,IRS990,Part X Line 34; Part X Column (A),Total liabilities and net assets or fund balances; Beginnning of year,1738079830,part_x.TtLbNtAsstsFndBlnc_BOYAmt,/IRS990/TotLiabNetAssetsFundBalanceGrp/BOYAmt,False,,
201533089349301428,IRS990,Part X Line 34; Part X Column (B),Total liabilities and net assets or fund balances; Ending of year,1866955706,part_x.TtLbNtAsstsFndBlnc_EOYAmt,/IRS990/TotLiabNetAssetsFundBalanceGrp/EOYAmt,False,,
201533089349301428,IRS990,Part XI,Schedule O contains a response to a question in Part XI,X,part_xi.InfInSkdOPrtXIInd,/IRS990/InfoInScheduleOPartXIInd,False,,
201533089349301428,IRS990,Part XI Line 3,Revenue less expenses,189620682,part_xi.RcncltnRvnExpnssAmt,/IRS990/ReconcilationRevenueExpnssAmt,False,,
201533089349301428,IRS990,Part XI Line 5,Net unrealized gains (losses) on investments,2198272,part_xi.NtUnrlzdGnsLsssInvstAmt,/IRS990/NetUnrlzdGainsLossesInvstAmt,False,,
201533089349301428,IRS990,Part XI Line 9,Other changes in net assets or fund balances,-6525900,part_xi.OthrChngsInNtAsstsAmt,/IRS990/OtherChangesInNetAssetsAmt,False,,
201533089349301428,IRS990,Part XII Line 1,Method of accounting - Accrual,X,part_xii.MthdOfAccntngAccrlInd,/IRS990/MethodOfAccountingAccrualInd,False,,
201533089349301428,IRS990,Part XII Line 2a,Accountant provide compilation or review?,false,part_xii.AccntntCmplOrRvwInd,/IRS990/AccountantCompileOrReviewInd,False,,
201533089349301428,IRS990,Part XII Line 2b,Financial sheets audited?,true,part_xii.FSAdtdInd,/IRS990/FSAuditedInd,False,,
201533089349301428,IRS990,Part XII Line 2b; Part XII Lines 2a and 2b,Basis in which the financial statements were audited by an independent accountant; Financial statement issued on consolidated basis,X,part_xii.FSAdtdBss_CnsldtdBssFnclStmtInd,/IRS990/FSAuditedBasisGrp/ConsolidatedBasisFinclStmtInd,False,,
201533089349301428,IRS990,Part XII Line 2c,Does the organization have an audit committee?,true,part_xii.AdtCmmttInd,/IRS990/AuditCommitteeInd,False,,
201533089349301428,IRS990,Part XII Line 3a,Federal grant audit required?,true,part_xii.FdrlGrntAdtRqrdInd,/IRS990/FederalGrantAuditRequiredInd,False,,
201533089349301428,IRS990,Part XII Line 3b,Federal grant audit performed?,true,part_xii.FdrlGrntAdtPrfrmdInd,/IRS990/FederalGrantAuditPerformedInd,False,,
201533089349301428,IRS990ScheduleA,Part I Line 3,A hospital or a cooperative hospital service organization. Section 170(b)(1)(A)(iii),X,skeda_part_i.HsptlInd,/IRS990ScheduleA/HospitalInd,False,,
201533089349301428,IRS990ScheduleB,Part I; Part I Column (a),Contributor information; Cotributor number,RESTRICTED,SkdBCntrbtrInfrmtn.CntrbtrInfrmtn_CntrbtrNm,/IRS990ScheduleB/ContributorInformationGrp/ContributorNum,True,SkdBCntrbtrInfrmtn,0
201533089349301428,IRS990ScheduleB,None,None,RESTRICTED,SkdBCntrbtrInfrmtn.CntrbtrBsnssNm_BsnssNmLn1Txt,/IRS990ScheduleB/ContributorInformationGrp/ContributorBusinessName/BusinessNameLine1,True,SkdBCntrbtrInfrmtn,0
201533089349301428,IRS990ScheduleB,None,None,RESTRICTED,SkdBCntrbtrInfrmtn.CntrbtrUSAddrss_AddrssLn1Txt,/IRS990ScheduleB/ContributorInformationGrp/ContributorUSAddress/AddressLine1,True,SkdBCntrbtrInfrmtn,0
201533089349301428,IRS990ScheduleB,None,None,RESTRICTED,SkdBCntrbtrInfrmtn.CntrbtrUSAddrss_AddrssLn2Txt,/IRS990ScheduleB/ContributorInformationGrp/ContributorUSAddress/AddressLine2,True,SkdBCntrbtrInfrmtn,0
201533089349301428,IRS990ScheduleB,None,None,RESTRICTED,SkdBCntrbtrInfrmtn.CntrbtrUSAddrss_CtyNm,/IRS990ScheduleB/ContributorInformationGrp/ContributorUSAddress/City,True,SkdBCntrbtrInfrmtn,0
201533089349301428,IRS990ScheduleB,None,None,RESTRICTED,SkdBCntrbtrInfrmtn.CntrbtrUSAddrss_SttAbbrvtnCd,/IRS990ScheduleB/ContributorInformationGrp/ContributorUSAddress/State,True,SkdBCntrbtrInfrmtn,0
201533089349301428,IRS990ScheduleB,None,None,RESTRICTED,SkdBCntrbtrInfrmtn.CntrbtrUSAddrss_ZIPCd,/IRS990ScheduleB/ContributorInformationGrp/ContributorUSAddress/ZIPCode,True,SkdBCntrbtrInfrmtn,0
201533089349301428,IRS990ScheduleB,Part I; Part I Column (c),Contributor information; Aggregate contributions,RESTRICTED,SkdBCntrbtrInfrmtn.CntrbtrInfrmtn_TtlCntrbtnsAmt,/IRS990ScheduleB/ContributorInformationGrp/TotalContributionsAmt,True,SkdBCntrbtrInfrmtn,0
201533089349301428,IRS990ScheduleC,Part II-B Line 1a Column (a),Volunteers?,false,skedc_part_iib.VlntrsInd,/IRS990ScheduleC/VolunteersInd,False,,
201533089349301428,IRS990ScheduleC,Part II-B Line 1b Column (a),Paid staff or management?,false,skedc_part_iib.PdStffOrMngmntInd,/IRS990ScheduleC/PaidStaffOrManagementInd,False,,
201533089349301428,IRS990ScheduleC,Part II-B Line 1c Column(a),Media advertisements?,false,skedc_part_iib.MdAdvrtsmntsInd,/IRS990ScheduleC/MediaAdvertisementsInd,False,,
201533089349301428,IRS990ScheduleC,Part II-B Line 1d Column (a),"Mailings to members, legislators, or to the public?",false,skedc_part_iib.MlngsMmbrsInd,/IRS990ScheduleC/MailingsMembersInd,False,,
201533089349301428,IRS990ScheduleC,Part II-B Line 1e Column(a),"Publications, or published or broadcast statements?",false,skedc_part_iib.PblctnsOrBrdcstInd,/IRS990ScheduleC/PublicationsOrBroadcastInd,False,,
201533089349301428,IRS990ScheduleC,Part II-B Line 1f Column (a),Grants to other organizations for lobbying purposes?,false,skedc_part_iib.GrntsOthrOrgnztnsInd,/IRS990ScheduleC/GrantsOtherOrganizationsInd,False,,
201533089349301428,IRS990ScheduleC,Part II-B Line 1g Column (a),"Direct contact with legislators, their staffs, government officials, or a legislative body?",false,skedc_part_iib.DrctCntctLgsltrsInd,/IRS990ScheduleC/DirectContactLegislatorsInd,False,,
201533089349301428,IRS990ScheduleC,Part II-B Line 1h Column (a),"Rallies, demonstrations, seminars, conventions, speeches, lectures, or any other means?",false,skedc_part_iib.RllsDmnstrtnsInd,/IRS990ScheduleC/RalliesDemonstrationsInd,False,,
201533089349301428,IRS990ScheduleC,Part II-B Line 1i Column (a),Other activities?,true,skedc_part_iib.OthrActvtsInd,/IRS990ScheduleC/OtherActivitiesInd,False,,
201533089349301428,IRS990ScheduleC,Part II-B Line 1i Column (b),Other activities amount,29560,skedc_part_iib.OthrActvtsAmt,/IRS990ScheduleC/OtherActivitiesAmt,False,,
201533089349301428,IRS990ScheduleC,Part II-B Line 1j Column (b),Total Line 1c through 1i (only for section 501(c)(3)),29560,skedc_part_iib.TtlLbbyngExpndtrsAmt,/IRS990ScheduleC/TotalLobbyingExpendituresAmt,False,,
201533089349301428,IRS990ScheduleC,Part II-B Line 2a Column (a),Did the activities in line 1 cause the organization to be not described in section 501(c)(3)?,false,skedc_part_iib.NtDscrbdSctn501c3Ind,/IRS990ScheduleC/NotDescribedSection501c3Ind,False,,
201533089349301428,IRS990ScheduleC,Part IV,"Part IV contents; Form, part and line number reference","SCHEDULE C, PART II-B, LINE 1I",SkdCSpplmntlInfrmtnDtl.FrmAndLnRfrncDsc,/IRS990ScheduleC/SupplementalInformationDetail/FormAndLineReferenceDesc,True,SkdCSpplmntlInfrmtnDtl,0
201533089349301428,IRS990ScheduleC,Part IV,"Part IV contents; Form, part and line number reference explanation","Sacramento Metro Chamber of Commerce Capital-to-Capital Event. SHSSR had eight employees attend. Cost of transportation and lodging for all eight employees was $29,560.",SkdCSpplmntlInfrmtnDtl.ExplntnTxt,/IRS990ScheduleC/SupplementalInformationDetail/ExplanationTxt,True,SkdCSpplmntlInfrmtnDtl,0
201533089349301428,IRS990ScheduleD,Part V Column (a); Part V Line 1a,Current year; Beginning of year balance,20085053,skedd_part_v.CYEndwmtFnd_BgnnngYrBlncAmt,/IRS990ScheduleD/CYEndwmtFundGrp/BeginningYearBalanceAmt,False,,
201533089349301428,IRS990ScheduleD,Part V Column (a); Part V Line 1b,Current year; Contributions,999,skedd_part_v.CYEndwmtFnd_CntrbtnsAmt,/IRS990ScheduleD/CYEndwmtFundGrp/ContributionsAmt,False,,
201533089349301428,IRS990ScheduleD,Part V Column (a); Part V Line 1c,Current year; Investment earnings or losses,293955,skedd_part_v.CYEndwmtFnd_InvstmntErnngsOrLsssAmt,/IRS990ScheduleD/CYEndwmtFundGrp/InvestmentEarningsOrLossesAmt,False,,
201533089349301428,IRS990ScheduleD,Part V Column (a); Part V Line 1e,Current year; Other expenditures,386639,skedd_part_v.CYEndwmtFnd_OthrExpndtrsAmt,/IRS990ScheduleD/CYEndwmtFundGrp/OtherExpendituresAmt,False,,
201533089349301428,IRS990ScheduleD,Part V Column (a); Part V Line 1g,Current year; End of year balance,19993368,skedd_part_v.CYEndwmtFnd_EndYrBlncAmt,/IRS990ScheduleD/CYEndwmtFundGrp/EndYearBalanceAmt,False,,
201533089349301428,IRS990ScheduleD,Part V Column (b); Part V Line 1a,Current year minus one year; Beginning of year balance,17651842,skedd_part_v.CYMns1YrEndwmtFnd_BgnnngYrBlncAmt,/IRS990ScheduleD/CYMinus1YrEndwmtFundGrp/BeginningYearBalanceAmt,False,,
201533089349301428,IRS990ScheduleD,Part V Column (b); Part V Line 1b,Current year minus one year; Contributions,151996,skedd_part_v.CYMns1YrEndwmtFnd_CntrbtnsAmt,/IRS990ScheduleD/CYMinus1YrEndwmtFundGrp/ContributionsAmt,False,,
201533089349301428,IRS990ScheduleD,Part V Column (b); Part V Line 1c,Current year minus one year; Investment earnings or losses,1678960,skedd_part_v.CYMns1YrEndwmtFnd_InvstmntErnngsOrLsssAmt,/IRS990ScheduleD/CYMinus1YrEndwmtFundGrp/InvestmentEarningsOrLossesAmt,False,,
201533089349301428,IRS990ScheduleD,Part V Column (b); Part V Line 1e,Current year minus one year; Other expenditures,335757,skedd_part_v.CYMns1YrEndwmtFnd_OthrExpndtrsAmt,/IRS990ScheduleD/CYMinus1YrEndwmtFundGrp/OtherExpendituresAmt,False,,
201533089349301428,IRS990ScheduleD,Part V Column (b); Part V Line 1g,Current year minus one year; End of year balance,19147041,skedd_part_v.CYMns1YrEndwmtFnd_EndYrBlncAmt,/IRS990ScheduleD/CYMinus1YrEndwmtFundGrp/EndYearBalanceAmt,False,,
201533089349301428,IRS990ScheduleD,Part V Column (c); Part V Line 1a,Current year minus two years; Beginning of year balance,16233588,skedd_part_v.CYMns2YrEndwmtFnd_BgnnngYrBlncAmt,/IRS990ScheduleD/CYMinus2YrEndwmtFundGrp/BeginningYearBalanceAmt,False,,
201533089349301428,IRS990ScheduleD,Part V Column (c); Part V Line 1b,Current year minus two years; Contributions,1009,skedd_part_v.CYMns2YrEndwmtFnd_CntrbtnsAmt,/IRS990ScheduleD/CYMinus2YrEndwmtFundGrp/ContributionsAmt,False,,
201533089349301428,IRS990ScheduleD,Part V Column (c); Part V Line 1c,Current year minus two years; Investment earnings or losses,1935574,skedd_part_v.CYMns2YrEndwmtFnd_InvstmntErnngsOrLsssAmt,/IRS990ScheduleD/CYMinus2YrEndwmtFundGrp/InvestmentEarningsOrLossesAmt,False,,
201533089349301428,IRS990ScheduleD,Part V Column (c); Part V Line 1e,Current year minus two years; Other expenditures,518329,skedd_part_v.CYMns2YrEndwmtFnd_OthrExpndtrsAmt,/IRS990ScheduleD/CYMinus2YrEndwmtFundGrp/OtherExpendituresAmt,False,,
201533089349301428,IRS990ScheduleD,Part V Column (c); Part V Line 1g,Current year minus two years; End of year balance,17651842,skedd_part_v.CYMns2YrEndwmtFnd_EndYrBlncAmt,/IRS990ScheduleD/CYMinus2YrEndwmtFundGrp/EndYearBalanceAmt,False,,
201533089349301428,IRS990ScheduleD,Part V Column (d); Part V Line 1a,Current year minus three years; Beginning of year balance,17264360,skedd_part_v.CYMns3YrEndwmtFnd_BgnnngYrBlncAmt,/IRS990ScheduleD/CYMinus3YrEndwmtFundGrp/BeginningYearBalanceAmt,False,,
201533089349301428,IRS990ScheduleD,Part V Column (d); Part V Line 1b,Current year minus three years; Contributions,1279,skedd_part_v.CYMns3YrEndwmtFnd_CntrbtnsAmt,/IRS990ScheduleD/CYMinus3YrEndwmtFundGrp/ContributionsAmt,False,,
201533089349301428,IRS990ScheduleD,Part V Column (d); Part V Line 1c,Current year minus three years; Investment earnings or losses,-456995,skedd_part_v.CYMns3YrEndwmtFnd_InvstmntErnngsOrLsssAmt,/IRS990ScheduleD/CYMinus3YrEndwmtFundGrp/InvestmentEarningsOrLossesAmt,False,,
201533089349301428,IRS990ScheduleD,Part V Column (d); Part V Line 1e,Current year minus three years; Other expenditures,575056,skedd_part_v.CYMns3YrEndwmtFnd_OthrExpndtrsAmt,/IRS990ScheduleD/CYMinus3YrEndwmtFundGrp/OtherExpendituresAmt,False,,
201533089349301428,IRS990ScheduleD,Part V Column (d); Part V Line 1g,Current year minus three years; End of year balance,16233588,skedd_part_v.CYMns3YrEndwmtFnd_EndYrBlncAmt,/IRS990ScheduleD/CYMinus3YrEndwmtFundGrp/EndYearBalanceAmt,False,,
201533089349301428,IRS990ScheduleD,Part V Column (e); Part V Line 1a,Current year minus four years; Beginning of year balance,15654225,skedd_part_v.CYMns4YrEndwmtFnd_BgnnngYrBlncAmt,/IRS990ScheduleD/CYMinus4YrEndwmtFundGrp/BeginningYearBalanceAmt,False,,
201533089349301428,IRS990ScheduleD,Part V Column (e); Part V Line 1b,Current year minus four years; Contributions,1668,skedd_part_v.CYMns4YrEndwmtFnd_CntrbtnsAmt,/IRS990ScheduleD/CYMinus4YrEndwmtFundGrp/ContributionsAmt,False,,
201533089349301428,IRS990ScheduleD,Part V Column (e); Part V Line 1c,Current year minus four years; Investment earnings or losses,2004352,skedd_part_v.CYMns4YrEndwmtFnd_InvstmntErnngsOrLsssAmt,/IRS990ScheduleD/CYMinus4YrEndwmtFundGrp/InvestmentEarningsOrLossesAmt,False,,
201533089349301428,IRS990ScheduleD,Part V Column (e); Part V Line 1e,Current year minus four years; Other expenditures,395885,skedd_part_v.CYMns4YrEndwmtFnd_OthrExpndtrsAmt,/IRS990ScheduleD/CYMinus4YrEndwmtFundGrp/OtherExpendituresAmt,False,,
201533089349301428,IRS990ScheduleD,Part V Column (e); Part V Line 1f,Current year minus four years; Administrative expenses,0,skedd_part_v.CYMns4YrEndwmtFnd_AdmnstrtvExpnssAmt,/IRS990ScheduleD/CYMinus4YrEndwmtFundGrp/AdministrativeExpensesAmt,False,,
201533089349301428,IRS990ScheduleD,Part V Column (e); Part V Line 1g,Current year minus four years; End of year balance,17264360,skedd_part_v.CYMns4YrEndwmtFnd_EndYrBlncAmt,/IRS990ScheduleD/CYMinus4YrEndwmtFundGrp/EndYearBalanceAmt,False,,
201533089349301428,IRS990ScheduleD,Part V Line 2a,Board designated EOY balance,0.66370,skedd_part_v.SkdD_BrdDsgntdBlncEOYPct,/IRS990ScheduleD/BoardDesignatedBalanceEOYPct,False,,
201533089349301428,IRS990ScheduleD,Part V Line 2b,Permanent endowment EOY balance,0.21120,skedd_part_v.SkdD_PrmnntEndwmntBlncEOYPct,/IRS990ScheduleD/PrmnntEndowmentBalanceEOYPct,False,,
201533089349301428,IRS990ScheduleD,Part V Line 2c,Term endowment EOY balance,0.12510,skedd_part_v.SkdD_TrmEndwmntBlncEOYPct,/IRS990ScheduleD/TermEndowmentBalanceEOYPct,False,,
201533089349301428,IRS990ScheduleD,Part V Line 3a(i),Endowments held by unrelated organizations?,false,skedd_part_v.SkdD_EndwmntsHldUnrltdOrgInd,/IRS990ScheduleD/EndowmentsHeldUnrelatedOrgInd,False,,
201533089349301428,IRS990ScheduleD,Part V Line 3a(ii),Endowments held by related organizations?,true,skedd_part_v.SkdD_EndwmntsHldRltdOrgInd,/IRS990ScheduleD/EndowmentsHeldRelatedOrgInd,False,,
201533089349301428,IRS990ScheduleD,Part V Line 3b,Are related orgs listed on Schedule R?,true,skedd_part_v.SkdD_RltdOrgLstSchRInd,/IRS990ScheduleD/RelatedOrgListSchRInd,False,,
201533089349301428,IRS990ScheduleD,Part VI Line 1a; Part VI Column (a),Land; Investment cost or other basis,0,skedd_part_vi.Lnd_InvstmntCstOrOthrBssAmt,/IRS990ScheduleD/LandGrp/InvestmentCostOrOtherBasisAmt,False,,
201533089349301428,IRS990ScheduleD,Part VI Line 1a; Part VI Column (b),Land; Other cost or other basis,44110182,skedd_part_vi.Lnd_OthrCstOrOthrBssAmt,/IRS990ScheduleD/LandGrp/OtherCostOrOtherBasisAmt,False,,
201533089349301428,IRS990ScheduleD,Part VI Line 1a; Part VI Column (d),Land; Book value,44110182,skedd_part_vi.Lnd_BkVlAmt,/IRS990ScheduleD/LandGrp/BookValueAmt,False,,
201533089349301428,IRS990ScheduleD,Part VI Line 1b; Part VI Column (a),Buildings; Investment cost or other basis,0,skedd_part_vi.Bldngs_InvstmntCstOrOthrBssAmt,/IRS990ScheduleD/BuildingsGrp/InvestmentCostOrOtherBasisAmt,False,,
201533089349301428,IRS990ScheduleD,Part VI Line 1b; Part VI Column (b),Buildings; Other cost or other basis,1049452540,skedd_part_vi.Bldngs_OthrCstOrOthrBssAmt,/IRS990ScheduleD/BuildingsGrp/OtherCostOrOtherBasisAmt,False,,
201533089349301428,IRS990ScheduleD,Part VI Line 1b; Part VI Column (c),Buildings; Depreciation,495116011,skedd_part_vi.Bldngs_DprctnAmt,/IRS990ScheduleD/BuildingsGrp/DepreciationAmt,False,,
201533089349301428,IRS990ScheduleD,Part VI Line 1b; Part VI Column (d),Buildings; Book value,554336529,skedd_part_vi.Bldngs_BkVlAmt,/IRS990ScheduleD/BuildingsGrp/BookValueAmt,False,,
201533089349301428,IRS990ScheduleD,Part VI Line 1c; Part VI Column (a),Leasehold improvements; Investment cost or other basis,0,skedd_part_vi.LshldImprvmnts_InvstmntCstOrOthrBssAmt,/IRS990ScheduleD/LeaseholdImprovementsGrp/InvestmentCostOrOtherBasisAmt,False,,
201533089349301428,IRS990ScheduleD,Part VI Line 1c; Part VI Column (b),Leasehold improvements; Other cost or other basis,14091487,skedd_part_vi.LshldImprvmnts_OthrCstOrOthrBssAmt,/IRS990ScheduleD/LeaseholdImprovementsGrp/OtherCostOrOtherBasisAmt,False,,
201533089349301428,IRS990ScheduleD,Part VI Line 1c; Part VI Column (c),Leasehold improvements; Depreciation,8589455,skedd_part_vi.LshldImprvmnts_DprctnAmt,/IRS990ScheduleD/LeaseholdImprovementsGrp/DepreciationAmt,False,,
201533089349301428,IRS990ScheduleD,Part VI Line 1c; Part VI Column (d),Leasehold improvements; Book value,5502032,skedd_part_vi.LshldImprvmnts_BkVlAmt,/IRS990ScheduleD/LeaseholdImprovementsGrp/BookValueAmt,False,,
201533089349301428,IRS990ScheduleD,Part VI Line 1d; Part VI Column (a),Equipment; Investment cost or other basis,0,skedd_part_vi.Eqpmnt_InvstmntCstOrOthrBssAmt,/IRS990ScheduleD/EquipmentGrp/InvestmentCostOrOtherBasisAmt,False,,
201533089349301428,IRS990ScheduleD,Part VI Line 1d; Part VI Column (b),Equipment; Other cost or other basis,413249880,skedd_part_vi.Eqpmnt_OthrCstOrOthrBssAmt,/IRS990ScheduleD/EquipmentGrp/OtherCostOrOtherBasisAmt,False,,
201533089349301428,IRS990ScheduleD,Part VI Line 1d; Part VI Column (c),Equipment; Depreciation,330771336,skedd_part_vi.Eqpmnt_DprctnAmt,/IRS990ScheduleD/EquipmentGrp/DepreciationAmt,False,,
201533089349301428,IRS990ScheduleD,Part VI Line 1d; Part VI Column (d),Equipment; Book value,82478544,skedd_part_vi.Eqpmnt_BkVlAmt,/IRS990ScheduleD/EquipmentGrp/BookValueAmt,False,,
201533089349301428,IRS990ScheduleD,Part VI Line 1e; Part VI Column (a),Other; Investment cost or other basis,0,skedd_part_vi.OthrLndBldngs_InvstmntCstOrOthrBssAmt,/IRS990ScheduleD/OtherLandBuildingsGrp/InvestmentCostOrOtherBasisAmt,False,,
201533089349301428,IRS990ScheduleD,Part VI Line 1e; Part VI Column (b),Other; Other cost or other basis,630672694,skedd_part_vi.OthrLndBldngs_OthrCstOrOthrBssAmt,/IRS990ScheduleD/OtherLandBuildingsGrp/OtherCostOrOtherBasisAmt,False,,
201533089349301428,IRS990ScheduleD,Part VI Line 1e; Part VI Column (c),Other; Depreciation,26766611,skedd_part_vi.OthrLndBldngs_DprctnAmt,/IRS990ScheduleD/OtherLandBuildingsGrp/DepreciationAmt,False,,
201533089349301428,IRS990ScheduleD,Part VI Line 1e; Part VI Column (d),Other; Book value,603906083,skedd_part_vi.OthrLndBldngs_BkVlAmt,/IRS990ScheduleD/OtherLandBuildingsGrp/BookValueAmt,False,,
201533089349301428,IRS990ScheduleD,Part VI Line 1,Total of book value,1290333370,skedd_part_vi.SkdD_TtlBkVlLndBldngsAmt,/IRS990ScheduleD/TotalBookValueLandBuildingsAmt,False,,
201533089349301428,IRS990ScheduleD,Part IX; Column (a),Other assets; Description,UNAMORTIZED FINANCING COSTS,SkdDOthrAsstsOrg.Dsc,/IRS990ScheduleD/OtherAssetsOrgGrp/Desc,True,SkdDOthrAsstsOrg,0
201533089349301428,IRS990ScheduleD,Part IX; Column (b),Other assets; Book value,4119377,SkdDOthrAsstsOrg.BkVlAmt,/IRS990ScheduleD/OtherAssetsOrgGrp/BookValueAmt,True,SkdDOthrAsstsOrg,0
201533089349301428,IRS990ScheduleD,Part IX; Column (a),Other assets; Description,NOTES RECEIVABLE,SkdDOthrAsstsOrg.Dsc,/IRS990ScheduleD/OtherAssetsOrgGrp/Desc,True,SkdDOthrAsstsOrg,1
201533089349301428,IRS990ScheduleD,Part IX; Column (b),Other assets; Book value,1123,SkdDOthrAsstsOrg.BkVlAmt,/IRS990ScheduleD/OtherAssetsOrgGrp/BookValueAmt,True,SkdDOthrAsstsOrg,1
201533089349301428,IRS990ScheduleD,Part IX; Column (a),Other assets; Description,INTERCOMPANY RECEIVABLES,SkdDOthrAsstsOrg.Dsc,/IRS990ScheduleD/OtherAssetsOrgGrp/Desc,True,SkdDOthrAsstsOrg,2
201533089349301428,IRS990ScheduleD,Part IX; Column (b),Other assets; Book value,1719480,SkdDOthrAsstsOrg.BkVlAmt,/IRS990ScheduleD/OtherAssetsOrgGrp/BookValueAmt,True,SkdDOthrAsstsOrg,2
201533089349301428,IRS990ScheduleD,Part IX; Column (a),Other assets; Description,OTHER RECEIVABLES,SkdDOthrAsstsOrg.Dsc,/IRS990ScheduleD/OtherAssetsOrgGrp/Desc,True,SkdDOthrAsstsOrg,3
201533089349301428,IRS990ScheduleD,Part IX; Column (b),Other assets; Book value,122690209,SkdDOthrAsstsOrg.BkVlAmt,/IRS990ScheduleD/OtherAssetsOrgGrp/BookValueAmt,True,SkdDOthrAsstsOrg,3
201533089349301428,IRS990ScheduleD,Part IX; Column (a),Other assets; Description,OTHER ASSETS,SkdDOthrAsstsOrg.Dsc,/IRS990ScheduleD/OtherAssetsOrgGrp/Desc,True,SkdDOthrAsstsOrg,4
201533089349301428,IRS990ScheduleD,Part IX; Column (b),Other assets; Book value,28736222,SkdDOthrAsstsOrg.BkVlAmt,/IRS990ScheduleD/OtherAssetsOrgGrp/BookValueAmt,True,SkdDOthrAsstsOrg,4
201533089349301428,IRS990ScheduleD,Part IX Column (b),Total book value,157266411,skedd_part_ix.TtlBkVlOthrAsstsAmt,/IRS990ScheduleD/TotalBookValueOtherAssetsAmt,False,,
201533089349301428,IRS990ScheduleD,Part X Column (b),Federal income tax liability,0,skedd_part_x.FdrlIncmTxLbltyAmt,/IRS990ScheduleD/FederalIncomeTaxLiabilityAmt,False,,
201533089349301428,IRS990ScheduleD,Part X; Column (a),Other liabilities; Description,INSURANCE LIABILITIES,SkdDOthrLbltsOrg.Dsc,/IRS990ScheduleD/OtherLiabilitiesOrgGrp/Desc,True,SkdDOthrLbltsOrg,0
201533089349301428,IRS990ScheduleD,Part X; Column (b),Other liabilities; Amount,5334218,SkdDOthrLbltsOrg.Amt,/IRS990ScheduleD/OtherLiabilitiesOrgGrp/Amt,True,SkdDOthrLbltsOrg,0
201533089349301428,IRS990ScheduleD,Part X; Column (a),Other liabilities; Description,THIRD PARTY SETTLEMENTS,SkdDOthrLbltsOrg.Dsc,/IRS990ScheduleD/OtherLiabilitiesOrgGrp/Desc,True,SkdDOthrLbltsOrg,1
201533089349301428,IRS990ScheduleD,Part X; Column (b),Other liabilities; Amount,3343228,SkdDOthrLbltsOrg.Amt,/IRS990ScheduleD/OtherLiabilitiesOrgGrp/Amt,True,SkdDOthrLbltsOrg,1
201533089349301428,IRS990ScheduleD,Part X; Column (a),Other liabilities; Description,OTHER LIABILITIES,SkdDOthrLbltsOrg.Dsc,/IRS990ScheduleD/OtherLiabilitiesOrgGrp/Desc,True,SkdDOthrLbltsOrg,2
201533089349301428,IRS990ScheduleD,Part X; Column (b),Other liabilities; Amount,2387805,SkdDOthrLbltsOrg.Amt,/IRS990ScheduleD/OtherLiabilitiesOrgGrp/Amt,True,SkdDOthrLbltsOrg,2
201533089349301428,IRS990ScheduleD,Part X Column (b),Total of liability amounts,11065251,skedd_part_x.TtlLbltyAmt,/IRS990ScheduleD/TotalLiabilityAmt,False,,
201533089349301428,IRS990ScheduleD,Part X Line 2,"Part XIII contains the text of the footnote for Part X, Line 2",X,skedd_part_x.FtntTxtInd,/IRS990ScheduleD/FootnoteTextInd,False,,
201533089349301428,IRS990ScheduleD,Part XIII,Part XIII contents; Form part and line number reference,"SCHEDULE D, PART V, LINE 1A, COLUMN (A)",SkdDSpplmntlInfrmtnDtl.FrmAndLnRfrncDsc,/IRS990ScheduleD/SupplementalInformationDetail/FormAndLineReferenceDesc,True,SkdDSpplmntlInfrmtnDtl,0
201533089349301428,IRS990ScheduleD,Part XIII,Part XIII contents; Form part and line number reference explanation,"THE CURRENT YEAR BEGINING BALANCE INCLUDES A PRIOR YEAR ADJUSTMENT TO THE AUDITED FINANCIALS IN THE AMOUNT OF $938012. SCHEDULE D, PART V, LINE 4 ENDOWMENTS HELD BY RELATED FUNDRAISING ORGANIZATIONS FOR THE EXCLUSIVE PURPOSE OF VARIOUS PROGRAMS OF SUTTER HEALTH SACRAMENTO SIERRA REGION.",SkdDSpplmntlInfrmtnDtl.ExplntnTxt,/IRS990ScheduleD/SupplementalInformationDetail/ExplanationTxt,True,SkdDSpplmntlInfrmtnDtl,0
201533089349301428,IRS990ScheduleD,Part XIII,Part XIII contents; Form part and line number reference,"SCHEDULE D, PART X, LINE 2",SkdDSpplmntlInfrmtnDtl.FrmAndLnRfrncDsc,/IRS990ScheduleD/SupplementalInformationDetail/FormAndLineReferenceDesc,True,SkdDSpplmntlInfrmtnDtl,1
201533089349301428,IRS990ScheduleD,Part XIII,Part XIII contents; Form part and line number reference explanation,"THIS ORGANIZATION WAS PART OF A CONSOLIDATED FINANCIAL SYSTEM AUDIT. THE ASC 740 AUDIT FOOTNOTE DISCLOSURE FOR THE SUTTER SYSTEM IS AS FOLLOWS: SUTTER HEALTH, THE LEGAL ENTITY, AND MOST AFFILIATES HAVE BEEN DETERMINED TO BE EXEMPT ORGANIZATIONS BY THE INTERNAL REVENUE SERVICE, (PURSUANT TO INTERNAL REVENUE CODE SECTION 501(C)(3)), AND THE CALIFORNIA FRANCHISE TAX BOARD (PURSUANT TO CALIFORNIA REVENUE AND TAXATION CODE 23701(D)) AND, GENERALLY, ARE NOT SUBJECT TO TAXES ON INCOME. CERTAIN ACTIVITIES OF SUTTER ARE SUBJECT TO INCOME TAXES; HOWEVER, SUCH ACTIVITIES ARE NOT SIGNIFICANT TO THE CONSOLIDATED FINANCIAL STATEMENTS. WITH RESPECT TO ITS TAXABLE ACTIVITIES, SUTTER RECORDS INCOME TAXES USING THE LIABILITY METHOD, UNDER WHICH DEFERRED TAX ASSETS AND LIABILITIES ARE DETERMINED BASED ON THE DIFFERENCES BETWEEN THE FINANCIAL ACCOUNTING AND TAX BASIS OF ASSETS AND LIABILITIES. DEFERRED TAX ASSETS OR LIABILITIES AT THE END OF EACH PERIOD ARE DETERMINED USING THE CURRENTLY ENACTED TAX RATE EXPECTED TO APPLY TO TAXABLE INCOME IN THE PERIODS THAT THE DEFERRED TAX ASSET OR LIABILITY IS EXPECTED TO BE REALIZED OR SETTLED. SUTTER RECOGNIZES THE TAX BENEFIT FROM UNCERTAIN TAX POSITIONS ONLY IF IT IS MORE LIKELY THAN NOT THAT THE TAX POSITIONS WILL BE SUSTAINED ON EXAMINATION BY THE TAX AUTHORITIES, BASED ON THE TECHNICAL MERITS OF THE POSITION. THE TAX BENEFIT IS MEASURED BASED ON THE LARGEST BENEFIT THAT HAS A GREATER THAN 50% LIKELIHOOD OF BEING REALIZED UPON ULTIMATE SETTLEMENT. SUTTER RECOGNIZES INTEREST AND PENALTIES RELATED TO INCOME TAX MATTERS IN OPERATING EXPENSES. AT DECEMBER 31, 2014 AND 2013, THERE WERE NO SUCH UNCERTAIN TAX POSITIONS.",SkdDSpplmntlInfrmtnDtl.ExplntnTxt,/IRS990ScheduleD/SupplementalInformationDetail/ExplanationTxt,True,SkdDSpplmntlInfrmtnDtl,1
201533089349301428,IRS990ScheduleG,Part II; Column (a),"Complete if the organization answered ""Yes"" to Form 990, Part IV, line 18, or reported more than $15,000 on Form 990-EZ, line 6a; Name of event no.1",THEME BALL,skedg_part_ii.Evnt1Nm,/IRS990ScheduleG/FundraisingEventInformationGrp/Event1Nm,False,,
201533089349301428,IRS990ScheduleG,Part II; Line 1 Column (a),"Complete if the organization answered ""Yes"" to Form 990, Part IV, line 18, or reported more than $15,000 on Form 990-EZ, line 6a; Gross receipts, event no.1",62142,skedg_part_ii.GrssRcptsEvnt1Amt,/IRS990ScheduleG/FundraisingEventInformationGrp/GrossReceiptsEvent1Amt,False,,
201533089349301428,IRS990ScheduleG,Part II; Line 2 Column (a),"Complete if the organization answered ""Yes"" to Form 990, Part IV, line 18, or reported more than $15,000 on Form 990-EZ, line 6a; Charitable contributions, event no.1",36703,skedg_part_ii.ChrtblCntrEvnt1Amt,/IRS990ScheduleG/FundraisingEventInformationGrp/CharitableContriEvent1Amt,False,,
201533089349301428,IRS990ScheduleG,Part II; Line 3 Column (a),"Complete if the organization answered ""Yes"" to Form 990, Part IV, line 18, or reported more than $15,000 on Form 990-EZ, line 6a; Gross revenue, event no.1",25439,skedg_part_ii.GrssRvnEvnt1Amt,/IRS990ScheduleG/FundraisingEventInformationGrp/GrossRevenueEvent1Amt,False,,
201533089349301428,IRS990ScheduleG,Part II; Line 6 Column (a),"Complete if the organization answered ""Yes"" to Form 990, Part IV, line 18, or reported more than $15,000 on Form 990-EZ, line 6a; Rent or facility costs, event no.1",1350,skedg_part_ii.RntFcltyCstsEvnt1Amt,/IRS990ScheduleG/FundraisingEventInformationGrp/RentFacilityCostsEvent1Amt,False,,
201533089349301428,IRS990ScheduleG,Part II; Line 7 Column (a),"Complete if the organization answered ""Yes"" to Form 990, Part IV, line 18, or reported more than $15,000 on Form 990-EZ, line 6a; Food and beverage expenses, event no.1",9344,skedg_part_ii.FdAndBvrgEvnt1Amt,/IRS990ScheduleG/FundraisingEventInformationGrp/FoodAndBeverageEvent1Amt,False,,
201533089349301428,IRS990ScheduleG,Part II; Line 8 Column (a),"Complete if the organization answered ""Yes"" to Form 990, Part IV, line 18, or reported more than $15,000 on Form 990-EZ, line 6a; Entertainment expenses, event no.1",800,skedg_part_ii.EntrtnmntEvnt1Amt,/IRS990ScheduleG/FundraisingEventInformationGrp/EntertainmentEvent1Amt,False,,
201533089349301428,IRS990ScheduleG,Part II; Line 9 Column (a),"Complete if the organization answered ""Yes"" to Form 990, Part IV, line 18, or reported more than $15,000 on Form 990-EZ, line 6a; Other direct expenses, event no.1",5512,skedg_part_ii.OthrDrctExpnssEvnt1Amt,/IRS990ScheduleG/FundraisingEventInformationGrp/OtherDirectExpensesEvent1Amt,False,,
201533089349301428,IRS990ScheduleG,Part II; Column (c),"Complete if the organization answered ""Yes"" to Form 990, Part IV, line 18, or reported more than $15,000 on Form 990-EZ, line 6a; Other events: total number",0,skedg_part_ii.OthrEvntsTtlCnt,/IRS990ScheduleG/FundraisingEventInformationGrp/OtherEventsTotalCnt,False,,
201533089349301428,IRS990ScheduleG,Part II; Line 1 Column (d),"Complete if the organization answered ""Yes"" to Form 990, Part IV, line 18, or reported more than $15,000 on Form 990-EZ, line 6a; Gross receipts, total",62142,skedg_part_ii.GrssRcptsTtlAmt,/IRS990ScheduleG/FundraisingEventInformationGrp/GrossReceiptsTotalAmt,False,,
201533089349301428,IRS990ScheduleG,Part II; Line 2 Column (d),"Complete if the organization answered ""Yes"" to Form 990, Part IV, line 18, or reported more than $15,000 on Form 990-EZ, line 6a; Charitable contributions, total",36703,skedg_part_ii.ChrtblCntrbtnsTtAmt,/IRS990ScheduleG/FundraisingEventInformationGrp/CharitableContributionsTotAmt,False,,
201533089349301428,IRS990ScheduleG,Part II; Line 3 Column (d),"Complete if the organization answered ""Yes"" to Form 990, Part IV, line 18, or reported more than $15,000 on Form 990-EZ, line 6a; Gross revenue, total",25439,skedg_part_ii.GrssRvnTtlEvntsAmt,/IRS990ScheduleG/FundraisingEventInformationGrp/GrossRevenueTotalEventsAmt,False,,
201533089349301428,IRS990ScheduleG,Part II; Line 6 Column (d),"Complete if the organization answered ""Yes"" to Form 990, Part IV, line 18, or reported more than $15,000 on Form 990-EZ, line 6a; Rent or facility costs, total",1350,skedg_part_ii.RntFcltyCstsTtlEvntsAmt,/IRS990ScheduleG/FundraisingEventInformationGrp/RentFcltyCostsTotalEventsAmt,False,,
201533089349301428,IRS990ScheduleG,Part II; Line 7 Column (d),"Complete if the organization answered ""Yes"" to Form 990, Part IV, line 18, or reported more than $15,000 on Form 990-EZ, line 6a; Food and beverage costs, total",9344,skedg_part_ii.FdAndBvrgTtlEvntsAmt,/IRS990ScheduleG/FundraisingEventInformationGrp/FoodAndBeverageTotalEventsAmt,False,,
201533089349301428,IRS990ScheduleG,Part II; Line 8 Column (d),"Complete if the organization answered ""Yes"" to Form 990, Part IV, line 18, or reported more than $15,000 on Form 990-EZ, line 6a; Entertainment costs, total",800,skedg_part_ii.EntrtnmntTtlEvntsAmt,/IRS990ScheduleG/FundraisingEventInformationGrp/EntertainmentTotalEventsAmt,False,,
201533089349301428,IRS990ScheduleG,Part II; Line 9 Column (d),"Complete if the organization answered ""Yes"" to Form 990, Part IV, line 18, or reported more than $15,000 on Form 990-EZ, line 6a; Other direct expenses, total",5512,skedg_part_ii.OthDrctExpnssTtlEvntsAmt,/IRS990ScheduleG/FundraisingEventInformationGrp/OthDirectExpnssTotalEventsAmt,False,,
201533089349301428,IRS990ScheduleG,Part II; Line 10 Column (d),"Complete if the organization answered ""Yes"" to Form 990, Part IV, line 18, or reported more than $15,000 on Form 990-EZ, line 6a; Direct expense summary",17006,skedg_part_ii.DrctExpnsSmmryEvntsAmt,/IRS990ScheduleG/FundraisingEventInformationGrp/DirectExpenseSummaryEventsAmt,False,,
201533089349301428,IRS990ScheduleG,Part II; Line 11 Column (d),"Complete if the organization answered ""Yes"" to Form 990, Part IV, line 18, or reported more than $15,000 on Form 990-EZ, line 6a; Net income summary",8433,skedg_part_ii.NtIncmSmmryAmt,/IRS990ScheduleG/FundraisingEventInformationGrp/NetIncomeSummaryAmt,False,,
201533089349301428,IRS990ScheduleH,Part I Line 1a,Financial assistance policy?,true,skedh_part_i.SkdH_FnnclAssstncPlcyInd,/IRS990ScheduleH/FinancialAssistancePolicyInd,False,,
201533089349301428,IRS990ScheduleH,Part I Line 1b,Written policy?,true,skedh_part_i.SkdH_WrttnPlcyInd,/IRS990ScheduleH/WrittenPolicyInd,False,,
201533089349301428,IRS990ScheduleH,Part I Line 2,Policy applied to all hospitals,X,skedh_part_i.SkdH_AllHsptlsPlcyInd,/IRS990ScheduleH/AllHospitalsPolicyInd,False,,
201533089349301428,IRS990ScheduleH,Part I Line 3a,FPG reference free care?,true,skedh_part_i.SkdH_FPGRfrncFrCrInd,/IRS990ScheduleH/FPGReferenceFreeCareInd,False,,
201533089349301428,IRS990ScheduleH,Part I Line 3a,200%,X,skedh_part_i.SkdH_Prcnt200Ind,/IRS990ScheduleH/Percent200Ind,False,,
201533089349301428,IRS990ScheduleH,Part I Line 3b,FPG reference discounted care,true,skedh_part_i.SkdH_FPGRfrncDscntdCrInd,/IRS990ScheduleH/FPGReferenceDiscountedCareInd,False,,
201533089349301428,IRS990ScheduleH,Part I Line 3b,400%,X,skedh_part_i.SkdH_Prcnt400Ind,/IRS990ScheduleH/Percent400Ind,False,,
201533089349301428,IRS990ScheduleH,Part I Line 4,Free or discounted care to medically indigent?,true,skedh_part_i.SkdH_FrCrMdcllyIndgntInd,/IRS990ScheduleH/FreeCareMedicallyIndigentInd,False,,
201533089349301428,IRS990ScheduleH,Part I Line 5a,Amounts budgeted for financial assistance?,true,skedh_part_i.SkdH_FnnclAssstncBdgtInd,/IRS990ScheduleH/FinancialAssistanceBudgetInd,False,,
201533089349301428,IRS990ScheduleH,Part I Line 5b,Expenses exceeded budget?,true,skedh_part_i.SkdH_ExpnssExcdBdgtInd,/IRS990ScheduleH/ExpensesExceedBudgetInd,False,,
201533089349301428,IRS990ScheduleH,Part I Line 5c,Unable to provide care?,false,skedh_part_i.SkdH_UnblTPrvdCrInd,/IRS990ScheduleH/UnableToProvideCareInd,False,,
201533089349301428,IRS990ScheduleH,Part I Line 6a,Annual community benefit report?,true,skedh_part_i.SkdH_AnnlCmmntyBnftRprtInd,/IRS990ScheduleH/AnnualCommunityBnftReportInd,False,,
201533089349301428,IRS990ScheduleH,Part I Line 6b,Report publically available?,true,skedh_part_i.SkdH_RprtPblcllyAvlblInd,/IRS990ScheduleH/ReportPublicallyAvailableInd,False,,
201533089349301428,IRS990ScheduleH,Part I Line 7a; Column (c),Financial Assistance at cost; Total community benefit expense,35785331,skedh_part_i.FnnclAssstncAtCstTyp_TtlCmmntyBnftExpnsAmt,/IRS990ScheduleH/FinancialAssistanceAtCostTyp/TotalCommunityBenefitExpnsAmt,False,,
201533089349301428,IRS990ScheduleH,Part I Line 7a; Column (e),Financial Assistance at cost; Net community benefit expense,35785331,skedh_part_i.FnnclAssstncAtCstTyp_NtCmmntyBnftExpnsAmt,/IRS990ScheduleH/FinancialAssistanceAtCostTyp/NetCommunityBenefitExpnsAmt,False,,
201533089349301428,IRS990ScheduleH,Part I Line 7a; Column (f),Financial Assistance at cost; Percent of total expense,0.02030,skedh_part_i.FnnclAssstncAtCstTyp_TtlExpnsPct,/IRS990ScheduleH/FinancialAssistanceAtCostTyp/TotalExpensePct,False,,
201533089349301428,IRS990ScheduleH,Part I Line 7b; Column (c),Unreimbursed Medicaid; Total community benefit expense,496313515,skedh_part_i.UnrmbrsdMdcd_TtlCmmntyBnftExpnsAmt,/IRS990ScheduleH/UnreimbursedMedicaidGrp/TotalCommunityBenefitExpnsAmt,False,,
201533089349301428,IRS990ScheduleH,Part I Line 7b; Column (d),Unreimbursed Medicaid; Direct offsetting revenue,368460195,skedh_part_i.UnrmbrsdMdcd_DrctOffsttngRvnAmt,/IRS990ScheduleH/UnreimbursedMedicaidGrp/DirectOffsettingRevenueAmt,False,,
201533089349301428,IRS990ScheduleH,Part I Line 7b; Column (e),Unreimbursed Medicaid; Net community benefit expense,127853320,skedh_part_i.UnrmbrsdMdcd_NtCmmntyBnftExpnsAmt,/IRS990ScheduleH/UnreimbursedMedicaidGrp/NetCommunityBenefitExpnsAmt,False,,
201533089349301428,IRS990ScheduleH,Part I Line 7b; Column (f),Unreimbursed Medicaid; Percent of total expense,0.07240,skedh_part_i.UnrmbrsdMdcd_TtlExpnsPct,/IRS990ScheduleH/UnreimbursedMedicaidGrp/TotalExpensePct,False,,
201533089349301428,IRS990ScheduleH,Part I Line 7c; Column (c),Unreimbursed costs; Total community benefit expense,8412290,skedh_part_i.UnrmbrsdCsts_TtlCmmntyBnftExpnsAmt,/IRS990ScheduleH/UnreimbursedCostsGrp/TotalCommunityBenefitExpnsAmt,False,,
201533089349301428,IRS990ScheduleH,Part I Line 7c; Column (d),Unreimbursed costs; Direct offsetting revenue,4043970,skedh_part_i.UnrmbrsdCsts_DrctOffsttngRvnAmt,/IRS990ScheduleH/UnreimbursedCostsGrp/DirectOffsettingRevenueAmt,False,,
201533089349301428,IRS990ScheduleH,Part I Line 7c; Column (e),Unreimbursed costs; Net community benefit expense,4368320,skedh_part_i.UnrmbrsdCsts_NtCmmntyBnftExpnsAmt,/IRS990ScheduleH/UnreimbursedCostsGrp/NetCommunityBenefitExpnsAmt,False,,
201533089349301428,IRS990ScheduleH,Part I Line 7c; Column (f),Unreimbursed costs; Percent of total expense,0.00250,skedh_part_i.UnrmbrsdCsts_TtlExpnsPct,/IRS990ScheduleH/UnreimbursedCostsGrp/TotalExpensePct,False,,
201533089349301428,IRS990ScheduleH,Part I Line 7d; Column (c),Total financial assistance; Total community benefit expense,540511136,skedh_part_i.TtlFnnclAssstncTyp_TtlCmmntyBnftExpnsAmt,/IRS990ScheduleH/TotalFinancialAssistanceTyp/TotalCommunityBenefitExpnsAmt,False,,
201533089349301428,IRS990ScheduleH,Part I Line 7d; Column (d),Total financial assistance; Direct offsetting revenue,372504165,skedh_part_i.TtlFnnclAssstncTyp_DrctOffsttngRvnAmt,/IRS990ScheduleH/TotalFinancialAssistanceTyp/DirectOffsettingRevenueAmt,False,,
201533089349301428,IRS990ScheduleH,Part I Line 7d; Column (e),Total financial assistance; Net community benefit expense,168006971,skedh_part_i.TtlFnnclAssstncTyp_NtCmmntyBnftExpnsAmt,/IRS990ScheduleH/TotalFinancialAssistanceTyp/NetCommunityBenefitExpnsAmt,False,,
201533089349301428,IRS990ScheduleH,Part I Line 7d; Column (f),Total financial assistance; Percent of total expense,0.09520,skedh_part_i.TtlFnnclAssstncTyp_TtlExpnsPct,/IRS990ScheduleH/TotalFinancialAssistanceTyp/TotalExpensePct,False,,
201533089349301428,IRS990ScheduleH,Part I Line 7e; Column (a),Community health services; Number of activities or programs,16,skedh_part_i.CmmntyHlthSrvcs_ActvtsOrPrgrmsCnt,/IRS990ScheduleH/CommunityHealthServicesGrp/ActivitiesOrProgramsCnt,False,,
201533089349301428,IRS990ScheduleH,Part I Line 7e; Column (c),Community health services; Total community benefit expense,1630512,skedh_part_i.CmmntyHlthSrvcs_TtlCmmntyBnftExpnsAmt,/IRS990ScheduleH/CommunityHealthServicesGrp/TotalCommunityBenefitExpnsAmt,False,,
201533089349301428,IRS990ScheduleH,Part I Line 7e; Column (e),Community health services; Net community benefit expense,1630512,skedh_part_i.CmmntyHlthSrvcs_NtCmmntyBnftExpnsAmt,/IRS990ScheduleH/CommunityHealthServicesGrp/NetCommunityBenefitExpnsAmt,False,,
201533089349301428,IRS990ScheduleH,Part I Line 7e; Column (f),Community health services; Percent of total expense,0.00090,skedh_part_i.CmmntyHlthSrvcs_TtlExpnsPct,/IRS990ScheduleH/CommunityHealthServicesGrp/TotalExpensePct,False,,
201533089349301428,IRS990ScheduleH,Part I Line 7f; Column (a),Health professions education; Number of activities or programs,7,skedh_part_i.HlthPrfssnsEdctn_ActvtsOrPrgrmsCnt,/IRS990ScheduleH/HealthProfessionsEducationGrp/ActivitiesOrProgramsCnt,False,,
201533089349301428,IRS990ScheduleH,Part I Line 7f; Column (c),Health professions education; Total community benefit expense,4122771,skedh_part_i.HlthPrfssnsEdctn_TtlCmmntyBnftExpnsAmt,/IRS990ScheduleH/HealthProfessionsEducationGrp/TotalCommunityBenefitExpnsAmt,False,,
201533089349301428,IRS990ScheduleH,Part I Line 7f; Column (d),Health professions education; Direct offsetting revenue,1990024,skedh_part_i.HlthPrfssnsEdctn_DrctOffsttngRvnAmt,/IRS990ScheduleH/HealthProfessionsEducationGrp/DirectOffsettingRevenueAmt,False,,
201533089349301428,IRS990ScheduleH,Part I Line 7f; Column (e),Health professions education; Net community benefit expense,2132747,skedh_part_i.HlthPrfssnsEdctn_NtCmmntyBnftExpnsAmt,/IRS990ScheduleH/HealthProfessionsEducationGrp/NetCommunityBenefitExpnsAmt,False,,
201533089349301428,IRS990ScheduleH,Part I Line 7f; Column (f),Health professions education; Percent of total expense,0.00120,skedh_part_i.HlthPrfssnsEdctn_TtlExpnsPct,/IRS990ScheduleH/HealthProfessionsEducationGrp/TotalExpensePct,False,,
201533089349301428,IRS990ScheduleH,Part I Line 7h; Column (a),Research; Number of activities or programs,6,skedh_part_i.Rsrch_ActvtsOrPrgrmsCnt,/IRS990ScheduleH/ResearchGrp/ActivitiesOrProgramsCnt,False,,
201533089349301428,IRS990ScheduleH,Part I Line 7h; Column (c),Research; Total community benefit expense,2206486,skedh_part_i.Rsrch_TtlCmmntyBnftExpnsAmt,/IRS990ScheduleH/ResearchGrp/TotalCommunityBenefitExpnsAmt,False,,
201533089349301428,IRS990ScheduleH,Part I Line 7h; Column (d),Research; Direct offsetting revenue,1488537,skedh_part_i.Rsrch_DrctOffsttngRvnAmt,/IRS990ScheduleH/ResearchGrp/DirectOffsettingRevenueAmt,False,,
201533089349301428,IRS990ScheduleH,Part I Line 7h; Column (e),Research; Net community benefit expense,717949,skedh_part_i.Rsrch_NtCmmntyBnftExpnsAmt,/IRS990ScheduleH/ResearchGrp/NetCommunityBenefitExpnsAmt,False,,
201533089349301428,IRS990ScheduleH,Part I Line 7h; Column (f),Research; Percent of total expense,0.00040,skedh_part_i.Rsrch_TtlExpnsPct,/IRS990ScheduleH/ResearchGrp/TotalExpensePct,False,,
201533089349301428,IRS990ScheduleH,Part I Line 7i; Column (a),Cash and in-kind contributions; Number of activities or programs,37,skedh_part_i.CshAndInKndCntrbtns_ActvtsOrPrgrmsCnt,/IRS990ScheduleH/CashAndInKindContributionsGrp/ActivitiesOrProgramsCnt,False,,
201533089349301428,IRS990ScheduleH,Part I Line 7i; Column (b),Cash and in-kind contributions; Persons served,4887,skedh_part_i.CshAndInKndCntrbtns_PrsnsSrvdCnt,/IRS990ScheduleH/CashAndInKindContributionsGrp/PersonsServedCnt,False,,
201533089349301428,IRS990ScheduleH,Part I Line 7i; Column (c),Cash and in-kind contributions; Total community benefit expense,7497061,skedh_part_i.CshAndInKndCntrbtns_TtlCmmntyBnftExpnsAmt,/IRS990ScheduleH/CashAndInKindContributionsGrp/TotalCommunityBenefitExpnsAmt,False,,
201533089349301428,IRS990ScheduleH,Part I Line 7i; Column (e),Cash and in-kind contributions; Net community benefit expense,7497061,skedh_part_i.CshAndInKndCntrbtns_NtCmmntyBnftExpnsAmt,/IRS990ScheduleH/CashAndInKindContributionsGrp/NetCommunityBenefitExpnsAmt,False,,
201533089349301428,IRS990ScheduleH,Part I Line 7i; Column (f),Cash and in-kind contributions; Percent of total expense,0.00420,skedh_part_i.CshAndInKndCntrbtns_TtlExpnsPct,/IRS990ScheduleH/CashAndInKindContributionsGrp/TotalExpensePct,False,,
201533089349301428,IRS990ScheduleH,Part I Line 7j; Column (a),Total Other Benefits; Number of activities or programs,66,skedh_part_i.TtlOthrBnfts_ActvtsOrPrgrmsCnt,/IRS990ScheduleH/TotalOtherBenefitsGrp/ActivitiesOrProgramsCnt,False,,
201533089349301428,IRS990ScheduleH,Part I Line 7j; Column (b),Total Other Benefits; Persons served,4887,skedh_part_i.TtlOthrBnfts_PrsnsSrvdCnt,/IRS990ScheduleH/TotalOtherBenefitsGrp/PersonsServedCnt,False,,
201533089349301428,IRS990ScheduleH,Part I Line 7j; Column (c),Total Other Benefits; Total community benefit expense,15456830,skedh_part_i.TtlOthrBnfts_TtlCmmntyBnftExpnsAmt,/IRS990ScheduleH/TotalOtherBenefitsGrp/TotalCommunityBenefitExpnsAmt,False,,
201533089349301428,IRS990ScheduleH,Part I Line 7j; Column (d),Total Other Benefits; Direct offsetting revenue,3478561,skedh_part_i.TtlOthrBnfts_DrctOffsttngRvnAmt,/IRS990ScheduleH/TotalOtherBenefitsGrp/DirectOffsettingRevenueAmt,False,,
201533089349301428,IRS990ScheduleH,Part I Line 7j; Column (e),Total Other Benefits; Net community benefit expense,11978269,skedh_part_i.TtlOthrBnfts_NtCmmntyBnftExpnsAmt,/IRS990ScheduleH/TotalOtherBenefitsGrp/NetCommunityBenefitExpnsAmt,False,,
201533089349301428,IRS990ScheduleH,Part I Line 7j; Column (f),Total Other Benefits; Percent of total expense,0.00670,skedh_part_i.TtlOthrBnfts_TtlExpnsPct,/IRS990ScheduleH/TotalOtherBenefitsGrp/TotalExpensePct,False,,
201533089349301428,IRS990ScheduleH,Part I Line 7k; Column (a),Total community benefits; Number of activities or programs,66,skedh_part_i.TtlCmmntyBnfts_ActvtsOrPrgrmsCnt,/IRS990ScheduleH/TotalCommunityBenefitsGrp/ActivitiesOrProgramsCnt,False,,
201533089349301428,IRS990ScheduleH,Part I Line 7k; Column (b),Total community benefits; Persons served,4887,skedh_part_i.TtlCmmntyBnfts_PrsnsSrvdCnt,/IRS990ScheduleH/TotalCommunityBenefitsGrp/PersonsServedCnt,False,,
201533089349301428,IRS990ScheduleH,Part I Line 7k; Column (c),Total community benefits; Total community benefit expense,555967966,skedh_part_i.TtlCmmntyBnfts_TtlCmmntyBnftExpnsAmt,/IRS990ScheduleH/TotalCommunityBenefitsGrp/TotalCommunityBenefitExpnsAmt,False,,
201533089349301428,IRS990ScheduleH,Part I Line 7k; Column (d),Total community benefits; Direct offsetting revenue,375982726,skedh_part_i.TtlCmmntyBnfts_DrctOffsttngRvnAmt,/IRS990ScheduleH/TotalCommunityBenefitsGrp/DirectOffsettingRevenueAmt,False,,
201533089349301428,IRS990ScheduleH,Part I Line 7k; Column (e),Total community benefits; Net community benefit expense,179985240,skedh_part_i.TtlCmmntyBnfts_NtCmmntyBnftExpnsAmt,/IRS990ScheduleH/TotalCommunityBenefitsGrp/NetCommunityBenefitExpnsAmt,False,,
201533089349301428,IRS990ScheduleH,Part I Line 7k; Column (f),Total community benefits; Percent of total expense,0.10190,skedh_part_i.TtlCmmntyBnfts_TtlExpnsPct,/IRS990ScheduleH/TotalCommunityBenefitsGrp/TotalExpensePct,False,,
201533089349301428,IRS990ScheduleH,Part II Line 6; Column (a),Coalition building; Number of activities or programs,6,skedh_part_ii.CltnBldng_ActvtsOrPrgrmsCnt,/IRS990ScheduleH/CoalitionBuildingGrp/ActivitiesOrProgramsCnt,False,,
201533089349301428,IRS990ScheduleH,Part II Line 6; Column (c),Coalition building; Total community building expense,25208,skedh_part_ii.CltnBldng_TtlCmmntyBnftExpnsAmt,/IRS990ScheduleH/CoalitionBuildingGrp/TotalCommunityBenefitExpnsAmt,False,,
201533089349301428,IRS990ScheduleH,Part II Line 6; Column (e),Coalition building; Net community building expense,25208,skedh_part_ii.CltnBldng_NtCmmntyBnftExpnsAmt,/IRS990ScheduleH/CoalitionBuildingGrp/NetCommunityBenefitExpnsAmt,False,,
201533089349301428,IRS990ScheduleH,Part II Line 10; Column (a),Total; Number of activities or programs,6,skedh_part_ii.TtlCmmnttyBldngActy_ActvtsOrPrgrmsCnt,/IRS990ScheduleH/TotalCommuntityBuildingActyGrp/ActivitiesOrProgramsCnt,False,,
201533089349301428,IRS990ScheduleH,Part II Line 10; Column (c),Total; Total community building expense,25208,skedh_part_ii.TtlCmmnttyBldngActy_TtlCmmntyBnftExpnsAmt,/IRS990ScheduleH/TotalCommuntityBuildingActyGrp/TotalCommunityBenefitExpnsAmt,False,,
201533089349301428,IRS990ScheduleH,Part II Line 10; Column (e),Total; Net community building expense,25208,skedh_part_ii.TtlCmmnttyBldngActy_NtCmmntyBnftExpnsAmt,/IRS990ScheduleH/TotalCommuntityBuildingActyGrp/NetCommunityBenefitExpnsAmt,False,,
201533089349301428,IRS990ScheduleH,Part III Section A Line 1,Bad debt expense reported?,false,skedh_part_iii.BdDbtExpnsRprtdInd,/IRS990ScheduleH/BadDebtExpenseReportedInd,False,,
201533089349301428,IRS990ScheduleH,Part III Section A Line 2,Bad debt expense amount,10077699,skedh_part_iii.BdDbtExpnsAmt,/IRS990ScheduleH/BadDebtExpenseAmt,False,,
201533089349301428,IRS990ScheduleH,Part III Section B Line 5,Amount reimbursed by Medicare,418727647,skedh_part_iii.RmbrsdByMdcrAmt,/IRS990ScheduleH/ReimbursedByMedicareAmt,False,,
201533089349301428,IRS990ScheduleH,Part III Section B Line 6,Cost of care reimbursed by Medicare,446647757,skedh_part_iii.CstOfCrRmbrsdByMdcrAmt,/IRS990ScheduleH/CostOfCareReimbursedByMedcrAmt,False,,
201533089349301428,IRS990ScheduleH,Part III Section B Line 7,Line 5 less line 6,-27920110,skedh_part_iii.MdcrSrplsOrShrtfllAmt,/IRS990ScheduleH/MedicareSurplusOrShortfallAmt,False,,
201533089349301428,IRS990ScheduleH,Part III Section B Line 8,Checkbox choice; Cost to charge ratio,X,skedh_part_iii.CstTChrgRtInd,/IRS990ScheduleH/CostingMethodologyUsedGrp/CostToChargeRatioInd,False,,
201533089349301428,IRS990ScheduleH,Part III Section C Line 9a,Written debt collection policy?,true,skedh_part_iii.WrttnDbtCllctnPlcyInd,/IRS990ScheduleH/WrittenDebtCollectionPolicyInd,False,,
201533089349301428,IRS990ScheduleH,Part III Section C Line 9b,Provision for financial assistance?,true,skedh_part_iii.FnnclAssstncPrvsnInd,/IRS990ScheduleH/FinancialAssistancePrvsnInd,False,,
201533089349301428,IRS990ScheduleH,Part IV Column (a),Part IV repeating group; Name of entity; Business name line 1,SUTTER AMADOR SURG C,SkdHMngmntCAndJntVntrs.BsnssNmLn1Txt,/IRS990ScheduleH/ManagementCoAndJntVenturesGrp/EntityName/BusinessNameLine1Txt,True,SkdHMngmntCAndJntVntrs,0
201533089349301428,IRS990ScheduleH,Part IV Column (b),Part IV repeating group; Description of entity's primary activity,MEDICAL SERVICES,SkdHMngmntCAndJntVntrs.PrmryActvtsTxt,/IRS990ScheduleH/ManagementCoAndJntVenturesGrp/PrimaryActivitiesTxt,True,SkdHMngmntCAndJntVntrs,0
201533089349301428,IRS990ScheduleH,Part IV Column (c),Part IV repeating group; Organization's profit % or ownership %,0.32000,SkdHMngmntCAndJntVntrs.OrgPrftOrOwnrshpPct,/IRS990ScheduleH/ManagementCoAndJntVenturesGrp/OrgProfitOrOwnershipPct,True,SkdHMngmntCAndJntVntrs,0
201533089349301428,IRS990ScheduleH,Part IV Column (e),Part IV repeating group; Physican's profit % or ownership %,0.27000,SkdHMngmntCAndJntVntrs.PhyscnsPrftOrOwnrshpPct,/IRS990ScheduleH/ManagementCoAndJntVenturesGrp/PhysiciansProfitOrOwnershipPct,True,SkdHMngmntCAndJntVntrs,0
201533089349301428,IRS990ScheduleH,Part V Section A,How many hospital facilities did the organization operate during the tax year?,8,skedh_part_va.HsptlFcltsCnt,/IRS990ScheduleH/HospitalFacilitiesCnt,False,,
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Hospital facility number,1,SkdHHsptlFclts.HsptlFclts_FcltyNm,/IRS990ScheduleH/HospitalFacilitiesGrp/FacilityNum,True,SkdHHsptlFclts,0
201533089349301428,IRS990ScheduleH,Part V Section A,"Part V Section A repeating group; Name, business; Business name line 1",SUTTER GENERAL HOSPITAL,SkdHHsptlFclts.BsnssNm_BsnssNmLn1Txt,/IRS990ScheduleH/HospitalFacilitiesGrp/BusinessName/BusinessNameLine1Txt,True,SkdHHsptlFclts,0
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Address - US; Address line 1,2801 L STREET,SkdHHsptlFclts.USAddrss_AddrssLn1Txt,/IRS990ScheduleH/HospitalFacilitiesGrp/USAddress/AddressLine1Txt,True,SkdHHsptlFclts,0
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Address - US; City,SACRAMENTO,SkdHHsptlFclts.USAddrss_CtyNm,/IRS990ScheduleH/HospitalFacilitiesGrp/USAddress/CityNm,True,SkdHHsptlFclts,0
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Address - US; State,CA,SkdHHsptlFclts.USAddrss_SttAbbrvtnCd,/IRS990ScheduleH/HospitalFacilitiesGrp/USAddress/StateAbbreviationCd,True,SkdHHsptlFclts,0
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Address - US; ZIP code,95816,SkdHHsptlFclts.USAddrss_ZIPCd,/IRS990ScheduleH/HospitalFacilitiesGrp/USAddress/ZIPCd,True,SkdHHsptlFclts,0
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Primary website address of the hospital facility,www.checksutterfirst.org,SkdHHsptlFclts.HsptlFclts_WbstAddrssTxt,/IRS990ScheduleH/HospitalFacilitiesGrp/WebsiteAddressTxt,True,SkdHHsptlFclts,0
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Hospital facilities state license number,LICENSE 030000102,SkdHHsptlFclts.HsptlFclts_SttLcnsNm,/IRS990ScheduleH/HospitalFacilitiesGrp/StateLicenseNum,True,SkdHHsptlFclts,0
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Licensed hospital,X,SkdHHsptlFclts.HsptlFclts_LcnsdHsptlInd,/IRS990ScheduleH/HospitalFacilitiesGrp/LicensedHospitalInd,True,SkdHHsptlFclts,0
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; General medical and surgical,X,SkdHHsptlFclts.HsptlFclts_GnrlMdclAndSrgclInd,/IRS990ScheduleH/HospitalFacilitiesGrp/GeneralMedicalAndSurgicalInd,True,SkdHHsptlFclts,0
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; ER - 24 hours,X,SkdHHsptlFclts.HsptlFclts_EmrgncyRm24HrsInd,/IRS990ScheduleH/HospitalFacilitiesGrp/EmergencyRoom24HrsInd,True,SkdHHsptlFclts,0
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Facility reporting group,A,SkdHHsptlFclts.HsptlFclts_FcltyRprtngGrpCd,/IRS990ScheduleH/HospitalFacilitiesGrp/FacilityReportingGroupCd,True,SkdHHsptlFclts,0
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Hospital facility number,2,SkdHHsptlFclts.HsptlFclts_FcltyNm,/IRS990ScheduleH/HospitalFacilitiesGrp/FacilityNum,True,SkdHHsptlFclts,1
201533089349301428,IRS990ScheduleH,Part V Section A,"Part V Section A repeating group; Name, business; Business name line 1",SUTTER ROSEVILLE MEDICAL CENTER,SkdHHsptlFclts.BsnssNm_BsnssNmLn1Txt,/IRS990ScheduleH/HospitalFacilitiesGrp/BusinessName/BusinessNameLine1Txt,True,SkdHHsptlFclts,1
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Address - US; Address line 1,ONE MEDICAL PLAZA,SkdHHsptlFclts.USAddrss_AddrssLn1Txt,/IRS990ScheduleH/HospitalFacilitiesGrp/USAddress/AddressLine1Txt,True,SkdHHsptlFclts,1
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Address - US; City,ROSEVILLE,SkdHHsptlFclts.USAddrss_CtyNm,/IRS990ScheduleH/HospitalFacilitiesGrp/USAddress/CityNm,True,SkdHHsptlFclts,1
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Address - US; State,CA,SkdHHsptlFclts.USAddrss_SttAbbrvtnCd,/IRS990ScheduleH/HospitalFacilitiesGrp/USAddress/StateAbbreviationCd,True,SkdHHsptlFclts,1
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Address - US; ZIP code,95661,SkdHHsptlFclts.USAddrss_ZIPCd,/IRS990ScheduleH/HospitalFacilitiesGrp/USAddress/ZIPCd,True,SkdHHsptlFclts,1
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Primary website address of the hospital facility,WWW.SUTTERROSEVILLE.ORG,SkdHHsptlFclts.HsptlFclts_WbstAddrssTxt,/IRS990ScheduleH/HospitalFacilitiesGrp/WebsiteAddressTxt,True,SkdHHsptlFclts,1
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Hospital facilities state license number,LICENSE 030000083,SkdHHsptlFclts.HsptlFclts_SttLcnsNm,/IRS990ScheduleH/HospitalFacilitiesGrp/StateLicenseNum,True,SkdHHsptlFclts,1
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Licensed hospital,X,SkdHHsptlFclts.HsptlFclts_LcnsdHsptlInd,/IRS990ScheduleH/HospitalFacilitiesGrp/LicensedHospitalInd,True,SkdHHsptlFclts,1
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; General medical and surgical,X,SkdHHsptlFclts.HsptlFclts_GnrlMdclAndSrgclInd,/IRS990ScheduleH/HospitalFacilitiesGrp/GeneralMedicalAndSurgicalInd,True,SkdHHsptlFclts,1
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; ER - 24 hours,X,SkdHHsptlFclts.HsptlFclts_EmrgncyRm24HrsInd,/IRS990ScheduleH/HospitalFacilitiesGrp/EmergencyRoom24HrsInd,True,SkdHHsptlFclts,1
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Facility reporting group,A,SkdHHsptlFclts.HsptlFclts_FcltyRprtngGrpCd,/IRS990ScheduleH/HospitalFacilitiesGrp/FacilityReportingGroupCd,True,SkdHHsptlFclts,1
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Hospital facility number,3,SkdHHsptlFclts.HsptlFclts_FcltyNm,/IRS990ScheduleH/HospitalFacilitiesGrp/FacilityNum,True,SkdHHsptlFclts,2
201533089349301428,IRS990ScheduleH,Part V Section A,"Part V Section A repeating group; Name, business; Business name line 1",SUTTER MEMORIAL HOSPITAL,SkdHHsptlFclts.BsnssNm_BsnssNmLn1Txt,/IRS990ScheduleH/HospitalFacilitiesGrp/BusinessName/BusinessNameLine1Txt,True,SkdHHsptlFclts,2
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Address - US; Address line 1,5151 F STREET,SkdHHsptlFclts.USAddrss_AddrssLn1Txt,/IRS990ScheduleH/HospitalFacilitiesGrp/USAddress/AddressLine1Txt,True,SkdHHsptlFclts,2
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Address - US; City,SACRAMENTO,SkdHHsptlFclts.USAddrss_CtyNm,/IRS990ScheduleH/HospitalFacilitiesGrp/USAddress/CityNm,True,SkdHHsptlFclts,2
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Address - US; State,CA,SkdHHsptlFclts.USAddrss_SttAbbrvtnCd,/IRS990ScheduleH/HospitalFacilitiesGrp/USAddress/StateAbbreviationCd,True,SkdHHsptlFclts,2
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Address - US; ZIP code,95819,SkdHHsptlFclts.USAddrss_ZIPCd,/IRS990ScheduleH/HospitalFacilitiesGrp/USAddress/ZIPCd,True,SkdHHsptlFclts,2
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Primary website address of the hospital facility,www.checksutterfirst.org,SkdHHsptlFclts.HsptlFclts_WbstAddrssTxt,/IRS990ScheduleH/HospitalFacilitiesGrp/WebsiteAddressTxt,True,SkdHHsptlFclts,2
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Hospital facilities state license number,LICENSE 030000102,SkdHHsptlFclts.HsptlFclts_SttLcnsNm,/IRS990ScheduleH/HospitalFacilitiesGrp/StateLicenseNum,True,SkdHHsptlFclts,2
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Licensed hospital,X,SkdHHsptlFclts.HsptlFclts_LcnsdHsptlInd,/IRS990ScheduleH/HospitalFacilitiesGrp/LicensedHospitalInd,True,SkdHHsptlFclts,2
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; General medical and surgical,X,SkdHHsptlFclts.HsptlFclts_GnrlMdclAndSrgclInd,/IRS990ScheduleH/HospitalFacilitiesGrp/GeneralMedicalAndSurgicalInd,True,SkdHHsptlFclts,2
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; ER - 24 hours,X,SkdHHsptlFclts.HsptlFclts_EmrgncyRm24HrsInd,/IRS990ScheduleH/HospitalFacilitiesGrp/EmergencyRoom24HrsInd,True,SkdHHsptlFclts,2
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Facility reporting group,A,SkdHHsptlFclts.HsptlFclts_FcltyRprtngGrpCd,/IRS990ScheduleH/HospitalFacilitiesGrp/FacilityReportingGroupCd,True,SkdHHsptlFclts,2
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Hospital facility number,4,SkdHHsptlFclts.HsptlFclts_FcltyNm,/IRS990ScheduleH/HospitalFacilitiesGrp/FacilityNum,True,SkdHHsptlFclts,3
201533089349301428,IRS990ScheduleH,Part V Section A,"Part V Section A repeating group; Name, business; Business name line 1",SUTTER SOLANO MEDICAL CENTER,SkdHHsptlFclts.BsnssNm_BsnssNmLn1Txt,/IRS990ScheduleH/HospitalFacilitiesGrp/BusinessName/BusinessNameLine1Txt,True,SkdHHsptlFclts,3
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Address - US; Address line 1,300 HOSPITAL DRIVE,SkdHHsptlFclts.USAddrss_AddrssLn1Txt,/IRS990ScheduleH/HospitalFacilitiesGrp/USAddress/AddressLine1Txt,True,SkdHHsptlFclts,3
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Address - US; City,VALLEJO,SkdHHsptlFclts.USAddrss_CtyNm,/IRS990ScheduleH/HospitalFacilitiesGrp/USAddress/CityNm,True,SkdHHsptlFclts,3
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Address - US; State,CA,SkdHHsptlFclts.USAddrss_SttAbbrvtnCd,/IRS990ScheduleH/HospitalFacilitiesGrp/USAddress/StateAbbreviationCd,True,SkdHHsptlFclts,3
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Address - US; ZIP code,94589,SkdHHsptlFclts.USAddrss_ZIPCd,/IRS990ScheduleH/HospitalFacilitiesGrp/USAddress/ZIPCd,True,SkdHHsptlFclts,3
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Primary website address of the hospital facility,WWW.SUTTERSOLANO.ORG,SkdHHsptlFclts.HsptlFclts_WbstAddrssTxt,/IRS990ScheduleH/HospitalFacilitiesGrp/WebsiteAddressTxt,True,SkdHHsptlFclts,3
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Hospital facilities state license number,LICENSE 110000082,SkdHHsptlFclts.HsptlFclts_SttLcnsNm,/IRS990ScheduleH/HospitalFacilitiesGrp/StateLicenseNum,True,SkdHHsptlFclts,3
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Licensed hospital,X,SkdHHsptlFclts.HsptlFclts_LcnsdHsptlInd,/IRS990ScheduleH/HospitalFacilitiesGrp/LicensedHospitalInd,True,SkdHHsptlFclts,3
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; General medical and surgical,X,SkdHHsptlFclts.HsptlFclts_GnrlMdclAndSrgclInd,/IRS990ScheduleH/HospitalFacilitiesGrp/GeneralMedicalAndSurgicalInd,True,SkdHHsptlFclts,3
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; ER - 24 hours,X,SkdHHsptlFclts.HsptlFclts_EmrgncyRm24HrsInd,/IRS990ScheduleH/HospitalFacilitiesGrp/EmergencyRoom24HrsInd,True,SkdHHsptlFclts,3
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Facility reporting group,A,SkdHHsptlFclts.HsptlFclts_FcltyRprtngGrpCd,/IRS990ScheduleH/HospitalFacilitiesGrp/FacilityReportingGroupCd,True,SkdHHsptlFclts,3
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Hospital facility number,5,SkdHHsptlFclts.HsptlFclts_FcltyNm,/IRS990ScheduleH/HospitalFacilitiesGrp/FacilityNum,True,SkdHHsptlFclts,4
201533089349301428,IRS990ScheduleH,Part V Section A,"Part V Section A repeating group; Name, business; Business name line 1",SUTTER AUBURN FAITH HOSPITAL,SkdHHsptlFclts.BsnssNm_BsnssNmLn1Txt,/IRS990ScheduleH/HospitalFacilitiesGrp/BusinessName/BusinessNameLine1Txt,True,SkdHHsptlFclts,4
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Address - US; Address line 1,11815 EDUCATION STREET,SkdHHsptlFclts.USAddrss_AddrssLn1Txt,/IRS990ScheduleH/HospitalFacilitiesGrp/USAddress/AddressLine1Txt,True,SkdHHsptlFclts,4
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Address - US; City,AUBURN,SkdHHsptlFclts.USAddrss_CtyNm,/IRS990ScheduleH/HospitalFacilitiesGrp/USAddress/CityNm,True,SkdHHsptlFclts,4
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Address - US; State,CA,SkdHHsptlFclts.USAddrss_SttAbbrvtnCd,/IRS990ScheduleH/HospitalFacilitiesGrp/USAddress/StateAbbreviationCd,True,SkdHHsptlFclts,4
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Address - US; ZIP code,95602,SkdHHsptlFclts.USAddrss_ZIPCd,/IRS990ScheduleH/HospitalFacilitiesGrp/USAddress/ZIPCd,True,SkdHHsptlFclts,4
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Primary website address of the hospital facility,WWW.SUTTERAUBURNFAITH.ORG,SkdHHsptlFclts.HsptlFclts_WbstAddrssTxt,/IRS990ScheduleH/HospitalFacilitiesGrp/WebsiteAddressTxt,True,SkdHHsptlFclts,4
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Hospital facilities state license number,LICENSE 030000012,SkdHHsptlFclts.HsptlFclts_SttLcnsNm,/IRS990ScheduleH/HospitalFacilitiesGrp/StateLicenseNum,True,SkdHHsptlFclts,4
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Licensed hospital,X,SkdHHsptlFclts.HsptlFclts_LcnsdHsptlInd,/IRS990ScheduleH/HospitalFacilitiesGrp/LicensedHospitalInd,True,SkdHHsptlFclts,4
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; General medical and surgical,X,SkdHHsptlFclts.HsptlFclts_GnrlMdclAndSrgclInd,/IRS990ScheduleH/HospitalFacilitiesGrp/GeneralMedicalAndSurgicalInd,True,SkdHHsptlFclts,4
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; ER - 24 hours,X,SkdHHsptlFclts.HsptlFclts_EmrgncyRm24HrsInd,/IRS990ScheduleH/HospitalFacilitiesGrp/EmergencyRoom24HrsInd,True,SkdHHsptlFclts,4
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Facility reporting group,A,SkdHHsptlFclts.HsptlFclts_FcltyRprtngGrpCd,/IRS990ScheduleH/HospitalFacilitiesGrp/FacilityReportingGroupCd,True,SkdHHsptlFclts,4
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Hospital facility number,6,SkdHHsptlFclts.HsptlFclts_FcltyNm,/IRS990ScheduleH/HospitalFacilitiesGrp/FacilityNum,True,SkdHHsptlFclts,5
201533089349301428,IRS990ScheduleH,Part V Section A,"Part V Section A repeating group; Name, business; Business name line 1",SUTTER CENTER FOR PSYCHIATRY,SkdHHsptlFclts.BsnssNm_BsnssNmLn1Txt,/IRS990ScheduleH/HospitalFacilitiesGrp/BusinessName/BusinessNameLine1Txt,True,SkdHHsptlFclts,5
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Address - US; Address line 1,7700 FOLSOM STREET,SkdHHsptlFclts.USAddrss_AddrssLn1Txt,/IRS990ScheduleH/HospitalFacilitiesGrp/USAddress/AddressLine1Txt,True,SkdHHsptlFclts,5
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Address - US; City,SACRAMENTO,SkdHHsptlFclts.USAddrss_CtyNm,/IRS990ScheduleH/HospitalFacilitiesGrp/USAddress/CityNm,True,SkdHHsptlFclts,5
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Address - US; State,CA,SkdHHsptlFclts.USAddrss_SttAbbrvtnCd,/IRS990ScheduleH/HospitalFacilitiesGrp/USAddress/StateAbbreviationCd,True,SkdHHsptlFclts,5
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Address - US; ZIP code,95826,SkdHHsptlFclts.USAddrss_ZIPCd,/IRS990ScheduleH/HospitalFacilitiesGrp/USAddress/ZIPCd,True,SkdHHsptlFclts,5
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Primary website address of the hospital facility,www.checksutterfirst.org,SkdHHsptlFclts.HsptlFclts_WbstAddrssTxt,/IRS990ScheduleH/HospitalFacilitiesGrp/WebsiteAddressTxt,True,SkdHHsptlFclts,5
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Hospital facilities state license number,LICENSE 030000347,SkdHHsptlFclts.HsptlFclts_SttLcnsNm,/IRS990ScheduleH/HospitalFacilitiesGrp/StateLicenseNum,True,SkdHHsptlFclts,5
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Licensed hospital,X,SkdHHsptlFclts.HsptlFclts_LcnsdHsptlInd,/IRS990ScheduleH/HospitalFacilitiesGrp/LicensedHospitalInd,True,SkdHHsptlFclts,5
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Facility reporting group,A,SkdHHsptlFclts.HsptlFclts_FcltyRprtngGrpCd,/IRS990ScheduleH/HospitalFacilitiesGrp/FacilityReportingGroupCd,True,SkdHHsptlFclts,5
201533089349301428,IRS990ScheduleH,Part V Section A,Part V Section A repeating group; Hospital facility number,7,SkdHHsptlFclts.HsptlFclts_FcltyNm,/IRS990ScheduleH/HospitalFacilitiesGrp/FacilityNum,True,SkdHHsptlFclts,6
201533089349301428,IRS990ScheduleH,Part V Section A,"Part V Section A repeating group; Name, business; Business name line 1",SUTTER AMADOR HOSPITAL,SkdHHsptlFclts.BsnssNm_BsnssNmLn1Txt,/IRS990ScheduleH/HospitalFacilitiesGrp/BusinessName/BusinessNameLine1Txt,True,SkdHHsptlFclts,6