Pa Spousal Support Calculator

.pa-support-calculator { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; max-width: 800px; margin: 20px auto; padding: 25px; border: 1px solid #e0e0e0; border-radius: 12px; background-color: #ffffff; box-shadow: 0 4px 6px rgba(0,0,0,0.05); } .pa-support-calculator h2 { color: #2c3e50; text-align: center; margin-bottom: 25px; font-size: 24px; } .calc-row { margin-bottom: 18px; } .calc-row label { display: block; font-weight: 600; margin-bottom: 8px; color: #34495e; } .calc-row input, .calc-row select { width: 100%; padding: 12px; border: 1px solid #ced4da; border-radius: 6px; font-size: 16px; box-sizing: border-box; } .calc-btn { width: 100%; background-color: #2980b9; color: white; padding: 15px; border: none; border-radius: 6px; font-size: 18px; font-weight: bold; cursor: pointer; transition: background-color 0.3s; } .calc-btn:hover { background-color: #2471a3; } .support-result { margin-top: 25px; padding: 20px; background-color: #f8f9fa; border-left: 5px solid #2980b9; border-radius: 4px; display: none; } .result-value { font-size: 28px; color: #2c3e50; font-weight: bold; } .pa-article { margin-top: 40px; line-height: 1.6; color: #333; } .pa-article h3 { color: #2c3e50; margin-top: 25px; } .pa-article p { margin-bottom: 15px; } .example-box { background-color: #eef2f7; padding: 15px; border-radius: 8px; margin: 20px 0; }

Pennsylvania Spousal Support & APL Calculator

No Yes
Estimated Monthly Support:

*This is an estimate based on Rule 1910.16-4 guidelines.

How Pennsylvania Spousal Support is Calculated

In Pennsylvania, spousal support and Alimony Pendente Lite (APL) are calculated using a specific formula established by the PA Supreme Court. The primary goal is to provide a level of financial equity between the high-earner and the lower-earner while the divorce is pending.

The PA Support Formulas

The calculation differs depending on whether the couple has minor children. Note that "Net Income" refers to gross income minus federal, state, and local taxes, FICA, union dues, and non-voluntary retirement contributions.

  • Without Minor Children: The formula is typically 40% of the difference between the payor's net income and the payee's net income.
  • With Minor Children: The formula is typically 33% of the difference between the payor's net income and the payee's net income, after subtracting the child support obligation from the payor's income.
Example Calculation (No Children):
– Payor Net Monthly Income: $6,000
– Payee Net Monthly Income: $2,000
– Difference: $4,000
Monthly Support (40%): $1,600

Key Factors Influencing the Amount

While the formula provides a "presumptive" amount, the court may deviate based on several factors:

  • Duration of Marriage: Short-term marriages may result in shorter support durations.
  • Standard of Living: The lifestyle established during the marriage is considered.
  • Medical Needs: Significant health issues or insurance costs can impact the final award.
  • Earning Capacity: If a spouse is intentionally unemployed, the court may "impute" income to them.

Spousal Support vs. APL vs. Alimony

It is important to distinguish between the three types of support in Pennsylvania:

1. Spousal Support: Paid after separation but before a divorce complaint is filed.

2. Alimony Pendente Lite (APL): Paid after a divorce complaint is filed until the divorce decree is granted.

3. Alimony: Paid after the divorce decree is granted, usually for a fixed duration based on various equitable factors.

Legal Disclaimer

This calculator provides an estimate based on the standard Pennsylvania Support Guidelines (Rule 1910.16-4). Every case is unique, and actual results may vary based on specific local court rules, tax implications, and judicial discretion. Consult with a licensed Pennsylvania family law attorney for precise legal advice.

function toggleChildSupport() { var hasChildren = document.getElementById('hasChildren').value; var div = document.getElementById('childSupportDiv'); if (hasChildren === 'yes') { div.style.display = 'block'; } else { div.style.display = 'none'; document.getElementById('childSupportAmount').value = 0; } } function calculatePASupport() { var payorIncome = parseFloat(document.getElementById('payorNetIncome').value); var payeeIncome = parseFloat(document.getElementById('payeeNetIncome').value); var hasChildren = document.getElementById('hasChildren').value; var childSupport = parseFloat(document.getElementById('childSupportAmount').value) || 0; var resultBox = document.getElementById('supportResultBox'); var resultDisplay = document.getElementById('finalSupportAmount'); if (isNaN(payorIncome) || isNaN(payeeIncome)) { alert("Please enter valid monthly net income amounts."); return; } var supportAmount = 0; if (payorIncome <= payeeIncome) { supportAmount = 0; } else { if (hasChildren === 'yes') { // Formula with children: (Payor Net – Payee Net – Child Support) * 33% var netDiff = payorIncome – payeeIncome – childSupport; supportAmount = netDiff * 0.33; } else { // Formula without children: (Payor Net – Payee Net) * 40% var netDiff = payorIncome – payeeIncome; supportAmount = netDiff * 0.40; } } if (supportAmount < 0) { supportAmount = 0; } resultDisplay.innerHTML = "$" + supportAmount.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); resultBox.style.display = 'block'; }

Leave a Comment