<!doctype html>
<html lang="en-US" prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb#">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="https://gmpg.org/xfn/11">
<title>KYMN Radio · Northfield, MN · AM 1080 & FM 95.1 – Real Radio, True Variety</title>
<script>
window.JetpackScriptData = {"site":{"icon":"https://i0.wp.com/kymnradio.net/wp-content/uploads/2023/07/KYMN_square.png?fit=384%2C300\u0026ssl=1\u0026w=64","title":"KYMN Radio · Northfield, MN · AM 1080 \u0026amp; FM 95.1","host":"bluehost","is_wpcom_platform":false}};
</script>
<style>
/* Custom BSA_PRO Styles */
/* fonts */
/* form */
.bsaProOrderingForm { }
.bsaProInput input,
.bsaProInput input[type='file'],
.bsaProSelectSpace select,
.bsaProInputsRight .bsaInputInner,
.bsaProInputsRight .bsaInputInner label { }
.bsaProPrice { }
.bsaProDiscount { }
.bsaProOrderingForm .bsaProSubmit,
.bsaProOrderingForm .bsaProSubmit:hover,
.bsaProOrderingForm .bsaProSubmit:active { }
/* alerts */
.bsaProAlert,
.bsaProAlert > a,
.bsaProAlert > a:hover,
.bsaProAlert > a:focus { }
.bsaProAlertSuccess { }
.bsaProAlertFailed { }
/* stats */
.bsaStatsWrapper .ct-chart .ct-series.ct-series-b .ct-bar,
.bsaStatsWrapper .ct-chart .ct-series.ct-series-b .ct-line,
.bsaStatsWrapper .ct-chart .ct-series.ct-series-b .ct-point,
.bsaStatsWrapper .ct-chart .ct-series.ct-series-b .ct-slice.ct-donut { stroke: #1e73be !important; }
.bsaStatsWrapper .ct-chart .ct-series.ct-series-a .ct-bar,
.bsaStatsWrapper .ct-chart .ct-series.ct-series-a .ct-line,
.bsaStatsWrapper .ct-chart .ct-series.ct-series-a .ct-point,
.bsaStatsWrapper .ct-chart .ct-series.ct-series-a .ct-slice.ct-donut { stroke: #81d742 !important; }
/* Custom CSS */
</style><meta name='robots' content='max-image-preview:large' />
<style>img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }</style>
<link rel='dns-prefetch' href='//stats.wp.com' />
<link rel='dns-prefetch' href='//v0.wordpress.com' />
<link rel='preconnect' href='//i0.wp.com' />
<link rel="alternate" type="application/rss+xml" title="KYMN Radio · Northfield, MN · AM 1080 & FM 95.1 » Feed" href="https://kymnradio.net/feed/" />
<script>
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/16.0.1\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/16.0.1\/svg\/","svgExt":".svg","source":{"wpemoji":"https:\/\/kymnradio.net\/wp-includes\/js\/wp-emoji.js?ver=6.8.2","twemoji":"https:\/\/kymnradio.net\/wp-includes\/js\/twemoji.js?ver=6.8.2"}};
/**
* @output wp-includes/js/wp-emoji-loader.js
*/
/**
* Emoji Settings as exported in PHP via _print_emoji_detection_script().
* @typedef WPEmojiSettings
* @type {object}
* @property {?object} source
* @property {?string} source.concatemoji
* @property {?string} source.twemoji
* @property {?string} source.wpemoji
* @property {?boolean} DOMReady
* @property {?Function} readyCallback
*/
/**
* Support tests.
* @typedef SupportTests
* @type {object}
* @property {?boolean} flag
* @property {?boolean} emoji
*/
/**
* IIFE to detect emoji support and load Twemoji if needed.
*
* @param {Window} window
* @param {Document} document
* @param {WPEmojiSettings} settings
*/
( function wpEmojiLoader( window, document, settings ) {
if ( typeof Promise === 'undefined' ) {
return;
}
var sessionStorageKey = 'wpEmojiSettingsSupports';
var tests = [ 'flag', 'emoji' ];
/**
* Checks whether the browser supports offloading to a Worker.
*
* @since 6.3.0
*
* @private
*
* @returns {boolean}
*/
function supportsWorkerOffloading() {
return (
typeof Worker !== 'undefined' &&
typeof OffscreenCanvas !== 'undefined' &&
typeof URL !== 'undefined' &&
URL.createObjectURL &&
typeof Blob !== 'undefined'
);
}
/**
* @typedef SessionSupportTests
* @type {object}
* @property {number} timestamp
* @property {SupportTests} supportTests
*/
/**
* Get support tests from session.
*
* @since 6.3.0
*
* @private
*
* @returns {?SupportTests} Support tests, or null if not set or older than 1 week.
*/
function getSessionSupportTests() {
try {
/** @type {SessionSupportTests} */
var item = JSON.parse(
sessionStorage.getItem( sessionStorageKey )
);
if (
typeof item === 'object' &&
typeof item.timestamp === 'number' &&
new Date().valueOf() < item.timestamp + 604800 && // Note: Number is a week in seconds.
typeof item.supportTests === 'object'
) {
return item.supportTests;
}
} catch ( e ) {}
return null;
}
/**
* Persist the supports in session storage.
*
* @since 6.3.0
*
* @private
*
* @param {SupportTests} supportTests Support tests.
*/
function setSessionSupportTests( supportTests ) {
try {
/** @type {SessionSupportTests} */
var item = {
supportTests: supportTests,
timestamp: new Date().valueOf()
};
sessionStorage.setItem(
sessionStorageKey,
JSON.stringify( item )
);
} catch ( e ) {}
}
/**
* Checks if two sets of Emoji characters render the same visually.
*
* This is used to determine if the browser is rendering an emoji with multiple data points
* correctly. set1 is the emoji in the correct form, using a zero-width joiner. set2 is the emoji
* in the incorrect form, using a zero-width space. If the two sets render the same, then the browser
* does not support the emoji correctly.
*
* This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing
* scope. Everything must be passed by parameters.
*
* @since 4.9.0
*
* @private
*
* @param {CanvasRenderingContext2D} context 2D Context.
* @param {string} set1 Set of Emoji to test.
* @param {string} set2 Set of Emoji to test.
*
* @return {boolean} True if the two sets render the same.
*/
function emojiSetsRenderIdentically( context, set1, set2 ) {
// Cleanup from previous test.
context.clearRect( 0, 0, context.canvas.width, context.canvas.height );
context.fillText( set1, 0, 0 );
var rendered1 = new Uint32Array(
context.getImageData(
0,
0,
context.canvas.width,
context.canvas.height
).data
);
// Cleanup from previous test.
context.clearRect( 0, 0, context.canvas.width, context.canvas.height );
context.fillText( set2, 0, 0 );
var rendered2 = new Uint32Array(
context.getImageData(
0,
0,
context.canvas.width,
context.canvas.height
).data
);
return rendered1.every( function ( rendered2Data, index ) {
return rendered2Data === rendered2[ index ];
} );
}
/**
* Checks if the center point of a single emoji is empty.
*
* This is used to determine if the browser is rendering an emoji with a single data point
* correctly. The center point of an incorrectly rendered emoji will be empty. A correctly
* rendered emoji will have a non-zero value at the center point.
*
* This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing
* scope. Everything must be passed by parameters.
*
* @since 6.8.2
*
* @private
*
* @param {CanvasRenderingContext2D} context 2D Context.
* @param {string} emoji Emoji to test.
*
* @return {boolean} True if the center point is empty.
*/
function emojiRendersEmptyCenterPoint( context, emoji ) {
// Cleanup from previous test.
context.clearRect( 0, 0, context.canvas.width, context.canvas.height );
context.fillText( emoji, 0, 0 );
// Test if the center point (16, 16) is empty (0,0,0,0).
var centerPoint = context.getImageData(16, 16, 1, 1);
for ( var i = 0; i < centerPoint.data.length; i++ ) {
if ( centerPoint.data[ i ] !== 0 ) {
// Stop checking the moment it's known not to be empty.
return false;
}
}
return true;
}
/**
* Determines if the browser properly renders Emoji that Twemoji can supplement.
*
* This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing
* scope. Everything must be passed by parameters.
*
* @since 4.2.0
*
* @private
*
* @param {CanvasRenderingContext2D} context 2D Context.
* @param {string} type Whether to test for support of "flag" or "emoji".
* @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification.
* @param {Function} emojiRendersEmptyCenterPoint Reference to emojiRendersEmptyCenterPoint function, needed due to minification.
*
* @return {boolean} True if the browser can render emoji, false if it cannot.
*/
function browserSupportsEmoji( context, type, emojiSetsRenderIdentically, emojiRendersEmptyCenterPoint ) {
var isIdentical;
switch ( type ) {
case 'flag':
/*
* Test for Transgender flag compatibility. Added in Unicode 13.
*
* To test for support, we try to render it, and compare the rendering to how it would look if
* the browser doesn't render it correctly (white flag emoji + transgender symbol).
*/
isIdentical = emojiSetsRenderIdentically(
context,
'\uD83C\uDFF3\uFE0F\u200D\u26A7\uFE0F', // as a zero-width joiner sequence
'\uD83C\uDFF3\uFE0F\u200B\u26A7\uFE0F' // separated by a zero-width space
);
if ( isIdentical ) {
return false;
}
/*
* Test for Sark flag compatibility. This is the least supported of the letter locale flags,
* so gives us an easy test for full support.
*
* To test for support, we try to render it, and compare the rendering to how it would look if
* the browser doesn't render it correctly ([C] + [Q]).
*/
isIdentical = emojiSetsRenderIdentically(
context,
'\uD83C\uDDE8\uD83C\uDDF6', // as the sequence of two code points
'\uD83C\uDDE8\u200B\uD83C\uDDF6' // as the two code points separated by a zero-width space
);
if ( isIdentical ) {
return false;
}
/*
* Test for English flag compatibility. England is a country in the United Kingdom, it
* does not have a two letter locale code but rather a five letter sub-division code.
*
* To test for support, we try to render it, and compare the rendering to how it would look if
* the browser doesn't render it correctly (black flag emoji + [G] + [B] + [E] + [N] + [G]).
*/
isIdentical = emojiSetsRenderIdentically(
context,
// as the flag sequence
'\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67\uDB40\uDC7F',
// with each code point separated by a zero-width space
'\uD83C\uDFF4\u200B\uDB40\uDC67\u200B\uDB40\uDC62\u200B\uDB40\uDC65\u200B\uDB40\uDC6E\u200B\uDB40\uDC67\u200B\uDB40\uDC7F'
);
return ! isIdentical;
case 'emoji':
/*
* Does Emoji 16.0 cause the browser to go splat?
*
* To test for Emoji 16.0 support, try to render a new emoji: Splatter.
*
* The splatter emoji is a single code point emoji. Testing for browser support
* required testing the center point of the emoji to see if it is empty.
*
* 0xD83E 0xDEDF (\uD83E\uDEDF) == 🫟 Splatter.
*
* When updating this test, please ensure that the emoji is either a single code point
* or switch to using the emojiSetsRenderIdentically function and testing with a zero-width
* joiner vs a zero-width space.
*/
var notSupported = emojiRendersEmptyCenterPoint( context, '\uD83E\uDEDF' );
return ! notSupported;
}
return false;
}
/**
* Checks emoji support tests.
*
* This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing
* scope. Everything must be passed by parameters.
*
* @since 6.3.0
*
* @private
*
* @param {string[]} tests Tests.
* @param {Function} browserSupportsEmoji Reference to browserSupportsEmoji function, needed due to minification.
* @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification.
* @param {Function} emojiRendersEmptyCenterPoint Reference to emojiRendersEmptyCenterPoint function, needed due to minification.
*
* @return {SupportTests} Support tests.
*/
function testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically, emojiRendersEmptyCenterPoint ) {
var canvas;
if (
typeof WorkerGlobalScope !== 'undefined' &&
self instanceof WorkerGlobalScope
) {
canvas = new OffscreenCanvas( 300, 150 ); // Dimensions are default for HTMLCanvasElement.
} else {
canvas = document.createElement( 'canvas' );
}
var context = canvas.getContext( '2d', { willReadFrequently: true } );
/*
* Chrome on OS X added native emoji rendering in M41. Unfortunately,
* it doesn't work when the font is bolder than 500 weight. So, we
* check for bold rendering support to avoid invisible emoji in Chrome.
*/
context.textBaseline = 'top';
context.font = '600 32px Arial';
var supports = {};
tests.forEach( function ( test ) {
supports[ test ] = browserSupportsEmoji( context, test, emojiSetsRenderIdentically, emojiRendersEmptyCenterPoint );
} );
return supports;
}
/**
* Adds a script to the head of the document.
*
* @ignore
*
* @since 4.2.0
*
* @param {string} src The url where the script is located.
*
* @return {void}
*/
function addScript( src ) {
var script = document.createElement( 'script' );
script.src = src;
script.defer = true;
document.head.appendChild( script );
}
settings.supports = {
everything: true,
everythingExceptFlag: true
};
// Create a promise for DOMContentLoaded since the worker logic may finish after the event has fired.
var domReadyPromise = new Promise( function ( resolve ) {
document.addEventListener( 'DOMContentLoaded', resolve, {
once: true
} );
} );
// Obtain the emoji support from the browser, asynchronously when possible.
new Promise( function ( resolve ) {
var supportTests = getSessionSupportTests();
if ( supportTests ) {
resolve( supportTests );
return;
}
if ( supportsWorkerOffloading() ) {
try {
// Note that the functions are being passed as arguments due to minification.
var workerScript =
'postMessage(' +
testEmojiSupports.toString() +
'(' +
[
JSON.stringify( tests ),
browserSupportsEmoji.toString(),
emojiSetsRenderIdentically.toString(),
emojiRendersEmptyCenterPoint.toString()
].join( ',' ) +
'));';
var blob = new Blob( [ workerScript ], {
type: 'text/javascript'
} );
var worker = new Worker( URL.createObjectURL( blob ), { name: 'wpTestEmojiSupports' } );
worker.onmessage = function ( event ) {
supportTests = event.data;
setSessionSupportTests( supportTests );
worker.terminate();
resolve( supportTests );
};
return;
} catch ( e ) {}
}
supportTests = testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically, emojiRendersEmptyCenterPoint );
setSessionSupportTests( supportTests );
resolve( supportTests );
} )
// Once the browser emoji support has been obtained from the session, finalize the settings.
.then( function ( supportTests ) {
/*
* Tests the browser support for flag emojis and other emojis, and adjusts the
* support settings accordingly.
*/
for ( var test in supportTests ) {
settings.supports[ test ] = supportTests[ test ];
settings.supports.everything =
settings.supports.everything && settings.supports[ test ];
if ( 'flag' !== test ) {
settings.supports.everythingExceptFlag =
settings.supports.everythingExceptFlag &&
settings.supports[ test ];
}
}
settings.supports.everythingExceptFlag =
settings.supports.everythingExceptFlag &&
! settings.supports.flag;
// Sets DOMReady to false and assigns a ready function to settings.
settings.DOMReady = false;
settings.readyCallback = function () {
settings.DOMReady = true;
};
} )
.then( function () {
return domReadyPromise;
} )
.then( function () {
// When the browser can not render everything we need to load a polyfill.
if ( ! settings.supports.everything ) {
settings.readyCallback();
var src = settings.source || {};
if ( src.concatemoji ) {
addScript( src.concatemoji );
} else if ( src.wpemoji && src.twemoji ) {
addScript( src.twemoji );
addScript( src.wpemoji );
}
}
} );
} )( window, document, window._wpemojiSettings );
</script>
<style id='wp-emoji-styles-inline-css'>
img.wp-smiley, img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 0.07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<style id='feedzy-rss-feeds-loop-style-inline-css'>
.wp-block-feedzy-rss-feeds-loop{display:grid;gap:24px;grid-template-columns:repeat(1,1fr)}@media(min-width:782px){.wp-block-feedzy-rss-feeds-loop.feedzy-loop-columns-2,.wp-block-feedzy-rss-feeds-loop.feedzy-loop-columns-3,.wp-block-feedzy-rss-feeds-loop.feedzy-loop-columns-4,.wp-block-feedzy-rss-feeds-loop.feedzy-loop-columns-5{grid-template-columns:repeat(2,1fr)}}@media(min-width:960px){.wp-block-feedzy-rss-feeds-loop.feedzy-loop-columns-2{grid-template-columns:repeat(2,1fr)}.wp-block-feedzy-rss-feeds-loop.feedzy-loop-columns-3{grid-template-columns:repeat(3,1fr)}.wp-block-feedzy-rss-feeds-loop.feedzy-loop-columns-4{grid-template-columns:repeat(4,1fr)}.wp-block-feedzy-rss-feeds-loop.feedzy-loop-columns-5{grid-template-columns:repeat(5,1fr)}}.wp-block-feedzy-rss-feeds-loop .wp-block-image.is-style-rounded img{border-radius:9999px}
</style>
<link rel='stylesheet' id='mediaelement-css' href='https://kymnradio.net/wp-includes/js/mediaelement/mediaelementplayer-legacy.min.css?ver=4.2.17' media='all' />
<link rel='stylesheet' id='wp-mediaelement-css' href='https://kymnradio.net/wp-includes/js/mediaelement/wp-mediaelement.css?ver=6.8.2' media='all' />
<style id='jetpack-sharing-buttons-style-inline-css'>
.jetpack-sharing-buttons__services-list{display:flex;flex-direction:row;flex-wrap:wrap;gap:0;list-style-type:none;margin:5px;padding:0}.jetpack-sharing-buttons__services-list.has-small-icon-size{font-size:12px}.jetpack-sharing-buttons__services-list.has-normal-icon-size{font-size:16px}.jetpack-sharing-buttons__services-list.has-large-icon-size{font-size:24px}.jetpack-sharing-buttons__services-list.has-huge-icon-size{font-size:36px}@media print{.jetpack-sharing-buttons__services-list{display:none!important}}.editor-styles-wrapper .wp-block-jetpack-sharing-buttons{gap:0;padding-inline-start:0}ul.jetpack-sharing-buttons__services-list.has-background{padding:1.25em 2.375em}
</style>
<style id='global-styles-inline-css'>
:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:root { --wp--style--global--content-size: 800px;--wp--style--global--wide-size: 1200px; }:where(body) { margin: 0; }.wp-site-blocks > .alignleft { float: left; margin-right: 2em; }.wp-site-blocks > .alignright { float: right; margin-left: 2em; }.wp-site-blocks > .aligncenter { justify-content: center; margin-left: auto; margin-right: auto; }:where(.wp-site-blocks) > * { margin-block-start: 24px; margin-block-end: 0; }:where(.wp-site-blocks) > :first-child { margin-block-start: 0; }:where(.wp-site-blocks) > :last-child { margin-block-end: 0; }:root { --wp--style--block-gap: 24px; }:root :where(.is-layout-flow) > :first-child{margin-block-start: 0;}:root :where(.is-layout-flow) > :last-child{margin-block-end: 0;}:root :where(.is-layout-flow) > *{margin-block-start: 24px;margin-block-end: 0;}:root :where(.is-layout-constrained) > :first-child{margin-block-start: 0;}:root :where(.is-layout-constrained) > :last-child{margin-block-end: 0;}:root :where(.is-layout-constrained) > *{margin-block-start: 24px;margin-block-end: 0;}:root :where(.is-layout-flex){gap: 24px;}:root :where(.is-layout-grid){gap: 24px;}.is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}a:where(:not(.wp-element-button)){text-decoration: underline;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;line-height: inherit;padding: calc(0.667em + 2px) calc(1.333em + 2px);text-decoration: none;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
:root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}
</style>
<link rel='stylesheet' id='buy_sell_ads_pro_main_stylesheet-css' href='https://kymnradio.net/wp-content/plugins/bsa-plugin-pro-scripteo/frontend/css/asset/style.css?v=4.2.74&ver=6.8.2' media='all' />
<link rel='stylesheet' id='buy_sell_ads_pro_user_panel-css' href='https://kymnradio.net/wp-content/plugins/bsa-plugin-pro-scripteo/frontend/css/asset/user-panel.css?ver=6.8.2' media='all' />
<link rel='stylesheet' id='buy_sell_ads_pro_template_stylesheet-css' href='https://kymnradio.net/wp-content/plugins/bsa-plugin-pro-scripteo/frontend/css/all.css?ver=6.8.2' media='all' />
<link rel='stylesheet' id='buy_sell_ads_pro_animate_stylesheet-css' href='https://kymnradio.net/wp-content/plugins/bsa-plugin-pro-scripteo/frontend/css/asset/animate.css?ver=6.8.2' media='all' />
<link rel='stylesheet' id='buy_sell_ads_pro_chart_stylesheet-css' href='https://kymnradio.net/wp-content/plugins/bsa-plugin-pro-scripteo/frontend/css/asset/chart.css?ver=6.8.2' media='all' />
<link rel='stylesheet' id='buy_sell_ads_pro_carousel_stylesheet-css' href='https://kymnradio.net/wp-content/plugins/bsa-plugin-pro-scripteo/frontend/css/asset/bsa.carousel.css?ver=6.8.2' media='all' />
<link rel='stylesheet' id='buy_sell_ads_pro_materialize_stylesheet-css' href='https://kymnradio.net/wp-content/plugins/bsa-plugin-pro-scripteo/frontend/css/asset/material-design.css?ver=6.8.2' media='all' />
<link rel='stylesheet' id='wp-fullcalendar-css' href='https://kymnradio.net/wp-content/plugins/wp-fullcalendar/includes/css/main.css?ver=1.6' media='all' />
<link rel='stylesheet' id='jquery-ui-css' href='https://kymnradio.net/wp-content/plugins/wp-fullcalendar/includes/css/jquery-ui/hot-sneaks/jquery-ui.min.css?ver=1.6' media='all' />
<link rel='stylesheet' id='events-manager-css' href='https://kymnradio.net/wp-content/plugins/events-manager/includes/css/events-manager.css?ver=7.0.5' media='all' />
<style id='events-manager-inline-css'>
body .em { --font-family : inherit; --font-weight : inherit; --font-size : 1em; --line-height : inherit; }
</style>
<link rel='stylesheet' id='qi-addons-for-elementor-grid-style-css' href='https://kymnradio.net/wp-content/plugins/qi-addons-for-elementor/assets/css/grid.min.css?ver=1.9.3' media='all' />
<link rel='stylesheet' id='qi-addons-for-elementor-helper-parts-style-css' href='https://kymnradio.net/wp-content/plugins/qi-addons-for-elementor/assets/css/helper-parts.min.css?ver=1.9.3' media='all' />
<link rel='stylesheet' id='qi-addons-for-elementor-style-css' href='https://kymnradio.net/wp-content/plugins/qi-addons-for-elementor/assets/css/main.min.css?ver=1.9.3' media='all' />
<link rel='stylesheet' id='wp-fullcalendar-tippy-light-border-css' href='https://kymnradio.net/wp-content/plugins/wp-fullcalendar/includes/css/tippy/light-border.css?ver=1.6' media='all' />
<link rel='stylesheet' id='jquery-ui-theme-css' href='https://kymnradio.net/wp-content/plugins/wp-fullcalendar/includes/css/jquery-ui/hot-sneaks/theme.css?ver=1.6' media='all' />
<link rel='stylesheet' id='hello-elementor-css' href='https://kymnradio.net/wp-content/themes/hello-elementor/assets/css/reset.css?ver=3.4.4' media='all' />
<link rel='stylesheet' id='hello-elementor-theme-style-css' href='https://kymnradio.net/wp-content/themes/hello-elementor/assets/css/theme.css?ver=3.4.4' media='all' />
<link rel='stylesheet' id='hello-elementor-header-footer-css' href='https://kymnradio.net/wp-content/themes/hello-elementor/assets/css/header-footer.css?ver=3.4.4' media='all' />
<link rel='stylesheet' id='elementor-frontend-css' href='https://kymnradio.net/wp-content/plugins/elementor/assets/css/frontend.css?ver=3.30.4' media='all' />
<link rel='stylesheet' id='elementor-post-112631-css' href='https://kymnradio.net/wp-content/uploads/elementor/css/post-112631.css?ver=1753914481' media='all' />
<link rel='stylesheet' id='widget-search-form-css' href='https://kymnradio.net/wp-content/plugins/elementor-pro/assets/css/widget-search-form.min.css?ver=3.30.1' media='all' />
<link rel='stylesheet' id='elementor-icons-shared-0-css' href='https://kymnradio.net/wp-content/plugins/elementor/assets/lib/font-awesome/css/fontawesome.css?ver=5.15.3' media='all' />
<link rel='stylesheet' id='elementor-icons-fa-solid-css' href='https://kymnradio.net/wp-content/plugins/elementor/assets/lib/font-awesome/css/solid.css?ver=5.15.3' media='all' />
<link rel='stylesheet' id='widget-image-css' href='https://kymnradio.net/wp-content/plugins/elementor/assets/css/widget-image.min.css?ver=3.30.4' media='all' />
<link rel='stylesheet' id='widget-nav-menu-css' href='https://kymnradio.net/wp-content/plugins/elementor-pro/assets/css/widget-nav-menu.min.css?ver=3.30.1' media='all' />
<link rel='stylesheet' id='widget-spacer-css' href='https://kymnradio.net/wp-content/plugins/elementor/assets/css/widget-spacer.min.css?ver=3.30.4' media='all' />
<link rel='stylesheet' id='widget-icon-list-css' href='https://kymnradio.net/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css?ver=3.30.4' media='all' />
<link rel='stylesheet' id='widget-social-css' href='https://kymnradio.net/wp-content/plugins/elementor-pro/assets/css/widget-social.min.css?ver=3.30.1' media='all' />
<link rel='stylesheet' id='e-animation-slideInRight-css' href='https://kymnradio.net/wp-content/plugins/elementor/assets/lib/animations/styles/slideInRight.css?ver=3.30.4' media='all' />
<link rel='stylesheet' id='e-popup-css' href='https://kymnradio.net/wp-content/plugins/elementor-pro/assets/css/conditionals/popup.min.css?ver=3.30.1' media='all' />
<link rel='stylesheet' id='feedzy-rss-feeds-elementor-css' href='https://kymnradio.net/wp-content/plugins/feedzy-rss-feeds/css/feedzy-rss-feeds.css?ver=1' media='all' />
<link rel='stylesheet' id='elementor-icons-css' href='https://kymnradio.net/wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.css?ver=5.43.0' media='all' />
<link rel='stylesheet' id='widget-heading-css' href='https://kymnradio.net/wp-content/plugins/elementor/assets/css/widget-heading.min.css?ver=3.30.4' media='all' />
<link rel='stylesheet' id='widget-posts-css' href='https://kymnradio.net/wp-content/plugins/elementor-pro/assets/css/widget-posts.min.css?ver=3.30.1' media='all' />
<link rel='stylesheet' id='e-animation-pop-css' href='https://kymnradio.net/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-pop.css?ver=3.30.4' media='all' />
<link rel='stylesheet' id='elementor-post-54057-css' href='https://kymnradio.net/wp-content/uploads/elementor/css/post-54057.css?ver=1753914490' media='all' />
<link rel='stylesheet' id='elementor-post-112681-css' href='https://kymnradio.net/wp-content/uploads/elementor/css/post-112681.css?ver=1753914490' media='all' />
<link rel='stylesheet' id='elementor-post-112741-css' href='https://kymnradio.net/wp-content/uploads/elementor/css/post-112741.css?ver=1753914481' media='all' />
<link rel='stylesheet' id='elementor-post-112715-css' href='https://kymnradio.net/wp-content/uploads/elementor/css/post-112715.css?ver=1753914482' media='all' />
<link rel='stylesheet' id='swiper-css' href='https://kymnradio.net/wp-content/plugins/qi-addons-for-elementor/assets/plugins/swiper/8.4.5/swiper.min.css?ver=8.4.5' media='all' />
<link rel='stylesheet' id='eael-general-css' href='https://kymnradio.net/wp-content/plugins/essential-addons-for-elementor-lite/assets/front-end/css/view/general.min.css?ver=6.2.2' media='all' />
<link rel='stylesheet' id='elementor-gf-local-opensans-css' href='https://kymnradio.net/wp-content/uploads/elementor/google-fonts/css/opensans.css?ver=1742237655' media='all' />
<script src="https://kymnradio.net/wp-includes/js/jquery/jquery.js?ver=3.7.1" id="jquery-core-js"></script>
<script src="https://kymnradio.net/wp-includes/js/jquery/jquery-migrate.js?ver=3.4.1" id="jquery-migrate-js"></script>
<script src="https://kymnradio.net/wp-includes/js/jquery/ui/core.js?ver=1.13.3" id="jquery-ui-core-js"></script>
<script src="https://kymnradio.net/wp-includes/js/jquery/ui/datepicker.js?ver=1.13.3" id="jquery-ui-datepicker-js"></script>
<script id="jquery-ui-datepicker-js-after">
jQuery(function(jQuery){jQuery.datepicker.setDefaults({"closeText":"Close","currentText":"Today","monthNames":["January","February","March","April","May","June","July","August","September","October","November","December"],"monthNamesShort":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"nextText":"Next","prevText":"Previous","dayNames":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"dayNamesShort":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],"dayNamesMin":["S","M","T","W","T","F","S"],"dateFormat":"MM d, yy","firstDay":0,"isRTL":false});});
</script>
<script id="thickbox-js-extra">
var thickboxL10n = {"next":"Next >","prev":"< Prev","image":"Image","of":"of","close":"Close","noiframes":"This feature requires inline frames. You have iframes disabled or your browser does not support them.","loadingAnimation":"https:\/\/kymnradio.net\/wp-includes\/js\/thickbox\/loadingAnimation.gif"};
</script>
<script src="https://kymnradio.net/wp-includes/js/thickbox/thickbox.js?ver=3.1-20121105" id="thickbox-js"></script>
<script src="https://kymnradio.net/wp-includes/js/underscore.min.js?ver=1.13.7" id="underscore-js"></script>
<script src="https://kymnradio.net/wp-includes/js/shortcode.js?ver=6.8.2" id="shortcode-js"></script>
<script src="https://kymnradio.net/wp-admin/js/media-upload.js?ver=6.8.2" id="media-upload-js"></script>
<script src="https://kymnradio.net/wp-content/plugins/bsa-plugin-pro-scripteo/frontend/js/script.js?ver=6.8.2" id="buy_sell_ads_pro_js_script-js"></script>
<script src="https://kymnradio.net/wp-content/plugins/bsa-plugin-pro-scripteo/frontend/js/jquery.viewportchecker.js?ver=6.8.2" id="buy_sell_ads_pro_viewport_checker_js_script-js"></script>
<script src="https://kymnradio.net/wp-content/plugins/bsa-plugin-pro-scripteo/frontend/js/chart.js?ver=6.8.2" id="buy_sell_ads_pro_chart_js_script-js"></script>
<script src="https://kymnradio.net/wp-content/plugins/bsa-plugin-pro-scripteo/frontend/js/bsa.carousel.js?ver=6.8.2" id="buy_sell_ads_pro_carousel_js_script-js"></script>
<script src="https://kymnradio.net/wp-content/plugins/bsa-plugin-pro-scripteo/frontend/js/jquery.simplyscroll.js?ver=6.8.2" id="buy_sell_ads_pro_simply_scroll_js_script-js"></script>
<script src="https://kymnradio.net/wp-includes/js/jquery/ui/mouse.js?ver=1.13.3" id="jquery-ui-mouse-js"></script>
<script src="https://kymnradio.net/wp-includes/js/jquery/ui/sortable.js?ver=1.13.3" id="jquery-ui-sortable-js"></script>
<script src="https://kymnradio.net/wp-includes/js/jquery/ui/resizable.js?ver=1.13.3" id="jquery-ui-resizable-js"></script>
<script src="https://kymnradio.net/wp-includes/js/jquery/ui/draggable.js?ver=1.13.3" id="jquery-ui-draggable-js"></script>
<script src="https://kymnradio.net/wp-includes/js/jquery/ui/controlgroup.js?ver=1.13.3" id="jquery-ui-controlgroup-js"></script>
<script src="https://kymnradio.net/wp-includes/js/jquery/ui/checkboxradio.js?ver=1.13.3" id="jquery-ui-checkboxradio-js"></script>
<script src="https://kymnradio.net/wp-includes/js/jquery/ui/button.js?ver=1.13.3" id="jquery-ui-button-js"></script>
<script src="https://kymnradio.net/wp-includes/js/jquery/ui/dialog.js?ver=1.13.3" id="jquery-ui-dialog-js"></script>
<script id="events-manager-js-extra">
var EM = {"ajaxurl":"https:\/\/kymnradio.net\/wp-admin\/admin-ajax.php","locationajaxurl":"https:\/\/kymnradio.net\/wp-admin\/admin-ajax.php?action=locations_search","firstDay":"0","locale":"en","dateFormat":"yy-mm-dd","ui_css":"https:\/\/kymnradio.net\/wp-content\/plugins\/events-manager\/includes\/css\/jquery-ui\/build.min.css","show24hours":"0","is_ssl":"1","autocomplete_limit":"10","calendar":{"breakpoints":{"small":560,"medium":908,"large":false}},"phone":"","datepicker":{"format":"n\/j\/Y"},"search":{"breakpoints":{"small":650,"medium":850,"full":false}},"url":"https:\/\/kymnradio.net\/wp-content\/plugins\/events-manager","assets":{"input.em-uploader":{"js":{"em-uploader":{"url":"https:\/\/kymnradio.net\/wp-content\/plugins\/events-manager\/includes\/js\/em-uploader.js?v=7.0.5","event":"em_uploader_ready"}}},".em-recurrence-sets, .em-timezone":{"js":{"luxon":{"url":"luxon\/luxon.js?v=7.0.5","event":"em_luxon_ready"}}},".em-booking-form, #em-booking-form, .em-booking-recurring, .em-event-booking-form":{"js":{"em-bookings":{"url":"https:\/\/kymnradio.net\/wp-content\/plugins\/events-manager\/includes\/js\/bookingsform.js?v=7.0.5","event":"em_booking_form_js_loaded"}}}},"cached":"1","google_maps_api":"AIzaSyBKR_OX3-qGG08K7lTkS__N204boGwd1PY","txt_search":"Search","txt_searching":"Searching...","txt_loading":"Loading...","event_detach_warning":"Are you sure you want to detach this event? By doing so, this event will be independent of the recurring set of events.","delete_recurrence_warning":"Are you sure you want to delete all recurrences of this event? All events will be moved to trash."};
</script>
<script src="https://kymnradio.net/wp-content/plugins/events-manager/includes/js/events-manager.js?ver=7.0.5" id="events-manager-js"></script>
<script src="https://kymnradio.net/wp-includes/js/jquery/ui/menu.js?ver=1.13.3" id="jquery-ui-menu-js"></script>
<script src="https://kymnradio.net/wp-includes/js/jquery/ui/selectmenu.js?ver=1.13.3" id="jquery-ui-selectmenu-js"></script>
<script src="https://kymnradio.net/wp-includes/js/jquery/ui/tooltip.js?ver=1.13.3" id="jquery-ui-tooltip-js"></script>
<script src="https://kymnradio.net/wp-includes/js/dist/vendor/moment.js?ver=2.30.1" id="moment-js"></script>
<script id="moment-js-after">
moment.updateLocale( 'en_US', {"months":["January","February","March","April","May","June","July","August","September","October","November","December"],"monthsShort":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"weekdays":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"weekdaysShort":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],"week":{"dow":0},"longDateFormat":{"LT":"g:i a","LTS":null,"L":null,"LL":"F j, Y","LLL":"F j, Y g:i a","LLLL":null}} );
</script>
<script id="wp-fullcalendar-js-extra">
var WPFC = {"ajaxurl":"https:\/\/kymnradio.net\/wp-admin\/admin-ajax.php?action=WP_FullCalendar","firstDay":"0","wpfc_theme":"jquery-ui","wpfc_limit":"3","wpfc_limit_txt":"more ...","timeFormat":"h(:mm)A","defaultView":"month","weekends":"true","header":{"left":"prev,next today","center":"title","right":"month,basicWeek,basicDay"},"wpfc_qtips":"1","tippy_theme":"light-border","tippy_placement":"auto","tippy_loading":"Loading..."};
</script>
<script src="https://kymnradio.net/wp-content/plugins/wp-fullcalendar/includes/js/fullcalendar.js?ver=1.6" id="wp-fullcalendar-js"></script>
<script src="https://kymnradio.net/wp-content/plugins/wp-fullcalendar/includes/js/popper.js?ver=1.6" id="popper.js-js"></script>
<script src="https://kymnradio.net/wp-content/plugins/wp-fullcalendar/includes/js/tippy.js?ver=1.6" id="tippy.js-js"></script>
<link rel="https://api.w.org/" href="https://kymnradio.net/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://kymnradio.net/wp-json/wp/v2/pages/54057" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://kymnradio.net/xmlrpc.php?rsd" />
<meta name="generator" content="WordPress 6.8.2" />
<link rel="canonical" href="https://kymnradio.net/" />
<link rel='shortlink' href='https://wp.me/PrblI-e3T' />
<link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://kymnradio.net/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fkymnradio.net%2F" />
<link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://kymnradio.net/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fkymnradio.net%2F&format=xml" />
<script id="dzsap-main-settings" type="application/json">{"dzsap_site_url":"https:\/\/kymnradio.net\/","pluginurl":"https:\/\/kymnradio.net\/wp-content\/plugins\/dzs-zoomsounds\/audioplayer\/","dzsap_curr_user":0,"version":"6.48","ajax_url":"https:\/\/kymnradio.net\/wp-admin\/admin-ajax.php","action_received_time_total":"send_total_time"}</script><style type="text/css">
.feedzy-rss-link-icon:after {
content: url("https://kymnradio.net/wp-content/plugins/feedzy-rss-feeds/img/external-link.png");
margin-left: 3px;
}
</style>
<script type="text/javascript">
function showPopup(url) {
newwindow=window.open(url,'name','height=190,width=520,top=200,left=300,resizable');
if (window.focus) {newwindow.focus()}
}
</script> <style>img#wpstats{display:none}</style>
<meta name="generator" content="Elementor 3.30.4; features: additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-swap">
<style>
.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload),
.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * {
background-image: none !important;
}
@media screen and (max-height: 1024px) {
.e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload),
.e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * {
background-image: none !important;
}
}
@media screen and (max-height: 640px) {
.e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload),
.e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * {
background-image: none !important;
}
}
</style>
<link rel="icon" href="https://i0.wp.com/kymnradio.net/wp-content/uploads/2023/07/KYMN_square.png?fit=32%2C32&ssl=1" sizes="32x32" />
<link rel="icon" href="https://i0.wp.com/kymnradio.net/wp-content/uploads/2023/07/KYMN_square.png?fit=192%2C192&ssl=1" sizes="192x192" />
<link rel="apple-touch-icon" href="https://i0.wp.com/kymnradio.net/wp-content/uploads/2023/07/KYMN_square.png?fit=180%2C180&ssl=1" />
<meta name="msapplication-TileImage" content="https://i0.wp.com/kymnradio.net/wp-content/uploads/2023/07/KYMN_square.png?fit=270%2C270&ssl=1" />
<!-- START - Open Graph and Twitter Card Tags 3.3.5 -->
<!-- Facebook Open Graph -->
<meta property="og:locale" content="en_US"/>
<meta property="og:site_name" content="KYMN Radio · Northfield, MN · AM 1080 & FM 95.1"/>
<meta property="og:title" content="Home"/>
<meta property="og:url" content="https://kymnradio.net"/>
<meta property="og:type" content="website"/>
<meta property="og:description" content="NORTHFIELD WEATHER
Local News
Recent Programs
The Morning ShowSpecialsThe Northfield Lunch HourRaider WrapThe Weekly ListFine TuneOut In The OpenArt ZanyTrek Through TimeBarrio LatinoThe Naked ArtistGeeking OutLibrary LoveSpill the BeansOn A TangentTowniesDoing Good Things f"/>
<meta property="og:image" content="https://kymnradio.net/wp-content/uploads/2021/05/Capture.png"/>
<meta property="og:image:url" content="https://kymnradio.net/wp-content/uploads/2021/05/Capture.png"/>
<meta property="og:image:secure_url" content="https://kymnradio.net/wp-content/uploads/2021/05/Capture.png"/>
<meta property="article:publisher" content="https://www.facebook.com/1080KYMN/"/>
<!-- Google+ / Schema.org -->
<meta itemprop="name" content="Home"/>
<meta itemprop="headline" content="Home"/>
<meta itemprop="description" content="NORTHFIELD WEATHER
Local News
Recent Programs
The Morning ShowSpecialsThe Northfield Lunch HourRaider WrapThe Weekly ListFine TuneOut In The OpenArt ZanyTrek Through TimeBarrio LatinoThe Naked ArtistGeeking OutLibrary LoveSpill the BeansOn A TangentTowniesDoing Good Things f"/>
<meta itemprop="image" content="https://kymnradio.net/wp-content/uploads/2021/05/Capture.png"/>
<meta itemprop="author" content="Jeff Johnson"/>
<!--<meta itemprop="publisher" content="KYMN Radio · Northfield, MN · AM 1080 & FM 95.1"/>--> <!-- To solve: The attribute publisher.itemtype has an invalid value -->
<!-- Twitter Cards -->
<meta name="twitter:title" content="Home"/>
<meta name="twitter:url" content="https://kymnradio.net"/>
<meta name="twitter:description" content="NORTHFIELD WEATHER
Local News
Recent Programs
The Morning ShowSpecialsThe Northfield Lunch HourRaider WrapThe Weekly ListFine TuneOut In The OpenArt ZanyTrek Through TimeBarrio LatinoThe Naked ArtistGeeking OutLibrary LoveSpill the BeansOn A TangentTowniesDoing Good Things f"/>
<meta name="twitter:image" content="https://kymnradio.net/wp-content/uploads/2021/05/Capture.png"/>
<meta name="twitter:card" content="summary_large_image"/>
<!-- SEO -->
<!-- Misc. tags -->
<!-- is_singular -->
<!-- END - Open Graph and Twitter Card Tags 3.3.5 -->
</head>
<body data-rsssl=1 class="home wp-singular page-template-default page page-id-54057 wp-custom-logo wp-embed-responsive wp-theme-hello-elementor qodef-qi--touch qi-addons-for-elementor-1.9.3 hello-elementor-default elementor-default elementor-kit-112631 elementor-page elementor-page-54057 elementor-page-119063">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-GEHGHVJYRX"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-GEHGHVJYRX');
</script>
<a class="skip-link screen-reader-text" href="#content">Skip to content</a>
<div data-elementor-type="header" data-elementor-id="112681" class="elementor elementor-112681 elementor-location-header" data-elementor-post-type="elementor_library">
<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-a8ed2ac elementor-section-full_width elementor-hidden-mobile elementor-section-height-default elementor-section-height-default" data-id="a8ed2ac" data-element_type="section" data-settings="{"background_background":"classic"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-69ab30b" data-id="69ab30b" data-element_type="column">
<div class="elementor-widget-wrap">
</div>
</div>
<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-5979822" data-id="5979822" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-c5dd921 elementor-search-form--skin-classic elementor-search-form--button-type-icon elementor-search-form--icon-search elementor-widget elementor-widget-search-form" data-id="c5dd921" data-element_type="widget" data-settings="{"skin":"classic"}" data-widget_type="search-form.default">
<div class="elementor-widget-container">
<search role="search">
<form class="elementor-search-form" action="https://kymnradio.net" method="get">
<div class="elementor-search-form__container">
<label class="elementor-screen-only" for="elementor-search-form-c5dd921">Search</label>
<input id="elementor-search-form-c5dd921" placeholder="Search..." class="elementor-search-form__input" type="search" name="s" value="">
<button class="elementor-search-form__submit" type="submit" aria-label="Search">
<i aria-hidden="true" class="fas fa-search"></i> </button>
</div>
</form>
</search>
</div>
</div>
</div>
</div>
</div>
</section>
<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-8c2d106 elementor-hidden-desktop elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="8c2d106" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-2c38819" data-id="2c38819" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-612c19d elementor-view-default elementor-widget elementor-widget-icon" data-id="612c19d" data-element_type="widget" data-widget_type="icon.default">
<div class="elementor-widget-container">
<div class="elementor-icon-wrapper">
<a class="elementor-icon" href="#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjExMjcxNSIsInRvZ2dsZSI6ZmFsc2V9">
<i aria-hidden="true" class="fas fa-bars"></i> </a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-38c0607 elementor-section-height-min-height elementor-section-boxed elementor-section-height-default elementor-section-items-middle" data-id="38c0607" data-element_type="section" data-settings="{"background_background":"classic"}">
<div class="elementor-background-overlay"></div>
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-2b4076b" data-id="2b4076b" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-9becc2a elementor-widget elementor-widget-html" data-id="9becc2a" data-element_type="widget" data-widget_type="html.default">
<div class="elementor-widget-container">
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','
');</script>
<!-- End Google Tag Manager --> </div>
</div>
<div class="elementor-element elementor-element-d77891b elementor-widget elementor-widget-image" data-id="d77891b" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<a href="https://kymnradio.net">
<img fetchpriority="high" width="600" height="525" src="https://i0.wp.com/kymnradio.net/wp-content/uploads/2025/06/KYMN-Logo-2.png?fit=600%2C525&ssl=1" class="attachment-large size-large wp-image-126276" alt="" srcset="https://i0.wp.com/kymnradio.net/wp-content/uploads/2025/06/KYMN-Logo-2.png?w=1200&ssl=1 1200w, https://i0.wp.com/kymnradio.net/wp-content/uploads/2025/06/KYMN-Logo-2.png?resize=300%2C263&ssl=1 300w, https://i0.wp.com/kymnradio.net/wp-content/uploads/2025/06/KYMN-Logo-2.png?resize=600%2C525&ssl=1 600w, https://i0.wp.com/kymnradio.net/wp-content/uploads/2025/06/KYMN-Logo-2.png?resize=150%2C131&ssl=1 150w, https://i0.wp.com/kymnradio.net/wp-content/uploads/2025/06/KYMN-Logo-2.png?resize=768%2C672&ssl=1 768w" sizes="(max-width: 600px) 100vw, 600px" data-attachment-id="126276" data-permalink="https://kymnradio.net/kymn-logo-2-2/" data-orig-file="https://i0.wp.com/kymnradio.net/wp-content/uploads/2025/06/KYMN-Logo-2.png?fit=1200%2C1050&ssl=1" data-orig-size="1200,1050" data-comments-opened="0" data-image-meta="{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0"}" data-image-title="KYMN Logo 2" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/kymnradio.net/wp-content/uploads/2025/06/KYMN-Logo-2.png?fit=300%2C263&ssl=1" data-large-file="https://i0.wp.com/kymnradio.net/wp-content/uploads/2025/06/KYMN-Logo-2.png?fit=600%2C525&ssl=1" /> </a>
</div>
</div>
<div class="elementor-element elementor-element-0ff1a11 elementor-hidden-desktop elementor-hidden-tablet elementor-widget elementor-widget-image" data-id="0ff1a11" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img width="600" height="100" src="https://i0.wp.com/kymnradio.net/wp-content/uploads/2023/04/tagline3.webp?fit=600%2C100&ssl=1" class="attachment-large size-large wp-image-112652" alt="" srcset="https://i0.wp.com/kymnradio.net/wp-content/uploads/2023/04/tagline3.webp?w=702&ssl=1 702w, https://i0.wp.com/kymnradio.net/wp-content/uploads/2023/04/tagline3.webp?resize=300%2C50&ssl=1 300w, https://i0.wp.com/kymnradio.net/wp-content/uploads/2023/04/tagline3.webp?resize=600%2C100&ssl=1 600w, https://i0.wp.com/kymnradio.net/wp-content/uploads/2023/04/tagline3.webp?resize=150%2C25&ssl=1 150w" sizes="(max-width: 600px) 100vw, 600px" data-attachment-id="112652" data-permalink="https://kymnradio.net/?attachment_id=112652" data-orig-file="https://i0.wp.com/kymnradio.net/wp-content/uploads/2023/04/tagline3.webp?fit=702%2C117&ssl=1" data-orig-size="702,117" data-comments-opened="0" data-image-meta="{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0"}" data-image-title="tagline3" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/kymnradio.net/wp-content/uploads/2023/04/tagline3.webp?fit=300%2C50&ssl=1" data-large-file="https://i0.wp.com/kymnradio.net/wp-content/uploads/2023/04/tagline3.webp?fit=600%2C100&ssl=1" /> </div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-bba8941 elementor-hidden-mobile" data-id="bba8941" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-50cc9ee elementor-widget elementor-widget-image" data-id="50cc9ee" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img width="600" height="122" src="https://i0.wp.com/kymnradio.net/wp-content/uploads/2023/04/KYMN-Logo-5-white-1.png?fit=600%2C122&ssl=1" class="attachment-large size-large wp-image-126286" alt="" srcset="https://i0.wp.com/kymnradio.net/wp-content/uploads/2023/04/KYMN-Logo-5-white-1.png?w=1506&ssl=1 1506w, https://i0.wp.com/kymnradio.net/wp-content/uploads/2023/04/KYMN-Logo-5-white-1.png?resize=300%2C61&ssl=1 300w, https://i0.wp.com/kymnradio.net/wp-content/uploads/2023/04/KYMN-Logo-5-white-1.png?resize=600%2C122&ssl=1 600w, https://i0.wp.com/kymnradio.net/wp-content/uploads/2023/04/KYMN-Logo-5-white-1.png?resize=150%2C30&ssl=1 150w, https://i0.wp.com/kymnradio.net/wp-content/uploads/2023/04/KYMN-Logo-5-white-1.png?resize=768%2C156&ssl=1 768w" sizes="(max-width: 600px) 100vw, 600px" data-attachment-id="126286" data-permalink="https://kymnradio.net/?attachment_id=126286" data-orig-file="https://i0.wp.com/kymnradio.net/wp-content/uploads/2023/04/KYMN-Logo-5-white-1.png?fit=1506%2C306&ssl=1" data-orig-size="1506,306" data-comments-opened="0" data-image-meta="{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0"}" data-image-title="KYMN-Logo-5-white" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/kymnradio.net/wp-content/uploads/2023/04/KYMN-Logo-5-white-1.png?fit=300%2C61&ssl=1" data-large-file="https://i0.wp.com/kymnradio.net/wp-content/uploads/2023/04/KYMN-Logo-5-white-1.png?fit=600%2C122&ssl=1" /> </div>
</div>
<div class="elementor-element elementor-element-6c41b49 rbutton elementor-widget elementor-widget-html" data-id="6c41b49" data-element_type="widget" id="rbutton" data-widget_type="html.default">
<div class="elementor-widget-container">
<center> <button style="font-size:1.5vw" onclick="myFunction()" </button><i aria-hidden="true" class="fas fa-play"></i> KYMN • LISTEN LIVE</button></center> </div>
</div>
</div>
</div>
</div>
</section>
<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-fab6d9e elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="fab6d9e" data-element_type="section" data-settings="{"background_background":"classic"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-66 elementor-top-column elementor-element elementor-element-0a03007" data-id="0a03007" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-94051c4 elementor-nav-menu__align-justify elementor-hidden-tablet elementor-hidden-mobile elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-nav-menu--toggle elementor-nav-menu--burger elementor-widget elementor-widget-nav-menu" data-id="94051c4" data-element_type="widget" data-settings="{"layout":"horizontal","submenu_icon":{"value":"<i class=\"fas fa-caret-down\"><\/i>","library":"fa-solid"},"toggle":"burger"}" data-widget_type="nav-menu.default">
<div class="elementor-widget-container">
<nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-horizontal e--pointer-background e--animation-fade">
<ul id="menu-1-94051c4" class="elementor-nav-menu"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-54057 current_page_item menu-item-104629"><a href="https://kymnradio.net/" aria-current="page" class="elementor-item elementor-item-active">Home</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-123795"><a href="https://kymnradio.net/support-local-radio/" class="elementor-item">Support Local Radio</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-54060"><a href="https://kymnradio.net/about/" class="elementor-item">About KYMN</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-53954"><a href="https://kymnradio.net/local-programs/" class="elementor-item">Programs</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-119588"><a href="https://kymnradio.net/local-news/" class="elementor-item">Local News</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-119596"><a href="https://kymnradio.net/local-news/city-government-northfield/" class="elementor-sub-item">City Government – Northfield</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-119593"><a href="https://kymnradio.net/local-news/dundas/" class="elementor-sub-item">Dundas</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-119592"><a href="https://kymnradio.net/local-news/education-amp-schools/" class="elementor-sub-item">Education & Schools</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-119590"><a href="https://kymnradio.net/local-news/rice-county/" class="elementor-sub-item">Rice County</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-119591"><a href="https://kymnradio.net/local-news/public-safety/" class="elementor-sub-item">Public Safety</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-119595"><a href="https://kymnradio.net/local-news/business-economy/" class="elementor-sub-item">Business & Economy</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-119594"><a href="https://kymnradio.net/local-news/community-organizations-events/" class="elementor-sub-item">Community Organizations & Events</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-119589"><a href="https://kymnradio.net/local-news/daily-newscast/" class="elementor-sub-item">Listen to the Daily Newscast</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-53955"><a href="https://kymnradio.net/program-schedule/" class="elementor-item">Schedule</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-114061"><a href="https://kymnradio.net/local-programs/raider-wrap/" class="elementor-item">Sports</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-110603"><a href="https://kymnradio.net/local-programs/raider-wrap/" class="elementor-sub-item">Raider Wrap</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-55102"><a href="https://kymnradio.net/community/" class="elementor-item">Community</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-108596"><a href="https://kymnradio.net/calendar/" class="elementor-sub-item">Calendar</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-54125"><a target="_blank" href="https://northfield.legistar.com/Calendar.aspx" class="elementor-sub-item">City Hall</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-53957"><a href="https://kymnradio.net/community/" class="elementor-sub-item">Funeral Notices</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-53958"><a target="_blank" href="https://www.northfieldfuneral.com/" class="elementor-sub-item">Northfield Funeral Home</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-53960"><a target="_blank" href="https://www.boldtfuneralhome.com/" class="elementor-sub-item">Boldt (Faribault)</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-53961"><a target="_blank" href="http://www.lundbergfuneral.com/" class="elementor-sub-item">Lundberg (Cannon Falls)</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-53962"><a target="_blank" href="https://www.parkerkohlfuneralhome.com/" class="elementor-sub-item">Parker-Kohl (Faribault)</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-53963"><a target="_blank" href="https://www.whitefuneralhomes.com/" class="elementor-sub-item">White (Burnsville, Lakeville, Lonsdale)</a></li>
</ul>
</li>
</ul>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-54870"><a href="https://kymnradio.net/contact-us/" class="elementor-item">Contact</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-126605"><a href="https://kymnradio.net/privacy-policy/" class="elementor-item">Privacy Policy</a></li>
</ul> </nav>
<div class="elementor-menu-toggle" role="button" tabindex="0" aria-label="Menu Toggle" aria-expanded="false">
<i aria-hidden="true" role="presentation" class="elementor-menu-toggle__icon--open eicon-menu-bar"></i><i aria-hidden="true" role="presentation" class="elementor-menu-toggle__icon--close eicon-close"></i> </div>
<nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true">
<ul id="menu-2-94051c4" class="elementor-nav-menu"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-54057 current_page_item menu-item-104629"><a href="https://kymnradio.net/" aria-current="page" class="elementor-item elementor-item-active" tabindex="-1">Home</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-123795"><a href="https://kymnradio.net/support-local-radio/" class="elementor-item" tabindex="-1">Support Local Radio</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-54060"><a href="https://kymnradio.net/about/" class="elementor-item" tabindex="-1">About KYMN</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-53954"><a href="https://kymnradio.net/local-programs/" class="elementor-item" tabindex="-1">Programs</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-119588"><a href="https://kymnradio.net/local-news/" class="elementor-item" tabindex="-1">Local News</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-119596"><a href="https://kymnradio.net/local-news/city-government-northfield/" class="elementor-sub-item" tabindex="-1">City Government – Northfield</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-119593"><a href="https://kymnradio.net/local-news/dundas/" class="elementor-sub-item" tabindex="-1">Dundas</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-119592"><a href="https://kymnradio.net/local-news/education-amp-schools/" class="elementor-sub-item" tabindex="-1">Education & Schools</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-119590"><a href="https://kymnradio.net/local-news/rice-county/" class="elementor-sub-item" tabindex="-1">Rice County</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-119591"><a href="https://kymnradio.net/local-news/public-safety/" class="elementor-sub-item" tabindex="-1">Public Safety</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-119595"><a href="https://kymnradio.net/local-news/business-economy/" class="elementor-sub-item" tabindex="-1">Business & Economy</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-119594"><a href="https://kymnradio.net/local-news/community-organizations-events/" class="elementor-sub-item" tabindex="-1">Community Organizations & Events</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-119589"><a href="https://kymnradio.net/local-news/daily-newscast/" class="elementor-sub-item" tabindex="-1">Listen to the Daily Newscast</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-53955"><a href="https://kymnradio.net/program-schedule/" class="elementor-item" tabindex="-1">Schedule</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-114061"><a href="https://kymnradio.net/local-programs/raider-wrap/" class="elementor-item" tabindex="-1">Sports</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-110603"><a href="https://kymnradio.net/local-programs/raider-wrap/" class="elementor-sub-item" tabindex="-1">Raider Wrap</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-55102"><a href="https://kymnradio.net/community/" class="elementor-item" tabindex="-1">Community</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-108596"><a href="https://kymnradio.net/calendar/" class="elementor-sub-item" tabindex="-1">Calendar</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-54125"><a target="_blank" href="https://northfield.legistar.com/Calendar.aspx" class="elementor-sub-item" tabindex="-1">City Hall</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-53957"><a href="https://kymnradio.net/community/" class="elementor-sub-item" tabindex="-1">Funeral Notices</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-53958"><a target="_blank" href="https://www.northfieldfuneral.com/" class="elementor-sub-item" tabindex="-1">Northfield Funeral Home</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-53960"><a target="_blank" href="https://www.boldtfuneralhome.com/" class="elementor-sub-item" tabindex="-1">Boldt (Faribault)</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-53961"><a target="_blank" href="http://www.lundbergfuneral.com/" class="elementor-sub-item" tabindex="-1">Lundberg (Cannon Falls)</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-53962"><a target="_blank" href="https://www.parkerkohlfuneralhome.com/" class="elementor-sub-item" tabindex="-1">Parker-Kohl (Faribault)</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-53963"><a target="_blank" href="https://www.whitefuneralhomes.com/" class="elementor-sub-item" tabindex="-1">White (Burnsville, Lakeville, Lonsdale)</a></li>
</ul>
</li>
</ul>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-54870"><a href="https://kymnradio.net/contact-us/" class="elementor-item" tabindex="-1">Contact</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-126605"><a href="https://kymnradio.net/privacy-policy/" class="elementor-item" tabindex="-1">Privacy Policy</a></li>
</ul> </nav>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-88de9f3" data-id="88de9f3" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-7a91f48 elementor-widget elementor-widget-html" data-id="7a91f48" data-element_type="widget" data-widget_type="html.default">
<div class="elementor-widget-container">
<center><button onclick="myFunction()"><i aria-hidden="true" class="fas fa-play"></i> KYMN • LISTEN LIVE</button></center> </div>
</div>
</div>
</div>
</div>
</section>
<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-03dd295 elementor-section-full_width elementor-hidden-desktop elementor-hidden-tablet elementor-section-height-default elementor-section-height-default" data-id="03dd295" data-element_type="section" data-settings="{"background_background":"classic"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-2a890aa" data-id="2a890aa" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-deb4471 elementor-search-form--skin-classic elementor-search-form--button-type-icon elementor-search-form--icon-search elementor-widget elementor-widget-search-form" data-id="deb4471" data-element_type="widget" data-settings="{"skin":"classic"}" data-widget_type="search-form.default">
<div class="elementor-widget-container">
<search role="search">
<form class="elementor-search-form" action="https://kymnradio.net" method="get">
<div class="elementor-search-form__container">
<label class="elementor-screen-only" for="elementor-search-form-deb4471">Search</label>
<input id="elementor-search-form-deb4471" placeholder="Search..." class="elementor-search-form__input" type="search" name="s" value="">
<button class="elementor-search-form__submit" type="submit" aria-label="Search">
<i aria-hidden="true" class="fas fa-search"></i> </button>
</div>
</form>
</search>
</div>
</div>
</div>
</div>
</div>
</section>
<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-5b4aabe elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="5b4aabe" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ca65f71" data-id="ca65f71" data-element_type="column">
<div class="elementor-widget-wrap">
</div>
</div>
</div>
</section>
</div>
<main id="content" class="site-main post-54057 page type-page status-publish has-post-thumbnail hentry">
<div class="page-content">
<div data-elementor-type="wp-page" data-elementor-id="54057" class="elementor elementor-54057" data-elementor-post-type="page">
<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-971a796 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="971a796" data-element_type="section">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ff7fd56" data-id="ff7fd56" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-7b11dcd elementor-widget elementor-widget-html" data-id="7b11dcd" data-element_type="widget" data-widget_type="html.default">
<div class="elementor-widget-container">
<a class="weatherwidget-io" href="https://forecast7.com/en/44d46n93d16/northfield/?unit=us" data-label_1="NORTHFIELD" data-label_2="WEATHER" data-theme="dark" data-basecolor="#CE2935" data-suncolor="#faf437" >NORTHFIELD WEATHER</a>
<script>
!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src='https://weatherwidget.io/js/widget.min.js';fjs.parentNode.insertBefore(js,fjs);}}(document,'script','weatherwidget-io-js');
</script> </div>
</div>
</div>
</div>
</div>
</section>
<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-8058561 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="8058561" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-6a4f22a" data-id="6a4f22a" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-9418e78 elementor-widget__width-initial elementor-widget elementor-widget-shortcode" data-id="9418e78" data-element_type="widget" data-widget_type="shortcode.default">
<div class="elementor-widget-container">
<div class="elementor-shortcode"><div id="bsa-block-800--300" class="bsaProContainerNew bsaProContainer-14 bsa-block-800--300 bsa-pro-col-1" style="display: block !important"><div class="bsaProItems bsaGridNoGutter " style="background-color:"><div class="bsaProItem bsaReset" data-animation="none" style="opacity:1"><div class="bsaProItemInner" style="background-color:"><div class="bsaProItemInner__thumb"><div class="bsaProAnimateThumb"><a class="bsaProItem__url" rel="nofollow" href="https://kymnradio.net?bsa_pro_id=176&bsa_pro_url=1" target="_blank"><div class="bsaProItemInner__img" style="background-image: url('https://kymnradio.net/wp-content/uploads/bsa-pro-upload/1727379114-GrowingStrongCommunities_KYMN800x300 (2).jpg')"></div></a></div></div></div></div></div></div><script>
(function($){
function bsaProResize() {
var sid = "14";
var object = $(".bsaProContainer-" + sid + " .bsaProItemInner__img");
var animateThumb = $(".bsaProContainer-" + sid + " .bsaProAnimateThumb");
var innerThumb = $(".bsaProContainer-" + sid + " .bsaProItemInner__thumb");
var parentWidth = "800";
var parentHeight = "300";
var objectWidth = object.width();
if ( objectWidth < parentWidth ) {
var scale = objectWidth / parentWidth;
if ( objectWidth > 0 && objectWidth !== 100 && scale > 0 ) {
animateThumb.height(parentHeight * scale);
innerThumb.height(parentHeight * scale);
object.height(parentHeight * scale);
} else {
animateThumb.height(parentHeight);
innerThumb.height(parentHeight);
object.height(parentHeight);
}
} else {
animateThumb.height(parentHeight);
innerThumb.height(parentHeight);
object.height(parentHeight);
}
}
$(document).ready(function(){
bsaProResize();
$(window).resize(function(){
bsaProResize();
});
});
})(jQuery);
</script> <script>
(function ($) {
var bsaProContainer = $('.bsaProContainer-14');
var number_show_ads = "0";
var number_hide_ads = "0";
if ( number_show_ads > 0 ) {
setTimeout(function () { bsaProContainer.fadeIn(); }, number_show_ads * 1000);
}
if ( number_hide_ads > 0 ) {
setTimeout(function () { bsaProContainer.fadeOut(); }, number_hide_ads * 1000);
}
})(jQuery);
</script>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-3668243" data-id="3668243" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-82c756c elementor-widget__width-initial elementor-widget elementor-widget-shortcode" data-id="82c756c" data-element_type="widget" data-widget_type="shortcode.default">
<div class="elementor-widget-container">
<div class="elementor-shortcode"><div id="bsa-block-800--300" class="bsaProContainerNew bsaProContainer-15 bsa-block-800--300 bsa-pro-col-1" style="display: block !important"><div class="bsaProItems bsaGridNoGutter " style="background-color:"><div class="bsaProItem bsaReset" data-animation="none" style="opacity:1"><div class="bsaProItemInner" style="background-color:"><div class="bsaProItemInner__thumb"><div class="bsaProAnimateThumb"><a class="bsaProItem__url" rel="nofollow" href="https://kymnradio.net?bsa_pro_id=192&bsa_pro_url=1" target="_blank"><div class="bsaProItemInner__img" style="background-image: url('https://kymnradio.net/wp-content/uploads/bsa-pro-upload/1753132708-Adobe Express - file.png')"></div></a></div></div></div></div></div></div><script>
(function($){
function bsaProResize() {
var sid = "15";
var object = $(".bsaProContainer-" + sid + " .bsaProItemInner__img");
var animateThumb = $(".bsaProContainer-" + sid + " .bsaProAnimateThumb");
var innerThumb = $(".bsaProContainer-" + sid + " .bsaProItemInner__thumb");
var parentWidth = "800";
var parentHeight = "300";
var objectWidth = object.width();
if ( objectWidth < parentWidth ) {
var scale = objectWidth / parentWidth;
if ( objectWidth > 0 && objectWidth !== 100 && scale > 0 ) {
animateThumb.height(parentHeight * scale);
innerThumb.height(parentHeight * scale);
object.height(parentHeight * scale);
} else {
animateThumb.height(parentHeight);
innerThumb.height(parentHeight);
object.height(parentHeight);
}
} else {
animateThumb.height(parentHeight);
innerThumb.height(parentHeight);
object.height(parentHeight);
}
}
$(document).ready(function(){
bsaProResize();
$(window).resize(function(){
bsaProResize();
});
});
})(jQuery);
</script><style>
.bsaProContainer-15 .bsaProItem {
clear: both;
width: 100% !important;
margin-left: 0 !important;
margin-right: 0 !important;
}
</style> <script>
(function ($) {
var bsaProContainer = $('.bsaProContainer-15');
var number_show_ads = "0";
var number_hide_ads = "0";
if ( number_show_ads > 0 ) {
setTimeout(function () { bsaProContainer.fadeIn(); }, number_show_ads * 1000);
}
if ( number_hide_ads > 0 ) {
setTimeout(function () { bsaProContainer.fadeOut(); }, number_hide_ads * 1000);
}
})(jQuery);
</script>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-cb82c68" data-id="cb82c68" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-c50ff19 elementor-widget__width-initial elementor-widget elementor-widget-shortcode" data-id="c50ff19" data-element_type="widget" data-widget_type="shortcode.default">
<div class="elementor-widget-container">
<div class="elementor-shortcode"><div id="bsa-block-800--300" class="bsaProContainerNew bsaProContainer-9 bsa-block-800--300 bsa-pro-col-1" style="display: block !important"><div class="bsaProItems bsaGridNoGutter " style="background-color:"><div class="bsaProItem bsaReset" data-animation="none" style="opacity:1"><div class="bsaProItemInner" style="background-color:"><div class="bsaProItemInner__thumb"><div class="bsaProAnimateThumb"><a class="bsaProItem__url" rel="nofollow" href="https://kymnradio.net?bsa_pro_id=187&bsa_pro_url=1" target="_blank"><div class="bsaProItemInner__img" style="background-image: url('https://kymnradio.net/wp-content/uploads/bsa-pro-upload/1745354018-Chamber of Commerce NFLD (3).png')"></div></a></div></div></div></div></div></div><script>
(function($){
function bsaProResize() {
var sid = "9";
var object = $(".bsaProContainer-" + sid + " .bsaProItemInner__img");
var animateThumb = $(".bsaProContainer-" + sid + " .bsaProAnimateThumb");
var innerThumb = $(".bsaProContainer-" + sid + " .bsaProItemInner__thumb");
var parentWidth = "800";
var parentHeight = "300";
var objectWidth = object.width();
if ( objectWidth < parentWidth ) {
var scale = objectWidth / parentWidth;
if ( objectWidth > 0 && objectWidth !== 100 && scale > 0 ) {
animateThumb.height(parentHeight * scale);
innerThumb.height(parentHeight * scale);
object.height(parentHeight * scale);
} else {
animateThumb.height(parentHeight);
innerThumb.height(parentHeight);
object.height(parentHeight);
}
} else {
animateThumb.height(parentHeight);
innerThumb.height(parentHeight);
object.height(parentHeight);
}
}
$(document).ready(function(){
bsaProResize();
$(window).resize(function(){
bsaProResize();
});
});
})(jQuery);
</script><style>
.bsaProContainer-9 .bsaProItem {
clear: both;
width: 100% !important;
margin-left: 0 !important;
margin-right: 0 !important;
}
</style> <script>
(function ($) {
var bsaProContainer = $('.bsaProContainer-9');
var number_show_ads = "0";
var number_hide_ads = "0";
if ( number_show_ads > 0 ) {
setTimeout(function () { bsaProContainer.fadeIn(); }, number_show_ads * 1000);
}
if ( number_hide_ads > 0 ) {
setTimeout(function () { bsaProContainer.fadeOut(); }, number_hide_ads * 1000);
}
})(jQuery);
</script>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-b6b9d75 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="b6b9d75" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-a190869" data-id="a190869" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-5f244e3 elementor-widget elementor-widget-heading" data-id="5f244e3" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Local News</h2> </div>
</div>
<div class="elementor-element elementor-element-aaf771a elementor-grid-2 elementor-posts--thumbnail-none elementor-widget__width-initial elementor-grid-tablet-2 elementor-grid-mobile-1 elementor-widget elementor-widget-posts" data-id="aaf771a" data-element_type="widget" data-settings="{"classic_columns":"2","pagination_type":"prev_next","classic_columns_tablet":"2","classic_columns_mobile":"1","classic_row_gap":{"unit":"px","size":35,"sizes":[]},"classic_row_gap_tablet":{"unit":"px","size":"","sizes":[]},"classic_row_gap_mobile":{"unit":"px","size":"","sizes":[]}}" data-widget_type="posts.classic">
<div class="elementor-widget-container">
<div class="elementor-posts-container elementor-posts elementor-posts--skin-classic elementor-grid" role="list">
<article class="elementor-post elementor-grid-item post-127384 post type-post status-publish format-standard has-post-thumbnail hentry category-news tag-the-news-quiz" role="listitem">
<div class="elementor-post__text">
<h3 class="elementor-post__title">
<a href="https://kymnradio.net/2025/08/01/the-kymn-news-quiz-for-july-2025/" >
The KYMN News Quiz for July 2025 </a>
</h3>
<div class="elementor-post__meta-data">
<span class="elementor-post-date">
August 1, 2025 </span>
</div>
<div class="elementor-post__excerpt">
<p>Instead of the regular newscast and articles today, we’re taking a minute to look back and summarize the news from this past month. You can</p>
</div>
<a class="elementor-post__read-more" href="https://kymnradio.net/2025/08/01/the-kymn-news-quiz-for-july-2025/" aria-label="Read more about The KYMN News Quiz for July 2025" tabindex="-1" >
Read More » </a>
</div>
</article>
<article class="elementor-post elementor-grid-item post-127378 post type-post status-publish format-standard has-post-thumbnail hentry category-community-events-organizations category-news" role="listitem">
<div class="elementor-post__text">
<h3 class="elementor-post__title">
<a href="https://kymnradio.net/2025/07/31/vintage-band-festival-takes-place-saturday-with-11-different-performances/" >
Vintage Band Festival Takes Place Saturday with 11 Different Performances </a>
</h3>
<div class="elementor-post__meta-data">
<span class="elementor-post-date">
July 31, 2025 </span>
</div>
<div class="elementor-post__excerpt">
<p>By Logan Wells, News Director | Logan@kymnradio.net The Vintage Band Festival takes place on Saturday. In its 19th year, the festival this year includes 11</p>
</div>
<a class="elementor-post__read-more" href="https://kymnradio.net/2025/07/31/vintage-band-festival-takes-place-saturday-with-11-different-performances/" aria-label="Read more about Vintage Band Festival Takes Place Saturday with 11 Different Performances" tabindex="-1" >
Read More » </a>
</div>
</article>
<article class="elementor-post elementor-grid-item post-127375 post type-post status-publish format-standard has-post-thumbnail hentry category-news category-public-safety" role="listitem">
<div class="elementor-post__text">
<h3 class="elementor-post__title">
<a href="https://kymnradio.net/2025/07/31/907-crashes-on-northfield-roads-in-the-last-10-years-focus-on-safety-in-future-designs/" >
907 Crashes on Northfield Roads in the Last 10 Years; Focus on Safety in Future Designs </a>
</h3>
<div class="elementor-post__meta-data">
<span class="elementor-post-date">
July 31, 2025 </span>
</div>
<div class="elementor-post__excerpt">
<p>By Logan Wells, News Director | Logan@kymnradio.net In the last 10 years in Northfield, there have been 907 crashes, 28 of which were serious or</p>
</div>
<a class="elementor-post__read-more" href="https://kymnradio.net/2025/07/31/907-crashes-on-northfield-roads-in-the-last-10-years-focus-on-safety-in-future-designs/" aria-label="Read more about 907 Crashes on Northfield Roads in the Last 10 Years; Focus on Safety in Future Designs " tabindex="-1" >
Read More » </a>
</div>
</article>
<article class="elementor-post elementor-grid-item post-127395 post type-post status-publish format-standard has-post-thumbnail hentry category-news category-public-safety" role="listitem">
<div class="elementor-post__text">
<h3 class="elementor-post__title">
<a href="https://kymnradio.net/2025/07/30/guest-column-that-what-when-and-why-of-outdoor-warning-sirens/" >
GUEST COLUMN: The what, when and why of outdoor warning sirens </a>
</h3>
<div class="elementor-post__meta-data">
<span class="elementor-post-date">
July 30, 2025 </span>
</div>
<div class="elementor-post__excerpt">
<p>By Dusty Dienst, Joe Johnson, & Jeff Schroepfer Let’s take a moment to chat about outdoor warning sirens. Notice we didn’t call them tornado sirens?</p>
</div>
<a class="elementor-post__read-more" href="https://kymnradio.net/2025/07/30/guest-column-that-what-when-and-why-of-outdoor-warning-sirens/" aria-label="Read more about GUEST COLUMN: The what, when and why of outdoor warning sirens" tabindex="-1" >
Read More » </a>
</div>
</article>
<article class="elementor-post elementor-grid-item post-127360 post type-post status-publish format-standard has-post-thumbnail hentry category-news category-public-safety" role="listitem">
<div class="elementor-post__text">
<h3 class="elementor-post__title">
<a href="https://kymnradio.net/2025/07/30/northfield-fire-department-colleges-work-together-to-improve-safety-and-operations/" >
Northfield Fire Department & Colleges Work Together to Improve Safety and Operations </a>
</h3>
<div class="elementor-post__meta-data">
<span class="elementor-post-date">
July 30, 2025 </span>
</div>
<div class="elementor-post__excerpt">
<p>By Logan Wells, News Director | Logan@kymnradio.net Northfield Area Fire Chief Tom Nelson recently presented a report on the department’s budget, and one focus area</p>
</div>
<a class="elementor-post__read-more" href="https://kymnradio.net/2025/07/30/northfield-fire-department-colleges-work-together-to-improve-safety-and-operations/" aria-label="Read more about Northfield Fire Department & Colleges Work Together to Improve Safety and Operations " tabindex="-1" >
Read More » </a>
</div>
</article>
<article class="elementor-post elementor-grid-item post-127352 post type-post status-publish format-standard has-post-thumbnail hentry category-community-events-organizations category-news" role="listitem">
<div class="elementor-post__text">
<h3 class="elementor-post__title">
<a href="https://kymnradio.net/2025/07/30/united-ways-pickle-paddle-raises-over-8000-for-partner-agencies/" >
United Way’s Pickle Paddle Raises Over $8000 for Partner Agencies! </a>
</h3>
<div class="elementor-post__meta-data">
<span class="elementor-post-date">
July 30, 2025 </span>
</div>
<div class="elementor-post__excerpt">
<p>By Logan Wells, News Director | Logan@kymnradio.net On July 12, Rice County Area United Way hosted their first-ever Pickle Paddle, dedicated to raising funds for</p>
</div>
<a class="elementor-post__read-more" href="https://kymnradio.net/2025/07/30/united-ways-pickle-paddle-raises-over-8000-for-partner-agencies/" aria-label="Read more about United Way’s Pickle Paddle Raises Over $8000 for Partner Agencies!" tabindex="-1" >
Read More » </a>
</div>
</article>
<article class="elementor-post elementor-grid-item post-127342 post type-post status-publish format-standard has-post-thumbnail hentry category-news category-public-safety" role="listitem">
<div class="elementor-post__text">
<h3 class="elementor-post__title">
<a href="https://kymnradio.net/2025/07/30/completion-of-the-second-street-project-gets-northfield-one-step-closer-to-a-train-quiet-zone/" >
Completion of the Second Street Project Gets Northfield One Step Closer To A Train Quiet Zone </a>
</h3>
<div class="elementor-post__meta-data">
<span class="elementor-post-date">
July 30, 2025 </span>
</div>
<div class="elementor-post__excerpt">
<p>By Logan Wells, News Director | Logan@kymnradio.net Earlier this year, Second Street at the rail crossing in Northfield closed for a few weeks for the</p>
</div>
<a class="elementor-post__read-more" href="https://kymnradio.net/2025/07/30/completion-of-the-second-street-project-gets-northfield-one-step-closer-to-a-train-quiet-zone/" aria-label="Read more about Completion of the Second Street Project Gets Northfield One Step Closer To A Train Quiet Zone" tabindex="-1" >
Read More » </a>
</div>
</article>
<article class="elementor-post elementor-grid-item post-127330 post type-post status-publish format-standard has-post-thumbnail hentry category-city-government-northfield category-news" role="listitem">
<div class="elementor-post__text">
<h3 class="elementor-post__title">
<a href="https://kymnradio.net/2025/07/29/community-town-hall-meeting-tonight-at-northfield-high-school-topics-include-street-bike-and-pedestrian-projects-for-the-next-5-years/" >
Community Town Hall Meeting Tonight at Northfield High School; Topics include Street, Bike, and Pedestrian Projects for the Next 5 Years </a>
</h3>
<div class="elementor-post__meta-data">
<span class="elementor-post-date">
July 29, 2025 </span>
</div>
<div class="elementor-post__excerpt">
<p>By Logan Wells, News Director | Logan@kymnradio.net The Northfield City Council has tonight off, but city staff will be busy hosting a community-wide town hall</p>
</div>
<a class="elementor-post__read-more" href="https://kymnradio.net/2025/07/29/community-town-hall-meeting-tonight-at-northfield-high-school-topics-include-street-bike-and-pedestrian-projects-for-the-next-5-years/" aria-label="Read more about Community Town Hall Meeting Tonight at Northfield High School; Topics include Street, Bike, and Pedestrian Projects for the Next 5 Years " tabindex="-1" >
Read More » </a>
</div>
</article>
<article class="elementor-post elementor-grid-item post-127328 post type-post status-publish format-standard has-post-thumbnail hentry category-city-government-northfield category-news" role="listitem">
<div class="elementor-post__text">
<h3 class="elementor-post__title">
<a href="https://kymnradio.net/2025/07/29/northfield-public-library-holding-two-open-houses-for-community-input-on-vision-planning-efforts-first-meeting-this-thursday/" >
Northfield Public Library holding two open houses for community input on vision planning efforts; First Meeting This Thursday </a>
</h3>
<div class="elementor-post__meta-data">
<span class="elementor-post-date">
July 29, 2025 </span>
</div>
<div class="elementor-post__excerpt">
<p>By Logan Wells, News Director | Logan@kymnradio.net The Northfield Public Library is seeking the community’s input at two open house meetings being held in the</p>
</div>
<a class="elementor-post__read-more" href="https://kymnradio.net/2025/07/29/northfield-public-library-holding-two-open-houses-for-community-input-on-vision-planning-efforts-first-meeting-this-thursday/" aria-label="Read more about Northfield Public Library holding two open houses for community input on vision planning efforts; First Meeting This Thursday " tabindex="-1" >
Read More » </a>
</div>
</article>
<article class="elementor-post elementor-grid-item post-127325 post type-post status-publish format-standard has-post-thumbnail hentry category-city-government-northfield category-news" role="listitem">
<div class="elementor-post__text">
<h3 class="elementor-post__title">
<a href="https://kymnradio.net/2025/07/29/northfield-sees-better-than-expected-result-in-bond-sale-the-new-debt-set-to-cover-the-costs-of-road-construction-and-the-fire-department-equipment/" >
Northfield Sees Better Than Expected Result In Bond Sale; The New Debt Set To Cover the Costs of Road Construction and the Fire Department Equipment </a>
</h3>
<div class="elementor-post__meta-data">
<span class="elementor-post-date">
July 29, 2025 </span>
</div>
<div class="elementor-post__excerpt">
<p>By Logan Wells, News Director | Logan@kymnradio.net Last Tuesday, the Northfield City Council heard the result of the bond sale held earlier in the day.</p>
</div>
<a class="elementor-post__read-more" href="https://kymnradio.net/2025/07/29/northfield-sees-better-than-expected-result-in-bond-sale-the-new-debt-set-to-cover-the-costs-of-road-construction-and-the-fire-department-equipment/" aria-label="Read more about Northfield Sees Better Than Expected Result In Bond Sale; The New Debt Set To Cover the Costs of Road Construction and the Fire Department Equipment " tabindex="-1" >
Read More » </a>
</div>
</article>
<article class="elementor-post elementor-grid-item post-127293 post type-post status-publish format-standard has-post-thumbnail hentry category-education-schools category-news" role="listitem">
<div class="elementor-post__text">
<h3 class="elementor-post__title">
<a href="https://kymnradio.net/2025/07/28/northfield-high-school-renovation-design-improves-traffic-flow-separates-buses-car-traffic/" >
Northfield High School Renovation Design Improves Traffic Flow; Separates Buses & Car Traffic </a>
</h3>
<div class="elementor-post__meta-data">
<span class="elementor-post-date">
July 28, 2025 </span>
</div>
<div class="elementor-post__excerpt">
<p>By Logan Wells, News Director | Logan@kymnradio.net While the summer may mean that students are out and school buildings are quiet, the design team for</p>
</div>
<a class="elementor-post__read-more" href="https://kymnradio.net/2025/07/28/northfield-high-school-renovation-design-improves-traffic-flow-separates-buses-car-traffic/" aria-label="Read more about Northfield High School Renovation Design Improves Traffic Flow; Separates Buses & Car Traffic" tabindex="-1" >
Read More » </a>
</div>
</article>
<article class="elementor-post elementor-grid-item post-127283 post type-post status-publish format-standard has-post-thumbnail hentry category-city-government-northfield category-news" role="listitem">
<div class="elementor-post__text">
<h3 class="elementor-post__title">
<a href="https://kymnradio.net/2025/07/28/northfields-archery-range-set-to-move-from-near-the-water-tower-to-meadows-park/" >
Northfield’s Archery Range Set To Move From near the Water Tower to Meadows Park </a>
</h3>
<div class="elementor-post__meta-data">
<span class="elementor-post-date">
July 28, 2025 </span>
</div>
<div class="elementor-post__excerpt">
<p>By Logan Wells, News Director | Logan@kymnradio.net The Northfield Archery Range is set to move from its current location near the Water Tower off of</p>
</div>
<a class="elementor-post__read-more" href="https://kymnradio.net/2025/07/28/northfields-archery-range-set-to-move-from-near-the-water-tower-to-meadows-park/" aria-label="Read more about Northfield’s Archery Range Set To Move From near the Water Tower to Meadows Park" tabindex="-1" >
Read More » </a>
</div>
</article>
<article class="elementor-post elementor-grid-item post-127279 post type-post status-publish format-standard has-post-thumbnail hentry category-news" role="listitem">
<div class="elementor-post__text">
<h3 class="elementor-post__title">
<a href="https://kymnradio.net/2025/07/25/photo-gallery-model-t-festival-july-djjd-bank-raid-reenactment-2025/" >
PHOTO GALLERY: Model T Festival & July DJJD Bank Raid Reenactment 2025 </a>
</h3>
<div class="elementor-post__meta-data">
<span class="elementor-post-date">
July 25, 2025 </span>
</div>
<div class="elementor-post__excerpt">
<p>On Tuesday, this week, two special events took Northfield back in time. Over 200 Ford Model Ts rolled into town for the 68th Annual Tour</p>
</div>
<a class="elementor-post__read-more" href="https://kymnradio.net/2025/07/25/photo-gallery-model-t-festival-july-djjd-bank-raid-reenactment-2025/" aria-label="Read more about PHOTO GALLERY: Model T Festival & July DJJD Bank Raid Reenactment 2025" tabindex="-1" >
Read More » </a>
</div>
</article>
<article class="elementor-post elementor-grid-item post-127269 post type-post status-publish format-standard has-post-thumbnail hentry category-community-events-organizations category-news" role="listitem">
<div class="elementor-post__text">
<h3 class="elementor-post__title">
<a href="https://kymnradio.net/2025/07/25/community-action-center-struggles-with-funding-as-needs-grow/" >
Community Action Center Struggles with Funding As Needs Grow </a>
</h3>
<div class="elementor-post__meta-data">
<span class="elementor-post-date">
July 25, 2025 </span>
</div>
<div class="elementor-post__excerpt">
<p>By Maya Betti, News Intern In Northfield, one in four residents now turns to the Community Action Center (CAC) for help, whether for food, housing</p>
</div>
<a class="elementor-post__read-more" href="https://kymnradio.net/2025/07/25/community-action-center-struggles-with-funding-as-needs-grow/" aria-label="Read more about Community Action Center Struggles with Funding As Needs Grow " tabindex="-1" >
Read More » </a>
</div>
</article>
<article class="elementor-post elementor-grid-item post-127262 post type-post status-publish format-standard has-post-thumbnail hentry category-community-events-organizations category-news" role="listitem">
<div class="elementor-post__text">
<h3 class="elementor-post__title">
<a href="https://kymnradio.net/2025/07/25/picnic-in-the-park-with-local-first-responders-monday-evening-at-spring-creek-park/" >
Picnic in the Park with local first responders, Monday Evening at Spring Creek Park </a>
</h3>
<div class="elementor-post__meta-data">
<span class="elementor-post-date">
July 25, 2025 </span>
</div>
<div class="elementor-post__excerpt">
<p>By Logan Wells, News Director | Logan@kymnradio.net Northfield first responders are hosting a special event on Monday evening, Picnic in the Park. Taking place at</p>
</div>
<a class="elementor-post__read-more" href="https://kymnradio.net/2025/07/25/picnic-in-the-park-with-local-first-responders-monday-evening-at-spring-creek-park/" aria-label="Read more about Picnic in the Park with local first responders, Monday Evening at Spring Creek Park" tabindex="-1" >
Read More » </a>
</div>
</article>
<article class="elementor-post elementor-grid-item post-127266 post type-post status-publish format-standard has-post-thumbnail hentry category-community-events-organizations category-news" role="listitem">
<div class="elementor-post__text">
<h3 class="elementor-post__title">
<a href="https://kymnradio.net/2025/07/25/hunt-for-the-radish-offers-kids-a-fun-experience-at-the-riverwalk-market-fair/" >
Hunt for the Radish offers Kids a fun Experience at the Riverwalk Market Fair </a>
</h3>
<div class="elementor-post__meta-data">
<span class="elementor-post-date">
July 25, 2025 </span>
</div>
<div class="elementor-post__excerpt">
<p>By Logan Wells, News Director | Logan@kymnradio.net With the Riverwalk Market Fair returning tomorrow, we are once again sharing one of the exciting programs they</p>
</div>
<a class="elementor-post__read-more" href="https://kymnradio.net/2025/07/25/hunt-for-the-radish-offers-kids-a-fun-experience-at-the-riverwalk-market-fair/" aria-label="Read more about Hunt for the Radish offers Kids a fun Experience at the Riverwalk Market Fair" tabindex="-1" >
Read More » </a>
</div>
</article>
<article class="elementor-post elementor-grid-item post-127250 post type-post status-publish format-standard has-post-thumbnail hentry category-business-economy category-news" role="listitem">
<div class="elementor-post__text">
<h3 class="elementor-post__title">
<a href="https://kymnradio.net/2025/07/24/its-crazy-days-today-heres-all-the-information-you-need-to-know/" >
It’s Crazy Days Today! Here’s all the information you need to know </a>
</h3>
<div class="elementor-post__meta-data">
<span class="elementor-post-date">
July 24, 2025 </span>
</div>
<div class="elementor-post__excerpt">
<p>By Logan Wells, News Director | Logan@kymnradio.net Today is Crazy Days, the annual Northfield tradition, part celebration and part community-wide event for business sales. Running</p>
</div>
<a class="elementor-post__read-more" href="https://kymnradio.net/2025/07/24/its-crazy-days-today-heres-all-the-information-you-need-to-know/" aria-label="Read more about It’s Crazy Days Today! Here’s all the information you need to know" tabindex="-1" >
Read More » </a>
</div>
</article>
<article class="elementor-post elementor-grid-item post-127252 post type-post status-publish format-standard has-post-thumbnail hentry category-education-schools category-news" role="listitem">
<div class="elementor-post__text">
<h3 class="elementor-post__title">
<a href="https://kymnradio.net/2025/07/24/federal-funding-and-the-northfield-public-schools/" >
Federal Funding and the Northfield Public Schools </a>
</h3>
<div class="elementor-post__meta-data">
<span class="elementor-post-date">
July 24, 2025 </span>
</div>
<div class="elementor-post__excerpt">
<p>By Logan Wells, News Director | Logan@kymnradio.net With many questions raised this past spring about the Northfield Public Schools’ budget reductions and recent conversations by</p>
</div>
<a class="elementor-post__read-more" href="https://kymnradio.net/2025/07/24/federal-funding-and-the-northfield-public-schools/" aria-label="Read more about Federal Funding and the Northfield Public Schools" tabindex="-1" >
Read More » </a>
</div>
</article>
</div>
<div class="e-load-more-anchor" data-page="1" data-max-page="212" data-next-page="https://kymnradio.net/page/2/"></div>
<nav class="elementor-pagination" aria-label="Pagination">
<span class="page-numbers prev">« Previous</span>
<a class="page-numbers next" href="https://kymnradio.net/page/2/">Next »</a> </nav>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-9884cc2" data-id="9884cc2" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-74a73dc elementor-widget elementor-widget-heading" data-id="74a73dc" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Recent Programs</h2> </div>
</div>
<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-inner-section elementor-element elementor-element-a53f98f elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="a53f98f" data-element_type="section">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-db70be7" data-id="db70be7" data-element_type="column" data-settings="{"background_background":"classic"}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-dd2b0b1 elementor-widget elementor-widget-text-editor" data-id="dd2b0b1" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<strong>The Morning Show</strong> </div>
</div>
<div class="elementor-element elementor-element-a1a7a8e elementor-posts--thumbnail-none elementor-grid-1 elementor-posts__hover-none elementor-grid-tablet-2 elementor-grid-mobile-1 elementor-card-shadow-yes elementor-widget elementor-widget-posts" data-id="a1a7a8e" data-element_type="widget" data-settings="{"cards_columns":"1","cards_row_gap":{"unit":"px","size":0,"sizes":[]},"cards_columns_tablet":"2","cards_columns_mobile":"1","cards_row_gap_tablet":{"unit":"px","size":"","sizes":[]},"cards_row_gap_mobile":{"unit":"px","size":"","sizes":[]}}" data-widget_type="posts.cards">
<div class="elementor-widget-container">
<div class="elementor-posts-container elementor-posts elementor-posts--skin-cards elementor-grid" role="list">
<article class="elementor-post elementor-grid-item post-127435 post type-post status-publish format-standard has-post-thumbnail hentry category-morning-show" role="listitem">
<div class="elementor-post__card">
<div class="elementor-post__text">
<h2 class="elementor-post__title">
<a href="https://kymnradio.net/2025/08/01/natalie-draper-of-northfield-public-library-8-1-25/" >
Natalie Draper of Northfield Public Library, 8-1-25 </a>
</h2>
</div>
</div>
</article>
<article class="elementor-post elementor-grid-item post-127424 post type-post status-publish format-standard has-post-thumbnail hentry category-morning-show" role="listitem">
<div class="elementor-post__card">
<div class="elementor-post__text">
<h2 class="elementor-post__title">
<a href="https://kymnradio.net/2025/07/31/ray-coudret-rob-ryden-on-upcoming-northfield-porchfest-7-31-25/" >
Ray Coudret & Rob Ryden on upcoming Northfield Porchfest, 7-31-25 </a>
</h2>
</div>
</div>
</article>
<article class="elementor-post elementor-grid-item post-127390 post type-post status-publish format-standard has-post-thumbnail hentry category-morning-show" role="listitem">
<div class="elementor-post__card">
<div class="elementor-post__text">
<h2 class="elementor-post__title">
<a href="https://kymnradio.net/2025/07/30/mayor-erica-zweifel-and-jack-butler-discuss-greencorps-7-30-25/" >
Mayor Erica Zweifel and Jack Butler discuss GreenCorps, 7-30-25 </a>
</h2>
</div>
</div>
</article>
<article class="elementor-post elementor-grid-item post-127387 post type-post status-publish format-standard has-post-thumbnail hentry category-morning-show" role="listitem">
<div class="elementor-post__card">
<div class="elementor-post__text">
<h2 class="elementor-post__title">
<a href="https://kymnradio.net/2025/07/30/anika-rychner-anjelica-linder-discuss-runway-revival-2025-7-30-25/" >
Anika Rychner & Anjelica Linder discuss Runway Revival 2025, 7-30-25 </a>
</h2>
</div>
</div>
</article>
<article class="elementor-post elementor-grid-item post-127371 post type-post status-publish format-standard has-post-thumbnail hentry category-morning-show" role="listitem">
<div class="elementor-post__card">
<div class="elementor-post__text">
<h2 class="elementor-post__title">
<a href="https://kymnradio.net/2025/07/29/rice-county-historical-society-executive-director-dave-nichols-7-29-25/" >
Rice County Historical Society Executive Director Dave Nichols, 7-29-25 </a>
</h2>
</div>
</div>
</article>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-inner-section elementor-element elementor-element-6c58c90 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="6c58c90" data-element_type="section">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-fe8ba43" data-id="fe8ba43" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-1f64811 elementor-widget elementor-widget-text-editor" data-id="1f64811" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p><strong>Specials</strong></p> </div>
</div>
<div class="elementor-element elementor-element-8c6eead elementor-posts--thumbnail-none elementor-grid-1 elementor-posts__hover-none elementor-grid-tablet-2 elementor-grid-mobile-1 elementor-card-shadow-yes elementor-widget elementor-widget-posts" data-id="8c6eead" data-element_type="widget" data-settings="{"cards_columns":"1","cards_row_gap":{"unit":"px","size":0,"sizes":[]},"cards_columns_tablet":"2","cards_columns_mobile":"1","cards_row_gap_tablet":{"unit":"px","size":"","sizes":[]},"cards_row_gap_mobile":{"unit":"px","size":"","sizes":[]}}" data-widget_type="posts.cards">
<div class="elementor-widget-container">
<div class="elementor-posts-container elementor-posts elementor-posts--skin-cards elementor-grid" role="list">
<article class="elementor-post elementor-grid-item post-127084 post type-post status-publish format-standard has-post-thumbnail hentry category-specials tag-something-i-have-always-wondered-about" role="listitem">
<div class="elementor-post__card">
<div class="elementor-post__text">
<h2 class="elementor-post__title">
<a href="https://kymnradio.net/2025/07/16/the-friends-of-downtown-northfield-something-i-have-always-wondered-about/" >
The Friends of Downtown Northfield – Something I Have Always Wondered About </a>
</h2>
</div>
</div>
</article>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-inner-section elementor-element elementor-element-5f863f4 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="5f863f4" data-element_type="section">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-aefcb3c" data-id="aefcb3c" data-element_type="column" data-settings="{"background_background":"classic"}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-560c294 elementor-widget elementor-widget-text-editor" data-id="560c294" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p><strong>The Northfield Lunch Hour</strong></p> </div>
</div>
<div class="elementor-element elementor-element-d58b625 elementor-posts--thumbnail-none elementor-grid-1 elementor-posts__hover-none elementor-grid-tablet-2 elementor-grid-mobile-1 elementor-card-shadow-yes elementor-widget elementor-widget-posts" data-id="d58b625" data-element_type="widget" data-settings="{"cards_columns":"1","cards_row_gap":{"unit":"px","size":0,"sizes":[]},"cards_columns_tablet":"2","cards_columns_mobile":"1","cards_row_gap_tablet":{"unit":"px","size":"","sizes":[]},"cards_row_gap_mobile":{"unit":"px","size":"","sizes":[]}}" data-widget_type="posts.cards">
<div class="elementor-widget-container">
<div class="elementor-posts-container elementor-posts elementor-posts--skin-cards elementor-grid" role="list">
<article class="elementor-post elementor-grid-item post-121405 post type-post status-publish format-standard has-post-thumbnail hentry category-northfield-lunch-hour tag-carrie-carroll tag-kati-sletten tag-northfield-lunch-hour tag-northfield-shares tag-northfield-shares-a-lunch-hour" role="listitem">
<div class="elementor-post__card">
<div class="elementor-post__text">
<h2 class="elementor-post__title">
<a href="https://kymnradio.net/2024/11/08/northfield-shares-a-lunch-hour-11-8-24/" >
Northfield Shares A Lunch Hour 11/8/24 </a>
</h2>
</div>
</div>
</article>
<article class="elementor-post elementor-grid-item post-121366 post type-post status-publish format-standard has-post-thumbnail hentry category-northfield-lunch-hour tag-donovan-prescott tag-gaf tag-megan-kreegar tag-millersberg-construction tag-solar-shingles tag-the-northfield-lunch-hour" role="listitem">
<div class="elementor-post__card">
<div class="elementor-post__text">
<h2 class="elementor-post__title">
<a href="https://kymnradio.net/2024/11/01/the-northfield-lunch-hour-sponsored-by-millersberg-construction-11-1-24/" >
The Northfield Lunch Hour sponsored by Millersberg Construction 11/1/24 </a>
</h2>
</div>
</div>
</article>
<article class="elementor-post elementor-grid-item post-121158 post type-post status-publish format-standard has-post-thumbnail hentry category-northfield-lunch-hour tag-the-northfield-lunch-hour tag-the-police tag-us-army tag-us-army-lakeville-recruiting-station" role="listitem">
<div class="elementor-post__card">
<div class="elementor-post__text">
<h2 class="elementor-post__title">
<a href="https://kymnradio.net/2024/10/25/the-northfield-lunch-hour-sponsored-by-the-recruiters-of-the-united-states-army/" >
The Northfield Lunch Hour Sponsored by the recruiters of the United States Army 10/25/24 </a>
</h2>
</div>
</div>
</article>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-inner-section elementor-element elementor-element-f13711e elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="f13711e" data-element_type="section">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-e7f1fc4" data-id="e7f1fc4" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-f79b796 elementor-widget elementor-widget-text-editor" data-id="f79b796" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p><strong>Raider Wrap</strong></p> </div>
</div>
<div class="elementor-element elementor-element-012dc01 elementor-posts--thumbnail-none elementor-grid-1 elementor-posts__hover-none elementor-grid-tablet-2 elementor-grid-mobile-1 elementor-card-shadow-yes elementor-widget elementor-widget-posts" data-id="012dc01" data-element_type="widget" data-settings="{"cards_columns":"1","cards_row_gap":{"unit":"px","size":0,"sizes":[]},"cards_columns_tablet":"2","cards_columns_mobile":"1","cards_row_gap_tablet":{"unit":"px","size":"","sizes":[]},"cards_row_gap_mobile":{"unit":"px","size":"","sizes":[]}}" data-widget_type="posts.cards">
<div class="elementor-widget-container">
<div class="elementor-posts-container elementor-posts elementor-posts--skin-cards elementor-grid" role="list">
<article class="elementor-post elementor-grid-item post-126228 post type-post status-publish format-standard has-post-thumbnail hentry category-raider-wrap" role="listitem">
<div class="elementor-post__card">
<div class="elementor-post__text">
<h2 class="elementor-post__title">
<a href="https://kymnradio.net/2025/06/14/the-raider-wrap-6-14-25/" >
The Raider Wrap 6-14-25 </a>
</h2>
</div>
</div>
</article>
<article class="elementor-post elementor-grid-item post-126026 post type-post status-publish format-standard hentry category-raider-wrap category-sports tag-northfield-3 tag-raiders-2 tag-sports-2 tag-track" role="listitem">
<div class="elementor-post__card">
<div class="elementor-post__text">
<h2 class="elementor-post__title">
<a href="https://kymnradio.net/2025/06/07/the-raider-wrap-6-7-25/" >
The Raider Wrap 6-7-25 </a>
</h2>
</div>
</div>
</article>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-inner-section elementor-element elementor-element-5ae269e elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="5ae269e" data-element_type="section">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-2cabe67" data-id="2cabe67" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-48d96e7 elementor-widget elementor-widget-text-editor" data-id="48d96e7" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<strong>The Weekly List</strong> </div>
</div>
<div class="elementor-element elementor-element-27e5408 elementor-posts--thumbnail-none elementor-grid-1 elementor-posts__hover-none elementor-grid-tablet-2 elementor-grid-mobile-1 elementor-card-shadow-yes elementor-widget elementor-widget-posts" data-id="27e5408" data-element_type="widget" data-settings="{"cards_columns":"1","cards_row_gap":{"unit":"px","size":0,"sizes":[]},"cards_columns_tablet":"2","cards_columns_mobile":"1","cards_row_gap_tablet":{"unit":"px","size":"","sizes":[]},"cards_row_gap_mobile":{"unit":"px","size":"","sizes":[]}}" data-widget_type="posts.cards">
<div class="elementor-widget-container">
<div class="elementor-posts-container elementor-posts elementor-posts--skin-cards elementor-grid" role="list">
<article class="elementor-post elementor-grid-item post-127406 post type-post status-publish format-standard has-post-thumbnail hentry category-the-weekly-list tag-daniel-g-moir tag-ozzy-osbourne tag-rich-larson tag-the-weekly-list" role="listitem">
<div class="elementor-post__card">
<div class="elementor-post__text">
<h2 class="elementor-post__title">
<a href="https://kymnradio.net/2025/07/31/the-weekly-list-the-ozzy-osbourne-show-7-31-25/" >
The Weekly List – The Ozzy Osbourne Show 7-31-25 </a>
</h2>
</div>
</div>
</article>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-inner-section elementor-element elementor-element-107dcc3 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="107dcc3" data-element_type="section">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-5b0718a" data-id="5b0718a" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-ee13d54 elementor-widget elementor-widget-text-editor" data-id="ee13d54" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<strong>Fine Tune</strong> </div>
</div>
<div class="elementor-element elementor-element-6370d9a elementor-posts--thumbnail-none elementor-grid-1 elementor-posts__hover-none elementor-grid-tablet-2 elementor-grid-mobile-1 elementor-card-shadow-yes elementor-widget elementor-widget-posts" data-id="6370d9a" data-element_type="widget" data-settings="{"cards_columns":"1","cards_row_gap":{"unit":"px","size":0,"sizes":[]},"cards_columns_tablet":"2","cards_columns_mobile":"1","cards_row_gap_tablet":{"unit":"px","size":"","sizes":[]},"cards_row_gap_mobile":{"unit":"px","size":"","sizes":[]}}" data-widget_type="posts.cards">
<div class="elementor-widget-container">
<div class="elementor-posts-container elementor-posts elementor-posts--skin-cards elementor-grid" role="list">
<article class="elementor-post elementor-grid-item post-123412 post type-post status-publish format-standard hentry category-fine-tune" role="listitem">
<div class="elementor-post__card">
<div class="elementor-post__text">
<h2 class="elementor-post__title">
<a href="https://kymnradio.net/2025/02/07/fine-tune-02-2-2025-all-gone/" >
Fine Tune 02-2-2025, All Gone </a>
</h2>
</div>
</div>
</article>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-inner-section elementor-element elementor-element-ef9d1df elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="ef9d1df" data-element_type="section">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-faaa1a3" data-id="faaa1a3" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-69eb74f elementor-widget elementor-widget-text-editor" data-id="69eb74f" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p><strong>Out In The Open</strong></p> </div>
</div>
<div class="elementor-element elementor-element-8cafc9b elementor-posts--thumbnail-none elementor-grid-1 elementor-posts__hover-none elementor-grid-tablet-2 elementor-grid-mobile-1 elementor-card-shadow-yes elementor-widget elementor-widget-posts" data-id="8cafc9b" data-element_type="widget" data-settings="{"cards_columns":"1","cards_row_gap":{"unit":"px","size":0,"sizes":[]},"cards_columns_tablet":"2","cards_columns_mobile":"1","cards_row_gap_tablet":{"unit":"px","size":"","sizes":[]},"cards_row_gap_mobile":{"unit":"px","size":"","sizes":[]}}" data-widget_type="posts.cards">
<div class="elementor-widget-container">
<div class="elementor-posts-container elementor-posts elementor-posts--skin-cards elementor-grid" role="list">
<article class="elementor-post elementor-grid-item post-126968 post type-post status-publish format-standard has-post-thumbnail hentry category-out-in-the-open tag-chosen-family tag-mr-moxie tag-mrs-moxie tag-out-in-the-open-with-the-moxies" role="listitem">
<div class="elementor-post__card">
<div class="elementor-post__text">
<h2 class="elementor-post__title">
<a href="https://kymnradio.net/2025/07/07/out-in-the-open-with-the-moxies-we-are-family-pt-3/" >
Out in the Open with The Moxies – We Are Family, pt. 3 </a>
</h2>
</div>
</div>
</article>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-inner-section elementor-element elementor-element-4f5fc31 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="4f5fc31" data-element_type="section">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-49d12bb" data-id="49d12bb" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-8946b11 elementor-widget elementor-widget-text-editor" data-id="8946b11" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<strong>Art Zany</strong> </div>
</div>
<div class="elementor-element elementor-element-b64824e elementor-posts--thumbnail-none elementor-grid-1 elementor-posts__hover-none elementor-grid-tablet-2 elementor-grid-mobile-1 elementor-card-shadow-yes elementor-widget elementor-widget-posts" data-id="b64824e" data-element_type="widget" data-settings="{"cards_columns":"1","cards_row_gap":{"unit":"px","size":0,"sizes":[]},"cards_columns_tablet":"2","cards_columns_mobile":"1","cards_row_gap_tablet":{"unit":"px","size":"","sizes":[]},"cards_row_gap_mobile":{"unit":"px","size":"","sizes":[]}}" data-widget_type="posts.cards">
<div class="elementor-widget-container">
<div class="elementor-posts-container elementor-posts elementor-posts--skin-cards elementor-grid" role="list">
<article class="elementor-post elementor-grid-item post-127438 post type-post status-publish format-standard has-post-thumbnail hentry category-art-zany" role="listitem">
<div class="elementor-post__card">
<div class="elementor-post__text">
<h2 class="elementor-post__title">
<a href="https://kymnradio.net/2025/08/01/artzany-radio-for-the-imagination-mark-daehlin-on-his-freedom-road-heroes-series-8-1-25/" >
ArtZany! Radio for the Imagination! Mark Daehlin on his Freedom Road Heroes series, 8-1-25 </a>
</h2>
</div>
</div>
</article>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-inner-section elementor-element elementor-element-cbc4aac elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="cbc4aac" data-element_type="section">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-21c0995" data-id="21c0995" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-867804d elementor-widget elementor-widget-text-editor" data-id="867804d" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p><strong>Trek Through Time</strong></p> </div>
</div>
<div class="elementor-element elementor-element-790ebf3 elementor-posts--thumbnail-none elementor-grid-1 elementor-posts__hover-none elementor-grid-tablet-2 elementor-grid-mobile-1 elementor-card-shadow-yes elementor-widget elementor-widget-posts" data-id="790ebf3" data-element_type="widget" data-settings="{"cards_columns":"1","cards_row_gap":{"unit":"px","size":0,"sizes":[]},"cards_columns_tablet":"2","cards_columns_mobile":"1","cards_row_gap_tablet":{"unit":"px","size":"","sizes":[]},"cards_row_gap_mobile":{"unit":"px","size":"","sizes":[]}}" data-widget_type="posts.cards">
<div class="elementor-widget-container">
<div class="elementor-posts-container elementor-posts elementor-posts--skin-cards elementor-grid" role="list">
<article class="elementor-post elementor-grid-item post-127203 post type-post status-publish format-standard hentry category-trek-through-time" role="listitem">
<div class="elementor-post__card">
<div class="elementor-post__text">
<h2 class="elementor-post__title">
<a href="https://kymnradio.net/2025/07/21/trek-through-time-with-kosmo-esplan-northfield-vintage-band-festival-7-21-25/" >
Trek Through Time with Kosmo Esplan – Northfield Vintage Band Festival, 7-21-25 </a>
</h2>
</div>
</div>
</article>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-inner-section elementor-element elementor-element-9518cd1 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="9518cd1" data-element_type="section">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-8296ddb" data-id="8296ddb" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-480da2b elementor-widget elementor-widget-text-editor" data-id="480da2b" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p><strong>Barrio Latino</strong></p> </div>
</div>
<div class="elementor-element elementor-element-123d8bb elementor-posts--thumbnail-none elementor-grid-1 elementor-posts__hover-none elementor-grid-tablet-2 elementor-grid-mobile-1 elementor-card-shadow-yes elementor-widget elementor-widget-posts" data-id="123d8bb" data-element_type="widget" data-settings="{"cards_columns":"1","cards_row_gap":{"unit":"px","size":0,"sizes":[]},"cards_columns_tablet":"2","cards_columns_mobile":"1","cards_row_gap_tablet":{"unit":"px","size":"","sizes":[]},"cards_row_gap_mobile":{"unit":"px","size":"","sizes":[]}}" data-widget_type="posts.cards">
<div class="elementor-widget-container">
<div class="elementor-posts-container elementor-posts elementor-posts--skin-cards elementor-grid" role="list">
<article class="elementor-post elementor-grid-item post-127431 post type-post status-publish format-standard hentry category-el-super-barrio-latino tag-barriolatino tag-emprendedores tag-latinosmn tag-mccd tag-radioenespanol tag-radiomn" role="listitem">
<div class="elementor-post__card">
<div class="elementor-post__text">
<h2 class="elementor-post__title">
<a href="https://kymnradio.net/2025/07/31/entrevista-con-luis-mendoza-de-mccd/" >
Entrevista con Luis Mendoza, de MCCD </a>
</h2>
</div>
</div>
</article>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-inner-section elementor-element elementor-element-98a1654 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="98a1654" data-element_type="section">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-cd6b8a6" data-id="cd6b8a6" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-86bf1da elementor-widget elementor-widget-text-editor" data-id="86bf1da" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p><strong>The Naked Artist</strong></p> </div>
</div>
<div class="elementor-element elementor-element-75ade47 elementor-posts--thumbnail-none elementor-grid-1 elementor-posts__hover-none elementor-grid-tablet-2 elementor-grid-mobile-1 elementor-card-shadow-yes elementor-widget elementor-widget-posts" data-id="75ade47" data-element_type="widget" data-settings="{"cards_columns":"1","cards_row_gap":{"unit":"px","size":0,"sizes":[]},"cards_columns_tablet":"2","cards_columns_mobile":"1","cards_row_gap_tablet":{"unit":"px","size":"","sizes":[]},"cards_row_gap_mobile":{"unit":"px","size":"","sizes":[]}}" data-widget_type="posts.cards">
<div class="elementor-widget-container">
<div class="elementor-posts-container elementor-posts elementor-posts--skin-cards elementor-grid" role="list">
<article class="elementor-post elementor-grid-item post-127110 post type-post status-publish format-standard has-post-thumbnail hentry category-the-naked-artist" role="listitem">
<div class="elementor-post__card">
<div class="elementor-post__text">
<h2 class="elementor-post__title">
<a href="https://kymnradio.net/2025/07/15/the-naked-artist-7-14-25-the-mania-of-being-an-artist/" >
The Naked Artist 7/14/25 – The Mania of Being an Artist </a>
</h2>
</div>
</div>
</article>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-inner-section elementor-element elementor-element-6d7ca80 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="6d7ca80" data-element_type="section">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-c42351b" data-id="c42351b" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-c99d68c elementor-widget elementor-widget-text-editor" data-id="c99d68c" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p><strong>Geeking Out</strong></p> </div>
</div>
<div class="elementor-element elementor-element-4a863e8 elementor-posts--thumbnail-none elementor-grid-1 elementor-posts__hover-none elementor-grid-tablet-2 elementor-grid-mobile-1 elementor-card-shadow-yes elementor-widget elementor-widget-posts" data-id="4a863e8" data-element_type="widget" data-settings="{"cards_columns":"1","cards_row_gap":{"unit":"px","size":0,"sizes":[]},"cards_columns_tablet":"2","cards_columns_mobile":"1","cards_row_gap_tablet":{"unit":"px","size":"","sizes":[]},"cards_row_gap_mobile":{"unit":"px","size":"","sizes":[]}}" data-widget_type="posts.cards">
<div class="elementor-widget-container">
<div class="elementor-posts-container elementor-posts elementor-posts--skin-cards elementor-grid" role="list">
<article class="elementor-post elementor-grid-item post-127207 post type-post status-publish format-standard has-post-thumbnail hentry category-geeking-out tag-cyrus-kirby tag-geeking-out tag-mandy-everhart tag-rich-larson tag-summer-break" role="listitem">
<div class="elementor-post__card">
<div class="elementor-post__text">
<h2 class="elementor-post__title">
<a href="https://kymnradio.net/2025/07/21/geeking-out-summer-break-breaks-7-21-25/" >
Geeking Out – Summer Break breaks 7-21-25 </a>
</h2>
</div>
</div>
</article>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-inner-section elementor-element elementor-element-59d7351 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="59d7351" data-element_type="section">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-492861b" data-id="492861b" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-cc05a7b elementor-widget elementor-widget-text-editor" data-id="cc05a7b" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p><strong>Library Love</strong></p> </div>
</div>
<div class="elementor-element elementor-element-468d338 elementor-posts--thumbnail-none elementor-grid-1 elementor-posts__hover-none elementor-grid-tablet-2 elementor-grid-mobile-1 elementor-card-shadow-yes elementor-widget elementor-widget-posts" data-id="468d338" data-element_type="widget" data-settings="{"cards_columns":"1","cards_row_gap":{"unit":"px","size":0,"sizes":[]},"cards_columns_tablet":"2","cards_columns_mobile":"1","cards_row_gap_tablet":{"unit":"px","size":"","sizes":[]},"cards_row_gap_mobile":{"unit":"px","size":"","sizes":[]}}" data-widget_type="posts.cards">
<div class="elementor-widget-container">
<div class="elementor-posts-container elementor-posts elementor-posts--skin-cards elementor-grid" role="list">
<article class="elementor-post elementor-grid-item post-127070 post type-post status-publish format-standard hentry category-library-love" role="listitem">
<div class="elementor-post__card">
<div class="elementor-post__text">
<h2 class="elementor-post__title">
<a href="https://kymnradio.net/2025/07/11/library-love-history-of-books-7-9-25/" >
Library Love – History of Books 7/9/25 </a>
</h2>
</div>
</div>
</article>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-inner-section elementor-element elementor-element-ca45c4c elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="ca45c4c" data-element_type="section">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-2881487" data-id="2881487" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-e9cd621 elementor-widget elementor-widget-text-editor" data-id="e9cd621" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p><strong>Spill the Beans</strong></p> </div>
</div>
<div class="elementor-element elementor-element-0c70e19 elementor-posts--thumbnail-none elementor-grid-1 elementor-posts__hover-none elementor-grid-tablet-2 elementor-grid-mobile-1 elementor-card-shadow-yes elementor-widget elementor-widget-posts" data-id="0c70e19" data-element_type="widget" data-settings="{"cards_columns":"1","cards_row_gap":{"unit":"px","size":0,"sizes":[]},"cards_columns_tablet":"2","cards_columns_mobile":"1","cards_row_gap_tablet":{"unit":"px","size":"","sizes":[]},"cards_row_gap_mobile":{"unit":"px","size":"","sizes":[]}}" data-widget_type="posts.cards">
<div class="elementor-widget-container">
<div class="elementor-posts-container elementor-posts elementor-posts--skin-cards elementor-grid" role="list">
<article class="elementor-post elementor-grid-item post-127303 post type-post status-publish format-standard has-post-thumbnail hentry category-spill-the-beans" role="listitem">
<div class="elementor-post__card">
<div class="elementor-post__text">
<h2 class="elementor-post__title">
<a href="https://kymnradio.net/2025/07/25/spill-the-beans-book-club-remarkably-bright-creatures-7-24-25/" >
Spill the Beans – Book Club: Remarkably Bright Creatures, 7-24-25 </a>
</h2>
</div>
</div>
</article>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-inner-section elementor-element elementor-element-239b5a2 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="239b5a2" data-element_type="section">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-f14336f" data-id="f14336f" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-f753284 elementor-widget elementor-widget-text-editor" data-id="f753284" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p><strong>On A Tangent</strong></p> </div>
</div>
<div class="elementor-element elementor-element-5c3f8cb elementor-posts--thumbnail-none elementor-grid-1 elementor-posts__hover-none elementor-grid-tablet-2 elementor-grid-mobile-1 elementor-card-shadow-yes elementor-widget elementor-widget-posts" data-id="5c3f8cb" data-element_type="widget" data-settings="{"cards_columns":"1","cards_row_gap":{"unit":"px","size":0,"sizes":[]},"cards_columns_tablet":"2","cards_columns_mobile":"1","cards_row_gap_tablet":{"unit":"px","size":"","sizes":[]},"cards_row_gap_mobile":{"unit":"px","size":"","sizes":[]}}" data-widget_type="posts.cards">
<div class="elementor-widget-container">
<div class="elementor-posts-container elementor-posts elementor-posts--skin-cards elementor-grid" role="list">
<article class="elementor-post elementor-grid-item post-127357 post type-post status-publish format-standard has-post-thumbnail hentry category-on-a-tangent tag-love-language tag-money tag-ona-a-tsangent tag-rob-ryden tag-will-healy" role="listitem">
<div class="elementor-post__card">
<div class="elementor-post__text">
<h2 class="elementor-post__title">
<a href="https://kymnradio.net/2025/07/29/on-a-tangent-justice-love-language-and-money-7-28-25/" >
On a Tangent – Justice, love language, and money 7/28/25 </a>
</h2>
</div>
</div>
</article>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-inner-section elementor-element elementor-element-305a9fe elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="305a9fe" data-element_type="section">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-8a63fea" data-id="8a63fea" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-c08970f elementor-widget elementor-widget-text-editor" data-id="c08970f" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p><strong>Townies</strong></p> </div>
</div>
<div class="elementor-element elementor-element-80bb699 elementor-posts--thumbnail-none elementor-grid-1 elementor-posts__hover-none elementor-grid-tablet-2 elementor-grid-mobile-1 elementor-card-shadow-yes elementor-widget elementor-widget-posts" data-id="80bb699" data-element_type="widget" data-settings="{"cards_columns":"1","cards_row_gap":{"unit":"px","size":0,"sizes":[]},"cards_columns_tablet":"2","cards_columns_mobile":"1","cards_row_gap_tablet":{"unit":"px","size":"","sizes":[]},"cards_row_gap_mobile":{"unit":"px","size":"","sizes":[]}}" data-widget_type="posts.cards">
<div class="elementor-widget-container">
<div class="elementor-posts-container elementor-posts elementor-posts--skin-cards elementor-grid" role="list">
<article class="elementor-post elementor-grid-item post-126634 post type-post status-publish format-standard hentry category-townies tag-andrew-rossow tag-betsy-spethman tag-krista-middlebrooks tag-townies" role="listitem">
<div class="elementor-post__card">
<div class="elementor-post__text">
<h2 class="elementor-post__title">
<a href="https://kymnradio.net/2025/07/03/townies-music-and-travel-w-special-guest-krista-middlebrooks-7-3-25/" >
Townies – Music and Travel w/special guest Krista Middlebrooks 7/3/25 </a>
</h2>
</div>
</div>
</article>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-inner-section elementor-element elementor-element-be2d432 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="be2d432" data-element_type="section">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-a9af216" data-id="a9af216" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-301f5e4 elementor-widget elementor-widget-text-editor" data-id="301f5e4" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p><strong>Doing Good Things for Kids</strong></p> </div>
</div>
<div class="elementor-element elementor-element-50e6df9 elementor-posts--thumbnail-none elementor-grid-1 elementor-posts__hover-none elementor-grid-tablet-2 elementor-grid-mobile-1 elementor-card-shadow-yes elementor-widget elementor-widget-posts" data-id="50e6df9" data-element_type="widget" data-settings="{"cards_columns":"1","cards_row_gap":{"unit":"px","size":0,"sizes":[]},"cards_columns_tablet":"2","cards_columns_mobile":"1","cards_row_gap_tablet":{"unit":"px","size":"","sizes":[]},"cards_row_gap_mobile":{"unit":"px","size":"","sizes":[]}}" data-widget_type="posts.cards">
<div class="elementor-widget-container">
<div class="elementor-posts-container elementor-posts elementor-posts--skin-cards elementor-grid" role="list">
<article class="elementor-post elementor-grid-item post-126637 post type-post status-publish format-standard has-post-thumbnail hentry category-doing-good-things-for-kids tag-bubba-sullivan tag-doing-good-things-for-kids tag-dr-matt-hillmann tag-northfield-public-schools" role="listitem">
<div class="elementor-post__card">
<div class="elementor-post__text">
<h2 class="elementor-post__title">
<a href="https://kymnradio.net/2025/06/30/doing-good-things-for-kids-w-special-guest-bubba-sullivan/" >
Doing Good Things for Kids w/special guest Bubba Sullivan </a>
</h2>
</div>
</div>
</article>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-inner-section elementor-element elementor-element-b0f1857 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="b0f1857" data-element_type="section">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-2b2a791" data-id="2b2a791" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-84474c3 elementor-widget elementor-widget-text-editor" data-id="84474c3" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p><strong>Out in the Open</strong></p> </div>
</div>
<div class="elementor-element elementor-element-ae09480 elementor-posts--thumbnail-none elementor-grid-1 elementor-posts__hover-none elementor-grid-tablet-2 elementor-grid-mobile-1 elementor-card-shadow-yes elementor-widget elementor-widget-posts" data-id="ae09480" data-element_type="widget" data-settings="{"cards_columns":"1","cards_row_gap":{"unit":"px","size":0,"sizes":[]},"cards_columns_tablet":"2","cards_columns_mobile":"1","cards_row_gap_tablet":{"unit":"px","size":"","sizes":[]},"cards_row_gap_mobile":{"unit":"px","size":"","sizes":[]}}" data-widget_type="posts.cards">
<div class="elementor-widget-container">
<div class="elementor-posts-container elementor-posts elementor-posts--skin-cards elementor-grid" role="list">
<article class="elementor-post elementor-grid-item post-126968 post type-post status-publish format-standard has-post-thumbnail hentry category-out-in-the-open tag-chosen-family tag-mr-moxie tag-mrs-moxie tag-out-in-the-open-with-the-moxies" role="listitem">
<div class="elementor-post__card">
<div class="elementor-post__text">
<h2 class="elementor-post__title">
<a href="https://kymnradio.net/2025/07/07/out-in-the-open-with-the-moxies-we-are-family-pt-3/" >
Out in the Open with The Moxies – We Are Family, pt. 3 </a>
</h2>
</div>
</div>
</article>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-inner-section elementor-element elementor-element-20af6ed elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="20af6ed" data-element_type="section">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-ded5c84" data-id="ded5c84" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-23e3bbb elementor-widget elementor-widget-text-editor" data-id="23e3bbb" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<strong>Public Policy This Week</strong> </div>
</div>
<div class="elementor-element elementor-element-3dcc118 elementor-posts--thumbnail-none elementor-grid-1 elementor-posts__hover-none elementor-grid-tablet-2 elementor-grid-mobile-1 elementor-card-shadow-yes elementor-widget elementor-widget-posts" data-id="3dcc118" data-element_type="widget" data-settings="{"cards_columns":"1","cards_row_gap":{"unit":"px","size":0,"sizes":[]},"cards_columns_tablet":"2","cards_columns_mobile":"1","cards_row_gap_tablet":{"unit":"px","size":"","sizes":[]},"cards_row_gap_mobile":{"unit":"px","size":"","sizes":[]}}" data-widget_type="posts.cards">
<div class="elementor-widget-container">
<div class="elementor-posts-container elementor-posts elementor-posts--skin-cards elementor-grid" role="list">
<article class="elementor-post elementor-grid-item post-116107 post type-post status-publish format-standard has-post-thumbnail hentry category-public-policy-this-week tag-dr-dan-sullivan tag-jack-sielaf tag-joe-moravchick tag-public-policy-this-week tag-rich-larson tag-the-cannon-valley-elder-collegium" role="listitem">
<div class="elementor-post__card">
<div class="elementor-post__text">
<h2 class="elementor-post__title">
<a href="https://kymnradio.net/2023/12/08/public-policy-this-week-lifelong-learning-with-dr-dan-sullivan-and-jack-sielaff-of-the-cannon-valley-elder-collegium-12-8-23/" >
Public Policy This Week – Lifelong learning with Dr. Dan Sullivan and Jack Sielaff of the Cannon Valley Elder Collegium 12/8/23 </a>
</h2>
</div>
</div>
</article>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-inner-section elementor-element elementor-element-5a6be30 elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="5a6be30" data-element_type="section">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-d3e26fe" data-id="d3e26fe" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-ed240cc elementor-widget elementor-widget-text-editor" data-id="ed240cc" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<strong>National Security This Week</strong> </div>
</div>
<div class="elementor-element elementor-element-1bdc233 elementor-posts--thumbnail-none elementor-grid-1 elementor-posts__hover-none elementor-grid-tablet-2 elementor-grid-mobile-1 elementor-card-shadow-yes elementor-widget elementor-widget-posts" data-id="1bdc233" data-element_type="widget" data-settings="{"cards_columns":"1","cards_row_gap":{"unit":"px","size":0,"sizes":[]},"cards_columns_tablet":"2","cards_columns_mobile":"1","cards_row_gap_tablet":{"unit":"px","size":"","sizes":[]},"cards_row_gap_mobile":{"unit":"px","size":"","sizes":[]}}" data-widget_type="posts.cards">
<div class="elementor-widget-container">
<div class="elementor-posts-container elementor-posts elementor-posts--skin-cards elementor-grid" role="list">
<article class="elementor-post elementor-grid-item post-116249 post type-post status-publish format-standard has-post-thumbnail hentry category-national-security" role="listitem">
<div class="elementor-post__card">
<div class="elementor-post__text">
<h2 class="elementor-post__title">
<a href="https://kymnradio.net/2023/12/27/national-security-this-week-with-tom-hanson-12-27-23/" >
National Security This Week with Tom Hanson, 12-27-23 </a>
</h2>
</div>
</div>
</article>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-inner-section elementor-element elementor-element-620b5b9 elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="620b5b9" data-element_type="section">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-d90d08b" data-id="d90d08b" data-element_type="column" data-settings="{"background_background":"classic"}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-b911120 elementor-widget elementor-widget-text-editor" data-id="b911120" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p><strong>Events Calendar</strong></p> </div>
</div>
<div class="elementor-element elementor-element-0a730ad elementor-posts--thumbnail-none elementor-grid-1 elementor-posts__hover-none elementor-grid-tablet-2 elementor-grid-mobile-1 elementor-card-shadow-yes elementor-widget elementor-widget-posts" data-id="0a730ad" data-element_type="widget" data-settings="{"cards_columns":"1","cards_row_gap":{"unit":"px","size":0,"sizes":[]},"cards_columns_tablet":"2","cards_columns_mobile":"1","cards_row_gap_tablet":{"unit":"px","size":"","sizes":[]},"cards_row_gap_mobile":{"unit":"px","size":"","sizes":[]}}" data-widget_type="posts.cards">
<div class="elementor-widget-container">
<div class="elementor-posts-container elementor-posts elementor-posts--skin-cards elementor-grid" role="list">
<article class="elementor-post elementor-grid-item post-126850 event type-event status-publish hentry event-categories-all" role="listitem">
<div class="elementor-post__card">
<div class="elementor-post__text">
<h2 class="elementor-post__title">
<a href="https://kymnradio.net/events/rice-county-fair-2/" >
Rice County Fair </a>
</h2>
</div>
</div>
</article>
<article class="elementor-post elementor-grid-item post-126849 event type-event status-publish hentry event-categories-all" role="listitem">
<div class="elementor-post__card">
<div class="elementor-post__text">
<h2 class="elementor-post__title">
<a href="https://kymnradio.net/events/night-to-unite-2025/" >
Night to Unite 2025 </a>
</h2>
</div>
</div>
</article>
<article class="elementor-post elementor-grid-item post-126822 event type-event status-publish hentry event-categories-all" role="listitem">
<div class="elementor-post__card">
<div class="elementor-post__text">
<h2 class="elementor-post__title">
<a href="https://kymnradio.net/events/third-thursdays-2025-07-17/" >
Third Thursdays </a>
</h2>
</div>
</div>
</article>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-d4d723e" data-id="d4d723e" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-22fa572 elementor-widget__width-initial elementor-widget elementor-widget-shortcode" data-id="22fa572" data-element_type="widget" data-widget_type="shortcode.default">
<div class="elementor-widget-container">
<div class="elementor-shortcode"><div id="bsa-block-300--475" class="bsaProContainerNew bsaProContainer-10 bsa-block-300--475 bsa-pro-col-1" style="display: block !important"><div class="bsaProItems bsaGridNoGutter " style="background-color:"><div class="bsaProItem bsaReset" data-animation="none" style="opacity:1"><div class="bsaProItemInner" style="background-color:"><div class="bsaProItemInner__thumb"><div class="bsaProAnimateThumb"><a class="bsaProItem__url" rel="nofollow" href="https://kymnradio.net?bsa_pro_id=112&bsa_pro_url=1" target="_blank"><div class="bsaProItemInner__img" style="background-image: url('https://kymnradio.net/wp-content/uploads/bsa-pro-upload/1677079398-JudysFloralDesign_20230222.gif')"></div></a></div></div></div></div></div></div><script>
(function($){
function bsaProResize() {
var sid = "10";
var object = $(".bsaProContainer-" + sid + " .bsaProItemInner__img");
var animateThumb = $(".bsaProContainer-" + sid + " .bsaProAnimateThumb");
var innerThumb = $(".bsaProContainer-" + sid + " .bsaProItemInner__thumb");
var parentWidth = "300";
var parentHeight = "475";
var objectWidth = object.width();
if ( objectWidth < parentWidth ) {
var scale = objectWidth / parentWidth;
if ( objectWidth > 0 && objectWidth !== 100 && scale > 0 ) {
animateThumb.height(parentHeight * scale);
innerThumb.height(parentHeight * scale);
object.height(parentHeight * scale);
} else {
animateThumb.height(parentHeight);
innerThumb.height(parentHeight);
object.height(parentHeight);
}
} else {
animateThumb.height(parentHeight);
innerThumb.height(parentHeight);
object.height(parentHeight);
}
}
$(document).ready(function(){
bsaProResize();
$(window).resize(function(){
bsaProResize();
});
});
})(jQuery);
</script> <script>
(function ($) {
var bsaProContainer = $('.bsaProContainer-10');
var number_show_ads = "0";
var number_hide_ads = "0";
if ( number_show_ads > 0 ) {
setTimeout(function () { bsaProContainer.fadeIn(); }, number_show_ads * 1000);
}
if ( number_hide_ads > 0 ) {
setTimeout(function () { bsaProContainer.fadeOut(); }, number_hide_ads * 1000);
}
})(jQuery);
</script>
</div>
</div>
</div>
<div class="elementor-element elementor-element-fe84cd4 elementor-widget elementor-widget-spacer" data-id="fe84cd4" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-a503160 elementor-widget__width-initial elementor-widget elementor-widget-shortcode" data-id="a503160" data-element_type="widget" data-widget_type="shortcode.default">
<div class="elementor-widget-container">
<div class="elementor-shortcode"><div id="bsa-block-300--425" class="bsaProContainerNew bsaProContainer-11 bsa-block-300--425 bsa-pro-col-1" style="display: block !important"><div class="bsaProItems bsaGridNoGutter " style="background-color:"><div class="bsaProItem bsaReset" data-animation="none" style="opacity:1"><div class="bsaProItemInner" style="background-color:"><div class="bsaProItemInner__thumb"><div class="bsaProAnimateThumb"><a class="bsaProItem__url" rel="nofollow" href="https://kymnradio.net?bsa_pro_id=30&bsa_pro_url=1" target="_blank"><div class="bsaProItemInner__img" style="background-image: url('https://kymnradio.net/wp-content/uploads/bsa-pro-upload/1588969059-ReMax-EricFrank.jpg')"></div></a></div></div></div></div></div></div><script>
(function($){
function bsaProResize() {
var sid = "11";
var object = $(".bsaProContainer-" + sid + " .bsaProItemInner__img");
var animateThumb = $(".bsaProContainer-" + sid + " .bsaProAnimateThumb");
var innerThumb = $(".bsaProContainer-" + sid + " .bsaProItemInner__thumb");
var parentWidth = "300";
var parentHeight = "425";
var objectWidth = object.width();
if ( objectWidth < parentWidth ) {
var scale = objectWidth / parentWidth;
if ( objectWidth > 0 && objectWidth !== 100 && scale > 0 ) {
animateThumb.height(parentHeight * scale);
innerThumb.height(parentHeight * scale);
object.height(parentHeight * scale);
} else {
animateThumb.height(parentHeight);
innerThumb.height(parentHeight);
object.height(parentHeight);
}
} else {
animateThumb.height(parentHeight);
innerThumb.height(parentHeight);
object.height(parentHeight);
}
}
$(document).ready(function(){
bsaProResize();
$(window).resize(function(){
bsaProResize();
});
});
})(jQuery);
</script><style>
.bsaProContainer-11 .bsaProItem {
clear: both;
width: 100% !important;
margin-left: 0 !important;
margin-right: 0 !important;
}
</style> <script>
(function ($) {
var bsaProContainer = $('.bsaProContainer-11');
var number_show_ads = "0";
var number_hide_ads = "0";
if ( number_show_ads > 0 ) {
setTimeout(function () { bsaProContainer.fadeIn(); }, number_show_ads * 1000);
}
if ( number_hide_ads > 0 ) {
setTimeout(function () { bsaProContainer.fadeOut(); }, number_hide_ads * 1000);
}
})(jQuery);
</script>
</div>
</div>
</div>
<div class="elementor-element elementor-element-08787c2 elementor-widget elementor-widget-spacer" data-id="08787c2" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-f160e14 elementor-widget__width-initial elementor-widget elementor-widget-shortcode" data-id="f160e14" data-element_type="widget" data-widget_type="shortcode.default">
<div class="elementor-widget-container">
<div class="elementor-shortcode"><div id="bsa-block-300--425" class="bsaProContainerNew bsaProContainer-12 bsa-block-300--425 bsa-pro-col-1" style="display: block !important"><div class="bsaProItems bsaGridNoGutter " style="background-color:"><div class="bsaProItem bsaReset" data-animation="none" style="opacity:1"><div class="bsaProItemInner" style="background-color:"><div class="bsaProItemInner__thumb"><div class="bsaProAnimateThumb"><a class="bsaProItem__url" rel="nofollow" href="https://kymnradio.net?bsa_pro_id=163&bsa_pro_url=1" target="_blank"><div class="bsaProItemInner__img" style="background-image: url('https://kymnradio.net/wp-content/uploads/bsa-pro-upload/1718207645-Ford Experience.png')"></div></a></div></div></div></div></div></div><script>
(function($){
function bsaProResize() {
var sid = "12";
var object = $(".bsaProContainer-" + sid + " .bsaProItemInner__img");
var animateThumb = $(".bsaProContainer-" + sid + " .bsaProAnimateThumb");
var innerThumb = $(".bsaProContainer-" + sid + " .bsaProItemInner__thumb");
var parentWidth = "300";
var parentHeight = "425";
var objectWidth = object.width();
if ( objectWidth < parentWidth ) {
var scale = objectWidth / parentWidth;
if ( objectWidth > 0 && objectWidth !== 100 && scale > 0 ) {
animateThumb.height(parentHeight * scale);
innerThumb.height(parentHeight * scale);
object.height(parentHeight * scale);
} else {
animateThumb.height(parentHeight);
innerThumb.height(parentHeight);
object.height(parentHeight);
}
} else {
animateThumb.height(parentHeight);
innerThumb.height(parentHeight);
object.height(parentHeight);
}
}
$(document).ready(function(){
bsaProResize();
$(window).resize(function(){
bsaProResize();
});
});
})(jQuery);
</script><style>
.bsaProContainer-12 .bsaProItem {
clear: both;
width: 100% !important;
margin-left: 0 !important;
margin-right: 0 !important;
}
</style> <script>
(function ($) {
var bsaProContainer = $('.bsaProContainer-12');
var number_show_ads = "0";
var number_hide_ads = "0";
if ( number_show_ads > 0 ) {
setTimeout(function () { bsaProContainer.fadeIn(); }, number_show_ads * 1000);
}
if ( number_hide_ads > 0 ) {
setTimeout(function () { bsaProContainer.fadeOut(); }, number_hide_ads * 1000);
}
})(jQuery);
</script>
</div>
</div>
</div>
<div class="elementor-element elementor-element-e56eb72 elementor-widget elementor-widget-spacer" data-id="e56eb72" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-9f0e8e3 elementor-widget__width-initial elementor-widget elementor-widget-shortcode" data-id="9f0e8e3" data-element_type="widget" data-widget_type="shortcode.default">
<div class="elementor-widget-container">
<div class="elementor-shortcode"><div id="bsa-block-300--475" class="bsaProContainerNew bsaProContainer-13 bsa-block-300--475 bsa-pro-col-1" style="display: block !important"><div class="bsaProItems bsaGridNoGutter " style="background-color:"><div class="bsaProItem bsaReset" data-animation="none" style="opacity:1"><div class="bsaProItemInner" style="background-color:"><div class="bsaProItemInner__thumb"><div class="bsaProAnimateThumb"><a class="bsaProItem__url" rel="nofollow" href="https://kymnradio.net?bsa_pro_id=65&bsa_pro_url=1" target="_blank"><div class="bsaProItemInner__img" style="background-image: url('https://kymnradio.net/wp-content/uploads/bsa-pro-upload/1616194102-Shumway_FreeQuote_300x450.png')"></div></a></div></div></div></div></div></div><script>
(function($){
function bsaProResize() {
var sid = "13";
var object = $(".bsaProContainer-" + sid + " .bsaProItemInner__img");
var animateThumb = $(".bsaProContainer-" + sid + " .bsaProAnimateThumb");
var innerThumb = $(".bsaProContainer-" + sid + " .bsaProItemInner__thumb");
var parentWidth = "300";
var parentHeight = "475";
var objectWidth = object.width();
if ( objectWidth < parentWidth ) {
var scale = objectWidth / parentWidth;
if ( objectWidth > 0 && objectWidth !== 100 && scale > 0 ) {
animateThumb.height(parentHeight * scale);
innerThumb.height(parentHeight * scale);
object.height(parentHeight * scale);
} else {
animateThumb.height(parentHeight);
innerThumb.height(parentHeight);
object.height(parentHeight);
}
} else {
animateThumb.height(parentHeight);
innerThumb.height(parentHeight);
object.height(parentHeight);
}
}
$(document).ready(function(){
bsaProResize();
$(window).resize(function(){
bsaProResize();
});
});
})(jQuery);
</script><style>
.bsaProContainer-13 .bsaProItem {
clear: both;
width: 100% !important;
margin-left: 0 !important;
margin-right: 0 !important;
}
</style> <script>
(function ($) {
var bsaProContainer = $('.bsaProContainer-13');
var number_show_ads = "0";
var number_hide_ads = "0";
if ( number_show_ads > 0 ) {
setTimeout(function () { bsaProContainer.fadeIn(); }, number_show_ads * 1000);
}
if ( number_hide_ads > 0 ) {
setTimeout(function () { bsaProContainer.fadeOut(); }, number_hide_ads * 1000);
}
})(jQuery);
</script>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-4d4f313 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="4d4f313" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-07a0f45" data-id="07a0f45" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-f153b25 elementor-widget elementor-widget-html" data-id="f153b25" data-element_type="widget" data-widget_type="html.default">
<div class="elementor-widget-container">
<div class="scorestream-widget-container" data-ss_widget_type="horzScoreboard" style="height:120px;" data-user-widget-id="49557"></div><script async="async" type="text/javascript" src="https://scorestream.com/apiJsCdn/widgets/embed.js"></script> </div>
</div>
<div class="elementor-element elementor-element-ec1f1c1 elementor-widget elementor-widget-html" data-id="ec1f1c1" data-element_type="widget" data-widget_type="html.default">
<div class="elementor-widget-container">
<div class="scorestream-widget-container" data-ss_widget_type="horzScoreboard" style="height:120px;" data-user-widget-id="54073"></div><script async="async" type="text/javascript" src="https://scorestream.com/apiJsCdn/widgets/embed.js"></script> </div>
</div>
</div>
</div>
</div>
</section>
<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-aa68273 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="aa68273" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-8c1589d" data-id="8c1589d" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-e3a1c15 elementor-widget elementor-widget-heading" data-id="e3a1c15" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Local Events</h2> </div>
</div>
<div class="elementor-element elementor-element-51e37ce elementor-widget elementor-widget-shortcode" data-id="51e37ce" data-element_type="widget" data-widget_type="shortcode.default">
<div class="elementor-widget-container">
<div class="elementor-shortcode"><div class="em em-view-container" id="em-view-304315502" data-view="list">
<div class="em pixelbones em-list em-events-list" id="em-events-list-304315502" data-view-id="304315502">
<table class="events-table">
<thead>
<tr>
<th class="event-time" scope="col">Date/Time</th>
<th class="event-description" scope="col">Event</th>
</tr>
</thead>
<tbody><tr>
<td>
Saturday, August 2, 2025<br />
9:00 am - 1:00 pm
</td>
<td>
<a href="https://kymnradio.net/events/riverwalk-market-fair-2025-07-05-2025-07-12-2025-07-19-2025-07-26-2025-08-02/">Riverwalk Market Fair</a>
<br /><i>Bridge Square, Northfield MN</i>
</td>
</tr><tr>
<td>
Saturday, August 2, 2025<br />
9:00 am - 10:00 pm
</td>
<td>
<a href="https://kymnradio.net/events/vintage-band-festival-2025/">Vintage Band Festival 2025</a>
<br /><i>Bridge Square, Northfield MN</i>
</td>
</tr><tr>
<td>
Tuesday, August 5, 2025<br />
11:45 am - 1:00 pm
</td>
<td>
<a href="https://kymnradio.net/events/northfield-farmers-market-2025-07-01-2025-07-04-2025-07-08-2025-07-11-2025-07-15-2025-07-18-2025-07-22-2025-07-25-2025-07-29-2025-08-01-2025-08-05/">Northfield Farmers Market</a>
<br /><i>Riverside Lions Park, Northfield MN</i>
</td>
</tr><tr>
<td>
Tuesday, August 5, 2025<br />
6:00 pm - 9:00 pm
</td>
<td>
<a href="https://kymnradio.net/events/northfield-city-council-meeting-2025-07-01-2025-08-05/">Northfield City Council Meeting</a>
<br /><i>Northfield City Hall – Council Chambers, Northfield MN</i>
</td>
</tr><tr>
<td>
Wednesday, August 6, 2025<br />
6:00 pm - 8:30 pm
</td>
<td>
<a href="https://kymnradio.net/events/the-new-havoline-supremes-good-times-at-the-gardens-of-castle-rock/">The New Havoline Supremes – Good Times at The Gardens of Castle Rock</a>
<br /><i>The Gardens of Castle Rock, Northfield MN</i>
</td>
</tr><tr>
<td>
Friday, August 8, 2025<br />
11:45 am - 1:00 pm
</td>
<td>
<a href="https://kymnradio.net/events/northfield-farmers-market-2025-07-01-2025-07-04-2025-07-08-2025-07-11-2025-07-15-2025-07-18-2025-07-22-2025-07-25-2025-07-29-2025-08-01-2025-08-05-2025-08-08/">Northfield Farmers Market</a>
<br /><i>Riverside Lions Park, Northfield MN</i>
</td>
</tr><tr>
<td>
Saturday, August 9, 2025<br />
9:00 am - 11:00 am
</td>
<td>
<a href="https://kymnradio.net/events/northfield-farmers-market-2-2025-07-05-2025-07-12-2025-07-19-2025-07-26-2025-08-02-2025-08-09/">Northfield Farmers Market</a>
<br /><i>Riverside Lions Park, Northfield MN</i>
</td>
</tr><tr>
<td>
Saturday, August 9, 2025<br />
9:00 am - 1:00 pm
</td>
<td>
<a href="https://kymnradio.net/events/riverwalk-market-fair-2025-07-05-2025-07-12-2025-07-19-2025-07-26-2025-08-02-2025-08-09/">Riverwalk Market Fair</a>
<br /><i>Bridge Square, Northfield MN</i>
</td>
</tr><tr>
<td>
Tuesday, August 12, 2025<br />
11:45 am - 1:00 pm
</td>
<td>
<a href="https://kymnradio.net/events/northfield-farmers-market-2025-07-01-2025-07-04-2025-07-08-2025-07-11-2025-07-15-2025-07-18-2025-07-22-2025-07-25-2025-07-29-2025-08-01-2025-08-05-2025-08-08-2025-08-12/">Northfield Farmers Market</a>
<br /><i>Riverside Lions Park, Northfield MN</i>
</td>
</tr><tr>
<td>
Wednesday, August 13, 2025<br />
6:00 pm - 8:30 pm
</td>
<td>
<a href="https://kymnradio.net/events/old-country-boys-good-times-at-the-gardens-of-castle-rock/">Old Country Boys – Good Times at The Gardens of Castle Rock</a>
<br /><i>The Gardens of Castle Rock, Northfield MN</i>
</td>
</tr></tbody></table> </div>
</div></div>
</div>
</div>
<div class="elementor-element elementor-element-fabd957 elementor-widget elementor-widget-spacer" data-id="fabd957" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-d104f7e elementor-align-justify elementor-widget elementor-widget-button" data-id="d104f7e" data-element_type="widget" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a class="elementor-button elementor-button-link elementor-size-xl elementor-animation-pop" href="https://kymnradio.net/calendar/">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-text">Full Northfield Events Calendar</span>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</main>
<div data-elementor-type="footer" data-elementor-id="112741" class="elementor elementor-112741 elementor-location-footer" data-elementor-post-type="elementor_library">
<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-2c7eb74 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="2c7eb74" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-00a110b" data-id="00a110b" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-b50353d elementor-widget elementor-widget-spacer" data-id="b50353d" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-9810d5b elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="9810d5b" data-element_type="section" data-settings="{"background_background":"classic"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-55af978" data-id="55af978" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-134a05b elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="134a05b" data-element_type="widget" data-widget_type="icon-list.default">
<div class="elementor-widget-container">
<ul class="elementor-icon-list-items">
<li class="elementor-icon-list-item">
<span class="elementor-icon-list-icon">
<i aria-hidden="true" class="fas fa-map-marker-alt"></i> </span>
<span class="elementor-icon-list-text">KYMN Radio 200 Division St S, Suite 260, Northfield, MN 55057-2079</span>
</li>
<li class="elementor-icon-list-item">
<span class="elementor-icon-list-icon">
<i aria-hidden="true" class="fas fa-phone-volume"></i> </span>
<span class="elementor-icon-list-text">507-645-5695</span>
</li>
<li class="elementor-icon-list-item">
<span class="elementor-icon-list-icon">
<i aria-hidden="true" class="fas fa-fax"></i> </span>
<span class="elementor-icon-list-text">507-645-9768</span>
</li>
<li class="elementor-icon-list-item">
<span class="elementor-icon-list-icon">
<i aria-hidden="true" class="fas fa-clock"></i> </span>
<span class="elementor-icon-list-text">7 am-5 pm</span>
</li>
<li class="elementor-icon-list-item">
<span class="elementor-icon-list-icon">
<i aria-hidden="true" class="fas fa-microphone-alt"></i> </span>
<span class="elementor-icon-list-text">ON THE AIR 24/7</span>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-8836a79" data-id="8836a79" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-74c1a3d elementor-widget elementor-widget-facebook-page" data-id="74c1a3d" data-element_type="widget" data-widget_type="facebook-page.default">
<div class="elementor-widget-container">
<div class="elementor-facebook-widget fb-page" data-href="https://www.facebook.com/1080KYMN/" data-tabs="" data-height="70px" data-width="500px" data-small-header="false" data-hide-cover="false" data-show-facepile="true" data-hide-cta="false" style="min-height: 1px;height:70px"></div> </div>
</div>
</div>
</div>
</div>
</section>
<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-d668d90 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="d668d90" data-element_type="section" data-settings="{"background_background":"classic"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-c2f24fd" data-id="c2f24fd" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-0c7b3c3 elementor-widget elementor-widget-text-editor" data-id="0c7b3c3" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
Copyright © 2025 KYMN Radio </div>
</div>
</div>
</div>
</div>
</section>
</div>
<script type="speculationrules">
{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"\/*"},{"not":{"href_matches":["\/wp-*.php","\/wp-admin\/*","\/wp-content\/uploads\/*","\/wp-content\/*","\/wp-content\/plugins\/*","\/wp-content\/themes\/hello-elementor\/*","\/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}
</script>
<script type="text/javascript">
(function() {
let targetObjectName = 'EM';
if ( typeof window[targetObjectName] === 'object' && window[targetObjectName] !== null ) {
Object.assign( window[targetObjectName], []);
} else {
console.warn( 'Could not merge extra data: window.' + targetObjectName + ' not found or not an object.' );
}
})();
</script>
<script type="importmap" id="wp-importmap">
{"imports":{"@wordpress\/interactivity":"https:\/\/kymnradio.net\/wp-includes\/js\/dist\/script-modules\/interactivity\/debug.js?ver=beb31ebdbe898d3dd230"}}
</script>
<script type="module" src="https://kymnradio.net/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-forms/src/contact-form/../../dist/modules/form/view.js?ver=14.8" id="jp-forms-view-js-module"></script>
<link rel="modulepreload" href="https://kymnradio.net/wp-includes/js/dist/script-modules/interactivity/debug.js?ver=beb31ebdbe898d3dd230" id="@wordpress/interactivity-js-modulepreload"><script type="application/json" id="wp-script-module-data-@wordpress/interactivity">
{"config":{"jetpack/form":{"error_types":{"is_required":"This field is required.","invalid_form_empty":"The form you are trying to submit is empty.","invalid_form":"Please fill out the form correctly."}}}}
</script>
<div data-elementor-type="popup" data-elementor-id="112715" class="elementor elementor-112715 elementor-location-popup" data-elementor-settings="{"entrance_animation":"slideInRight","exit_animation":"slideInRight","entrance_animation_duration":{"unit":"px","size":1.1999999999999999555910790149937383830547332763671875,"sizes":[]},"a11y_navigation":"yes","triggers":[],"timing":[]}" data-elementor-post-type="elementor_library">
<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-200e247 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="200e247" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-0e0b586" data-id="0e0b586" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-dd36eb8 elementor-widget elementor-widget-image" data-id="dd36eb8" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img width="300" height="245" src="https://i0.wp.com/kymnradio.net/wp-content/uploads/2023/04/KYMN-LOGO.png?fit=300%2C245&ssl=1" class="attachment-medium size-medium wp-image-112651" alt="" srcset="https://i0.wp.com/kymnradio.net/wp-content/uploads/2023/04/KYMN-LOGO.png?w=458&ssl=1 458w, https://i0.wp.com/kymnradio.net/wp-content/uploads/2023/04/KYMN-LOGO.png?resize=300%2C245&ssl=1 300w, https://i0.wp.com/kymnradio.net/wp-content/uploads/2023/04/KYMN-LOGO.png?resize=150%2C122&ssl=1 150w" sizes="(max-width: 300px) 100vw, 300px" data-attachment-id="112651" data-permalink="https://kymnradio.net/?attachment_id=112651" data-orig-file="https://i0.wp.com/kymnradio.net/wp-content/uploads/2023/04/KYMN-LOGO.png?fit=458%2C374&ssl=1" data-orig-size="458,374" data-comments-opened="0" data-image-meta="{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0"}" data-image-title="KYMN-LOGO" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/kymnradio.net/wp-content/uploads/2023/04/KYMN-LOGO.png?fit=300%2C245&ssl=1" data-large-file="https://i0.wp.com/kymnradio.net/wp-content/uploads/2023/04/KYMN-LOGO.png?fit=374%2C374&ssl=1" /> </div>
</div>
<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-inner-section elementor-element elementor-element-001b2b2 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="001b2b2" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-881c515" data-id="881c515" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-dce9e66 elementor-nav-menu__align-center elementor-nav-menu--dropdown-none elementor-widget elementor-widget-nav-menu" data-id="dce9e66" data-element_type="widget" data-settings="{"layout":"vertical","submenu_icon":{"value":"<i class=\"fas fa-caret-down\"><\/i>","library":"fa-solid"}}" data-widget_type="nav-menu.default">
<div class="elementor-widget-container">
<nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-vertical e--pointer-underline e--animation-fade">
<ul id="menu-1-dce9e66" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-54057 current_page_item menu-item-113295"><a href="https://kymnradio.net/" aria-current="page" class="elementor-item elementor-item-active">Home</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-123997"><a href="https://kymnradio.net/support-local-radio/" class="elementor-item">Support Local Radio</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-113296"><a href="https://kymnradio.net/about/" class="elementor-item">About KYMN</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-113302"><a href="https://kymnradio.net/local-programs/" class="elementor-item">Programs</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-113303"><a href="https://kymnradio.net/program-schedule/" class="elementor-item">Program Schedule</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-119598"><a href="https://kymnradio.net/local-news/" class="elementor-item">Local News</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-114060"><a target="_blank" href="https://northfieldlive.com/" class="elementor-item">Sports</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-113298"><a href="https://kymnradio.net/community/" class="elementor-item">Community</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-113297"><a href="https://kymnradio.net/calendar/" class="elementor-item">Calendar</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-113300"><a href="https://kymnradio.net/faqs/" class="elementor-item">Frequently Asked Questions</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-113299"><a href="https://kymnradio.net/contact-us/" class="elementor-item">Contact KYMN</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-126606"><a href="https://kymnradio.net/privacy-policy/" class="elementor-item">Privacy Policy</a></li>
</ul> </nav>
<nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true">
<ul id="menu-2-dce9e66" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-54057 current_page_item menu-item-113295"><a href="https://kymnradio.net/" aria-current="page" class="elementor-item elementor-item-active" tabindex="-1">Home</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-123997"><a href="https://kymnradio.net/support-local-radio/" class="elementor-item" tabindex="-1">Support Local Radio</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-113296"><a href="https://kymnradio.net/about/" class="elementor-item" tabindex="-1">About KYMN</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-113302"><a href="https://kymnradio.net/local-programs/" class="elementor-item" tabindex="-1">Programs</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-113303"><a href="https://kymnradio.net/program-schedule/" class="elementor-item" tabindex="-1">Program Schedule</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-119598"><a href="https://kymnradio.net/local-news/" class="elementor-item" tabindex="-1">Local News</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-114060"><a target="_blank" href="https://northfieldlive.com/" class="elementor-item" tabindex="-1">Sports</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-113298"><a href="https://kymnradio.net/community/" class="elementor-item" tabindex="-1">Community</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-113297"><a href="https://kymnradio.net/calendar/" class="elementor-item" tabindex="-1">Calendar</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-113300"><a href="https://kymnradio.net/faqs/" class="elementor-item" tabindex="-1">Frequently Asked Questions</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-113299"><a href="https://kymnradio.net/contact-us/" class="elementor-item" tabindex="-1">Contact KYMN</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-126606"><a href="https://kymnradio.net/privacy-policy/" class="elementor-item" tabindex="-1">Privacy Policy</a></li>
</ul> </nav>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</section>
</div>
<script>
const lazyloadRunObserver = () => {
const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` );
const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => {
entries.forEach( ( entry ) => {
if ( entry.isIntersecting ) {
let lazyloadBackground = entry.target;
if( lazyloadBackground ) {
lazyloadBackground.classList.add( 'e-lazyloaded' );
}
lazyloadBackgroundObserver.unobserve( entry.target );
}
});
}, { rootMargin: '200px 0px 200px 0px' } );
lazyloadBackgrounds.forEach( ( lazyloadBackground ) => {
lazyloadBackgroundObserver.observe( lazyloadBackground );
} );
};
const events = [
'DOMContentLoaded',
'elementor/lazyload/observe',
];
events.forEach( ( event ) => {
document.addEventListener( event, lazyloadRunObserver );
} );
</script>
<style id='core-block-supports-inline-css'>
/**
* Core styles: block-supports
*/
</style>
<script id="qi-addons-for-elementor-script-js-extra">
var qodefQiAddonsGlobal = {"vars":{"adminBarHeight":0,"iconArrowLeft":"<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" x=\"0px\" y=\"0px\" viewBox=\"0 0 34.2 32.3\" xml:space=\"preserve\" style=\"stroke-width: 2;\"><line x1=\"0.5\" y1=\"16\" x2=\"33.5\" y2=\"16\"\/><line x1=\"0.3\" y1=\"16.5\" x2=\"16.2\" y2=\"0.7\"\/><line x1=\"0\" y1=\"15.4\" x2=\"16.2\" y2=\"31.6\"\/><\/svg>","iconArrowRight":"<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" x=\"0px\" y=\"0px\" viewBox=\"0 0 34.2 32.3\" xml:space=\"preserve\" style=\"stroke-width: 2;\"><line x1=\"0\" y1=\"16\" x2=\"33\" y2=\"16\"\/><line x1=\"17.3\" y1=\"0.7\" x2=\"33.2\" y2=\"16.5\"\/><line x1=\"17.3\" y1=\"31.6\" x2=\"33.5\" y2=\"15.4\"\/><\/svg>","iconClose":"<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" x=\"0px\" y=\"0px\" viewBox=\"0 0 9.1 9.1\" xml:space=\"preserve\"><g><path d=\"M8.5,0L9,0.6L5.1,4.5L9,8.5L8.5,9L4.5,5.1L0.6,9L0,8.5L4,4.5L0,0.6L0.6,0L4.5,4L8.5,0z\"\/><\/g><\/svg>"}};
</script>
<script src="https://kymnradio.net/wp-content/plugins/qi-addons-for-elementor/assets/js/main.min.js?ver=1.9.3" id="qi-addons-for-elementor-script-js"></script>
<script src="https://kymnradio.net/wp-content/themes/hello-elementor/assets/js/hello-frontend.js?ver=3.4.4" id="hello-theme-frontend-js"></script>
<script src="https://kymnradio.net/wp-content/plugins/elementor/assets/js/webpack.runtime.js?ver=3.30.4" id="elementor-webpack-runtime-js"></script>
<script src="https://kymnradio.net/wp-content/plugins/elementor/assets/js/frontend-modules.js?ver=3.30.4" id="elementor-frontend-modules-js"></script>
<script id="elementor-frontend-js-before">
var elementorFrontendConfig = {"environmentMode":{"edit":false,"wpPreview":false,"isScriptDebug":true},"i18n":{"shareOnFacebook":"Share on Facebook","shareOnTwitter":"Share on Twitter","pinIt":"Pin it","download":"Download","downloadImage":"Download image","fullscreen":"Fullscreen","zoom":"Zoom","share":"Share","playVideo":"Play Video","previous":"Previous","next":"Next","close":"Close","a11yCarouselPrevSlideMessage":"Previous slide","a11yCarouselNextSlideMessage":"Next slide","a11yCarouselFirstSlideMessage":"This is the first slide","a11yCarouselLastSlideMessage":"This is the last slide","a11yCarouselPaginationBulletMessage":"Go to slide"},"is_rtl":false,"breakpoints":{"xs":0,"sm":480,"md":768,"lg":1025,"xl":1440,"xxl":1600},"responsive":{"breakpoints":{"mobile":{"label":"Mobile Portrait","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobile Landscape","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablet Portrait","value":1024,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablet Landscape","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":false},"widescreen":{"label":"Widescreen","value":2400,"default_value":2400,"direction":"min","is_enabled":false}},"hasCustomBreakpoints":false},"version":"3.30.4","is_static":false,"experimentalFeatures":{"additional_custom_breakpoints":true,"theme_builder_v2":true,"hello-theme-header-footer":true,"home_screen":true,"global_classes_should_enforce_capabilities":true,"cloud-library":true,"e_opt_in_v4_page":true},"urls":{"assets":"https:\/\/kymnradio.net\/wp-content\/plugins\/elementor\/assets\/","ajaxurl":"https:\/\/kymnradio.net\/wp-admin\/admin-ajax.php","uploadUrl":"https:\/\/kymnradio.net\/wp-content\/uploads"},"nonces":{"floatingButtonsClickTracking":"f28aa40fcc"},"swiperClass":"swiper","settings":{"page":[],"editorPreferences":[]},"kit":{"active_breakpoints":["viewport_mobile","viewport_tablet"],"global_image_lightbox":"yes","lightbox_enable_counter":"yes","lightbox_enable_fullscreen":"yes","lightbox_enable_zoom":"yes","lightbox_enable_share":"yes","lightbox_title_src":"title","lightbox_description_src":"description","hello_header_logo_type":"logo","hello_header_menu_layout":"horizontal","hello_footer_logo_type":"logo"},"post":{"id":54057,"title":"KYMN%20Radio%20%C2%B7%20Northfield%2C%20MN%20%C2%B7%20AM%201080%20%26%20FM%2095.1%20%E2%80%93%20Real%20Radio%2C%20True%20Variety","excerpt":"","featuredImage":"https:\/\/i0.wp.com\/kymnradio.net\/wp-content\/uploads\/2021\/05\/Capture.png?fit=374%2C374&ssl=1"}};
</script>
<script src="https://kymnradio.net/wp-content/plugins/elementor/assets/js/frontend.js?ver=3.30.4" id="elementor-frontend-js"></script>
<script src="https://kymnradio.net/wp-content/plugins/elementor-pro/assets/lib/smartmenus/jquery.smartmenus.js?ver=1.2.1" id="smartmenus-js"></script>
<script src="https://kymnradio.net/wp-includes/js/imagesloaded.min.js?ver=5.0.0" id="imagesloaded-js"></script>
<script id="eael-general-js-extra">
var localize = {"ajaxurl":"https:\/\/kymnradio.net\/wp-admin\/admin-ajax.php","nonce":"2c4f19ede4","i18n":{"added":"Added ","compare":"Compare","loading":"Loading..."},"eael_translate_text":{"required_text":"is a required field","invalid_text":"Invalid","billing_text":"Billing","shipping_text":"Shipping","fg_mfp_counter_text":"of"},"page_permalink":"https:\/\/kymnradio.net\/","cart_redirectition":"","cart_page_url":"","el_breakpoints":{"mobile":{"label":"Mobile Portrait","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobile Landscape","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablet Portrait","value":1024,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablet Landscape","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":false},"widescreen":{"label":"Widescreen","value":2400,"default_value":2400,"direction":"min","is_enabled":false}},"ParticleThemesData":{"default":"{\"particles\":{\"number\":{\"value\":160,\"density\":{\"enable\":true,\"value_area\":800}},\"color\":{\"value\":\"#ffffff\"},\"shape\":{\"type\":\"circle\",\"stroke\":{\"width\":0,\"color\":\"#000000\"},\"polygon\":{\"nb_sides\":5},\"image\":{\"src\":\"img\/github.svg\",\"width\":100,\"height\":100}},\"opacity\":{\"value\":0.5,\"random\":false,\"anim\":{\"enable\":false,\"speed\":1,\"opacity_min\":0.1,\"sync\":false}},\"size\":{\"value\":3,\"random\":true,\"anim\":{\"enable\":false,\"speed\":40,\"size_min\":0.1,\"sync\":false}},\"line_linked\":{\"enable\":true,\"distance\":150,\"color\":\"#ffffff\",\"opacity\":0.4,\"width\":1},\"move\":{\"enable\":true,\"speed\":6,\"direction\":\"none\",\"random\":false,\"straight\":false,\"out_mode\":\"out\",\"bounce\":false,\"attract\":{\"enable\":false,\"rotateX\":600,\"rotateY\":1200}}},\"interactivity\":{\"detect_on\":\"canvas\",\"events\":{\"onhover\":{\"enable\":true,\"mode\":\"repulse\"},\"onclick\":{\"enable\":true,\"mode\":\"push\"},\"resize\":true},\"modes\":{\"grab\":{\"distance\":400,\"line_linked\":{\"opacity\":1}},\"bubble\":{\"distance\":400,\"size\":40,\"duration\":2,\"opacity\":8,\"speed\":3},\"repulse\":{\"distance\":200,\"duration\":0.4},\"push\":{\"particles_nb\":4},\"remove\":{\"particles_nb\":2}}},\"retina_detect\":true}","nasa":"{\"particles\":{\"number\":{\"value\":250,\"density\":{\"enable\":true,\"value_area\":800}},\"color\":{\"value\":\"#ffffff\"},\"shape\":{\"type\":\"circle\",\"stroke\":{\"width\":0,\"color\":\"#000000\"},\"polygon\":{\"nb_sides\":5},\"image\":{\"src\":\"img\/github.svg\",\"width\":100,\"height\":100}},\"opacity\":{\"value\":1,\"random\":true,\"anim\":{\"enable\":true,\"speed\":1,\"opacity_min\":0,\"sync\":false}},\"size\":{\"value\":3,\"random\":true,\"anim\":{\"enable\":false,\"speed\":4,\"size_min\":0.3,\"sync\":false}},\"line_linked\":{\"enable\":false,\"distance\":150,\"color\":\"#ffffff\",\"opacity\":0.4,\"width\":1},\"move\":{\"enable\":true,\"speed\":1,\"direction\":\"none\",\"random\":true,\"straight\":false,\"out_mode\":\"out\",\"bounce\":false,\"attract\":{\"enable\":false,\"rotateX\":600,\"rotateY\":600}}},\"interactivity\":{\"detect_on\":\"canvas\",\"events\":{\"onhover\":{\"enable\":true,\"mode\":\"bubble\"},\"onclick\":{\"enable\":true,\"mode\":\"repulse\"},\"resize\":true},\"modes\":{\"grab\":{\"distance\":400,\"line_linked\":{\"opacity\":1}},\"bubble\":{\"distance\":250,\"size\":0,\"duration\":2,\"opacity\":0,\"speed\":3},\"repulse\":{\"distance\":400,\"duration\":0.4},\"push\":{\"particles_nb\":4},\"remove\":{\"particles_nb\":2}}},\"retina_detect\":true}","bubble":"{\"particles\":{\"number\":{\"value\":15,\"density\":{\"enable\":true,\"value_area\":800}},\"color\":{\"value\":\"#1b1e34\"},\"shape\":{\"type\":\"polygon\",\"stroke\":{\"width\":0,\"color\":\"#000\"},\"polygon\":{\"nb_sides\":6},\"image\":{\"src\":\"img\/github.svg\",\"width\":100,\"height\":100}},\"opacity\":{\"value\":0.3,\"random\":true,\"anim\":{\"enable\":false,\"speed\":1,\"opacity_min\":0.1,\"sync\":false}},\"size\":{\"value\":50,\"random\":false,\"anim\":{\"enable\":true,\"speed\":10,\"size_min\":40,\"sync\":false}},\"line_linked\":{\"enable\":false,\"distance\":200,\"color\":\"#ffffff\",\"opacity\":1,\"width\":2},\"move\":{\"enable\":true,\"speed\":8,\"direction\":\"none\",\"random\":false,\"straight\":false,\"out_mode\":\"out\",\"bounce\":false,\"attract\":{\"enable\":false,\"rotateX\":600,\"rotateY\":1200}}},\"interactivity\":{\"detect_on\":\"canvas\",\"events\":{\"onhover\":{\"enable\":false,\"mode\":\"grab\"},\"onclick\":{\"enable\":false,\"mode\":\"push\"},\"resize\":true},\"modes\":{\"grab\":{\"distance\":400,\"line_linked\":{\"opacity\":1}},\"bubble\":{\"distance\":400,\"size\":40,\"duration\":2,\"opacity\":8,\"speed\":3},\"repulse\":{\"distance\":200,\"duration\":0.4},\"push\":{\"particles_nb\":4},\"remove\":{\"particles_nb\":2}}},\"retina_detect\":true}","snow":"{\"particles\":{\"number\":{\"value\":450,\"density\":{\"enable\":true,\"value_area\":800}},\"color\":{\"value\":\"#fff\"},\"shape\":{\"type\":\"circle\",\"stroke\":{\"width\":0,\"color\":\"#000000\"},\"polygon\":{\"nb_sides\":5},\"image\":{\"src\":\"img\/github.svg\",\"width\":100,\"height\":100}},\"opacity\":{\"value\":0.5,\"random\":true,\"anim\":{\"enable\":false,\"speed\":1,\"opacity_min\":0.1,\"sync\":false}},\"size\":{\"value\":5,\"random\":true,\"anim\":{\"enable\":false,\"speed\":40,\"size_min\":0.1,\"sync\":false}},\"line_linked\":{\"enable\":false,\"distance\":500,\"color\":\"#ffffff\",\"opacity\":0.4,\"width\":2},\"move\":{\"enable\":true,\"speed\":6,\"direction\":\"bottom\",\"random\":false,\"straight\":false,\"out_mode\":\"out\",\"bounce\":false,\"attract\":{\"enable\":false,\"rotateX\":600,\"rotateY\":1200}}},\"interactivity\":{\"detect_on\":\"canvas\",\"events\":{\"onhover\":{\"enable\":true,\"mode\":\"bubble\"},\"onclick\":{\"enable\":true,\"mode\":\"repulse\"},\"resize\":true},\"modes\":{\"grab\":{\"distance\":400,\"line_linked\":{\"opacity\":0.5}},\"bubble\":{\"distance\":400,\"size\":4,\"duration\":0.3,\"opacity\":1,\"speed\":3},\"repulse\":{\"distance\":200,\"duration\":0.4},\"push\":{\"particles_nb\":4},\"remove\":{\"particles_nb\":2}}},\"retina_detect\":true}","nyan_cat":"{\"particles\":{\"number\":{\"value\":150,\"density\":{\"enable\":false,\"value_area\":800}},\"color\":{\"value\":\"#ffffff\"},\"shape\":{\"type\":\"star\",\"stroke\":{\"width\":0,\"color\":\"#000000\"},\"polygon\":{\"nb_sides\":5},\"image\":{\"src\":\"http:\/\/wiki.lexisnexis.com\/academic\/images\/f\/fb\/Itunes_podcast_icon_300.jpg\",\"width\":100,\"height\":100}},\"opacity\":{\"value\":0.5,\"random\":false,\"anim\":{\"enable\":false,\"speed\":1,\"opacity_min\":0.1,\"sync\":false}},\"size\":{\"value\":4,\"random\":true,\"anim\":{\"enable\":false,\"speed\":40,\"size_min\":0.1,\"sync\":false}},\"line_linked\":{\"enable\":false,\"distance\":150,\"color\":\"#ffffff\",\"opacity\":0.4,\"width\":1},\"move\":{\"enable\":true,\"speed\":14,\"direction\":\"left\",\"random\":false,\"straight\":true,\"out_mode\":\"out\",\"bounce\":false,\"attract\":{\"enable\":false,\"rotateX\":600,\"rotateY\":1200}}},\"interactivity\":{\"detect_on\":\"canvas\",\"events\":{\"onhover\":{\"enable\":false,\"mode\":\"grab\"},\"onclick\":{\"enable\":true,\"mode\":\"repulse\"},\"resize\":true},\"modes\":{\"grab\":{\"distance\":200,\"line_linked\":{\"opacity\":1}},\"bubble\":{\"distance\":400,\"size\":40,\"duration\":2,\"opacity\":8,\"speed\":3},\"repulse\":{\"distance\":200,\"duration\":0.4},\"push\":{\"particles_nb\":4},\"remove\":{\"particles_nb\":2}}},\"retina_detect\":true}"},"eael_login_nonce":"ace765a862","eael_register_nonce":"5c1e0df8cf","eael_lostpassword_nonce":"d5a5038400","eael_resetpassword_nonce":"776a6cccdb"};
</script>
<script src="https://kymnradio.net/wp-content/plugins/essential-addons-for-elementor-lite/assets/front-end/js/view/general.min.js?ver=6.2.2" id="eael-general-js"></script>
<script id="jetpack-stats-js-before">
_stq = window._stq || [];
_stq.push([ "view", JSON.parse("{\"v\":\"ext\",\"blog\":\"6478486\",\"post\":\"54057\",\"tz\":\"-5\",\"srv\":\"kymnradio.net\",\"j\":\"1:14.8\"}") ]);
_stq.push([ "clickTrackerInit", "6478486", "54057" ]);
</script>
<script src="https://stats.wp.com/e-202531.js" id="jetpack-stats-js" defer data-wp-strategy="defer"></script>
<script src="https://kymnradio.net/wp-includes/js/dist/hooks.js?ver=be67dc331e61e06d52fa" id="wp-hooks-js"></script>
<script src="https://kymnradio.net/wp-includes/js/dist/i18n.js?ver=5edc734adb78e0d7d00e" id="wp-i18n-js"></script>
<script id="wp-i18n-js-after">
wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } );
</script>
<script src="https://kymnradio.net/wp-content/plugins/qi-addons-for-elementor/inc/plugins/elementor/assets/js/elementor.js?ver=6.8.2" id="qi-addons-for-elementor-elementor-js"></script>
<script src="https://kymnradio.net/wp-content/plugins/elementor-pro/assets/js/webpack-pro.runtime.js?ver=3.30.1" id="elementor-pro-webpack-runtime-js"></script>
<script id="elementor-pro-frontend-js-before">
var ElementorProFrontendConfig = {"ajaxurl":"https:\/\/kymnradio.net\/wp-admin\/admin-ajax.php","nonce":"47299b3fe0","urls":{"assets":"https:\/\/kymnradio.net\/wp-content\/plugins\/elementor-pro\/assets\/","rest":"https:\/\/kymnradio.net\/wp-json\/"},"settings":{"lazy_load_background_images":true},"popup":{"hasPopUps":true},"shareButtonsNetworks":{"facebook":{"title":"Facebook","has_counter":true},"twitter":{"title":"Twitter"},"linkedin":{"title":"LinkedIn","has_counter":true},"pinterest":{"title":"Pinterest","has_counter":true},"reddit":{"title":"Reddit","has_counter":true},"vk":{"title":"VK","has_counter":true},"odnoklassniki":{"title":"OK","has_counter":true},"tumblr":{"title":"Tumblr"},"digg":{"title":"Digg"},"skype":{"title":"Skype"},"stumbleupon":{"title":"StumbleUpon","has_counter":true},"mix":{"title":"Mix"},"telegram":{"title":"Telegram"},"pocket":{"title":"Pocket","has_counter":true},"xing":{"title":"XING","has_counter":true},"whatsapp":{"title":"WhatsApp"},"email":{"title":"Email"},"print":{"title":"Print"},"x-twitter":{"title":"X"},"threads":{"title":"Threads"}},"facebook_sdk":{"lang":"en_US","app_id":""},"lottie":{"defaultAnimationUrl":"https:\/\/kymnradio.net\/wp-content\/plugins\/elementor-pro\/modules\/lottie\/assets\/animations\/default.json"}};
</script>
<script src="https://kymnradio.net/wp-content/plugins/elementor-pro/assets/js/frontend.js?ver=3.30.1" id="elementor-pro-frontend-js"></script>
<script src="https://kymnradio.net/wp-content/plugins/elementor-pro/assets/js/elements-handlers.js?ver=3.30.1" id="pro-elements-handlers-js"></script>
<script>var localize ={"ajaxurl":"https:\/\/kymnradio.net\/wp-admin\/admin-ajax.php","nonce":"2c4f19ede4","i18n":{"added":"Added ","compare":"Compare","loading":"Loading..."},"eael_translate_text":{"required_text":"is a required field","invalid_text":"Invalid","billing_text":"Billing","shipping_text":"Shipping","fg_mfp_counter_text":"of"},"page_permalink":"https:\/\/kymnradio.net\/","cart_redirectition":false,"cart_page_url":"","el_breakpoints":{"mobile":{"label":"Mobile Portrait","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobile Landscape","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablet Portrait","value":1024,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablet Landscape","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":false},"widescreen":{"label":"Widescreen","value":2400,"default_value":2400,"direction":"min","is_enabled":false}},"ParticleThemesData":{"default":"{\"particles\":{\"number\":{\"value\":160,\"density\":{\"enable\":true,\"value_area\":800}},\"color\":{\"value\":\"#ffffff\"},\"shape\":{\"type\":\"circle\",\"stroke\":{\"width\":0,\"color\":\"#000000\"},\"polygon\":{\"nb_sides\":5},\"image\":{\"src\":\"img\/github.svg\",\"width\":100,\"height\":100}},\"opacity\":{\"value\":0.5,\"random\":false,\"anim\":{\"enable\":false,\"speed\":1,\"opacity_min\":0.1,\"sync\":false}},\"size\":{\"value\":3,\"random\":true,\"anim\":{\"enable\":false,\"speed\":40,\"size_min\":0.1,\"sync\":false}},\"line_linked\":{\"enable\":true,\"distance\":150,\"color\":\"#ffffff\",\"opacity\":0.4,\"width\":1},\"move\":{\"enable\":true,\"speed\":6,\"direction\":\"none\",\"random\":false,\"straight\":false,\"out_mode\":\"out\",\"bounce\":false,\"attract\":{\"enable\":false,\"rotateX\":600,\"rotateY\":1200}}},\"interactivity\":{\"detect_on\":\"canvas\",\"events\":{\"onhover\":{\"enable\":true,\"mode\":\"repulse\"},\"onclick\":{\"enable\":true,\"mode\":\"push\"},\"resize\":true},\"modes\":{\"grab\":{\"distance\":400,\"line_linked\":{\"opacity\":1}},\"bubble\":{\"distance\":400,\"size\":40,\"duration\":2,\"opacity\":8,\"speed\":3},\"repulse\":{\"distance\":200,\"duration\":0.4},\"push\":{\"particles_nb\":4},\"remove\":{\"particles_nb\":2}}},\"retina_detect\":true}","nasa":"{\"particles\":{\"number\":{\"value\":250,\"density\":{\"enable\":true,\"value_area\":800}},\"color\":{\"value\":\"#ffffff\"},\"shape\":{\"type\":\"circle\",\"stroke\":{\"width\":0,\"color\":\"#000000\"},\"polygon\":{\"nb_sides\":5},\"image\":{\"src\":\"img\/github.svg\",\"width\":100,\"height\":100}},\"opacity\":{\"value\":1,\"random\":true,\"anim\":{\"enable\":true,\"speed\":1,\"opacity_min\":0,\"sync\":false}},\"size\":{\"value\":3,\"random\":true,\"anim\":{\"enable\":false,\"speed\":4,\"size_min\":0.3,\"sync\":false}},\"line_linked\":{\"enable\":false,\"distance\":150,\"color\":\"#ffffff\",\"opacity\":0.4,\"width\":1},\"move\":{\"enable\":true,\"speed\":1,\"direction\":\"none\",\"random\":true,\"straight\":false,\"out_mode\":\"out\",\"bounce\":false,\"attract\":{\"enable\":false,\"rotateX\":600,\"rotateY\":600}}},\"interactivity\":{\"detect_on\":\"canvas\",\"events\":{\"onhover\":{\"enable\":true,\"mode\":\"bubble\"},\"onclick\":{\"enable\":true,\"mode\":\"repulse\"},\"resize\":true},\"modes\":{\"grab\":{\"distance\":400,\"line_linked\":{\"opacity\":1}},\"bubble\":{\"distance\":250,\"size\":0,\"duration\":2,\"opacity\":0,\"speed\":3},\"repulse\":{\"distance\":400,\"duration\":0.4},\"push\":{\"particles_nb\":4},\"remove\":{\"particles_nb\":2}}},\"retina_detect\":true}","bubble":"{\"particles\":{\"number\":{\"value\":15,\"density\":{\"enable\":true,\"value_area\":800}},\"color\":{\"value\":\"#1b1e34\"},\"shape\":{\"type\":\"polygon\",\"stroke\":{\"width\":0,\"color\":\"#000\"},\"polygon\":{\"nb_sides\":6},\"image\":{\"src\":\"img\/github.svg\",\"width\":100,\"height\":100}},\"opacity\":{\"value\":0.3,\"random\":true,\"anim\":{\"enable\":false,\"speed\":1,\"opacity_min\":0.1,\"sync\":false}},\"size\":{\"value\":50,\"random\":false,\"anim\":{\"enable\":true,\"speed\":10,\"size_min\":40,\"sync\":false}},\"line_linked\":{\"enable\":false,\"distance\":200,\"color\":\"#ffffff\",\"opacity\":1,\"width\":2},\"move\":{\"enable\":true,\"speed\":8,\"direction\":\"none\",\"random\":false,\"straight\":false,\"out_mode\":\"out\",\"bounce\":false,\"attract\":{\"enable\":false,\"rotateX\":600,\"rotateY\":1200}}},\"interactivity\":{\"detect_on\":\"canvas\",\"events\":{\"onhover\":{\"enable\":false,\"mode\":\"grab\"},\"onclick\":{\"enable\":false,\"mode\":\"push\"},\"resize\":true},\"modes\":{\"grab\":{\"distance\":400,\"line_linked\":{\"opacity\":1}},\"bubble\":{\"distance\":400,\"size\":40,\"duration\":2,\"opacity\":8,\"speed\":3},\"repulse\":{\"distance\":200,\"duration\":0.4},\"push\":{\"particles_nb\":4},\"remove\":{\"particles_nb\":2}}},\"retina_detect\":true}","snow":"{\"particles\":{\"number\":{\"value\":450,\"density\":{\"enable\":true,\"value_area\":800}},\"color\":{\"value\":\"#fff\"},\"shape\":{\"type\":\"circle\",\"stroke\":{\"width\":0,\"color\":\"#000000\"},\"polygon\":{\"nb_sides\":5},\"image\":{\"src\":\"img\/github.svg\",\"width\":100,\"height\":100}},\"opacity\":{\"value\":0.5,\"random\":true,\"anim\":{\"enable\":false,\"speed\":1,\"opacity_min\":0.1,\"sync\":false}},\"size\":{\"value\":5,\"random\":true,\"anim\":{\"enable\":false,\"speed\":40,\"size_min\":0.1,\"sync\":false}},\"line_linked\":{\"enable\":false,\"distance\":500,\"color\":\"#ffffff\",\"opacity\":0.4,\"width\":2},\"move\":{\"enable\":true,\"speed\":6,\"direction\":\"bottom\",\"random\":false,\"straight\":false,\"out_mode\":\"out\",\"bounce\":false,\"attract\":{\"enable\":false,\"rotateX\":600,\"rotateY\":1200}}},\"interactivity\":{\"detect_on\":\"canvas\",\"events\":{\"onhover\":{\"enable\":true,\"mode\":\"bubble\"},\"onclick\":{\"enable\":true,\"mode\":\"repulse\"},\"resize\":true},\"modes\":{\"grab\":{\"distance\":400,\"line_linked\":{\"opacity\":0.5}},\"bubble\":{\"distance\":400,\"size\":4,\"duration\":0.3,\"opacity\":1,\"speed\":3},\"repulse\":{\"distance\":200,\"duration\":0.4},\"push\":{\"particles_nb\":4},\"remove\":{\"particles_nb\":2}}},\"retina_detect\":true}","nyan_cat":"{\"particles\":{\"number\":{\"value\":150,\"density\":{\"enable\":false,\"value_area\":800}},\"color\":{\"value\":\"#ffffff\"},\"shape\":{\"type\":\"star\",\"stroke\":{\"width\":0,\"color\":\"#000000\"},\"polygon\":{\"nb_sides\":5},\"image\":{\"src\":\"http:\/\/wiki.lexisnexis.com\/academic\/images\/f\/fb\/Itunes_podcast_icon_300.jpg\",\"width\":100,\"height\":100}},\"opacity\":{\"value\":0.5,\"random\":false,\"anim\":{\"enable\":false,\"speed\":1,\"opacity_min\":0.1,\"sync\":false}},\"size\":{\"value\":4,\"random\":true,\"anim\":{\"enable\":false,\"speed\":40,\"size_min\":0.1,\"sync\":false}},\"line_linked\":{\"enable\":false,\"distance\":150,\"color\":\"#ffffff\",\"opacity\":0.4,\"width\":1},\"move\":{\"enable\":true,\"speed\":14,\"direction\":\"left\",\"random\":false,\"straight\":true,\"out_mode\":\"out\",\"bounce\":false,\"attract\":{\"enable\":false,\"rotateX\":600,\"rotateY\":1200}}},\"interactivity\":{\"detect_on\":\"canvas\",\"events\":{\"onhover\":{\"enable\":false,\"mode\":\"grab\"},\"onclick\":{\"enable\":true,\"mode\":\"repulse\"},\"resize\":true},\"modes\":{\"grab\":{\"distance\":200,\"line_linked\":{\"opacity\":1}},\"bubble\":{\"distance\":400,\"size\":40,\"duration\":2,\"opacity\":8,\"speed\":3},\"repulse\":{\"distance\":200,\"duration\":0.4},\"push\":{\"particles_nb\":4},\"remove\":{\"particles_nb\":2}}},\"retina_detect\":true}"},"eael_login_nonce":"ace765a862","eael_register_nonce":"5c1e0df8cf","eael_lostpassword_nonce":"d5a5038400","eael_resetpassword_nonce":"776a6cccdb"}</script><script id="eael-inline-js">function myFunction() {
window.open("https://kymnradio.net/kymn-live-95-1-fm-1080-am/", "_blank", "toolbar=yes,scrollbars=yes,resizable=yes,top=500,left=500,width=400,height=800");
};</script> <script type="text/javascript">
jQuery('.soliloquy-container').removeClass('no-js');
</script>
</body>
</html>
<!-- Cached by WP-Optimize - for mobile devices - https://teamupdraft.com/wp-optimize/ - Last modified: August 2, 2025 11:12 am (America/Chicago UTC:-6) -->