-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
115 lines (105 loc) · 5.23 KB
/
about.html
File metadata and controls
115 lines (105 loc) · 5.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>CBO Simplifier</title>
<!-- Bootstrap -->
<link href="css/bootstrap-flatly.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<link href="css/customcss.css" rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-default" data-spy="affix" data-offset-top="0">
<div class="container-fluid">
<ul class="nav navbar-nav">
<li><a class="navbar-brand" href="index.html">Home</a></li>
<li><a href="explore.html">Explore</a></li>
<li class="active"><a href="about.html">About</a></li>
<li><a href="contribute.html">Contribute</a></li>
</ul>
</div>
</nav>
<div class="container-fluid">
<div class="row content">
<div class="col-sm-2 text-center">
<div class="well">
<p>ADS</p>
</div>
<div class="well">
<p>ADS</p>
</div>
<div class="well">
<p>ADS</p>
</div>
<div class="well">
<p>ADS</p>
</div>
<div class="well">
<p>ADS</p>
</div>
<div class="well">
<p>ADS</p>
</div>
</div>
<div class="col-md-8">
<h1>What is the CBO Simplifier?</h1>
<p>
The <strong>CBO Simplifier</strong> is a service which takes <a href="https://www.cbo.gov/cost-estimates">cost reports</a> published by <a href="https://www.cbo.gov/">Congressional Budget Office</a>, and boils them down into a simple revenue-vs-cost form.
</p>
<p>
This is an example of what <a href="https://www.cbo.gov/publication/52133">a typical CBO report</a> looks like:
</p>
<blockquote class="small">
<p>
Enacting S. 2921 would affect several benefit programs administered by the Department of Veterans Affairs (VA), including those providing education, housing, and burial benefits. On net, those changes would decrease direct spending by $3.9 billion over the 2017-2026 period.
</p>
<p>
In addition, S. 2921 would make a number of changes to VA’s health care programs, including expanding the caregivers program, improving benefits for homeless veterans, and increasing pay for medical staff. In total, CBO estimates that implementing those provisions would cost $3.5 billion over the 2017-2021 period, subject to appropriation of the necessary amounts.
</p>
<p>
Pay-as-you-go procedures apply because enacting the legislation would affect direct spending. Enacting the bill would not affect revenues. CBO estimates that enacting S. 2921 would not increase net direct spending or on-budget deficits in any of the four consecutive 10-year periods beginning in 2027.
</p>
<p>
S. 2921 contains no intergovernmental or private-sector mandates as defined in the Unfunded Mandates Reform Act (UMRA) and would not affect the budgets of state, local, or tribal governments.
</p>
</blockquote>
<p>
We take these reports, boil them down, and present you with an easy to read blurb. In addition to a simple summary, we also provide links to the webpage, pdf reports of each bill, and a finacial summary of the form:
</p>
<ul>
<li class="text-success"><strong>Savings</strong> $3.9 billion</li>
<li class="text-danger"><strong>Spending</strong> $3.5 billion</li>
</ul>
</div>
<div class="col-sm-2 text-center">
<div class="well">
<p>ADS</p>
</div>
<div class="well">
<p>ADS</p>
</div>
<div class="well">
<p>ADS</p>
</div>
<div class="well">
<p>ADS</p>
</div>
<div class="well">
<p>ADS</p>
</div>
<div class="well">
<p>ADS</p>
</div>
</div>
</div>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
</body>
</html>