-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocument.html
More file actions
1562 lines (1523 loc) · 143 KB
/
Copy pathdocument.html
File metadata and controls
1562 lines (1523 loc) · 143 KB
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
---
layout: default
title: 'Trump Budget'
fluid: true
bg-inverted: false
---
<div class="container-fluid">
<div class="container">
<!-- Intro -->
<div class="jumbotron">
<h1>America First-A Budget Blueprint to Make America Great Again</h1>
<p>Shared for by feedback by Congressman Seth Moulton
<button type="button" class="btn btn-default btn-xs"><i class="fa fa-heart" aria-hidden="true"></i> Say Thanks! (88)</button>
</p>
<hr>
<div class="row small">
<div class="col-md-6">
<p>I'm Congressman Seth Moulton, and I want to hear your thoughts on President Trump's budget blueprint here in Madison. I want to hear directly from you about how the President's budget impacts you, your family, your business, and your ability to achieve the American dream. </p>
<p>A budget shows what we care about. It shows our values. As Americans, we care about creating good paying jobs so that everyone who works hard gets a shot at the American Dream. And we care about national security: our most solemn obligation is to keep Americans safe at home and abroad.</p>
<p>I believe that President Trump's budget isn’t serious about moving our economy forward or keeping Americans safe. How do I know? Guess what word he never once mentions in his introduction: <strong>Jobs.</strong> Think that’s a fluke? Here are some other things he never mentions: <strong>The Economy. Opportunity. Innovation. Entrepreneurship. Infrastructure Investment. Research and Development.</strong> These are all critical components to reigniting the American Dream.</p>
</div>
<div class="col-md-6 small">
<p>But what do <strong>you</strong> think? <a href="https://documents.mymadison.io/user/signup">Create an account</a> and weigh in directly on the budget below. Ask questions. Propose changes. Share your story. Your input is critical to helping me fight for you as Congress considers the President's proposal. </p>
<p>Thanks for your thoughts,</p>
<p>Seth</p>
<p><strong>Resources</strong></p>
<ul>
<li><a href="https://www.washingtonpost.com/graphics/politics/trump-presidential-budget-2018-proposal/?utm_term=.1e94789d5755">"What Trump Cut In His Budget" <em>-The Washington Post</em></a></li>
<li>Watch a <a href="https://www.youtube.com/watch?v=qfhBO6u-xJY">Quick-Start Video on Governing Better, Together, With Madison</a> </li>
<li><a href="https://moulton.house.gov/contact/">Contact Congressman Seth Moulton by phone, email & more</a></li>
<li><a href="https://www.whitehouse.gov/sites/whitehouse.gov/files/omb/budget/fy2018/2018_blueprint.pdf">Download President Trump's budget blueprint</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="row">
<div style="position: absolute; right:20px; width: 200px;">
<p><em>TODO: Make comments work like this:</em></p>
<em>
<ul>
<li>Popups are now obsolete.</li>
<li>On highlight, +<i class="fa fa-comment" aria-hidden="true"></i> bubble appears in right margin.</li>
<li>Clicking +<i class="fa fa-comment" aria-hidden="true"></i> opens the panel with a comment form in the right margin.</li>
<li>Clicking on an existing highlight will open the panel to show the comment.</li>
<li>Posting a new opinion or replying to an existing opinion in the panel will mirror the comments below, with a comment textarea at the top and replies are hidden by default.</li>
<li>Users can write an opinion to an existing highlight in the panel and not be required to reply.</li>
</ul>
</em>
</div>
<!-- Outline -->
<div class="col-sm-3 col-md-2 panel">
<p><em>TODO: affixed, nested (for length), and use scrollspy</em></p>
<!-- https://www.sitepoint.com/understanding-bootstraps-affix-scrollspy-plugins/ -->
<ul id="doc-outline" class="nav nav-pills nav-stacked">
<li role="presentation" class="toc-h1">
<a href="#heading-0">Office of Management and Budget</a>
</li>
<li role="presentation" class="toc-h1">
<a href="#heading-1">A Message from the President of the United States</a>
</li>
<li role="presentation" class="toc-h1">
<a href="#heading-2">A Message from the Director, Office of Management and Budget</a>
</li>
<li role="presentation" class="toc-h1">
<a href="#heading-3">MAJOR AGENCY BUDGET HIGHLIGHTS</a>
</li>
<li role="presentation" class="toc-h1">
<a href="#heading-4">MANAGEMENT</a>
</li>
<li role="presentation" class="toc-h1">
<a href="#heading-5">REGULATION</a>
</li>
<li role="presentation" class="toc-h1">
<a href="#heading-6">DEPARTMENT OF AGRICULTURE</a>
</li>
<li role="presentation" class="toc-h1">
<a href="#heading-7">DEPARTMENT OF COMMERCE</a>
</li>
<li role="presentation" class="toc-h1">
<a href="#heading-8">DEPARTMENT OF DEFENSE</a>
</li>
<li role="presentation" class="toc-h1">
<a href="#heading-9">DEPARTMENT OF EDUCATION</a>
</li>
<li role="presentation" class="toc-h1">
<a href="#heading-10">DEPARTMENT OF ENERGY</a>
</li>
<li role="presentation" class="toc-h1">
<a href="#heading-11">DEPARTMENT OF HEALTH AND HUMAN SERVICES</a>
</li>
<li role="presentation" class="toc-h1">
<a href="#heading-12">DEPARTMENT OF HOMELAND SECURITY</a>
</li>
<li role="presentation" class="toc-h1">
<a href="#heading-13">DEPARTMENT OF HOUSING AND URBAN DEVELOPMENT</a>
</li>
<li role="presentation" class="toc-h1">
<a href="#heading-14">DEPARTMENT OF THE INTERIOR</a>
</li>
<li role="presentation" class="toc-h1">
<a href="#heading-15">DEPARTMENT OF JUSTICE</a>
</li>
<li role="presentation" class="toc-h1">
<a href="#heading-16">DEPARTMENT OF LABOR</a>
</li>
<li role="presentation" class="toc-h1">
<a href="#heading-17">DEPARTMENT OF STATE, USAID, AND TREASURY INTERNATIONAL PROGRAMS</a>
</li>
<li role="presentation" class="toc-h1">
<a href="#heading-18">DEPARTMENT OF TRANSPORTATION</a>
</li>
<li role="presentation" class="toc-h1">
<a href="#heading-19">DEPARTMENT OF THE TREASURY</a>
</li>
<li role="presentation" class="toc-h1">
<a href="#heading-20">DEPARTMENT OF VETERANS AFFAIRS</a>
</li>
<li role="presentation" class="toc-h1">
<a href="#heading-21">ENVIRONMENTAL PROTECTION AGENCY</a>
</li>
<li role="presentation" class="toc-h1">
<a href="#heading-22">NATIONAL AERONAUTICS AND SPACE ADMINISTRATION</a>
</li>
<li role="presentation" class="toc-h1">
<a href="#heading-23">SMALL BUSINESS ADMINISTRATION</a>
</li>
<li role="presentation" class="toc-h1">
<a href="#heading-24">Summary Tables</a>
</li>
<li role="presentation" class="toc-h1">
<a href="#heading-25">Table 1. Proposed Discretionary Caps for 2018 Budget</a>
</li>
<li role="presentation" class="toc-h1">
<a href="#heading-26">Table 2. 2018 Discretionary Overview by Major Agency</a>
</li>
<li role="presentation" class="toc-h1">
<a href="#heading-27">Table 3. Major 2018 Budget Changes from Current Law</a>
</li>
<li role="presentation" class="toc-h1">
<a href="#heading-28">Table 4. Major 2017 Changes from Security Supplemental Request</a>
</li>
</ul>
</div>
<!-- Content -->
<div class="col-xs-11 col-sm-8 show-less">
<div class="document-content">
<div class="pull-right">
<div><small>What do you think of this document?</small></div>
<a href="#" class="btn btn-primary btn-xs"><i class="fa fa-thumbs-up" aria-hidden="true"></i> Support <small>(12)</small></a> <a href="#" class="btn btn-primary btn-xs"><i class="fa fa-thumbs-down" aria-hidden="true"></i> Oppose <small>(101)</small></a>
</div>
<h1 id="heading-0" class="anchor">Office of Management and Budget</h1>
<hr>
<h1 id="heading-1" class="anchor">A Message from the President of the United States</h1>
<p>AMERICA FIRST</p>
<p id="annotationGroup-46"><span class="annotator-hl" id="annotation_2356" name="annotation_2356">Beginning a New Chapter of American Greatness</span></p>
<p>A MESSAGE TO THE CONGRESS OF THE UNITED STATES:</p>
<p id="annotationGroup-47">The American people elected me to fight for their priorities in Washington, D.C. and deliver on my promise to protect our Nation.<span class="annotator-hl" id="annotation_2371" name="annotation_2371"> I fully intend to keep that promise.</span></p>
<p>One of the most important ways the Federal Government sets priorities is through the Budget of the United States.</p>
<p id="annotationGroup-41">Accordingly, I submit to the Congress this Budget Blueprint to reprioritize Federal spending so that it <span class="annotator-hl" id="annotation_2303" name="annotation_2303"><span class="annotator-hl" id="annotation_2677" name="annotation_2677">advances the safety and security of the American people</span>.</span>
</p>
<p id="annotationGroup-48">Our aim is to meet the simple, but crucial demand of our citizens—a <span class="annotator-hl" id="annotation_2646" name="annotation_2646">Government that puts the needs of its own people first.</span> <span class="annotator-hl" id="annotation_2374" name="annotation_2374">When we do that, we will set free the dreams of every American, and we will begin a new chapter of American greatness.</span></p>
<p id="annotationGroup-33">A budget that puts America first <span class="annotator-hl" id="annotation_2254" name="annotation_2254">must make the safety of our people its number one priority</span>— <span class="annotator-hl" id="annotation_2259" name="annotation_2259">because without safety, there can be no prosperity</span>.</p>
<p id="annotationGroup-93">That is why I have instructed my Budget Director, Mick Mulvaney, to craft a budget that emphasizes <span class="annotator-hl" id="annotation_2940" name="annotation_2940">national security and public safety</span>. That work is reflected in this Budget Blueprint. <span class="annotator-hl" id="annotation_2699" name="annotation_2699">To keep Americans safe, we have made tough choices that have been put off for too long. But we have also made necessary investments that are long overdue.</span></p>
<p>My Budget Blueprint for 2018:</p>
<ul>
<li>
<p id="annotationGroup-84"><span class="annotator-hl" id="annotation_2943" name="annotation_2943">provides for one of the largest increases in defense spending without </span><span class="annotator-hl" id="annotation_2554" name="annotation_2554"><span class="annotator-hl" id="annotation_2943" name="annotation_2943">increasing the debt;</span></span>
</p>
</li>
<li>
<p id="annotationGroup-110"><span class="annotator-hl" id="annotation_2948" name="annotation_2948">significantly increases the budget for immigration enforcement at the Department of Justice and the Department of Homeland Security</span>;</p>
</li>
<li>
<p id="annotationGroup-1"><span class="annotator-hl" id="annotation_2681" name="annotation_2681">includes additional resources</span> for a <span class="annotator-hl" id="annotation_2144" name="annotation_2144"><span class="annotator-hl" id="annotation_2180" name="annotation_2180"><span class="annotator-hl" id="annotation_2184" name="annotation_2184"><span class="annotator-hl" id="annotation_2659" name="annotation_2659">wall on the southern border with Mexico</span></span>
</span>
</span>, immigration judges, <span class="annotator-hl" id="annotation_2386" name="annotation_2386">expanded detention capacity,</span> U.S. Attorneys, U.S. Immigration and Customs Enforcement, and Border Patrol;</p>
</li>
<li>
<p id="annotationGroup-43">increases funding to address violent crime and <span class="annotator-hl" id="annotation_2337" name="annotation_2337">reduces</span> <span class="annotator-hl" id="annotation_2964" name="annotation_2964">opioid abuse;</span> and</p>
</li>
<li>
<p id="annotationGroup-94"><span class="annotator-hl" id="annotation_2735" name="annotation_2735">puts America first by keeping more of America’s hard-earned tax dollars here at home.</span></p>
</li>
</ul>
<p id="annotationGroup-2">The core of my first Budget Blueprint is the <span class="annotator-hl" id="annotation_2152" name="annotation_2152">rebuilding of our Nation’s military</span> without adding to our Federal deficit. <span class="annotator-hl" id="annotation_2394" name="annotation_2394">There is a $54 billion increase in defense spending in 2018 that is offset by targeted reductions elsewhere.</span> <span class="annotator-hl" id="annotation_2967" name="annotation_2967">This defense funding is vital to rebuilding and preparing our Armed Forces for the future.</span>We must ensure that our courageous servicemen and women have the tools they need to deter war, and when called upon to fight, do only one thing: Win. In these dangerous times, this <span class="annotator-hl" id="annotation_3026" name="annotation_3026">public safety and national security</span> Budget Blueprint is a <span class="annotator-hl" id="annotation_2560" name="annotation_2560">message to the world—</span>a message of American strength, security, and resolve.
<span class="annotator-hl" id="annotation_2271" name="annotation_2271">This Budget Blueprint follows through on my promise to focus on keeping Americans safe, keeping terrorists out of our country, and putting violent offenders behind bars.</span></p>
<p id="annotationGroup-25">The defense and public safety spending increases in this Budget Blueprint are offset and paid for by finding greater savings and efficiencies across the Federal Government. Our Budget Blueprint insists on <span class="annotator-hl" id="annotation_3032" name="annotation_3032">$54 billion in reductions to non-Defense programs</span>. We are going to do <span class="annotator-hl" id="annotation_2278" name="annotation_2278">more with less</span>, and make the Government lean and <span class="annotator-hl" id="annotation_3034" name="annotation_3034">accountable to the people</span>. <span class="annotator-hl" id="annotation_3142" name="annotation_3142">This includes </span><span class="annotator-hl" id="annotation_2233" name="annotation_2233"><span class="annotator-hl" id="annotation_3142" name="annotation_3142">deep cuts to foreign aid</span></span><span class="annotator-hl" id="annotation_3142" name="annotation_3142">.</span> It is time to prioritize the security and well-being of Americans, and to ask the rest of the world to step up and pay its fair share.</p>
<p id="annotationGroup-40"><span class="annotator-hl" id="annotation_2308" name="annotation_2308">Many other Government agencies and departments will also experience cuts.</span> <span class="annotator-hl" id="annotation_2288" name="annotation_2288"><span class="annotator-hl" id="annotation_2403" name="annotation_2403">These cuts are sensible and rational.</span></span> <span class="annotator-hl" id="annotation_3038" name="annotation_3038">Every agency and department will be driven to achieve greater efficiency and to eliminate wasteful spending in carrying out their honorable service to the American people.</span> I look forward to engaging the Congress and enacting this America First Budget.</p>
<p>— Donald J. Trump</p>
<h1 id="heading-2" class="anchor">A Message from the Director, Office of Management and Budget</h1>
<p>I am proud to introduce the “America First” Budget.</p>
<p id="annotationGroup-115">While recognizing this Blueprint is not the full Federal budget, it does provide lawmakers and the public with <span class="annotator-hl" id="annotation_3040" name="annotation_3040">a view of the priorities of the President and his Administration</span>. The Federal budget is a complex document. However, working for a President committed to keeping his promises means my job is as simple as translating his words into numbers.</p>
<p id="annotationGroup-26">That is why you will find here a familiar focus on rebuilding and restoring our Nation’s security. Under the Obama Administration, <span class="annotator-hl" id="annotation_2236" name="annotation_2236">our shrinking military has been stretched far too thin</span>. The military has been forced to make <span class="annotator-hl" id="annotation_2379" name="annotation_2379">aging ships, planes, and other vehicles last well beyond their intended life spans.</span> The President will reverse this dangerous trend. From rebuilding our Armed Forces to beefing up our border security and safeguarding our Nation’s sovereignty, this Budget <span class="annotator-hl" id="annotation_3043" name="annotation_3043">makes security priority one</span>.</p>
<p id="annotationGroup-52">It does so while meeting another of the President’s core commitments: addressing our Nation’s priorities <span class="annotator-hl" id="annotation_2407" name="annotation_2407">without sending future generations an even bigger credit card bill.</span> This 2018 Budget Blueprint will not add to the deficit. <span class="annotator-hl" id="annotation_2409" name="annotation_2409">It has been crafted much the same way any American family creates its own budget while paying bills around their kitchen table;</span> it makes hard choices.</p>
<p id="annotationGroup-99"><span class="annotator-hl" id="annotation_2794" name="annotation_2794">The President’s commitment to fiscal responsibility is historic</span>. Not since early in President Reagan’s first term have more tax dollars been saved and more Government inefficiency and waste been targeted. Every corner of the Federal budget is scrutinized, every program tested, every penny of taxpayer money watched over.
<span class="annotator-hl" id="annotation_2970" name="annotation_2970">Our $20 trillion national debt is a crisis, not just for the Nation, but for every citizen.</span> Each American’s share of this debt is more than $60,000 and growing. It is a challenge of great stakes, but one the American people can solve. A<span class="annotator-hl" id="annotation_2979" name="annotation_2979">merican families make tough decisions ever</span>y day about their own budgets; it is time Washington does the same.</p>
<p>— Mick Mulvaney</p>
<h1 id="heading-3" class="anchor">MAJOR AGENCY BUDGET HIGHLIGHTS</h1>
<p>The 2018 Budget is being unveiled sequentially in that this Blueprint provides details only on our discretionary funding proposals. The full Budget that will be released later this spring will include our specific mandatory and tax proposals, as well as a full fiscal path.</p>
<p id="annotationGroup-3">For instance, the President has emphasized that one of his top priorities is <span class="annotator-hl" id="annotation_2154" name="annotation_2154">modernizing the outdated infrastructure</span> that the American public depends upon. To spearhead his infrastructure initiative, the President has tapped a group of infrastructure experts to evaluate investment options along with commonsense regulatory, administrative, organizational, and policy changes to encourage investment and speed project delivery. Through his initiative, the President is committed to making sure that taxpayer dollars are expended for the <span class="annotator-hl" id="annotation_3048" name="annotation_3048">highest return projects</span> and that all levels of government maximize leverage to get the best deals and<span class="annotator-hl" id="annotation_2398" name="annotation_2398"> exercise vigorous oversigh</span>t. The Administration will provide more budgetary, tax, and legislative details in the coming months.</p>
<p>In the chapters that follow, Budget highlights are presented for major agencies. Consistent with the President’s approach to move the Nation toward fiscal responsibility, the Budget eliminates and reduces hundreds of programs and focuses funding to redefine the proper role of the Federal Government.</p>
<p id="annotationGroup-4">The Budget also proposes to eliminate funding for other independent agencies, including: the <span class="annotator-hl" id="annotation_2558" name="annotation_2558">African Development Foundation</span>; the<span class="annotator-hl" id="annotation_2565" name="annotation_2565"> Appalachian Regional Commission</span>; the <span class="annotator-hl" id="annotation_2157" name="annotation_2157">Chemical Safety Board</span>; the <span class="annotator-hl" id="annotation_2663" name="annotation_2663">Corporation for National and Community Service</span>; the <span class="annotator-hl" id="annotation_2159" name="annotation_2159">Corporation for Public Broadcasting</span>; the Delta Regional Authority; the Denali Commission;<span class="annotator-hl" id="annotation_3146" name="annotation_3146"> the Institute of Museum and Library Services</span>; the Inter-American Foundation; the U.S. Trade and Development Agency; the<span class="annotator-hl" id="annotation_2465" name="annotation_2465"> Legal Services Corporation</span>; the <span class="annotator-hl" id="annotation_2162" name="annotation_2162">National Endowment for the Arts</span>; the <span class="annotator-hl" id="annotation_3148" name="annotation_3148">National Endowment for the Humanities</span>; the Neighborhood Reinvestment Corporation; the Northern Border Regional Commission; the Overseas Private Investment Corporation; the <span class="annotator-hl" id="annotation_2985" name="annotation_2985">United States Institute of Peace</span>; the United States Interagency Council on Homelessness; and the Woodrow Wilson International Center for <span class="annotator-hl" id="annotation_2418" name="annotation_2418">Scholars</span>.</p>
<h1 id="heading-4" class="anchor">MANAGEMENT</h1>
<p>Making Government Work Again</p>
<p>The Federal Government can—and should— operate more effectively, efficiently, and securely. For decades, leaders on both sides of the aisle have talked about the need to make Government work better. The President is taking bold action now to make Government work again for the American people.</p>
<p id="annotationGroup-5">As one of his first acts as President, on January 23, 2017, the President issued a memorandum imposing a Federal <span class="annotator-hl" id="annotation_3060" name="annotation_3060">“Hiring Freeze”</span> and requiring a <span class="annotator-hl" id="annotation_2165" name="annotation_2165">long-term plan to reduce the size of the Federal Government’s workforce</span>. In addition, on March 13, 2017, the President signed Executive Order 13781 establishing a “<span class="annotator-hl" id="annotation_2424" name="annotation_2424">Comprehensive Plan for Reorganizing the Executive Branch</span>,” which set in motion the important work of reorganizing executive departments and agencies. These two actions are complementary and plans should reflect both Presidential actions. Legislation will be required before major reorganization of the Executive Branch can take place, but the White House is best situated to review and recommend changes to the Congress. In roughly a year, the Congress will receive from the President and the Director of the Office of Management and Budget (OMB) a comprehensive plan for <span class="annotator-hl" id="annotation_2987" name="annotation_2987">reorganization proposals</span>. The White House will work closely with congressional committees with jurisdiction over Government organization to ensure the needed reforms actually happen.</p>
<p>Simultaneously, the Administration will develop the President’s Management Agenda focused on achieving significant improvements in the effectiveness of its core management functions. The President’s Management Agenda will set goals in areas that are critical to improving the Federal Government’s effectiveness, efficiency, cybersecurity, and accountability. The Administration will take action to ensure that by 2020 we will be able to say the following:</p>
<ol>
<li>
<p id="annotationGroup-6">Federal agencies are managing programs and delivering critical services more effectively— The Administration will take an <span class="annotator-hl" id="annotation_2479" name="annotation_2479">evidence- based approach </span>to improving programs and services—using real, hard data to identify poorly performing organizations and programs. We will hold program managers accountable for improving <span class="annotator-hl" id="annotation_3065" name="annotation_3065">performance</span> and delivering high-quality and timely services to the American people and businesses. We will use all tools available and create new ones as needed to ensure the workforce is appropriately <span class="annotator-hl" id="annotation_2169" name="annotation_2169">prepared</span>.</p>
</li>
<li>
<p id="annotationGroup-91">Federal agencies are devoting a greater percentage of taxpayer dollars to <span class="annotator-hl" id="annotation_2683" name="annotation_2683">mission achievement rather than costly, unproductive compliance activities</span>— Past management improvement initiatives resulted in the creation of hundreds of guidance documents aimed at improving Government management by adding more requirements to information technology (IT), human capital, acquisition, financial management, and real property. Furthermore, these Government-wide policies often tie agencies’ hands and keep managers from making commonsense decisions. As a result, costs often increase without corresponding benefits. The Administration will roll back low-value activities and let managers manage, while holding them accountable for finding ways to reduce the cost of agency operations. As part of this effort, <span class="annotator-hl" id="annotation_3069" name="annotation_3069">OMB will review requirements placed on agencies and identify areas to reduce obsolete, low-value requirements</span>.</p>
</li>
<li>
<p id="annotationGroup-56">Federal agencies are more effective and efficient in supporting program outcomes— Delivering high-performing program results and services to citizens and businesses depends on effective and efficient mission support services. However, despite years of efforts to improve these critical management processes, <span class="annotator-hl" id="annotation_2991" name="annotation_2991">managers remain frustrated with hiring methodologies that do not consistently bring in top talent,</span> acquisition approaches that are too cumbersome, and IT that is outdated by the time it is deployed. The Administration will use available data to develop targeted solutions to problems Federal managers face, and begin fixing them directly by sharing and adopting leading practices from the private and public sectors. A<span class="annotator-hl" id="annotation_2434" name="annotation_2434">mong the areas that will be addressed are how agencies buy goods and services, hire talent, use their real property, pay their bills, and utilize technology.</span></p>
</li>
<li>
<p>Agencies have been held accountable for improving performance— All Federal agencies will be responsible for reporting critical performance metrics and showing demonstrable improvement. OMB will also regularly review agency progress in implementing these reforms to ensure there is consistent improvement. Through this bold agenda, we will improve the effectiveness, efficiency, cybersecurity, and accountability of the Federal Government and make government work again.</p>
</li>
</ol>
<h1 id="heading-5" class="anchor">REGULATION</h1>
<p>Cutting Burdensome Regulations</p>
<p id="annotationGroup-111">The American people deserve a regulatory system that works for them, <span class="annotator-hl" id="annotation_2993" name="annotation_2993">not against them</span>—a system that is both effective and efficient.</p>
<p>Each year, however, Federal agencies issue thousands of new regulations that, taken together, impose substantial burdens on American consumers and businesses big and small. These burdens function much like taxes that unnecessarily inhibit growth and employment. Many regulations, though well intentioned, do not achieve their intended outcomes, are not structured in the most cost-effective manner, and often have adverse, unanticipated consequences. Many more regulations that have been on the books for years—even if they made sense at the time—have gone unexamined and may no longer be effective or necessary.</p>
<p>The President is committed to fixing these problems by eliminating unnecessary and wasteful regulations. To that end, the President has already taken three significant steps:</p>
<ol>
<li>
<p id="annotationGroup-61">Regulatory freeze— On January 20, 2017, the President’s Chief of Staff issued a memorandum to all agencies, directing them to <span class="annotator-hl" id="annotation_2446" name="annotation_2446">pull back any regulations that had been sent to, but not yet published by, the Office of the Federal Register; to not publish any new regulations unless approved by an Administration political appointee; and to delay the effective date of any pending regulations for 60 days to provide the Administration time to review and reconsider those regulations. Federal agencies responded by pulling back, delaying, and not publishing all possible regulations.</span></p>
</li>
<li>
<p id="annotationGroup-7">Controlling costs and eliminating <span class="annotator-hl" id="annotation_2173" name="annotation_2173">unnecessary</span> regulations— On January 30, 2017, the President signed Executive Order 13771, “Reducing Regulation and Controlling Regulatory Costs.” This Executive Order represents a fundamental change in the regulatory state. It requires Federal agencies to <span class="annotator-hl" id="annotation_2720" name="annotation_2720">eliminate at least two existing regulations for each new regulation they issue.</span> It also requires agencies to ensure that for 2017, the<span class="annotator-hl" id="annotation_2755" name="annotation_2755"> total incremental cost of all new regulations be no greater than $0</span>. For 2018 and beyond, the Order establishes and institutionalizes a disciplined process for imposing regulatory <span class="annotator-hl" id="annotation_2996" name="annotation_2996">cost caps</span> for each Federal agency. The significant structural reforms instituted by this Executive Order provide the necessary framework for Federal agencies to carry out the President’s bold regulatory reform agenda.</p>
</li>
<li>
<p id="annotationGroup-49">Enforcing the regulatory reform agenda— As <span class="annotator-hl" id="annotation_2381" name="annotation_2381">a successful businessman</span>, the President knows that achievement requires <span class="annotator-hl" id="annotation_2998" name="annotation_2998">accountability</span>. That basic principle is the reason the President signed Executive Order 13777, “Enforcing the Regulatory Reform Agenda,” on February 24, 2017. <span class="annotator-hl" id="annotation_2457" name="annotation_2457">This Order establishes within each agency a Regulatory Reform Officer and a Regulatory Reform Task Force to carry out the President’s regulatory reform priorities.</span> These new teams will work hard to identify regulations that eliminate jobs or <span class="annotator-hl" id="annotation_3005" name="annotation_3005">inhibit job creation</span>; are outdated, unnecessary, or ineffective; or impose costs that exceed benefits.</p>
</li>
</ol>
<p id="annotationGroup-8">They will also be responsible for ensuring that agencies comply with the President’s <span class="annotator-hl" id="annotation_2686" name="annotation_2686">instruction to </span><span class="annotator-hl" id="annotation_2176" name="annotation_2176"><span class="annotator-hl" id="annotation_2429" name="annotation_2429"><span class="annotator-hl" id="annotation_2686" name="annotation_2686">eliminate two regulations for each new regulation</span></span>
</span>; impose no new incremental costs through regulation; and undertake efforts to repeal, replace, or modify existing regulations.</p>
<p>This Order builds upon a widely recognized and bi-partisan consensus that many existing regulations are likely to be ineffective and no longer necessary, and explicitly builds upon the retrospective review efforts initiated through Executive Order 13563. The difference, however, is accountability, and these teams will be a critical means by which Federal agencies will identify and cut regulations in a smart and efficient manner.</p>
<p id="annotationGroup-50">The President recently told Americans, <span class="annotator-hl" id="annotation_2384" name="annotation_2384">“The era of empty talk is over.</span>” When it comes to regulatory reform, it is abundantly clear that the President means business. The President has put into place truly significant new structural mechanisms that will help to ensure that major regulatory reforms are finally achieved on behalf of the hardworking and forgotten men and women of America.</p>
<p>The Office of Information and Regulatory Affairs within OMB is already working hard to support the implementation of these critical new reforms, and it looks forward to making sure that they are fully and successfully implemented over the coming months and years.</p>
<h1 id="heading-6" class="anchor">DEPARTMENT OF AGRICULTURE</h1>
<p>The President’s 2018 Budget:</p>
<ul>
<li>
<p id="annotationGroup-64">Safeguards the Nation’s supply of meat, poultry, and egg products by f<span class="annotator-hl" id="annotation_2460" name="annotation_2460">ully funding the Food Safety and Inspection Service, w</span>hich employs more than 8,000 in-plant and other frontline personnel who protect public health in approximately 6,400 federally inspected slaughter and processing establishments nationwide.</p>
</li>
<li>
<p id="annotationGroup-65">Provides <span class="annotator-hl" id="annotation_2576" name="annotation_2576">$6.2 billion</span> to serve all projected participants in the Special Supplemental Nutrition Program for Women, Infants, and Children <span class="annotator-hl" id="annotation_2462" name="annotation_2462">(WIC). WIC</span> provides grants to States for supplemental foods, health care referrals, and nutrition education for low-income pregnant and postpartum women, infants, and children who are at nutritional risk.</p>
</li>
<li>
<p id="annotationGroup-120">Fully funds wildland fire preparedness and<span class="annotator-hl" id="annotation_3083" name="annotation_3083"> suppression activities </span>at $2.4 billion, 100 percent of the 10-year average for suppression operations, to ensure the resources necessary to protect life and property.</p>
</li>
<li>
<p>Reduces funding for lower priority activities in the National Forest System, such as major new Federal land acquisition; instead, the Budget focuses on maintaining existing forests and grasslands.</p>
</li>
<li>
<p id="annotationGroup-66">Continues to support farmer-focused research and extension partnerships at land-grant universities and provides about $350 million for USDA’s flagship competitive research program. In addition, the Budget focuses <span class="annotator-hl" id="annotation_3007" name="annotation_3007">in-house research funding</span> within the Agricultural Research Service to the highest priority agriculture and food issues such as <span class="annotator-hl" id="annotation_2467" name="annotation_2467">increasing farming productivity,</span> sustaining natural resources, including those within rural communities, and addressing food safety and nutrition priorities.</p>
</li>
<li>
<p id="annotationGroup-85"><span class="annotator-hl" id="annotation_2580" name="annotation_2580">Reduces funding for USDA’s statistical capabilities, while maintaining core Departmental analytical functions, such as the funding necessary to complete the Census of Agriculture.</span></p>
</li>
<li>
<p id="annotationGroup-9"><span class="annotator-hl" id="annotation_2178" name="annotation_2178">Eliminates the duplicative Water and Wastewater loan and grant program</span>, a savings of $498 million from the 2017 annualized CR level. Rural communities can be served by <span class="annotator-hl" id="annotation_3011" name="annotation_3011">private sector financing</span> or other Federal investments in rural water infrastructure, such as the <span class="annotator-hl" id="annotation_2390" name="annotation_2390">Environmental Protection Agency’s </span>State Revolving Funds.</p>
</li>
<li>
<p id="annotationGroup-67">Reduces staffing in USDA’s Service Center Agencies to streamline county office operations, reflect reduced Rural Development workload, and <span class="annotator-hl" id="annotation_2584" name="annotation_2584">encourage </span><span class="annotator-hl" id="annotation_2473" name="annotation_2473"><span class="annotator-hl" id="annotation_2584" name="annotation_2584">private sector conservation </span></span><span class="annotator-hl" id="annotation_2584" name="annotation_2584">planning</span>.</p>
</li>
<li>
<p id="annotationGroup-86"><span class="annotator-hl" id="annotation_2602" name="annotation_2602">Reduces duplicative and underperforming programs by eliminating discretionary activities of the Rural Business and Cooperative Service</span>, a savings of $95 million from the 2017 annualized CR level.</p>
</li>
<li>
<p id="annotationGroup-68">Eliminates the <span class="annotator-hl" id="annotation_2481" name="annotation_2481">McGovern-Dole International Food for Education </span>program, which lacks evidence that it is being effectively implemented to reduce food insecurity.</p>
</li>
</ul>
<h1 id="heading-7" class="anchor">DEPARTMENT OF COMMERCE</h1>
<p>The President’s 2018 Budget:</p>
<ul>
<li>
<p id="annotationGroup-87">Strengthens the International Trade Administration’s trade enforcement and compliance functions, including the anti-dumping and countervailing duty investigations, while <span class="annotator-hl" id="annotation_2625" name="annotation_2625">rescaling the agency’s export promotion and trade analysis activities</span>.</p>
</li>
<li>
<p>Provides $1.5 billion, an increase of more than $100 million, for the U.S. Census Bureau to continue preparations for the 2020 Decennial Census. This additional funding prioritizes fun- damental investments in information technology and field infrastructure, which would allow the bureau to more effectively administer the 2020 Decennial Census.</p>
</li>
<li>
<p id="annotationGroup-112"><span class="annotator-hl" id="annotation_3018" name="annotation_3018">Consolidate</span>s the mission, policy support, and administrative functions of the Economics and Statistics Administration within the Bureau of Economic Analysis, the U.S. Census Bureau, and the Department of Commerce’s Office of the Secretary.</p>
</li>
<li>
<p>Eliminates the Economic Development Administration, which provides small grants with limited measurable impacts and duplicates other Federal programs, such as Rural Utilities Service grants at the U.S. Department of Agriculture and formula grants to States from the Department of Transportation. By terminating this agency, the Budget saves $221 million from the 2017 annualized CR level.</p>
</li>
<li>
<p id="annotationGroup-102">Eliminates the Minority Business Development Agency, which is duplicative of other Federal, State, local, and private sector efforts that promote minority business entrepreneurship including <span class="annotator-hl" id="annotation_2811" name="annotation_2811">Small Business Administration District Offices and Small Business Development Centers</span>.</p>
</li>
<li>
<p>Saves $124 million by discontinuing Federal funding for the Manufacturing Extension Partnership (MEP) program, which subsidizes up to half the cost of State centers, which provide consulting services to small- and medium-size manufacturers. By eliminating Federal funding, MEP centers would transition solely to non-Federal revenue sources, as was originally intended when the program was established.</p>
</li>
<li>
<p id="annotationGroup-10"><span class="annotator-hl" id="annotation_2182" name="annotation_2182"><span class="annotator-hl" id="annotation_3144" name="annotation_3144">Zeroes out over $250 million in targeted National Oceanic and Atmospheric Administration (NOAA) grants and programs</span></span><span class="annotator-hl" id="annotation_3144" name="annotation_3144"> supporting coastal and marine management, research, and </span><span class="annotator-hl" id="annotation_2768" name="annotation_2768"><span class="annotator-hl" id="annotation_3144" name="annotation_3144">edu- cation including Sea Gran</span></span><span class="annotator-hl" id="annotation_3144" name="annotation_3144">t, which primarily benefit industry and State and local stakeholders. These programs are a lower priority than core functions maintained in the Budget such as surveys, charting, and fisheries management.</span></p>
</li>
<li>
<p>Maintains the development of NOAA’s current generation of polar orbiting and geostationary weather satellites, allowing the Joint Polar Satellite System and Geostationary Operational Environmental Satellite programs to remain on schedule in order to provide forecasters with critical weather data to help protect life and property.</p>
</li>
<li>
<p id="annotationGroup-114">Achieves annual savings from NOAA’s Polar Follow On satellite program from the current program of record by better reflecting the actual risk of a gap in polar satellite coverage, and pro- vides additional opportunities to improve robustness of the low earth orbit satellite architecture by expanding the utilization of <span class="annotator-hl" id="annotation_3024" name="annotation_3024">commercially provided data</span> to improve weather models.</p>
</li>
<li>
<p>Maintains National Weather Service forecasting capabilities by investing more than $1 billion while continuing to promote efficient and effective operations.</p>
</li>
<li>
<p>Continues to support the National Telecommunications and Information Administration (NTIA) in representing the United States interest at multi-stakeholder forums on internet governance and digital commerce. The Budget supports the commercial sector’s development of next generation wireless services by funding NTIA’s mission of evaluating and ensuring the efficient use of spectrum by Government users.</p>
</li>
</ul>
<h1 id="heading-8" class="anchor">DEPARTMENT OF DEFENSE</h1>
<p>The President’s 2018 Budget:</p>
<ul>
<li>
<p id="annotationGroup-11"><span class="annotator-hl" id="annotation_2186" name="annotation_2186">Repeals the defense sequestration by restoring $52 billion to DOD</span>, as well as $2 billion to other national defense programs outside DOD, for a $54 billion total increase for national defense discretionary budget authority above the sequestration level budget cap. When the Budget Control Act (BCA) of 2011 was enacted, the defense sequestration was not meant to occur, yet it has never been fully repealed. This has resulted in nearly $200 billion of national defense cuts since 2013 and over $200 billion of further projected cuts through 2021, relative to the original BCA caps alone. Reversing this indiscriminate neglect of the last administration is not only a fulfillment of the President’s promise, but it is also a requirement if this Nation’s security is to be maintained. <span class="annotator-hl" id="annotation_2188" name="annotation_2188">The military’s depletion under President Obama is our foremost challenge</span>. The President’s 2018 Budget ends the arbitrary depletion of our strength and security, and begins to rebuild the U.S. Armed Forces.</p>
</li>
<li>
<p id="annotationGroup-12"><span class="annotator-hl" id="annotation_2306" name="annotation_2306">Increases DOD’s budget authority by $52 billion above the current 2017 level of $587 billion. This increase alone exceeds the entire defense budget of most countries, and would be one of the largest one-year DOD increases in American history.</span> It is exceeded only by the peak increases of the Reagan Administration and a few of the largest defense increases during the World Wars and the conflicts in Korea, Vietnam, Iraq, and Afghanistan (in constant dollars, based on GDP chained price index). <span class="annotator-hl" id="annotation_2190" name="annotation_2190">Unlike spending increases for war, which mostly consume resources in combat, the increases in the President’s Budget primarily invest in a stronger military</span>.</p>
</li>
<li>
<p id="annotationGroup-13"><span class="annotator-hl" id="annotation_2192" name="annotation_2192">Provides the resources needed to accelerate the defeat of ISIS</span>. The Budget ensures that DOD has the t<span class="annotator-hl" id="annotation_3009" name="annotation_3009">ools to stop ISIS from posing a threat to the United States</span> by funding the Department’s critical efforts to strike ISIS targets, support our partners fighting on the ground, disrupt ISIS’ external operations, and cut off its financing.</p>
</li>
<li>
<p>Addresses urgent warfighting readiness needs. Fifteen years of conflict, accompanied in recent years by budget cuts, have stressed the Armed Forces. The President’s Budget would ensure we remain the best led, best equipped, and most ready force in the world.</p>
</li>
<li>
<p id="annotationGroup-121">Begins to rebuild the U.S. Armed Forces by addressing pressing shortfalls, such as insufficient stocks of critical munitions, personnel gaps, deferred maintenance and modernization, <span class="annotator-hl" id="annotation_3088" name="annotation_3088">cyber vulnerabilities</span>, and degraded facilities. The military must reset war losses, address recapitalization and maintenance requirements, and recover from years of deferred investment forced by budget cuts. The President’s Budget would ensure the Armed Forces have the training, equipment, and infrastructure they need.</p>
</li>
<li>
<p id="annotationGroup-14">Lays the groundwork for a larger, more capable, and more lethal joint force, driven by a new National Defense Strategy that recognizes the need for American superiority not only on land, at sea, in the air, and in space, <span class="annotator-hl" id="annotation_2194" name="annotation_2194">but also in cyberspace</span>. As the world has become more dangerous— through the rise of advanced potential adversaries, the spread of destructive technology, and the expansion of terrorism—our military has gotten smaller and its technological edge has eroded. The President’s Budget begins to put an end to this trend, reversing force reductions and restoring critical investments.</p>
</li>
<li>
<p id="annotationGroup-95">Initiates an ambitious reform agenda to build a military that is as effective and efficient as possible, and underscores the President’s commitment to <span class="annotator-hl" id="annotation_2738" name="annotation_2738">reduce the costs of military programs wherever feasible.</span></p>
</li>
<li>
<p>Strengthens the U.S. Army by rebuilding readiness, reversing end strength reductions, and preparing for future challenges. This Budget is an initial step toward restoring an Army that has been stressed by high operational demand and constrained funding levels in recent years.</p>
</li>
<li>
<p id="annotationGroup-122">Rebuilds the U.S. Navy to better address current and future threats by increasing the total number of ships. This Budget reflects a <span class="annotator-hl" id="annotation_3090" name="annotation_3090">down payment</span> on the President’s commitment to expanding the fleet.</p>
</li>
<li>
<p>Ensures a ready and fully equipped Marine Corps. The Budget lays the foundation for a force that meets the challenges of the 21st Century.</p>
</li>
<li>
<p>Accelerates Air Force efforts to improve tactical air fleet readiness, ensure technical superiority, and repair aging infrastructure. Key investments in maintenance capacity, training systems, and additional F-35 Joint Strike Fighters would enable the Air Force, which is now the smallest it has been in history, to counter the growing number of complex threats from sophisticated state actors and transnational terrorist groups.</p>
</li>
</ul>
<h1 id="heading-9" class="anchor">DEPARTMENT OF <span class="annotator-hl" id="annotation_2201" name="annotation_2201">EDUCATION</span></h1>
<p id="annotationGroup-71"><span class="annotator-hl" id="annotation_2502" name="annotation_2502">The President’s 2018 Budget:</span></p>
<ul>
<li>
<p id="annotationGroup-15">Increases investments in <span class="annotator-hl" id="annotation_2196" name="annotation_2196">public and private school choice</span> by $1.4 billion compared to the 2017 annualized CR level, ramping up to an annual total of $20 billion, and an <span class="annotator-hl" id="annotation_2313" name="annotation_2313">estimated $100 billion including matching State and local funds.</span> T<span class="annotator-hl" id="annotation_2742" name="annotation_2742">his additional investment in 2018 includes a $168 million increase for charter schools, $250 million for a new private school choice program</span>, and a $1 billion increase for Title I, dedicated to encouraging districts to adopt a <span class="annotator-hl" id="annotation_2319" name="annotation_2319">system of student- based budgeting and open enrollment that enables Federal, State, and local funding to follow the student to the public school of his or her choice</span>.</p>
</li>
<li>
<p id="annotationGroup-42"><span class="annotator-hl" id="annotation_2322" name="annotation_2322">Maintains approximately $13 billion</span> in funding for IDEA programs to support students with special education needs. This funding provides States, school districts, and other grantees with the resources needed to provide high quality special education and related services to students and young adults with disabilities.</p>
</li>
<li>
<p>Eliminates the $2.4 billion Supporting Effective Instruction State Grants program, which is poorly targeted and spread thinly across thousands of districts with scant evidence of impact.</p>
</li>
<li>
<p id="annotationGroup-51">Eliminates the 21st Century Community Learning Centers program, which <span class="annotator-hl" id="annotation_2401" name="annotation_2401">supports before- and after-school programs as well as summer programs</span>, resulting in savings of $1.2 billion from the 2017 annualized CR level. The <span class="annotator-hl" id="annotation_2504" name="annotation_2504"><span class="annotator-hl" id="annotation_3030" name="annotation_3030">programs lacks</span></span><span class="annotator-hl" id="annotation_2495" name="annotation_2495"><span class="annotator-hl" id="annotation_2504" name="annotation_2504"><span class="annotator-hl" id="annotation_3030" name="annotation_3030"> strong evidence of meeting its objectives</span></span>
</span><span class="annotator-hl" id="annotation_2504" name="annotation_2504"><span class="annotator-hl" id="annotation_3030" name="annotation_3030">,</span> such as improving student achievement.</span>
</p>
</li>
<li>
<p id="annotationGroup-117">Eliminates the <span class="annotator-hl" id="annotation_3055" name="annotation_3055">Federal Supplemental Educational Opportunity Grant program</span>, a less well- targeted way to deliver need-based aid than the Pell Grant program, to reduce complexity in financial student aid and save $732 million from the 2017 annualized CR level.</p>
</li>
<li>
<p id="annotationGroup-16">Safeguards the Pell Grant program by <span class="annotator-hl" id="annotation_2198" name="annotation_2198">level funding</span> the discretionary appropriation while proposing a cancellation of $3.9 billion from unobligated carryover funding, leaving the Pell program on sound footing for the next decade.</p>
</li>
<li>
<p id="annotationGroup-113">Protects support for Historically Black Colleges and Universities and Minority-Serving Institutions, which provide opportunities for communities that are often underserved, maintaining
<span class="annotator-hl" id="annotation_3022" name="annotation_3022">$492 million</span> in funding for programs that serve high percentages of minority students.</p>
</li>
<li>
<p id="annotationGroup-72">Reduces F<span class="annotator-hl" id="annotation_2507" name="annotation_2507">ederal Work-Study significantly and reforms the poorly-targeted allocation to ensure funds go to undergraduate students who would benefit most.</span></p>
</li>
<li>
<p id="annotationGroup-96">Provides $808 million for the Federal TRIO Programs and $219 million for <span class="annotator-hl" id="annotation_2785" name="annotation_2785">GEAR UP, resulting in savings of $193 million </span>from the 2017 annualized CR level. Funding to TRIO programs is reduced in areas that have limited evidence on the overall effectiveness in improving student outcomes. The Budget funds GEAR UP continuation awards only, pending the completion of an upcoming rigorous evaluation of a portion of the program.</p>
</li>
<li>
<p>Eliminates or reduces over 20 categorical programs that do not address national needs, duplicate other programs, or are more appropriately supported with State, local, or private funds, including Striving Readers, Teacher Quality Partnership, Impact Aid Support Payments for Federal Property, and International Education programs.</p>
</li>
</ul>
<h1 id="heading-10" class="anchor">DEPARTMENT OF ENERGY</h1>
<p>The President’s 2018 Budget:</p>
<ul>
<li>
<p id="annotationGroup-97"><span class="annotator-hl" id="annotation_2787" name="annotation_2787">Provides $120 million to restart licensing activities for the Yucca Mountain nuclear waste repository and initiate a robust interim storage program.</span> These investments would accelerate progress on fulfilling the Federal Government’s obligations to address nuclear waste, enhance national security, and reduce future taxpayer burden.</p>
</li>
<li>
<p>Supports the goals of moving toward a responsive nuclear infrastructure and advancing the existing program of record for warhead life extension programs through elimination of defense sequestration for the National Nuclear Security Administration (NNSA).</p>
</li>
<li>
<p>Enables NNSA to begin to address its critical infrastructure maintenance backlog.</p>
</li>
<li>
<p>Protects human health and the environment by providing $6.5 billion to advance the Environmental Management program mission of cleaning up the legacy of waste and contamination from energy research and nuclear weapons production, including addressing excess facilities to support modernization of the nuclear security enterprise.</p>
</li>
<li>
<p id="annotationGroup-98">Eliminates the <span class="annotator-hl" id="annotation_2789" name="annotation_2789">Advanced Research Projects Agency-Energy</span>, the Title 17 Innovative Technology Loan Guarantee Program, and theAdvanced Technology Vehicle Manufacturing Program because the private sector is better positioned to finance disruptive energy research and development and to commercialize innovative technologies.</p>
</li>
<li>
<p id="annotationGroup-44">Ensures the Office of Science continues to invest in the highest priority basic science and energy research and development as well as operation and maintenance of existing scientific facilities for the community. <span class="annotator-hl" id="annotation_2339" name="annotation_2339">This includes a savings of approximately $900 million compared to the 2017 annualized CR level.</span></p>
</li>
<li>
<p id="annotationGroup-17">Focuses funding for the <span class="annotator-hl" id="annotation_2792" name="annotation_2792">Office of Energy Efficiency and Renewable Energy</span>, the Office of Nuclear Energy, the Office of Electricity Delivery and Energy Reliability, and the Fossil Energy Research and Development program on limited, early-stage applied energy research and development activities where the Federal role is stronger. In addition, the Budget<span class="annotator-hl" id="annotation_2203" name="annotation_2203"> eliminates the Weatherization Assistance Program and the State Energy Program to reduce Federal intervention in State-level energy policy and implementation</span>. Collectively, these changes achieve a savings of approximately $2 billion from the 2017 annualized CR level.</p>
</li>
<li>
<p id="annotationGroup-18">Supports the Office of Electricity Delivery and Energy Reliability’s capacity to carry out cybersecurity and <span class="annotator-hl" id="annotation_2205" name="annotation_2205">grid resiliency </span>activities that would help harden and evolve critical grid infrastructure that the American people and the economy rely upon.</p>
</li>
<li>
<p>Continues the necessary research, development, and construction to support the Navy’s current nuclear fleet and enhance the capabilities of the future fleet.</p>
</li>
</ul>
<h1 id="heading-11" class="anchor">DEPARTMENT OF HEALTH AND HUMAN SERVICES</h1>
<p>The President’s 2018 Budget:</p>
<ul>
<li>
<p>Supports direct health care services, such as those delivered by community health centers, Ryan White HIV/AIDS providers, and the Indian Health Service. These safety net providers deliver critical health care services to low-income and vulnerable populations.</p>
</li>
<li>
<p>Strengthens the integrity and sustainability of Medicare and Medicaid by investing in activities to prevent fraud, waste, and abuse and promote high quality and efficient health care. Additional funding for the Health Care Fraud and Abuse Control (HCFAC) program has allowed the Centers for Medicare & Medicaid Services in recent years to shift away from a “pay-and-chase” model toward identifying and preventing fraudulent or improper payments from being paid in the first place. The return on investment for the HCFAC account was $5 returned for every $1 expended from 2014-2016. The Budget proposes HCFAC discretionary funding of $751 million in 2018, which is $70 million higher than the 2017 annualized CR level.</p>
</li>
<li>
<p>Supports efficient operations for Medicare, Medicaid, and the Children’s Health Insurance Program and focuses spending on the highest priority activities necessary to effectively operate these programs.</p>
</li>
<li>
<p id="annotationGroup-19"><span class="annotator-hl" id="annotation_2209" name="annotation_2209">Supports substance abuse treatment services for the millions of Americans struggling with substance abuse disorders.</span> The opioid epidemic, which took more than 33,000 lives in calendar year 2015, has a devastating effect on America’s families and communities. In addition to funding Substance Abuse and Mental Health Services Administration substance abuse treatment activities, the Budget also includes a $500 million increase above 2016 enacted levels to expand opioid misuse <span class="annotator-hl" id="annotation_3046" name="annotation_3046">prevention efforts</span> and to increase access to treatment and recovery services to help Americans who are misusing opioids get the help they need.</p>
</li>
<li>
<p id="annotationGroup-20">Recalibrates Food and Drug Administration (FDA) medical product user fees to over $2 billion in 2018, approximately $1 billion over the 2017 annualized CR level, and replaces the need for new budget authority to cover pre-market review costs. <span class="annotator-hl" id="annotation_2818" name="annotation_2818">To complement the increase in medical product user fees</span>, the Budget includes a package of administrative actions designed to achieve regulatory efficiency and speed the development of safe and effective medical products. In a constrained budget environment, industries that benefit from FDA’s approval can and <span class="annotator-hl" id="annotation_2211" name="annotation_2211">should pay for their share.</span></p>
</li>
<li>
<p id="annotationGroup-45"><span class="annotator-hl" id="annotation_2345" name="annotation_2345"><span class="annotator-hl" id="annotation_2654" name="annotation_2654"><span class="annotator-hl" id="annotation_2657" name="annotation_2657">Reduces the National Institutes of Health’s (NIH) spending relative to the 2017 annualized CR level by $5.8 billion to $25.9 billion</span></span><span class="annotator-hl" id="annotation_2657" name="annotation_2657">.</span></span> The Budget includes a major reorganization of NIH’s Institutes and Centers to help focus resources on the highest priority research and training activities, including: eliminating the Fogarty International Center; consolidating the Agency for Healthcare Research and Quality within NIH; and other consolidations and structural changes across NIH organizations and activities. <span class="annotator-hl" id="annotation_2349" name="annotation_2349">The Budget also reduces administrative costs and rebalance Federal contributions to research funding.</span></p>
</li>
<li>
<p>Reforms key public health, emergency preparedness, and prevention programs. For example, the Budget restructures similar HHS preparedness grants to reduce overlap and administrative costs and directs resources to States with the greatest need. The Budget also creates a new Federal Emergency Response Fund to rapidly respond to public health outbreaks, such as Zika Virus Disease. The Budget also reforms the Centers for Disease Control and Prevention through a new $500 million block grant to increase State flexibility and focus on the leading public health challenges specific to each State.</p>
</li>
<li>
<p id="annotationGroup-116">Invests in mental health activities that are awarded to <span class="annotator-hl" id="annotation_3051" name="annotation_3051">high-performing entities</span> and focus on high priority areas, such as suicide prevention, serious mental illness, and <span class="annotator-hl" id="annotation_3053" name="annotation_3053">children’s mental health</span>.</p>
</li>
<li>
<p id="annotationGroup-21"><span class="annotator-hl" id="annotation_2215" name="annotation_2215">Eliminates $403 million in health professions and nursing training programs, which lack evidence that they significantly improve the Nation’s health workforce</span>. <span class="annotator-hl" id="annotation_2213" name="annotation_2213">The Budget continues to fund health workforce activities that provide scholarships and loan repayments in exchange for service in areas of the United States where there is a shortage of health professionals</span>.</p>
</li>
<li>
<p id="annotationGroup-103">Eliminates the discretionary programs within the Office of Community Services, <span class="annotator-hl" id="annotation_2822" name="annotation_2822">including the Low Income Home Energy Assistance Program (LIHEAP) and the Community Services Block Grant (CSBG)</span>, a savings of $4.2 billion from the 2017 annualized CR level. Compared to other income support programs that serve similar populations, LIHEAP is a lower-impact program and is unable to demonstrate strong performance outcomes. CSBG funds services that are duplicative of other Federal programs, such as <span class="annotator-hl" id="annotation_3063" name="annotation_3063">emergency food assistance</span> and employment services, and is also a limited-impact program.</p>
</li>
</ul>
<h1 id="heading-12" class="anchor">DEPARTMENT OF HOMELAND SECURITY</h1>
<p>The President’s 2018 Budget:</p>
<ul>
<li>
<p id="annotationGroup-22">Secures the borders of the United States by investing <span class="annotator-hl" id="annotation_2217" name="annotation_2217">$2.6 billion</span> in high-priority tactical infrastructure and border security technology, including funding to plan, design, and construct a<span class="annotator-hl" id="annotation_2509" name="annotation_2509"> physical wall </span>along the southern border as directed by the President’s January 25, 2017 Executive Order. <span class="annotator-hl" id="annotation_2220" name="annotation_2220">This investment would strengthen border security, helping stem the flow of people and drugs illegally crossing the U.S. borders</span>.</p>
</li>
<li>
<p id="annotationGroup-23">Advances the President’s plan to strengthen border security and immigration enforcement with $314 million to <span class="annotator-hl" id="annotation_2514" name="annotation_2514">recruit, hire, and train 500 new Border Patrol Agents and 1,000 new Immigration and Customs </span>Enforcement law enforcement personnel in 2018, plus associated support staff. These new personnel would improve the integrity of the immigration system by adding capacity to interdict those aliens attempting to cross the border illegally, <span class="annotator-hl" id="annotation_2222" name="annotation_2222">as well as to identify and remove those already in the United States who entered illegally</span>.</p>
</li>
<li>
<p id="annotationGroup-74">Enhances enforcement of immigration laws by proposing an additional $1.5 billion above the 2017 annualized CR level for expanded detention, transportation, and removal of illegal immigrants. These funds would ensure that DHS has sufficient detention capacity to hold <span class="annotator-hl" id="annotation_2516" name="annotation_2516">prioritized aliens, including violent criminals and other dangerous individuals, as they are processed for removal</span>.</p>
</li>
<li>
<p id="annotationGroup-75">Invests $15 million to begin implementation of mandatory nationwide use of the E-Verify Program, an internet-based system that allows businesses to determine the eligibility of their new employees to work in the United States. <span class="annotator-hl" id="annotation_2520" name="annotation_2520">This investment would strengthen the employment verification process and reduce unauthorized employment across the U.S</span>.</p>
</li>
<li>
<p id="annotationGroup-77">Safeguards cyberspace with $1.5 billion for DHS activities that protect Federal networks and critical infrastructure from an attack. Through a suite of advanced cyber security tools and more assertive defense of Government networks,<span class="annotator-hl" id="annotation_2529" name="annotation_2529"> DHS would share more cybersecurity incident information with other Federal agencies and the private sector, leading </span>to faster responses to cybersecurity attacks directed at Federal networks and critical infrastructure.</p>
</li>
<li>
<p>Restructures selected user fees for the Transportation Security Administration (TSA) and the National Flood Insurance Program (NFIP) to ensure that the cost of Government services is not subsidized by taxpayers who do not directly benefit from those programs. The Budget proposes to raise the Passenger Security Fee to recover 75 percent of the cost of TSA aviation security operations. The Budget proposes eliminating the discretionary appropriation for the NFIP’s Flood Hazard Mapping Program, a savings of $190 million, to instead explore other more effective and fair means of funding flood mapping efforts.</p>
</li>
<li>
<p>Eliminates or reduces State and local grant funding by $667 million for programs administered by the Federal Emergency Management Agency (FEMA) that are either unauthorized by the Congress, such as FEMA’s Pre-Disaster Mitigation Grant Program, or that must provide more measurable results and ensure the Federal Government is not supplanting other stakeholders’ responsibilities, such as the Homeland Security Grant Program. For that reason, the Budget also proposes establishing a 25 percent non-Federal cost match for FEMA preparedness grant awards that currently require no cost match. This is the same cost-sharing approach as FEMA’s disaster recovery grants. The activities and acquisitions funded through these grant programs are primarily State and local functions.</p>
</li>
<li>
<p id="annotationGroup-53">Eliminates and reduces unauthorized and underperforming programs administered by TSA in order to strengthen screening at airport security checkpoints, a savings of $80 million from the 2017 annualized CR level. <span class="annotator-hl" id="annotation_2416" name="annotation_2416">These savings include reductions to the Visible Intermodal Prevention and Response program,</span> which achieves few Federal law enforcement priorities, and elimination of TSA grants to State and local jurisdictions, a program intended to incentivize lo- cal law enforcement patrols that should already be a high priority for State and local partners. In addition, the Budget reflects TSA’s decision in the summer of 2016 to eliminate the Behavior Detection Officer program, reassigning all of those personnel to front line airport security operations. Such efforts refocus TSA on its core mission of protecting travelers and ensuring Federal security standards are enforced throughout the transportation system.</p>
</li>
</ul>
<h1 id="heading-13" class="anchor">DEPARTMENT OF HOUSING AND URBAN DEVELOPMENT</h1>
<p>The President’s 2018 Budget:</p>
<ul>
<li>
<p>Provides over $35 billion for HUD’s rental assistance programs and proposes reforms that reduce costs while continuing to assist 4.5 million low-income households.</p>
</li>
<li>
<p id="annotationGroup-100"><span class="annotator-hl" id="annotation_2802" name="annotation_2802">Eliminates funding for the Community Development Block Grant program, a savings of $3 billion</span> from the 2017 annualized CR level. The Federal Government has spent over $150 billion on this block grant since its inception in 1974, but the program is not well-targeted to the poorest populations and has not <span class="annotator-hl" id="annotation_3067" name="annotation_3067">demonstrated results.</span> The Budget devolves community and economic development activities to the State and local level, and redirects Federal resources to other activities.</p>
</li>
<li>
<p id="annotationGroup-119">Promotes fiscal responsibility by eliminating funding for a number of lower priority programs, including the<span class="annotator-hl" id="annotation_3073" name="annotation_3073"> HOME Investment Partnerships Program, Choice Neighborhoods, and the Self-help Homeownership Opportunity Program</span>, a savings of over $1.1 billion from the 2017 annualized CR level. State and local governments are better positioned to serve their communities based on local needs and priorities.</p>
</li>
<li>
<p id="annotationGroup-24">Promotes healthy and lead-safe homes by providing $130 million, an increase of $20 million over the 2017 annualized CR level, <span class="annotator-hl" id="annotation_2229" name="annotation_2229">for the mitigation of lead-based paint and other hazards in low-income homes</span>, especially those in which children reside. This also funds enforcement, education, and research activities to further support this goal, all of which contributes to lower healthcare costs and increased productivity.</p>
</li>
<li>
<p id="annotationGroup-78"><span class="annotator-hl" id="annotation_2531" name="annotation_2531">Eliminates funding for Section 4 Capacity Building for Community Development and Affordable Housing, a savings of $35 million from the 2017 annualized CR level. This program is duplicative of efforts funded by philanthropy and other more flexible private sector investments.</span></p>
</li>
<li>
<p>Supports homeownership through provision of Federal Housing Administration mortgage insurance programs.</p>
</li>
</ul>
<h1 id="heading-14" class="anchor">DEPARTMENT OF THE INTERIOR</h1>
<p>The President’s 2018 Budget:</p>
<ul>
<li>
<p id="annotationGroup-54"><span class="annotator-hl" id="annotation_2523" name="annotation_2523">Strengthens the Nation’s energy security by increasing funding for DOI programs that support </span><span class="annotator-hl" id="annotation_2426" name="annotation_2426"><span class="annotator-hl" id="annotation_2523" name="annotation_2523">environmentally responsible development of energy on public lands and offshore waters</span>.</span> Combined with administrative reforms already in progress, this would allow DOI to streamline permitting processes and <span class="annotator-hl" id="annotation_2525" name="annotation_2525">provide industry with access to the energy resources America needs</span>, while ensuring taxpayers receive a fair return from the development of these public resources.</p>
</li>
<li>
<p>Sustains funding for DOI’s Office of Natural Resources Revenue, which manages the collection and disbursement of roughly $10 billion annually from mineral development, an important source of revenue to the Federal Treasury, States, and Indian mineral owners.</p>
</li>
<li>
<p id="annotationGroup-55">Eliminates unnecessary, lower priority, or duplicative programs, including discretionary Abandoned Mine Land grants that overlap with existing mandatory grants, <span class="annotator-hl" id="annotation_2431" name="annotation_2431">National Heritage Areas that are more appropriately funded locally,</span> and National Wildlife Refuge fund payments to local governments that are duplicative of other payment programs.</p>
</li>
<li>
<p id="annotationGroup-76">Supports stewardship capacity for land management operations of the National Park Service, Fish and Wildlife Service and Bureau of Land Management. The Budget streamlines operations while providing the necessary resources for DOI to continue to <span class="annotator-hl" id="annotation_2527" name="annotation_2527">protect and conserve America’s public lands and beautiful natural resources, provide access to public lands for the next generation of outdoor enthusiasts, and ensure visitor safety.</span></p>
</li>
<li>
<p id="annotationGroup-79">Supports tribal sovereignty and self-determination <span class="annotator-hl" id="annotation_2533" name="annotation_2533">across Indian Country </span>by focusing on core funding and services to support ongoing tribal government operations. The Budget reduces funding for more recent demonstration projects and initiatives that only serve a few Tribes.</p>
</li>
<li>
<p>Reduces funding for lower priority activities, such as new major acquisitions of Federal land. The Budget reduces land acquisition funding by more than $120 million from the 2017 annualized CR level and would instead focus available discretionary funds on investing in, and maintaining, existing national parks, refuges and public lands.</p>
</li>
<li>
<p id="annotationGroup-57">Ensures that the National Park Service assets are preserved for future generations by <span class="annotator-hl" id="annotation_2436" name="annotation_2436">increasing investment in deferred maintenance projects.</span> Reduces funds for other DOI construction and major maintenance programs, which can rely on <span class="annotator-hl" id="annotation_3103" name="annotation_3103">existing resources for 2018</span>.</p>
</li>
<li>
<p id="annotationGroup-58">Provides more than $900 million for DOI’s U.S. Geological Survey to focus investments in essential science programs. This includes funding for the Landsat 9 ground system, as well as research and data collection that <span class="annotator-hl" id="annotation_2438" name="annotation_2438">informs sustainable energy development</span>, responsible resource management, and natural hazard risk reduction.</p>
</li>
<li>
<p id="annotationGroup-80"><span class="annotator-hl" id="annotation_2536" name="annotation_2536">Leverages taxpayer investment with public and private resources through wildlife conservation, historic preservation, and recreation grants.</span> These voluntary programs encourage partnerships by providing matching funds that produce greater benefits to taxpayers for the Federal dollars invested.</p>
</li>
<li>
<p>Budgets responsibly for wildland fire suppression expenses. The Budget would directly provide the full 10-year rolling average of suppression expenditures.</p>
</li>
<li>
<p id="annotationGroup-59"><span class="annotator-hl" id="annotation_2440" name="annotation_2440">Invests over $1 billion in safe, reliable, and efficient management of water resources throughout the </span>western United States.</p>
</li>
<li>
<p>Supports counties through discretionary funding for the Payments in Lieu of Taxes (PILT) program at a reduced level, but in line with average funding for PILT over the past decade.</p>
</li>
</ul>
<h1 id="heading-15" class="anchor">DEPARTMENT OF JUSTICE</h1>
<p>The President’s 2018 Budget:</p>
<ul>
<li>
<p id="annotationGroup-123">Strengthens counterterrorism, counterintelligence, and Federal law enforcement activities by providing an increase of $249 million, or 3 percent, above the 2017 annualized CR level for the Federal Bureau of Investigation (FBI). The FBI would devote resources toward its world-class cadre of special agents and intelligence analysts, as well as invest $61 million more to fight terrorism and combat foreign intelligence and cyber threats and address public safety and national security risks that result from malicious actors’ use of encrypted products and services. In addition, the FBI would dedicate $35 million to gather and share intelligence data with partners and together with the Department of Defense (DOD) lead Federal efforts in biometric identity resolution, research, and development. The FBI would also spend an additional<span class="annotator-hl" id="annotation_3189" name="annotation_3189"> $9 million to provide accurate and timely response for firearms purchase background checks, and develop and refine evidence and data to target violent crime in some cities and communities.</span></p>
</li>
<li>
<p>Supports efforts at the Department’s law enforcement components by providing a combined increase of $175 million above the 2017 annualized CR level to target the worst of the worst criminal organizations and drug traffickers in order to address violent crime, gun-related deaths, and the opioid epidemic.</p>
</li>
<li>
<p>Enhances national security and counterterrorism efforts by linking skilled prosecutors and intelligence attorneys with law enforcement investigations and the intelligence community to stay ahead of threats.</p>
</li>
<li>
<p id="annotationGroup-101"><span class="annotator-hl" id="annotation_2807" name="annotation_2807">Combats illegal entry and unlawful presence in the United States by providing an increase of nearly $80 million, or 19 percent, above the 2017 annualized CR level to hire 75 additional immigration judge teams to bolster and more efficiently adjudicate removal proceedings— bringing the total number of funded immigration judge teams to 449.</span></p>
</li>
<li>
<p>Enhances border security and immigration enforcement by providing 60 additional border enforcement prosecutors and 40 deputy U.S. Marshals for the apprehension, transportation, and prosecution of criminal aliens.</p>
</li>
<li>
<p id="annotationGroup-27"><span class="annotator-hl" id="annotation_2241" name="annotation_2241">Supports the addition of 20 attorneys to pursue Federal efforts to obtain the land and holdings necessary to secure the Southwest border and another 20 attorneys and support staff for immigration litigation assistance</span>.</p>
</li>
<li>
<p id="annotationGroup-124">Assures the safety of the public and law enforcement officers by providing $171 million above the 2017 annualized CR level for <span class="annotator-hl" id="annotation_3192" name="annotation_3192">additional short-term detention space</span> to hold Federal detainees, including criminal aliens, parole violators, and other offenders awaiting trial or sentencing.</p>
</li>
<li>
<p>Safeguards Federal grants to State, local, and tribal law enforcement and victims of crime to ensure greater safety for law enforcement personnel and the people they serve. Critical programs aimed at protecting the life and safety of State and local law enforcement personnel, including Preventing Violence Against Law Enforcement Officer Resilience and Survivability and the Bulletproof Vest Partnership, are protected.</p>
</li>
<li>
<p>Eliminates approximately $700 million in unnecessary spending on outdated programs that either have met their goal or have exceeded their usefulness, including $210 million for the poorly targeted State Criminal Alien Assistance Program, in which two-thirds of the funding primarily reimburses four States for the cost of incarcerating certain illegal criminal aliens.</p>
</li>
<li>
<p id="annotationGroup-28">Achieves savings of almost a billion dollars from the 2017 annualized CR level in Federal prison construction spending due to excess capacity resulting from an approximate 14 percent decrease in the prison population since 2013. However, the Budget provides $80 million above the 2017 annualized CR level for the activation of an existing facility to reduce high security Federal inmate overcrowding and a total of $113 million to repair and <span class="annotator-hl" id="annotation_2547" name="annotation_2547">modernize</span> outdated <span class="annotator-hl" id="annotation_2243" name="annotation_2243">prisons</span>.</p>
</li>
<li>
<p>Increases bankruptcy-filing fees to produce an additional $150 million over the 2017 annualized CR level to ensure that those that use the bankruptcy court system pay for its oversight. By increasing quarterly filing fees, the total estimated United States Trustee Program offsetting receipts would reach $289 million in 2018.</p>
</li>
</ul>
<h1 id="heading-16" class="anchor">DEPARTMENT OF LABOR</h1>
<p>The President’s 2018 Budget:</p>
<ul>
<li>
<p>Expands Reemployment and Eligibility Assessments, an evidence-based activity that saves an average of $536 per claimant in unemployment insurance benefit costs by reducing improper payments and getting claimants back to work more quickly and at higher wages.</p>
</li>
<li>
<p id="annotationGroup-60">Reduces funding for ineffective, duplicative, and peripheral job training grants. As part of this, eliminates the <span class="annotator-hl" id="annotation_2444" name="annotation_2444">Senior Community Service Employment Program (SCSEP), for a savings of $434 million from the 2017 annualized CR level. SCSEP is ineffective in meeting its purpose of transitioning low-income unemployed seniors into unsubsidized jobs. As many as one-third of participants fail to complete the program and of those who do, only half successfully transition to unsubsidized employment</span>.</p>
</li>
<li>
<p>Focuses the Bureau of International Labor Affairs on ensuring that U.S. trade agreements are fair for American workers. The Budget eliminates the Bureau’s largely noncompetitive and unproven grant funding, which would save at least $60 million from the 2017 annualized CR level.</p>
</li>
<li>
<p id="annotationGroup-83">I<span class="annotator-hl" id="annotation_2551" name="annotation_2551">mproves Job Corps for the disadvantaged youth it serves by closing centers</span> that do a poor job educating and preparing students for jobs.</p>
</li>
<li>
<p id="annotationGroup-62">Decreases Federal support for <span class="annotator-hl" id="annotation_2448" name="annotation_2448">job training and employment service formula grants, shifting more responsibility for funding these services to States, localities, and employers</span>.</p>
</li>
<li>
<p>Helps States expand apprenticeship, an evidence-based approach to preparing workers for jobs.</p>
</li>
<li>
<p>Refocuses the Office of Disability Employment Policy, eliminating less critical technical assistance grants and launching an early intervention demonstration project to allow States to test and evaluate methods that help individuals with disabilities remain attached to or reconnect to the labor market.</p>
</li>
<li>
<p id="annotationGroup-108">Eliminates the <span class="annotator-hl" id="annotation_2885" name="annotation_2885">Occupational Safety and Health Administration’s unproven training grants</span>, yielding savings of almost $11 million from the 2017 annualized CR level and focusing the agency on its <span class="annotator-hl" id="annotation_2887" name="annotation_2887">central work of keeping workers safe on the job</span>.</p>
</li>
</ul>
<h1 id="heading-17" class="anchor">DEPARTMENT OF STATE, USAID, AND TREASURY INTERNATIONAL PROGRAMS</h1>
<p>The President’s 2018 Budget:</p>
<ul>
<li>
<p>Maintains robust funding levels for embassy security and other core diplomatic activities while implementing efficiencies. Consistent with the Benghazi Accountability Review Board recommendation, the Budget applies $2.2 billion toward new embassy construction and maintenance in 2018. Maintaining adequate embassy security levels requires the efficient and effective use of available resources to keep embassy employees safe.</p>
</li>
<li>
<p>Provides $3.1 billion to meet the security assistance commitment to Israel, currently at an all- time high; ensuring that Israel has the ability to defend itself from threats and maintain its Qualitative Military Edge.</p>
</li>
<li>
<p id="annotationGroup-29"><span class="annotator-hl" id="annotation_2246" name="annotation_2246">Eliminates the Global Climate Change Initiative and fulfills the President’s pledge to cease payments to the United Nations’ (UN) climate change programs by eliminating U.S. funding related to the Green Climate Fund and its two precursor Climate Investment Funds</span>.</p>
</li>
<li>
<p>Provides sufficient resources on a path to fulfill the $1 billion U.S. pledge to Gavi, the Vaccine Alliance. This commitment helps support Gavi to vaccinate hundreds of millions of children in low-resource countries and save millions of lives.</p>
</li>
<li>
<p>Provides sufficient resources to maintain current commitments and all current patient levels on HIV/AIDS treatment under the President’s Emergency Plan for AIDS Relief (PEPFAR) and maintains funding for malaria programs. The Budget also meets U.S. commitments to the Global Fund for AIDS, Tuberculosis, and Malaria by providing 33 percent of projected contributions from all donors, consistent with the limit currently in law.</p>
</li>
<li>
<p id="annotationGroup-63"><span class="annotator-hl" id="annotation_2451" name="annotation_2451">Shifts some foreign military assistance from grants to loans in order to reduce costs for the U.S. taxpayer, while potentially allowing recipients to purchase more American-made weaponry with U.S. assistance, but on a repayable basis.</span></p>
</li>
<li>
<p id="annotationGroup-81"><span class="annotator-hl" id="annotation_2539" name="annotation_2539"><span class="annotator-hl" id="annotation_2696" name="annotation_2696">Reduces funding to the UN and affiliated agencies, including UN peacekeeping and other inter- national organizations, by setting the expectation that these organizations rein in costs and that the funding burden be shared more fairly among members. The amount the U.S. would contribute to the UN budget would be reduced and the U.S. would not contribute more than 25 percent for UN peacekeeping costs.</span></span>
</p>
</li>
<li>
<p id="annotationGroup-125">Refocuses economic and development assistance to countries of greatest strategic importance to the U.S. and ensures the effectiveness of U.S. taxpayer investments by <span class="annotator-hl" id="annotation_3196" name="annotation_3196">rightsizing funding across countries and sectors.</span></p>
</li>
<li>
<p id="annotationGroup-30"><span class="annotator-hl" id="annotation_2248" name="annotation_2248"><span class="annotator-hl" id="annotation_2543" name="annotation_2543">Allows for significant funding of humanitarian assistance, including food aid, disaster, and refugee program funding</span></span><span class="annotator-hl" id="annotation_2543" name="annotation_2543">. </span>This would focus funding on the highest priority areas while asking the rest of the world to pay their fair share. The Budget eliminates the Emergency Refugee and Migration Assistance account, a duplicative and stovepiped account, and challenges international and non-governmental relief organizations to become more efficient and effective.</p>
</li>
<li>
<p>Reduces funding for the Department of State’s Educational and Cultural Exchange (ECE) Programs. ECE resources would focus on sustaining the flagship Fulbright Program, which forges lasting connections between Americans and emerging leaders around the globe.</p>
</li>
<li>
<p>Improves efficiency by eliminating overlapping peacekeeping and security capacity building efforts and duplicative contingency programs, such as the Complex Crises Fund. The Budget also eliminates direct appropriations to small organizations that receive funding from other sources and can continue to operate without direct Federal funds, such as the East-West Center.</p>
</li>
<li>
<p id="annotationGroup-82"><span class="annotator-hl" id="annotation_2549" name="annotation_2549">Recognizes the need for State and USAID to pursue greater efficiencies through reorganization and consolidation in order to enable effective diplomacy and development.</span></p>
</li>
<li>
<p>Reduces funding for multilateral development banks, including the World Bank, by approximately $650 million over three years compared to commitments made by the previous administration. Even with the proposed decreases, the U.S. would retain its current status as a top donor while saving taxpayer dollars.</p>
</li>
</ul>
<h1 id="heading-18" class="anchor">DEPARTMENT OF TRANSPORTATION</h1>
<p>The President’s 2018 Budget:</p>
<ul>
<li>
<p id="annotationGroup-31">Initiates a multi-year reauthorization proposal to shift the air traffic control function of the Federal Aviation Administration to an <span class="annotator-hl" id="annotation_2250" name="annotation_2250">independent, non-governmental organization</span>, making the system more efficient and innovative while maintaining safety. This would benefit the flying public and taxpayers overall.</p>
</li>
<li>
<p id="annotationGroup-73"><span class="annotator-hl" id="annotation_2511" name="annotation_2511">Restructures and reduces Federal subsidies to Amtrak to focus resources on the parts of the passenger rail system that provide meaningful transportation options within regions. The Budget terminates Federal support for Amtrak’s long distance train services, which have long been inefficient and incur the vast majority of Amtrak’s operating losses. This would allow Amtrak to focus on better managing its State-supported and Northeast Corridor train services</span>.</p>
</li>
<li>
<p>Limits funding for the Federal Transit Administration’s Capital Investment Program (New Starts) to projects with existing full funding grant agreements only. Future investments in new transit projects would be funded by the localities that use and benefit from these localized projects.</p>
</li>
<li>
<p id="annotationGroup-126"><span class="annotator-hl" id="annotation_3199" name="annotation_3199">Eliminates funding for the Essential Air Service (EAS) program</span>, which was originally conceived of as a temporary program nearly 40 years ago to provide subsidized commercial air service to rural airports. EAS flights are not full and have high subsidy costs per passenger. Several EAS-eligible communities are relatively close to major airports, and communities that have EAS could be served by other existing modes of transportation. This proposal would result in a discretionary savings of $175 million from the 2017 annualized CR level.</p>
</li>
<li>
<p id="annotationGroup-109">Eliminates funding for the unauthorized <span class="annotator-hl" id="annotation_2895" name="annotation_2895">TIGER discretionary grant program</span>, which awards grants to projects that are generally eligible for funding under existing surface transportation formula programs, saving $499 million from the 2017 annualized CR level. Further, DOT’s <span class="annotator-hl" id="annotation_2906" name="annotation_2906">Nationally Significant Freight and Highway Projects grant program</span>, authorized by the FAST Act of 2015, supports larger highway and multimodal freight projects with demonstrable national or regional benefits. This grant program is authorized at an annual average of $900 million through 2020.</p>
</li>
</ul>
<h1 id="heading-19" class="anchor">DEPARTMENT OF THE TREASURY</h1>
<p>The President’s 2018 Budget:</p>
<ul>
<li>
<p id="annotationGroup-32">Preserves key operations of the Internal Revenue Service (IRS) to ensure that the IRS could continue to combat <span class="annotator-hl" id="annotation_2252" name="annotation_2252">identity theft, prevent fraud</span>, and reduce the deficit through the effective enforcement and administration of tax laws. Diverting resources from antiquated operations that are still reliant on paper-based review in the era of electronic tax filing would achieve significant savings, a funding reduction of $239 million from the 2017 annualized CR level.</p>
</li>
<li>
<p>Strengthens cybersecurity by investing in a Department-wide plan to strategically enhance existing security systems and preempt fragmentation of information technology management across the bureaus, positioning Treasury to anticipate and nimbly respond in the event of a cyberattack.</p>
</li>
<li>
<p>Prioritizes funding for Treasury’s array of economic enforcement tools. Key Treasury programs that freeze the accounts of terrorists and proliferators, implement sanctions on rogue nations, and link law enforcement agencies with financial institutions are critical to the continued safety and financial stability of the Nation.</p>
</li>
<li>
<p>Eliminates funding for Community Development Financial Institutions (CDFI) Fund grants, a savings of $210 million from the 2017 annualized CR level. The CDFI Fund was created more than 20 years ago to jump-start a now mature industry where private institutions have ready access to the capital needed to extend credit and provide financial services to underserved communities.</p>
</li>
<li>
<p>Empowers the Treasury Secretary, as Chairperson of the Financial Stability Oversight Council, to end taxpayer bailouts and foster economic growth by advancing financial regulatory reforms that promote market discipline and ensure the accountability of financial regulators.</p>
</li>
<li>
<p>Shrinks the Federal workforce and increases its efficiency by redirecting resources away from duplicative policy offices to staff that manage the Nation’s finances.</p>
</li>
</ul>
<h1 id="heading-20" class="anchor">DEPARTMENT OF VETERANS AFFAIRS</h1>
<p>The President’s 2018 Budget:</p>
<ul>
<li>
<p id="annotationGroup-34">Ensures the Nation’s veterans receive high-quality health care and timely access to benefits and services. An estimated 11 million veterans participate in VA programs. <span class="annotator-hl" id="annotation_2257" name="annotation_2257">This Budget pro- vides the resources necessary to ensure veterans receive the care and support earned through their service to the Nation</span>.</p>
</li>
<li>
<p>Provides a $4.6 billion increase in discretionary funding for VA health care to improve patient access and timeliness of medical care services for over nine million enrolled veterans. This funding would enable the Department to provide a broad range of primary care, specialized care, and related medical and social support services to enrolled veterans, including services that are uniquely related to veterans’ health and special needs.</p>
</li>
<li>
<p>Extends and funds the Veterans Choice Program to ensure that every eligible veteran continues to have the choice to seek care at VA or through a private provider. Without action, this critical program will expire in August 2017, which would result in veterans having fewer choices of where to receive care.</p>
</li>
<li>
<p>Supports VA programs that provide services to homeless and at-risk veterans and their families to help keep them safe and sheltered.</p>
</li>
<li>
<p>Provides access to education benefits, enhanced services, and other programs to assist veterans’ transition to civilian life. VA partners with other agencies to provide critical training, support services, and counseling throughout a veteran’s transition and their post-military career.</p>
</li>
<li>
<p>Continues critical investments aimed at optimizing productivity and transforming VA’s claims processes. Provides resources to reduce the time required to process and adjudicate veterans’ disability compensation claims.</p>
</li>
<li>
<p>Invests in information technology to improve the efficiency and efficacy of VA services. Provides sufficient funding for sustainment, development, and modernization initiatives that would im- prove the quality of services provided to veterans and avoid the costs of maintaining outdated, inefficient systems.</p>
</li>
</ul>
<h1 id="heading-21" class="anchor">ENVIRONMENTAL PROTECTION AGENCY</h1>
<p>The President’s 2018 Budget:</p>
<ul>
<li>
<p id="annotationGroup-35"><span class="annotator-hl" id="annotation_2816" name="annotation_2816">P</span><span class="annotator-hl" id="annotation_2518" name="annotation_2518"><span class="annotator-hl" id="annotation_2816" name="annotation_2816">rovides robust funding for critical drinking and wastewater infrastructure</span></span><span class="annotator-hl" id="annotation_2816" name="annotation_2816">.</span> These funding levels further the President’s ongoing commitment to infrastructure repair and replacement and would allow States, municipalities, and private entities to continue to finance high priority infrastructure investments that protect human health. <span class="annotator-hl" id="annotation_2262" name="annotation_2262">The Budget includes $2.3 billion for the State Revolving Funds, a $4 million increase over the 2017 annualized CR level</span>. The Budget also provides $20 million for the Water Infrastructure Finance and Innovation Act program, equal to the funding provided in the 2017 annualized CR. This credit subsidy could potentially support $1 billion in direct Federal loans.</p>
</li>
<li>
<p id="annotationGroup-36"><span class="annotator-hl" id="annotation_2268" name="annotation_2268">Discontinues funding for the Clean Power Plan, international climate change programs, climate change research and partnership programs, and related efforts—saving over $100 million for the American taxpayer compared to 2017 annualized CR levels. Consistent with the President’s America First Energy Plan, the Budget reorients EPA’s air program to <span class="annotator-hl" id="annotation_2851" name="annotation_2851">protect the air we breathe without unduly burdening the American economy</span>.</span>
</p>
</li>
<li>
<p id="annotationGroup-70">Reins in Superfund administrative costs and emphasizes efficiency efforts by funding the Hazardous Substance Superfund Account at $762 million, $330 million below the 2017 annualized CR level. The agency would prioritize the use of existing settlement funds to clean up hazardous waste sites and<span class="annotator-hl" id="annotation_2854" name="annotation_2854"> look for ways to remove some of the barriers that have delayed the program’s ability to return sites to the community</span><span class="annotator-hl" id="annotation_2498" name="annotation_2498"><span class="annotator-hl" id="annotation_2854" name="annotation_2854">.</span></span>
</p>
</li>
<li>
<p id="annotationGroup-104"><span class="annotator-hl" id="annotation_2824" name="annotation_2824">Avoids duplication by concentrating EPA’s enforcement of environmental protection violations on programs that are not delegated to States, while providing oversight to maintain consistency and assistance across State, local, and tribal programs. This reduces EPA’s Office of Enforcement and Compliance Assurance budget to $419 million, which is $129 million below the 2017 annualized CR level.</span></p>
</li>
<li>
<p>Better targets EPA’s Office of Research and Development (ORD) at a level of approximately $250 million, which would result in a savings of $233 million from the 2017 annualized CR level. ORD would prioritize activities that support decision-making related to core environmental statutory requirements, as opposed to extramural activities, such as providing STAR grants.</p>
</li>
<li>
<p>Supports Categorical Grants with $597 million, a $482 million reduction below 2017 annualized CR levels. These lower levels are in line with the broader strategy of streamlining environmental protection. This funding level eliminates or substantially reduces Federal investment in State environmental activities that go beyond EPA’s statutory requirements.</p>
</li>
<li>
<p id="annotationGroup-69">Eliminates funding for specific regional efforts such as the <span class="annotator-hl" id="annotation_2493" name="annotation_2493">Great Lakes Restoration Initiative</span>, the Chesapeake Bay, and other geographic programs. These geographic program eliminations are $427 million lower than the 2017 annualized CR levels. <span class="annotator-hl" id="annotation_2835" name="annotation_2835">The Budget returns the responsibility for funding local environmental efforts and programs to State and local entities, allowing EPA to focus on its highest national priorities.</span></p>
</li>
<li>
<p id="annotationGroup-37">Eliminates more than 50 EPA programs, saving an additional $347 million compared to the 2017 annualized CR level. <span class="annotator-hl" id="annotation_2487" name="annotation_2487">Lower priority</span> and poorly performing programs and grants are not funded, nor are <span class="annotator-hl" id="annotation_2859" name="annotation_2859">duplicative functions that can be absorbed into other programs or that are State and local responsibilities</span>. Examples of eliminations in addition to those previously mentioned include: <span class="annotator-hl" id="annotation_2273" name="annotation_2273">Energy Star</span>; Targeted Airshed Grants; the <span class="annotator-hl" id="annotation_2275" name="annotation_2275">Endocrine Disruptor Screening Program</span>; and <span class="annotator-hl" id="annotation_2861" name="annotation_2861">infrastructure assistance to Alaska Native Villages and the Mexico Border</span>.</p>
</li>
</ul>
<h1 id="heading-22" class="anchor">NATIONAL AERONAUTICS AND SPACE ADMINISTRATION</h1>
<p>The President’s 2018 Budget:</p>
<ul>
<li>
<p>Supports and expands public-private partnerships as the foundation of future U.S. civilian space efforts. The Budget creates new opportunities for collaboration with industry on space station operations, supports public-private partnerships for deep-space habitation and exploration systems, funds data buys from companies operating small satellite constellations, and supports work with industry to develop and commercialize new space technologies.</p>
</li>
<li>
<p>Paves the way for eventual over-land commercial supersonic flights and safer, more efficient air travel with a strong program of aeronautics research. The Budget provides $624 million for aeronautics research and development.</p>
</li>
<li>
<p>Reinvigorates robotic exploration of the Solar System by providing $1.9 billion for the Planetary Science program, including funding for a mission to repeatedly fly by Jupiter’s icy ocean moon Europa and a Mars rover that would launch in 2020. To preserve the balance of NASA’s science portfolio and maintain flexibility to conduct missions that were determined to be more important by the science community, the Budget provides no funding for a multi-billion-dollar mission to land on Europa. The Budget also supports initiatives that use smaller, less expensive satellites to advance science in a cost-effective manner.</p>
</li>
<li>
<p>Provides $3.7 billion for continued development of the Orion crew vehicle, Space Launch System, and associated ground system, to send American astronauts on deep-space missions. To accommodate increasing development costs, the Budget cancels the multi-billion-dollar Asteroid Redirect Mission. NASA will investigate approaches for reducing the costs of exploration missions to enable a more expansive exploration program.</p>
</li>
<li>
<p id="annotationGroup-105"><span class="annotator-hl" id="annotation_2829" name="annotation_2829">Provides $1.8 billion for a focused, balanced Earth science portfolio that supports the priorities of the science and applications communities, a savings of $102 million from the 2017 annualized CR level. The Budget terminates four Earth science missions (PACE, OCO-3, DSCOVR Earth-viewing instruments, and CLARREO Pathfinder) and reduces funding for Earth science research grants.</span></p>
</li>
<li>
<p id="annotationGroup-106"><span class="annotator-hl" id="annotation_2831" name="annotation_2831">Eliminates the $115 million Office of Education, resulting in a more focused education effort through NASA’s Science Mission Directorate. The Office of Education has experienced significant challenges in implementing a NASA-wide education strategy and is performing functions that are duplicative of other parts of the agency.</span></p>
</li>
<li>
<p>Restructures a duplicative robotic satellite refueling demonstration mission to reduce its cost and better position it to support a nascent commercial satellite servicing industry, resulting in a savings of $88 million from the 2017 annualized CR level.</p>
</li>
<li>
<p>Strengthens NASA’s cybersecurity capabilities, safeguarding critical systems and data.</p>
</li>
</ul>
<h1 id="heading-23" class="anchor">SMALL BUSINESS ADMINISTRATION</h1>
<p>The President’s 2018 Budget:</p>
<ul>
<li>
<p id="annotationGroup-88">Supports more than <span class="annotator-hl" id="annotation_2631" name="annotation_2631">$45 billion in loan guarantees </span>to assist America’s small business owners with access to affordable capital to start or expand their businesses.</p>
</li>
<li>
<p id="annotationGroup-89">Strengthens SBA’s outreach center programs by reducing duplicative services, coordinating best practices, and <span class="annotator-hl" id="annotation_2634" name="annotation_2634">investing in communities that would benefit from SBA’s business center support</span>. As a result, SBA would be better positioned to strengthen local partnerships and more efficiently serve program participants while achieving savings over the 2017 annualized CR level.</p>
</li>
<li>
<p id="annotationGroup-38"><span class="annotator-hl" id="annotation_2284" name="annotation_2284">Supports over $1 billion in disaster relief lending to businesses, homeowners, renters, and property owners to help American communities recover quickly in the wake of declared disasters</span>. Through the disaster loan program, SBA is able to provide affordable, accessible, and immediate direct assistance to those hardest hit when disaster strikes.</p>
</li>
<li>
<p id="annotationGroup-90">Achieves $12 million in cost savings from the 2017 annualized CR level through identifying and eliminating those SBA grant programs where the <span class="annotator-hl" id="annotation_2638" name="annotation_2638">private sector provides effective mechanisms</span> to foster local business development and investment. Eliminations include PRIME technical assistance grants, Regional Innovation Clusters, and Growth Accelerators.</p>
</li>
<li>
<p id="annotationGroup-39">P<span class="annotator-hl" id="annotation_2286" name="annotation_2286">rovides training and support services for transitioning service members and veterans to pro- mote entrepreneurship and business ownership.</span> These programs help to fulfill the President’s commitment to support the Nation’s veterans by providing business counseling, lending, and contracting assistance.</p>
</li>
<li>
<p>Maintains $28 million in microloan financing and technical assistance to help serve, strengthen, and sustain the smallest of small businesses and startups.</p>
</li>
<li>
<p>Allows SBA to advocate and assist small businesses in accessing Federal contracts and small business research opportunities Government-wide.</p>
</li>
</ul>
<!--
<h1 id="heading-24" class="anchor">Summary Tables</h1>
<style>
.strong {
font-weight: bold;
}
.indent-1 {
padding-left: 25px !important;
}
.indent-2 {
padding-left: 40px !important;
}
.indent-3 {
padding-left: 55px !important;
}
</style>
<h1 id="heading-25" class="anchor">Table 1. Proposed Discretionary Caps for 2018 Budget</h1>
<p>(Budget authority in billions of dollars)</p>
<table class="table">
<thead>
<tr>
<th class="text-center"></th>
<th colspan="2">Caps</th>
</tr>
<tr>
<th></th>
<th>2017</th>
<th>2018</th>
</tr>
</thead>
<tbody>
<tr class="strong">
<th colspan="3">Current Law Base Caps:</th>
</tr>
<tr>
<td class="indent-1">Defense</td>
<td>551</td>
<td>549</td>
</tr>
<tr>
<td class="indent-1">Non-Defense</td>
<td>519</td>
<td>516</td>
</tr>
<tr class="strong">
<td>Total, Current Law Base Caps</td>
<td>1,070</td>
<td>1,065</td>
</tr>
<tr>
<td colspan="3"></td>
</tr>
<tr class="strong">
<th colspan="3">Proposed Base Cap Changes:</th>
</tr>
<tr>
<td class="indent-1">Defense</td>
<td>+25</td>
<td>+54</td>
</tr>
<tr>
<td class="indent-1">Non-Defense</td>
<td>-15</td>
<td>-54</td>
</tr>
<tr class="strong">
<td>Total, Proposed Changes</td>
<td>+10</td>
<td>...</td>
</tr>
<tr>
<td colspan="3"></td>
</tr>
<tr class="strong">
<th colspan="3">Proposed Base Caps: </th>
</tr>
<tr>
<td class="indent-1">Defense</td>
<td>576</td>
<td>603</td>
</tr>
<tr>
<td class="indent-1">Non-Defense</td>
<td>504</td>
<td>462</td>
</tr>
<tr class="strong">
<td>Total, Proposed Base Caps</td>
<td>1,080</td>
<td>1,065</td>
</tr>
<tr>
<td colspan="3"></td>
</tr>
<tr class="strong">
<th colspan="3">Enacted and Proposed Cap Adjustments</th>
</tr>
<tr>
<td class="indent-1">Overseas Contingency Operations (OCO)</td>
<td>89</td>
<td>77</td>
</tr>
<tr>
<td class="indent-1">Emergency Funding</td>
<td>3</td>
<td>...</td>
</tr>
<tr>
<td class="indent-1">Program Integrity</td>
<td>2</td>
<td>2</td>
</tr>
<tr>
<td class="indent-1">Disaster Relief</td>
<td>8</td>
<td>7</td>
</tr>
<tr class="strong">
<td>Total, Cap Adjustments</td>
<td>102</td>
<td>86</td>
</tr>
<tr>
<td colspan="3"></td>
</tr>
<tr class="strong">
<td>Total, Discretionary Budget Authority</td>
<td>1,181</td>
<td>1,151</td>
</tr>
<tr>
<td>21st Century CURES appropriations</td>
<td>1</td>
<td>1</td>
</tr>
</tbody>
</table>
<h1 id="heading-26" class="anchor">Table 2. 2018 Discretionary Overview by Major Agency</h1>
<p>(Net discretionary BA in billions of dollars)</p>
<table class="table">
<thead>
<tr>
<th colspan="3"></th>
<th colspan="2">2018 Request Less</th>
</tr>
<tr>
<th colspan="3"></th>
<th colspan="2">2017 CR/Enacted</th>
</tr>
<tr>
<th></th>
<th>2017 CR/Enacted</th>
<th>2018 Request</th>
<th>Dollar</th>
<th>Percent</th>
</tr>
</thead>
<tbody>
<tr class="strong">
<td colspan="5">Base Discretionary Funding</td>
</tr>
<tr>
<td colspan="5"></td>
</tr>
<tr class="strong">
<td colspan="5">Cabinet Departments</td>
</tr>
<tr>
<td class="indent-2">Agriculture</td>
<td>22.6</td>
<td>17.9</td>
<td>-4.7</td>
<td>-20.7%</td>
</tr>
<tr>
<td class="indent-2">Commerce</td>
<td>9.2</td>
<td>7.8</td>
<td>-1.5</td>
<td>-15.7%</td>
</tr>
<tr>
<td class="indent-2">Defense</td>
<td>521.7</td>
<td>574.0</td>
<td id="annotationGroup-107"><span class="annotator-hl" id="annotation_2837" name="annotation_2837">+52.3</span></td>
<td><span class="annotator-hl" id="annotation_2837" name="annotation_2837">+10.0%</span></td>