 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
    <head>
        <meta http-equiv="X-UA-Compatible" content="IE=edge">

        
            <meta name="viewport" content="width=device-width, initial-scale=1">  
            
    
    
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <meta name="description" content="" /> 
        <meta name="keywords" content="" /> 
        <meta name="google-site-verification" content="IkSsM0IAGpvE2RejHQrIlbmss6Ws-_6zR4x4ZfTptaM" />
        
        
         





        
        <!-- Title Tag -->
        
<title>
    City of Chicago :: Recovery and Reinvestment (Stimulus)
</title>

        <!-- Day Initialization -->
        

        <!-- Favicon -->
        <link rel="SHORTCUT ICON" href="/etc/designs/city/favicon.ico">
  
        <!--[if gte IE 7]>
        <link rel="stylesheet" type="text/css" media="screen" href="/etc/designs/city/css/cssshadows.css" />
        <![endif]-->
        <![if !IE]>
        <link rel="stylesheet" type="text/css" media="screen" href="/etc/designs/city/css/cssshadows.css"/>
        <![endif]>
        

        <link rel="stylesheet" type="text/css" media="print" href="/etc/designs/city/css/print.css"/>



        <!-- JavaScript -->
        <link rel="stylesheet" href="/etc/clientlibs/foundation/main.min.css" type="text/css">
<link rel="stylesheet" href="/etc/designs/city/clientlibs.min.css" type="text/css">
<script type="text/javascript" src="/etc/clientlibs/granite/jquery.min.js"></script>
<script type="text/javascript" src="/etc/clientlibs/granite/utils.min.js"></script>
<script type="text/javascript" src="/etc/clientlibs/granite/jquery/granite.min.js"></script>
<script type="text/javascript" src="/etc/clientlibs/foundation/jquery.min.js"></script>
<script type="text/javascript" src="/etc/clientlibs/foundation/main.min.js"></script>
<script type="text/javascript" src="/etc/designs/city/clientlibs.min.js"></script>


        
        
        
        
        
        
        <!--[if lt IE 7]>
        <script type="text/javascript" language="JavaScript" src="/etc/designs/city/js/unitpngfix.js"></script>
        <script type="text/javascript" language="JavaScript">
            try {
                document.execCommand("BackgroundImageCache", false, true);
            } catch (e) { }
        </script>
        <![endif]-->
        
     <!--[if lt IE 9]>
      <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
      <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
       <script src="http://css3-mediaqueries-js.googlecode.com/svn/trunk/css3-mediaqueries.js"></script>
    <![endif]-->       
        
        <script type="text/javascript"> 
           jQuery(document).ready(function() { 
         
                  $('#mgmenu1').universalMegaMenu({
                    menu_effect: 'hover_slide',
                    menu_speed_show: 100,
                    menu_speed_hide: 200,
                    menu_speed_delay: 200,
                    menu_click_outside: true,
                    menubar_trigger : false,
                    menubar_hide : false,
                    menu_responsive: true
                });

                $(".peFallback").hide();
                $(".peEnhance").show();
                
                $(".selfSubmitting").change(function() {
                    $(this).closest("form").submit();
                });
                 $(".yt_pPhoto").prettyPhoto({
                    allowresize: false,
                    opacity: .4,
                    default_width: 640,
                    default_height: 385
                });
                $(".page-link2").click(function() {
                    var vc_cmpHolder = $(this).closest(".youtubeparsys");                   
                    var vc_visibleVideo = vc_cmpHolder.find(".visibleVideoGal");
                    var currentVideoGal = vc_visibleVideo.attr("class");
                    var currentVideoGalId = parseInt(currentVideoGal.substr(currentVideoGal.indexOf('-')+1));                   
                    var nextGal = ".videoGal-"+(currentVideoGalId+1);

                    var directionOut = "left";
                    var directionIn = "right";                    
                    if($(this).hasClass("prev")){ 
                        var directionOut = "right";
                        var directionIn = "left";
                        var nextGal = ".videoGal-"+(currentVideoGalId-1);
                    } 
 
                   //CQ55 Patch
                    var clickedNext = ($(this).find("img").attr("src") == '/etc/designs/city/images/next-large.png');
                    var clickedPrev = !clickedNext;
                    var showNext = false;
                    if(clickedNext && vc_cmpHolder.find( ".videoGal-" +(currentVideoGalId+2) ).html()||'' != '') {
                        showNext = true;
                    }
                    //End 
                     
                    //if(!vc_cmpHolder.find(nextGal).prev().hasClass("videoGal")) {  //Removed
                    if( !clickedNext && nextGal =='.videoGal-0' ) { //for this
                        vc_cmpHolder.find(".prev img").hide();
                    }
                    else { 
                        vc_cmpHolder.find(".prev img").show();
                    }
                    //if(!vc_cmpHolder.find(nextGal).next().hasClass("videoGal")) {   //Removed
                    if( !clickedPrev && !showNext  ) {   //for this
                        vc_cmpHolder.find(".next img").hide();
                    }
                    else { 
                        vc_cmpHolder.find(".next img").show();
                    } 
                    
                    vc_cmpHolder.find(".visibleVideoGal").hide("slide",{direction:directionOut},300, function() {
                        vc_cmpHolder.find(nextGal).show("slide",{direction:directionIn},400).removeClass('hiddenVideoGal').addClass('visibleVideoGal');
                    }).removeClass('visibleVideoGal').addClass('hiddenVideoGal');
                });
                
                var visibleVideosParents = $('.visibleVideo').parent();
                visibleVideosParents.wrapAll('<div class="videoGal visibleVideoGal videoGal-0" style="display:block"/>');

                $('.hiddenVideo').parent().each(function(index) {
                    var remainder = index % visibleVideosParents.length;
                    if (remainder == 0) {
                        var quotient = ( index - remainder ) / visibleVideosParents.length;
                        var hv_parents = $('.video-'+(quotient+1)).parent();
                        hv_parents.wrapAll('<div class="videoGal hiddenVideoGal videoGal-' + (quotient+1) + '" />');
                    }                       
                });
            });          
        </script>
        
        
<!--[if lte IE 6]>
<style type="text/css" media="screen">
.sf-menu li ul li ul, .sf-menu li ul li ul {
        height:100%; } /* keeps mega lists visible in IE6 */
</style>
<![endif]-->

<!--[if lte IE 7]>
        <link rel="stylesheet" type="text/css" href="/etc/designs/city/css/ie7-or-lower.css" />
<![endif]-->

<!--[if lte IE 6]>
        <link rel="stylesheet" type="text/css" href="/etc/designs/city/css/ie6-and-lower.css" />
<![endif]-->




<script type="text/javascript">
 $(document).ready(function() {
 $.reject({ 
        reject: { /*msie7: true,
                  firefox15: true,
                  firefox11: true,
                  firefox7: true,
                  firefox3: true,
                  chrome21: true,
                  chrome20: true,*/
                  chrome19: true
         }, // Reject these browsers  
        header: 'Dear Web User:', // Header Text  
        paragraph1: 'This web browser version may limit the quality of your visit to the City of Chicago website. The site is internally tested and best viewed with the browsers listed below, so updating to one of these versions may improve your experience.', // Paragraph 1   
        paragraph2: 'Select an icon to get to the download page:',
        display: ['firefox','chrome','msie'], 
        closeCookie: true, // Once per session
        closeMessage: ' ', // Message below close window link 
        closeURL: '#notification'
        
    }); // Customized Browsers
    return false;
 });
    </script>  

        <style>
        #header-image img {
            max-width:960px !important;
   		 }
        #featuredservicescarousel img,.featuredservices-li img  {
            width:50px;
            height:50px;
        }
        </style>
    </head>
    <body>
        <div class="background-image-holder" align="center">
            <div id="container">
                <!-- Header -->
                
 

 
 

<html xmlns="http://www.w3.org/1999/xhtml"> 
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />




<style type="text/css">
@charset "utf-8";
/* CSS for google translate */

.lan_cont {
    position:absolute; left:600px; z-index:1000;
}

