Today's Digital Newspaper

The Gazette

Weather Block Here



Colorado endurance runner Anne Flower talks running experience after Silver Rush 50 win

Life Time Silver Rush 50 Run Women's Division winner Anne Flower

Anne Flower crosses the finish line in first place Sunday, July 13, 2025 at the Life Time Silver Rush 50 Run endurance race in Leadville, Colorado.

Courtesy, Leadville Race Series

Life Time Silver Rush 50 Run Women's Division winner Anne Flower

Anne Flower crosses the finish line in first place Sunday, July 13, 2025 at the Life Time Silver Rush 50 Run endurance race in Leadville, Colorado.






Endurance racer Dr. Anne Flower, a Colorado Springs resident, has had her endurance running efforts pay off recently, given her some new hardware to hang around her neck and display at home.

On Saturday, Flower won the Women’s Division of the Life Time Silver Rush 50 Run presented by La Sportiva in the high-altitude town of Leadville, recording an incredible time of 7:08:32 — nearly a full hour ahead of the next highest finishing female Mckendree Hickory.

But Flower’s win in Leadville wasn’t just some random accomplishment. She’s been running road and trail for some 15 years now, preparing for a chance to accomplish a win like she did on Saturday.

Life Time Silver Rush 50 Run Women's Division winner Anne Flower

Anne Flower crosses the finish line in first place Sunday, July 13, 2025 at the Life Time Silver Rush 50 Run endurance race in Leadville, Colorado.

Courtesy photo, Leadville Race Series

Life Time Silver Rush 50 Run Women's Division winner Anne Flower

Anne Flower crosses the finish line in first place Sunday, July 13, 2025 at the Life Time Silver Rush 50 Run endurance race in Leadville, Colorado.






“I got into running during medical school,” Flower, said. “My first long race was a road marathon called the Flying Pig in Cincinnati. My first ultra was a 50 mile race in Moab, Utah, that I completed on my 30th birthday.”

Flower said she raced during medical school and her residency when she was at Ohio University in Athens, Ohio, giving her a healthy outlet when not studying Osteopathic medicine.

“Running kept my sense of adventure alive,” she said. “Trail running has taken me to amazing places that are only accessible by foot.”

Growing up in Cincinnati, Ohio, Flower moved to Colorado three years ago and now is practicing medicine in Colorado Springs. She’s also solidified a place among the El Paso County city’s running community.

“The running community in Colorado Springs is awesome,” she said. “I have made some wonderful friends and the trail access is second-to-none. Many of the nurses, techs, and other medical providers that I work with are also runners and it is great to support and encourage one another.”

Flower said Silver Rush 50 was her first time running the Leadville race.

“I am drawn to big, scary mountain adventures and Leadville combines high altitude beauty with rugged terrain,” she said.

Life Time Silver Rush 50 Run Women's Division winner Anne Flower

Anne Flower runs uphill during the Life Time Silver Rush 50 Run Sunday, July 13, 2025 in Leadville, Colorado.

Courtesy photo, Ken Hamblin lll

Life Time Silver Rush 50 Run Women's Division winner Anne Flower

Anne Flower runs uphill during the Life Time Silver Rush 50 Run Sunday, July 13, 2025 in Leadville, Colorado.






Sign Up For Free:

let pathVariable;
let pathVariable2;

function handleUrlPathSegment() {

const fullPath = window.location.pathname.toLowerCase();
if (fullPath.includes(‘/business/’)) {
pathVariable = ‘business’;
pathVariable2 = ‘Business Newsletter’;
} else if (fullPath.includes(‘/outdoors/’) || fullPath.includes(‘/outdoor/’)) {
pathVariable = ‘outdoors’;
pathVariable2 = ‘Outdoors Newsletter’;
} else if (fullPath.includes(‘/opinion/’)) {
pathVariable = ‘opinion’;
pathVariable2 = ‘Opinion Newsletter’;
} else if (fullPath.includes(‘politics’)) {
pathVariable = ‘politics’;
pathVariable2 = ‘Politics Newsletter’;
} else if (fullPath.includes(‘outtherecolorado’)) {
pathVariable = ‘outtherecolorado’;
pathVariable2 = ‘Out There Colorado Newsletter’;
} else {
pathVariable = ‘am-update’;
pathVariable2 = ‘AM Update Newsletter’;
}

console.log(`Current path: ${fullPath}`);
console.log(`Path variable set to: ${pathVariable}`);
console.log(`Path variable 2 set to: ${pathVariable2}`);

applyNewsletterName(pathVariable2);

return { pathVariable, pathVariable2 };
}

