The driver who caused a deadly crash in Lakewood last June while driving drunk will spend more than a decade in prison.
On Monday, a Jefferson County District judge sentenced Ilya Slavin for his role in the crash that killed 65-year-old Beth Bargas.
According to the affidavit, Lakewood police estimated that he was traveling more than double the posted speed limit of 35 mph when he slammed into Bargas’ vehicle at the intersection of Colfax Avenue and Garrison Street on June 5, 2024. After the crash, Slavin’s truck rolled into a nearby shopping center and hit another car.
Bargas was killed. She was on her way to work the morning with her colleague, Ada Hernandez, who was seriously injured in the crash. Her dog was also killed.
Harmony Pointe Nursing Center in Lakewood, where both women worked, dedicated a fountain in Bargas’ honor.
In November, Slavin pleaded guilty to vehicular homicide, vehicular assault, and cruelty to animals, according to the 1st Judicial District Attorney’s Office. The remaining counts were dismissed.
On Monday, the judge sentenced him to 12 years on the vehicular homicide count and three for the vehicular assault charge for a total of 15 years in the Colorado Department of Corrections (DOC).
He was also sentenced to 364 days in jail related to the animal cruelty charge which will run concurrent to his DOC sentence. Upon his release, he will serve a mandatory three years of parole.
For more on this story, and others, visit The Denver Gazette’s news partner, 9News
Catch up with a rundown of the 7 most important and interesting stories delivered to your inbox every Thursday.
Success! Thank you for subscribing to our newsletter.
function subscribeSuccess() {
var nsltrform = document.querySelector(“#nsltr”);
var nsltrSuccess = document.querySelector(“#successnsltr”);
nsltrform.classList.add(“hideblock”);
nsltrSuccess.classList.remove(“hideblock”);
}
function validateEmail(email) {
return String(email)
.toLowerCase()
.match(
/^(([^()[].,;:s@”]+(.[^()[].,;:s@”]+)*)|(“.+”))@(([[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}])|(([a-zA-Z-0-9]+.)+[a-zA-Z]{2,}))$/
);
}
function validateEmailAddress() {
const result = document.querySelector(“#result”);
const email = document.querySelector(“#email”).value;
result.innerText = “”;
if(validateEmail(email)) {
newsletterSubscribe(email);
} else {
result.innerText = ‘The email entered: ‘ + email + ‘ is not valid :(‘;
result.style.color = “red”;
}
return false;
}
function newsletterSubscribe(email) {
fetch(“https://services.gazette.com/mg2-newsletters.php?action=subscribe&site=denvergazette.com&emailPreferenceId=69&email=” + email, {
method: “POST”
}).then(res => {
console.log(“SUCCESSFUL POST”);
subscribeSuccess();
});
}
#nsltr {
min-width: 100%;
margin: 10px 0;
padding: 10px 20px;
background-color: #2076b3;
background-image: url(https://static.gazette.com/emails/circ/Audience%20Images/dg%20weekly%207.png);
background-size: cover;
}
#nsltr-header {
color: #fff4f4;
}
#nsltr-body {
text-align: center;
color: #ffffff;
}
#nsltr-button {
margin-top: 5px;
}
#successnsltr {
min-width: 100%;
margin: 10px 0;
padding: 10px 20px;
background-color: green;
text-align: center;
color: white;
}
#successnsltr a {
color: white;
}
.hideblock {
display:none;
}
h6 a {
color: black;
text-decoration: none;
padding: 5px;
background-color: #bbccdd;
font-weight: 600;
}
@media only screen and (min-width: 768px) {
#nsltr {
background-image: url(https://static.gazette.com/emails/circ/Audience%20Images/dg%20weekly%207.png);
background-size: cover;
}
}