a.lan:link, a.lan:visited {
    font:Arial, Helvetica, sans-serif;
    color:#fff;
    text-decoration:none;
    font-size:12px;
    display:inline-block;
   /* height:20px;*/
    padding:0px 5px 0px 5px;
}

a.lan:hover, a.lan:active {
    font:Arial, Helvetica, sans-serif;
    color:#fff;
    text-decoration:underline;
    font-size:12px;
    display:inline-block;
    padding:0px 5px 0px 5px;
}

#arabic {
    font-size:16px;
}

.divider {
    color:#FFF;
    margin:0px 10px 0px 10px;
    font-weight:lighter;
} 

    ul.ui-autocomplete { z-index:10000000; }
    .ui-helper-hidden-accessible { display:none; } 
    .ui-menu-item a { cursor:pointer;}
</style>
</head>

<div id="print-preview">
    <div class="logo-float">
        <img src="/etc/designs/city/images/city-of-chicago-logo-black.gif" width="504" height="47" alt="The City of Chicago's Official Site"/>
    </div>
</div>

 

  <div class="lan_cont">
<a href="http://translate.google.com/translate?hl=en&sl=en&tl=en&u=https://www.cityofchicago.org/city/en/progs/recovery_reinvest.html" class="lan" title="Click to view site in English. Disclaimer: The City of Chicago is not responsible for inaccurately translated content.">English</a>
<span class="divider">|</span>
<a class="lan" href="http://translate.google.com/translate?hl=en&sl=en&tl=es&u=https://www.cityofchicago.org/city/en/progs/recovery_reinvest.html" title="Haga clic para ver el sitio en español. Descargo de responsabilidad: La ciudad de Chicago no es responsable por el contenido traducido erróneamente.">Espa&ntilde;ol</a>
<span class="divider">|</span>
<a class="lan" href="http://translate.google.com/translate?hl=en&sl=en&tl=zh-CN&u=https://www.cityofchicago.org/city/en/progs/recovery_reinvest.html" title="Click to view site in Chinese. Disclaimer: The City of Chicago is not responsible for inaccurately translated content.">中文</a>
<span class="divider">|</span>
<a href="http://translate.google.com/translate?hl=en&sl=en&tl=pl&u=https://www.cityofchicago.org/city/en/progs/recovery_reinvest.html" class="lan" title="Kliknij aby zobaczyć stronę w chińskiej Zastrzeżenie: City of Chicago nie ponosi odpowiedzialności za niedokładnie przetłumaczonej treści.">Polski</a>
<span class="divider">|</span>
<a href="http://translate.google.com/translate?hl=en&sl=en&tl=ar&u=https://www.cityofchicago.org/city/en/progs/recovery_reinvest.html" class="lan" id="arabic" title="انقر فوق لعرض في موقع المسؤولية الصينية: مدينة شيكاغو ليست مسؤولة عن محتوى ترجمة غير دقيقة.">عربي</a>

</div>

<div class="header">
    <div class="logo-float">
        <div id="skip">
            <a href="#startcontent">Skip to Main Content</a>
        </div>
        
        <a href="/content/city/en.html" title="The City of Chicago's Official Site">
            <img src="/etc/designs/city/images/city-of-chicago-logo.png" width="504" height="54" alt="The City of Chicago's Official Site"/>
        </a>
    </div>

    <div class="search"> 
        <form action="/city/en/general/search_results.html" method="GET" name="g">
            <p class="search-fields"><input type="text" id="site-search" 
            value="Keyword" style="color: #809DB9;"
            name="keyword" class="global-search auto-search global-search-text"/>
            &nbsp;
            <input type="submit" value="Search" name="Go" id="Go" class="mainSearchSubmitBtn" style="font-size: 12px; height: 20px;"/>
            </p>

        </form>
    </div>

    <script type="text/javascript">

    $(document).ready(function() {


        $( ".auto-search" ).autocomplete({ 
            source: "/content/city/en.SuggestProxy.html",
            //  appendTo: ".site-search", 
            select: function( event, ui ) {
                // $(this).attr("value",ui.item.value);
                 $(this).val(ui.item.value);
                var inputId = $(this).attr("id");
                if(inputId != "findServicesBigSearchInput" && inputId != "city-service-search-cmp") {
                    $('#site-search').val($('#site-search').val().trim());
                    if($('#keyword').length) {
                        $('#keyword').val($('#keyword').val().trim());
                    }
                    $(this).closest("form").submit();
                }
            }
        });

        if($('#site-search').val() == "Keyword") {
            $('#site-search').css('color','#809DB9');
        }
    });

    </script>

    <script type="text/javascript" language="JavaScript">
    $('#site-search').focus(function(){
        if($(this).val() == 'Keyword') {
            $(this).val('');
            $(this).css('color','Black');
        }
    });

    $('#site-search').blur(function(){
        if($(this).val() == "") {
            $(this).val('Keyword');
            $(this).css('color','#809DB9');
        } 
    });
    $('#Go').click(function(){
        if($('#site-search').val() == "" || $('#site-search').val() == "Keyword") {
            $('#site-search').focus();
            return false;
        }
        $('#site-search').val($('#site-search').val().trim());  

    });
    </script>
</div>

<!-- Main Navigation Bar -->