function applyNewsletterName(newsletterName) {

if (document.readyState === ‘loading’) {
document.addEventListener(‘DOMContentLoaded’, function() {
updateNewsletterElement(newsletterName);
});
} else {

updateNewsletterElement(newsletterName);
}
}

function updateNewsletterElement(newsletterName) {
const newsletterElement = document.getElementById(‘newsletterName’);

if (newsletterElement) {
newsletterElement.textContent = newsletterName;
console.log(`Updated #newsletterName element with: ${newsletterName}`);
} else {
console.warn(‘Element with ID #newsletterName not found in the DOM’);
}
}

function setupFormSubmitListener() {
function getFormattedDate() {
const now = new Date();

const timestamp = now.getTime();

console.log(‘chris: Using Unix timestamp’);
console.log(‘chris: Current time:’, now);
console.log(‘chris: Unix timestamp (ms):’, timestamp);

return timestamp;
}

const formattedDate = getFormattedDate();
var profile = window.blueConicClient.profile.getProfile();
profile.setValues(‘newsletter_category’, pathVariable);
profile.setValue(‘newsletter_signup_date’, formattedDate);
window.blueConicClient.profile.updateProfile(this, function() {
});
}

handleUrlPathSegment();
setupFormSubmitListener();

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=60&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%20outdoors%20sign%20up.png);
background-size: cover;

}

#nsltr-header {
color: #fff4f4;
}
#nsltr-body {
text-align: center;
color: ;
}
#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%20outdoors%20sign%20up.png);
background-size: cover;
}
}

Featured Local Savings

Rightfully so. The Silver Rush 50 takes runners passed multiple 14,000 foot peaks and offers more than 8,000 feet of elevation gain over the 50-mile loop.

Although Flower has not run in the 100-mile-long Leadville Trail 100 yet, she said the 50 Run course was incredible.

“The trails take you up and down mountains, through wildflower meadows and past historic mines,” Flower said about Saturday’s course. “The races are between 10,000 and 13,000 feet (in elevation) with spectacular views of the surrounding mountain ranges.”

Because Flower won the Women’s Division of the Silver Rush 50 Run, she qualified to compete in the Leadville Trail 100 in August.

Courtesy, Leadville Race Series

When asked about what knowledge and wisdom she could pass along to up and coming racers, in particular women, about what she learned through her running and experience at races Flower said:

“Girl, you are stronger than you think. Getting up and going for a run is great practice in doing hard things — even if you don’t run fast or far. The more often you do hard things, the more likely you are to achieve wild goals. Running has taught me GRIT and that makes me a better ER doctor, wife, friend, and human.”

Come race morning, keep your eyes open for Flower.


The Life Time Leadville Trail 100 Run starts at 4 a.m., Saturday, Aug. 16, at the corner of 6th Street and Harrison Avenue in downtown Leadville. 

The 100-mile out-and-back course is in the midst of the Colorado Rockies. Low point, 9,200 feet; high point is Hope Pass, 12,600 feet. The majority is on forest trails with some mountain roads.

The Leadville Trail 100 Run Course Profiles

The Leadville Trail 100 Run course profile for the 2025 Leadville Trail 100 Run in Leadville, Colorado on Saturday, Aug. 16, 2025.

Credit, Leadville Race Series

The Leadville Trail 100 Run Course Profiles

The Leadville Trail 100 Run course profile for the 2025 Leadville Trail 100 Run in Leadville, Colorado on Saturday, Aug. 16, 2025.






All athletes will be required to park at the Rodeo Grounds/Community Fields, Intermediate School, or High School parking lot and take a shuttle (or run, walk, bike) to the start line. The shuttle locations are under one mile from the race start and will run efficiently and quickly to get runners to where they need to be.

(Contact Denver Gazette Digital Strategist Jonathan Ingraham at jonathan.ingraham@denvergazette.com or on X at @Skingraham.)

eaf428d4-e6e5-4959-b2b6-e115b9b84a0e

View Original Article | Split View
Tags

PREV

PREVIOUS

Inside an ancient place of intrigue east of Colorado Springs

Facebook Twitter WhatsApp SMS Email Print Copy article link Save Along a new, rough road stretching past a gate and through the plains of Colorado Springs’ east side, Mike Bowman drives his truck to a pull-off and greets two curious visitors. Bowman is a city park ranger, and the two guests are here for his […]

NEXT

NEXT UP

Funding approved for controversial Mad Rabbit trails in Colorado

Facebook Twitter WhatsApp SMS Email Print Copy article link Save Funding has been approved for a major, controversial project expanding trails in northwest Colorado. Off Rabbit Ears Pass near Steamboat Springs, the Mad Rabbit project has been called “the most contentious trails project in the state, maybe in history” by one city councilor. After more […]