Laws to Enhance Benefits for Service Members, First Responders, Veterans and to Restore National Parks and Public Lands

4 min read

A bill to amend the Servicemembers Civil Relief Act to extend lease protections for servicemembers under stop movement orders in response to a local, national, or global emergency, and for other purposes (S 3637) – This bill extends the Servicemembers Civil Relief Act to protect service members who were previously issued orders to change duty stations but had those orders rescinded because of the pandemic. A stop movement order may leave them with a housing and/or car lease in two different locations. This extension allows families who are unable to relocate due to pandemic-related travel restrictions to be released without penalty from their leases. It is retroactive to March 1, 2020. The bill was introduced by Sen. Jon Tester (D-MT) on May 6. It was passed by the Senate in June, the House in July, and was signed by the President on Aug. 14.

Safeguarding America’s First Responders Act of 2020 (S 3607) – This bill was introduced by Sen. Chuck Grassley (R-IA) on May 5. The bill extends death and disability benefits under the Public Safety Officers’ Benefits Program (PSOB) to public safety officers (e.g., law enforcement officers) and survivors of public safety officers who die or become injured as a result of COVID-19. The bill classifies COVID-19 or related complications suffered by a public safety officer as a personal injury sustained in the line of duty. The Act was passed in the Senate in May and in the House in July. It was signed into law on Aug. 14.

Veteran Treatment Court Coordination Act of 2019 (HR 886) – Introduced by Rep. Charlie Christ (D-FL) on Jan. 30, 2019, this legislation directs the Department of Justice to establish a Veterans Treatment Court Program to provide grants and technical assistance for state, local and tribal governments to develop and maintain veterans’ treatment courts. Treatment courts are designed to assist justice-involved vets with treatment needs such as substance abuse, mental health, and other issues unique to active service. The Act was enacted after being signed by the President on Aug. 8.

Ryan Kules and Paul Benne Specially Adaptive Housing Improvement Act of 2019 (HR 3504) – This bill is designed to amend Title 38 of the United States Code that provides for improvements to the specially adapted housing and educational assistance programs of the Department of Veterans Affairs. It is designed to help eligible disabled veterans purchase adaptive homes or upgrade existing homes to meet their specific needs for daily living activities. The bill was introduced by Rep. Gus Bilirakis (R-FL) on June 26, 2019. It was passed in the House in July 2019; in the Senate in March 2020, and was signed into law by the President on Aug. 8.

Great American Outdoors Act (HR 1957) – This Act was initially sponsored by Rep. John Lewis (D-GA) on March 28, 2019. This legislation establishes the National Parks and Public Land Legacy Restoration Fund, which is designed to support deferred maintenance projects on federal lands for fiscal years 2021 to 2025. The bill makes funding for the Land and Water Conservation Fund permanent and allocates money equal to 50 percent of energy development revenues from oil, gas, coal, or alternative or renewable energy development on federal lands and waters. The bill establishes reporting procedures for all associated projects and mandates that deposited amounts must not exceed $1.9 billion for any fiscal year. The bill was signed into law by the President on Aug. 4.

Commission on the Social Status of Black Men and Boys Act (S 2163) – Sen. Marco Rubio (R-FL) introduced this legislation on July 18, 2019. It is designed to establish a Commission on the Social Status of Black Men and Boys within the U.S. Commission on Civil Rights Office to conduct a systematic study of the conditions affecting black men and boys. The Act was passed by the Senate in June, the House in July, and was signed into law by the President on Aug. 14.


Disclaimer 

These articles provide general information on tax, accounting, and financial topics for small businesses and individuals. They are educational in nature and are not specific legal, accounting, financial, tax, or other professional advice, and should not be relied upon as such. This content was prepared by Service2Client and may have been reviewed or edited by the website owner for accuracy and compliance. Look for a trust mark below for verification details. No representation is made that any approach described will achieve a particular result, and no regulatory or professional body has reviewed or endorsed this content. Because each situation is different, readers should consult a qualified professional about their specific circumstances before acting. Images accompanying these articles are protected by copyright and may not be copied or reused.