<div id="mgmenu1" class="mgmenu_container"><!-- Begin Mega Menu Container -->


        
        <ul class="mgmenu"><!-- Begin Mega Menu -->
               


            <li class="mgmenu_button">City Of Chicago</li><!-- Button (Mobile Devices) -->
               
            <li class="mgmenu-home"><span><a href="/city/en.html" title="The City of Chicago Official Site" class="top_menu">Home</a></span></li>
            <!-- City Services-->
            <li>
                <a title="City Services" class="top_menu" href="/city/en/svcs/find.html">City Services</a>
                <div class="dropdown_container dropdown_6columns">
                    <div class="col_6">
                        <a title="Most Popular 311 Services" href="/city/en/depts/311/supp_info/most_popular_311services.html">Most Popular 311 Services</a><br>
                        <a title="Service Directory (A-Z)" href="/city/en/svcs/servicedirectory.html">Service Directory (A-Z)</a><br>
                        <a title="Request a 311 Service" href="/city/en/depts/311/supp_info/request_service.html">Request a 311 Service</a>
                    </div>
                    <div class="col_6">
                        <p class="menu-header">Most used Online Services</p><br>
                        <a title="Apply for Building E-Permit" href="/city/en/depts/bldgs/provdrs/stand_plan/svcs/e-permits.html">Apply for Building E-Permit</a>
                        <a title="Apply for Business Licenses" href="/city/en/depts/bacp/sbc/business_licensing.html">Apply for Business Licenses</a> 
                        <a title="Apply for Job Opportunities" href="/city/en/depts/dhr/provdrs/emp/svcs/city_of_chicago_jobopportunities.html">Apply for Job Opportunities</a>
                        <a title="Look up Building Violations" href="/city/en/depts/bldgs/provdrs/inspect/svcs/building_violationsonline.html">Look up Building Violations</a>
                        <a title="Pay Parking Tickets" href="/city/en/depts/rev/provdrs/citation/svcs/pay_parking_and_red-lightticketson-line.html">Pay Parking Tickets</a>
                        <a title="Pay Water Bill" href="/city/en/depts/rev/provdrs/water/svcs/paying_the_waterbill.html">Pay Water Bill</a>
                        <a title="View Red-light Violation Video" href="/city/en/depts/rev/provdrs/citation/svcs/view_red-light_video.html">View Red-light Violation Video</a>              
                    </div>
                </div>

            </li>
            <!-- End City Services-->
            
            <!-- People We Serve-->
            <li>
              
                <a class="top_menu" title="People We Serve" href="/city/en/ofinterest.html">People We Serve</a>
                <div class="dropdown_container dropdown_10columns">
                    <div class="col_3">
                        <a class="menu-header" title="Residents" href="/city/en/ofinterest/res.html">Residents</a>
                        <a title="Children" href="/city/en/ofinterest/res/child.html">Children</a>
                        <a title="Ex-Offenders" href="/city/en/ofinterest/res/exoffend.html">Ex-Offenders</a>
                        <a title="Families" href="/city/en/ofinterest/res/fam.html">Families</a>
                        <a title="Home Owners" href="/city/en/ofinterest/res/owner.html">Home Owners</a>
                        <a title="Job Seekers" href="/city/en/ofinterest/res/job.html">Job Seekers</a>
                        <a title="Motorists" href="/city/en/ofinterest/res/motorists.html">Motorists</a>
                        <a title="Parents" href="/city/en/ofinterest/res/parent.html">Parents</a>
                        <a title="People with Disabilities" href="/city/en/ofinterest/res/disab.html">People with Disabilities</a>
                        <a title="Renters" href="/city/en/ofinterest/res/rent.html">Renters</a>
                    </div>
                    
                    <div class="col_3">
                        <a title="Seniors" href="/city/en/ofinterest/res/senior.html">Seniors</a>
                        <a title="Students" href="/city/en/ofinterest/res/stud.html">Students</a>
                        <a title="Veterans" href="/city/en/ofinterest/res/vet.html">Veterans</a>
                        <a title="Volunteers" href="/city/en/ofinterest/res/vol.html">Volunteers</a>
                        <a title="Youth/Teens" href="/city/en/ofinterest/res/teen.html">Youth/Teens</a>
                        <p>&nbsp;</p>
                        <a class="menu-header" title="Visitors" href="http://www.choosechicago.com/" target="_blank">Visitors</a> 
                        <a href="http://www.choosechicago.com/" target="_blank">Choose Chicago</a>
                    </div>

                    <div class="col_3">
                        <a class="menu-header" title="Businesses &amp; Professionals" href="/city/en/ofinterest/bus.html">Businesses &amp; Professionals</a>
                        <a title="Artists &amp; Entertainers" href="/city/en/ofinterest/bus/art.html">Artists &amp; Entertainers</a>
                        <a title="Builders" href="/city/en/ofinterest/bus/bldr.html">Builders</a>
                        <a title="Caregivers" href="/city/en/ofinterest/bus/crgvr.html">Caregivers</a>
                        <a title="Contractors" href="/city/en/ofinterest/bus/contract.html">Contractors</a>
                        <a title="Cultural Organizations" href="/city/en/ofinterest/bus/cultural.html">Cultural Organizations</a>
                        <a title="Developers" href="/city/en/ofinterest/bus/dvlpr.html">Developers</a>
                        <a title="Educators" href="/city/en/ofinterest/bus/edu.html">Educators</a>
                        <a title="Existing Businesses" href="/city/en/ofinterest/bus/exst_bus.html">Existing Businesses</a>
                        <a title="Food Service Establishments" href="/city/en/ofinterest/bus/food.html">Food Service Establishments</a>

                    </div>

                    <div class="col_3">
                        <a title="Health Professionals" href="/city/en/ofinterest/bus/health.html">Health Professionals</a>
                        <a title="MBE/WBE/DBE" href="/city/en/ofinterest/bus/mwdbe.html">MBE/WBE/DBE</a>
                        <a title="New Businesses" href="/city/en/ofinterest/bus/new_bus.html">New Businesses</a>
                        <a title="Non-Profit Organizations" href="/city/en/ofinterest/bus/non_prof.html">Non-Profit Organizations</a>
                        <a title="Retail Establishments" href="/city/en/ofinterest/bus/retail.html">Retail Establishments</a>
                        <a title="Social Service Providers" href="/city/en/ofinterest/bus/social.html">Social Service Providers</a>
                        <a title="Trades" href="/city/en/ofinterest/bus/trades.html">Trades</a>
                        <a title="Vendors" href="/city/en/ofinterest/bus/vend.html">Vendors</a>
                        <p>&nbsp;</p> 
                        <a class="menu-header" title="Investor Relations" href="/city/en/depts/fin/provdrs/financial_policy.html">Investor Relations</a>                              
                   
                    </div>
                </div>
            </li>
            <!-- End People We Serve-->

            <!-- Programs and Initiatives-->

             <li>
               
                 <a title="Programs &amp; Initiatives" class="top_menu" href="/city/en/progs.html">Programs &amp; Initiatives</a>
                <div class="dropdown_container dropdown_6columns">
                    <div class="col_6">
                        <a title="Affordable Chicago" href="/city/en/progs/affordchic.html">Affordable Chicago</a>
                        <a title="Consumer Protection" href="/city/en/progs/protect.html">Consumer Protection</a>
                        <a title="Education" href="/city/en/progs/edu.html">Education</a>
                        <a title="Environment" href="/city/en/progs/env.html">Environment</a>
                        <a title="Freedom of Information (FOIA)" href="/city/en/progs/foia.html">Freedom of Information (FOIA)</a>
                        <a title="Grants" href="/city/en/progs/grants.html">Grants</a>
                        <a title="Health &amp; Wellness" href="/city/en/progs/health.html">Health &amp; Wellness</a>
                        <a title="Housing" href="/city/en/progs/hous.html">Housing</a>
                        <a title="Inspections, Permitting &amp; Licensing" href="/city/en/progs/inspectionspermitting.html">Inspections, Permitting &amp; Licensing</a>
                    </div>
                    <div class="col_6">
                        <a title="Jobs" href="/city/en/progs/emp.html">Jobs</a>
                        
                        <a title="Municipal Marketing" href="/city/en/progs/municipal_marketing.html">Municipal Marketing</a>
                        <a title="Recovery &amp; Reinvestment (Stimulus)" href="/city/en/progs/recovery_reinvest.html">Recovery &amp; Reinvestment (Stimulus)</a>
                        <a title="Safety" href="/city/en/progs/safety.html">Safety</a>
                        <a title="Taxes" href="/city/en/progs/tax.html">Taxes</a>
                        <a title="Technology" href="/city/en/progs/tech.html">Technology</a>
                        <a title="Transparency" href="/city/en/progs/transparency.html">Transparency</a>
                        <a title="Transportation" href="/city/en/progs/trnsprt.html">Transportation</a>
                    </div>
                </div>

            </li>
            <!-- end Programs and Initiatives-->

             <!-- Chicago Goverment-->
                     <li>
                         <a title="Chicago Government" class="top_menu" href="/city/en/chicagogovt.html">Chicago Government</a>
                        <div class="dropdown_container dropdown_fullwidth">
                            <div class="col_3">
                                 <p class="menu-header">Elected Officials</p>
                                <a title="Mayor's Office" href="/city/en/depts/mayor.html">Mayor's Office</a>
                                <a title="City Clerk and Ordinances" href="http://www.chicityclerk.com/">City Clerk and Ordinances</a>
                                <a title="City Treasurer" href="http://www.chicagocitytreasurer.com/">City Treasurer</a>
                                <a title="City Council, Your Ward &amp; Aldermen" href="/city/en/about/council.html">City Council, Your Ward &amp; Aldermen</a>
                                 
                                <p>
                                <br><strong><a title="Employee Directory" href="http://cityinfo.cityofchicago.org/PhoneBook">Employee Directory</a></strong>
                                </p>
                                <p>
                                <strong><a title="Other City, County &amp; State Agencies" href="/city/en/about/other_ag.html">Other City, County &amp; State Agencies</a></strong>
                                </p>
                            </div>
                    
                            <div class="col_3">
                                 <p class="menu-header">Departments</p>
                                <a title="311 City Services" href="/city/en/depts/311.html">311 City Services</a>
                                <a title="Administrative Hearings" href="/city/en/depts/ah.html">Administrative Hearings</a>
                                <a title="Animal Care &amp; Control" href="/city/en/depts/cacc.html">Animal Care &amp; Control</a>
                                <a title="Aviation" href="/city/en/depts/doa.html">Aviation</a>
                                <a title="Budget &amp; Management" href="/city/en/depts/obm.html">Budget &amp; Management</a>
                                <a title="Buildings" href="/city/en/depts/bldgs.html">Buildings</a>
                                <a title="Bus. Affairs &amp; Consumer Protection" href="/city/en/depts/bacp.html">Bus. Affairs &amp; Consumer Protection</a>                                
                                <a title="City of Chicago TV" href="/city/en/depts/tv.html">City of Chicago TV</a>
                                <a title="Cultural Affairs &amp; Special Events" href="/city/en/depts/dca.html">Cultural Affairs &amp; Special Events</a>
                                <a title="Emergency Mgmt &amp; Communications" href="/city/en/depts/oem.html">Emergency Mgmt &amp; Communications</a>
                                <a title="Ethics" href="/city/en/depts/ethics.html">Ethics</a>
                                         
                            </div>

                            <div class="col_3">
                                <p>&nbsp;</p>
                                <a title="Family &amp; Support Services" href="/city/en/depts/fss.html">Family &amp; Support Services</a>
                                <a title="Finance" href="/city/en/depts/fin.html">Finance</a>
                                <a title="Fire" href="/city/en/depts/cfd.html">Fire</a>
                                <a title="Fleet and Facility Management" href="/city/en/depts/dgs.html">Fleet and Facility Management</a>                                 
                                <a title="Human Relations" href="/city/en/depts/cchr.html">Human Relations</a>
                                <a title="Human Resources" href="/city/en/depts/dhr.html">Human Resources</a>
                                <a title="Civilian Office of Police Accountability" href="/city/en/depts/copa.html">Civilian Office of Police Accountability</a>
                                <a title="Innovation &amp; Technology" href="/city/en/depts/doit.html">Innovation &amp; Technology</a>
                                <a title="Inspector General's Office" href="/city/en/depts/igo.html">Inspector General's Office</a>
                                <a title="Law" href="/city/en/depts/dol.html">Law</a>
                             <!--   <a title="Legislative Inspector General" href="/city/en/depts/olig.html">Legislative Inspector General</a> -->

                            </div>

                            <div class="col_3">
                                <p>&nbsp;</p>
                                <a title="License Appeal Commission" href="/city/en/depts/lac.html">License Appeal Commission</a>                             
                                <a title="People with Disabilities" href="/city/en/depts/mopd.html">People with Disabilities</a>
                                <a title="Planning &amp; Development" href="/city/en/depts/dcd.html">Planning &amp; Development</a>
                                <a title="Police" href="/city/en/depts/cpd.html">Police</a>
                                <a title="Police Board" href="/city/en/depts/cpb.html">Police Board</a>
                                <a title="Procurement Services" href="/city/en/depts/dps.html">Procurement Services</a>
                                <a title="Public Health" href="/city/en/depts/cdph.html">Public Health</a>
                                <a title="Public Library" href="/city/en/depts/cpl.html">Public Library</a>
                                <a title="Rules of the City of Chicago" href="/city/en/depts/dol/rules-and-regulations-portal.html">Rules of the City of Chicago</a>
                                
                                <a title="Streets &amp; Sanitation" href="/city/en/depts/streets.html">Streets &amp; Sanitation</a>
                                <a title="Transportation" href="/city/en/depts/cdot.html">Transportation</a>
                                <a title="Water Management" href="/city/en/depts/water.html">Water Management</a>                  
                            </div>
                        </div>
                    </li>

             <!-- End Chicago Goverment-->

       
            <!-- About-->
            <li>
                <a title="About Chicago" class="top_menu" href="/city/en/about.html">About Chicago</a>
                <div class="dropdown_container dropdown_2columns"> 
                  
                        <a title="Chicago History" href="/city/en/about/history.html">Chicago History</a>
                        <a title="Facts &amp; Statistics" href="/city/en/about/facts.html">Facts &amp; Statistics</a>
                        <a title="Attractions" href="http://www.choosechicago.com/deals/tours-and-attractions/" target="_blank">Attractions</a>
                    
                </div>

            </li>
            <!-- End About -->


      
            


          

            


               

         



        </ul><!-- End Mega Menu -->



    </div><!-- End Mega Menu Container -->

