Colorado Alimony Calculator

.co-alimony-calc-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; max-width: 800px; margin: 20px auto; padding: 25px; border: 1px solid #ddd; border-radius: 8px; background-color: #f9f9f9; color: #333; } .co-alimony-calc-container h2 { color: #2c3e50; text-align: center; margin-bottom: 25px; } .calc-row { margin-bottom: 15px; } .calc-row label { display: block; font-weight: bold; margin-bottom: 5px; } .calc-row input { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; } .calc-btn { width: 100%; padding: 15px; background-color: #2c3e50; color: white; border: none; border-radius: 4px; font-size: 18px; cursor: pointer; margin-top: 10px; } .calc-btn:hover { background-color: #34495e; } .results-box { margin-top: 25px; padding: 20px; background-color: #fff; border: 2px solid #2c3e50; border-radius: 4px; display: none; } .results-box h3 { margin-top: 0; color: #2c3e50; } .result-item { font-size: 1.1em; margin-bottom: 10px; } .result-value { font-weight: bold; color: #c0392b; } .calc-article { margin-top: 40px; line-height: 1.6; } .calc-article h3 { color: #2c3e50; border-bottom: 2px solid #eee; padding-bottom: 10px; }

Colorado Maintenance (Alimony) Calculator

Estimated Guideline Results

Monthly Maintenance Amount:
Suggested Duration:
Total Estimated Award:

Note: These figures are based on the Colorado Statutory Guidelines for combined incomes under $240,000. Judges have broad discretion to deviate from these numbers.

Understanding Colorado Alimony (Spousal Maintenance)

In Colorado, alimony is legally referred to as "spousal maintenance." The state provides a specific statutory formula (C.R.S. ยง 14-10-114) to help determine a fair amount and duration for maintenance when a couple's combined annual adjusted gross income is $240,000 or less.

The 40/50 Rule Formula

The Colorado guideline amount is calculated by taking 40% of the higher earner's monthly gross income and subtracting 50% of the lower earner's monthly gross income. However, the calculation is capped to ensure the lower earner does not end up with more than 40% of the couple's total combined monthly income.

Duration of Payments

The length of time maintenance is paid depends on the length of the marriage. Colorado law includes a table that specifies a percentage of the marriage duration. For example:

  • 3 Years (36 months): Duration is roughly 31% of the marriage length (approx. 11 months).
  • 5 Years (60 months): Duration is 35% of the marriage length (21 months).
  • 10 Years (120 months): Duration is 45% of the marriage length (54 months).
  • 12.5 Years (150 months) or more: Duration is 50% of the marriage length.

Key Factors Considered by the Court

While the calculator provides a guideline, Colorado judges consider several factors before finalizing an order, including:

  • The financial resources of each party.
  • The distribution of marital property.
  • The lifestyle established during the marriage.
  • The age and health of both spouses.
  • The ability of the payor spouse to meet their own needs while paying maintenance.

Realistic Example

If Spouse A earns $120,000 annually ($10,000/mo) and Spouse B earns $36,000 annually ($3,000/mo), the calculation would be:

($10,000 * 0.40) – ($3,000 * 0.50) = $4,000 – $1,500 = $2,500 per month.

If they were married for 120 months (10 years), the duration would be 54 months of payments.

function calculateCOAlimony() { var highIncome = parseFloat(document.getElementById('spouse1Income').value); var lowIncome = parseFloat(document.getElementById('spouse2Income').value); var marriageMonths = parseFloat(document.getElementById('marriageLength').value); if (isNaN(highIncome) || isNaN(lowIncome) || isNaN(marriageMonths)) { alert("Please enter valid numbers for income and marriage length."); return; } // Ensure we know which is higher if (lowIncome > highIncome) { var temp = highIncome; highIncome = lowIncome; lowIncome = temp; } var highMonthly = highIncome / 12; var lowMonthly = lowIncome / 12; var combinedMonthly = highMonthly + lowMonthly; // Guideline Formula: (40% of High) – (50% of Low) var maintenance = (highMonthly * 0.40) – (lowMonthly * 0.50); // Cap check: Lower earner cannot exceed 40% of combined income after maintenance var cap = (combinedMonthly * 0.40) – lowMonthly; if (maintenance > cap) { maintenance = cap; } if (maintenance < 0) { maintenance = 0; } // Duration Logic based on CO Statutory Table var duration = 0; if (marriageMonths = 36 && marriageMonths = 60 && marriageMonths = 120 && marriageMonths < 150) { duration = marriageMonths * 0.45; } else { duration = marriageMonths * 0.50; } var totalAward = maintenance * duration; // Display Results document.getElementById('monthlyAmount').innerHTML = "$" + maintenance.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById('durationMonths').innerHTML = Math.round(duration) + " months (" + (duration / 12).toFixed(1) + " years)"; document.getElementById('totalAward').innerHTML = "$" + totalAward.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById('resultArea').style.display = 'block'; }

Leave a Comment