"; return; } var url = block.dataset.restUrl + "?post_id=" + encodeURIComponent(block.dataset.postId) + "&keyword=" + encodeURIComponent(keyword); output.innerHTML = "
Searching…
"; submit.disabled = true; output.setAttribute("aria-busy", "true"); fetch(url, { headers: { "X-WP-Nonce": block.dataset.nonce } }) .then(function(r){ return r.json().then(function(data){ return { status: r.status, data: data }; }); }) .then(function(resp){ if (resp.status === 200 && resp.data && resp.data.success) { dpSimilarRender(output, keyword, resp.data); } else if (resp.status === 403) { output.innerHTML = "
Session expired. Please refresh the page and try again.
"; } else if (resp.status === 429) { output.innerHTML = "
Too many searches. Please try again in a few minutes.
" + dpSimilarCta(output, -1); } else { output.innerHTML = "
Search failed. Please try again.
" + dpSimilarCta(output, -1); } }) .catch(function(){ output.innerHTML = "
Could not reach the server. Please check your connection.
" + dpSimilarCta(output, -1); }) .then(function(){ submit.disabled = false; output.removeAttribute("aria-busy"); }); } function dpAskGrokSend(block) { var input = block.querySelector(".dp-ask-grok-input"); var result = block.querySelector(".dp-ask-grok-result"); var send = block.querySelector(".dp-ask-grok-send"); var form = block.querySelector(".dp-ask-grok-form"); var button = block.querySelector(".dp-ask-grok-button"); var intro = block.querySelector(".dp-ask-grok-intro"); var question = (input.value || "").trim(); if (question.length Please ask a question of at least 10 characters."; return; } if (question.length > 500) { result.innerHTML = "
Question is too long. Please keep it under 500 characters.
"; return; } result.innerHTML = "
Asking Grok\u2026 (this can take 10-20 seconds)
"; send.disabled = true; result.setAttribute("aria-busy", "true"); fetch(block.dataset.restUrlAskGrok, { method: "POST", headers: { "Content-Type": "application/json", "X-WP-Nonce": block.dataset.nonce }, body: JSON.stringify({ post_id: parseInt(block.dataset.postId, 10), question: question }) }) .then(function(r){ return r.json().then(function(data){ return { status: r.status, data: data }; }); }) .then(function(resp){ if (resp.status === 429) { if (form) form.style.display = "none"; if (intro) intro.style.display = ""; if (button) { button.style.display = ""; button.disabled = true; button.setAttribute("title", "Daily limit reached. Try again tomorrow."); button.textContent = "Daily limit reached"; } var rateMsg = (resp.data && resp.data.message) ? resp.data.message : "You\u2019ve reached today\u2019s question limit. Please try again tomorrow."; result.innerHTML = "
" + dpSimilarEscape(rateMsg) + "
"; return; } if (resp.status === 403) { result.innerHTML = "
Session expired. Please refresh the page and try again.
"; return; } if (resp.status === 200 && resp.data && resp.data.success) { var safeAnswer = dpSimilarEscape(resp.data.answer || ""); var safeDisclaimer = dpSimilarEscape(resp.data.disclaimer || ""); var answerHtml = "
"; answerHtml += "

" + safeAnswer + "

"; answerHtml += "

\u26a0\ufe0f " + safeDisclaimer + "

"; answerHtml += "
"; result.innerHTML = answerHtml; if (form) form.style.display = "none"; if (intro) intro.style.display = ""; if (button) { button.style.display = ""; button.disabled = true; button.setAttribute("title", "Daily limit reached. Try again tomorrow."); button.textContent = "Daily limit reached"; } return; } if (resp.status === 200 && resp.data && !resp.data.success) { var msg = dpSimilarEscape(resp.data.message || "Could not process your question right now."); result.innerHTML = "
" + msg + "
"; return; } result.innerHTML = "
Could not process your question right now. Please try again later.
"; }) .catch(function(){ result.innerHTML = "
Could not reach the server. Please check your connection and try again.
"; }) .then(function(){ if (send) send.disabled = false; result.removeAttribute("aria-busy"); }); } function dpSimilarRender(output, keyword, data) { var html = ""; if (data.count === 0) { html += "
No matches found for “" + dpSimilarEscape(keyword) + "”.
"; } else { html += "

Articles matching “" + dpSimilarEscape(keyword) + "”

"; html += "
    "; data.results.forEach(function(r){ html += "
  • "; html += "" + r.title + ""; html += "" + r.date + ""; html += "
  • "; }); html += "
"; } html += dpSimilarCta(output, data.count); output.innerHTML = html; } function dpSimilarCta(output, count) { var block = output.closest(".dp-similar-block"); var contactUrl = block ? block.dataset.contactUrl : ""; if (!contactUrl) { return ""; } var ctaText; if (count === -1) { ctaText = "While you wait, here are some other ways to get help:"; } else if (count === 0) { ctaText = "Couldn\u2019t find what you needed? Speak with a professional for personalized help."; } else { ctaText = "Need more help with this topic? Speak with a professional."; } var html = "
"; html += "

" + ctaText + "

"; html += "Talk to a Professional"; html += "
"; var isFullApi = block && block.dataset.isFullApi === "1"; html += "

Or ask our AI assistant a quick question about this topic.

"; html += ""; html += "
"; html += ""; html += ""; html += ""; html += ""; html += "
"; html += "
"; html += "
"; html += "
"; return html; } function dpSimilarEscape(s) { var div = document.createElement("div"); div.textContent = s; return div.innerHTML; }})();

Coronado-Fortune & Associates, LLC

Laws to Enhance Benefits for Service Members, First Responders, Veterans and to Restore National Parks and Public Lands

September 1, 2020  ·  Blog, Congress at Work, Uncategorized

4 min read

A bill to amend the Servicemembers Civil Relief Act to extend lease protections for servicemembers under stop movement orders in response to a local, national, or global emergency, and for other purposes (S 3637) – This bill extends the Servicemembers Civil Relief Act to protect service members who were previously issued orders to change duty stations but had those orders rescinded because of the pandemic. A stop movement order may leave them with a housing and/or car lease in two different locations. This extension allows families who are unable to relocate due to pandemic-related travel restrictions to be released without penalty from their leases. It is retroactive to March 1, 2020. The bill was introduced by Sen. Jon Tester (D-MT) on May 6. It was passed by the Senate in June, the House in July, and was signed by the President on Aug. 14.

Safeguarding America’s First Responders Act of 2020 (S 3607) – This bill was introduced by Sen. Chuck Grassley (R-IA) on May 5. The bill extends death and disability benefits under the Public Safety Officers’ Benefits Program (PSOB) to public safety officers (e.g., law enforcement officers) and survivors of public safety officers who die or become injured as a result of COVID-19. The bill classifies COVID-19 or related complications suffered by a public safety officer as a personal injury sustained in the line of duty. The Act was passed in the Senate in May and in the House in July. It was signed into law on Aug. 14.

Veteran Treatment Court Coordination Act of 2019 (HR 886) – Introduced by Rep. Charlie Christ (D-FL) on Jan. 30, 2019, this legislation directs the Department of Justice to establish a Veterans Treatment Court Program to provide grants and technical assistance for state, local and tribal governments to develop and maintain veterans’ treatment courts. Treatment courts are designed to assist justice-involved vets with treatment needs such as substance abuse, mental health, and other issues unique to active service. The Act was enacted after being signed by the President on Aug. 8.

Ryan Kules and Paul Benne Specially Adaptive Housing Improvement Act of 2019 (HR 3504) – This bill is designed to amend Title 38 of the United States Code that provides for improvements to the specially adapted housing and educational assistance programs of the Department of Veterans Affairs. It is designed to help eligible disabled veterans purchase adaptive homes or upgrade existing homes to meet their specific needs for daily living activities. The bill was introduced by Rep. Gus Bilirakis (R-FL) on June 26, 2019. It was passed in the House in July 2019; in the Senate in March 2020, and was signed into law by the President on Aug. 8.

Great American Outdoors Act (HR 1957) – This Act was initially sponsored by Rep. John Lewis (D-GA) on March 28, 2019. This legislation establishes the National Parks and Public Land Legacy Restoration Fund, which is designed to support deferred maintenance projects on federal lands for fiscal years 2021 to 2025. The bill makes funding for the Land and Water Conservation Fund permanent and allocates money equal to 50 percent of energy development revenues from oil, gas, coal, or alternative or renewable energy development on federal lands and waters. The bill establishes reporting procedures for all associated projects and mandates that deposited amounts must not exceed $1.9 billion for any fiscal year. The bill was signed into law by the President on Aug. 4.

Commission on the Social Status of Black Men and Boys Act (S 2163) – Sen. Marco Rubio (R-FL) introduced this legislation on July 18, 2019. It is designed to establish a Commission on the Social Status of Black Men and Boys within the U.S. Commission on Civil Rights Office to conduct a systematic study of the conditions affecting black men and boys. The Act was passed by the Senate in June, the House in July, and was signed into law by the President on Aug. 14.


Disclaimer 

These articles provide general information on tax, accounting, and financial topics for small businesses and individuals. They are educational in nature and are not specific legal, accounting, financial, tax, or other professional advice, and should not be relied upon as such. This content was prepared by Service2Client and may have been reviewed or edited by the website owner for accuracy and compliance. Look for a trust mark below for verification details. No representation is made that any approach described will achieve a particular result, and no regulatory or professional body has reviewed or endorsed this content. Because each situation is different, readers should consult a qualified professional about their specific circumstances before acting. Images accompanying these articles are protected by copyright and may not be copied or reused.


Disclaimer 

These articles provide general information on tax, accounting, and financial topics for small businesses and individuals. They are educational in nature and are not specific legal, accounting, financial, tax, or other professional advice, and should not be relied upon as such. This content was prepared by Service2Client and may have been reviewed or edited by the website owner for accuracy and compliance. Look for a trust mark below for verification details. No representation is made that any approach described will achieve a particular result, and no regulatory or professional body has reviewed or endorsed this content. Because each situation is different, readers should consult a qualified professional about their specific circumstances before acting. Images accompanying these articles are protected by copyright and may not be copied or reused.

Service2Client

Share
Published by
Service2Client