<!-- Banner -->






<div id="header-image">
    
        <!-- <img src="/content/dam/city/progs/recovery_and_reinvestment/banner/main_recovery_reinvestment_banner.jpeg" width="960" height="220" border="1" alt="Recovery and Reinvestment" title="Recovery and Reinvestment"/> -->
        <img src="/content/dam/city/progs/recovery_and_reinvestment/banner/main_recovery_reinvestment_banner.jpeg" border="1" alt="Recovery and Reinvestment" title="Recovery and Reinvestment"/>
    
</div>

                <!-- Body of the Site -->
                


<div id="content-container">
    <div id="left-column">
        <div class="left-module"> 
            



<div class="findservices">


   
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <link rel="stylesheet" type="text/css" href="/etc/designs/city/css/dcmegamenu.css"/>
    <link rel="stylesheet" type="text/css" href="/etc/designs/city/css/services-menu.css"/>
</head>

<body style="background-color: rgb(215, 234, 244)">
<span class="thefacts-header white">City Services</span>
<p class="dotted-white"></p>

    <div class="menucontainer">
    <h3>I Want To...</h3>
    <ul class="topmenu" id="css3menu1" style="padding:4px;">
        <li class="topmenu">
        
        <a title="Apply For" style="width: 170px;" href="/city/en/svcs/iwantto.apply_for.html">Apply For</a>        
  
      <ul class="city-left-nav-overlay-container"> 
      <li class="subfirst"><a title="A to Z List of Services" href="/city/en/svcs/iwantto.apply_for.html" style="text-align: center; margin-bottom: 3px">A to Z List of Services</a></li>
      
                   
              <li class="subfirst"><a title="Bid Job Opportunities " href="/content/city/en/depts/dhr/provdrs/emp/svcs/apply_for_bid_opportunities-forcityofchicagoemployeesandbargaini.html"><span>Bid Job Opportunities </span></a></li>
                      
              <li class="subfirst"><a title="Buildings E-Permits" href="/content/city/en/depts/bldgs/provdrs/stand_plan/svcs/e-permits.html"><span>Buildings E-Permits</span></a></li>
                      
              <li class="subfirst"><a title="Business Licenses" href="/content/city/en/depts/bacp/provdrs/bus/svcs/apply_for_a_businesslicenseonline.html"><span>Business Licenses</span></a></li>
                      
              <li class="subfirst"><a title="Chicago Housing Authority (CHA) Housing" href="/content/city/en/depts/other/provdrs/cha/svcs/find_housing_information.html"><span>Chicago Housing Authority (CHA) Housing</span></a></li>
                      
              <li class="subfirst"><a title="Internships and Volunteer Programs" href="/content/city/en/depts/dhr/provdrs/emp/svcs/internships.html"><span>Internships and Volunteer Programs</span></a></li>
                      
              <li class="subfirst"><a title="Job Opportunities at City of Chicago" href="/content/city/en/depts/dhr/provdrs/emp/svcs/city_of_chicago_jobopportunities.html"><span>Job Opportunities at City of Chicago</span></a></li>
                      
              <li class="subfirst"><a title="Link Card, Food Stamps and Medical Assistance" href="/content/city/en/depts/other/provdrs/soi/svcs/apply_for_link_cardfoodstampsandmedicalassistance.html"><span>Link Card, Food Stamps and Medical Assistance</span></a></li>
                      
              <li class="subfirst"><a title="Permit Parking Zone Lookup" href="/content/city/en/depts/other/provdrs/clerk/svcs/parking_permit_zonelookup.html"><span>Permit Parking Zone Lookup</span></a></li>
                      
              <li class="subfirst"><a title="WIC (Women Infant Children program)" href="/content/city/en/depts/cdph/provdrs/health_promotion/svcs/apply_for_wic_.html"><span>WIC (Women Infant Children program)</span></a></li>
         
        <div style="text-align: center; margin-bottom: 10px"></div>
        
        
         </ul>
                
   </li>
    
    
    <li class="topmenu">
        <a title="Check Status Of" style="width: 170px;" href="/city/en/svcs/iwantto.check_status_of.html">Check Status Of</a>
  
      <ul class="city-left-nav-overlay-container"> 
      <li class="subfirst"><a title="A to Z List of Services" href="/city/en/svcs/iwantto.check_status_of.html" style="text-align: center; margin-bottom: 3px">A to Z List of Services</a></li> 
                   
              <li class="subfirst"><a title="Abandoned Vehicle Complaint" href="/content/city/en/depts/streets/provdrs/traffic/svcs/abndvhclstatus.html"><span>Abandoned Vehicle Complaint</span></a></li> 
                      
              <li class="subfirst"><a title="Building Permit Status" href="/content/city/en/depts/bldgs/provdrs/stand_plan/svcs/building_permit_status.html"><span>Building Permit Status</span></a></li> 
                      
              <li class="subfirst"><a title="Building Violations" href="/content/city/en/depts/bldgs/provdrs/inspect/svcs/building_violationsonline.html"><span>Building Violations</span></a></li> 
                      
              <li class="subfirst"><a title="Building-Related Court Actions" href="/content/city/en/depts/bldgs/provdrs/inspect/svcs/building-relatedcourtactions.html"><span>Building-Related Court Actions</span></a></li> 
                      
              <li class="subfirst"><a title="Easy Building Permit Applications" href="/content/city/en/depts/bldgs/provdrs/permit_proc/svcs/applications.html"><span>Easy Building Permit Applications</span></a></li> 
                      
              <li class="subfirst"><a title="HomeMod - My Application status" href="/content/city/en/depts/mopd/provdrs/hous/svcs/accessible_home_modificationprogram-ages0-5911.html"><span>HomeMod - My Application status</span></a></li> 
                      
              <li class="subfirst"><a title="Parking, Red Light, or Speed Ticket(s)" href="/content/city/en/depts/fin/provdrs/parking_and_redlightcitationadministration/svcs/pay_parking_and_red-lightticketson-line.html"><span>Parking, Red Light, or Speed Ticket(s)</span></a></li> 
                      
              <li class="subfirst"><a title="Permit for Business ID and Advertising Signs" href="/content/city/en/depts/dcd/provdrs/admin/svcs/business_identificationandadvertisingsigns.html"><span>Permit for Business ID and Advertising Signs</span></a></li> 
                      
              <li class="subfirst"><a title="Service Request for Street Light Out" href="/content/city/en/depts/cdot/provdrs/traffic_signals_andstreetlights/svcs/bldgviolstatus.html"><span>Service Request for Street Light Out</span></a></li> 
                      
              <li class="subfirst"><a title="Vacant Property" href="/content/city/en/depts/bldgs/provdrs/inspect/svcs/check_status_of_vacantproperty.html"><span>Vacant Property</span></a></li> 
          
        
        <div style="text-align: center; margin-bottom: 10px"></div>
        
         </ul>
                
   </li>
 
     
    <li class="topmenu">
        <a title="Find/Get" style="width: 170px;" href="/city/en/svcs/iwantto.find_get.html">Find/Get</a>
          
      <ul class="city-left-nav-overlay-container">
      <li class="subfirst"><a title="A to Z List of Services" href="/city/en/svcs/iwantto.find_get.html" style="text-align: center; margin-bottom: 3px">A to Z List of Services</a></li> 

                   
              <li class="subfirst"><a title="Auto Pound Locations" href="/content/city/en/depts/streets/provdrs/traffic/svcs/auto_pound_locations.html"><span>Auto Pound Locations</span></a></li>
                      
              <li class="subfirst"><a title="Bids, RFP, RFQ, RFI, Small Order" href="/content/city/en/depts/dps/provdrs/contract/svcs/current_bid_opportunities.html"><span>Bids, RFP, RFQ, RFI, Small Order</span></a></li>
                      
              <li class="subfirst"><a title="Business License Look-up" href="/content/city/en/depts/bacp/provdrs/bus/svcs/business_licenselook-up.html"><span>Business License Look-up</span></a></li>
                      
              <li class="subfirst"><a title="Chicago Building Code" href="/content/city/en/depts/bldgs/provdrs/inspect/svcs/chicago_buildingcodeonline.html"><span>Chicago Building Code</span></a></li>
                      
              <li class="subfirst"><a title="Drivers License or State Id" href="/content/city/en/depts/other/provdrs/soi/svcs/get_a_driver_s_licenseorastateid.html"><span>Drivers License or State Id</span></a></li>
                      
              <li class="subfirst"><a title="Free STI/HIV/AIDS Testing and Treatment" href="/content/city/en/depts/cdph/provdrs/health_services/svcs/get_yourself_evaluatedforstihivaids.html"><span>Free STI/HIV/AIDS Testing and Treatment</span></a></li>
                      
              <li class="subfirst"><a title="Maps - GIS/Data" href="/content/city/en/depts/doit/provdrs/gis/svcs/maps---gis-data.html"><span>Maps - GIS/Data</span></a></li>
                      
              <li class="subfirst"><a title="Permit Parking Zone Lookup" href="/content/city/en/depts/other/provdrs/clerk/svcs/parking_permit_zonelookup.html"><span>Permit Parking Zone Lookup</span></a></li>
                      
              <li class="subfirst"><a title="Vital Records from the Cook County Clerk's Office" href="/content/city/en/depts/other/provdrs/ccco/svcs/get_vital_records.html"><span>Vital Records from the Cook County Clerk's Office</span></a></li>
                      
              <li class="subfirst"><a title="Ward & Alderman by Address" href="/content/city/en/depts/other/provdrs/clerk/svcs/find_your_ward_andalderman.html"><span>Ward & Alderman by Address</span></a></li>
         
        
        <div style="text-align: center; margin-bottom: 10px"></div>
        
         </ul>
                
   </li> 
   
 
    <li class="topmenu">
        <a title="Pay For/Buy" style="width: 170px;" href="/city/en/svcs/iwantto.pay_for_buy.html">Pay For/Buy</a>
  
      <ul class="city-left-nav-overlay-container"> 
      <li class="subfirst"><a title="A to Z List of Services" href="/city/en/svcs/iwantto.pay_for_buy.html" style="text-align: center; margin-bottom: 3px">A to Z List of Services</a></li> 

                   
              <li class="subfirst"><a title="Administrative Hearing Fines" href="/content/city/en/depts/fin/provdrs/payment_processingdivision/svcs/QuickPay.html"><span>Administrative Hearing Fines</span></a></li>
                      
              <li class="subfirst"><a title="Business License Renewal" href="/content/city/en/depts/bacp/provdrs/bus/svcs/renew_your_businesslicenseonline.html"><span>Business License Renewal</span></a></li>
                      
              <li class="subfirst"><a title="Business Taxes" href="/content/city/en/depts/fin/provdrs/tax_division/svcs/pay_and_file_yourtaxesonline.html"><span>Business Taxes</span></a></li>
                      
              <li class="subfirst"><a title="CTA Transit Customer Fare Cards" href="/content/city/en/depts/other/provdrs/cta/svcs/customer_fares_chartsandpurchasectafarecards.html"><span>CTA Transit Customer Fare Cards</span></a></li>
                      
              <li class="subfirst"><a title="Calculate the Cost of a Permit" href="/content/city/en/depts/bldgs/provdrs/stand_plan/svcs/permit_fee_calculator.html"><span>Calculate the Cost of a Permit</span></a></li>
                      
              <li class="subfirst"><a title="City of Chicago Photography" href="/content/city/en/depts/dgs/provdrs/asset_management/svcs/purchase_city_photography.html"><span>City of Chicago Photography</span></a></li>
                      
              <li class="subfirst"><a title="Parking, Red Light, or Speed Ticket(s)" href="/content/city/en/depts/fin/provdrs/parking_and_redlightcitationadministration/svcs/pay_parking_and_red-lightticketson-line.html"><span>Parking, Red Light, or Speed Ticket(s)</span></a></li>
                      
              <li class="subfirst"><a title="Surplus, Vehicles, Auctions" href="/content/city/en/depts/dps/provdrs/auction/svcs/city_of_chicago_onlineauctions.html"><span>Surplus, Vehicles, Auctions</span></a></li>
                      
              <li class="subfirst"><a title="Vehicle and Residential Permit Parking Stickers" href="/content/city/en/depts/other/provdrs/clerk/svcs/vehicle_sticker_andresidentialpermitparkingsales.html"><span>Vehicle and Residential Permit Parking Stickers</span></a></li>
                      
              <li class="subfirst"><a title="View Automated Speed Enforcement Video" href="/content/city/en/depts/fin/provdrs/parking_and_redlightcitationadministration/svcs/view_automated_speedenforcementvideo.html"><span>View Automated Speed Enforcement Video</span></a></li>
         
        
         <div style="text-align: center; margin-bottom: 10px"></div>
         
         </ul>
                
   </li>

    <li class="topmenu">
        <a title="Register" style="width: 170px;" href="/city/en/svcs/iwantto.register.html">Register</a>
          
      <ul class="city-left-nav-overlay-container"> 
      <li class="subfirst"><a title="A to Z List of Services" href="/city/en/svcs/iwantto.register.html" style="text-align: center; margin-bottom: 3px">A to Z List of Services</a></li> 

                   
              <li class="subfirst"><a title="Discrimination Complaint" href="/content/city/en/depts/cchr/provdrs/discrim/svcs/file_a_discriminationcomplaint.html"><span>Discrimination Complaint</a></span></li>
                      
              <li class="subfirst"><a title="Dog Registration" href="/content/city/en/depts/other/provdrs/clerk/svcs/dog_registration.html"><span>Dog Registration</a></span></li>
                      
              <li class="subfirst"><a title="Extreme Weather Notification" href="/content/city/en/depts/oem/provdrs/emerg_mang/svcs/sign_up_for_extremeweathernotification.html"><span>Extreme Weather Notification</a></span></li>
                      
              <li class="subfirst"><a title="For Park District Programs" href="/content/city/en/depts/other/provdrs/cpd/svcs/register_for_parkdistrictprogramsonline.html"><span>For Park District Programs</a></span></li>
                      
              <li class="subfirst"><a title="HIV/AIDS Online Courses" href="/content/city/en/depts/cdph/provdrs/health_services/svcs/register_for_freestihivaidsonlinecourses.html"><span>HIV/AIDS Online Courses</a></span></li>
                      
              <li class="subfirst"><a title="Independent Living Skills Program" href="/content/city/en/depts/mopd/provdrs/resource/svcs/ilp-independent_livingprogram.html"><span>Independent Living Skills Program</a></span></li>
                      
              <li class="subfirst"><a title="MPEA Airport Tax" href="/content/city/en/depts/bacp/provdrs/vehic/svcs/mpea_online_permitapplicationform.html"><span>MPEA Airport Tax</a></span></li>
                      
              <li class="subfirst"><a title="Register a Cottage Food Operation" href="/content/city/en/depts/cdph/provdrs/inspections_and_permitting/svcs/register_a_cottagefoodoperation.html"><span>Register a Cottage Food Operation</a></span></li>
         
         
         <div style="text-align: center; margin-bottom: 10px"></div>
         
         </ul>
                
   </li>

    <li class="topmenu">
        <a title="Report/File" style="width: 170px;" href="/city/en/svcs/iwantto.report_file.html">Report/File</a>
          
      <ul class="city-left-nav-overlay-container"> 
      <li class="subfirst"><a title="A to Z List of Services" href="/city/en/svcs/iwantto.report_file.html" style="text-align: center; margin-bottom: 3px">A to Z List of Services</a></li> 

                   
              <li class="subfirst"><a title="AIC (Annual Inspection Certification) Inspections" href="/content/city/en/depts/bldgs/provdrs/inspect/svcs/annual_inspectioncertificationaicprogramupdate.html"><span>AIC (Annual Inspection Certification) Inspections</span></a></li>
                      
              <li class="subfirst"><a title="Abandoned Vehicle" href="/content/city/en/depts/streets/provdrs/traffic/svcs/abandoned_vehicles.html"><span>Abandoned Vehicle</span></a></li>
                      
              <li class="subfirst"><a title="Cab Feedback" href="/content/city/en/depts/bacp/provdrs/consumer/svcs/consumer_cab_complaint.html"><span>Cab Feedback</span></a></li>
                      
              <li class="subfirst"><a title="Claim for Vehicle or Property Damage" href="/content/city/en/depts/other/provdrs/clerk/svcs/file_a_claim.html"><span>Claim for Vehicle or Property Damage</span></a></li>
                      
              <li class="subfirst"><a title="Complaint Against a Chicago Police Officer" href="/content/city/en/depts/ipra/provdrs/investigate/svcs/report_an_incidentagainstachicagopoliceofficer.html"><span>Complaint Against a Chicago Police Officer</span></a></li>
                      
              <li class="subfirst"><a title="Consumer Complaint Online" href="/content/city/en/depts/bacp/provdrs/pros_adj/svcs/file_a_citizen_complaintonline.html"><span>Consumer Complaint Online</span></a></li>
                      
              <li class="subfirst"><a title="Economic Disclosure, Affidavit, Online EDS" href="/content/city/en/depts/dps/provdrs/comp/svcs/economic_disclosurestatementseds.html"><span>Economic Disclosure, Affidavit, Online EDS</span></a></li>
                      
              <li class="subfirst"><a title="Pothole in the Street" href="/content/city/en/depts/cdot/provdrs/street/svcs/report_a_pot_holeinstreet.html"><span>Pothole in the Street</span></a></li>
                      
              <li class="subfirst"><a title="Stray Animal in Neighborhood" href="/content/city/en/depts/cacc/provdrs/animal_control_andrescue/svcs/report_a_stray_animal.html"><span>Stray Animal in Neighborhood</span></a></li>
         
        
         <div style="text-align: center; margin-bottom: 10px"></div>
         
         </ul>
                
   </li>


    <li class="topmenu">
        <a title="Request" style="width: 170px;" href="/city/en/svcs/iwantto.request.html">Request</a>
          
      <ul class="city-left-nav-overlay-container"> 
      <li class="subfirst"><a title="A to Z List of Services" href="/city/en/svcs/iwantto.request.html" style="text-align: center; margin-bottom: 3px">A to Z List of Services</a></li> 

                   
              <li class="subfirst"><a title="Building Inspection" href="/content/city/en/depts/bldgs/provdrs/inspect/svcs/request_an_inspection.html"><span>Building Inspection</span></a></li>
                      
              <li class="subfirst"><a title="Garbage Cart" href="/content/city/en/depts/streets/provdrs/rodent/svcs/garbage_cart_distribution.html"><span>Garbage Cart</span></a></li>
                      
              <li class="subfirst"><a title="Graffiti Removal Services" href="/content/city/en/depts/streets/provdrs/graffiti_blasters/svcs/mayor_daley_s_graffitiblasters.html"><span>Graffiti Removal Services</span></a></li>
                      
              <li class="subfirst"><a title="Parking Ticket Photos" href="/content/city/en/depts/fin/provdrs/parking_and_redlightcitationadministration/svcs/view_parking_ticketpictures.html"><span>Parking Ticket Photos</span></a></li>
                      
              <li class="subfirst"><a title="Request a Bike Map" href="/content/city/en/depts/cdot/provdrs/bike/svcs/request_a_bike_map.html"><span>Request a Bike Map</span></a></li>
                      
              <li class="subfirst"><a title="Residential Garbage Collection" href="/content/city/en/depts/streets/provdrs/streets_san/svcs/residential_garbagecollection.html"><span>Residential Garbage Collection</span></a></li>
                      
              <li class="subfirst"><a title="Restaurant Inspection" href="/content/city/en/depts/cdph/provdrs/inspections_and_permitting/svcs/food_protection_program.html"><span>Restaurant Inspection</span></a></li>
                      
              <li class="subfirst"><a title="View Red Light Video" href="/content/city/en/depts/fin/provdrs/parking_and_redlightcitationadministration/svcs/view_red-light_video.html"><span>View Red Light Video</span></a></li>
         
         
         <div style="text-align: center; margin-bottom: 10px"></div>
         
         </ul>
                
   </li>

    <li class="toplast">
        <a title="Sign up for/Volunteer" style="width: 170px;" href="/city/en/svcs/iwantto.sign_up_for_volunteer.html">Sign up for/Volunteer</a>
          
      <ul class="city-left-nav-overlay-container"> 
      <li class="subfirst"><a title="A to Z List of Services" href="/city/en/svcs/iwantto.sign_up_for_volunteer.html" style="text-align: center; margin-bottom: 3px">A to Z List of Services</a></li> 

                   
              <li class="subfirst"><a title="Alerts from NotifyChicago" href="/content/city/en/depts/oem/provdrs/alertchicago/svcs/notifychicago.html"><span>Alerts from NotifyChicago</span></a></li>
                      
              <li class="subfirst"><a title="CAPS Brochures & Information" href="/content/city/en/depts/cpd/provdrs/police_services/svcs/caps_brochure_request.html"><span>CAPS Brochures & Information</span></a></li>
                      
              <li class="subfirst"><a title="Community Emergency Response Team (CERT)" href="/content/city/en/depts/oem/provdrs/edu/svcs/become_a_cert_volunteer.html"><span>Community Emergency Response Team (CERT)</span></a></li>
                      
              <li class="subfirst"><a title="Food Alerts and Recalls" href="/content/city/en/depts/cdph/provdrs/inspections_and_permitting/svcs/sign_up_to_receivefoodalertsandrecalls.html"><span>Food Alerts and Recalls</span></a></li>
                      
              <li class="subfirst"><a title="Internships and Volunteer Programs" href="/content/city/en/depts/dhr/provdrs/emp/svcs/internships.html"><span>Internships and Volunteer Programs</span></a></li>
                      
              <li class="subfirst"><a title="One Good Deed Chicago Volunteer Opportunities" href="/content/city/en/depts/mayor/provdrs/special_prog/svcs/one_good_deed_chicago.html"><span>One Good Deed Chicago Volunteer Opportunities</span></a></li>
                      
              <li class="subfirst"><a title="Voluntary Disclosure" href="/content/city/en/depts/fin/provdrs/tax_division/svcs/apply_for_voluntarydisclosureofchicagobusinesstaxes.html"><span>Voluntary Disclosure</span></a></li>
         
        
         <div style="text-align: center; margin-bottom: 10px"></div>
         
         </ul>
                
   </li>        
          
    </ul>
    
