CINXE.COM

Home - Centers for Medicare & Medicaid Services

<!DOCTYPE html> <!--[if IE 8 ]><html lang="en-US" class="no-js ie8"><![endif]--> <!--[if IE 9 ]><html lang="en-US" class="no-js ie9"><![endif]--> <!--[if (gt IE 9) | !(IE)]><!--> <html lang="en-US" class="no-js not-ie"> <!--<![endif]--> <head><script type="text/javascript" src="/_static/js/bundle-playback.js?v=HxkREWBo" charset="utf-8"></script> <script type="text/javascript" src="/_static/js/wombat.js?v=txqj7nKC" charset="utf-8"></script> <script>window.RufflePlayer=window.RufflePlayer||{};window.RufflePlayer.config={"autoplay":"on","unmuteOverlay":"hidden"};</script> <script type="text/javascript" src="/_static/js/ruffle/ruffle.js"></script> <script type="text/javascript"> __wm.init("https://web.archive.org/web"); __wm.wombat("http://www.cms.gov/","20150408080939","https://web.archive.org/","web","/_static/", "1428480579"); </script> <link rel="stylesheet" type="text/css" href="/_static/css/banner-styles.css?v=S1zqJCYt" /> <link rel="stylesheet" type="text/css" href="/_static/css/iconochive.css?v=3PDvdIFv" /> <!-- End Wayback Rewrite JS Include --> <title>Home - Centers for Medicare &amp; Medicaid Services </title> <meta http-equiv="X-UA-Compatible" content="IE=Edge"/> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <meta name="DC.date" content="02/25/2015 8:39 AM"/> <meta name="DC.description" content="CMS Provides Health Coverage for 100 Million People... ...through Medicare, Medicaid, and the Children's Health Insurance Program. And with health insurance reforms and health care exchanges, we are improving health care and ensuring coverage for all Americans."/> <meta name="DC.format" content="text/html"/> <meta name="DC.identifier" content="99908"/> <meta name="DC.language" content="en-us"/> <meta name="DC.relation" content="CMSGOV"/> <meta name="DC.subject" content="CMS Provides Health Coverage for 100 Million People... ...through Medicare, Medicaid, and the Children's Health Insurance Program. And with health insurance reforms and health care exchanges, we are improving health care and ensuring coverage for all Americans."/> <meta name="DC.title" content="Home"/> <meta http-equiv="content-type" content="text/html; charset=utf-8"/> <meta http-equiv="pragma" content="no-cache"/> <meta http-equiv="expires" content="Fri, 01 Jan 2082 08:00:00 GMT"> <link rel="shortcut icon" href="/web/20150408080939im_/http://www.cms.gov/cmsgov_favicon.ico" type="image/x-icon"/> <meta name="viewport" content="width=device-width, initial-scale=1.0"/> <script type="text/javascript" src="//web.archive.org/web/20150408080939js_/http://assets.cms.gov/resources/cms/foresee/foresee-trigger.js"></script> <script type="text/javascript" src="//web.archive.org/web/20150408080939js_/http://assets.cms.gov/resources/libs/modernizr/2.7.1/js/modernizr.js"></script> <link rel="stylesheet" href="/web/20150408080939cs_/http://www.cms.gov/resources/cms/css/bootstrap.3.1.1.css"> <link rel="stylesheet" href="/web/20150408080939cs_/http://www.cms.gov/resources/cms/css/font-awesome-3-1-1.css"> <style type="text/css"> @import url("//web.archive.org/web/20150408080939cs_/http://assets.cms.gov/resources/cms/css/base.css"); @import url("//web.archive.org/web/20150408080939cs_/http://assets.cms.gov/resources/cms/css/cms-global.css"); @import url("//web.archive.org/web/20150408080939cs_/http://assets.cms.gov/resources/cms/css/cms-media.css"); @import url("//web.archive.org/web/20150408080939cs_/http://assets.cms.gov/resources/cms/css/508addthis.css"); @import url("//web.archive.org/web/20150408080939cs_/http://assets.cms.gov/resources/cms/css/storypages.css"); @import url("//web.archive.org/web/20150408080939cs_/http://assets.cms.gov/resources/cms/css/cms-newsroom.css"); @import url("//web.archive.org/web/20150408080939cs_/http://assets.cms.gov/resources/cms/css/cms-bucket.css"); @import url("//web.archive.org/web/20150408080939cs_/http://assets.cms.gov/resources/cms/css/cms-widgets.css"); @import url("//web.archive.org/web/20150408080939cs_/http://assets.cms.gov/resources/cms/css/social-media-widget.css"); @import url("//web.archive.org/web/20150408080939cs_/http://assets.cms.gov/resources/cms/css/dynamic.css"); @import url("//web.archive.org/web/20150408080939cs_/http://assets.cms.gov/resources/cms/css/cms-center.css"); @import url("//web.archive.org/web/20150408080939cs_/http://assets.cms.gov/resources/cms/css/cms-homepage.css"); </style> <script type="text/javascript"> function XHConn() { var xmlhttp, bComplete = false; try { xmlhttp = new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { try { xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); } catch (e) { try { xmlhttp = new XMLHttpRequest(); } catch (e) { xmlhttp = false; }}} if (!xmlhttp) return null; this.connect = function(sURL, sMethod, sVars, fnDone) { if (!xmlhttp) return false; bComplete = false; sMethod = sMethod.toUpperCase(); try { if (sMethod == "GET") { xmlhttp.open(sMethod, sURL+"?"+sVars, true); sVars = ""; } else { xmlhttp.open(sMethod, sURL, true); xmlhttp.setRequestHeader("Method", "POST "+sURL+" HTTP/1.1"); xmlhttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); } xmlhttp.onreadystatechange = function(){ if (xmlhttp.readyState == 4 && !bComplete) { bComplete = true; fnDone(xmlhttp); }}; xmlhttp.send(sVars); } catch(z) { return false; } return true; }; return this; } // doAJAXCall : Generic AJAX Handler, used with XHConn // Author : Bryce Christensen (www.esonica.com) // PageURL : the server side page we are calling // ReqType : either POST or GET, typically POST // PostStr : parameter passed in a query string format 'param1=foo&param2=bar' // FunctionName : the JS function that will handle the response function mp_onload() { //If being called from outside the masterpage or header add this to the master and add a nody onload method to the body page. //if (window.body_onload != null) //window.body_onload(); getMessage(); } var doAJAXCall = function (PageURL, ReqType, PostStr, FunctionName) { // create the new object for doing the XMLHTTP Request var myConn = new XHConn(); // check if the browser supports it if (myConn) { // XMLHTTPRequest is supported by the browser, continue with the request myConn.connect('' + PageURL + '', '' + ReqType + '', '' + PostStr + '', FunctionName); } else { // Not support by this browser, alert the user alert("XMLHTTP not available. Try a newer/better browser, this application will not work!"); } } // launched from button click var getMessage = function() { var sortImageLocation='/resources'; // build up the post string when passing variables to the server side page var hdnTitle=document.getElementById("hdnTitle"); if (hdnTitle.value == "Laboratory Demographics Lookup") { doAJAXCall(sortImageLocation + '/Apps/CLIA/clia_start.asp', 'POST', '', showMessageResponse); } else if (hdnTitle.value == "About CMS" || hdnTitle.value == "Medicare" || hdnTitle.value == "Home" ) { //alert("test3"); doAJAXCall('/Newsroom/MediaReleaseDatabase/Global-News-Blogs.html', 'POST', '', showMessageResponse); } } // The function for handling the response from the server var showMessageResponse = function (oXML) { // get the response text, into a variable var response = oXML.responseText; //alert(response); // update the Div to show the result from the server document.getElementById("responseDiv").innerHTML = response; }; </script> <script type="text/javascript"> var addthis_config = { ui_508_compliant: true }; var sortImageLocation='/resources'; </script> </head> <body onload="mp_onload()"> <noscript> <p>The page could not be loaded. The CMS.gov Web site currently does not fully support browsers with “JavaScript” disabled. Please enable “JavaScript” and revisit this page or proceed with browsing CMS.gov with “JavaScript” disabled. <a href="https://web.archive.org/web/20150408080939/https://www.mymedicare.gov/error_nojavascript.aspx">Instructions for enabling “JavaScript” can be found here. </a> Please note that if you choose to continue without enabling “JavaScript” certain functionalities on this website may not be available. </p> </noscript> <link rel="stylesheet" href="//web.archive.org/web/20150408080939cs_/http://assets.cms.gov/resources/libs/fonts/adobeBlank/adobe-blank.css"/> <script type="text/javascript" src="https://web.archive.org/web/20150408080939js_/http://assets.cms.gov/resources/libs/jquery/1.11/js/jquery.min.js"></script> <!-- Google's Site Search BEGIN--> <script type="text/javascript" src="//web.archive.org/web/20150408080939js_/http://www.google.com/jsapi"></script> <script type="text/javascript" src="//web.archive.org/web/20150408080939js_/http://assets.cms.gov/resources/cms/javascript/google.site.search.head.js"></script> <!--http://www.cms.gov --> <!--http://www.cms.gov/ --> <!-- script to get the right GTM id based on the domain--> <script> var GTMContainerID ; var hostname = window.location.hostname; switch (hostname) { case 'qa.cms.gov': GTMContainerID = 'GTM-5CPV'; break; case 'cms.gov','www.cms.gov': GTMContainerID = 'GTM-ZSC7'; break; case 'qa.innovations.cms.gov': GTMContainerID = 'GTM-RVZV'; break; case 'innovation.cms.gov': GTMContainerID = 'GTM-LHF2'; break; case 'qa.partnershipforpatients.cms.gov': GTMContainerID = 'GTM-GZ2M'; break; case 'partnershipforpatients.cms.gov': GTMContainerID = 'GTM-W65Z'; break; case 'dnav.cms.gov': GTMContainerID = 'GTM-LR3S'; break; default: GTMContainerID = 'GTM-ZSC7'; break; } </script> <!-- Google Tag Manager --> <noscript> <iframe src="//web.archive.org/web/20150408080939if_/http://www.googletagmanager.com/ns.html?id=GTM-ZSC7" height="0" width="0" style="display:none;visibility:hidden" title="googletagmanager"></iframe> </noscript> <script> (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= '//web.archive.org/web/20150408080939/http://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer', GTMContainerID); </script> <!-- End Google Tag Manager --> <script type="text/javascript"> var sortImageLocation='/resources'; </script> <link type="text/css" rel="stylesheet" href="//web.archive.org/web/20150408080939cs_/http://assets.cms.gov/resources/cms/css/cms-responsive.css"/> <div id="wrapper" class="container"> <a class="HiddenText" href="#main_content" tabindex="1">Skip to Main Content</a> <header id="hd" role="banner"> <div class="header-content clearfix"> <nav class="nav-top pull-right"> <ul class="list-inline pull-left"> <li> <a href="javascript:void();" class="visible-xs" data-toggle="collapse" data-target="#collapse-right"> Sites <span class="HiddenText">dropdown menu to change between sites</span> <i aria-hidden="true" class="fa fa-caret-down headerCaret"> <span class="sr-only">Expand</span> <span class="adobeBlank" aria-hidden="true">Expand</span> </i> </a> <ul class="list-inline collapse" id="collapse-right"> <li> <a rel="$rel" target="T95444" title="Home" href="https://web.archive.org/web/20150408080939/http://www.cms.gov/"> Home<span class="LinkDisclaimer"> - Opens in a new window</span> </a> </li> <li> <a title="About CMS" href="https://web.archive.org/web/20150408080939/http://www.cms.gov/About-CMS/About-CMS.html" class="titlelink">About CMS</a> </li> <li> <a title="Newsroom" href="https://web.archive.org/web/20150408080939/http://cms.gov/Newsroom/Newsroom-Center.html" class="titlelink">Newsroom</a> </li> <li> <a rel="" target="T91041" title="FAQs" href="https://web.archive.org/web/20150408080939/https://questions.cms.gov/"> FAQs<span class="LinkDisclaimer"> - Opens in a new window</span> </a> </li> <li> <a rel="" target="T95445" title="Archive" href="https://web.archive.org/web/20150408080939/http://archive-it.org/collections/2744"> Archive<span class="LinkDisclaimer"> - Opens in a new window</span> </a> </li> </ul> </li> </ul> <ul class="list-inline pull-right"> <li> <a href="javascript:void();" class="visible-xs" data-toggle="collapse" data-target="#collapse-right2"> Tools <span class="HiddenText">dropdown menu to share, print or email</span> <i aria-hidden="true" class="fa fa-caret-down headerCaret"> <span class="sr-only">Expand</span> <span class="adobeBlank" aria-hidden="true">Expand</span> </i> </a> <ul class="list-inline collapse" id="collapse-right2"> <li> <a href="https://web.archive.org/web/20150408080939/http://www.addthis.com/bookmark.php?v=250&amp;pubid=ra-4da5b2c47a9f9bd7" class="addthis_button_compact share space-right-five"> <span class="fa fa-plus-circle fa-lg" aria-hidden="true"></span> <span class="share" aria-hidden="true"></span> <span>Share</span> </a> </li> <li> <a href="https://web.archive.org/web/20150408080939/http://www.cms.gov/About-CMS/Agency-Information/Aboutwebsite/index.html" class="space-right-five help" title="Help"> <span class="fa fa-question-circle fa-lg" aria-hidden="true"></span> <span class="help" aria-hidden="true"></span> <span>Help</span> </a> </li> <!--<li> <a title="Email" class="email" href="javascript:email()"> <span class="fa fa-envelope fa-lg" aria-hidden="true"></span> <span class="email" aria-hidden="true"></span> <span>Email</span> <span class="LinkDisclaimer"> - Opens in a new window</span> </a> </li>--> <li> <a title="Print" class="print" href="javascript:window.print()"> <span class="fa fa-print fa-lg" aria-hidden="true"></span> <span class="print" aria-hidden="true"></span> <span>Print</span> </a> </li> </ul> </li> </ul> </nav> <div class="clear"></div> <div class="row"> <div class="col-xs-12 col-sm-7 col-md-6 col-lg-5"> <button type="button" class="navbar-toggle navbar-toggle-main"> <i class="fa fa-bars"> <span class="sr-only">Navigation Menu</span> <span class="adobeBlank" aria-hidden="true">Navigation Menu</span> </i> <span class="HiddenText">Navigation Toggle</span> </button> <a class="logo-cms" title="CMS.gov Centers for Medicare &amp; Medicaid Services" href="https://web.archive.org/web/20150408080939/http://www.cms.gov/"> <img src="//web.archive.org/web/20150408080939im_/http://assets.cms.gov/resources/cms/images/logo/site-logo.png" alt="CMS.gov Centers for Medicare &amp; Medicaid Services"/> </a> </div> <div class="hidden-xs hidden-sm col-md-3 col-lg-3 push-down-thirty-five"> <div class="learn-link"> Learn about <a href="https://web.archive.org/web/20150408080939/http://www.healthcare.gov/"> your healthcare options</a> </div> </div> <div class="col-xs-12 col-sm-4 col-md-3 col-lg-4 pull-right hidden-print cms-search-responsive"> <form id="SiteSearchHeaderForm" method="post" onsubmit="return submitQuery()"> <fieldset role="search"> <div class="input-group"> <label class="HiddenText" for="query-input">Search CMS.gov</label> <input type="text" name="q" id="query-input" autocomplete="off" class="form-control input-sm"/> <span class="input-group-btn"> <button id="btnG" class="searchButton btn btn-default btn-sm" type="submit" value="Search"> <span class="hidden-xs">Search</span> <i class="fa fa-search hidden-sm hidden-md hidden-lg"> <span class="sr-only">Search</span> <span class="adobeBlank" aria-hidden="true">Search</span> </i> <span class="HiddenText">Perform the search</span> </button> </span> </div> </fieldset> </form> </div> </div> <nav class="nav-main hidden-xs hidden-sm hidden-print" role="navigation" aria-labelledby="main-nav"> <h2 id="navheading2" class="HiddenText">Main Menu</h2> <ul class="navbar nav-justified list-unstyled"> <li> <a href="https://web.archive.org/web/20150408080939/http://www.cms.gov/Medicare/Medicare.html" title="Medicare" class="nav-short">Medicare</a> </li> <li> <a href="https://web.archive.org/web/20150408080939/http://www.medicaid.gov/" title="Medicaid.gov">Medicaid/CHIP</a> </li> <li class="dropdown wider"> <a href="https://web.archive.org/web/20150408080939/http://www.cms.gov/Medicare-Medicaid-Coordination/Medicare-MedicaidCoordination.html" title="Medicare-Medicaid Coordination" class="nav-long"> Medicare-Medicaid<br/> Coordination</a> </li> <li class="dropdown"> <a href="https://web.archive.org/web/20150408080939/http://www.cms.gov/cciio/index.html" title="Private Insurance" class="nav-short">Private Insurance</a> </li> <li class="dropdown"> <a href="https://web.archive.org/web/20150408080939/http://www.innovations.cms.gov/" title="Innovation Center" class="nav-short">Innovation Center</a> </li> <li class="dropdown"> <a href="https://web.archive.org/web/20150408080939/http://www.cms.gov/Regulations-and-Guidance/Regulations-and-Guidance.html" title="Regulations &amp; Guidance">Regulations &amp; Guidance</a> </li> <li class="dropdown widest"> <a href="https://web.archive.org/web/20150408080939/http://www.cms.gov/Research-Statistics-Data-and-Systems/Research-Statistics-Data-and-Systems.html" title="Research, Statistics, Data &amp; Systems" class="nav-long"> Research, Statistics,<br/> Data &amp; Systems</a> </li> <li class="dropdown"> <a href="https://web.archive.org/web/20150408080939/http://www.cms.gov/Outreach-and-Education/Outreach-and-Education.html" title="Outreach &amp; Education">Outreach &amp; Education</a> </li> </ul> </nav> </div> </header> <!--Gloabal Site Navigation End --> <!-- Breadcrumb --> <!-- MAIN CONTENT GRID --> <div id="mainContent" class="home body-content" role="main"> <a id="main_content" tabindex="-1" name="main_content"></a> <h1 class="HiddenText">CMS.gov</h1> <div id="hero-carousel"> <div id="home-carousel-btns"> <ul> <li id="carousel-btn1" class="carousel-btn"> <a href="/web/20150408080939/http://www.cms.gov/About-CMS/Story-Page/covering-more-americans.html">Covering more Americans</a></li> <li id="carousel-btn2" class="carousel-btn"> <a href="/web/20150408080939/http://www.cms.gov/About-CMS/Story-Page/healthy-americans.html">Making Americans healthier by preventing illness</a></li> <li id="carousel-btn3" class="carousel-btn"> <a href="/web/20150408080939/http://www.cms.gov/About-CMS/Story-Page/coordinating-care.html">Coordinating better care &amp; lowering costs</a></li> </ul> </div> <div id="carousel-wrapper"> <div id="carousel-content1" class="carousel-styling"> </div> </div> </div> <div class="row" style="margin-left:-10px"> <div id="homeLeftContent" class="col-md-4"> <div class="sidebar"> <div id="responseDiv" role="complementary"> </div> <div> <div class="side-box orange" role="complementary"> <div class="inner"> <h2>Top 5 resources</h2> <ul> <li><a href="/web/20150408080939/http://www.cms.gov/Regulations-and-Guidance/Guidance/Manuals/index.html">Manuals</a></li> <li><a href="/web/20150408080939/http://www.cms.gov/medicare-coverage-database/" title="Medicare Coverage Database">Medicare coverage database</a></li> <li><a href="/web/20150408080939/http://www.cms.gov/Medicare/CMS-Forms/CMS-Forms/CMS-Forms-List.html">CMS forms</a></li> <li><a href="/web/20150408080939/http://www.cms.gov/Regulations-and-Guidance/Guidance/Transmittals/index.html">Transmittals</a></li> <li class="no-border"><a href="/web/20150408080939/http://www.cms.gov/Outreach-and-Education/Medicare-Learning-Network-MLN/MLNProducts/index.html">MLN products</a></li> </ul> </div> </div> </div> <div style="text-align: center; margin-top: 40px;"> <div id="HCsquare"> <a href="https://web.archive.org/web/20150408080939/http://marketplace.cms.gov/technical-assistance-resources/c2c.html"> <img style="border: none;" src="https://web.archive.org/web/20150408080939im_/http://www.cms.gov/widgets/Coverage-to-Care.jpg" alt="Coverage to Care"> </a> </div> <a href="#" class="wlink" target="1">Show code</a> &nbsp; | &nbsp; <a href="/web/20150408080939/http://www.cms.gov/widgets/badgeandwidget.html">Need more sizes?</a> <div style="display:none;" id="code1"> <textarea style="height:200px; width:280px;"> <div id="HCsquare" style="width:150px;"> <a href="https://web.archive.org/web/20150408080939/http://marketplace.cms.gov/help-us/c2c.html"> <img src="https://web.archive.org/web/20150408080939im_/http://www.cms.gov/widgets/Coverage-to-Care.jpg" alt="Coverage to Care" style="border:none;"/> </a> </div> </textarea> </div> </div> </div> </div> <div id="homeRightContent" class="col-md-8"> <h2 class="title" style="font-size: 3.45em; margin-top: 0px;">CMS covers 100 million people...</h2> <div id="home-bodytext" style="font-size: 1.1em;"> <p>...through Medicare, Medicaid, the Children&#39;s Health Insurance Program, and the Health Insurance Marketplace. But coverage isn&#39;t our only goal. To achieve a high quality health care system, we also aim for better care at lower costs and improved health. </p> <br> <p> But we can&#39;t and we don&#39;t do it alone. We need your help to find the way forward to a better health care system for all Americans. </p> <br> <p> Learn more about how we can help each other so all Americans have access to coverage, better care, and improved health. </p> </div> <div id="homeRightSubContent" class="container-fluid"> <div class="row-fluid"> <div class="col-md-12"> <div class="row-fluid"> <div id="home-spotlight" class="col-sm-6"> <h3>Spotlight</h3> <div id="home-spotlight-data"> <div class="home-arrow-down"></div> <ul><li> <div> <a title="Stay on the road to ICD-10: see how to get ready for Oct 1, 2015" target="_blank" href="https://web.archive.org/web/20150408080939/http://www.cms.gov/Medicare/Coding/ICD10/index.html">Stay on the road to ICD-10: see how to get ready for Oct 1, 2015</a> </div> </li><li> <div> <a title="Visit Million Hearts®: learn more about evidence-based protocols to improve blood pressure control." target="_blank" href="https://web.archive.org/web/20150408080939/http://millionhearts.hhs.gov/">Visit Million Hearts®: learn more about evidence-based protocols to improve blood pressure control.</a> </div> </li><li> <div> <a title="Find the latest CMS news and resources on eHealth" target="_blank" href="https://web.archive.org/web/20150408080939/http://cms.gov/ehealth">Find the latest CMS news and resources on eHealth</a> </div> </li><li> <div> <a title="Read the latest about the Open Payments program (the Sunshine Act) and what it means for you" target="_blank" href="https://web.archive.org/web/20150408080939/http://www.cms.gov/Regulations-and-Guidance/Legislation/National-Physician-Payment-Transparency-Program/index.html">Read the latest about the Open Payments program (the Sunshine Act) and what it means for you</a> </div> </li></ul> </div> </div> <div id="home-info" class="col-sm-6"> <div class="content"> <ul class="site-widget"> <li><a href="https://web.archive.org/web/20150408080939/http://www.medicare.gov/"><img alt="Medicare.gov" src="//web.archive.org/web/20150408080939im_/http://assets.cms.gov/resources/cms/images/homepage/icon-medicare.jpg" style="">Information for people with Medicare, Medicare open enrollment, and benefits.</a> </li> <li><a href="https://web.archive.org/web/20150408080939/http://www.insurekidsnow.gov/"><img alt="insurekidsnow.gov" src="//web.archive.org/web/20150408080939im_/http://assets.cms.gov/resources/cms/images/homepage/icon-ikn.jpg" style=""> Information for children up to the age of 19 in need of health care coverage.</a> </li> <li><a href="https://web.archive.org/web/20150408080939/http://www.healthcare.gov/"><img alt="HealthCare.gov" src="//web.archive.org/web/20150408080939im_/http://assets.cms.gov/resources/cms/images/homepage/icon-healthcare.jpg" style="">Information for people who need health insurance and want to apply for or enroll in the Marketplace.</a> </li> </ul> </div> <div> <div class="rxbodyfield"><div class="social-media-widget"><h2>Stay connected with CMS</h2><div id="bucket"><div id="bucket-background"></div><ul><li><a class="email" href="https://web.archive.org/web/20150408080939/https://public.govdelivery.com/accounts/USCMS/subscriber/new" title="Get EMail Update "><img alt="Get EMail Update" src="//web.archive.org/web/20150408080939im_/http://assets.cms.gov/resources/cms/images/icons/btn-email-update.png"/></a></li><li><a class="twitter" href="https://web.archive.org/web/20150408080939/http://twitter.com/#!/cmsgov" title="CMS Twitter"><img alt="CMS Twitter" src="//web.archive.org/web/20150408080939im_/http://assets.cms.gov/resources/cms/images/icons/btn-cms-twitter.png"/></a></li><li><a class="youtube" href="https://web.archive.org/web/20150408080939/http://www.youtube.com/user/CMSHHSgov" title="CMS YouTube"><img alt="CMS YouTube" src="//web.archive.org/web/20150408080939im_/http://assets.cms.gov/resources/cms/images/icons/btn-cms-youtube.png"/></a></li><li><a class="feed" href="https://web.archive.org/web/20150408080939/http://www.cms.gov/cmsfeeds/" title="CMS RSS Feed"><img alt="CMS RSS Feed" src="//web.archive.org/web/20150408080939im_/http://assets.cms.gov/resources/cms/images/icons/btn-cms-rssfeed.png"/></a></li></ul><div id="bucket-foreground"></div></div></div></div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <!-- Main Body Content End --> <!--http://www.cms.gov --> <!--http://www.cms.gov/ --> <footer role="contentinfo" aria-label="footer" class="printerFriendlyOmit"> <h2 class="HiddenText">Footer</h2> <section class="row cms-address-bar" id="cms-address-bar"> <div id="inner-content" class="col-xs-10 col-sm-10 col-md-11"> <div class="row"> <div class="col-md-4"> <div class="row"> <div class="col-xs-4"> <a href="https://web.archive.org/web/20150408080939/http://www.cms.gov/" class="btn btn-primary" id="footer-home-btn" title="CMS.gov Home"> <span class="HiddenText">CMS.gov</span> Home</a> </div> <div class="col-xs-8"> <img id="footer-address-img" class="cms-logo" src="//web.archive.org/web/20150408080939im_/http://assets.cms.gov/resources/cms/images/logo/cms.gov-footer.png" alt="CMS.gov"/> </div> </div> </div> <div class="col-xs-11 col-md-8"> <address class="vcard"> <p id="footer-address-text"> A federal government website managed by the Centers for Medicare &amp; Medicaid Services<br/>7500 Security Boulevard, Baltimore, MD 21244 </p> <div class="adr HiddenText"> <div class="street-address"> 7500 Security Boulevard </div> <span class="locality">Baltimore</span>, <abbr title="Maryland" class="region"> MD</abbr> <span class="postal-code">21244</span> <div class="country-name"> USA</div> </div> </address> </div> </div> </div> <div id="HHS_container" class="col-xs-2 col-sm-2 col-md-1"> <a href="https://web.archive.org/web/20150408080939/http://www.hhs.gov/" id="footer_hhs_logo_link" class="pull-right" title="Health and Human Services home page"> <img src="//web.archive.org/web/20150408080939im_/http://assets.cms.gov/resources/cms/images/logo/hhslogo.png" alt="Department of Health and Human Services USA"/> <span class="adobeBlank" aria-hidden="true">Go to HHS Home Page</span> <span class="sr-only" id="hhsSiteLinkSR">Go to HHS Home Page</span> </a> </div> </section> <section class="row" id="footer-nav"> <div class="col-sm-4"> <div class="col-md-8 push-down"> <h3>CMS &amp; HHS Websites <span class="glyphicon glyphicon-chevron-down pull-right" aria-describedby="sitesLink"> <span class="sr-only" id="sitesLink">Visit other Centers for Medicare and Medicaid Services &amp; Health and Human Services Websites section</span> <span class="adobeBlank" aria-hidden="true">Expand</span> </span> </h3> <ul> <li> <a aria-describedby="Medicare-link" href="https://web.archive.org/web/20150408080939/http://www.medicare.gov/" target="_blank" title="Medicare.gov"> Medicare.gov <span id="medicare-link" class="sr-only">Link to the medicare.gov website - Opens in a new window</span> </a> </li> <li> <a aria-describedby="MyMedicare-link" href="https://web.archive.org/web/20150408080939/http://mymedicare.gov/" target="_blank" title="MyMedicare.gov"> MyMedicare.gov<span class="LinkDisclaimer">Link to the medicare.gov website - Opens in a new window</span> </a> </li> <li> <a aria-describedby="StopMedicareFraud-link" href="https://web.archive.org/web/20150408080939/http://www.stopmedicarefraud.gov/" target="_blank" title="StopMedicareFraud.gov"> StopMedicareFraud.gov<span class="LinkDisclaimer"> - Opens in a new window</span> </a> </li> <li> <a aria-describedby="Medicaid-link" href="https://web.archive.org/web/20150408080939/http://medicaid.gov/" target="_blank" title="Medicaid.gov"> Medicaid.gov<span class="LinkDisclaimer"> - Opens in a new window</span> </a> </li> <li> <a aria-describedby="InsureKidsNow-link" href="https://web.archive.org/web/20150408080939/http://www.insurekidsnow.gov/" target="_blank" title="InsureKidsNow.gov"> InsureKidsNow.gov<span class="LinkDisclaimer"> - Opens in a new window</span> </a> </li> <li> <a aria-describedby="HealthCare-link" href="https://web.archive.org/web/20150408080939/http://www.healthcare.gov/" target="_blank" title="HealthCare.gov"> HealthCare.gov<span class="LinkDisclaimer"> - Opens in a new window</span> </a> </li> <li> <a aria-describedby="HHS-Open-link" href="https://web.archive.org/web/20150408080939/http://www.hhs.gov/open/" target="_blank" title="HHS.gov/Open"> HHS.gov/Open<span class="LinkDisclaimer"> - Opens in a new window</span> </a> </li> </ul> </div> <div class="col-md-4 push-down"> <h3>Tools <span class="glyphicon glyphicon-chevron-down pull-right" aria-describedby="toolsLink"> <span class="HiddenText" id="toolsLink">Open list of various Medicare and Medicaid tools section</span> <span class="adobeBlank" aria-hidden="true">Expand</span> </span> </h3> <ul> <li> <a aria-describedby="acronyms-link" rel="$rel" target="T91037" title="Acronyms" href="https://web.archive.org/web/20150408080939/http://www.cms.gov/apps/acronyms"> Acronyms<span class="LinkDisclaimer">Centers for Medicare &amp; Medicaid Services Acronym Lookup tool - Opens in a new window</span> </a> </li> <li> <a aria-describedby="" rel="$rel" target="T91038" title="Contacts" href="https://web.archive.org/web/20150408080939/http://www.cms.gov/apps/contacts"> Contacts<span class="LinkDisclaimer"> - Opens in a new window</span> </a> </li> <li> <a aria-describedby="faqs-link" rel="" target="T91041" title="FAQs" href="https://web.archive.org/web/20150408080939/https://questions.cms.gov/"> FAQs<span class="LinkDisclaimer"> - Opens in a new window</span> </a> </li> <li> <a aria-describedby="glossary-link" rel="$rel" target="T91042" title="Glossary" href="https://web.archive.org/web/20150408080939/http://www.cms.gov/apps/glossary/"> Glossary<span class="LinkDisclaimer"> - Opens in a new window</span> </a> </li> <li> <a aria-describedby="archive-link" rel="" target="T95445" title="Archive" href="https://web.archive.org/web/20150408080939/http://archive-it.org/collections/2744"> Archive<span class="LinkDisclaimer"> - Opens in a new window</span> </a> </li> </ul> </div> </div> <div class="col-sm-8"> <div class="col-md-6 push-down"> <h3>Helpful Links <span class="glyphicon glyphicon-chevron-down pull-right" aria-describedby="helpfulLink"> <span class="HiddenText" id="helpfulLink">Open list to view helpful links for all Centers for Medicare &amp; Medicaid Services websites section</span> <span class="adobeBlank" aria-hidden="true">Expand</span> </span> </h3> <ul> <li> <a aria-describedby="policies-link" class="titlelink" href="https://web.archive.org/web/20150408080939/http://www.cms.gov/About-CMS/Agency-Information/Aboutwebsite/index.html" title="Web Policies &amp; Important Links">Web Policies &amp; Important Links</a> </li> <li> <a aria-describedby="privacy-policy-link" class="titlelink" href="https://web.archive.org/web/20150408080939/http://www.cms.gov/About-CMS/Agency-Information/Aboutwebsite/Privacy-Policy.html" title="Privacy Policy"> Privacy Policy</a> </li> <li> <a aria-describedby="plain-language-link" class="titlelink" href="https://web.archive.org/web/20150408080939/http://www.medicare.gov/about-us/plain-writing/plain-writing.html" title="Plain Language"> Plain Language</a> </li> <li> <a aria-describedby="FOIA" class="titlelink" href="https://web.archive.org/web/20150408080939/http://www.cms.gov/center/freedom-of-information-act-center.html" title="Freedom of Information Act">Freedom of Information Act</a> </li> <li> <a aria-describedby="no-fear-act-link" class="titlelink" href="https://web.archive.org/web/20150408080939/http://www.cms.gov/About-CMS/Agency-Information/Aboutwebsite/NoFearAct.html" title="No Fear Act"> No Fear Act </a> </li> <li> <a aria-describedby="Nondiscrimination-Accessibility-link" class="titlelink" href="https://web.archive.org/web/20150408080939/http://www.cms.gov/About-CMS/Agency-Information/Aboutwebsite/CMSNondiscriminationNotice.html" title="Nondiscrimination/Accessibility">Nondiscrimination/Accessibility</a> </li> <li> <a aria-describedby="hhs-link" href="https://web.archive.org/web/20150408080939/http://www.hhs.gov/" target="_blank" title="HHS.gov"> HHS.gov<span class="LinkDisclaimer"> - Opens in a new window</span> </a> </li> <li> <a aria-label="inspector-general" href="https://web.archive.org/web/20150408080939/http://oig.hhs.gov/" target="_blank" title="Inspector General"> Inspector General <span id="inpsector-general-link" class="sr-only"> - Opens in a new window</span> </a> </li> <li> <a aria-describedby="usa-gov-link" href="https://web.archive.org/web/20150408080939/http://www.usa.gov/" target="_blank" title="USA.gov"> USA.gov <span id="usa-gov-link" class="sr-only"> - Opens in a new window</span> </a> </li> <li> <a aria-describedby="file-formats-link" class="titlelink" href="https://web.archive.org/web/20150408080939/http://www.cms.gov/About-CMS/Agency-Information/Aboutwebsite/Help.html" title="Help with file formats &amp; plug-ins"> Help with file formats &amp; plug-ins <span id="file-formats-link" class="HiddenText">Help with file formats &amp; plug-ins commonly used by the Centers for Medicare &amp; Medicaid Services</span> </a> </li> </ul> </div> <div class="col-md-8" id="email-address-update-col"> <span id="get-email-update-header" class="center-block img-circle"></span> <div id="get-email-update-widget"> <p>Receive Email Updates</p> <form action="https://web.archive.org/web/20150408080939/https://public-dc2.govdelivery.com/accounts/USCMS/subscribers/qualify" class="email-form row"> <fieldset> <legend class="HiddenText">Enter your email address for email updates</legend> <input type="hidden" name="qsp" value="566" id="qsp"/> <label class="HiddenText" for="signup-email-update">Enter your email address:</label> <input type="email" name="email" class="form-control input-sm" id="signup-email-update" onfocus="this.value=''" title="Receive Email Updates"/> <input type="submit" value="Submit" name="email-submit" id="email-submit" class="btn form_button btn-lg"/> </fieldset> </form> </div> </div> </div> </section> </footer> </div> <script type="text/javascript" src="//web.archive.org/web/20150408080939js_/http://assets.cms.gov/resources/libs/jqueryMigrate/1.2.1/js/jquery-migrate-1.2.1.min.js"></script> <script type="text/javascript" src="//web.archive.org/web/20150408080939js_/http://assets.cms.gov/resources/libs/jquery-ui/1.10.4/js/jquery-ui.js"></script> <script type="text/javascript" src="//web.archive.org/web/20150408080939js_/http://assets.cms.gov/resources/libs/bootstrap/3.1.1/js/bootstrap.min.js"></script> <script type="text/javascript" src="//web.archive.org/web/20150408080939js_/http://assets.cms.gov/resources/global/js/jquery.equalHeights.plugins.js"></script> <script type="text/javascript" src="//web.archive.org/web/20150408080939js_/http://assets.cms.gov/resources/cms/javascript/datatables.js"></script> <script type="text/javascript" src="//web.archive.org/web/20150408080939js_/http://assets.cms.gov/resources/cms/javascript/navbar_events.js"></script> <script type="text/javascript" src="//web.archive.org/web/20150408080939js_/http://assets.cms.gov/resources/cms/javascript/jquery.508carousel.js"></script> <script type="text/javascript" src="//web.archive.org/web/20150408080939js_/http://assets.cms.gov/resources/cms/javascript/global-functions.js"></script> <script type="text/javascript" src="//web.archive.org/web/20150408080939js_/http://assets.cms.gov/resources/global/js/jquery.ui.widget.js"></script> <script type="text/javascript" src="//web.archive.org/web/20150408080939js_/http://assets.cms.gov/resources/global/js/jquery.ui.accordion.js"></script> <script type="text/javascript" src="//web.archive.org/web/20150408080939js_/http://assets.cms.gov/resources/cms/javascript/jpanelmenu/jquery.jpanelmenu.min.js"></script> <script type="text/javascript" src="//web.archive.org/web/20150408080939js_/http://assets.cms.gov/resources/cms/javascript/app-adv.js"></script> <script type="text/javascript"> $(function() { $( "#accordion" ).accordion({ autoHeight: false, navigation: true }); }); </script> <!-- Global Footer End --> <!--[if lt IE 9]> <script type="text/javascript" src="//assets.cms.gov/resources/libs/respond/1.4.2/js/respond.js"></script> <![endif]--> <script type="text/javascript" src="//web.archive.org/web/20150408080939js_/http://assets.cms.gov/resources/cms/javascript/hc-detect_v0.9.js"></script> <script> HCDetect.init(); </script> <script> </script> <input type="hidden" id="hdnTitle" name="hdnTitle" value="Home"/> <script> $(".wlink").click(function (event) { if ($('#code'+$(this).attr('target')).css('display') == 'none') { $('#code'+$(this).attr('target')).show(200); $(this).html('Hide Code'); } else { $('#code'+$(this).attr('target')).hide(200); $(this).html('Show Code'); } event.preventDefault(); }); </script> <script type="text/javascript"> $('#hero-carousel .carousel-btn a').focusin(function(){ $(this).parent().addClass('carousel-btn-selected'); }); $('#hero-carousel .carousel-btn a').focusout(function(){ $(this).parent().removeClass('carousel-btn-selected'); }); </script> <!-- GrazyEgg --> <script type="text/javascript"> setTimeout(function(){var a=document.createElement("script"); var b=document.getElementsByTagName('script')[0]; a.src=document.location.protocol+"//web.archive.org/web/20150408080939/http://dnn506yrbagrg.cloudfront.net/pages/scripts/0011/1179.js?"+Math.floor(new Date().getTime()/3600000); a.async=true;a.type="text/javascript";b.parentNode.insertBefore(a,b)}, 1); </script> <!-- GrazyEgg End --> </body> </html> <!-- FILE ARCHIVED ON 08:09:39 Apr 08, 2015 AND RETRIEVED FROM THE INTERNET ARCHIVE ON 05:19:34 Dec 01, 2024. JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE. ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C. SECTION 108(a)(3)). --> <!-- playback timings (ms): captures_list: 1.06 exclusion.robots: 0.057 exclusion.robots.policy: 0.039 esindex: 0.013 cdx.remote: 5.512 LoadShardBlock: 269.062 (6) PetaboxLoader3.resolve: 285.459 (5) PetaboxLoader3.datanode: 205.495 (8) load_resource: 313.129 (2) -->

Pages: 1 2 3 4 5 6 7 8 9 10