Maine Bureau of Insurance Rate Calculator

.me-calculator-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; max-width: 800px; margin: 20px auto; padding: 25px; border: 1px solid #ddd; border-radius: 8px; background-color: #f9f9f9; color: #333; } .me-calculator-header { text-align: center; margin-bottom: 30px; } .me-calculator-header h2 { color: #003366; margin-bottom: 10px; } .me-input-group { margin-bottom: 15px; } .me-input-group label { display: block; font-weight: bold; margin-bottom: 5px; color: #444; } .me-input-group input { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; font-size: 16px; } .me-calc-btn { background-color: #003366; color: white; padding: 12px 20px; border: none; border-radius: 4px; cursor: pointer; width: 100%; font-size: 18px; font-weight: bold; transition: background-color 0.3s; } .me-calc-btn:hover { background-color: #002244; } .me-results { margin-top: 25px; padding: 20px; background-color: #eef6ff; border-radius: 4px; border-left: 5px solid #003366; } .me-results h3 { margin-top: 0; color: #003366; } .me-result-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #d0dae5; } .me-article { margin-top: 40px; line-height: 1.6; } .me-article h3 { color: #003366; border-bottom: 2px solid #003366; padding-bottom: 5px; } .me-article p { margin-bottom: 15px; } .me-article ul { margin-bottom: 15px; padding-left: 20px; }

Maine Workers' Compensation Premium Estimator

Calculate estimated annual premiums based on Maine Bureau of Insurance Loss Costs and carrier multipliers.

Estimation Results

Manual Rate (per $100): 0.00
Modified Rate: 0.00
Estimated Annual Premium: $0.00

Understanding Maine Insurance Rates

In the state of Maine, the Bureau of Insurance regulates the workers' compensation market through a system of "Loss Costs." Unlike states that set a fixed rate, Maine allows insurance carriers to file their own Loss Cost Multipliers (LCMs), creating a competitive marketplace for business owners.

Key Components of the Calculation

  • Annual Payroll: The total gross wages paid to employees within a specific classification code. Premium is calculated per $100 of this payroll.
  • Advisory Loss Cost: This is the portion of the rate intended to cover the cost of claims and loss adjustment expenses. The National Council on Compensation Insurance (NCCI) submits these to the Maine Bureau of Insurance for approval.
  • Loss Cost Multiplier (LCM): This is a factor used by individual insurance companies to cover their operating expenses, taxes, and profit. For example, if the Loss Cost is 1.00 and the carrier's LCM is 1.25, the actual rate charged is $1.25 per $100 of payroll.
  • Experience Modification Factor (e-Mod): Also known as the "Mod," this factor adjusts your premium based on your company's actual loss history compared to the industry average. A Mod of 1.0 is average; below 1.0 is a credit (good), and above 1.0 is a debit (poor).

Example Calculation

Suppose a Maine logging company has a payroll of $100,000. The NCCI Loss Cost for their class code is 5.00. Their chosen insurance carrier has an LCM of 1.30, and the company has been safe, resulting in an e-Mod of 0.90.

1. Manual Rate: 5.00 (Loss Cost) x 1.30 (LCM) = $6.50 per $100.
2. Modified Rate: 6.50 x 0.90 (e-Mod) = $5.85.
3. Total Premium: ($100,000 / 100) x $5.85 = $5,850 per year.

Regulatory Oversight

The Maine Bureau of Insurance ensures that rates are not excessive, inadequate, or unfairly discriminatory. Businesses are encouraged to shop around, as the LCM can vary significantly between carriers like MEMIC, Travelers, or Liberty Mutual, even for the same class of work.

function calculateMaineRate() { var payroll = parseFloat(document.getElementById('mePayroll').value); var lossCost = parseFloat(document.getElementById('meLossCost').value); var lcm = parseFloat(document.getElementById('meLCM').value); var eMod = parseFloat(document.getElementById('meExperienceMod').value); if (isNaN(payroll) || isNaN(lossCost) || isNaN(lcm) || isNaN(eMod)) { alert("Please enter valid numbers in all fields."); return; } // Manual Rate = Loss Cost * LCM var manualRate = lossCost * lcm; // Modified Rate = Manual Rate * Experience Mod var modifiedRate = manualRate * eMod; // Total Premium = (Payroll / 100) * Modified Rate var totalPremium = (payroll / 100) * modifiedRate; // Display results document.getElementById('resManualRate').innerText = manualRate.toFixed(3); document.getElementById('resModifiedRate').innerText = modifiedRate.toFixed(3); document.getElementById('resTotalPremium').innerText = "$" + totalPremium.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById('meResults').style.display = 'block'; }

Leave a Comment