</div>

<p style="margin-top: 1px" ></p>

</body>
</html>

  



<!-- search-services-->
 </div>


<div class="ofinteresttobuttons"><!-- 


<a href="/city/en/ofinterest/bus.html" title="Businesses & Professionals">
    <img class="hover-button" src="/etc/designs/city/images/buttons/for-business.gif" width="175" height="30" border="0" alt="Businesses & Professionals" name="findservicesforbusinesses" />
</a>

<a href="/city/en/ofinterest/res.html" title="Residents">
    <img class="hover-button" src="/etc/designs/city/images/buttons/for-residents.gif" width="175" height="30" border="0" alt="Residents" name="findservicesforresidents" />
</a>

<a href="http://explorechicago.org" title="Visitors" target="_blank">
    <img class="hover-button" src="/etc/designs/city/images/buttons/for-visitors.gif" width="175" height="30" border="0" alt="Visitors" name="findservicesforvisitors" />
</a> 
--></div>



    <div class="dotted-white"></div>
    
    <div>
<h3 class="white">Related Links</h3>
<p><strong>Recovery.gov</strong></p>
<p><a href="http://www.govbenefits.gov" target="_blank" title="GovBenefits.gov"><strong>GovBenefits.gov</strong></a></p>
<p><strong>MakingHomesAffordable.gov</strong></p>
<p>&nbsp;</p>
<h3 class="white">Related Videos</h3>
<p><strong><a href="http://www.youtube.com/watch?v=xENxyxRQaw4&amp;amp;amp;amp;feature=channel_page" target="_blank" title="Video of Mayor Daley Announcement of Stimulus">Mayor Announces City Stimulus Plan<br /></a></strong></p>
<p><strong><a href="http://www.youtube.com/watch?v=m17pz0R_qZo&amp;amp;amp;amp;eurl=http%3A%2F%2Fwww%2Ecitizentube%2Ecom%2F2008%2F11%2Fpresident%2Delect%2Dobama%2Dannounces%2Ehtml&amp;amp;amp;amp;feature=player_embedded" target="_blank" title="Video of President Obama announcing Federal Stimulus">President Obama Announces Federal Stimulus</a></strong></p>
<p><strong><a href="http://www.youtube.com/watch?v=iDzeRO85wlg&amp;amp;feature=channel_page" target="_blank" title="Video of Foreclosure Assistance Announcement">Foreclosure Assistance Announcement</a></strong></p>
<div style="width: 160px; background-color: transparent;"><form style="margin-bottom: 3px;" action="http://visitor.constantcontact.com/d.jsp" method="post"><input type="hidden" name="p" value="oi" /></form></div>
</div>
<p><!-- END: Constant Contact Stylish Email Newsletter Form --></p>

        </div>
    </div>
    
    <div id="two-column-top"></div>
    <div id="content-panel">
        <div id="content-content">
           



<div class="toolbar">

<script type="text/javascript">
    var addthis_options = 'email, favorites, digg, delicious, facebook, blogger, live, myspace, stumbleupon, twitter, linkedin, reddit, mixx, more';
    var addthis_brand = "City of Chicago";
    var addthis_config = {
        services_custom: {
            name: "RSS",
            url: "http://www.cityofchicago.org/city/en/rss.html?url={{url}}&title={{title}}",
            icon: "http://www.cityofchicago.org/etc/designs/city/images/icons/rss-icon.png"
        },
        ui_click: true /* normally would disable mouseover behavior */
    };
</script>

<!-- Option 1 -->
<!-- icon: "http://www.cityofchicago.org/etc/designs/city/images/icons/rss-icon.png" -->
<div id="tools">
    <div class="addthis_sharing_toolbox">

    </div>
</div>


<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=cocinternetsite" async="async"></script>



<!-- Screenreader to skip navigation -->
<a id="startcontent" name="startcontent"></a></div>





 



<h1 class="page-heading">Recovery and Reinvestment (Stimulus)</h1>

<div class="top-images">
    
        
        
        
            
        
    
</div>

<div><table style="width: 661px; height: 568px;" dir="ltr" border="0" align="center">
<tbody>
<tr>
<td valign="top"><img src="/content/dam/city/progs/recovery_and_reinvestment/Images/EducationThumbnail.jpg" border="0" style="border: 0pt none;" alt="Education " title="Education " width="104" height="74"/></td>
<td valign="top">
<h3><a href="/content/city/en/progs/recovery_reinvest/education1.html" target="_self" title="Housing">Education</a></h3>
Transform lives by building a foundation for excellence and a pathway to dream, achieve, and contribute to a global society.
<p>&nbsp;</p>
</td>
<td valign="top"><img src="/content/dam/city/progs/recovery_and_reinvestment/Images/housing.jpg" border="0" style="border: 0pt none;" alt="Housing" title="Housing" width="104" height="75"/></td>
<td valign="top">
<h3><a href="/content/city/en/progs/recovery_reinvest/education2.html" target="_self" title="Environment &amp; Energy">Housing &amp; Energy (Environment)</a></h3>
<p>Creation and preservation of affordable housing, energy efficiency for private homes,&nbsp; foreclosure prevention, and neighborhood stabilization.</p>
</td>
</tr>
<tr>
<td valign="top"><img src="/content/dam/city/progs/recovery_and_reinvestment/Images/health.jpg" border="0" style="border: 0pt none;" alt="Basic Needs (Health &amp; Human Services)" title="Basic Needs (Health &amp; Human Services)" width="104" height="75"/></td>
<td valign="top">
<h3><a href="/content/city/en/progs/recovery_reinvest/education3.html" target="_self" title="Health &amp; Human Services">Basic Needs (Health &amp; Human Services</a></h3>
Addresses homelessness, Head Start, and a range of counseling and support services.&nbsp; </td>
<td valign="top"><img src="/content/dam/city/progs/recovery_and_reinvestment/Images/publicsafety.jpg" border="0" style="border: 0pt none;" alt="Public Safety" title="Public Safety" width="104" height="78"/></td>
<td valign="top">
<h3><a href="/content/city/en/progs/recovery_reinvest/education5.html" target="_self" title="Public Safety">Public Safety</a></h3>
Make streets, sidewalks, schools, and parks safe for all residents. Helping Chicago protect quality of life by adding new resources for preventing and controlling crime and supporting community capacity.</td>
</tr>
<tr>
<td valign="top"><img src="/content/dam/city/progs/recovery_and_reinvestment/Images/TransportationThumbnail.jpg" border="0" style="float: left; border: 0pt none;" alt="Transportation" title="Transportation" width="104" height="74"/></td>
<td valign="top">
<h3><a href="/content/city/en/progs/recovery_reinvest/education7.html" target="_self" title="Transportation &amp; Infrastructure">Transportation &amp; Infrastructure</a></h3>
Addresses the most pressing capital needs of CDOT, CTA, and other agencies, including reconstruction, resurfacing, repair, and rail improvements.</td>
<td valign="top"><img src="/content/dam/city/progs/recovery_and_reinvestment/Images/TechnologyThumbnail.jpg" border="0" style="vertical-align: top; border: 0pt none;" alt="Broadband Technology" title="Broadband Technology" width="104" height="74"/></td>
<td valign="top">
<h3><a href="/content/city/en/progs/recovery_reinvest/education6.html" target="_self" title="Technology">Broadband (Technology)</a></h3>
Increasing technology access across the city and pursuing digital excellence initiatives that encourage all residents, businesses, and communities to participate fully in the Internet.</td>
</tr>
<tr>
<td valign="top"><img src="/content/dam/city/progs/recovery_and_reinvestment/Images/WDThumbnail.jpg" border="0" style="border: 0pt none;" alt="Workforce Development" title="Workforce Development" width="104" height="74"/></td>
<td valign="top">
<h3><a href="/content/city/en/progs/recovery_reinvest/education8.html" target="_self" title="Workforce Development">Workforce Development</a></h3>
Ensuring that the investments made in education, job training, and businesses support the overall health of the economy by promoting job development and retention.&nbsp;</td>
<td valign="top"><img src="/content/dam/city/progs/recovery_and_reinvestment/Images/PDFReport.jpg" border="0" style="border: 0pt none;" alt="Image of a report PDF" title="Image of a report PDF" width="104" height="129"/></td>
<td valign="top">
<h3><a href="/content/city/en/progs/recovery_reinvest/recovery_in_chicago.html" target="_self" title="Recovery in Chicago Reports Page"><strong>Reports</strong></a></h3>
<p>Download Reports and find other resources with ARRA updates and Job Creation updates.</p>
</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<blockquote>
<blockquote>
<blockquote>
<blockquote>
<blockquote>
<p>On February 17, 2009, the <strong>American Recovery and Reinvestment Act ("ARRA") </strong>was signed into law by President Barack Obama, initiating an unparalleled $787 billion stimulus to the national economy through new spending and tax cuts.&nbsp;Recovery and Reinvestment funds are requested through grant application cycles, awarded by the Federal Government, invested locally, and tracked nationwide. To obtain and disburse funds, Chicago has created&nbsp;these strategy teams listed above.</p>
<p>The teams work as part of the <strong>Chicago Recovery Partnership</strong>. The Chicago Recovery Partnership has set three goals to define its purpose:&nbsp;&nbsp;</p>
<ul>
<li>Promote transparency of decision making, funding, and results</li>
<li>Support nonprofits in implementing stimulus programs</li>
<li>Leave a sustainable, lasting legacy that continues to improve the quality of life for all Chicagoans</li>
</ul>
</blockquote>
<blockquote>
<h3><a href="/content/city/en/progs/recovery_reinvest/recovery_in_chicago.html" target="_self" title="Chicago Recovery in Chicago, Reports and Job Updates">Recovery in Chicago: ARRA Reports and Job Creation Updates</a></h3>
</blockquote>
</blockquote>
</blockquote>
</blockquote>
</blockquote></div>





<div class="relatedcontent"></div>





    <div class="dotted-black"></div>

    <h3>Most Recent News (Recovery and Reinvestment (Stimulus))</h3>
    <table class="news-list" cellspacing="0" cellpadding="0">
    
    
  
    <tr>
        <td class="date">Jul 23,2016</td>
        <td class="content"><a href="/content/city/en/depts/streets/provdrs/street/news/2016/july/mayor-emanuel-announces-city-departments-deliver-a-blitz-of-serv.html">Mayor Emanuel Announces City Departments Deliver a Blitz of Services to Back of the Yards Neighborhood</a></td>
    </tr>
    
    
        
    </table>
    
    


 


    <div class="dotted-black"></div>

    <h3>Supporting Information</h3>

    <ul class="no-bullets">
        
            <li><a href="/content/city/en/depts/water/supp_info/archived_constructionreports/2012_water_and_sewermainprojects.html">2012 Water and Sewer Main Projects</a></li>
        
            <li><a href="/content/city/en/progs/recovery_reinvest/education3.html">Basic Needs (Health &amp; Human Services)</a></li>
        
            <li><a href="/content/city/en/progs/recovery_reinvest/education6.html">Broadband (Technology)</a></li>
        
            <li><a href="/content/city/en/progs/recovery_reinvest/stimulusnews.html">Chicago Recovery &amp; Reinvestment News</a></li>
        
            <li><a href="/content/city/en/depts/water/supp_info/dwm_constructionprojects.html">DWM Construction Projects</a></li>
        
    </ul>
    
                <p class="view-all"><a href="/content/city/en/progs/recovery_reinvest/supp_info.html">View all Supporting Information</a></p>
         




<div class="dotted-black"></div>
<div style="clear: both"><div class="youtubeparsys cityparsys"></div>
</div>
        </div>
    </div>
    
    <div id="content-bottom-gradient"></div>
</div>


                <!-- Footer -->
                


 
<!-- footer -->
<div id="footer">
    <div class="footer-navigation">
        <ul>
            <li><a href="/city/en.html" title="The City of Chicago's Official Site">Home</a> : </li>
            <li><!--googleoff: anchor--><a href="/city/en/general/disclaimer.html">Disclaimer</a><!--googleon: anchor--> : </li>
            <li><!--googleoff: anchor--><a href="/city/en/general/privacy.html">Privacy Policy</a><!--googleon: anchor--> : </li>
            <li><!--googleoff: anchor--><a href="/city/en/general/standards.html">Web Standards</a><!--googleon: anchor--> : </li>
            <li><!--googleoff: anchor--><a href="/city/en/general/credits.html">Site Credits</a><!--googleon: anchor--> : </li>
            <li><!--googleoff: anchor--><a href="/city/en/general/sitemap.html">Site Map</a><!--googleon: anchor--> : </li>
            <li><!--googleoff: anchor--><a href="/city/en/general/contact.html">Contact Us</a><!--googleon: anchor--> : </li>
            <li><!--googleoff: anchor--><a href="http://author.cityofchicago.org/en/depts/mayor/en/press_room.html" target="_blank">Press Room</a><!--googleon: anchor--></li>
        </ul>
    </div> 
     
    <!-- /footer-navigation -->

    Copyright &#169; 2010 - 2017 City of Chicago<br />

    <br />
    
    <a href="/content/city/en.html" title="The City of Chicago's Official Site">
        <img src="/etc/designs/city/images/seal.gif" width="65" height="65" title="The City of Chicago's Official Site" alt="The City of Chicago's Official Site"/>
    </a>
</div>

            </div>
            <!-- /container -->
        </div>


 
	<script>

        $(document).ready(function() {
			var qs = window.location.search;
             var isRedirect = window.location.href.indexOf("redirect.html")>=0;

            if(!isRedirect) {
				return;
            }

            if(qs.indexOf("redirectTo")>=0) {
				url = qs.split("=")[1];
                setTimeout( function() {
					window.location = url;
                },5000);
            }else {
                window.location = "/city/en.html";
            }


        });
    </script>

 

        
        
            <!-- Google Analytics Snippet - start -->           
            <script type="text/javascript">
                var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
                document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
            </script>
            <script type="text/javascript">
                try {
                    var pageTracker = _gat._getTracker("UA-2412440-12");
                    pageTracker._trackPageview();
                } 
                catch(err) {}
            </script>
            <!-- Google Analytics Snippet - end -->
        
        
    </body>
</html>