Showing source for: https://www.pulpmx.com/
Duration: 1.299881s
Server: nginx/1.20.1


<!doctype html>
<html lang="en-US">
<head>
	<!-- Global Site Tag (gtag.js) - Google Analytics -->
	<script async src="https://www.googletagmanager.com/gtag/js?id=UA-7349257-1"></script>
	<script>
  		window.dataLayer = window.dataLayer || [];
  		function gtag(){dataLayer.push(arguments);}
  		gtag('js', new Date());

  		gtag('config', 'UA-7349257-1');
	</script>
	<!-- ./ google analytics -->

	<meta charset="UTF-8">
	<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, viewport-fit=cover">
	<link rel="profile" href="http://gmpg.org/xfn/11">

	<script src="https://pulpmx.com/app/themes/pulpmx/assets/scripts/vendor/jwplayer/jwplayer.js"></script>
	<script>jwplayer.key="pKtmaLco67MOC0por2UKLI7VuCS0FjE0E1AE1kI+dSY=";</script>

	<title>PulpMX &#8211; &#8230;the Supercross stuff&#8230;</title>
<meta name='robots' content='nofollow' />
<link rel='dns-prefetch' href='//pulpmx.com' />
<link rel='dns-prefetch' href='//cdn.plyr.io' />
<link rel='dns-prefetch' href='//fonts.googleapis.com' />
<link rel="alternate" type="application/rss+xml" title="PulpMX &raquo; Feed" href="https://pulpmx.com/feed/" />
<link rel="alternate" type="application/rss+xml" title="PulpMX &raquo; Comments Feed" href="https://pulpmx.com/comments/feed/" />
<link rel="preconnect" href="//fonts.gstatic.com/" crossorigin><link rel="alternate" type="application/rss+xml" title="PulpMX &raquo; Home Comments Feed" href="https://pulpmx.com/sample-page-2/feed/" />
<script type="text/javascript">
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/svg\/","svgExt":".svg","source":{"wpemoji":"https:\/\/pulpmx.com\/wp\/wp-includes\/js\/wp-emoji.js?ver=6.1.1","twemoji":"https:\/\/pulpmx.com\/wp\/wp-includes\/js\/twemoji.js?ver=6.1.1"}};
/**
 * @output wp-includes/js/wp-emoji-loader.js
 */

( function( window, document, settings ) {
	var src, ready, ii, tests;

	// Create a canvas element for testing native browser support of emoji.
	var canvas = document.createElement( 'canvas' );
	var context = canvas.getContext && canvas.getContext( '2d' );

	/**
	 * Checks if two sets of Emoji characters render the same visually.
	 *
	 * @since 4.9.0
	 *
	 * @private
	 *
	 * @param {number[]} set1 Set of Emoji character codes.
	 * @param {number[]} set2 Set of Emoji character codes.
	 *
	 * @return {boolean} True if the two sets render the same.
	 */
	function emojiSetsRenderIdentically( set1, set2 ) {
		var stringFromCharCode = String.fromCharCode;

		// Cleanup from previous test.
		context.clearRect( 0, 0, canvas.width, canvas.height );
		context.fillText( stringFromCharCode.apply( this, set1 ), 0, 0 );
		var rendered1 = canvas.toDataURL();

		// Cleanup from previous test.
		context.clearRect( 0, 0, canvas.width, canvas.height );
		context.fillText( stringFromCharCode.apply( this, set2 ), 0, 0 );
		var rendered2 = canvas.toDataURL();

		return rendered1 === rendered2;
	}

	/**
	 * Detects if the browser supports rendering emoji or flag emoji.
	 *
	 * Flag emoji are a single glyph made of two characters, so some browsers
	 * (notably, Firefox OS X) don't support them.
	 *
	 * @since 4.2.0
	 *
	 * @private
	 *
	 * @param {string} type Whether to test for support of "flag" or "emoji".
	 *
	 * @return {boolean} True if the browser can render emoji, false if it cannot.
	 */
	function browserSupportsEmoji( type ) {
		var isIdentical;

		if ( ! context || ! context.fillText ) {
			return false;
		}

		/*
		 * 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';

		switch ( type ) {
			case 'flag':
				/*
				 * Test for Transgender flag compatibility. This flag is shortlisted for the Emoji 13 spec,
				 * but has landed in Twemoji early, so we can add support for it, too.
				 *
				 * 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(
					[ 0x1F3F3, 0xFE0F, 0x200D, 0x26A7, 0xFE0F ],
					[ 0x1F3F3, 0xFE0F, 0x200B, 0x26A7, 0xFE0F ]
				);

				if ( isIdentical ) {
					return false;
				}

				/*
				 * Test for UN 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 ([U] + [N]).
				 */
				isIdentical = emojiSetsRenderIdentically(
					[ 0xD83C, 0xDDFA, 0xD83C, 0xDDF3 ],
					[ 0xD83C, 0xDDFA, 0x200B, 0xD83C, 0xDDF3 ]
				);

				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 an 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(
					[ 0xD83C, 0xDFF4, 0xDB40, 0xDC67, 0xDB40, 0xDC62, 0xDB40, 0xDC65, 0xDB40, 0xDC6E, 0xDB40, 0xDC67, 0xDB40, 0xDC7F ],
					[ 0xD83C, 0xDFF4, 0x200B, 0xDB40, 0xDC67, 0x200B, 0xDB40, 0xDC62, 0x200B, 0xDB40, 0xDC65, 0x200B, 0xDB40, 0xDC6E, 0x200B, 0xDB40, 0xDC67, 0x200B, 0xDB40, 0xDC7F ]
				);

				return ! isIdentical;
			case 'emoji':
				/*
				 * Why can't we be friends? Everyone can now shake hands in emoji, regardless of skin tone!
				 *
				 * To test for Emoji 14.0 support, try to render a new emoji: Handshake: Light Skin Tone, Dark Skin Tone.
				 *
				 * The Handshake: Light Skin Tone, Dark Skin Tone emoji is a ZWJ sequence combining 🫱 Rightwards Hand,
				 * 🏻 Light Skin Tone, a Zero Width Joiner, 🫲 Leftwards Hand, and 🏿 Dark Skin Tone.
				 *
				 * 0x1FAF1 == Rightwards Hand
				 * 0x1F3FB == Light Skin Tone
				 * 0x200D == Zero-Width Joiner (ZWJ) that links the code points for the new emoji or
				 * 0x200B == Zero-Width Space (ZWS) that is rendered for clients not supporting the new emoji.
				 * 0x1FAF2 == Leftwards Hand
				 * 0x1F3FF == Dark Skin Tone.
				 *
				 * When updating this test for future Emoji releases, ensure that individual emoji that make up the
				 * sequence come from older emoji standards.
				 */
				isIdentical = emojiSetsRenderIdentically(
					[0x1FAF1, 0x1F3FB, 0x200D, 0x1FAF2, 0x1F3FF],
					[0x1FAF1, 0x1F3FB, 0x200B, 0x1FAF2, 0x1F3FF]
				);

				return ! isIdentical;
		}

		return false;
	}

	/**
	 * Adds a script to the head of the document.
	 *
	 * @ignore
	 *
	 * @since 4.2.0
	 *
	 * @param {Object} src The url where the script is located.
	 * @return {void}
	 */
	function addScript( src ) {
		var script = document.createElement( 'script' );

		script.src = src;
		script.defer = script.type = 'text/javascript';
		document.getElementsByTagName( 'head' )[0].appendChild( script );
	}

	tests = Array( 'flag', 'emoji' );

	settings.supports = {
		everything: true,
		everythingExceptFlag: true
	};

	/*
	 * Tests the browser support for flag emojis and other emojis, and adjusts the
	 * support settings accordingly.
	 */
	for( ii = 0; ii < tests.length; ii++ ) {
		settings.supports[ tests[ ii ] ] = browserSupportsEmoji( tests[ ii ] );

		settings.supports.everything = settings.supports.everything && settings.supports[ tests[ ii ] ];

		if ( 'flag' !== tests[ ii ] ) {
			settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && settings.supports[ tests[ ii ] ];
		}
	}

	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;
	};

	// When the browser can not render everything we need to load a polyfill.
	if ( ! settings.supports.everything ) {
		ready = function() {
			settings.readyCallback();
		};

		/*
		 * Cross-browser version of adding a dom ready event.
		 */
		if ( document.addEventListener ) {
			document.addEventListener( 'DOMContentLoaded', ready, false );
			window.addEventListener( 'load', ready, false );
		} else {
			window.attachEvent( 'onload', ready );
			document.attachEvent( 'onreadystatechange', function() {
				if ( 'complete' === document.readyState ) {
					settings.readyCallback();
				}
			} );
		}

		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>
		<!--noptimize--><script>
		/**
  * based on domready (c) Dustin Diaz 2014 - License MIT
  * https://github.com/ded/domready
  */
advanced_ads_ready = ( function() {
  var fns = [], listener
    , doc = typeof document === 'object' && document
    , hack = doc && doc.documentElement.doScroll
    , domContentLoaded = 'DOMContentLoaded'
    , loaded = doc && (hack ? /^loaded|^c/ : /^loaded|^i|^c/).test(doc.readyState)

  if (!loaded && doc){
    listener = function () {
	  doc.removeEventListener(domContentLoaded, listener)
	  window.removeEventListener( "load", listener );
	  loaded = 1
	  while (listener = fns.shift()) listener()
	}
	  
	doc.addEventListener(domContentLoaded, listener )
	window.addEventListener( 'load', listener );
  }

  return function (fn) {
    loaded ? setTimeout(fn, 0) : fns.push(fn)
  }
} )();
</script><!--/noptimize-->
		<style type="text/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>
	<link rel='stylesheet' id='wp-block-library-css' href='https://pulpmx.com/wp/wp-includes/css/dist/block-library/style.css?ver=6.1.1' media='all' />
<link rel='stylesheet' id='classic-theme-styles-css' href='https://pulpmx.com/wp/wp-includes/css/classic-themes.css?ver=1' media='all' />
<style id='global-styles-inline-css' type='text/css'>
body{--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--color--thb-accent: #ff0000;--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--duotone--dark-grayscale: url('#wp-duotone-dark-grayscale');--wp--preset--duotone--grayscale: url('#wp-duotone-grayscale');--wp--preset--duotone--purple-yellow: url('#wp-duotone-purple-yellow');--wp--preset--duotone--blue-red: url('#wp-duotone-blue-red');--wp--preset--duotone--midnight: url('#wp-duotone-midnight');--wp--preset--duotone--magenta-yellow: url('#wp-duotone-magenta-yellow');--wp--preset--duotone--purple-green: url('#wp-duotone-purple-green');--wp--preset--duotone--blue-orange: url('#wp-duotone-blue-orange');--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;}:where(.is-layout-flex){gap: 0.5em;}body .is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .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;}body .is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}body .is-layout-flex{flex-wrap: wrap;align-items: center;}body .is-layout-flex > *{margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}.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;}
.wp-block-navigation a:where(:not(.wp-element-button)){color: inherit;}
:where(.wp-block-columns.is-layout-flex){gap: 2em;}
.wp-block-pullquote{font-size: 1.5em;line-height: 1.6;}
</style>
<link rel='stylesheet' id='esg-plugin-settings-css' href='https://pulpmx.com/app/plugins/essential-grid/public/assets/css/settings.css?ver=3.0.15' media='all' />
<link rel='stylesheet' id='tp-fontello-css' href='https://pulpmx.com/app/plugins/essential-grid/public/assets/font/fontello/css/fontello.css?ver=3.0.15' media='all' />
<link rel='stylesheet' id='responsive-lightbox-prettyphoto-css' href='https://pulpmx.com/app/plugins/responsive-lightbox/assets/prettyphoto/css/prettyPhoto.css?ver=2.1.0' media='all' />
<link rel='stylesheet' id='pulpmx-pod-sync-css' href='https://pulpmx.com/app/plugins/wp-podsync-plugin/public/css/pulpmx-pod-sync-public.css?ver=1.0.0' media='all' />
<link rel='stylesheet' id='thb-fa-css' href='https://pulpmx.com/app/themes/goodlife-wp/assets/css/font-awesome.min.css?ver=4.7.0' media='all' />
<link rel='stylesheet' id='thb-app-css' href='https://pulpmx.com/app/themes/goodlife-wp/assets/css/app.css?ver=4.6.0' media='all' />
<style id='thb-app-inline-css' type='text/css'>
body {font-family:Lato, 'BlinkMacSystemFont', -apple-system, 'Roboto', 'Lucida Sans';}h1, h2, h3, h4, h5, h6 {font-family:Roboto, 'BlinkMacSystemFont', -apple-system, 'Roboto', 'Lucida Sans';}.subheader {background-color:#383838 !important;background-image:url(http://pulpmx.com/app/uploads/2017/07/pulpmx_site_logo.jpg) !important;}.subheader.dark ul > li .sub-menu,.subheader.light ul > li .sub-menu {background:#3c3c3c;}.subheader ul {}@media only screen and (min-width:48.063em) {.header {}}.header {background-color:#383838 !important;}@media only screen and (min-width:64.063em) {.header .logo .logoimg {max-height:68px;}}@media only screen and (max-width:64.063em) {.header .logo .logoimg {max-height:;}}@media only screen and (min-width:64.063em) {.subheader.fixed .logo .logolink .logoimg {max-height:55px;}}.menu-holder.style1.dark {background-color:#383838 !important;}#mobile-menu {background-color: !important;}a:hover, .menu-holder ul li.menu-item-mega-parent .thb_mega_menu_holder .thb_mega_menu li.active a,.menu-holder ul li.sfHover > a, .subcategory_container .thb-sibling-categories li a:hover,label small, .more-link, .comment-respond .comment-reply-title small a, .btn.accent-transparent, .button.accent-transparent, input[type=submit].accent-transparent, .category_title.search span, .video_playlist .video_play.video-active .post-title h6, .menu-holder.dark ul li .sub-menu a:hover, .menu-holder.dark ul.sf-menu > li > a:hover, .post .post-bottom-meta a:hover,.thb-title-color-hover .post .post-title .entry-title a:hover,.btn.accent-border, .button.accent-border, input[type=submit].accent-border {color:#ff0000;}ul.point-list li:before, ol.point-list li:before, .post .article-tags .tags-title, .post.post-overlay .post-gallery .counts,.post-review ul li .progress span, .post-review .average, .category-title.style1 .category-header, .widget.widget_topreviews .style1 li .progress, .btn.black:hover, .button.black:hover, input[type=submit].black:hover, .btn.white:hover, .button.white:hover, input[type=submit].white:hover, .btn.accent:hover, .button.accent:hover, input[type=submit].accent:hover, .btn.accent-transparent:hover, .button.accent-transparent:hover, input[type=submit].accent-transparent:hover, #scroll_totop:hover, .subheader.fixed > .row .progress, #mobile-menu.style2, .thb-cookie-bar,.btn.accent-fill, .button.accent-fill, input[type=submit].accent-fill {background-color:#ff0000;}.plyr__control--overlaid,.plyr--video .plyr__control.plyr__tab-focus, .plyr--video .plyr__control:hover, .plyr--video .plyr__control[aria-expanded=true] {background:#ff0000;}.plyr--full-ui input[type=range] {color:#ff0000;}.menu-holder ul li.menu-item-mega-parent .thb_mega_menu_holder, .btn.black:hover, .button.black:hover, input[type=submit].black:hover, .btn.accent, .button.accent, input[type=submit].accent, .btn.white:hover, .button.white:hover, input[type=submit].white:hover, .btn.accent:hover, .button.accent:hover, input[type=submit].accent:hover, .btn.accent-transparent, .button.accent-transparent, input[type=submit].accent-transparent,.quick_search .quick_searchform,.btn.accent-border, .button.accent-border, input[type=submit].accent-border,.btn.accent-fill, .button.accent-fill, input[type=submit].accent-fill {border-color:#ff0000;}.btn.accent-fill:hover, .button.accent-fill:hover, input[type=submit].accent-fill:hover {border-color:#eb0000;background-color:#eb0000;}.quick_search .quick_searchform input[type="submit"] {background:rgba(255,0,0, .1);}.quick_search .quick_searchform:after {border-bottom-color:#ff0000;}.quick_search .quick_searchform input[type="submit"]:hover {background:rgba(255,0,0, .2);}.post .article-tags .tags-title:after {border-left-color:#ff0000;}.rtl .post .article-tags .tags-title:after {border-right-color:#ff0000;}.circle_rating .circle_perc {stroke:#ff0000;}.header .quick_search.active .quick_search_icon,.menu-right-content .quick_search.active .quick_search_icon,.post .post-bottom-meta a:hover .comment_icon,.btn.accent-border .thb-next-arrow,.button.accent-border .thb-next-arrow,input[type=submit].accent-border .thb-next-arrow,.btn.accent-transparent .thb-next-arrow,.button.accent-transparent .thb-next-arrow,input[type=submit].accent-transparent .thb-next-arrow {fill:#ff0000;}.post .post-content p a {border-color:#ff0000;-moz-box-shadow:inset 0 -5px 0 #ff0000;-webkit-box-shadow:inset 0 -5px 0 #ff0000;box-shadow:inset 0 -5px 0 #ff0000;}.post.carousel-listing.slick-current:after {-moz-box-shadow:inset 0 4px 0 0 #ff0000;-webkit-box-shadow:inset 0 4px 0 0 #ff0000;box-shadow:inset 0 4px 0 0 #ff0000;}.post .post-content p a:hover {background:#ff0000;}.subheader.fixed > .row .progress {background:#e82222;}.post .widget.title-style1 .widget_title > strong {color:#e82222;}.post .widget.title-style2 .widget_title > strong {background-color:#e82222;}.post .widget .widget_title {border-color:#e82222;}input[type="submit"],submit,.button,.btn {}.post .post-bottom-meta {}.post .post-category {}.widget > strong {}h1,.h1 {}h2 {}h3 {}h4 {}h5 {}h6 {}@media only screen and (min-width:64.063em) {.header.style1 .logo .logolink,.header.style2 .logo .logolink,.header.style3 .logo .logolink,.header.style4 .logo .logolink,.header.style5 .logo .logolink,.header.style6 .logo .logolink,.header.style7 .logo .logolink,.header.style8 .logo .logolink {padding-top:2px;padding-bottom:1px;;}}.post .post-title h1 {}.menu-holder ul.sf-menu > li > a {}.menu-holder ul.sf-menu > li > a {font-size:15px;}.menu-holder ul li .sub-menu li a,.menu-holder ul li.menu-item-mega-parent .thb_mega_menu_holder .thb_mega_menu li > a {}.menu-holder ul li .sub-menu li a,.menu-holder ul li.menu-item-mega-parent .thb_mega_menu_holder .thb_mega_menu li > a {font-size:15px;}.mobile-menu li a {}.mobile-menu li a {}.mobile-menu .sub-menu li a {}.mobile-menu .sub-menu li a {}.header .menu-holder ul.sf-menu > li.menu-item-category-188 > a:hover,.menu-holder.style1 ul.sf-menu > li.menu-item-category-188 > a:hover,.menu-holder ul li.menu-item-mega-parent .thb_mega_menu_holder .thb_mega_menu li.menu-item-category-188 > a:hover,.menu-holder ul li.menu-item-mega-parent .thb_mega_menu_holder .thb_mega_menu li.menu-item-category-188.active > a,.menu-holder ul li .sub-menu li.menu-item-category-188 > a:hover,.post .single_category_title.category-link-188 {color:#ada05a;}.menu-holder ul.sf-menu > li.menu-item-category-188 > a + .thb_mega_menu_holder {border-color:#ada05a;}.post .single_category_title.category-boxed-link-188.boxed-link,.category_title.cat-188:before,.category-title.style1 .category-header.cat-188,.category_title.style3.cat-188 h4:before {background-color:#ada05a;}.post.carousel-style2[data-catid="188"]:hover {background-color:#ada05a;}.header .menu-holder ul.sf-menu > li.menu-item-category-206 > a:hover,.menu-holder.style1 ul.sf-menu > li.menu-item-category-206 > a:hover,.menu-holder ul li.menu-item-mega-parent .thb_mega_menu_holder .thb_mega_menu li.menu-item-category-206 > a:hover,.menu-holder ul li.menu-item-mega-parent .thb_mega_menu_holder .thb_mega_menu li.menu-item-category-206.active > a,.menu-holder ul li .sub-menu li.menu-item-category-206 > a:hover,.post .single_category_title.category-link-206 {color:#f900dc;}.menu-holder ul.sf-menu > li.menu-item-category-206 > a + .thb_mega_menu_holder {border-color:#f900dc;}.post .single_category_title.category-boxed-link-206.boxed-link,.category_title.cat-206:before,.category-title.style1 .category-header.cat-206,.category_title.style3.cat-206 h4:before {background-color:#f900dc;}.post.carousel-style2[data-catid="206"]:hover {background-color:#f900dc;}.header .menu-holder ul.sf-menu > li.menu-item-category-182 > a:hover,.menu-holder.style1 ul.sf-menu > li.menu-item-category-182 > a:hover,.menu-holder ul li.menu-item-mega-parent .thb_mega_menu_holder .thb_mega_menu li.menu-item-category-182 > a:hover,.menu-holder ul li.menu-item-mega-parent .thb_mega_menu_holder .thb_mega_menu li.menu-item-category-182.active > a,.menu-holder ul li .sub-menu li.menu-item-category-182 > a:hover,.post .single_category_title.category-link-182 {color:#ef0000;}.menu-holder ul.sf-menu > li.menu-item-category-182 > a + .thb_mega_menu_holder {border-color:#ef0000;}.post .single_category_title.category-boxed-link-182.boxed-link,.category_title.cat-182:before,.category-title.style1 .category-header.cat-182,.category_title.style3.cat-182 h4:before {background-color:#ef0000;}.post.carousel-style2[data-catid="182"]:hover {background-color:#ef0000;}.header .menu-holder ul.sf-menu > li.menu-item-category-239 > a:hover,.menu-holder.style1 ul.sf-menu > li.menu-item-category-239 > a:hover,.menu-holder ul li.menu-item-mega-parent .thb_mega_menu_holder .thb_mega_menu li.menu-item-category-239 > a:hover,.menu-holder ul li.menu-item-mega-parent .thb_mega_menu_holder .thb_mega_menu li.menu-item-category-239.active > a,.menu-holder ul li .sub-menu li.menu-item-category-239 > a:hover,.post .single_category_title.category-link-239 {color:#1e73be;}.menu-holder ul.sf-menu > li.menu-item-category-239 > a + .thb_mega_menu_holder {border-color:#1e73be;}.post .single_category_title.category-boxed-link-239.boxed-link,.category_title.cat-239:before,.category-title.style1 .category-header.cat-239,.category_title.style3.cat-239 h4:before {background-color:#1e73be;}.post.carousel-style2[data-catid="239"]:hover {background-color:#1e73be;}.header .menu-holder ul.sf-menu > li.menu-item-category-186 > a:hover,.menu-holder.style1 ul.sf-menu > li.menu-item-category-186 > a:hover,.menu-holder ul li.menu-item-mega-parent .thb_mega_menu_holder .thb_mega_menu li.menu-item-category-186 > a:hover,.menu-holder ul li.menu-item-mega-parent .thb_mega_menu_holder .thb_mega_menu li.menu-item-category-186.active > a,.menu-holder ul li .sub-menu li.menu-item-category-186 > a:hover,.post .single_category_title.category-link-186 {color:#1e73be;}.menu-holder ul.sf-menu > li.menu-item-category-186 > a + .thb_mega_menu_holder {border-color:#1e73be;}.post .single_category_title.category-boxed-link-186.boxed-link,.category_title.cat-186:before,.category-title.style1 .category-header.cat-186,.category_title.style3.cat-186 h4:before {background-color:#1e73be;}.post.carousel-style2[data-catid="186"]:hover {background-color:#1e73be;}.header .menu-holder ul.sf-menu > li.menu-item-category-208 > a:hover,.menu-holder.style1 ul.sf-menu > li.menu-item-category-208 > a:hover,.menu-holder ul li.menu-item-mega-parent .thb_mega_menu_holder .thb_mega_menu li.menu-item-category-208 > a:hover,.menu-holder ul li.menu-item-mega-parent .thb_mega_menu_holder .thb_mega_menu li.menu-item-category-208.active > a,.menu-holder ul li .sub-menu li.menu-item-category-208 > a:hover,.post .single_category_title.category-link-208 {color:#1e73be;}.menu-holder ul.sf-menu > li.menu-item-category-208 > a + .thb_mega_menu_holder {border-color:#1e73be;}.post .single_category_title.category-boxed-link-208.boxed-link,.category_title.cat-208:before,.category-title.style1 .category-header.cat-208,.category_title.style3.cat-208 h4:before {background-color:#1e73be;}.post.carousel-style2[data-catid="208"]:hover {background-color:#1e73be;}.header .menu-holder ul.sf-menu > li.menu-item-category-205 > a:hover,.menu-holder.style1 ul.sf-menu > li.menu-item-category-205 > a:hover,.menu-holder ul li.menu-item-mega-parent .thb_mega_menu_holder .thb_mega_menu li.menu-item-category-205 > a:hover,.menu-holder ul li.menu-item-mega-parent .thb_mega_menu_holder .thb_mega_menu li.menu-item-category-205.active > a,.menu-holder ul li .sub-menu li.menu-item-category-205 > a:hover,.post .single_category_title.category-link-205 {color:#ef0000;}.menu-holder ul.sf-menu > li.menu-item-category-205 > a + .thb_mega_menu_holder {border-color:#ef0000;}.post .single_category_title.category-boxed-link-205.boxed-link,.category_title.cat-205:before,.category-title.style1 .category-header.cat-205,.category_title.style3.cat-205 h4:before {background-color:#ef0000;}.post.carousel-style2[data-catid="205"]:hover {background-color:#ef0000;}.header .menu-holder ul.sf-menu > li.menu-item-category-190 > a:hover,.menu-holder.style1 ul.sf-menu > li.menu-item-category-190 > a:hover,.menu-holder ul li.menu-item-mega-parent .thb_mega_menu_holder .thb_mega_menu li.menu-item-category-190 > a:hover,.menu-holder ul li.menu-item-mega-parent .thb_mega_menu_holder .thb_mega_menu li.menu-item-category-190.active > a,.menu-holder ul li .sub-menu li.menu-item-category-190 > a:hover,.post .single_category_title.category-link-190 {color:#ef0000;}.menu-holder ul.sf-menu > li.menu-item-category-190 > a + .thb_mega_menu_holder {border-color:#ef0000;}.post .single_category_title.category-boxed-link-190.boxed-link,.category_title.cat-190:before,.category-title.style1 .category-header.cat-190,.category_title.style3.cat-190 h4:before {background-color:#ef0000;}.post.carousel-style2[data-catid="190"]:hover {background-color:#ef0000;}.header .menu-holder ul.sf-menu > li.menu-item-category-180 > a:hover,.menu-holder.style1 ul.sf-menu > li.menu-item-category-180 > a:hover,.menu-holder ul li.menu-item-mega-parent .thb_mega_menu_holder .thb_mega_menu li.menu-item-category-180 > a:hover,.menu-holder ul li.menu-item-mega-parent .thb_mega_menu_holder .thb_mega_menu li.menu-item-category-180.active > a,.menu-holder ul li .sub-menu li.menu-item-category-180 > a:hover,.post .single_category_title.category-link-180 {color:#ef0000;}.menu-holder ul.sf-menu > li.menu-item-category-180 > a + .thb_mega_menu_holder {border-color:#ef0000;}.post .single_category_title.category-boxed-link-180.boxed-link,.category_title.cat-180:before,.category-title.style1 .category-header.cat-180,.category_title.style3.cat-180 h4:before {background-color:#ef0000;}.post.carousel-style2[data-catid="180"]:hover {background-color:#ef0000;}.header .menu-holder ul.sf-menu > li.menu-item-category-203 > a:hover,.menu-holder.style1 ul.sf-menu > li.menu-item-category-203 > a:hover,.menu-holder ul li.menu-item-mega-parent .thb_mega_menu_holder .thb_mega_menu li.menu-item-category-203 > a:hover,.menu-holder ul li.menu-item-mega-parent .thb_mega_menu_holder .thb_mega_menu li.menu-item-category-203.active > a,.menu-holder ul li .sub-menu li.menu-item-category-203 > a:hover,.post .single_category_title.category-link-203 {color:#ef0000;}.menu-holder ul.sf-menu > li.menu-item-category-203 > a + .thb_mega_menu_holder {border-color:#ef0000;}.post .single_category_title.category-boxed-link-203.boxed-link,.category_title.cat-203:before,.category-title.style1 .category-header.cat-203,.category_title.style3.cat-203 h4:before {background-color:#ef0000;}.post.carousel-style2[data-catid="203"]:hover {background-color:#ef0000;}.header .menu-holder ul.sf-menu > li.menu-item-category-202 > a:hover,.menu-holder.style1 ul.sf-menu > li.menu-item-category-202 > a:hover,.menu-holder ul li.menu-item-mega-parent .thb_mega_menu_holder .thb_mega_menu li.menu-item-category-202 > a:hover,.menu-holder ul li.menu-item-mega-parent .thb_mega_menu_holder .thb_mega_menu li.menu-item-category-202.active > a,.menu-holder ul li .sub-menu li.menu-item-category-202 > a:hover,.post .single_category_title.category-link-202 {color:#5ed608;}.menu-holder ul.sf-menu > li.menu-item-category-202 > a + .thb_mega_menu_holder {border-color:#5ed608;}.post .single_category_title.category-boxed-link-202.boxed-link,.category_title.cat-202:before,.category-title.style1 .category-header.cat-202,.category_title.style3.cat-202 h4:before {background-color:#5ed608;}.post.carousel-style2[data-catid="202"]:hover {background-color:#5ed608;}.header .menu-holder ul.sf-menu > li.menu-item-category-235 > a:hover,.menu-holder.style1 ul.sf-menu > li.menu-item-category-235 > a:hover,.menu-holder ul li.menu-item-mega-parent .thb_mega_menu_holder .thb_mega_menu li.menu-item-category-235 > a:hover,.menu-holder ul li.menu-item-mega-parent .thb_mega_menu_holder .thb_mega_menu li.menu-item-category-235.active > a,.menu-holder ul li .sub-menu li.menu-item-category-235 > a:hover,.post .single_category_title.category-link-235 {color:#d32151;}.menu-holder ul.sf-menu > li.menu-item-category-235 > a + .thb_mega_menu_holder {border-color:#d32151;}.post .single_category_title.category-boxed-link-235.boxed-link,.category_title.cat-235:before,.category-title.style1 .category-header.cat-235,.category_title.style3.cat-235 h4:before {background-color:#d32151;}.post.carousel-style2[data-catid="235"]:hover {background-color:#d32151;}.header .menu-holder ul.sf-menu > li.menu-item-category-209 > a:hover,.menu-holder.style1 ul.sf-menu > li.menu-item-category-209 > a:hover,.menu-holder ul li.menu-item-mega-parent .thb_mega_menu_holder .thb_mega_menu li.menu-item-category-209 > a:hover,.menu-holder ul li.menu-item-mega-parent .thb_mega_menu_holder .thb_mega_menu li.menu-item-category-209.active > a,.menu-holder ul li .sub-menu li.menu-item-category-209 > a:hover,.post .single_category_title.category-link-209 {color:#ef0000;}.menu-holder ul.sf-menu > li.menu-item-category-209 > a + .thb_mega_menu_holder {border-color:#ef0000;}.post .single_category_title.category-boxed-link-209.boxed-link,.category_title.cat-209:before,.category-title.style1 .category-header.cat-209,.category_title.style3.cat-209 h4:before {background-color:#ef0000;}.post.carousel-style2[data-catid="209"]:hover {background-color:#ef0000;}.header .menu-holder ul.sf-menu > li.menu-item-category-240 > a:hover,.menu-holder.style1 ul.sf-menu > li.menu-item-category-240 > a:hover,.menu-holder ul li.menu-item-mega-parent .thb_mega_menu_holder .thb_mega_menu li.menu-item-category-240 > a:hover,.menu-holder ul li.menu-item-mega-parent .thb_mega_menu_holder .thb_mega_menu li.menu-item-category-240.active > a,.menu-holder ul li .sub-menu li.menu-item-category-240 > a:hover,.post .single_category_title.category-link-240 {color:#ef0000;}.menu-holder ul.sf-menu > li.menu-item-category-240 > a + .thb_mega_menu_holder {border-color:#ef0000;}.post .single_category_title.category-boxed-link-240.boxed-link,.category_title.cat-240:before,.category-title.style1 .category-header.cat-240,.category_title.style3.cat-240 h4:before {background-color:#ef0000;}.post.carousel-style2[data-catid="240"]:hover {background-color:#ef0000;}.header .menu-holder ul.sf-menu > li.menu-item-category-241 > a:hover,.menu-holder.style1 ul.sf-menu > li.menu-item-category-241 > a:hover,.menu-holder ul li.menu-item-mega-parent .thb_mega_menu_holder .thb_mega_menu li.menu-item-category-241 > a:hover,.menu-holder ul li.menu-item-mega-parent .thb_mega_menu_holder .thb_mega_menu li.menu-item-category-241.active > a,.menu-holder ul li .sub-menu li.menu-item-category-241 > a:hover,.post .single_category_title.category-link-241 {color:#ef0000;}.menu-holder ul.sf-menu > li.menu-item-category-241 > a + .thb_mega_menu_holder {border-color:#ef0000;}.post .single_category_title.category-boxed-link-241.boxed-link,.category_title.cat-241:before,.category-title.style1 .category-header.cat-241,.category_title.style3.cat-241 h4:before {background-color:#ef0000;}.post.carousel-style2[data-catid="241"]:hover {background-color:#ef0000;}.header .menu-holder ul.sf-menu > li.menu-item-category-207 > a:hover,.menu-holder.style1 ul.sf-menu > li.menu-item-category-207 > a:hover,.menu-holder ul li.menu-item-mega-parent .thb_mega_menu_holder .thb_mega_menu li.menu-item-category-207 > a:hover,.menu-holder ul li.menu-item-mega-parent .thb_mega_menu_holder .thb_mega_menu li.menu-item-category-207.active > a,.menu-holder ul li .sub-menu li.menu-item-category-207 > a:hover,.post .single_category_title.category-link-207 {color:#ef0000;}.menu-holder ul.sf-menu > li.menu-item-category-207 > a + .thb_mega_menu_holder {border-color:#ef0000;}.post .single_category_title.category-boxed-link-207.boxed-link,.category_title.cat-207:before,.category-title.style1 .category-header.cat-207,.category_title.style3.cat-207 h4:before {background-color:#ef0000;}.post.carousel-style2[data-catid="207"]:hover {background-color:#ef0000;}.header .menu-holder ul.sf-menu > li.menu-item-category-194 > a:hover,.menu-holder.style1 ul.sf-menu > li.menu-item-category-194 > a:hover,.menu-holder ul li.menu-item-mega-parent .thb_mega_menu_holder .thb_mega_menu li.menu-item-category-194 > a:hover,.menu-holder ul li.menu-item-mega-parent .thb_mega_menu_holder .thb_mega_menu li.menu-item-category-194.active > a,.menu-holder ul li .sub-menu li.menu-item-category-194 > a:hover,.post .single_category_title.category-link-194 {color:#ef0000;}.menu-holder ul.sf-menu > li.menu-item-category-194 > a + .thb_mega_menu_holder {border-color:#ef0000;}.post .single_category_title.category-boxed-link-194.boxed-link,.category_title.cat-194:before,.category-title.style1 .category-header.cat-194,.category_title.style3.cat-194 h4:before {background-color:#ef0000;}.post.carousel-style2[data-catid="194"]:hover {background-color:#ef0000;}.header .menu-holder ul.sf-menu > li.menu-item-category-204 > a:hover,.menu-holder.style1 ul.sf-menu > li.menu-item-category-204 > a:hover,.menu-holder ul li.menu-item-mega-parent .thb_mega_menu_holder .thb_mega_menu li.menu-item-category-204 > a:hover,.menu-holder ul li.menu-item-mega-parent .thb_mega_menu_holder .thb_mega_menu li.menu-item-category-204.active > a,.menu-holder ul li .sub-menu li.menu-item-category-204 > a:hover,.post .single_category_title.category-link-204 {color:#07bdf4;}.menu-holder ul.sf-menu > li.menu-item-category-204 > a + .thb_mega_menu_holder {border-color:#07bdf4;}.post .single_category_title.category-boxed-link-204.boxed-link,.category_title.cat-204:before,.category-title.style1 .category-header.cat-204,.category_title.style3.cat-204 h4:before {background-color:#07bdf4;}.post.carousel-style2[data-catid="204"]:hover {background-color:#07bdf4;}.header .menu-holder ul.sf-menu > li.menu-item-category-192 > a:hover,.menu-holder.style1 ul.sf-menu > li.menu-item-category-192 > a:hover,.menu-holder ul li.menu-item-mega-parent .thb_mega_menu_holder .thb_mega_menu li.menu-item-category-192 > a:hover,.menu-holder ul li.menu-item-mega-parent .thb_mega_menu_holder .thb_mega_menu li.menu-item-category-192.active > a,.menu-holder ul li .sub-menu li.menu-item-category-192 > a:hover,.post .single_category_title.category-link-192 {color:#1e73be;}.menu-holder ul.sf-menu > li.menu-item-category-192 > a + .thb_mega_menu_holder {border-color:#1e73be;}.post .single_category_title.category-boxed-link-192.boxed-link,.category_title.cat-192:before,.category-title.style1 .category-header.cat-192,.category_title.style3.cat-192 h4:before {background-color:#1e73be;}.post.carousel-style2[data-catid="192"]:hover {background-color:#1e73be;}.header .menu-holder ul.sf-menu > li.menu-item-category-191 > a:hover,.menu-holder.style1 ul.sf-menu > li.menu-item-category-191 > a:hover,.menu-holder ul li.menu-item-mega-parent .thb_mega_menu_holder .thb_mega_menu li.menu-item-category-191 > a:hover,.menu-holder ul li.menu-item-mega-parent .thb_mega_menu_holder .thb_mega_menu li.menu-item-category-191.active > a,.menu-holder ul li .sub-menu li.menu-item-category-191 > a:hover,.post .single_category_title.category-link-191 {color:#ef0000;}.menu-holder ul.sf-menu > li.menu-item-category-191 > a + .thb_mega_menu_holder {border-color:#ef0000;}.post .single_category_title.category-boxed-link-191.boxed-link,.category_title.cat-191:before,.category-title.style1 .category-header.cat-191,.category_title.style3.cat-191 h4:before {background-color:#ef0000;}.post.carousel-style2[data-catid="191"]:hover {background-color:#ef0000;}.header .menu-holder ul.sf-menu > li.menu-item-category-185 > a:hover,.menu-holder.style1 ul.sf-menu > li.menu-item-category-185 > a:hover,.menu-holder ul li.menu-item-mega-parent .thb_mega_menu_holder .thb_mega_menu li.menu-item-category-185 > a:hover,.menu-holder ul li.menu-item-mega-parent .thb_mega_menu_holder .thb_mega_menu li.menu-item-category-185.active > a,.menu-holder ul li .sub-menu li.menu-item-category-185 > a:hover,.post .single_category_title.category-link-185 {color:#ef0000;}.menu-holder ul.sf-menu > li.menu-item-category-185 > a + .thb_mega_menu_holder {border-color:#ef0000;}.post .single_category_title.category-boxed-link-185.boxed-link,.category_title.cat-185:before,.category-title.style1 .category-header.cat-185,.category_title.style3.cat-185 h4:before {background-color:#ef0000;}.post.carousel-style2[data-catid="185"]:hover {background-color:#ef0000;}.header .menu-holder ul.sf-menu > li.menu-item-category-210 > a:hover,.menu-holder.style1 ul.sf-menu > li.menu-item-category-210 > a:hover,.menu-holder ul li.menu-item-mega-parent .thb_mega_menu_holder .thb_mega_menu li.menu-item-category-210 > a:hover,.menu-holder ul li.menu-item-mega-parent .thb_mega_menu_holder .thb_mega_menu li.menu-item-category-210.active > a,.menu-holder ul li .sub-menu li.menu-item-category-210 > a:hover,.post .single_category_title.category-link-210 {color:#ef0000;}.menu-holder ul.sf-menu > li.menu-item-category-210 > a + .thb_mega_menu_holder {border-color:#ef0000;}.post .single_category_title.category-boxed-link-210.boxed-link,.category_title.cat-210:before,.category-title.style1 .category-header.cat-210,.category_title.style3.cat-210 h4:before {background-color:#ef0000;}.post.carousel-style2[data-catid="210"]:hover {background-color:#ef0000;}.widget:not(.widget_singlead) {background-color:#f9fdff !important;}[role="main"] .widget.widget_categoryslider .slick-nav {background-color:#f9fdff !important;}#footer {background-color: !important;}#footer .widget.widget_categoryslider .slick-nav {background-color: !important;}.thb-login-form.dark,.thb-login-form {background-color: !important;}#subfooter {background-color: !important;}@media only screen and (min-width:48.063em) {#subfooter .logolink .logoimg {max-height:48px;}}
</style>
<link rel='stylesheet' id='style-css' href='https://pulpmx.com/app/themes/pulpmx/style.css?ver=4.6.0' media='all' />
<link rel='stylesheet' id='thb-google-fonts-css' href='https://fonts.googleapis.com/css?family=Lato%3A100%2C100i%2C300%2C300i%2C400%2C400i%2C700%2C700i%2C900%2C900i%7CRoboto%3A100%2C100i%2C300%2C300i%2C400%2C400i%2C500%2C500i%2C700%2C700i%2C900%2C900i&#038;subset=latin&#038;display=swap&#038;ver=4.6.0' media='all' />
<link rel='stylesheet' id='js_composer_front-css' href='https://pulpmx.com/app/plugins/js_composer/assets/css/js_composer.min.css?ver=6.8.0' media='all' />
<link rel='stylesheet' id='pulpmx/css-css' href='https://pulpmx.com/app/themes/pulpmx/dist/styles/main.css' media='all' />
<script src='https://pulpmx.com/wp/wp-includes/js/jquery/jquery.js?ver=3.6.1' id='jquery-core-js'></script>
<script src='https://pulpmx.com/wp/wp-includes/js/jquery/jquery-migrate.js?ver=3.3.2' id='jquery-migrate-js'></script>
<script src='https://pulpmx.com/app/plugins/responsive-lightbox/assets/prettyphoto/js/jquery.prettyPhoto.js?ver=2.1.0' id='responsive-lightbox-prettyphoto-js'></script>
<script src='https://pulpmx.com/app/plugins/responsive-lightbox/assets/infinitescroll/infinite-scroll.pkgd.js?ver=6.1.1' id='responsive-lightbox-infinite-scroll-js'></script>
<script type='text/javascript' id='responsive-lightbox-js-extra'>
/* <![CDATA[ */
var rlArgs = {"script":"prettyphoto","selector":"lightbox","customEvents":"","activeGalleries":"1","animationSpeed":"fast","slideshow":"0","slideshowDelay":"5000","slideshowAutoplay":"0","opacity":"0.90","showTitle":"0","allowResize":"1","allowExpand":"1","width":"1080","height":"720","separator":"\/","theme":"dark_square","horizontalPadding":"20","hideFlash":"0","wmode":"opaque","videoAutoplay":"0","modal":"0","deeplinking":"0","overlayGallery":"1","keyboardShortcuts":"1","social":"0","woocommerce_gallery":"0","ajaxurl":"https:\/\/pulpmx.com\/wp\/wp-admin\/admin-ajax.php","nonce":"183b1f7149"};
/* ]]> */
</script>
<script src='https://pulpmx.com/app/plugins/responsive-lightbox/js/front.js?ver=2.1.0' id='responsive-lightbox-js'></script>
<script src='https://pulpmx.com/app/plugins/wp-podsync-plugin/public/js/pulpmx-pod-sync-public.js?ver=1.0.0' id='pulpmx-pod-sync-js'></script>
<link rel="https://api.w.org/" href="https://pulpmx.com/wp-json/" /><link rel="alternate" type="application/json" href="https://pulpmx.com/wp-json/wp/v2/pages/275" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://pulpmx.com/wp/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://pulpmx.com/wp/wp-includes/wlwmanifest.xml" />
<meta name="generator" content="WordPress 6.1.1" />
<link rel="canonical" href="https://pulpmx.com/" />
<link rel='shortlink' href='https://pulpmx.com/' />
<link rel="alternate" type="application/json+oembed" href="https://pulpmx.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fpulpmx.com%2F" />
<link rel="alternate" type="text/xml+oembed" href="https://pulpmx.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fpulpmx.com%2F&#038;format=xml" />
<link rel="pingback" href="https://pulpmx.com/wp/xmlrpc.php"><link rel="icon" href="https://pulpmx.com/app/uploads/2019/01/cropped-pmxn-32x32.png" sizes="32x32" />
<link rel="icon" href="https://pulpmx.com/app/uploads/2019/01/cropped-pmxn-192x192.png" sizes="192x192" />
<link rel="apple-touch-icon" href="https://pulpmx.com/app/uploads/2019/01/cropped-pmxn-180x180.png" />
<meta name="msapplication-TileImage" content="https://pulpmx.com/app/uploads/2019/01/cropped-pmxn-270x270.png" />
<style type="text/css" data-type="vc_shortcodes-custom-css">.vc_custom_1611624214013{margin-bottom: 100px !important;background-color: #ffffff !important;}.vc_custom_1513739473676{margin-top: -50px !important;}.vc_custom_1515198149907{border-top-width: 2px !important;padding-top: 50px !important;padding-right: 20px !important;padding-left: 20px !important;background-color: #565656 !important;border-top-color: #ef0000 !important;border-top-style: solid !important;}.vc_custom_1580777111886{margin-bottom: 40px !important;}.vc_custom_1577665535809{padding-left: 30px !important;}.vc_custom_1577665733186{padding-left: 70px !important;}.vc_custom_1644597623926{padding-right: 42px !important;}</style><noscript><style> .wpb_animate_when_almost_visible { opacity: 1; }</style></noscript></head>
<body class="home page-template-default page page-id-275 thb-boxed-off thb_ads_header_mobile_off thb-lightbox-on thb-capitalize-on thb-dark-mode-off thb-header-style4 thb-title-underline-hover wpb-js-composer js-comp-ver-6.8.0 vc_responsive">

	<svg
		xmlns="http://www.w3.org/2000/svg"
		viewBox="0 0 0 0"
		width="0"
		height="0"
		focusable="false"
		role="none"
		style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;"
	>
		<defs>
			<filter id="wp-duotone-dark-grayscale">
				<feColorMatrix
					color-interpolation-filters="sRGB"
					type="matrix"
					values="
						.299 .587 .114 0 0
						.299 .587 .114 0 0
						.299 .587 .114 0 0
						.299 .587 .114 0 0
					"
				/>
				<feComponentTransfer color-interpolation-filters="sRGB" >
					<feFuncR type="table" tableValues="0 0.49803921568627" />
					<feFuncG type="table" tableValues="0 0.49803921568627" />
					<feFuncB type="table" tableValues="0 0.49803921568627" />
					<feFuncA type="table" tableValues="1 1" />
				</feComponentTransfer>
				<feComposite in2="SourceGraphic" operator="in" />
			</filter>
		</defs>
	</svg>

	
	<svg
		xmlns="http://www.w3.org/2000/svg"
		viewBox="0 0 0 0"
		width="0"
		height="0"
		focusable="false"
		role="none"
		style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;"
	>
		<defs>
			<filter id="wp-duotone-grayscale">
				<feColorMatrix
					color-interpolation-filters="sRGB"
					type="matrix"
					values="
						.299 .587 .114 0 0
						.299 .587 .114 0 0
						.299 .587 .114 0 0
						.299 .587 .114 0 0
					"
				/>
				<feComponentTransfer color-interpolation-filters="sRGB" >
					<feFuncR type="table" tableValues="0 1" />
					<feFuncG type="table" tableValues="0 1" />
					<feFuncB type="table" tableValues="0 1" />
					<feFuncA type="table" tableValues="1 1" />
				</feComponentTransfer>
				<feComposite in2="SourceGraphic" operator="in" />
			</filter>
		</defs>
	</svg>

	
	<svg
		xmlns="http://www.w3.org/2000/svg"
		viewBox="0 0 0 0"
		width="0"
		height="0"
		focusable="false"
		role="none"
		style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;"
	>
		<defs>
			<filter id="wp-duotone-purple-yellow">
				<feColorMatrix
					color-interpolation-filters="sRGB"
					type="matrix"
					values="
						.299 .587 .114 0 0
						.299 .587 .114 0 0
						.299 .587 .114 0 0
						.299 .587 .114 0 0
					"
				/>
				<feComponentTransfer color-interpolation-filters="sRGB" >
					<feFuncR type="table" tableValues="0.54901960784314 0.98823529411765" />
					<feFuncG type="table" tableValues="0 1" />
					<feFuncB type="table" tableValues="0.71764705882353 0.25490196078431" />
					<feFuncA type="table" tableValues="1 1" />
				</feComponentTransfer>
				<feComposite in2="SourceGraphic" operator="in" />
			</filter>
		</defs>
	</svg>

	
	<svg
		xmlns="http://www.w3.org/2000/svg"
		viewBox="0 0 0 0"
		width="0"
		height="0"
		focusable="false"
		role="none"
		style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;"
	>
		<defs>
			<filter id="wp-duotone-blue-red">
				<feColorMatrix
					color-interpolation-filters="sRGB"
					type="matrix"
					values="
						.299 .587 .114 0 0
						.299 .587 .114 0 0
						.299 .587 .114 0 0
						.299 .587 .114 0 0
					"
				/>
				<feComponentTransfer color-interpolation-filters="sRGB" >
					<feFuncR type="table" tableValues="0 1" />
					<feFuncG type="table" tableValues="0 0.27843137254902" />
					<feFuncB type="table" tableValues="0.5921568627451 0.27843137254902" />
					<feFuncA type="table" tableValues="1 1" />
				</feComponentTransfer>
				<feComposite in2="SourceGraphic" operator="in" />
			</filter>
		</defs>
	</svg>

	
	<svg
		xmlns="http://www.w3.org/2000/svg"
		viewBox="0 0 0 0"
		width="0"
		height="0"
		focusable="false"
		role="none"
		style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;"
	>
		<defs>
			<filter id="wp-duotone-midnight">
				<feColorMatrix
					color-interpolation-filters="sRGB"
					type="matrix"
					values="
						.299 .587 .114 0 0
						.299 .587 .114 0 0
						.299 .587 .114 0 0
						.299 .587 .114 0 0
					"
				/>
				<feComponentTransfer color-interpolation-filters="sRGB" >
					<feFuncR type="table" tableValues="0 0" />
					<feFuncG type="table" tableValues="0 0.64705882352941" />
					<feFuncB type="table" tableValues="0 1" />
					<feFuncA type="table" tableValues="1 1" />
				</feComponentTransfer>
				<feComposite in2="SourceGraphic" operator="in" />
			</filter>
		</defs>
	</svg>

	
	<svg
		xmlns="http://www.w3.org/2000/svg"
		viewBox="0 0 0 0"
		width="0"
		height="0"
		focusable="false"
		role="none"
		style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;"
	>
		<defs>
			<filter id="wp-duotone-magenta-yellow">
				<feColorMatrix
					color-interpolation-filters="sRGB"
					type="matrix"
					values="
						.299 .587 .114 0 0
						.299 .587 .114 0 0
						.299 .587 .114 0 0
						.299 .587 .114 0 0
					"
				/>
				<feComponentTransfer color-interpolation-filters="sRGB" >
					<feFuncR type="table" tableValues="0.78039215686275 1" />
					<feFuncG type="table" tableValues="0 0.94901960784314" />
					<feFuncB type="table" tableValues="0.35294117647059 0.47058823529412" />
					<feFuncA type="table" tableValues="1 1" />
				</feComponentTransfer>
				<feComposite in2="SourceGraphic" operator="in" />
			</filter>
		</defs>
	</svg>

	
	<svg
		xmlns="http://www.w3.org/2000/svg"
		viewBox="0 0 0 0"
		width="0"
		height="0"
		focusable="false"
		role="none"
		style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;"
	>
		<defs>
			<filter id="wp-duotone-purple-green">
				<feColorMatrix
					color-interpolation-filters="sRGB"
					type="matrix"
					values="
						.299 .587 .114 0 0
						.299 .587 .114 0 0
						.299 .587 .114 0 0
						.299 .587 .114 0 0
					"
				/>
				<feComponentTransfer color-interpolation-filters="sRGB" >
					<feFuncR type="table" tableValues="0.65098039215686 0.40392156862745" />
					<feFuncG type="table" tableValues="0 1" />
					<feFuncB type="table" tableValues="0.44705882352941 0.4" />
					<feFuncA type="table" tableValues="1 1" />
				</feComponentTransfer>
				<feComposite in2="SourceGraphic" operator="in" />
			</filter>
		</defs>
	</svg>

	
	<svg
		xmlns="http://www.w3.org/2000/svg"
		viewBox="0 0 0 0"
		width="0"
		height="0"
		focusable="false"
		role="none"
		style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;"
	>
		<defs>
			<filter id="wp-duotone-blue-orange">
				<feColorMatrix
					color-interpolation-filters="sRGB"
					type="matrix"
					values="
						.299 .587 .114 0 0
						.299 .587 .114 0 0
						.299 .587 .114 0 0
						.299 .587 .114 0 0
					"
				/>
				<feComponentTransfer color-interpolation-filters="sRGB" >
					<feFuncR type="table" tableValues="0.098039215686275 1" />
					<feFuncG type="table" tableValues="0 0.66274509803922" />
					<feFuncB type="table" tableValues="0.84705882352941 0.41960784313725" />
					<feFuncA type="table" tableValues="1 1" />
				</feComponentTransfer>
				<feComposite in2="SourceGraphic" operator="in" />
			</filter>
		</defs>
	</svg>

	<div id="wrapper" class="open">

	<!-- Start Content Container -->
	<div id="content-container">
		<!-- Start Content Click Capture -->
		<div class="click-capture"></div>
		<!-- End Content Click Capture -->
		<!-- Start Fixed Header -->
<div class="subheader fixed dark">
	<div class="row hide-for-large mobile-fixed-header align-middle">
		<div class="small-2 columns text-left mobile-icon-holder">
				<div class="mobile-toggle-holder">
		<div class="mobile-toggle">
			<span></span><span></span><span></span>
		</div>
	</div>
			</div>
		<div class="small-8 large-4 columns logo">
			<a href="https://pulpmx.com/" class="logolink">
				<img src="http://pulpmx.com/app/uploads/2017/07/pulpmx_site_logo_2.png" class="logoimg" alt="PulpMX"/>
			</a>
		</div>
		<div class="small-2 columns text-right mobile-share-holder">
			<div>
				<div class="quick_search">
		<a href="#" class="quick_toggle"></a>
		<svg class="quick_search_icon" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="19px" height="19px" viewBox="0 0 19 19" xml:space="preserve">
	<path d="M18.96,16.896l-4.973-4.926c1.02-1.255,1.633-2.846,1.633-4.578c0-4.035-3.312-7.317-7.385-7.317S0.849,3.358,0.849,7.393
		c0,4.033,3.313,7.316,7.386,7.316c1.66,0,3.188-0.552,4.422-1.471l4.998,4.95c0.181,0.179,0.416,0.268,0.652,0.268
		c0.235,0,0.472-0.089,0.652-0.268C19.32,17.832,19.32,17.253,18.96,16.896z M2.693,7.393c0-3.027,2.485-5.489,5.542-5.489
		c3.054,0,5.541,2.462,5.541,5.489c0,3.026-2.486,5.489-5.541,5.489C5.179,12.882,2.693,10.419,2.693,7.393z"/>
</svg>		<form method="get" class="quick_searchform" role="search" action="https://pulpmx.com/">
			<input name="s" type="text" class="s">
			<input type="submit" value="Search">
		</form>
	</div>

				</div>
		</div>
	</div>
	<div class="row full-width-row show-for-large">
				<div class="small-12 large-3 columns logo small-only-text-center">
				<a href="https://pulpmx.com/" class="logolink">
					<img src="http://pulpmx.com/app/uploads/2017/07/pulpmx_site_logo_2.png" class="logoimg" alt="PulpMX"/>
				</a>
			</div>
			<div class="large-6 columns text-center">
				<nav class="menu-holder menu-light">
									<ul id="menu-primary-navigation" class="sf-menu"><li id="menu-item-170658" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-170658"><a href="https://pulpmx.com/pulpmxshow/">Pulpmx Show</a></li>
<li id="menu-item-50939" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-50939"><a href="https://pulpmx.com/moto60-show/">Moto:60 Show</a></li>
<li id="menu-item-30316" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-30316"><a href="https://pulpmx.com/stories/">Stories</a>


<ul class="sub-menu ">
	<li id="menu-item-165509" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-165509 menu-item-category-263"><a href="https://pulpmx.com/category/advancedanalytics/">Advanced Analytics</a></li>
	<li id="menu-item-31330" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-31330 menu-item-category-188"><a href="https://pulpmx.com/category/classic_steel/">Classic Steel</a></li>
	<li id="menu-item-149819" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-149819 menu-item-category-236"><a href="https://pulpmx.com/category/dv-on/">DV On</a></li>
	<li id="menu-item-31312" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-31312 menu-item-category-182"><a href="https://pulpmx.com/category/just-short/">Just Short</a></li>
	<li id="menu-item-31310" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-31310 menu-item-category-186"><a href="https://pulpmx.com/category/keefer-kuestions/">Keefer Kuestions</a></li>
	<li id="menu-item-139509" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-139509 menu-item-category-208"><a href="https://pulpmx.com/category/keefer-tested/">Keefer Tested</a></li>
	<li id="menu-item-37030" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-37030 menu-item-category-205"><a href="https://pulpmx.com/category/moservations/">Moservations</a></li>
	<li id="menu-item-31311" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-31311 menu-item-category-180"><a href="https://pulpmx.com/category/observations/">Observations</a></li>
	<li id="menu-item-37031" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-37031 menu-item-category-203"><a href="https://pulpmx.com/category/point-counterpoint/">Point/Counterpoint</a></li>
	<li id="menu-item-37029" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-37029 menu-item-category-204"><a href="https://pulpmx.com/category/rapid-fire/">Rapid Fire</a></li>
	<li id="menu-item-31309" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-31309 menu-item-category-185"><a href="https://pulpmx.com/category/swizcorner/">Swizcorner</a></li>
</ul>
</li>
<li id="menu-item-30315" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-30315"><a href="https://pulpmx.com/podcasts/">Podcasts</a>


<ul class="sub-menu ">
	<li id="menu-item-169346" class="menu-item menu-item-type-post_type menu-item-object-post menu-item-169346"><a href="https://pulpmx.com/2022/06/30/guest-podcast-archive-listing-tabbed/">Guest Podcast Archive Listing (Tabbed Years)</a></li>
	<li id="menu-item-139510" class="menu-item menu-item-type-post_type menu-item-object-post menu-item-139510"><a href="https://pulpmx.com/2018/07/08/guest-podcast-episode-archive/">Guest-Podcast Episode Archive (Single Page List)</a></li>
	<li id="menu-item-162795" class="menu-item menu-item-type-post_type menu-item-object-post menu-item-162795"><a href="https://pulpmx.com/2021/02/12/guest-podcast-episode-archive-2/">PulpMX Podcast Feed URLS</a></li>
	<li id="menu-item-164972" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-164972"><a href="http://pulpmx.com/podcast_category/coffeewithkeefers/">Coffee with the Keefers</a></li>
	<li id="menu-item-164969" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-164969"><a href="http://pulpmx.com/podcast_category/moto60/">Fly Racing Moto:60 Show</a></li>
	<li id="menu-item-164967" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-164967"><a href="http://pulpmx.com/podcast_category/pulpmx/">PulpMX Show</a></li>
	<li id="menu-item-164968" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-164968"><a href="http://pulpmx.com/podcast_category/reraceables/">Re-Raceables</a></li>
	<li id="menu-item-164971" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-164971"><a href="http://pulpmx.com/podcast_category/keefer/">Rocky Mountain ATV/MC Keefer Tested</a></li>
	<li id="menu-item-164973" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-164973"><a href="http://pulpmx.com/podcast_category/shiftinggears/">Shifting Gears: The Zach Osborne Podcast</a></li>
	<li id="menu-item-164966" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-164966"><a href="http://pulpmx.com/podcast_category/steveshow/">The Steve Matthes Show</a></li>
</ul>
</li>
<li id="menu-item-42919" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-has-children menu-item-42919 menu-item-category-190"><a href="https://pulpmx.com/category/mxhistory/">MX History</a>


<ul class="sub-menu ">
	<li id="menu-item-164965" class="menu-item menu-item-type-post_type menu-item-object-post menu-item-164965"><a href="https://pulpmx.com/2021/11/19/the-oral-history-of-the-u-s-open-of-supercross/">The Oral History of the U.S. Open of Supercross</a></li>
	<li id="menu-item-160000" class="menu-item menu-item-type-post_type menu-item-object-post menu-item-160000"><a href="https://pulpmx.com/2020/05/12/windham-the-lost-seasons/">Windham: “The Lost Seasons”</a></li>
	<li id="menu-item-155589" class="menu-item menu-item-type-post_type menu-item-object-post menu-item-155589"><a href="https://pulpmx.com/2019/05/01/the-rise-and-fall-of-no-fear/">The Rise and Fall of No Fear</a></li>
	<li id="menu-item-125447" class="menu-item menu-item-type-post_type menu-item-object-post menu-item-125447"><a href="https://pulpmx.com/2018/05/11/the-oral-history-of-two-two-motorsports/">The Oral History of Two Two Motorsports</a></li>
	<li id="menu-item-31937" class="menu-item menu-item-type-post_type menu-item-object-post menu-item-31937"><a href="https://pulpmx.com/2017/02/21/fourteen-and-one/">Fourteen and One</a></li>
	<li id="menu-item-31936" class="menu-item menu-item-type-post_type menu-item-object-post menu-item-31936"><a href="https://pulpmx.com/2017/08/17/fight-club-pastrana-langston-brown-and-a-title/">Fight Club: Pastrana, Langston, Brown and a Title</a></li>
	<li id="menu-item-39993" class="menu-item menu-item-type-post_type menu-item-object-post menu-item-39993"><a href="https://pulpmx.com/2014/07/24/moto-xxx-the-complete-oral-history/">Moto XXX: The Complete Oral History</a></li>
	<li id="menu-item-31938" class="menu-item menu-item-type-post_type menu-item-object-post menu-item-31938"><a href="https://pulpmx.com/2016/09/11/pro-circuit-a-season-on-the-brink/">Pro Circuit: A Season on the Brink</a></li>
	<li id="menu-item-102052" class="menu-item menu-item-type-post_type menu-item-object-post menu-item-102052"><a href="https://pulpmx.com/2018/04/07/boy-wonder-the-eddie-hicks-story/">Boy Wonder: The Eddie Hicks Story</a></li>
	<li id="menu-item-31939" class="menu-item menu-item-type-post_type menu-item-object-post menu-item-31939"><a href="https://pulpmx.com/2015/12/01/scott-motosports-eleven-tenths/">Scott Motosports: Eleven Tenths</a></li>
	<li id="menu-item-151365" class="menu-item menu-item-type-post_type menu-item-object-post menu-item-151365"><a href="https://pulpmx.com/2018/08/02/inside-motocross-issue-1/">Inside Motocross Issue: 1</a></li>
	<li id="menu-item-151366" class="menu-item menu-item-type-post_type menu-item-object-post menu-item-151366"><a href="https://pulpmx.com/2018/08/07/inside-motocross-issue-2/">Inside Motocross Issue: 2</a></li>
	<li id="menu-item-61119" class="menu-item menu-item-type-post_type menu-item-object-post menu-item-61119"><a href="https://pulpmx.com/2013/09/17/numerology-1980-1989/">Numerology- 1980-1989</a></li>
	<li id="menu-item-61121" class="menu-item menu-item-type-post_type menu-item-object-post menu-item-61121"><a href="https://pulpmx.com/2013/09/12/numerology-1990-1999/">Numerology- 1990-1999</a></li>
	<li id="menu-item-61122" class="menu-item menu-item-type-post_type menu-item-object-post menu-item-61122"><a href="https://pulpmx.com/2013/09/11/numerology-2000-2009/">Numerology- 2000-2009</a></li>
	<li id="menu-item-61120" class="menu-item menu-item-type-post_type menu-item-object-post menu-item-61120"><a href="https://pulpmx.com/2013/09/13/numerology-2010-2014/">Numerology- 2010-2014</a></li>
</ul>
</li>
<li id="menu-item-32081" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-32081"><a href="http://pulpmx.com/category/pulpmx-video/">Videos</a>


<ul class="sub-menu ">
	<li id="menu-item-78353" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-78353 menu-item-category-243"><a href="https://pulpmx.com/category/video-on-location/">On Location</a></li>
	<li id="menu-item-78559" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-78559"><a href="http://pulpmx.com/2018/03/09/the-bto-sports-bottom-line-show-season-2/">The Bottom Line Show</a></li>
	<li id="menu-item-68756" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-68756 menu-item-category-215"><a href="https://pulpmx.com/category/classic-commentary/">Classic Commentary</a></li>
	<li id="menu-item-78352" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-78352"><a href="http://pulpmx.com/2018/02/23/pulpmx-showpro-archived-playlist/">PulpMX ShowPRO</a></li>
</ul>
</li>
<li id="menu-item-104166" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-104166"><a href="http://pulpmx.com/2016/04/25/shop-pulpmx-gear/">Shop</a></li>
<li id="menu-item-34672" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-34672"><a target="_blank" href="http://www.pulpmxfantasy.com">PulpMX Fantasy</a></li>
</ul>								</nav>
			</div>
			<div class="large-3 columns">
				<ul class="sf-menu right-menu text-right">
															</ul>
			</div>
		</div>
</div>
<!-- End Fixed Header -->
<!-- Start Header -->
<header class="header style4 dark">
	<div class="row">
		<div class="small-2 columns text-left mobile-icon-holder">
				<div class="mobile-toggle-holder">
		<div class="mobile-toggle">
			<span></span><span></span><span></span>
		</div>
	</div>
			</div>
		<div class="small-8 large-12 columns logo">
			<div id="menu_width">
				<a href="https://pulpmx.com/" class="logolink">
					<img src="http://pulpmx.com/app/uploads/2017/07/pulpmx_site_logo_2.png" class="logoimg" alt="PulpMX"/>
				</a>
				<nav class="menu-holder light menu-light">
											<ul id="menu-primary-navigation-1" class="sf-menu style3"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-170658"><a href="https://pulpmx.com/pulpmxshow/">Pulpmx Show</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-50939"><a href="https://pulpmx.com/moto60-show/">Moto:60 Show</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-30316"><a href="https://pulpmx.com/stories/">Stories</a>


<ul class="sub-menu ">
	<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-165509 menu-item-category-263"><a href="https://pulpmx.com/category/advancedanalytics/">Advanced Analytics</a></li>
	<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-31330 menu-item-category-188"><a href="https://pulpmx.com/category/classic_steel/">Classic Steel</a></li>
	<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-149819 menu-item-category-236"><a href="https://pulpmx.com/category/dv-on/">DV On</a></li>
	<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-31312 menu-item-category-182"><a href="https://pulpmx.com/category/just-short/">Just Short</a></li>
	<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-31310 menu-item-category-186"><a href="https://pulpmx.com/category/keefer-kuestions/">Keefer Kuestions</a></li>
	<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-139509 menu-item-category-208"><a href="https://pulpmx.com/category/keefer-tested/">Keefer Tested</a></li>
	<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-37030 menu-item-category-205"><a href="https://pulpmx.com/category/moservations/">Moservations</a></li>
	<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-31311 menu-item-category-180"><a href="https://pulpmx.com/category/observations/">Observations</a></li>
	<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-37031 menu-item-category-203"><a href="https://pulpmx.com/category/point-counterpoint/">Point/Counterpoint</a></li>
	<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-37029 menu-item-category-204"><a href="https://pulpmx.com/category/rapid-fire/">Rapid Fire</a></li>
	<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-31309 menu-item-category-185"><a href="https://pulpmx.com/category/swizcorner/">Swizcorner</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-30315"><a href="https://pulpmx.com/podcasts/">Podcasts</a>


<ul class="sub-menu ">
	<li class="menu-item menu-item-type-post_type menu-item-object-post menu-item-169346"><a href="https://pulpmx.com/2022/06/30/guest-podcast-archive-listing-tabbed/">Guest Podcast Archive Listing (Tabbed Years)</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-post menu-item-139510"><a href="https://pulpmx.com/2018/07/08/guest-podcast-episode-archive/">Guest-Podcast Episode Archive (Single Page List)</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-post menu-item-162795"><a href="https://pulpmx.com/2021/02/12/guest-podcast-episode-archive-2/">PulpMX Podcast Feed URLS</a></li>
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-164972"><a href="http://pulpmx.com/podcast_category/coffeewithkeefers/">Coffee with the Keefers</a></li>
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-164969"><a href="http://pulpmx.com/podcast_category/moto60/">Fly Racing Moto:60 Show</a></li>
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-164967"><a href="http://pulpmx.com/podcast_category/pulpmx/">PulpMX Show</a></li>
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-164968"><a href="http://pulpmx.com/podcast_category/reraceables/">Re-Raceables</a></li>
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-164971"><a href="http://pulpmx.com/podcast_category/keefer/">Rocky Mountain ATV/MC Keefer Tested</a></li>
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-164973"><a href="http://pulpmx.com/podcast_category/shiftinggears/">Shifting Gears: The Zach Osborne Podcast</a></li>
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-164966"><a href="http://pulpmx.com/podcast_category/steveshow/">The Steve Matthes Show</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-has-children menu-item-42919 menu-item-category-190"><a href="https://pulpmx.com/category/mxhistory/">MX History</a>


<ul class="sub-menu ">
	<li class="menu-item menu-item-type-post_type menu-item-object-post menu-item-164965"><a href="https://pulpmx.com/2021/11/19/the-oral-history-of-the-u-s-open-of-supercross/">The Oral History of the U.S. Open of Supercross</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-post menu-item-160000"><a href="https://pulpmx.com/2020/05/12/windham-the-lost-seasons/">Windham: “The Lost Seasons”</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-post menu-item-155589"><a href="https://pulpmx.com/2019/05/01/the-rise-and-fall-of-no-fear/">The Rise and Fall of No Fear</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-post menu-item-125447"><a href="https://pulpmx.com/2018/05/11/the-oral-history-of-two-two-motorsports/">The Oral History of Two Two Motorsports</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-post menu-item-31937"><a href="https://pulpmx.com/2017/02/21/fourteen-and-one/">Fourteen and One</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-post menu-item-31936"><a href="https://pulpmx.com/2017/08/17/fight-club-pastrana-langston-brown-and-a-title/">Fight Club: Pastrana, Langston, Brown and a Title</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-post menu-item-39993"><a href="https://pulpmx.com/2014/07/24/moto-xxx-the-complete-oral-history/">Moto XXX: The Complete Oral History</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-post menu-item-31938"><a href="https://pulpmx.com/2016/09/11/pro-circuit-a-season-on-the-brink/">Pro Circuit: A Season on the Brink</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-post menu-item-102052"><a href="https://pulpmx.com/2018/04/07/boy-wonder-the-eddie-hicks-story/">Boy Wonder: The Eddie Hicks Story</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-post menu-item-31939"><a href="https://pulpmx.com/2015/12/01/scott-motosports-eleven-tenths/">Scott Motosports: Eleven Tenths</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-post menu-item-151365"><a href="https://pulpmx.com/2018/08/02/inside-motocross-issue-1/">Inside Motocross Issue: 1</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-post menu-item-151366"><a href="https://pulpmx.com/2018/08/07/inside-motocross-issue-2/">Inside Motocross Issue: 2</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-post menu-item-61119"><a href="https://pulpmx.com/2013/09/17/numerology-1980-1989/">Numerology- 1980-1989</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-post menu-item-61121"><a href="https://pulpmx.com/2013/09/12/numerology-1990-1999/">Numerology- 1990-1999</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-post menu-item-61122"><a href="https://pulpmx.com/2013/09/11/numerology-2000-2009/">Numerology- 2000-2009</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-post menu-item-61120"><a href="https://pulpmx.com/2013/09/13/numerology-2010-2014/">Numerology- 2010-2014</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-32081"><a href="http://pulpmx.com/category/pulpmx-video/">Videos</a>


<ul class="sub-menu ">
	<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-78353 menu-item-category-243"><a href="https://pulpmx.com/category/video-on-location/">On Location</a></li>
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-78559"><a href="http://pulpmx.com/2018/03/09/the-bto-sports-bottom-line-show-season-2/">The Bottom Line Show</a></li>
	<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-68756 menu-item-category-215"><a href="https://pulpmx.com/category/classic-commentary/">Classic Commentary</a></li>
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-78352"><a href="http://pulpmx.com/2018/02/23/pulpmx-showpro-archived-playlist/">PulpMX ShowPRO</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-104166"><a href="http://pulpmx.com/2016/04/25/shop-pulpmx-gear/">Shop</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-34672"><a target="_blank" href="http://www.pulpmxfantasy.com">PulpMX Fantasy</a></li>
</ul>											<div class="menu-right-content">
							<div class="quick_search">
		<a href="#" class="quick_toggle"></a>
		<svg class="quick_search_icon" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="19px" height="19px" viewBox="0 0 19 19" xml:space="preserve">
	<path d="M18.96,16.896l-4.973-4.926c1.02-1.255,1.633-2.846,1.633-4.578c0-4.035-3.312-7.317-7.385-7.317S0.849,3.358,0.849,7.393
		c0,4.033,3.313,7.316,7.386,7.316c1.66,0,3.188-0.552,4.422-1.471l4.998,4.95c0.181,0.179,0.416,0.268,0.652,0.268
		c0.235,0,0.472-0.089,0.652-0.268C19.32,17.832,19.32,17.253,18.96,16.896z M2.693,7.393c0-3.027,2.485-5.489,5.542-5.489
		c3.054,0,5.541,2.462,5.541,5.489c0,3.026-2.486,5.489-5.541,5.489C5.179,12.882,2.693,10.419,2.693,7.393z"/>
</svg>		<form method="get" class="quick_searchform" role="search" action="https://pulpmx.com/">
			<input name="s" type="text" class="s">
			<input type="submit" value="Search">
		</form>
	</div>

		</div>
					</nav>
			</div>
		</div>
		<div class="small-2 columns text-right mobile-share-holder">
			<div>
				<div class="quick_search">
		<a href="#" class="quick_toggle"></a>
		<svg class="quick_search_icon" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="19px" height="19px" viewBox="0 0 19 19" xml:space="preserve">
	<path d="M18.96,16.896l-4.973-4.926c1.02-1.255,1.633-2.846,1.633-4.578c0-4.035-3.312-7.317-7.385-7.317S0.849,3.358,0.849,7.393
		c0,4.033,3.313,7.316,7.386,7.316c1.66,0,3.188-0.552,4.422-1.471l4.998,4.95c0.181,0.179,0.416,0.268,0.652,0.268
		c0.235,0,0.472-0.089,0.652-0.268C19.32,17.832,19.32,17.253,18.96,16.896z M2.693,7.393c0-3.027,2.485-5.489,5.542-5.489
		c3.054,0,5.541,2.462,5.541,5.489c0,3.026-2.486,5.489-5.541,5.489C5.179,12.882,2.693,10.419,2.693,7.393z"/>
</svg>		<form method="get" class="quick_searchform" role="search" action="https://pulpmx.com/">
			<input name="s" type="text" class="s">
			<input type="submit" value="Search">
		</form>
	</div>

				</div>
		</div>
	</div>
</header>
<!-- End Header -->

		<div role="main">

<div class="post post-detail post-275 page type-page status-publish hentry" id="post-275">
			<div class="post-content">
			<div class="row row row-fluid no-padding no-row-padding full-width-row vc_custom_1611624214013 row-has-fill"><div class="wpb_column columns small-12 medium-12"><div class="vc_column-inner  "><div class="wpb_wrapper">		<div class="slick row grid light post-carousel-style1  " data-columns="5" data-pagination="false" data-navigation="true" data-center="false">
							<div class="columns">
					<div class="post post-overlay bottom-gradient widget-overlay large-padding bottom-title post-171880 type-post status-publish format-standard has-post-thumbnail hentry category-story">
	<figure class="post-gallery">
		<a href="https://pulpmx.com/2024/05/09/fly-racing-moto60-archive-slc-sx-4/" rel="bookmark" title="Fly Racing MOTO:60 Archive- SLC SX">
						<img width="640" height="540" src="https://pulpmx.com/app/uploads/2022/09/2023-FlyMoto60-SHow-Lead-20x16.png" class="attachment-goodlife-grid-2x size-goodlife-grid-2x thb-lazyload lazyload wp-post-image" alt="" decoding="async" loading="lazy" sizes="(max-width: 640px) 100vw, 640px" data-src="https://pulpmx.com/app/uploads/2022/09/2023-FlyMoto60-SHow-Lead-640x540.png" data-sizes="auto" data-srcset="http://pulpmx.com/app/uploads/2022/09/2023-FlyMoto60-SHow-Lead-640x540.png 640w, http://pulpmx.com/app/uploads/2022/09/2023-FlyMoto60-SHow-Lead-320x270.png 320w, http://pulpmx.com/app/uploads/2022/09/2023-FlyMoto60-SHow-Lead-20x16.png 20w" />		</a>

		<header class="post-title entry-header">
						<div class="post-category"><a href="https://pulpmx.com/category/story/" class="single_category_title boxed-link category-boxed-link-191" title="Story">Story</a></div>
			<h5 class="entry-title" itemprop="name headline"><a href="https://pulpmx.com/2024/05/09/fly-racing-moto60-archive-slc-sx-4/" title="Fly Racing MOTO:60 Archive- SLC SX">Fly Racing MOTO:60 Archive- SLC SX</a></h5>				<aside class="post-bottom-meta">
				<div class="">
			<img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://pulpmx.com/app/uploads/2019/01/pmxn-150x150.png" width="48" height="48" alt="Avatar" class="avatar avatar-48 wp-user-avatar wp-user-avatar-48 photo avatar-default lazyload" />		</div>
						<strong itemprop="author" class="author vcard"><a href="https://pulpmx.com/author/steve/" title="Posts by Steve" rel="author">Steve</a></strong>
						<div class="time">May 9, 2024</div>
								</aside>
												</header>

	</figure>
</div>
				</div>
								<div class="columns">
					<div class="post post-overlay bottom-gradient widget-overlay large-padding bottom-title post-171872 type-post status-publish format-standard has-post-thumbnail hentry category-pulpmx-show-archive">
	<figure class="post-gallery">
		<a href="https://pulpmx.com/2024/05/06/dazzy-lawrence-nicoletti-hahn-brayton-weigandt-archive/" rel="bookmark" title="Dazzy Lawrence, Nicoletti, Hahn, Brayton, Weigandt Archive">
						<img width="640" height="384" src="https://pulpmx.com/app/uploads/2021/02/PR_Archive-1.png" class="attachment-goodlife-grid-2x size-goodlife-grid-2x thb-lazyload lazyload wp-post-image" alt="" decoding="async" loading="lazy" sizes="(max-width: 640px) 100vw, 640px" data-src="https://pulpmx.com/app/uploads/2021/02/PR_Archive-1.png" data-sizes="auto" data-srcset="http://pulpmx.com/app/uploads/2021/02/PR_Archive-1.png 1500w, http://pulpmx.com/app/uploads/2021/02/PR_Archive-1-768x461.png 768w, http://pulpmx.com/app/uploads/2021/02/PR_Archive-1-1024x614.png 1024w, http://pulpmx.com/app/uploads/2021/02/PR_Archive-1-770x462.png 770w" />		</a>

		<header class="post-title entry-header">
						<div class="post-category"><a href="https://pulpmx.com/category/pulpmx-show-archive/" class="single_category_title boxed-link category-boxed-link-240" title="PulpMX Show Archive">PulpMX Show Archive</a></div>
			<h5 class="entry-title" itemprop="name headline"><a href="https://pulpmx.com/2024/05/06/dazzy-lawrence-nicoletti-hahn-brayton-weigandt-archive/" title="Dazzy Lawrence, Nicoletti, Hahn, Brayton, Weigandt Archive">Dazzy Lawrence, Nicoletti, Hahn, Brayton, Weigandt Archive</a></h5>				<aside class="post-bottom-meta">
				<div class="">
			<img src="https://pulpmx.com/app/uploads/2021/01/SZF-Mark-150x150.png" width="48" height="48" alt="swizcore" class="avatar avatar-48 wp-user-avatar wp-user-avatar-48 alignnone photo thb-ignore-lazyload" />		</div>
						<strong itemprop="author" class="author vcard"><a href="https://pulpmx.com/author/swizcore/" title="Posts by swizcore" rel="author">swizcore</a></strong>
						<div class="time">May 6, 2024</div>
								</aside>
												</header>

	</figure>
</div>
				</div>
								<div class="columns">
					<div class="post post-overlay bottom-gradient widget-overlay large-padding bottom-title post-171855 type-post status-publish format-standard has-post-thumbnail hentry category-keefer-daytime">
	<figure class="post-gallery">
		<a href="https://pulpmx.com/2024/05/05/daytime-program-denver-3/" rel="bookmark" title="Daytime Program: Denver">
						<img width="640" height="540" src="https://pulpmx.com/app/uploads/2024/05/AL0_0606-20x16.jpg" class="attachment-goodlife-grid-2x size-goodlife-grid-2x thb-lazyload lazyload wp-post-image" alt="" decoding="async" loading="lazy" sizes="(max-width: 640px) 100vw, 640px" data-src="https://pulpmx.com/app/uploads/2024/05/AL0_0606-640x540.jpg" data-sizes="auto" data-srcset="http://pulpmx.com/app/uploads/2024/05/AL0_0606-640x540.jpg 640w, http://pulpmx.com/app/uploads/2024/05/AL0_0606-320x270.jpg 320w, http://pulpmx.com/app/uploads/2024/05/AL0_0606-20x16.jpg 20w" />		</a>

		<header class="post-title entry-header">
						<div class="post-category"><a href="https://pulpmx.com/category/keefer-daytime/" class="single_category_title boxed-link category-boxed-link-239" title="Keefer Daytime">Keefer Daytime</a></div>
			<h5 class="entry-title" itemprop="name headline"><a href="https://pulpmx.com/2024/05/05/daytime-program-denver-3/" title="Daytime Program: Denver">Daytime Program: Denver</a></h5>				<aside class="post-bottom-meta">
				<div class="">
			<img src="https://pulpmx.com/app/uploads/2017/12/keefer_avatar-100x100.jpg" width="48" height="48" alt="Kris Keefer" class="avatar avatar-48 wp-user-avatar wp-user-avatar-48 alignnone photo thb-ignore-lazyload" />		</div>
						<strong itemprop="author" class="author vcard"><a href="https://pulpmx.com/author/kris-keefer/" title="Posts by Kris Keefer" rel="author">Kris Keefer</a></strong>
						<div class="time">May 5, 2024</div>
								</aside>
												</header>

	</figure>
</div>
				</div>
								<div class="columns">
					<div class="post post-overlay bottom-gradient widget-overlay large-padding bottom-title post-171840 type-post status-publish format-standard has-post-thumbnail hentry category-pro-circuit-post-race-pulpcasts tag-audio tag-interview tag-race">
	<figure class="post-gallery">
		<a href="https://pulpmx.com/2024/05/04/pro-circuit-denver-sx-post-race-pulpcasts-4/" rel="bookmark" title="Pro Circuit Denver SX Post-Race PulpCasts">
						<img width="640" height="540" src="https://pulpmx.com/app/uploads/2017/12/2023-Pro-Circuit-Pulpcasts-Lead-20x16.png" class="attachment-goodlife-grid-2x size-goodlife-grid-2x thb-lazyload lazyload wp-post-image" alt="" decoding="async" loading="lazy" sizes="(max-width: 640px) 100vw, 640px" data-src="https://pulpmx.com/app/uploads/2017/12/2023-Pro-Circuit-Pulpcasts-Lead-640x540.png" data-sizes="auto" data-srcset="http://pulpmx.com/app/uploads/2017/12/2023-Pro-Circuit-Pulpcasts-Lead-640x540.png 640w, http://pulpmx.com/app/uploads/2017/12/2023-Pro-Circuit-Pulpcasts-Lead-320x270.png 320w, http://pulpmx.com/app/uploads/2017/12/2023-Pro-Circuit-Pulpcasts-Lead-20x16.png 20w" />		</a>

		<header class="post-title entry-header">
						<div class="post-category"><a href="https://pulpmx.com/category/pro-circuit-post-race-pulpcasts/" class="single_category_title boxed-link category-boxed-link-202" title="Pro Circuit Post-Race Pulpcasts">Pro Circuit Post-Race Pulpcasts</a></div>
			<h5 class="entry-title" itemprop="name headline"><a href="https://pulpmx.com/2024/05/04/pro-circuit-denver-sx-post-race-pulpcasts-4/" title="Pro Circuit Denver SX Post-Race PulpCasts">Pro Circuit Denver SX Post-Race PulpCasts</a></h5>				<aside class="post-bottom-meta">
				<div class="">
			<img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://pulpmx.com/app/uploads/2019/01/pmxn-150x150.png" width="48" height="48" alt="Avatar" class="avatar avatar-48 wp-user-avatar wp-user-avatar-48 photo avatar-default lazyload" />		</div>
						<strong itemprop="author" class="author vcard"><a href="https://pulpmx.com/author/steve/" title="Posts by Steve" rel="author">Steve</a></strong>
						<div class="time">May 4, 2024</div>
								</aside>
												</header>

	</figure>
</div>
				</div>
								<div class="columns">
					<div class="post post-overlay bottom-gradient widget-overlay large-padding bottom-title post-171834 type-post status-publish format-standard has-post-thumbnail hentry category-story">
	<figure class="post-gallery">
		<a href="https://pulpmx.com/2024/05/02/fly-racing-moto60-archive-denver-sx-4/" rel="bookmark" title="Fly Racing MOTO:60 Archive- Denver SX">
						<img width="640" height="540" src="https://pulpmx.com/app/uploads/2022/09/2023-FlyMoto60-SHow-Lead-20x16.png" class="attachment-goodlife-grid-2x size-goodlife-grid-2x thb-lazyload lazyload wp-post-image" alt="" decoding="async" loading="lazy" sizes="(max-width: 640px) 100vw, 640px" data-src="https://pulpmx.com/app/uploads/2022/09/2023-FlyMoto60-SHow-Lead-640x540.png" data-sizes="auto" data-srcset="http://pulpmx.com/app/uploads/2022/09/2023-FlyMoto60-SHow-Lead-640x540.png 640w, http://pulpmx.com/app/uploads/2022/09/2023-FlyMoto60-SHow-Lead-320x270.png 320w, http://pulpmx.com/app/uploads/2022/09/2023-FlyMoto60-SHow-Lead-20x16.png 20w" />		</a>

		<header class="post-title entry-header">
						<div class="post-category"><a href="https://pulpmx.com/category/story/" class="single_category_title boxed-link category-boxed-link-191" title="Story">Story</a></div>
			<h5 class="entry-title" itemprop="name headline"><a href="https://pulpmx.com/2024/05/02/fly-racing-moto60-archive-denver-sx-4/" title="Fly Racing MOTO:60 Archive- Denver SX">Fly Racing MOTO:60 Archive- Denver SX</a></h5>				<aside class="post-bottom-meta">
				<div class="">
			<img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://pulpmx.com/app/uploads/2019/01/pmxn-150x150.png" width="48" height="48" alt="Avatar" class="avatar avatar-48 wp-user-avatar wp-user-avatar-48 photo avatar-default lazyload" />		</div>
						<strong itemprop="author" class="author vcard"><a href="https://pulpmx.com/author/steve/" title="Posts by Steve" rel="author">Steve</a></strong>
						<div class="time">May 2, 2024</div>
								</aside>
												</header>

	</figure>
</div>
				</div>
						</div>
		
	<div class="wpb_text_column wpb_content_element   vc_custom_1580777111886">
		<div class="wpb_wrapper">
			
<section class="podcast-carousel">

    <div class="slick" data-slick='{ "slidesToShow": 3, "slidesToScroll": 3, "infinite": true, "dots":true, "centerMode":true, "centerPadding": "100px", "responsive": [{ "breakpoint": 1425, "settings": { "slidesToShow":2, "slidesToScroll": 2, "centerPadding":"50px" } },{ "breakpoint": 640, "settings": { "slidesToShow":1, "slidesToScroll": 1, "centerPadding":"50px" } }]}'>

        
  <article itemscope itemtype="http://schema.org/Article" class="podcast podcast-carousel__podcast post-171885 type-podcast status-publish hentry podcast_category-steveshow" role="article">
    <a class="podcast-carousel__item" href="https://pulpmx.com/podcast/pulpmx-fantasy-slc-sx-2024/">
      
      <div class="row no-padding">
        <div class="small-3 columns">
          <div class="podcast-carousel__image">
            <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="http://www.pulpmx.com/apptabs/img/2024TSMSPodart_231227.png" alt="The Steve Matthes Show on RacerX" class="lazyload" />
          </div>
        </div>
        <div class="small-9 columns">
                    <h3 class="podcast-carousel__subtitle trailer--none">PulpMX Fantasy:</h3>  
          <h4 class="podcast-carousel__title trailer--none">SLC SX 2024</h4>
          <p class="trailer--half">
            <span class="podcast-carousel__category">The Steve Matthes Show on RacerX</span>
            <span class="podcast-carousel__date">Published: May 09, 2024</span>
          </p>
          <div class="podcast-carousel__excerpt"></div>
        </div>
      </div>
            
    </a> <!-- /.podcast__item -->
  </article>

  
  <article itemscope itemtype="http://schema.org/Article" class="podcast podcast-carousel__podcast post-171884 type-podcast status-publish hentry podcast_category-moto60" role="article">
    <a class="podcast-carousel__item" href="https://pulpmx.com/podcast/show-305-salt-lake-city-sx-2024/">
      
      <div class="row no-padding">
        <div class="small-3 columns">
          <div class="podcast-carousel__image">
            <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="http://www.pulpmx.com/apptabs/img/2024Moto60Podart_240108.png" alt="The Fly Racing Moto:60 Show" class="lazyload" />
          </div>
        </div>
        <div class="small-9 columns">
                    <h3 class="podcast-carousel__subtitle trailer--none">Show #305:</h3>  
          <h4 class="podcast-carousel__title trailer--none">Salt Lake City SX 2024</h4>
          <p class="trailer--half">
            <span class="podcast-carousel__category">The Fly Racing Moto:60 Show</span>
            <span class="podcast-carousel__date">Published: May 09, 2024</span>
          </p>
          <div class="podcast-carousel__excerpt"></div>
        </div>
      </div>
            
    </a> <!-- /.podcast__item -->
  </article>

  
  <article itemscope itemtype="http://schema.org/Article" class="podcast podcast-carousel__podcast post-171879 type-podcast status-publish hentry podcast_category-reraceables" role="article">
    <a class="podcast-carousel__item" href="https://pulpmx.com/podcast/daytona-sx-2018/">
      
      <div class="row no-padding">
        <div class="small-3 columns">
          <div class="podcast-carousel__image">
            <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="http://www.pulpmx.com/apptabs/img/Re-raceables2023Podart.png" alt="The Re-Raceables" class="lazyload" />
          </div>
        </div>
        <div class="small-9 columns">
                    <h3 class="podcast-carousel__subtitle trailer--none">Daytona SX 2018</h3>  
          <h4 class="podcast-carousel__title trailer--none"></h4>
          <p class="trailer--half">
            <span class="podcast-carousel__category">The Re-Raceables</span>
            <span class="podcast-carousel__date">Published: May 09, 2024</span>
          </p>
          <div class="podcast-carousel__excerpt"></div>
        </div>
      </div>
            
    </a> <!-- /.podcast__item -->
  </article>

  
  <article itemscope itemtype="http://schema.org/Article" class="podcast podcast-carousel__podcast post-171878 type-podcast status-publish hentry podcast_category-steveshow" role="article">
    <a class="podcast-carousel__item" href="https://pulpmx.com/podcast/evs-sports-presents-lvk-more-than-moto-kitchen-or-hampshire/">
      
      <div class="row no-padding">
        <div class="small-3 columns">
          <div class="podcast-carousel__image">
            <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="http://www.pulpmx.com/apptabs/img/2024TSMSPodart_231227.png" alt="The Steve Matthes Show on RacerX" class="lazyload" />
          </div>
        </div>
        <div class="small-9 columns">
                    <h3 class="podcast-carousel__subtitle trailer--none">EVS Sports presents:</h3>  
          <h4 class="podcast-carousel__title trailer--none">LVK</h4>
          <p class="trailer--half">
            <span class="podcast-carousel__category">The Steve Matthes Show on RacerX</span>
            <span class="podcast-carousel__date">Published: May 08, 2024</span>
          </p>
          <div class="podcast-carousel__excerpt"></div>
        </div>
      </div>
            
    </a> <!-- /.podcast__item -->
  </article>

  
  <article itemscope itemtype="http://schema.org/Article" class="podcast podcast-carousel__podcast post-171876 type-podcast status-publish hentry podcast_category-pulpmx" role="article">
    <a class="podcast-carousel__item" href="https://pulpmx.com/podcast/show-584-darren-lawrence-phil-nicoletti-wil-hahn-keefer-with-justin-brayton-and-weege-in-studio/">
      
      <div class="row no-padding">
        <div class="small-3 columns">
          <div class="podcast-carousel__image">
            <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://pulpmx.com/apptabs/img/2021_pmxspodart_211112_1.png" alt="The PulpMX.com Show" class="lazyload" />
          </div>
        </div>
        <div class="small-9 columns">
                    <h3 class="podcast-carousel__subtitle trailer--none">Show #584:</h3>  
          <h4 class="podcast-carousel__title trailer--none">Darren Lawrence, Phil Nicoletti, Wil Hahn, Keefer with Justin Brayton and Weege In-Studio</h4>
          <p class="trailer--half">
            <span class="podcast-carousel__category">The PulpMX.com Show</span>
            <span class="podcast-carousel__date">Published: May 07, 2024</span>
          </p>
          <div class="podcast-carousel__excerpt"></div>
        </div>
      </div>
            
    </a> <!-- /.podcast__item -->
  </article>

  
  <article itemscope itemtype="http://schema.org/Article" class="podcast podcast-carousel__podcast post-171869 type-podcast status-publish hentry podcast_category-keefer" role="article">
    <a class="podcast-carousel__item" href="https://pulpmx.com/podcast/show-381-2024-ktm-350-sx-f-update-with-eric-phipps-from-works-connection/">
      
      <div class="row no-padding">
        <div class="small-3 columns">
          <div class="podcast-carousel__image">
            <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="http://www.pulpmx.com/apptabs/img/keefertested_podart_210223.png" alt="Rocky Mountain ATV/MC Keefer Tested " class="lazyload" />
          </div>
        </div>
        <div class="small-9 columns">
                    <h3 class="podcast-carousel__subtitle trailer--none">Show #381 :</h3>  
          <h4 class="podcast-carousel__title trailer--none"> 2024 KTM 350 SX-F Update With Eric Phipps From Works Connection</h4>
          <p class="trailer--half">
            <span class="podcast-carousel__category">Rocky Mountain ATV/MC Keefer Tested </span>
            <span class="podcast-carousel__date">Published: May 06, 2024</span>
          </p>
          <div class="podcast-carousel__excerpt"></div>
        </div>
      </div>
            
    </a> <!-- /.podcast__item -->
  </article>

  
  <article itemscope itemtype="http://schema.org/Article" class="podcast podcast-carousel__podcast post-171868 type-podcast status-publish hentry podcast_category-steveshow" role="article">
    <a class="podcast-carousel__item" href="https://pulpmx.com/podcast/denver-sx-2024-review/">
      
      <div class="row no-padding">
        <div class="small-3 columns">
          <div class="podcast-carousel__image">
            <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="http://www.pulpmx.com/apptabs/img/2024TSMSPodart_231227.png" alt="The Steve Matthes Show on RacerX" class="lazyload" />
          </div>
        </div>
        <div class="small-9 columns">
                    <h3 class="podcast-carousel__subtitle trailer--none">Denver SX 2024 Review:</h3>  
          <h4 class="podcast-carousel__title trailer--none"></h4>
          <p class="trailer--half">
            <span class="podcast-carousel__category">The Steve Matthes Show on RacerX</span>
            <span class="podcast-carousel__date">Published: May 06, 2024</span>
          </p>
          <div class="podcast-carousel__excerpt"></div>
        </div>
      </div>
            
    </a> <!-- /.podcast__item -->
  </article>

  
  <article itemscope itemtype="http://schema.org/Article" class="podcast podcast-carousel__podcast post-171853 type-podcast status-publish hentry podcast_category-steveshow" role="article">
    <a class="podcast-carousel__item" href="https://pulpmx.com/podcast/2024-denver-sx-post-race-interviews/">
      
      <div class="row no-padding">
        <div class="small-3 columns">
          <div class="podcast-carousel__image">
            <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="http://www.pulpmx.com/apptabs/img/2024TSMSPodart_231227.png" alt="The Steve Matthes Show on RacerX" class="lazyload" />
          </div>
        </div>
        <div class="small-9 columns">
                    <h3 class="podcast-carousel__subtitle trailer--none">2024 Denver SX Post-Race Interviews:...</h3>  
          <h4 class="podcast-carousel__title trailer--none"></h4>
          <p class="trailer--half">
            <span class="podcast-carousel__category">The Steve Matthes Show on RacerX</span>
            <span class="podcast-carousel__date">Published: May 05, 2024</span>
          </p>
          <div class="podcast-carousel__excerpt"></div>
        </div>
      </div>
            
    </a> <!-- /.podcast__item -->
  </article>

  
  <article itemscope itemtype="http://schema.org/Article" class="podcast podcast-carousel__podcast post-171839 type-podcast status-publish hentry podcast_category-steveshow" role="article">
    <a class="podcast-carousel__item" href="https://pulpmx.com/podcast/pulpmx-fantasy-denver-sx-2024/">
      
      <div class="row no-padding">
        <div class="small-3 columns">
          <div class="podcast-carousel__image">
            <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="http://www.pulpmx.com/apptabs/img/2024TSMSPodart_231227.png" alt="The Steve Matthes Show on RacerX" class="lazyload" />
          </div>
        </div>
        <div class="small-9 columns">
                    <h3 class="podcast-carousel__subtitle trailer--none">PulpMX Fantasy:</h3>  
          <h4 class="podcast-carousel__title trailer--none">Denver SX 2024</h4>
          <p class="trailer--half">
            <span class="podcast-carousel__category">The Steve Matthes Show on RacerX</span>
            <span class="podcast-carousel__date">Published: May 02, 2024</span>
          </p>
          <div class="podcast-carousel__excerpt"></div>
        </div>
      </div>
            
    </a> <!-- /.podcast__item -->
  </article>

  
  <article itemscope itemtype="http://schema.org/Article" class="podcast podcast-carousel__podcast post-171838 type-podcast status-publish hentry podcast_category-moto60" role="article">
    <a class="podcast-carousel__item" href="https://pulpmx.com/podcast/show-304-denver-sx-2024/">
      
      <div class="row no-padding">
        <div class="small-3 columns">
          <div class="podcast-carousel__image">
            <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="http://www.pulpmx.com/apptabs/img/2024Moto60Podart_240108.png" alt="The Fly Racing Moto:60 Show" class="lazyload" />
          </div>
        </div>
        <div class="small-9 columns">
                    <h3 class="podcast-carousel__subtitle trailer--none">Show #304:</h3>  
          <h4 class="podcast-carousel__title trailer--none">Denver SX 2024</h4>
          <p class="trailer--half">
            <span class="podcast-carousel__category">The Fly Racing Moto:60 Show</span>
            <span class="podcast-carousel__date">Published: May 02, 2024</span>
          </p>
          <div class="podcast-carousel__excerpt"></div>
        </div>
      </div>
            
    </a> <!-- /.podcast__item -->
  </article>

      
    </div>

</section>

		</div>
	</div>
</div></div></div><div class="wpb_column columns small-12 medium-12"><div class="vc_column-inner  "><div class="wpb_wrapper"><div class="row row vc_inner row-fluid"><div class="wpb_column columns small-12 medium-2" id="lt_banner"><div class="vc_column-inner  vc_custom_1577665535809"><div class="wpb_wrapper"><div class="vc_empty_space"   style="height: 32px"><span class="vc_empty_space_inner"></span></div>
	<div class="wpb_raw_code wpb_raw_js" id="patreon">
		<div class="wpb_wrapper">
			<!--/*
  *
  * Revive Adserver Asynchronous JS Tag
  * - Generated with Revive Adserver v4.0.2
  *
  */-->

<ins data-revive-zoneid="20" data-revive-id="24704d35ae7c298ae906cd2720f1088a"></ins>
<script async src="//pulpmx.com/adserve/www/delivery/asyncjs.php"></script>
		</div>
	</div>
</div></div></div><div class="wpb_column columns small-12 medium-8" id="ctr_banner"><div class="vc_column-inner  vc_custom_1577665733186"><div class="wpb_wrapper">
	<div class="wpb_raw_code wpb_raw_js" id="lg_banner">
		<div class="wpb_wrapper">
			<!--/*
  *
  * Revive Adserver Asynchronous JS Tag
  * - Generated with Revive Adserver v4.0.2
  *
  */-->

<ins data-revive-zoneid="19" data-revive-id="24704d35ae7c298ae906cd2720f1088a"></ins>
<script async src="//pulpmx.com/adserve/www/delivery/asyncjs.php"></script>
		</div>
	</div>
</div></div></div><div class="wpb_column columns small-12 medium-2"><div class="vc_column-inner  vc_custom_1644597623926"><div class="wpb_wrapper">
	<div class="wpb_raw_code wpb_raw_js" id="amazon">
		<div class="wpb_wrapper">
			<!--/*
  *
  * Revive Adserver Asynchronous JS Tag
  * - Generated with Revive Adserver v4.0.2
  *
  */-->

<ins data-revive-zoneid="21" data-revive-id="24704d35ae7c298ae906cd2720f1088a"></ins>
<script async src="//pulpmx.com/adserve/www/delivery/asyncjs.php"></script>
		</div>
	</div>
<div class="vc_empty_space"   style="height: 12px"><span class="vc_empty_space_inner"></span></div>
	<div class="wpb_raw_code wpb_raw_js" id="rt2_banner">
		<div class="wpb_wrapper">
			<!--/*
  *
  * Revive Adserver Asynchronous JS Tag
  * - Generated with Revive Adserver v4.0.2
  *
  */-->

<ins data-revive-zoneid="29" data-revive-id="24704d35ae7c298ae906cd2720f1088a"></ins>
<script async src="//pulpmx.com/adserve/www/delivery/asyncjs.php"></script>
		</div>
	</div>
</div></div></div></div></div></div></div></div><div class="row row row-fluid vc_custom_1513739473676"><div class="wpb_column columns small-12 medium-12"><div class="vc_column-inner  "><div class="wpb_wrapper">
	<div  class="wpb_single_image wpb_content_element vc_align_center">
		
		<figure class="wpb_wrapper vc_figure">
			<div class="vc_single_image-wrapper   vc_box_border_grey"><img width="1024" height="110" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" class="vc_single_image-img attachment-large thb-lazyload lazyload" alt="" decoding="async" loading="lazy" title="the_juice" sizes="(max-width: 1024px) 100vw, 1024px" data-src="https://pulpmx.com/app/uploads/2017/12/the_juice-1024x110.png" data-sizes="auto" data-srcset="http://pulpmx.com/app/uploads/2017/12/the_juice-1024x110.png 1024w, http://pulpmx.com/app/uploads/2017/12/the_juice-768x82.png 768w, http://pulpmx.com/app/uploads/2017/12/the_juice-770x82.png 770w, http://pulpmx.com/app/uploads/2017/12/the_juice.png 1410w" /></div>
		</figure>
	</div>
		<div class="row posts endcolumn post-grid-style4" data-loadmore="#loadmore-61" data-rand="61" data-security="3f80864080">
			
												<div class="small-6 medium-4 large-4 columns">
						<div class="post style3 style3-alt post-171807 type-post status-publish format-standard has-post-thumbnail hentry category-classic_steel tag-blazier tag-classic-steel tag-nostalgia tag-vintage">
		<figure class="post-gallery">
		<a href="https://pulpmx.com/2024/05/01/maxxis-tires-classic-steel-194-2000-honda-xr650r/" rel="bookmark" title="&#8220;Maxxis Tires&#8221; &#8211; Classic Steel #194 &#8220;2000 Honda XR650R&#8221;">
			<img width="640" height="305" src="https://pulpmx.com/app/uploads/2017/10/GP-Classic-Steel.png" class="attachment-goodlife-latestshort-2x size-goodlife-latestshort-2x thb-lazyload lazyload wp-post-image" alt="" decoding="async" loading="lazy" sizes="(max-width: 640px) 100vw, 640px" data-src="https://pulpmx.com/app/uploads/2017/10/GP-Classic-Steel.png" data-sizes="auto" data-srcset="http://pulpmx.com/app/uploads/2017/10/GP-Classic-Steel.png 880w, http://pulpmx.com/app/uploads/2017/10/GP-Classic-Steel-768x367.png 768w, http://pulpmx.com/app/uploads/2017/10/GP-Classic-Steel-770x368.png 770w" />					</a>
	</figure>
		<div class="post-category"><a href="https://pulpmx.com/category/classic_steel/" class="single_category_title category-link-188" title="Classic Steel">Classic Steel</a></div>
	<header class="post-title entry-header">
		<h5 class="entry-title" itemprop="name headline"><a href="https://pulpmx.com/2024/05/01/maxxis-tires-classic-steel-194-2000-honda-xr650r/" title="&#8220;Maxxis Tires&#8221; &#8211; Classic Steel #194 &#8220;2000 Honda XR650R&#8221;">&#8220;Maxxis Tires&#8221; &#8211; Classic Steel #194 &#8220;2000 Honda XR650R&#8221;</a></h5>	</header>
			<aside class="post-bottom-meta">
				<div class="">
			<img src="https://pulpmx.com/app/uploads/2018/01/s1600_GUYB0031-copy-150x150.jpg" width="48" height="48" alt="Tony Blazier" class="avatar avatar-48 wp-user-avatar wp-user-avatar-48 alignnone photo thb-ignore-lazyload" />		</div>
						<strong itemprop="author" class="author vcard"><a href="https://pulpmx.com/author/tony-blazier/" title="Posts by Tony Blazier" rel="author">Tony Blazier</a></strong>
						<div class="time">May 1, 2024</div>
							<span class="comment">
				<a href="https://pulpmx.com/2024/05/01/maxxis-tires-classic-steel-194-2000-honda-xr650r/#comments" title="&#8220;Maxxis Tires&#8221; &#8211; Classic Steel #194 &#8220;2000 Honda XR650R&#8221;">
					<svg class="comment_icon" width="13px" height="13px" viewBox="0 0 13 13"><use href="#comment_icon" /></svg> 2				</a>
			</span>
							</aside>
	</div>
					</div>
										
												<div class="small-6 medium-4 large-4 columns">
						<div class="post style3 style3-alt post-171763 type-post status-publish format-standard has-post-thumbnail hentry category-keefer-tested category-story">
		<figure class="post-gallery">
		<a href="https://pulpmx.com/2024/05/01/optional-renthal-handlebar-bends-recommendations-for-your-bike-size/" rel="bookmark" title="Optional Renthal Handlebar Bends/Recommendations For Your Bike/Size">
			<img width="640" height="340" src="https://pulpmx.com/app/uploads/2024/04/AV-airpport-10-819x1024-1-20x10.jpeg" class="attachment-goodlife-latestshort-2x size-goodlife-latestshort-2x thb-lazyload lazyload wp-post-image" alt="" decoding="async" loading="lazy" sizes="(max-width: 640px) 100vw, 640px" data-src="https://pulpmx.com/app/uploads/2024/04/AV-airpport-10-819x1024-1-640x340.jpeg" data-sizes="auto" data-srcset="http://pulpmx.com/app/uploads/2024/04/AV-airpport-10-819x1024-1-640x340.jpeg 640w, http://pulpmx.com/app/uploads/2024/04/AV-airpport-10-819x1024-1-320x170.jpeg 320w, http://pulpmx.com/app/uploads/2024/04/AV-airpport-10-819x1024-1-20x10.jpeg 20w" />					</a>
	</figure>
		<div class="post-category"><a href="https://pulpmx.com/category/keefer-tested/" class="single_category_title category-link-208" title="Keefer Tested">Keefer Tested</a></div>
	<header class="post-title entry-header">
		<h5 class="entry-title" itemprop="name headline"><a href="https://pulpmx.com/2024/05/01/optional-renthal-handlebar-bends-recommendations-for-your-bike-size/" title="Optional Renthal Handlebar Bends/Recommendations For Your Bike/Size">Optional Renthal Handlebar Bends/Recommendations For Your Bike/Size</a></h5>	</header>
			<aside class="post-bottom-meta">
				<div class="">
			<img src="https://pulpmx.com/app/uploads/2017/12/keefer_avatar-100x100.jpg" width="48" height="48" alt="Kris Keefer" class="avatar avatar-48 wp-user-avatar wp-user-avatar-48 alignnone photo thb-ignore-lazyload" />		</div>
						<strong itemprop="author" class="author vcard"><a href="https://pulpmx.com/author/kris-keefer/" title="Posts by Kris Keefer" rel="author">Kris Keefer</a></strong>
						<div class="time">May 1, 2024</div>
							<span class="comment">
				<a href="https://pulpmx.com/2024/05/01/optional-renthal-handlebar-bends-recommendations-for-your-bike-size/#comments" title="Optional Renthal Handlebar Bends/Recommendations For Your Bike/Size">
					<svg class="comment_icon" width="13px" height="13px" viewBox="0 0 13 13"><use href="#comment_icon" /></svg> 1				</a>
			</span>
							</aside>
	</div>
					</div>
										
												<div class="small-6 medium-4 large-4 columns">
						<div class="post style3 style3-alt post-171775 type-post status-publish format-standard has-post-thumbnail hentry category-super-stats">
		<figure class="post-gallery">
		<a href="https://pulpmx.com/2024/04/29/super-stats-single-season-laps-led-records-and-how-2024-compares-so-far/" rel="bookmark" title="Super Stats: Single Season Laps Led Records and How 2024 Compares (So Far)">
			<img width="640" height="340" src="https://pulpmx.com/app/uploads/2023/10/Super-Stats-1-20x10.png" class="attachment-goodlife-latestshort-2x size-goodlife-latestshort-2x thb-lazyload lazyload wp-post-image" alt="" decoding="async" loading="lazy" sizes="(max-width: 640px) 100vw, 640px" data-src="https://pulpmx.com/app/uploads/2023/10/Super-Stats-1-640x340.png" data-sizes="auto" data-srcset="http://pulpmx.com/app/uploads/2023/10/Super-Stats-1-640x340.png 640w, http://pulpmx.com/app/uploads/2023/10/Super-Stats-1-320x170.png 320w, http://pulpmx.com/app/uploads/2023/10/Super-Stats-1-20x10.png 20w" />					</a>
	</figure>
		<div class="post-category"><a href="https://pulpmx.com/category/super-stats/" class="single_category_title category-link-267" title="Super Stats">Super Stats</a></div>
	<header class="post-title entry-header">
		<h5 class="entry-title" itemprop="name headline"><a href="https://pulpmx.com/2024/04/29/super-stats-single-season-laps-led-records-and-how-2024-compares-so-far/" title="Super Stats: Single Season Laps Led Records and How 2024 Compares (So Far)">Super Stats: Single Season Laps Led Records and How 2024 Compares (So Far)</a></h5>	</header>
			<aside class="post-bottom-meta">
				<div class="">
			<img src="https://pulpmx.com/app/uploads/2023/09/MX-Reference-logos-150x150.jpeg" width="48" height="48" alt="Nick Taylor" class="avatar avatar-48 wp-user-avatar wp-user-avatar-48 alignnone photo thb-ignore-lazyload" />		</div>
						<strong itemprop="author" class="author vcard"><a href="https://pulpmx.com/author/mx-reference/" title="Posts by Nick Taylor" rel="author">Nick Taylor</a></strong>
						<div class="time">April 29, 2024</div>
							<span class="comment">
				<a href="https://pulpmx.com/2024/04/29/super-stats-single-season-laps-led-records-and-how-2024-compares-so-far/#respond" title="Super Stats: Single Season Laps Led Records and How 2024 Compares (So Far)">
					<svg class="comment_icon" width="13px" height="13px" viewBox="0 0 13 13"><use href="#comment_icon" /></svg> 0				</a>
			</span>
							</aside>
	</div>
					</div>
										
												<div class="small-6 medium-4 large-4 columns">
						<div class="post style3 style3-alt post-171798 type-post status-publish format-standard has-post-thumbnail hentry category-pulpmx-show-archive">
		<figure class="post-gallery">
		<a href="https://pulpmx.com/2024/04/29/mookie-bennick-rodbell-payton-archive/" rel="bookmark" title="Mookie, Bennick, Rodbell, Payton Archive">
			<img width="567" height="340" src="https://pulpmx.com/app/uploads/2021/02/PR_Archive-1.png" class="attachment-goodlife-latestshort-2x size-goodlife-latestshort-2x thb-lazyload lazyload wp-post-image" alt="" decoding="async" loading="lazy" sizes="(max-width: 567px) 100vw, 567px" data-src="https://pulpmx.com/app/uploads/2021/02/PR_Archive-1.png" data-sizes="auto" data-srcset="http://pulpmx.com/app/uploads/2021/02/PR_Archive-1.png 1500w, http://pulpmx.com/app/uploads/2021/02/PR_Archive-1-768x461.png 768w, http://pulpmx.com/app/uploads/2021/02/PR_Archive-1-1024x614.png 1024w, http://pulpmx.com/app/uploads/2021/02/PR_Archive-1-770x462.png 770w" />					</a>
	</figure>
		<div class="post-category"><a href="https://pulpmx.com/category/pulpmx-show-archive/" class="single_category_title category-link-240" title="PulpMX Show Archive">PulpMX Show Archive</a></div>
	<header class="post-title entry-header">
		<h5 class="entry-title" itemprop="name headline"><a href="https://pulpmx.com/2024/04/29/mookie-bennick-rodbell-payton-archive/" title="Mookie, Bennick, Rodbell, Payton Archive">Mookie, Bennick, Rodbell, Payton Archive</a></h5>	</header>
			<aside class="post-bottom-meta">
				<div class="">
			<img src="https://pulpmx.com/app/uploads/2021/01/SZF-Mark-150x150.png" width="48" height="48" alt="swizcore" class="avatar avatar-48 wp-user-avatar wp-user-avatar-48 alignnone photo thb-ignore-lazyload" />		</div>
						<strong itemprop="author" class="author vcard"><a href="https://pulpmx.com/author/swizcore/" title="Posts by swizcore" rel="author">swizcore</a></strong>
						<div class="time">April 29, 2024</div>
							<span class="comment">
				<a href="https://pulpmx.com/2024/04/29/mookie-bennick-rodbell-payton-archive/#respond" title="Mookie, Bennick, Rodbell, Payton Archive">
					<svg class="comment_icon" width="13px" height="13px" viewBox="0 0 13 13"><use href="#comment_icon" /></svg> 0				</a>
			</span>
							</aside>
	</div>
					</div>
										
												<div class="small-6 medium-4 large-4 columns">
						<div class="post style3 style3-alt post-171754 type-post status-publish format-standard has-post-thumbnail hentry category-keefer-daytime">
		<figure class="post-gallery">
		<a href="https://pulpmx.com/2024/04/28/daytime-program-philly/" rel="bookmark" title="Daytime Program: Philly">
			<img width="640" height="340" src="https://pulpmx.com/app/uploads/2024/04/AL0_2055-20x10.jpg" class="attachment-goodlife-latestshort-2x size-goodlife-latestshort-2x thb-lazyload lazyload wp-post-image" alt="" decoding="async" loading="lazy" sizes="(max-width: 640px) 100vw, 640px" data-src="https://pulpmx.com/app/uploads/2024/04/AL0_2055-640x340.jpg" data-sizes="auto" data-srcset="http://pulpmx.com/app/uploads/2024/04/AL0_2055-640x340.jpg 640w, http://pulpmx.com/app/uploads/2024/04/AL0_2055-320x170.jpg 320w, http://pulpmx.com/app/uploads/2024/04/AL0_2055-20x10.jpg 20w" />					</a>
	</figure>
		<div class="post-category"><a href="https://pulpmx.com/category/keefer-daytime/" class="single_category_title category-link-239" title="Keefer Daytime">Keefer Daytime</a></div>
	<header class="post-title entry-header">
		<h5 class="entry-title" itemprop="name headline"><a href="https://pulpmx.com/2024/04/28/daytime-program-philly/" title="Daytime Program: Philly">Daytime Program: Philly</a></h5>	</header>
			<aside class="post-bottom-meta">
				<div class="">
			<img src="https://pulpmx.com/app/uploads/2017/12/keefer_avatar-100x100.jpg" width="48" height="48" alt="Kris Keefer" class="avatar avatar-48 wp-user-avatar wp-user-avatar-48 alignnone photo thb-ignore-lazyload" />		</div>
						<strong itemprop="author" class="author vcard"><a href="https://pulpmx.com/author/kris-keefer/" title="Posts by Kris Keefer" rel="author">Kris Keefer</a></strong>
						<div class="time">April 28, 2024</div>
							<span class="comment">
				<a href="https://pulpmx.com/2024/04/28/daytime-program-philly/#respond" title="Daytime Program: Philly">
					<svg class="comment_icon" width="13px" height="13px" viewBox="0 0 13 13"><use href="#comment_icon" /></svg> 0				</a>
			</span>
							</aside>
	</div>
					</div>
										
												<div class="small-6 medium-4 large-4 columns">
						<div class="post style3 style3-alt post-171737 type-post status-publish format-standard has-post-thumbnail hentry category-pro-circuit-post-race-pulpcasts tag-audio tag-interview tag-race">
		<figure class="post-gallery">
		<a href="https://pulpmx.com/2024/04/27/pro-circuit-philadephia-sx-post-race-pulpcasts/" rel="bookmark" title="Pro Circuit Philadephia SX Post-Race PulpCasts">
			<img width="640" height="340" src="https://pulpmx.com/app/uploads/2017/12/2023-Pro-Circuit-Pulpcasts-Lead-20x10.png" class="attachment-goodlife-latestshort-2x size-goodlife-latestshort-2x thb-lazyload lazyload wp-post-image" alt="" decoding="async" loading="lazy" sizes="(max-width: 640px) 100vw, 640px" data-src="https://pulpmx.com/app/uploads/2017/12/2023-Pro-Circuit-Pulpcasts-Lead-640x340.png" data-sizes="auto" data-srcset="http://pulpmx.com/app/uploads/2017/12/2023-Pro-Circuit-Pulpcasts-Lead-640x340.png 640w, http://pulpmx.com/app/uploads/2017/12/2023-Pro-Circuit-Pulpcasts-Lead-320x170.png 320w, http://pulpmx.com/app/uploads/2017/12/2023-Pro-Circuit-Pulpcasts-Lead-20x10.png 20w" />					</a>
	</figure>
		<div class="post-category"><a href="https://pulpmx.com/category/pro-circuit-post-race-pulpcasts/" class="single_category_title category-link-202" title="Pro Circuit Post-Race Pulpcasts">Pro Circuit Post-Race Pulpcasts</a></div>
	<header class="post-title entry-header">
		<h5 class="entry-title" itemprop="name headline"><a href="https://pulpmx.com/2024/04/27/pro-circuit-philadephia-sx-post-race-pulpcasts/" title="Pro Circuit Philadephia SX Post-Race PulpCasts">Pro Circuit Philadephia SX Post-Race PulpCasts</a></h5>	</header>
			<aside class="post-bottom-meta">
				<div class="">
			<img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://pulpmx.com/app/uploads/2019/01/pmxn-150x150.png" width="48" height="48" alt="Avatar" class="avatar avatar-48 wp-user-avatar wp-user-avatar-48 photo avatar-default lazyload" />		</div>
						<strong itemprop="author" class="author vcard"><a href="https://pulpmx.com/author/steve/" title="Posts by Steve" rel="author">Steve</a></strong>
						<div class="time">April 27, 2024</div>
							<span class="comment">
				<a href="https://pulpmx.com/2024/04/27/pro-circuit-philadephia-sx-post-race-pulpcasts/#respond" title="Pro Circuit Philadephia SX Post-Race PulpCasts">
					<svg class="comment_icon" width="13px" height="13px" viewBox="0 0 13 13"><use href="#comment_icon" /></svg> 0				</a>
			</span>
							</aside>
	</div>
					</div>
										
												<div class="small-6 medium-4 large-4 columns">
						<div class="post style3 style3-alt post-171730 type-post status-publish format-standard has-post-thumbnail hentry category-story">
		<figure class="post-gallery">
		<a href="https://pulpmx.com/2024/04/25/fly-racing-moto60-archive-philadelphia-sx/" rel="bookmark" title="Fly Racing MOTO:60 Archive- Philadelphia SX">
			<img width="640" height="340" src="https://pulpmx.com/app/uploads/2022/09/2023-FlyMoto60-SHow-Lead-20x10.png" class="attachment-goodlife-latestshort-2x size-goodlife-latestshort-2x thb-lazyload lazyload wp-post-image" alt="" decoding="async" loading="lazy" sizes="(max-width: 640px) 100vw, 640px" data-src="https://pulpmx.com/app/uploads/2022/09/2023-FlyMoto60-SHow-Lead-640x340.png" data-sizes="auto" data-srcset="http://pulpmx.com/app/uploads/2022/09/2023-FlyMoto60-SHow-Lead-640x340.png 640w, http://pulpmx.com/app/uploads/2022/09/2023-FlyMoto60-SHow-Lead-320x170.png 320w, http://pulpmx.com/app/uploads/2022/09/2023-FlyMoto60-SHow-Lead-20x10.png 20w" />					</a>
	</figure>
		<div class="post-category"><a href="https://pulpmx.com/category/story/" class="single_category_title category-link-191" title="Story">Story</a></div>
	<header class="post-title entry-header">
		<h5 class="entry-title" itemprop="name headline"><a href="https://pulpmx.com/2024/04/25/fly-racing-moto60-archive-philadelphia-sx/" title="Fly Racing MOTO:60 Archive- Philadelphia SX">Fly Racing MOTO:60 Archive- Philadelphia SX</a></h5>	</header>
			<aside class="post-bottom-meta">
				<div class="">
			<img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://pulpmx.com/app/uploads/2019/01/pmxn-150x150.png" width="48" height="48" alt="Avatar" class="avatar avatar-48 wp-user-avatar wp-user-avatar-48 photo avatar-default lazyload" />		</div>
						<strong itemprop="author" class="author vcard"><a href="https://pulpmx.com/author/steve/" title="Posts by Steve" rel="author">Steve</a></strong>
						<div class="time">April 25, 2024</div>
							<span class="comment">
				<a href="https://pulpmx.com/2024/04/25/fly-racing-moto60-archive-philadelphia-sx/#respond" title="Fly Racing MOTO:60 Archive- Philadelphia SX">
					<svg class="comment_icon" width="13px" height="13px" viewBox="0 0 13 13"><use href="#comment_icon" /></svg> 0				</a>
			</span>
							</aside>
	</div>
					</div>
										
												<div class="small-6 medium-4 large-4 columns">
						<div class="post style3 style3-alt post-171721 type-post status-publish format-standard has-post-thumbnail hentry category-pulpmx-show-archive">
		<figure class="post-gallery">
		<a href="https://pulpmx.com/2024/04/22/hampshire-ferry-nicoletti-lil-d-archive/" rel="bookmark" title="Hampshire, Ferry, Nicoletti, Lil D Archive">
			<img width="567" height="340" src="https://pulpmx.com/app/uploads/2021/02/PR_Archive-1.png" class="attachment-goodlife-latestshort-2x size-goodlife-latestshort-2x thb-lazyload lazyload wp-post-image" alt="" decoding="async" loading="lazy" sizes="(max-width: 567px) 100vw, 567px" data-src="https://pulpmx.com/app/uploads/2021/02/PR_Archive-1.png" data-sizes="auto" data-srcset="http://pulpmx.com/app/uploads/2021/02/PR_Archive-1.png 1500w, http://pulpmx.com/app/uploads/2021/02/PR_Archive-1-768x461.png 768w, http://pulpmx.com/app/uploads/2021/02/PR_Archive-1-1024x614.png 1024w, http://pulpmx.com/app/uploads/2021/02/PR_Archive-1-770x462.png 770w" />					</a>
	</figure>
		<div class="post-category"><a href="https://pulpmx.com/category/pulpmx-show-archive/" class="single_category_title category-link-240" title="PulpMX Show Archive">PulpMX Show Archive</a></div>
	<header class="post-title entry-header">
		<h5 class="entry-title" itemprop="name headline"><a href="https://pulpmx.com/2024/04/22/hampshire-ferry-nicoletti-lil-d-archive/" title="Hampshire, Ferry, Nicoletti, Lil D Archive">Hampshire, Ferry, Nicoletti, Lil D Archive</a></h5>	</header>
			<aside class="post-bottom-meta">
				<div class="">
			<img src="https://pulpmx.com/app/uploads/2021/01/SZF-Mark-150x150.png" width="48" height="48" alt="swizcore" class="avatar avatar-48 wp-user-avatar wp-user-avatar-48 alignnone photo thb-ignore-lazyload" />		</div>
						<strong itemprop="author" class="author vcard"><a href="https://pulpmx.com/author/swizcore/" title="Posts by swizcore" rel="author">swizcore</a></strong>
						<div class="time">April 22, 2024</div>
							<span class="comment">
				<a href="https://pulpmx.com/2024/04/22/hampshire-ferry-nicoletti-lil-d-archive/#respond" title="Hampshire, Ferry, Nicoletti, Lil D Archive">
					<svg class="comment_icon" width="13px" height="13px" viewBox="0 0 13 13"><use href="#comment_icon" /></svg> 0				</a>
			</span>
							</aside>
	</div>
					</div>
										
												<div class="small-6 medium-4 large-4 columns">
						<div class="post style3 style3-alt post-171705 type-post status-publish format-standard has-post-thumbnail hentry category-keefer-daytime">
		<figure class="post-gallery">
		<a href="https://pulpmx.com/2024/04/21/daytime-program-nashville-2/" rel="bookmark" title="Daytime Program: Nashville">
			<img width="640" height="340" src="https://pulpmx.com/app/uploads/2024/04/AL1_6450-20x10.jpg" class="attachment-goodlife-latestshort-2x size-goodlife-latestshort-2x thb-lazyload lazyload wp-post-image" alt="" decoding="async" loading="lazy" sizes="(max-width: 640px) 100vw, 640px" data-src="https://pulpmx.com/app/uploads/2024/04/AL1_6450-640x340.jpg" data-sizes="auto" data-srcset="http://pulpmx.com/app/uploads/2024/04/AL1_6450-640x340.jpg 640w, http://pulpmx.com/app/uploads/2024/04/AL1_6450-320x170.jpg 320w, http://pulpmx.com/app/uploads/2024/04/AL1_6450-20x10.jpg 20w" />					</a>
	</figure>
		<div class="post-category"><a href="https://pulpmx.com/category/keefer-daytime/" class="single_category_title category-link-239" title="Keefer Daytime">Keefer Daytime</a></div>
	<header class="post-title entry-header">
		<h5 class="entry-title" itemprop="name headline"><a href="https://pulpmx.com/2024/04/21/daytime-program-nashville-2/" title="Daytime Program: Nashville">Daytime Program: Nashville</a></h5>	</header>
			<aside class="post-bottom-meta">
				<div class="">
			<img src="https://pulpmx.com/app/uploads/2017/12/keefer_avatar-100x100.jpg" width="48" height="48" alt="Kris Keefer" class="avatar avatar-48 wp-user-avatar wp-user-avatar-48 alignnone photo thb-ignore-lazyload" />		</div>
						<strong itemprop="author" class="author vcard"><a href="https://pulpmx.com/author/kris-keefer/" title="Posts by Kris Keefer" rel="author">Kris Keefer</a></strong>
						<div class="time">April 21, 2024</div>
							<span class="comment">
				<a href="https://pulpmx.com/2024/04/21/daytime-program-nashville-2/#respond" title="Daytime Program: Nashville">
					<svg class="comment_icon" width="13px" height="13px" viewBox="0 0 13 13"><use href="#comment_icon" /></svg> 0				</a>
			</span>
							</aside>
	</div>
					</div>
										
												<div class="small-6 medium-4 large-4 columns">
						<div class="post style3 style3-alt post-171692 type-post status-publish format-standard has-post-thumbnail hentry category-classic_steel tag-blazier tag-classic-steel tag-nostalgia tag-vintage">
		<figure class="post-gallery">
		<a href="https://pulpmx.com/2024/04/18/maxxis-tires-classic-ink-58-1980-suzuki-mx-and-off-road-lineup/" rel="bookmark" title="&#8220;Maxxis Tires&#8221; &#8211; Classic Ink #58 &#8220;1980 Suzuki MX and Off-Road Lineup&#8221;">
			<img width="640" height="305" src="https://pulpmx.com/app/uploads/2017/10/GP-Classic-Steel.png" class="attachment-goodlife-latestshort-2x size-goodlife-latestshort-2x thb-lazyload lazyload wp-post-image" alt="" decoding="async" loading="lazy" sizes="(max-width: 640px) 100vw, 640px" data-src="https://pulpmx.com/app/uploads/2017/10/GP-Classic-Steel.png" data-sizes="auto" data-srcset="http://pulpmx.com/app/uploads/2017/10/GP-Classic-Steel.png 880w, http://pulpmx.com/app/uploads/2017/10/GP-Classic-Steel-768x367.png 768w, http://pulpmx.com/app/uploads/2017/10/GP-Classic-Steel-770x368.png 770w" />					</a>
	</figure>
		<div class="post-category"><a href="https://pulpmx.com/category/classic_steel/" class="single_category_title category-link-188" title="Classic Steel">Classic Steel</a></div>
	<header class="post-title entry-header">
		<h5 class="entry-title" itemprop="name headline"><a href="https://pulpmx.com/2024/04/18/maxxis-tires-classic-ink-58-1980-suzuki-mx-and-off-road-lineup/" title="&#8220;Maxxis Tires&#8221; &#8211; Classic Ink #58 &#8220;1980 Suzuki MX and Off-Road Lineup&#8221;">&#8220;Maxxis Tires&#8221; &#8211; Classic Ink #58 &#8220;1980 Suzuki MX and Off-Road Lineup&#8221;</a></h5>	</header>
			<aside class="post-bottom-meta">
				<div class="">
			<img src="https://pulpmx.com/app/uploads/2018/01/s1600_GUYB0031-copy-150x150.jpg" width="48" height="48" alt="Tony Blazier" class="avatar avatar-48 wp-user-avatar wp-user-avatar-48 alignnone photo thb-ignore-lazyload" />		</div>
						<strong itemprop="author" class="author vcard"><a href="https://pulpmx.com/author/tony-blazier/" title="Posts by Tony Blazier" rel="author">Tony Blazier</a></strong>
						<div class="time">April 18, 2024</div>
							<span class="comment">
				<a href="https://pulpmx.com/2024/04/18/maxxis-tires-classic-ink-58-1980-suzuki-mx-and-off-road-lineup/#respond" title="&#8220;Maxxis Tires&#8221; &#8211; Classic Ink #58 &#8220;1980 Suzuki MX and Off-Road Lineup&#8221;">
					<svg class="comment_icon" width="13px" height="13px" viewBox="0 0 13 13"><use href="#comment_icon" /></svg> 0				</a>
			</span>
							</aside>
	</div>
					</div>
										
												<div class="small-6 medium-4 large-4 columns">
						<div class="post style3 style3-alt post-171686 type-post status-publish format-standard has-post-thumbnail hentry category-story">
		<figure class="post-gallery">
		<a href="https://pulpmx.com/2024/04/18/fly-racing-moto60-archive-nashville-sx-2/" rel="bookmark" title="Fly Racing MOTO:60 Archive- Nashville SX">
			<img width="640" height="340" src="https://pulpmx.com/app/uploads/2022/09/2023-FlyMoto60-SHow-Lead-20x10.png" class="attachment-goodlife-latestshort-2x size-goodlife-latestshort-2x thb-lazyload lazyload wp-post-image" alt="" decoding="async" loading="lazy" sizes="(max-width: 640px) 100vw, 640px" data-src="https://pulpmx.com/app/uploads/2022/09/2023-FlyMoto60-SHow-Lead-640x340.png" data-sizes="auto" data-srcset="http://pulpmx.com/app/uploads/2022/09/2023-FlyMoto60-SHow-Lead-640x340.png 640w, http://pulpmx.com/app/uploads/2022/09/2023-FlyMoto60-SHow-Lead-320x170.png 320w, http://pulpmx.com/app/uploads/2022/09/2023-FlyMoto60-SHow-Lead-20x10.png 20w" />					</a>
	</figure>
		<div class="post-category"><a href="https://pulpmx.com/category/story/" class="single_category_title category-link-191" title="Story">Story</a></div>
	<header class="post-title entry-header">
		<h5 class="entry-title" itemprop="name headline"><a href="https://pulpmx.com/2024/04/18/fly-racing-moto60-archive-nashville-sx-2/" title="Fly Racing MOTO:60 Archive- Nashville SX">Fly Racing MOTO:60 Archive- Nashville SX</a></h5>	</header>
			<aside class="post-bottom-meta">
				<div class="">
			<img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://pulpmx.com/app/uploads/2019/01/pmxn-150x150.png" width="48" height="48" alt="Avatar" class="avatar avatar-48 wp-user-avatar wp-user-avatar-48 photo avatar-default lazyload" />		</div>
						<strong itemprop="author" class="author vcard"><a href="https://pulpmx.com/author/steve/" title="Posts by Steve" rel="author">Steve</a></strong>
						<div class="time">April 18, 2024</div>
							<span class="comment">
				<a href="https://pulpmx.com/2024/04/18/fly-racing-moto60-archive-nashville-sx-2/#respond" title="Fly Racing MOTO:60 Archive- Nashville SX">
					<svg class="comment_icon" width="13px" height="13px" viewBox="0 0 13 13"><use href="#comment_icon" /></svg> 0				</a>
			</span>
							</aside>
	</div>
					</div>
										
												<div class="small-6 medium-4 large-4 columns">
						<div class="post style3 style3-alt post-171674 type-post status-publish format-standard has-post-thumbnail hentry category-pulpmx-show-archive">
		<figure class="post-gallery">
		<a href="https://pulpmx.com/2024/04/15/musquin-lindstrom-schock-jonass-phillips-brauer-archive/" rel="bookmark" title="Musquin, Lindstrom, Schock, Jonass, Phillips, Brauer Archive">
			<img width="567" height="340" src="https://pulpmx.com/app/uploads/2021/02/PR_Archive-1.png" class="attachment-goodlife-latestshort-2x size-goodlife-latestshort-2x thb-lazyload lazyload wp-post-image" alt="" decoding="async" loading="lazy" sizes="(max-width: 567px) 100vw, 567px" data-src="https://pulpmx.com/app/uploads/2021/02/PR_Archive-1.png" data-sizes="auto" data-srcset="http://pulpmx.com/app/uploads/2021/02/PR_Archive-1.png 1500w, http://pulpmx.com/app/uploads/2021/02/PR_Archive-1-768x461.png 768w, http://pulpmx.com/app/uploads/2021/02/PR_Archive-1-1024x614.png 1024w, http://pulpmx.com/app/uploads/2021/02/PR_Archive-1-770x462.png 770w" />					</a>
	</figure>
		<div class="post-category"><a href="https://pulpmx.com/category/pulpmx-show-archive/" class="single_category_title category-link-240" title="PulpMX Show Archive">PulpMX Show Archive</a></div>
	<header class="post-title entry-header">
		<h5 class="entry-title" itemprop="name headline"><a href="https://pulpmx.com/2024/04/15/musquin-lindstrom-schock-jonass-phillips-brauer-archive/" title="Musquin, Lindstrom, Schock, Jonass, Phillips, Brauer Archive">Musquin, Lindstrom, Schock, Jonass, Phillips, Brauer Archive</a></h5>	</header>
			<aside class="post-bottom-meta">
				<div class="">
			<img src="https://pulpmx.com/app/uploads/2021/01/SZF-Mark-150x150.png" width="48" height="48" alt="swizcore" class="avatar avatar-48 wp-user-avatar wp-user-avatar-48 alignnone photo thb-ignore-lazyload" />		</div>
						<strong itemprop="author" class="author vcard"><a href="https://pulpmx.com/author/swizcore/" title="Posts by swizcore" rel="author">swizcore</a></strong>
						<div class="time">April 15, 2024</div>
							<span class="comment">
				<a href="https://pulpmx.com/2024/04/15/musquin-lindstrom-schock-jonass-phillips-brauer-archive/#respond" title="Musquin, Lindstrom, Schock, Jonass, Phillips, Brauer Archive">
					<svg class="comment_icon" width="13px" height="13px" viewBox="0 0 13 13"><use href="#comment_icon" /></svg> 0				</a>
			</span>
							</aside>
	</div>
					</div>
										
												<div class="small-6 medium-4 large-4 columns">
						<div class="post style3 style3-alt post-171658 type-post status-publish format-standard has-post-thumbnail hentry category-keefer-daytime">
		<figure class="post-gallery">
		<a href="https://pulpmx.com/2024/04/14/daytime-program-foxborough-2/" rel="bookmark" title="Daytime Program: Foxborough">
			<img width="640" height="340" src="https://pulpmx.com/app/uploads/2024/04/AL0_4596-20x10.jpg" class="attachment-goodlife-latestshort-2x size-goodlife-latestshort-2x thb-lazyload lazyload wp-post-image" alt="" decoding="async" loading="lazy" sizes="(max-width: 640px) 100vw, 640px" data-src="https://pulpmx.com/app/uploads/2024/04/AL0_4596-640x340.jpg" data-sizes="auto" data-srcset="http://pulpmx.com/app/uploads/2024/04/AL0_4596-640x340.jpg 640w, http://pulpmx.com/app/uploads/2024/04/AL0_4596-320x170.jpg 320w, http://pulpmx.com/app/uploads/2024/04/AL0_4596-20x10.jpg 20w" />					</a>
	</figure>
		<div class="post-category"><a href="https://pulpmx.com/category/keefer-daytime/" class="single_category_title category-link-239" title="Keefer Daytime">Keefer Daytime</a></div>
	<header class="post-title entry-header">
		<h5 class="entry-title" itemprop="name headline"><a href="https://pulpmx.com/2024/04/14/daytime-program-foxborough-2/" title="Daytime Program: Foxborough">Daytime Program: Foxborough</a></h5>	</header>
			<aside class="post-bottom-meta">
				<div class="">
			<img src="https://pulpmx.com/app/uploads/2017/12/keefer_avatar-100x100.jpg" width="48" height="48" alt="Kris Keefer" class="avatar avatar-48 wp-user-avatar wp-user-avatar-48 alignnone photo thb-ignore-lazyload" />		</div>
						<strong itemprop="author" class="author vcard"><a href="https://pulpmx.com/author/kris-keefer/" title="Posts by Kris Keefer" rel="author">Kris Keefer</a></strong>
						<div class="time">April 14, 2024</div>
							<span class="comment">
				<a href="https://pulpmx.com/2024/04/14/daytime-program-foxborough-2/#respond" title="Daytime Program: Foxborough">
					<svg class="comment_icon" width="13px" height="13px" viewBox="0 0 13 13"><use href="#comment_icon" /></svg> 0				</a>
			</span>
							</aside>
	</div>
					</div>
										
												<div class="small-6 medium-4 large-4 columns">
						<div class="post style3 style3-alt post-171646 type-post status-publish format-standard has-post-thumbnail hentry category-pro-circuit-post-race-pulpcasts tag-audio tag-interview tag-race">
		<figure class="post-gallery">
		<a href="https://pulpmx.com/2024/04/13/pro-circuit-foxborough-sx-post-race-pulpcasts/" rel="bookmark" title="Pro Circuit Foxborough SX Post-Race PulpCasts">
			<img width="640" height="340" src="https://pulpmx.com/app/uploads/2017/12/2023-Pro-Circuit-Pulpcasts-Lead-20x10.png" class="attachment-goodlife-latestshort-2x size-goodlife-latestshort-2x thb-lazyload lazyload wp-post-image" alt="" decoding="async" loading="lazy" sizes="(max-width: 640px) 100vw, 640px" data-src="https://pulpmx.com/app/uploads/2017/12/2023-Pro-Circuit-Pulpcasts-Lead-640x340.png" data-sizes="auto" data-srcset="http://pulpmx.com/app/uploads/2017/12/2023-Pro-Circuit-Pulpcasts-Lead-640x340.png 640w, http://pulpmx.com/app/uploads/2017/12/2023-Pro-Circuit-Pulpcasts-Lead-320x170.png 320w, http://pulpmx.com/app/uploads/2017/12/2023-Pro-Circuit-Pulpcasts-Lead-20x10.png 20w" />					</a>
	</figure>
		<div class="post-category"><a href="https://pulpmx.com/category/pro-circuit-post-race-pulpcasts/" class="single_category_title category-link-202" title="Pro Circuit Post-Race Pulpcasts">Pro Circuit Post-Race Pulpcasts</a></div>
	<header class="post-title entry-header">
		<h5 class="entry-title" itemprop="name headline"><a href="https://pulpmx.com/2024/04/13/pro-circuit-foxborough-sx-post-race-pulpcasts/" title="Pro Circuit Foxborough SX Post-Race PulpCasts">Pro Circuit Foxborough SX Post-Race PulpCasts</a></h5>	</header>
			<aside class="post-bottom-meta">
				<div class="">
			<img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://pulpmx.com/app/uploads/2019/01/pmxn-150x150.png" width="48" height="48" alt="Avatar" class="avatar avatar-48 wp-user-avatar wp-user-avatar-48 photo avatar-default lazyload" />		</div>
						<strong itemprop="author" class="author vcard"><a href="https://pulpmx.com/author/steve/" title="Posts by Steve" rel="author">Steve</a></strong>
						<div class="time">April 13, 2024</div>
							<span class="comment">
				<a href="https://pulpmx.com/2024/04/13/pro-circuit-foxborough-sx-post-race-pulpcasts/#respond" title="Pro Circuit Foxborough SX Post-Race PulpCasts">
					<svg class="comment_icon" width="13px" height="13px" viewBox="0 0 13 13"><use href="#comment_icon" /></svg> 0				</a>
			</span>
							</aside>
	</div>
					</div>
										
												<div class="small-6 medium-4 large-4 columns">
						<div class="post style3 style3-alt post-171641 type-post status-publish format-standard has-post-thumbnail hentry category-story">
		<figure class="post-gallery">
		<a href="https://pulpmx.com/2024/04/11/fly-racing-moto60-archive-foxborough-sx/" rel="bookmark" title="Fly Racing MOTO:60 Archive- Foxborough SX">
			<img width="640" height="340" src="https://pulpmx.com/app/uploads/2022/09/2023-FlyMoto60-SHow-Lead-20x10.png" class="attachment-goodlife-latestshort-2x size-goodlife-latestshort-2x thb-lazyload lazyload wp-post-image" alt="" decoding="async" loading="lazy" sizes="(max-width: 640px) 100vw, 640px" data-src="https://pulpmx.com/app/uploads/2022/09/2023-FlyMoto60-SHow-Lead-640x340.png" data-sizes="auto" data-srcset="http://pulpmx.com/app/uploads/2022/09/2023-FlyMoto60-SHow-Lead-640x340.png 640w, http://pulpmx.com/app/uploads/2022/09/2023-FlyMoto60-SHow-Lead-320x170.png 320w, http://pulpmx.com/app/uploads/2022/09/2023-FlyMoto60-SHow-Lead-20x10.png 20w" />					</a>
	</figure>
		<div class="post-category"><a href="https://pulpmx.com/category/story/" class="single_category_title category-link-191" title="Story">Story</a></div>
	<header class="post-title entry-header">
		<h5 class="entry-title" itemprop="name headline"><a href="https://pulpmx.com/2024/04/11/fly-racing-moto60-archive-foxborough-sx/" title="Fly Racing MOTO:60 Archive- Foxborough SX">Fly Racing MOTO:60 Archive- Foxborough SX</a></h5>	</header>
			<aside class="post-bottom-meta">
				<div class="">
			<img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://pulpmx.com/app/uploads/2019/01/pmxn-150x150.png" width="48" height="48" alt="Avatar" class="avatar avatar-48 wp-user-avatar wp-user-avatar-48 photo avatar-default lazyload" />		</div>
						<strong itemprop="author" class="author vcard"><a href="https://pulpmx.com/author/steve/" title="Posts by Steve" rel="author">Steve</a></strong>
						<div class="time">April 11, 2024</div>
							<span class="comment">
				<a href="https://pulpmx.com/2024/04/11/fly-racing-moto60-archive-foxborough-sx/#respond" title="Fly Racing MOTO:60 Archive- Foxborough SX">
					<svg class="comment_icon" width="13px" height="13px" viewBox="0 0 13 13"><use href="#comment_icon" /></svg> 0				</a>
			</span>
							</aside>
	</div>
					</div>
															</div>

		<aside class="gap cf" style="height:10px;"></aside><div class="row row vc_inner row-fluid"><div class="wpb_column columns small-12 medium-2"><div class="vc_column-inner  "><div class="wpb_wrapper"></div></div></div><div class="wpb_column columns small-12 medium-8"><div class="vc_column-inner  "><div class="wpb_wrapper">
	<div class="wpb_raw_code wpb_raw_js" >
		<div class="wpb_wrapper">
			<!--/*
  *
  * Revive Adserver Asynchronous JS Tag
  * - Generated with Revive Adserver v4.0.2
  *
  */-->

<ins data-revive-zoneid="24" data-revive-id="24704d35ae7c298ae906cd2720f1088a"></ins>
<script async src="//pulpmx.com/adserve/www/delivery/asyncjs.php"></script>
		</div>
	</div>
</div></div></div><div class="wpb_column columns small-12 medium-2"><div class="vc_column-inner  "><div class="wpb_wrapper"></div></div></div></div><aside class="gap cf" style="height:50px;"></aside></div></div></div></div><div class="row row row-fluid full-width-row vc_custom_1515198149907 row-has-fill row-o-content-middle row-flex"><div class="wpb_column columns small-12 medium-12 large-push-0 medium-push-0 small-12 medium-push-0 small-12"><div class="vc_column-inner  "><div class="wpb_wrapper">		<div class="row posts endcolumn post-grid-style4 pagination-style1 ajaxify-pagination" data-loadmore="#loadmore-66" data-rand="66" data-security="3f80864080">
			
												<div class="small-6 medium-6 thb-5 columns">
						<div class="post style3 style3-alt post-171606 type-post status-publish format-standard has-post-thumbnail hentry category-super-stats">
		<figure class="post-gallery">
		<a href="https://pulpmx.com/2024/04/10/super-stats-who-has-gained-lost-the-most-positions-on-lap-1-in-2024/" rel="bookmark" title="Super Stats: Who has gained/lost the most positions on Lap 1 in 2024?">
			<img width="640" height="340" src="https://pulpmx.com/app/uploads/2023/10/Super-Stats-1-20x10.png" class="attachment-goodlife-latestshort-2x size-goodlife-latestshort-2x thb-lazyload lazyload wp-post-image" alt="" decoding="async" loading="lazy" sizes="(max-width: 640px) 100vw, 640px" data-src="https://pulpmx.com/app/uploads/2023/10/Super-Stats-1-640x340.png" data-sizes="auto" data-srcset="http://pulpmx.com/app/uploads/2023/10/Super-Stats-1-640x340.png 640w, http://pulpmx.com/app/uploads/2023/10/Super-Stats-1-320x170.png 320w, http://pulpmx.com/app/uploads/2023/10/Super-Stats-1-20x10.png 20w" />					</a>
	</figure>
		<div class="post-category"><a href="https://pulpmx.com/category/super-stats/" class="single_category_title category-link-267" title="Super Stats">Super Stats</a></div>
	<header class="post-title entry-header">
		<h5 class="entry-title" itemprop="name headline"><a href="https://pulpmx.com/2024/04/10/super-stats-who-has-gained-lost-the-most-positions-on-lap-1-in-2024/" title="Super Stats: Who has gained/lost the most positions on Lap 1 in 2024?">Super Stats: Who has gained/lost the most positions on Lap 1 in 2024?</a></h5>	</header>
			<aside class="post-bottom-meta">
				<div class="">
			<img src="https://pulpmx.com/app/uploads/2023/09/MX-Reference-logos-150x150.jpeg" width="48" height="48" alt="Nick Taylor" class="avatar avatar-48 wp-user-avatar wp-user-avatar-48 alignnone photo thb-ignore-lazyload" />		</div>
						<strong itemprop="author" class="author vcard"><a href="https://pulpmx.com/author/mx-reference/" title="Posts by Nick Taylor" rel="author">Nick Taylor</a></strong>
						<div class="time">April 10, 2024</div>
							<span class="comment">
				<a href="https://pulpmx.com/2024/04/10/super-stats-who-has-gained-lost-the-most-positions-on-lap-1-in-2024/#respond" title="Super Stats: Who has gained/lost the most positions on Lap 1 in 2024?">
					<svg class="comment_icon" width="13px" height="13px" viewBox="0 0 13 13"><use href="#comment_icon" /></svg> 0				</a>
			</span>
							</aside>
	</div>
					</div>
										
												<div class="small-6 medium-6 thb-5 columns">
						<div class="post style3 style3-alt post-171630 type-post status-publish format-standard has-post-thumbnail hentry category-pulpmx-show-archive">
		<figure class="post-gallery">
		<a href="https://pulpmx.com/2024/04/08/vurb-moto-dubach-ulrich-cianciarulo-archive/" rel="bookmark" title="Vurb Moto, Dubach, Ulrich, Cianciarulo Archive">
			<img width="567" height="340" src="https://pulpmx.com/app/uploads/2021/02/PR_Archive-1.png" class="attachment-goodlife-latestshort-2x size-goodlife-latestshort-2x thb-lazyload lazyload wp-post-image" alt="" decoding="async" loading="lazy" sizes="(max-width: 567px) 100vw, 567px" data-src="https://pulpmx.com/app/uploads/2021/02/PR_Archive-1.png" data-sizes="auto" data-srcset="http://pulpmx.com/app/uploads/2021/02/PR_Archive-1.png 1500w, http://pulpmx.com/app/uploads/2021/02/PR_Archive-1-768x461.png 768w, http://pulpmx.com/app/uploads/2021/02/PR_Archive-1-1024x614.png 1024w, http://pulpmx.com/app/uploads/2021/02/PR_Archive-1-770x462.png 770w" />					</a>
	</figure>
		<div class="post-category"><a href="https://pulpmx.com/category/pulpmx-show-archive/" class="single_category_title category-link-240" title="PulpMX Show Archive">PulpMX Show Archive</a></div>
	<header class="post-title entry-header">
		<h5 class="entry-title" itemprop="name headline"><a href="https://pulpmx.com/2024/04/08/vurb-moto-dubach-ulrich-cianciarulo-archive/" title="Vurb Moto, Dubach, Ulrich, Cianciarulo Archive">Vurb Moto, Dubach, Ulrich, Cianciarulo Archive</a></h5>	</header>
			<aside class="post-bottom-meta">
				<div class="">
			<img src="https://pulpmx.com/app/uploads/2021/01/SZF-Mark-150x150.png" width="48" height="48" alt="swizcore" class="avatar avatar-48 wp-user-avatar wp-user-avatar-48 alignnone photo thb-ignore-lazyload" />		</div>
						<strong itemprop="author" class="author vcard"><a href="https://pulpmx.com/author/swizcore/" title="Posts by swizcore" rel="author">swizcore</a></strong>
						<div class="time">April 8, 2024</div>
							<span class="comment">
				<a href="https://pulpmx.com/2024/04/08/vurb-moto-dubach-ulrich-cianciarulo-archive/#respond" title="Vurb Moto, Dubach, Ulrich, Cianciarulo Archive">
					<svg class="comment_icon" width="13px" height="13px" viewBox="0 0 13 13"><use href="#comment_icon" /></svg> 0				</a>
			</span>
							</aside>
	</div>
					</div>
										
												<div class="small-6 medium-6 thb-5 columns">
						<div class="post style3 style3-alt post-171594 type-post status-publish format-standard has-post-thumbnail hentry category-pulpmx-show-archive">
		<figure class="post-gallery">
		<a href="https://pulpmx.com/2024/04/01/peters-kitchen-tomac-mirtl-shantie-nicoletti-weltin-archive/" rel="bookmark" title="Peters, Kitchen, Tomac, Mirtl, Shantie, Nicoletti, Weltin Archive">
			<img width="567" height="340" src="https://pulpmx.com/app/uploads/2021/02/PR_Archive-1.png" class="attachment-goodlife-latestshort-2x size-goodlife-latestshort-2x thb-lazyload lazyload wp-post-image" alt="" decoding="async" loading="lazy" sizes="(max-width: 567px) 100vw, 567px" data-src="https://pulpmx.com/app/uploads/2021/02/PR_Archive-1.png" data-sizes="auto" data-srcset="http://pulpmx.com/app/uploads/2021/02/PR_Archive-1.png 1500w, http://pulpmx.com/app/uploads/2021/02/PR_Archive-1-768x461.png 768w, http://pulpmx.com/app/uploads/2021/02/PR_Archive-1-1024x614.png 1024w, http://pulpmx.com/app/uploads/2021/02/PR_Archive-1-770x462.png 770w" />					</a>
	</figure>
		<div class="post-category"><a href="https://pulpmx.com/category/pulpmx-show-archive/" class="single_category_title category-link-240" title="PulpMX Show Archive">PulpMX Show Archive</a></div>
	<header class="post-title entry-header">
		<h5 class="entry-title" itemprop="name headline"><a href="https://pulpmx.com/2024/04/01/peters-kitchen-tomac-mirtl-shantie-nicoletti-weltin-archive/" title="Peters, Kitchen, Tomac, Mirtl, Shantie, Nicoletti, Weltin Archive">Peters, Kitchen, Tomac, Mirtl, Shantie, Nicoletti, Weltin Archive</a></h5>	</header>
			<aside class="post-bottom-meta">
				<div class="">
			<img src="https://pulpmx.com/app/uploads/2021/01/SZF-Mark-150x150.png" width="48" height="48" alt="swizcore" class="avatar avatar-48 wp-user-avatar wp-user-avatar-48 alignnone photo thb-ignore-lazyload" />		</div>
						<strong itemprop="author" class="author vcard"><a href="https://pulpmx.com/author/swizcore/" title="Posts by swizcore" rel="author">swizcore</a></strong>
						<div class="time">April 1, 2024</div>
							<span class="comment">
				<a href="https://pulpmx.com/2024/04/01/peters-kitchen-tomac-mirtl-shantie-nicoletti-weltin-archive/#respond" title="Peters, Kitchen, Tomac, Mirtl, Shantie, Nicoletti, Weltin Archive">
					<svg class="comment_icon" width="13px" height="13px" viewBox="0 0 13 13"><use href="#comment_icon" /></svg> 0				</a>
			</span>
							</aside>
	</div>
					</div>
										
												<div class="small-6 medium-6 thb-5 columns">
						<div class="post style3 style3-alt post-171564 type-post status-publish format-standard has-post-thumbnail hentry category-classic_steel tag-blazier tag-classic-steel tag-nostalgia tag-vintage">
		<figure class="post-gallery">
		<a href="https://pulpmx.com/2024/03/31/maxxis-tires-classic-steel-193-1992-yamaha-yz125/" rel="bookmark" title="&#8220;Maxxis Tires&#8221; &#8211; Classic Steel #193 &#8220;1992 Yamaha YZ125&#8221;">
			<img width="640" height="305" src="https://pulpmx.com/app/uploads/2017/10/GP-Classic-Steel.png" class="attachment-goodlife-latestshort-2x size-goodlife-latestshort-2x thb-lazyload lazyload wp-post-image" alt="" decoding="async" loading="lazy" sizes="(max-width: 640px) 100vw, 640px" data-src="https://pulpmx.com/app/uploads/2017/10/GP-Classic-Steel.png" data-sizes="auto" data-srcset="http://pulpmx.com/app/uploads/2017/10/GP-Classic-Steel.png 880w, http://pulpmx.com/app/uploads/2017/10/GP-Classic-Steel-768x367.png 768w, http://pulpmx.com/app/uploads/2017/10/GP-Classic-Steel-770x368.png 770w" />					</a>
	</figure>
		<div class="post-category"><a href="https://pulpmx.com/category/classic_steel/" class="single_category_title category-link-188" title="Classic Steel">Classic Steel</a></div>
	<header class="post-title entry-header">
		<h5 class="entry-title" itemprop="name headline"><a href="https://pulpmx.com/2024/03/31/maxxis-tires-classic-steel-193-1992-yamaha-yz125/" title="&#8220;Maxxis Tires&#8221; &#8211; Classic Steel #193 &#8220;1992 Yamaha YZ125&#8221;">&#8220;Maxxis Tires&#8221; &#8211; Classic Steel #193 &#8220;1992 Yamaha YZ125&#8221;</a></h5>	</header>
			<aside class="post-bottom-meta">
				<div class="">
			<img src="https://pulpmx.com/app/uploads/2018/01/s1600_GUYB0031-copy-150x150.jpg" width="48" height="48" alt="Tony Blazier" class="avatar avatar-48 wp-user-avatar wp-user-avatar-48 alignnone photo thb-ignore-lazyload" />		</div>
						<strong itemprop="author" class="author vcard"><a href="https://pulpmx.com/author/tony-blazier/" title="Posts by Tony Blazier" rel="author">Tony Blazier</a></strong>
						<div class="time">March 31, 2024</div>
							<span class="comment">
				<a href="https://pulpmx.com/2024/03/31/maxxis-tires-classic-steel-193-1992-yamaha-yz125/#respond" title="&#8220;Maxxis Tires&#8221; &#8211; Classic Steel #193 &#8220;1992 Yamaha YZ125&#8221;">
					<svg class="comment_icon" width="13px" height="13px" viewBox="0 0 13 13"><use href="#comment_icon" /></svg> 0				</a>
			</span>
							</aside>
	</div>
					</div>
										
												<div class="small-6 medium-6 thb-5 columns">
						<div class="post style3 style3-alt post-171548 type-post status-publish format-standard has-post-thumbnail hentry category-keefer-daytime category-story">
		<figure class="post-gallery">
		<a href="https://pulpmx.com/2024/03/31/day-night-program-st-louis/" rel="bookmark" title="Day/Night Program: St. Louis">
			<img width="640" height="340" src="https://pulpmx.com/app/uploads/2024/03/AL1_1299-20x10.jpg" class="attachment-goodlife-latestshort-2x size-goodlife-latestshort-2x thb-lazyload lazyload wp-post-image" alt="" decoding="async" loading="lazy" sizes="(max-width: 640px) 100vw, 640px" data-src="https://pulpmx.com/app/uploads/2024/03/AL1_1299-640x340.jpg" data-sizes="auto" data-srcset="http://pulpmx.com/app/uploads/2024/03/AL1_1299-640x340.jpg 640w, http://pulpmx.com/app/uploads/2024/03/AL1_1299-320x170.jpg 320w, http://pulpmx.com/app/uploads/2024/03/AL1_1299-20x10.jpg 20w" />					</a>
	</figure>
		<div class="post-category"><a href="https://pulpmx.com/category/keefer-daytime/" class="single_category_title category-link-239" title="Keefer Daytime">Keefer Daytime</a></div>
	<header class="post-title entry-header">
		<h5 class="entry-title" itemprop="name headline"><a href="https://pulpmx.com/2024/03/31/day-night-program-st-louis/" title="Day/Night Program: St. Louis">Day/Night Program: St. Louis</a></h5>	</header>
			<aside class="post-bottom-meta">
				<div class="">
			<img src="https://pulpmx.com/app/uploads/2017/12/keefer_avatar-100x100.jpg" width="48" height="48" alt="Kris Keefer" class="avatar avatar-48 wp-user-avatar wp-user-avatar-48 alignnone photo thb-ignore-lazyload" />		</div>
						<strong itemprop="author" class="author vcard"><a href="https://pulpmx.com/author/kris-keefer/" title="Posts by Kris Keefer" rel="author">Kris Keefer</a></strong>
						<div class="time">March 31, 2024</div>
							<span class="comment">
				<a href="https://pulpmx.com/2024/03/31/day-night-program-st-louis/#respond" title="Day/Night Program: St. Louis">
					<svg class="comment_icon" width="13px" height="13px" viewBox="0 0 13 13"><use href="#comment_icon" /></svg> 0				</a>
			</span>
							</aside>
	</div>
					</div>
										
												<div class="small-6 medium-6 thb-5 columns">
						<div class="post style3 style3-alt post-171533 type-post status-publish format-standard has-post-thumbnail hentry category-pro-circuit-post-race-pulpcasts tag-audio tag-interview tag-race">
		<figure class="post-gallery">
		<a href="https://pulpmx.com/2024/03/30/pro-circuit-st-louis-sx-post-race-pulpcasts-3/" rel="bookmark" title="Pro Circuit St Louis SX Post-Race PulpCasts">
			<img width="640" height="340" src="https://pulpmx.com/app/uploads/2017/12/2023-Pro-Circuit-Pulpcasts-Lead-20x10.png" class="attachment-goodlife-latestshort-2x size-goodlife-latestshort-2x thb-lazyload lazyload wp-post-image" alt="" decoding="async" loading="lazy" sizes="(max-width: 640px) 100vw, 640px" data-src="https://pulpmx.com/app/uploads/2017/12/2023-Pro-Circuit-Pulpcasts-Lead-640x340.png" data-sizes="auto" data-srcset="http://pulpmx.com/app/uploads/2017/12/2023-Pro-Circuit-Pulpcasts-Lead-640x340.png 640w, http://pulpmx.com/app/uploads/2017/12/2023-Pro-Circuit-Pulpcasts-Lead-320x170.png 320w, http://pulpmx.com/app/uploads/2017/12/2023-Pro-Circuit-Pulpcasts-Lead-20x10.png 20w" />					</a>
	</figure>
		<div class="post-category"><a href="https://pulpmx.com/category/pro-circuit-post-race-pulpcasts/" class="single_category_title category-link-202" title="Pro Circuit Post-Race Pulpcasts">Pro Circuit Post-Race Pulpcasts</a></div>
	<header class="post-title entry-header">
		<h5 class="entry-title" itemprop="name headline"><a href="https://pulpmx.com/2024/03/30/pro-circuit-st-louis-sx-post-race-pulpcasts-3/" title="Pro Circuit St Louis SX Post-Race PulpCasts">Pro Circuit St Louis SX Post-Race PulpCasts</a></h5>	</header>
			<aside class="post-bottom-meta">
				<div class="">
			<img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://pulpmx.com/app/uploads/2019/01/pmxn-150x150.png" width="48" height="48" alt="Avatar" class="avatar avatar-48 wp-user-avatar wp-user-avatar-48 photo avatar-default lazyload" />		</div>
						<strong itemprop="author" class="author vcard"><a href="https://pulpmx.com/author/steve/" title="Posts by Steve" rel="author">Steve</a></strong>
						<div class="time">March 30, 2024</div>
							<span class="comment">
				<a href="https://pulpmx.com/2024/03/30/pro-circuit-st-louis-sx-post-race-pulpcasts-3/#respond" title="Pro Circuit St Louis SX Post-Race PulpCasts">
					<svg class="comment_icon" width="13px" height="13px" viewBox="0 0 13 13"><use href="#comment_icon" /></svg> 0				</a>
			</span>
							</aside>
	</div>
					</div>
										
												<div class="small-6 medium-6 thb-5 columns">
						<div class="post style3 style3-alt post-171527 type-post status-publish format-standard has-post-thumbnail hentry category-story">
		<figure class="post-gallery">
		<a href="https://pulpmx.com/2024/03/28/fly-racing-moto60-archive-st-louis-sx-2/" rel="bookmark" title="Fly Racing MOTO:60 Archive- St Louis SX">
			<img width="640" height="340" src="https://pulpmx.com/app/uploads/2022/09/2023-FlyMoto60-SHow-Lead-20x10.png" class="attachment-goodlife-latestshort-2x size-goodlife-latestshort-2x thb-lazyload lazyload wp-post-image" alt="" decoding="async" loading="lazy" sizes="(max-width: 640px) 100vw, 640px" data-src="https://pulpmx.com/app/uploads/2022/09/2023-FlyMoto60-SHow-Lead-640x340.png" data-sizes="auto" data-srcset="http://pulpmx.com/app/uploads/2022/09/2023-FlyMoto60-SHow-Lead-640x340.png 640w, http://pulpmx.com/app/uploads/2022/09/2023-FlyMoto60-SHow-Lead-320x170.png 320w, http://pulpmx.com/app/uploads/2022/09/2023-FlyMoto60-SHow-Lead-20x10.png 20w" />					</a>
	</figure>
		<div class="post-category"><a href="https://pulpmx.com/category/story/" class="single_category_title category-link-191" title="Story">Story</a></div>
	<header class="post-title entry-header">
		<h5 class="entry-title" itemprop="name headline"><a href="https://pulpmx.com/2024/03/28/fly-racing-moto60-archive-st-louis-sx-2/" title="Fly Racing MOTO:60 Archive- St Louis SX">Fly Racing MOTO:60 Archive- St Louis SX</a></h5>	</header>
			<aside class="post-bottom-meta">
				<div class="">
			<img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://pulpmx.com/app/uploads/2019/01/pmxn-150x150.png" width="48" height="48" alt="Avatar" class="avatar avatar-48 wp-user-avatar wp-user-avatar-48 photo avatar-default lazyload" />		</div>
						<strong itemprop="author" class="author vcard"><a href="https://pulpmx.com/author/steve/" title="Posts by Steve" rel="author">Steve</a></strong>
						<div class="time">March 28, 2024</div>
							<span class="comment">
				<a href="https://pulpmx.com/2024/03/28/fly-racing-moto60-archive-st-louis-sx-2/#respond" title="Fly Racing MOTO:60 Archive- St Louis SX">
					<svg class="comment_icon" width="13px" height="13px" viewBox="0 0 13 13"><use href="#comment_icon" /></svg> 0				</a>
			</span>
							</aside>
	</div>
					</div>
										
												<div class="small-6 medium-6 thb-5 columns">
						<div class="post style3 style3-alt post-171516 type-post status-publish format-standard has-post-thumbnail hentry category-pulpmx-show-archive">
		<figure class="post-gallery">
		<a href="https://pulpmx.com/2024/03/25/sexton-nicoletti-oldenburg-antunez-archive/" rel="bookmark" title="Sexton, Nicoletti, Oldenburg, Antunez Archive">
			<img width="567" height="340" src="https://pulpmx.com/app/uploads/2021/02/PR_Archive-1.png" class="attachment-goodlife-latestshort-2x size-goodlife-latestshort-2x thb-lazyload lazyload wp-post-image" alt="" decoding="async" loading="lazy" sizes="(max-width: 567px) 100vw, 567px" data-src="https://pulpmx.com/app/uploads/2021/02/PR_Archive-1.png" data-sizes="auto" data-srcset="http://pulpmx.com/app/uploads/2021/02/PR_Archive-1.png 1500w, http://pulpmx.com/app/uploads/2021/02/PR_Archive-1-768x461.png 768w, http://pulpmx.com/app/uploads/2021/02/PR_Archive-1-1024x614.png 1024w, http://pulpmx.com/app/uploads/2021/02/PR_Archive-1-770x462.png 770w" />					</a>
	</figure>
		<div class="post-category"><a href="https://pulpmx.com/category/pulpmx-show-archive/" class="single_category_title category-link-240" title="PulpMX Show Archive">PulpMX Show Archive</a></div>
	<header class="post-title entry-header">
		<h5 class="entry-title" itemprop="name headline"><a href="https://pulpmx.com/2024/03/25/sexton-nicoletti-oldenburg-antunez-archive/" title="Sexton, Nicoletti, Oldenburg, Antunez Archive">Sexton, Nicoletti, Oldenburg, Antunez Archive</a></h5>	</header>
			<aside class="post-bottom-meta">
				<div class="">
			<img src="https://pulpmx.com/app/uploads/2021/01/SZF-Mark-150x150.png" width="48" height="48" alt="swizcore" class="avatar avatar-48 wp-user-avatar wp-user-avatar-48 alignnone photo thb-ignore-lazyload" />		</div>
						<strong itemprop="author" class="author vcard"><a href="https://pulpmx.com/author/swizcore/" title="Posts by swizcore" rel="author">swizcore</a></strong>
						<div class="time">March 25, 2024</div>
							<span class="comment">
				<a href="https://pulpmx.com/2024/03/25/sexton-nicoletti-oldenburg-antunez-archive/#respond" title="Sexton, Nicoletti, Oldenburg, Antunez Archive">
					<svg class="comment_icon" width="13px" height="13px" viewBox="0 0 13 13"><use href="#comment_icon" /></svg> 0				</a>
			</span>
							</aside>
	</div>
					</div>
										
												<div class="small-6 medium-6 thb-5 columns">
						<div class="post style3 style3-alt post-171502 type-post status-publish format-standard has-post-thumbnail hentry category-keefer-daytime">
		<figure class="post-gallery">
		<a href="https://pulpmx.com/2024/03/24/daytime-program-seattle-3/" rel="bookmark" title="Daytime Program: Seattle">
			<img width="640" height="340" src="https://pulpmx.com/app/uploads/2024/03/AL6_4349-20x10.jpg" class="attachment-goodlife-latestshort-2x size-goodlife-latestshort-2x thb-lazyload lazyload wp-post-image" alt="" decoding="async" loading="lazy" sizes="(max-width: 640px) 100vw, 640px" data-src="https://pulpmx.com/app/uploads/2024/03/AL6_4349-640x340.jpg" data-sizes="auto" data-srcset="http://pulpmx.com/app/uploads/2024/03/AL6_4349-640x340.jpg 640w, http://pulpmx.com/app/uploads/2024/03/AL6_4349-320x170.jpg 320w, http://pulpmx.com/app/uploads/2024/03/AL6_4349-20x10.jpg 20w" />					</a>
	</figure>
		<div class="post-category"><a href="https://pulpmx.com/category/keefer-daytime/" class="single_category_title category-link-239" title="Keefer Daytime">Keefer Daytime</a></div>
	<header class="post-title entry-header">
		<h5 class="entry-title" itemprop="name headline"><a href="https://pulpmx.com/2024/03/24/daytime-program-seattle-3/" title="Daytime Program: Seattle">Daytime Program: Seattle</a></h5>	</header>
			<aside class="post-bottom-meta">
				<div class="">
			<img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://pulpmx.com/app/uploads/2019/01/pmxn-150x150.png" width="48" height="48" alt="Avatar" class="avatar avatar-48 wp-user-avatar wp-user-avatar-48 photo avatar-default lazyload" />		</div>
						<strong itemprop="author" class="author vcard"><a href="https://pulpmx.com/author/steve/" title="Posts by Steve" rel="author">Steve</a></strong>
						<div class="time">March 24, 2024</div>
							<span class="comment">
				<a href="https://pulpmx.com/2024/03/24/daytime-program-seattle-3/#respond" title="Daytime Program: Seattle">
					<svg class="comment_icon" width="13px" height="13px" viewBox="0 0 13 13"><use href="#comment_icon" /></svg> 0				</a>
			</span>
							</aside>
	</div>
					</div>
										
												<div class="small-6 medium-6 thb-5 columns">
						<div class="post style3 style3-alt post-171486 type-post status-publish format-standard has-post-thumbnail hentry category-pro-circuit-post-race-pulpcasts tag-audio tag-interview tag-race">
		<figure class="post-gallery">
		<a href="https://pulpmx.com/2024/03/23/pro-circuit-seattle-sx-post-race-pulpcasts-4/" rel="bookmark" title="Pro Circuit Seattle SX Post-Race PulpCasts">
			<img width="640" height="340" src="https://pulpmx.com/app/uploads/2017/12/2023-Pro-Circuit-Pulpcasts-Lead-20x10.png" class="attachment-goodlife-latestshort-2x size-goodlife-latestshort-2x thb-lazyload lazyload wp-post-image" alt="" decoding="async" loading="lazy" sizes="(max-width: 640px) 100vw, 640px" data-src="https://pulpmx.com/app/uploads/2017/12/2023-Pro-Circuit-Pulpcasts-Lead-640x340.png" data-sizes="auto" data-srcset="http://pulpmx.com/app/uploads/2017/12/2023-Pro-Circuit-Pulpcasts-Lead-640x340.png 640w, http://pulpmx.com/app/uploads/2017/12/2023-Pro-Circuit-Pulpcasts-Lead-320x170.png 320w, http://pulpmx.com/app/uploads/2017/12/2023-Pro-Circuit-Pulpcasts-Lead-20x10.png 20w" />					</a>
	</figure>
		<div class="post-category"><a href="https://pulpmx.com/category/pro-circuit-post-race-pulpcasts/" class="single_category_title category-link-202" title="Pro Circuit Post-Race Pulpcasts">Pro Circuit Post-Race Pulpcasts</a></div>
	<header class="post-title entry-header">
		<h5 class="entry-title" itemprop="name headline"><a href="https://pulpmx.com/2024/03/23/pro-circuit-seattle-sx-post-race-pulpcasts-4/" title="Pro Circuit Seattle SX Post-Race PulpCasts">Pro Circuit Seattle SX Post-Race PulpCasts</a></h5>	</header>
			<aside class="post-bottom-meta">
				<div class="">
			<img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://pulpmx.com/app/uploads/2019/01/pmxn-150x150.png" width="48" height="48" alt="Avatar" class="avatar avatar-48 wp-user-avatar wp-user-avatar-48 photo avatar-default lazyload" />		</div>
						<strong itemprop="author" class="author vcard"><a href="https://pulpmx.com/author/steve/" title="Posts by Steve" rel="author">Steve</a></strong>
						<div class="time">March 23, 2024</div>
							<span class="comment">
				<a href="https://pulpmx.com/2024/03/23/pro-circuit-seattle-sx-post-race-pulpcasts-4/#respond" title="Pro Circuit Seattle SX Post-Race PulpCasts">
					<svg class="comment_icon" width="13px" height="13px" viewBox="0 0 13 13"><use href="#comment_icon" /></svg> 0				</a>
			</span>
							</aside>
	</div>
					</div>
										
												<div class="small-6 medium-6 thb-5 columns">
						<div class="post style3 style3-alt post-171431 type-post status-publish format-standard has-post-thumbnail hentry category-super-stats">
		<figure class="post-gallery">
		<a href="https://pulpmx.com/2024/03/23/super-stats-startcross-reviewing-holeshot-data-through-10-rounds-of-supercross/" rel="bookmark" title="Super Stats: Startcross? Reviewing Holeshot data through 10 Rounds of Supercross">
			<img width="640" height="340" src="https://pulpmx.com/app/uploads/2023/10/Super-Stats-1-20x10.png" class="attachment-goodlife-latestshort-2x size-goodlife-latestshort-2x thb-lazyload lazyload wp-post-image" alt="" decoding="async" loading="lazy" sizes="(max-width: 640px) 100vw, 640px" data-src="https://pulpmx.com/app/uploads/2023/10/Super-Stats-1-640x340.png" data-sizes="auto" data-srcset="http://pulpmx.com/app/uploads/2023/10/Super-Stats-1-640x340.png 640w, http://pulpmx.com/app/uploads/2023/10/Super-Stats-1-320x170.png 320w, http://pulpmx.com/app/uploads/2023/10/Super-Stats-1-20x10.png 20w" />					</a>
	</figure>
		<div class="post-category"><a href="https://pulpmx.com/category/super-stats/" class="single_category_title category-link-267" title="Super Stats">Super Stats</a></div>
	<header class="post-title entry-header">
		<h5 class="entry-title" itemprop="name headline"><a href="https://pulpmx.com/2024/03/23/super-stats-startcross-reviewing-holeshot-data-through-10-rounds-of-supercross/" title="Super Stats: Startcross? Reviewing Holeshot data through 10 Rounds of Supercross">Super Stats: Startcross? Reviewing Holeshot data through 10 Rounds of Supercross</a></h5>	</header>
			<aside class="post-bottom-meta">
				<div class="">
			<img src="https://pulpmx.com/app/uploads/2023/09/MX-Reference-logos-150x150.jpeg" width="48" height="48" alt="Nick Taylor" class="avatar avatar-48 wp-user-avatar wp-user-avatar-48 alignnone photo thb-ignore-lazyload" />		</div>
						<strong itemprop="author" class="author vcard"><a href="https://pulpmx.com/author/mx-reference/" title="Posts by Nick Taylor" rel="author">Nick Taylor</a></strong>
						<div class="time">March 23, 2024</div>
							<span class="comment">
				<a href="https://pulpmx.com/2024/03/23/super-stats-startcross-reviewing-holeshot-data-through-10-rounds-of-supercross/#respond" title="Super Stats: Startcross? Reviewing Holeshot data through 10 Rounds of Supercross">
					<svg class="comment_icon" width="13px" height="13px" viewBox="0 0 13 13"><use href="#comment_icon" /></svg> 0				</a>
			</span>
							</aside>
	</div>
					</div>
										
												<div class="small-6 medium-6 thb-5 columns">
						<div class="post style3 style3-alt post-171479 type-post status-publish format-standard has-post-thumbnail hentry category-story">
		<figure class="post-gallery">
		<a href="https://pulpmx.com/2024/03/21/fly-racing-moto60-archive-seattle-sx-3/" rel="bookmark" title="Fly Racing MOTO:60 Archive- Seattle SX">
			<img width="640" height="340" src="https://pulpmx.com/app/uploads/2022/09/2023-FlyMoto60-SHow-Lead-20x10.png" class="attachment-goodlife-latestshort-2x size-goodlife-latestshort-2x thb-lazyload lazyload wp-post-image" alt="" decoding="async" loading="lazy" sizes="(max-width: 640px) 100vw, 640px" data-src="https://pulpmx.com/app/uploads/2022/09/2023-FlyMoto60-SHow-Lead-640x340.png" data-sizes="auto" data-srcset="http://pulpmx.com/app/uploads/2022/09/2023-FlyMoto60-SHow-Lead-640x340.png 640w, http://pulpmx.com/app/uploads/2022/09/2023-FlyMoto60-SHow-Lead-320x170.png 320w, http://pulpmx.com/app/uploads/2022/09/2023-FlyMoto60-SHow-Lead-20x10.png 20w" />					</a>
	</figure>
		<div class="post-category"><a href="https://pulpmx.com/category/story/" class="single_category_title category-link-191" title="Story">Story</a></div>
	<header class="post-title entry-header">
		<h5 class="entry-title" itemprop="name headline"><a href="https://pulpmx.com/2024/03/21/fly-racing-moto60-archive-seattle-sx-3/" title="Fly Racing MOTO:60 Archive- Seattle SX">Fly Racing MOTO:60 Archive- Seattle SX</a></h5>	</header>
			<aside class="post-bottom-meta">
				<div class="">
			<img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://pulpmx.com/app/uploads/2019/01/pmxn-150x150.png" width="48" height="48" alt="Avatar" class="avatar avatar-48 wp-user-avatar wp-user-avatar-48 photo avatar-default lazyload" />		</div>
						<strong itemprop="author" class="author vcard"><a href="https://pulpmx.com/author/steve/" title="Posts by Steve" rel="author">Steve</a></strong>
						<div class="time">March 21, 2024</div>
							<span class="comment">
				<a href="https://pulpmx.com/2024/03/21/fly-racing-moto60-archive-seattle-sx-3/#respond" title="Fly Racing MOTO:60 Archive- Seattle SX">
					<svg class="comment_icon" width="13px" height="13px" viewBox="0 0 13 13"><use href="#comment_icon" /></svg> 0				</a>
			</span>
							</aside>
	</div>
					</div>
										
												<div class="small-6 medium-6 thb-5 columns">
						<div class="post style3 style3-alt post-171376 type-post status-publish format-standard has-post-thumbnail hentry category-super-stats">
		<figure class="post-gallery">
		<a href="https://pulpmx.com/2024/03/19/super-stats-how-do-jett-lawrences-first-10-premier-class-sx-starts-compare-historically/" rel="bookmark" title="Super Stats: How do Jett Lawrence&#8217;s first 10 Premier Class SX starts compare historically?">
			<img width="640" height="340" src="https://pulpmx.com/app/uploads/2023/10/Super-Stats-1-20x10.png" class="attachment-goodlife-latestshort-2x size-goodlife-latestshort-2x thb-lazyload lazyload wp-post-image" alt="" decoding="async" loading="lazy" sizes="(max-width: 640px) 100vw, 640px" data-src="https://pulpmx.com/app/uploads/2023/10/Super-Stats-1-640x340.png" data-sizes="auto" data-srcset="http://pulpmx.com/app/uploads/2023/10/Super-Stats-1-640x340.png 640w, http://pulpmx.com/app/uploads/2023/10/Super-Stats-1-320x170.png 320w, http://pulpmx.com/app/uploads/2023/10/Super-Stats-1-20x10.png 20w" />					</a>
	</figure>
		<div class="post-category"><a href="https://pulpmx.com/category/super-stats/" class="single_category_title category-link-267" title="Super Stats">Super Stats</a></div>
	<header class="post-title entry-header">
		<h5 class="entry-title" itemprop="name headline"><a href="https://pulpmx.com/2024/03/19/super-stats-how-do-jett-lawrences-first-10-premier-class-sx-starts-compare-historically/" title="Super Stats: How do Jett Lawrence&#8217;s first 10 Premier Class SX starts compare historically?">Super Stats: How do Jett Lawrence&#8217;s first 10 Premier Class SX starts compare historically?</a></h5>	</header>
			<aside class="post-bottom-meta">
				<div class="">
			<img src="https://pulpmx.com/app/uploads/2023/09/MX-Reference-logos-150x150.jpeg" width="48" height="48" alt="Nick Taylor" class="avatar avatar-48 wp-user-avatar wp-user-avatar-48 alignnone photo thb-ignore-lazyload" />		</div>
						<strong itemprop="author" class="author vcard"><a href="https://pulpmx.com/author/mx-reference/" title="Posts by Nick Taylor" rel="author">Nick Taylor</a></strong>
						<div class="time">March 19, 2024</div>
							<span class="comment">
				<a href="https://pulpmx.com/2024/03/19/super-stats-how-do-jett-lawrences-first-10-premier-class-sx-starts-compare-historically/#respond" title="Super Stats: How do Jett Lawrence&#8217;s first 10 Premier Class SX starts compare historically?">
					<svg class="comment_icon" width="13px" height="13px" viewBox="0 0 13 13"><use href="#comment_icon" /></svg> 0				</a>
			</span>
							</aside>
	</div>
					</div>
										
												<div class="small-6 medium-6 thb-5 columns">
						<div class="post style3 style3-alt post-171421 type-post status-publish format-standard has-post-thumbnail hentry category-pulpmx-show-archive">
		<figure class="post-gallery">
		<a href="https://pulpmx.com/2024/03/18/jett-lawrence-anstie-wey-blair-archive/" rel="bookmark" title="Jett Lawrence, Anstie, Wey, Blair Archive">
			<img width="567" height="340" src="https://pulpmx.com/app/uploads/2021/02/PR_Archive-1.png" class="attachment-goodlife-latestshort-2x size-goodlife-latestshort-2x thb-lazyload lazyload wp-post-image" alt="" decoding="async" loading="lazy" sizes="(max-width: 567px) 100vw, 567px" data-src="https://pulpmx.com/app/uploads/2021/02/PR_Archive-1.png" data-sizes="auto" data-srcset="http://pulpmx.com/app/uploads/2021/02/PR_Archive-1.png 1500w, http://pulpmx.com/app/uploads/2021/02/PR_Archive-1-768x461.png 768w, http://pulpmx.com/app/uploads/2021/02/PR_Archive-1-1024x614.png 1024w, http://pulpmx.com/app/uploads/2021/02/PR_Archive-1-770x462.png 770w" />					</a>
	</figure>
		<div class="post-category"><a href="https://pulpmx.com/category/pulpmx-show-archive/" class="single_category_title category-link-240" title="PulpMX Show Archive">PulpMX Show Archive</a></div>
	<header class="post-title entry-header">
		<h5 class="entry-title" itemprop="name headline"><a href="https://pulpmx.com/2024/03/18/jett-lawrence-anstie-wey-blair-archive/" title="Jett Lawrence, Anstie, Wey, Blair Archive">Jett Lawrence, Anstie, Wey, Blair Archive</a></h5>	</header>
			<aside class="post-bottom-meta">
				<div class="">
			<img src="https://pulpmx.com/app/uploads/2021/01/SZF-Mark-150x150.png" width="48" height="48" alt="swizcore" class="avatar avatar-48 wp-user-avatar wp-user-avatar-48 alignnone photo thb-ignore-lazyload" />		</div>
						<strong itemprop="author" class="author vcard"><a href="https://pulpmx.com/author/swizcore/" title="Posts by swizcore" rel="author">swizcore</a></strong>
						<div class="time">March 18, 2024</div>
							<span class="comment">
				<a href="https://pulpmx.com/2024/03/18/jett-lawrence-anstie-wey-blair-archive/#respond" title="Jett Lawrence, Anstie, Wey, Blair Archive">
					<svg class="comment_icon" width="13px" height="13px" viewBox="0 0 13 13"><use href="#comment_icon" /></svg> 0				</a>
			</span>
							</aside>
	</div>
					</div>
										
												<div class="small-6 medium-6 thb-5 columns">
						<div class="post style3 style3-alt post-171408 type-post status-publish format-standard has-post-thumbnail hentry category-classic_steel tag-blazier tag-classic-steel tag-nostalgia tag-vintage">
		<figure class="post-gallery">
		<a href="https://pulpmx.com/2024/03/17/maxxis-tires-classic-ink-57-1993-pro-circuit/" rel="bookmark" title="&#8220;Maxxis Tires&#8221; &#8211; Classic Ink #57 &#8220;1993 Pro Circuit&#8221;">
			<img width="640" height="305" src="https://pulpmx.com/app/uploads/2017/10/GP-Classic-Steel.png" class="attachment-goodlife-latestshort-2x size-goodlife-latestshort-2x thb-lazyload lazyload wp-post-image" alt="" decoding="async" loading="lazy" sizes="(max-width: 640px) 100vw, 640px" data-src="https://pulpmx.com/app/uploads/2017/10/GP-Classic-Steel.png" data-sizes="auto" data-srcset="http://pulpmx.com/app/uploads/2017/10/GP-Classic-Steel.png 880w, http://pulpmx.com/app/uploads/2017/10/GP-Classic-Steel-768x367.png 768w, http://pulpmx.com/app/uploads/2017/10/GP-Classic-Steel-770x368.png 770w" />					</a>
	</figure>
		<div class="post-category"><a href="https://pulpmx.com/category/classic_steel/" class="single_category_title category-link-188" title="Classic Steel">Classic Steel</a></div>
	<header class="post-title entry-header">
		<h5 class="entry-title" itemprop="name headline"><a href="https://pulpmx.com/2024/03/17/maxxis-tires-classic-ink-57-1993-pro-circuit/" title="&#8220;Maxxis Tires&#8221; &#8211; Classic Ink #57 &#8220;1993 Pro Circuit&#8221;">&#8220;Maxxis Tires&#8221; &#8211; Classic Ink #57 &#8220;1993 Pro Circuit&#8221;</a></h5>	</header>
			<aside class="post-bottom-meta">
				<div class="">
			<img src="https://pulpmx.com/app/uploads/2018/01/s1600_GUYB0031-copy-150x150.jpg" width="48" height="48" alt="Tony Blazier" class="avatar avatar-48 wp-user-avatar wp-user-avatar-48 alignnone photo thb-ignore-lazyload" />		</div>
						<strong itemprop="author" class="author vcard"><a href="https://pulpmx.com/author/tony-blazier/" title="Posts by Tony Blazier" rel="author">Tony Blazier</a></strong>
						<div class="time">March 17, 2024</div>
							<span class="comment">
				<a href="https://pulpmx.com/2024/03/17/maxxis-tires-classic-ink-57-1993-pro-circuit/#respond" title="&#8220;Maxxis Tires&#8221; &#8211; Classic Ink #57 &#8220;1993 Pro Circuit&#8221;">
					<svg class="comment_icon" width="13px" height="13px" viewBox="0 0 13 13"><use href="#comment_icon" /></svg> 0				</a>
			</span>
							</aside>
	</div>
					</div>
										
												<div class="small-6 medium-6 thb-5 columns">
						<div class="post style3 style3-alt post-171385 type-post status-publish format-standard has-post-thumbnail hentry category-keefer-daytime">
		<figure class="post-gallery">
		<a href="https://pulpmx.com/2024/03/17/daytime-program-indy-4/" rel="bookmark" title="Daytime Program: Indy">
			<img width="640" height="340" src="https://pulpmx.com/app/uploads/2024/03/AL2_0360-20x10.jpg" class="attachment-goodlife-latestshort-2x size-goodlife-latestshort-2x thb-lazyload lazyload wp-post-image" alt="" decoding="async" loading="lazy" sizes="(max-width: 640px) 100vw, 640px" data-src="https://pulpmx.com/app/uploads/2024/03/AL2_0360-640x340.jpg" data-sizes="auto" data-srcset="http://pulpmx.com/app/uploads/2024/03/AL2_0360-640x340.jpg 640w, http://pulpmx.com/app/uploads/2024/03/AL2_0360-320x170.jpg 320w, http://pulpmx.com/app/uploads/2024/03/AL2_0360-20x10.jpg 20w" />					</a>
	</figure>
		<div class="post-category"><a href="https://pulpmx.com/category/keefer-daytime/" class="single_category_title category-link-239" title="Keefer Daytime">Keefer Daytime</a></div>
	<header class="post-title entry-header">
		<h5 class="entry-title" itemprop="name headline"><a href="https://pulpmx.com/2024/03/17/daytime-program-indy-4/" title="Daytime Program: Indy">Daytime Program: Indy</a></h5>	</header>
			<aside class="post-bottom-meta">
				<div class="">
			<img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://pulpmx.com/app/uploads/2019/01/pmxn-150x150.png" width="48" height="48" alt="Avatar" class="avatar avatar-48 wp-user-avatar wp-user-avatar-48 photo avatar-default lazyload" />		</div>
						<strong itemprop="author" class="author vcard"><a href="https://pulpmx.com/author/steve/" title="Posts by Steve" rel="author">Steve</a></strong>
						<div class="time">March 17, 2024</div>
							<span class="comment">
				<a href="https://pulpmx.com/2024/03/17/daytime-program-indy-4/#respond" title="Daytime Program: Indy">
					<svg class="comment_icon" width="13px" height="13px" viewBox="0 0 13 13"><use href="#comment_icon" /></svg> 0				</a>
			</span>
							</aside>
	</div>
					</div>
										
												<div class="small-6 medium-6 thb-5 columns">
						<div class="post style3 style3-alt post-171361 type-post status-publish format-standard has-post-thumbnail hentry category-pro-circuit-post-race-pulpcasts tag-audio tag-interview tag-race">
		<figure class="post-gallery">
		<a href="https://pulpmx.com/2024/03/16/pro-circuit-indy-sx-post-race-pulpcasts-3/" rel="bookmark" title="Pro Circuit Indy SX Post-Race PulpCasts">
			<img width="640" height="340" src="https://pulpmx.com/app/uploads/2017/12/2023-Pro-Circuit-Pulpcasts-Lead-20x10.png" class="attachment-goodlife-latestshort-2x size-goodlife-latestshort-2x thb-lazyload lazyload wp-post-image" alt="" decoding="async" loading="lazy" sizes="(max-width: 640px) 100vw, 640px" data-src="https://pulpmx.com/app/uploads/2017/12/2023-Pro-Circuit-Pulpcasts-Lead-640x340.png" data-sizes="auto" data-srcset="http://pulpmx.com/app/uploads/2017/12/2023-Pro-Circuit-Pulpcasts-Lead-640x340.png 640w, http://pulpmx.com/app/uploads/2017/12/2023-Pro-Circuit-Pulpcasts-Lead-320x170.png 320w, http://pulpmx.com/app/uploads/2017/12/2023-Pro-Circuit-Pulpcasts-Lead-20x10.png 20w" />					</a>
	</figure>
		<div class="post-category"><a href="https://pulpmx.com/category/pro-circuit-post-race-pulpcasts/" class="single_category_title category-link-202" title="Pro Circuit Post-Race Pulpcasts">Pro Circuit Post-Race Pulpcasts</a></div>
	<header class="post-title entry-header">
		<h5 class="entry-title" itemprop="name headline"><a href="https://pulpmx.com/2024/03/16/pro-circuit-indy-sx-post-race-pulpcasts-3/" title="Pro Circuit Indy SX Post-Race PulpCasts">Pro Circuit Indy SX Post-Race PulpCasts</a></h5>	</header>
			<aside class="post-bottom-meta">
				<div class="">
			<img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://pulpmx.com/app/uploads/2019/01/pmxn-150x150.png" width="48" height="48" alt="Avatar" class="avatar avatar-48 wp-user-avatar wp-user-avatar-48 photo avatar-default lazyload" />		</div>
						<strong itemprop="author" class="author vcard"><a href="https://pulpmx.com/author/steve/" title="Posts by Steve" rel="author">Steve</a></strong>
						<div class="time">March 16, 2024</div>
							<span class="comment">
				<a href="https://pulpmx.com/2024/03/16/pro-circuit-indy-sx-post-race-pulpcasts-3/#respond" title="Pro Circuit Indy SX Post-Race PulpCasts">
					<svg class="comment_icon" width="13px" height="13px" viewBox="0 0 13 13"><use href="#comment_icon" /></svg> 0				</a>
			</span>
							</aside>
	</div>
					</div>
										
												<div class="small-6 medium-6 thb-5 columns">
						<div class="post style3 style3-alt post-171356 type-post status-publish format-standard has-post-thumbnail hentry category-story">
		<figure class="post-gallery">
		<a href="https://pulpmx.com/2024/03/14/fly-racing-moto60-archive-indy-sx-4/" rel="bookmark" title="Fly Racing MOTO:60 Archive- Indy SX">
			<img width="640" height="340" src="https://pulpmx.com/app/uploads/2022/09/2023-FlyMoto60-SHow-Lead-20x10.png" class="attachment-goodlife-latestshort-2x size-goodlife-latestshort-2x thb-lazyload lazyload wp-post-image" alt="" decoding="async" loading="lazy" sizes="(max-width: 640px) 100vw, 640px" data-src="https://pulpmx.com/app/uploads/2022/09/2023-FlyMoto60-SHow-Lead-640x340.png" data-sizes="auto" data-srcset="http://pulpmx.com/app/uploads/2022/09/2023-FlyMoto60-SHow-Lead-640x340.png 640w, http://pulpmx.com/app/uploads/2022/09/2023-FlyMoto60-SHow-Lead-320x170.png 320w, http://pulpmx.com/app/uploads/2022/09/2023-FlyMoto60-SHow-Lead-20x10.png 20w" />					</a>
	</figure>
		<div class="post-category"><a href="https://pulpmx.com/category/story/" class="single_category_title category-link-191" title="Story">Story</a></div>
	<header class="post-title entry-header">
		<h5 class="entry-title" itemprop="name headline"><a href="https://pulpmx.com/2024/03/14/fly-racing-moto60-archive-indy-sx-4/" title="Fly Racing MOTO:60 Archive- Indy SX">Fly Racing MOTO:60 Archive- Indy SX</a></h5>	</header>
			<aside class="post-bottom-meta">
				<div class="">
			<img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://pulpmx.com/app/uploads/2019/01/pmxn-150x150.png" width="48" height="48" alt="Avatar" class="avatar avatar-48 wp-user-avatar wp-user-avatar-48 photo avatar-default lazyload" />		</div>
						<strong itemprop="author" class="author vcard"><a href="https://pulpmx.com/author/steve/" title="Posts by Steve" rel="author">Steve</a></strong>
						<div class="time">March 14, 2024</div>
							<span class="comment">
				<a href="https://pulpmx.com/2024/03/14/fly-racing-moto60-archive-indy-sx-4/#respond" title="Fly Racing MOTO:60 Archive- Indy SX">
					<svg class="comment_icon" width="13px" height="13px" viewBox="0 0 13 13"><use href="#comment_icon" /></svg> 0				</a>
			</span>
							</aside>
	</div>
					</div>
										
												<div class="small-6 medium-6 thb-5 columns">
						<div class="post style3 style3-alt post-171346 type-post status-publish format-standard has-post-thumbnail hentry category-pulpmx-show-archive">
		<figure class="post-gallery">
		<a href="https://pulpmx.com/2024/03/11/webb-mcgrath-phillips-lebig-dv-archive/" rel="bookmark" title="Webb, Mcgrath, Phillips, Lebig, DV Archive">
			<img width="567" height="340" src="https://pulpmx.com/app/uploads/2021/02/PR_Archive-1.png" class="attachment-goodlife-latestshort-2x size-goodlife-latestshort-2x thb-lazyload lazyload wp-post-image" alt="" decoding="async" loading="lazy" sizes="(max-width: 567px) 100vw, 567px" data-src="https://pulpmx.com/app/uploads/2021/02/PR_Archive-1.png" data-sizes="auto" data-srcset="http://pulpmx.com/app/uploads/2021/02/PR_Archive-1.png 1500w, http://pulpmx.com/app/uploads/2021/02/PR_Archive-1-768x461.png 768w, http://pulpmx.com/app/uploads/2021/02/PR_Archive-1-1024x614.png 1024w, http://pulpmx.com/app/uploads/2021/02/PR_Archive-1-770x462.png 770w" />					</a>
	</figure>
		<div class="post-category"><a href="https://pulpmx.com/category/pulpmx-show-archive/" class="single_category_title category-link-240" title="PulpMX Show Archive">PulpMX Show Archive</a></div>
	<header class="post-title entry-header">
		<h5 class="entry-title" itemprop="name headline"><a href="https://pulpmx.com/2024/03/11/webb-mcgrath-phillips-lebig-dv-archive/" title="Webb, Mcgrath, Phillips, Lebig, DV Archive">Webb, Mcgrath, Phillips, Lebig, DV Archive</a></h5>	</header>
			<aside class="post-bottom-meta">
				<div class="">
			<img src="https://pulpmx.com/app/uploads/2021/01/SZF-Mark-150x150.png" width="48" height="48" alt="swizcore" class="avatar avatar-48 wp-user-avatar wp-user-avatar-48 alignnone photo thb-ignore-lazyload" />		</div>
						<strong itemprop="author" class="author vcard"><a href="https://pulpmx.com/author/swizcore/" title="Posts by swizcore" rel="author">swizcore</a></strong>
						<div class="time">March 11, 2024</div>
							<span class="comment">
				<a href="https://pulpmx.com/2024/03/11/webb-mcgrath-phillips-lebig-dv-archive/#respond" title="Webb, Mcgrath, Phillips, Lebig, DV Archive">
					<svg class="comment_icon" width="13px" height="13px" viewBox="0 0 13 13"><use href="#comment_icon" /></svg> 0				</a>
			</span>
							</aside>
	</div>
					</div>
										
												<div class="small-6 medium-6 thb-5 columns">
						<div class="post style3 style3-alt post-171334 type-post status-publish format-standard has-post-thumbnail hentry category-keefer-daytime">
		<figure class="post-gallery">
		<a href="https://pulpmx.com/2024/03/10/daytime-program-birmingham/" rel="bookmark" title="Daytime Program: Birmingham">
			<img width="640" height="340" src="https://pulpmx.com/app/uploads/2024/03/Deegan_AlignMedia_SX24_Birmingham_064-20x10.jpg" class="attachment-goodlife-latestshort-2x size-goodlife-latestshort-2x thb-lazyload lazyload wp-post-image" alt="" decoding="async" loading="lazy" sizes="(max-width: 640px) 100vw, 640px" data-src="https://pulpmx.com/app/uploads/2024/03/Deegan_AlignMedia_SX24_Birmingham_064-640x340.jpg" data-sizes="auto" data-srcset="http://pulpmx.com/app/uploads/2024/03/Deegan_AlignMedia_SX24_Birmingham_064-640x340.jpg 640w, http://pulpmx.com/app/uploads/2024/03/Deegan_AlignMedia_SX24_Birmingham_064-320x170.jpg 320w, http://pulpmx.com/app/uploads/2024/03/Deegan_AlignMedia_SX24_Birmingham_064-20x10.jpg 20w" />					</a>
	</figure>
		<div class="post-category"><a href="https://pulpmx.com/category/keefer-daytime/" class="single_category_title category-link-239" title="Keefer Daytime">Keefer Daytime</a></div>
	<header class="post-title entry-header">
		<h5 class="entry-title" itemprop="name headline"><a href="https://pulpmx.com/2024/03/10/daytime-program-birmingham/" title="Daytime Program: Birmingham">Daytime Program: Birmingham</a></h5>	</header>
			<aside class="post-bottom-meta">
				<div class="">
			<img src="https://pulpmx.com/app/uploads/2017/12/keefer_avatar-100x100.jpg" width="48" height="48" alt="Kris Keefer" class="avatar avatar-48 wp-user-avatar wp-user-avatar-48 alignnone photo thb-ignore-lazyload" />		</div>
						<strong itemprop="author" class="author vcard"><a href="https://pulpmx.com/author/kris-keefer/" title="Posts by Kris Keefer" rel="author">Kris Keefer</a></strong>
						<div class="time">March 10, 2024</div>
							<span class="comment">
				<a href="https://pulpmx.com/2024/03/10/daytime-program-birmingham/#respond" title="Daytime Program: Birmingham">
					<svg class="comment_icon" width="13px" height="13px" viewBox="0 0 13 13"><use href="#comment_icon" /></svg> 0				</a>
			</span>
							</aside>
	</div>
					</div>
										
												<div class="small-6 medium-6 thb-5 columns">
						<div class="post style3 style3-alt post-171314 type-post status-publish format-standard has-post-thumbnail hentry category-pro-circuit-post-race-pulpcasts tag-audio tag-interview tag-race">
		<figure class="post-gallery">
		<a href="https://pulpmx.com/2024/03/09/pro-circuit-birmingham-sx-post-race-pulpcasts/" rel="bookmark" title="Pro Circuit Birmingham SX Post-Race PulpCasts">
			<img width="640" height="340" src="https://pulpmx.com/app/uploads/2017/12/2023-Pro-Circuit-Pulpcasts-Lead-20x10.png" class="attachment-goodlife-latestshort-2x size-goodlife-latestshort-2x thb-lazyload lazyload wp-post-image" alt="" decoding="async" loading="lazy" sizes="(max-width: 640px) 100vw, 640px" data-src="https://pulpmx.com/app/uploads/2017/12/2023-Pro-Circuit-Pulpcasts-Lead-640x340.png" data-sizes="auto" data-srcset="http://pulpmx.com/app/uploads/2017/12/2023-Pro-Circuit-Pulpcasts-Lead-640x340.png 640w, http://pulpmx.com/app/uploads/2017/12/2023-Pro-Circuit-Pulpcasts-Lead-320x170.png 320w, http://pulpmx.com/app/uploads/2017/12/2023-Pro-Circuit-Pulpcasts-Lead-20x10.png 20w" />					</a>
	</figure>
		<div class="post-category"><a href="https://pulpmx.com/category/pro-circuit-post-race-pulpcasts/" class="single_category_title category-link-202" title="Pro Circuit Post-Race Pulpcasts">Pro Circuit Post-Race Pulpcasts</a></div>
	<header class="post-title entry-header">
		<h5 class="entry-title" itemprop="name headline"><a href="https://pulpmx.com/2024/03/09/pro-circuit-birmingham-sx-post-race-pulpcasts/" title="Pro Circuit Birmingham SX Post-Race PulpCasts">Pro Circuit Birmingham SX Post-Race PulpCasts</a></h5>	</header>
			<aside class="post-bottom-meta">
				<div class="">
			<img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://pulpmx.com/app/uploads/2019/01/pmxn-150x150.png" width="48" height="48" alt="Avatar" class="avatar avatar-48 wp-user-avatar wp-user-avatar-48 photo avatar-default lazyload" />		</div>
						<strong itemprop="author" class="author vcard"><a href="https://pulpmx.com/author/steve/" title="Posts by Steve" rel="author">Steve</a></strong>
						<div class="time">March 9, 2024</div>
							<span class="comment">
				<a href="https://pulpmx.com/2024/03/09/pro-circuit-birmingham-sx-post-race-pulpcasts/#respond" title="Pro Circuit Birmingham SX Post-Race PulpCasts">
					<svg class="comment_icon" width="13px" height="13px" viewBox="0 0 13 13"><use href="#comment_icon" /></svg> 0				</a>
			</span>
							</aside>
	</div>
					</div>
										
												<div class="small-6 medium-6 thb-5 columns">
						<div class="post style3 style3-alt post-171308 type-post status-publish format-standard has-post-thumbnail hentry category-story">
		<figure class="post-gallery">
		<a href="https://pulpmx.com/2024/03/07/fly-racing-moto60-archive-birmingham-sx/" rel="bookmark" title="Fly Racing MOTO:60 Archive- Birmingham SX">
			<img width="640" height="340" src="https://pulpmx.com/app/uploads/2022/09/2023-FlyMoto60-SHow-Lead-20x10.png" class="attachment-goodlife-latestshort-2x size-goodlife-latestshort-2x thb-lazyload lazyload wp-post-image" alt="" decoding="async" loading="lazy" sizes="(max-width: 640px) 100vw, 640px" data-src="https://pulpmx.com/app/uploads/2022/09/2023-FlyMoto60-SHow-Lead-640x340.png" data-sizes="auto" data-srcset="http://pulpmx.com/app/uploads/2022/09/2023-FlyMoto60-SHow-Lead-640x340.png 640w, http://pulpmx.com/app/uploads/2022/09/2023-FlyMoto60-SHow-Lead-320x170.png 320w, http://pulpmx.com/app/uploads/2022/09/2023-FlyMoto60-SHow-Lead-20x10.png 20w" />					</a>
	</figure>
		<div class="post-category"><a href="https://pulpmx.com/category/story/" class="single_category_title category-link-191" title="Story">Story</a></div>
	<header class="post-title entry-header">
		<h5 class="entry-title" itemprop="name headline"><a href="https://pulpmx.com/2024/03/07/fly-racing-moto60-archive-birmingham-sx/" title="Fly Racing MOTO:60 Archive- Birmingham SX">Fly Racing MOTO:60 Archive- Birmingham SX</a></h5>	</header>
			<aside class="post-bottom-meta">
				<div class="">
			<img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://pulpmx.com/app/uploads/2019/01/pmxn-150x150.png" width="48" height="48" alt="Avatar" class="avatar avatar-48 wp-user-avatar wp-user-avatar-48 photo avatar-default lazyload" />		</div>
						<strong itemprop="author" class="author vcard"><a href="https://pulpmx.com/author/steve/" title="Posts by Steve" rel="author">Steve</a></strong>
						<div class="time">March 7, 2024</div>
							<span class="comment">
				<a href="https://pulpmx.com/2024/03/07/fly-racing-moto60-archive-birmingham-sx/#respond" title="Fly Racing MOTO:60 Archive- Birmingham SX">
					<svg class="comment_icon" width="13px" height="13px" viewBox="0 0 13 13"><use href="#comment_icon" /></svg> 0				</a>
			</span>
							</aside>
	</div>
					</div>
										
												<div class="small-6 medium-6 thb-5 columns">
						<div class="post style3 style3-alt post-171297 type-post status-publish format-standard has-post-thumbnail hentry category-pulpmx-show-archive">
		<figure class="post-gallery">
		<a href="https://pulpmx.com/2024/03/04/brayton-a-mart-cianciarulo-dbo-rl-archive/" rel="bookmark" title="Brayton, A Mart, Cianciarulo, DBO, RL Archive">
			<img width="567" height="340" src="https://pulpmx.com/app/uploads/2021/02/PR_Archive-1.png" class="attachment-goodlife-latestshort-2x size-goodlife-latestshort-2x thb-lazyload lazyload wp-post-image" alt="" decoding="async" loading="lazy" sizes="(max-width: 567px) 100vw, 567px" data-src="https://pulpmx.com/app/uploads/2021/02/PR_Archive-1.png" data-sizes="auto" data-srcset="http://pulpmx.com/app/uploads/2021/02/PR_Archive-1.png 1500w, http://pulpmx.com/app/uploads/2021/02/PR_Archive-1-768x461.png 768w, http://pulpmx.com/app/uploads/2021/02/PR_Archive-1-1024x614.png 1024w, http://pulpmx.com/app/uploads/2021/02/PR_Archive-1-770x462.png 770w" />					</a>
	</figure>
		<div class="post-category"><a href="https://pulpmx.com/category/pulpmx-show-archive/" class="single_category_title category-link-240" title="PulpMX Show Archive">PulpMX Show Archive</a></div>
	<header class="post-title entry-header">
		<h5 class="entry-title" itemprop="name headline"><a href="https://pulpmx.com/2024/03/04/brayton-a-mart-cianciarulo-dbo-rl-archive/" title="Brayton, A Mart, Cianciarulo, DBO, RL Archive">Brayton, A Mart, Cianciarulo, DBO, RL Archive</a></h5>	</header>
			<aside class="post-bottom-meta">
				<div class="">
			<img src="https://pulpmx.com/app/uploads/2021/01/SZF-Mark-150x150.png" width="48" height="48" alt="swizcore" class="avatar avatar-48 wp-user-avatar wp-user-avatar-48 alignnone photo thb-ignore-lazyload" />		</div>
						<strong itemprop="author" class="author vcard"><a href="https://pulpmx.com/author/swizcore/" title="Posts by swizcore" rel="author">swizcore</a></strong>
						<div class="time">March 4, 2024</div>
							<span class="comment">
				<a href="https://pulpmx.com/2024/03/04/brayton-a-mart-cianciarulo-dbo-rl-archive/#respond" title="Brayton, A Mart, Cianciarulo, DBO, RL Archive">
					<svg class="comment_icon" width="13px" height="13px" viewBox="0 0 13 13"><use href="#comment_icon" /></svg> 0				</a>
			</span>
							</aside>
	</div>
					</div>
										
												<div class="small-6 medium-6 thb-5 columns">
						<div class="post style3 style3-alt post-171279 type-post status-publish format-standard has-post-thumbnail hentry category-keefer-daytime">
		<figure class="post-gallery">
		<a href="https://pulpmx.com/2024/03/03/daytime-program-daytona-5/" rel="bookmark" title="Daytime Program: Daytona">
			<img width="640" height="340" src="https://pulpmx.com/app/uploads/2024/03/AL2_8146-20x10.jpg" class="attachment-goodlife-latestshort-2x size-goodlife-latestshort-2x thb-lazyload lazyload wp-post-image" alt="" decoding="async" loading="lazy" sizes="(max-width: 640px) 100vw, 640px" data-src="https://pulpmx.com/app/uploads/2024/03/AL2_8146-640x340.jpg" data-sizes="auto" data-srcset="http://pulpmx.com/app/uploads/2024/03/AL2_8146-640x340.jpg 640w, http://pulpmx.com/app/uploads/2024/03/AL2_8146-320x170.jpg 320w, http://pulpmx.com/app/uploads/2024/03/AL2_8146-20x10.jpg 20w" />					</a>
	</figure>
		<div class="post-category"><a href="https://pulpmx.com/category/keefer-daytime/" class="single_category_title category-link-239" title="Keefer Daytime">Keefer Daytime</a></div>
	<header class="post-title entry-header">
		<h5 class="entry-title" itemprop="name headline"><a href="https://pulpmx.com/2024/03/03/daytime-program-daytona-5/" title="Daytime Program: Daytona">Daytime Program: Daytona</a></h5>	</header>
			<aside class="post-bottom-meta">
				<div class="">
			<img src="https://pulpmx.com/app/uploads/2017/12/keefer_avatar-100x100.jpg" width="48" height="48" alt="Kris Keefer" class="avatar avatar-48 wp-user-avatar wp-user-avatar-48 alignnone photo thb-ignore-lazyload" />		</div>
						<strong itemprop="author" class="author vcard"><a href="https://pulpmx.com/author/kris-keefer/" title="Posts by Kris Keefer" rel="author">Kris Keefer</a></strong>
						<div class="time">March 3, 2024</div>
							<span class="comment">
				<a href="https://pulpmx.com/2024/03/03/daytime-program-daytona-5/#respond" title="Daytime Program: Daytona">
					<svg class="comment_icon" width="13px" height="13px" viewBox="0 0 13 13"><use href="#comment_icon" /></svg> 0				</a>
			</span>
							</aside>
	</div>
					</div>
										
												<div class="small-6 medium-6 thb-5 columns">
						<div class="post style3 style3-alt post-171263 type-post status-publish format-standard has-post-thumbnail hentry category-pro-circuit-post-race-pulpcasts tag-audio tag-interview tag-race">
		<figure class="post-gallery">
		<a href="https://pulpmx.com/2024/03/02/pro-circuit-daytona-sx-post-race-pulpcasts-2/" rel="bookmark" title="Pro Circuit Daytona SX Post-Race PulpCasts">
			<img width="640" height="340" src="https://pulpmx.com/app/uploads/2017/12/2023-Pro-Circuit-Pulpcasts-Lead-20x10.png" class="attachment-goodlife-latestshort-2x size-goodlife-latestshort-2x thb-lazyload lazyload wp-post-image" alt="" decoding="async" loading="lazy" sizes="(max-width: 640px) 100vw, 640px" data-src="https://pulpmx.com/app/uploads/2017/12/2023-Pro-Circuit-Pulpcasts-Lead-640x340.png" data-sizes="auto" data-srcset="http://pulpmx.com/app/uploads/2017/12/2023-Pro-Circuit-Pulpcasts-Lead-640x340.png 640w, http://pulpmx.com/app/uploads/2017/12/2023-Pro-Circuit-Pulpcasts-Lead-320x170.png 320w, http://pulpmx.com/app/uploads/2017/12/2023-Pro-Circuit-Pulpcasts-Lead-20x10.png 20w" />					</a>
	</figure>
		<div class="post-category"><a href="https://pulpmx.com/category/pro-circuit-post-race-pulpcasts/" class="single_category_title category-link-202" title="Pro Circuit Post-Race Pulpcasts">Pro Circuit Post-Race Pulpcasts</a></div>
	<header class="post-title entry-header">
		<h5 class="entry-title" itemprop="name headline"><a href="https://pulpmx.com/2024/03/02/pro-circuit-daytona-sx-post-race-pulpcasts-2/" title="Pro Circuit Daytona SX Post-Race PulpCasts">Pro Circuit Daytona SX Post-Race PulpCasts</a></h5>	</header>
			<aside class="post-bottom-meta">
				<div class="">
			<img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://pulpmx.com/app/uploads/2019/01/pmxn-150x150.png" width="48" height="48" alt="Avatar" class="avatar avatar-48 wp-user-avatar wp-user-avatar-48 photo avatar-default lazyload" />		</div>
						<strong itemprop="author" class="author vcard"><a href="https://pulpmx.com/author/steve/" title="Posts by Steve" rel="author">Steve</a></strong>
						<div class="time">March 2, 2024</div>
							<span class="comment">
				<a href="https://pulpmx.com/2024/03/02/pro-circuit-daytona-sx-post-race-pulpcasts-2/#respond" title="Pro Circuit Daytona SX Post-Race PulpCasts">
					<svg class="comment_icon" width="13px" height="13px" viewBox="0 0 13 13"><use href="#comment_icon" /></svg> 0				</a>
			</span>
							</aside>
	</div>
					</div>
										
												<div class="small-6 medium-6 thb-5 columns">
						<div class="post style3 style3-alt post-171236 type-post status-publish format-standard has-post-thumbnail hentry category-classic_steel tag-blazier tag-classic-steel tag-nostalgia tag-vintage">
		<figure class="post-gallery">
		<a href="https://pulpmx.com/2024/02/29/maxxis-tires-classic-steel-193-1987-honda-cr80r/" rel="bookmark" title="&#8220;Maxxis Tires&#8221; &#8211; Classic Steel #193 &#8220;1987 Honda CR80R&#8221;">
			<img width="640" height="305" src="https://pulpmx.com/app/uploads/2017/10/GP-Classic-Steel.png" class="attachment-goodlife-latestshort-2x size-goodlife-latestshort-2x thb-lazyload lazyload wp-post-image" alt="" decoding="async" loading="lazy" sizes="(max-width: 640px) 100vw, 640px" data-src="https://pulpmx.com/app/uploads/2017/10/GP-Classic-Steel.png" data-sizes="auto" data-srcset="http://pulpmx.com/app/uploads/2017/10/GP-Classic-Steel.png 880w, http://pulpmx.com/app/uploads/2017/10/GP-Classic-Steel-768x367.png 768w, http://pulpmx.com/app/uploads/2017/10/GP-Classic-Steel-770x368.png 770w" />					</a>
	</figure>
		<div class="post-category"><a href="https://pulpmx.com/category/classic_steel/" class="single_category_title category-link-188" title="Classic Steel">Classic Steel</a></div>
	<header class="post-title entry-header">
		<h5 class="entry-title" itemprop="name headline"><a href="https://pulpmx.com/2024/02/29/maxxis-tires-classic-steel-193-1987-honda-cr80r/" title="&#8220;Maxxis Tires&#8221; &#8211; Classic Steel #193 &#8220;1987 Honda CR80R&#8221;">&#8220;Maxxis Tires&#8221; &#8211; Classic Steel #193 &#8220;1987 Honda CR80R&#8221;</a></h5>	</header>
			<aside class="post-bottom-meta">
				<div class="">
			<img src="https://pulpmx.com/app/uploads/2018/01/s1600_GUYB0031-copy-150x150.jpg" width="48" height="48" alt="Tony Blazier" class="avatar avatar-48 wp-user-avatar wp-user-avatar-48 alignnone photo thb-ignore-lazyload" />		</div>
						<strong itemprop="author" class="author vcard"><a href="https://pulpmx.com/author/tony-blazier/" title="Posts by Tony Blazier" rel="author">Tony Blazier</a></strong>
						<div class="time">February 29, 2024</div>
							<span class="comment">
				<a href="https://pulpmx.com/2024/02/29/maxxis-tires-classic-steel-193-1987-honda-cr80r/#comments" title="&#8220;Maxxis Tires&#8221; &#8211; Classic Steel #193 &#8220;1987 Honda CR80R&#8221;">
					<svg class="comment_icon" width="13px" height="13px" viewBox="0 0 13 13"><use href="#comment_icon" /></svg> 1				</a>
			</span>
							</aside>
	</div>
					</div>
										
												<div class="small-6 medium-6 thb-5 columns">
						<div class="post style3 style3-alt post-171181 type-post status-publish format-standard has-post-thumbnail hentry category-super-stats">
		<figure class="post-gallery">
		<a href="https://pulpmx.com/2024/02/28/super-stats-championship-points-percentages-and-the-85-benchmark/" rel="bookmark" title="Super Stats: Championship Points Percentages and the 85% Benchmark">
			<img width="640" height="340" src="https://pulpmx.com/app/uploads/2023/10/Super-Stats-1-20x10.png" class="attachment-goodlife-latestshort-2x size-goodlife-latestshort-2x thb-lazyload lazyload wp-post-image" alt="" decoding="async" loading="lazy" sizes="(max-width: 640px) 100vw, 640px" data-src="https://pulpmx.com/app/uploads/2023/10/Super-Stats-1-640x340.png" data-sizes="auto" data-srcset="http://pulpmx.com/app/uploads/2023/10/Super-Stats-1-640x340.png 640w, http://pulpmx.com/app/uploads/2023/10/Super-Stats-1-320x170.png 320w, http://pulpmx.com/app/uploads/2023/10/Super-Stats-1-20x10.png 20w" />					</a>
	</figure>
		<div class="post-category"><a href="https://pulpmx.com/category/super-stats/" class="single_category_title category-link-267" title="Super Stats">Super Stats</a></div>
	<header class="post-title entry-header">
		<h5 class="entry-title" itemprop="name headline"><a href="https://pulpmx.com/2024/02/28/super-stats-championship-points-percentages-and-the-85-benchmark/" title="Super Stats: Championship Points Percentages and the 85% Benchmark">Super Stats: Championship Points Percentages and the 85% Benchmark</a></h5>	</header>
			<aside class="post-bottom-meta">
				<div class="">
			<img src="https://pulpmx.com/app/uploads/2023/09/MX-Reference-logos-150x150.jpeg" width="48" height="48" alt="Nick Taylor" class="avatar avatar-48 wp-user-avatar wp-user-avatar-48 alignnone photo thb-ignore-lazyload" />		</div>
						<strong itemprop="author" class="author vcard"><a href="https://pulpmx.com/author/mx-reference/" title="Posts by Nick Taylor" rel="author">Nick Taylor</a></strong>
						<div class="time">February 28, 2024</div>
							<span class="comment">
				<a href="https://pulpmx.com/2024/02/28/super-stats-championship-points-percentages-and-the-85-benchmark/#respond" title="Super Stats: Championship Points Percentages and the 85% Benchmark">
					<svg class="comment_icon" width="13px" height="13px" viewBox="0 0 13 13"><use href="#comment_icon" /></svg> 0				</a>
			</span>
							</aside>
	</div>
					</div>
										
												<div class="small-6 medium-6 thb-5 columns">
						<div class="post style3 style3-alt post-171223 type-post status-publish format-standard has-post-thumbnail hentry category-keefer-tested">
		<figure class="post-gallery">
		<a href="https://pulpmx.com/2024/02/27/triumph-tf-250-x-questions-answered/" rel="bookmark" title="Triumph TF 250-X Questions Answered">
			<img width="640" height="340" src="https://pulpmx.com/app/uploads/2024/02/IMG_1221-20x10.jpg" class="attachment-goodlife-latestshort-2x size-goodlife-latestshort-2x thb-lazyload lazyload wp-post-image" alt="" decoding="async" loading="lazy" sizes="(max-width: 640px) 100vw, 640px" data-src="https://pulpmx.com/app/uploads/2024/02/IMG_1221-640x340.jpg" data-sizes="auto" data-srcset="http://pulpmx.com/app/uploads/2024/02/IMG_1221-640x340.jpg 640w, http://pulpmx.com/app/uploads/2024/02/IMG_1221-320x170.jpg 320w, http://pulpmx.com/app/uploads/2024/02/IMG_1221-20x10.jpg 20w" />					</a>
	</figure>
		<div class="post-category"><a href="https://pulpmx.com/category/keefer-tested/" class="single_category_title category-link-208" title="Keefer Tested">Keefer Tested</a></div>
	<header class="post-title entry-header">
		<h5 class="entry-title" itemprop="name headline"><a href="https://pulpmx.com/2024/02/27/triumph-tf-250-x-questions-answered/" title="Triumph TF 250-X Questions Answered">Triumph TF 250-X Questions Answered</a></h5>	</header>
			<aside class="post-bottom-meta">
				<div class="">
			<img src="https://pulpmx.com/app/uploads/2017/12/keefer_avatar-100x100.jpg" width="48" height="48" alt="Kris Keefer" class="avatar avatar-48 wp-user-avatar wp-user-avatar-48 alignnone photo thb-ignore-lazyload" />		</div>
						<strong itemprop="author" class="author vcard"><a href="https://pulpmx.com/author/kris-keefer/" title="Posts by Kris Keefer" rel="author">Kris Keefer</a></strong>
						<div class="time">February 27, 2024</div>
							<span class="comment">
				<a href="https://pulpmx.com/2024/02/27/triumph-tf-250-x-questions-answered/#respond" title="Triumph TF 250-X Questions Answered">
					<svg class="comment_icon" width="13px" height="13px" viewBox="0 0 13 13"><use href="#comment_icon" /></svg> 0				</a>
			</span>
							</aside>
	</div>
					</div>
										
												<div class="small-6 medium-6 thb-5 columns">
						<div class="post style3 style3-alt post-171214 type-post status-publish format-standard has-post-thumbnail hentry category-pulpmx-show-archive">
		<figure class="post-gallery">
		<a href="https://pulpmx.com/2024/02/26/tedesco-carmichael-stanton-from-florida-archive/" rel="bookmark" title="Tedesco, Carmichael, Stanton from Florida Archive">
			<img width="567" height="340" src="https://pulpmx.com/app/uploads/2021/02/PR_Archive-1.png" class="attachment-goodlife-latestshort-2x size-goodlife-latestshort-2x thb-lazyload lazyload wp-post-image" alt="" decoding="async" loading="lazy" sizes="(max-width: 567px) 100vw, 567px" data-src="https://pulpmx.com/app/uploads/2021/02/PR_Archive-1.png" data-sizes="auto" data-srcset="http://pulpmx.com/app/uploads/2021/02/PR_Archive-1.png 1500w, http://pulpmx.com/app/uploads/2021/02/PR_Archive-1-768x461.png 768w, http://pulpmx.com/app/uploads/2021/02/PR_Archive-1-1024x614.png 1024w, http://pulpmx.com/app/uploads/2021/02/PR_Archive-1-770x462.png 770w" />					</a>
	</figure>
		<div class="post-category"><a href="https://pulpmx.com/category/pulpmx-show-archive/" class="single_category_title category-link-240" title="PulpMX Show Archive">PulpMX Show Archive</a></div>
	<header class="post-title entry-header">
		<h5 class="entry-title" itemprop="name headline"><a href="https://pulpmx.com/2024/02/26/tedesco-carmichael-stanton-from-florida-archive/" title="Tedesco, Carmichael, Stanton from Florida Archive">Tedesco, Carmichael, Stanton from Florida Archive</a></h5>	</header>
			<aside class="post-bottom-meta">
				<div class="">
			<img src="https://pulpmx.com/app/uploads/2021/01/SZF-Mark-150x150.png" width="48" height="48" alt="swizcore" class="avatar avatar-48 wp-user-avatar wp-user-avatar-48 alignnone photo thb-ignore-lazyload" />		</div>
						<strong itemprop="author" class="author vcard"><a href="https://pulpmx.com/author/swizcore/" title="Posts by swizcore" rel="author">swizcore</a></strong>
						<div class="time">February 26, 2024</div>
							<span class="comment">
				<a href="https://pulpmx.com/2024/02/26/tedesco-carmichael-stanton-from-florida-archive/#respond" title="Tedesco, Carmichael, Stanton from Florida Archive">
					<svg class="comment_icon" width="13px" height="13px" viewBox="0 0 13 13"><use href="#comment_icon" /></svg> 0				</a>
			</span>
							</aside>
	</div>
					</div>
																			<div class="small-12 columns">
						
	<nav class="navigation pagination" aria-label="Posts">
		<h2 class="screen-reader-text">Posts navigation</h2>
		<div class="nav-links"><span aria-current="page" class="page-numbers current">1</span>
<a class="page-numbers" href="https://pulpmx.com/page/2/">2</a>
<a class="page-numbers" href="https://pulpmx.com/page/3/">3</a>
<span class="page-numbers dots">&hellip;</span>
<a class="page-numbers" href="https://pulpmx.com/page/155/">155</a>
<a class="next page-numbers" href="https://pulpmx.com/page/2/"><span>&rarr;</span></a></div>
	</nav>						</div>
								</div>

		</div></div></div></div>
		</div>
	</div>
		</div><!-- End role["main"] -->
		<!-- Start Footer -->
<footer id="footer" class="dark ">
	<div class="row">
			<div class="small-12 medium-4 large-4 columns">
			<div id="text-1" class="widget cf widget_text title-style1"><div class="widget_title"><strong>About</strong></div>			<div class="textwidget"><p>PulpMX exists as an informed, fan-driven Pro Motocross and Supercross site where objective editorial and entertaining racing-centric discourse flourish.</p>
</div>
		</div>	</div>
	<div class="small-12 medium-4 large-4 columns">
			<div id="thb_singlead_widget-1" class="widget cf widget_thbadsingle title-style1"><div class="widget_title"><strong>JOIN PULPMX FANTASY TODAY!</strong></div><!--/*
  *
  * Revive Adserver Asynchronous JS Tag
  * - Generated with Revive Adserver v4.0.2
  *
  */-->

<ins data-revive-zoneid="32" data-revive-id="24704d35ae7c298ae906cd2720f1088a"></ins>
<script async src="//pulpmx.com/adserve/www/delivery/asyncjs.php"></script>				</div>	</div>
	<div class="small-12 medium-4 large-4 columns">
			<div id="thb_socialcounter_widget-1" class="widget cf widget_socialcounter title-style1"><div class="widget_title"><strong>Follow Us</strong></div>	<div class="thb-social-links-container style1 thb-social-vertical">
			<div class="thb-social-link-wrap">
		<a href="https://facebook.com/PulpMX-131556946858898" target="_blank" class="thb-social-link social-link-facebook">
		<div class="thb-social-label-container">
			<div class="thb-social-icon-container"><i class="fa fa-facebook"></i></div>
							<div class="thb-social-label">Facebook</div>		</div>
					</a>
	</div>
				<div class="thb-social-link-wrap">
		<a href="https://twitter.com/PulpMX" target="_blank" class="thb-social-link social-link-twitter">
		<div class="thb-social-label-container">
			<div class="thb-social-icon-container"><i class="fa fa-twitter"></i></div>
							<div class="thb-social-label">Twitter</div>		</div>
					</a>
	</div>
				<div class="thb-social-link-wrap">
		<a href="https://instagram.com/PulpMX" target="_blank" class="thb-social-link social-link-instagram">
		<div class="thb-social-label-container">
			<div class="thb-social-icon-container"><i class="fa fa-instagram"></i></div>
							<div class="thb-social-label">Instagram</div>		</div>
					</a>
	</div>
				</div>
		</div>	</div>
		</div>
</footer>
<!-- End Footer -->
					<!-- Start Sub Footer -->
		<footer id="subfooter" class="dark  style1">
			<div class="row">
				<div class="small-12 columns">
					<div class="subfooter-menu-holder text-center">
						<strong>Follow Pulp Nation on Twitter</strong>
						<div class="subfooter-menu"><ul id="menu-twitter-menu" class="footer-menu"><li id="menu-item-42260" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-42260"><a title="PulpMX" target="_blank" rel="noopener" href="https://twitter.com/pulpMX">PulpMX</a></li>
<li id="menu-item-42264" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-42264"><a target="_blank" rel="noopener" href="https://twitter.com/Jason66Thomas">Jason Thomas</a></li>
<li id="menu-item-43482" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-43482"><a href="https://twitter.com/KKeefer120">KRIS KEEFER</a></li>
<li id="menu-item-42276" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-42276"><a href="https://twitter.com/imtravismarx">Marx</a></li>
<li id="menu-item-42266" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-42266"><a target="_blank" rel="noopener" href="https://twitter.com/CLMoser">Moser</a></li>
<li id="menu-item-42263" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-42263"><a target="_blank" rel="noopener" href="https://twitter.com/swizcore">Swizcore</a></li>
<li id="menu-item-42261" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-42261"><a title="Tony Blazier" target="_blank" rel="noopener" href="https://twitter.com/TonyBlazier">Tony Blazier</a></li>
</ul></div>		
					</div>
				</div>
			</div>
			<div class="row">
				<div class="small-12 columns">
					<div class="subfooter-menu-holder text-center">
													<a href="https://pulpmx.com/" class="logolink">
								<img src="http://pulpmx.com/app/uploads/2017/07/pmx2018_new.jpg" class="logoimg" alt="PulpMX"/>
							</a>
												<div class="subfooter-menu"><ul id="menu-footer-navigation" class="footer-menu"><li id="menu-item-31288" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31288"><a href="https://pulpmx.com/stories/">Stories</a></li>
<li id="menu-item-31289" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31289"><a href="https://pulpmx.com/podcasts/">Podcasts</a></li>
<li id="menu-item-31287" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31287"><a href="https://pulpmx.com/contact/">Contact</a></li>
<li id="menu-item-31292" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-31292"><a href="https://pulpmx.com/pulpmxshowsandbox/">Pulpmx Show (Staging)</a></li>
<li id="menu-item-42918" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-42918"><a href="/wp/wp-admin">Login</a></li>
<li id="menu-item-162029" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-162029"><a href="https://pulpmx.com/privacy-policy/">Privacy Policy</a></li>
</ul></div>
						<p>Copyright 2021 PulpMX. All Rights Reserved. </p>

						<div class="subfooter-social">
													</div>
					</div>
				</div>
			</div>
		</footer>
		<!-- End Sub Footer -->
			</div> <!-- End #content-container -->
	<nav id="mobile-menu" class="style1">
	<div class="custom_scroll" id="menu-scroll">
			<div class="mobile-top">
			<div class="login-links">		<a href="#thb-login" rel="inline" title="Login / Register">Login / Register</a>
		</div>									</div>
							<ul id="menu-primary-navigation-2" class="mobile-menu"><li class=" menu-item menu-item-type-post_type menu-item-object-page menu-item-170658"><a href="https://pulpmx.com/pulpmxshow/">Pulpmx Show</a></li>
<li class=" menu-item menu-item-type-post_type menu-item-object-page menu-item-50939"><a href="https://pulpmx.com/moto60-show/">Moto:60 Show</a></li>
<li class=" menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-30316"><a href="https://pulpmx.com/stories/"><span><i class="fa fa-plus"></i></span></span>Stories</a>
<ul class="sub-menu">
	<li class=" menu-item menu-item-type-taxonomy menu-item-object-category menu-item-165509 menu-item-category-263"><a href="https://pulpmx.com/category/advancedanalytics/">Advanced Analytics</a></li>
	<li class=" menu-item menu-item-type-taxonomy menu-item-object-category menu-item-31330 menu-item-category-188"><a href="https://pulpmx.com/category/classic_steel/">Classic Steel</a></li>
	<li class=" menu-item menu-item-type-taxonomy menu-item-object-category menu-item-149819 menu-item-category-236"><a href="https://pulpmx.com/category/dv-on/">DV On</a></li>
	<li class=" menu-item menu-item-type-taxonomy menu-item-object-category menu-item-31312 menu-item-category-182"><a href="https://pulpmx.com/category/just-short/">Just Short</a></li>
	<li class=" menu-item menu-item-type-taxonomy menu-item-object-category menu-item-31310 menu-item-category-186"><a href="https://pulpmx.com/category/keefer-kuestions/">Keefer Kuestions</a></li>
	<li class=" menu-item menu-item-type-taxonomy menu-item-object-category menu-item-139509 menu-item-category-208"><a href="https://pulpmx.com/category/keefer-tested/">Keefer Tested</a></li>
	<li class=" menu-item menu-item-type-taxonomy menu-item-object-category menu-item-37030 menu-item-category-205"><a href="https://pulpmx.com/category/moservations/">Moservations</a></li>
	<li class=" menu-item menu-item-type-taxonomy menu-item-object-category menu-item-31311 menu-item-category-180"><a href="https://pulpmx.com/category/observations/">Observations</a></li>
	<li class=" menu-item menu-item-type-taxonomy menu-item-object-category menu-item-37031 menu-item-category-203"><a href="https://pulpmx.com/category/point-counterpoint/">Point/Counterpoint</a></li>
	<li class=" menu-item menu-item-type-taxonomy menu-item-object-category menu-item-37029 menu-item-category-204"><a href="https://pulpmx.com/category/rapid-fire/">Rapid Fire</a></li>
	<li class=" menu-item menu-item-type-taxonomy menu-item-object-category menu-item-31309 menu-item-category-185"><a href="https://pulpmx.com/category/swizcorner/">Swizcorner</a></li>
</ul>
</li>
<li class=" menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-30315"><a href="https://pulpmx.com/podcasts/"><span><i class="fa fa-plus"></i></span></span>Podcasts</a>
<ul class="sub-menu">
	<li class=" menu-item menu-item-type-post_type menu-item-object-post menu-item-169346"><a href="https://pulpmx.com/2022/06/30/guest-podcast-archive-listing-tabbed/">Guest Podcast Archive Listing (Tabbed Years)</a></li>
	<li class=" menu-item menu-item-type-post_type menu-item-object-post menu-item-139510"><a href="https://pulpmx.com/2018/07/08/guest-podcast-episode-archive/">Guest-Podcast Episode Archive (Single Page List)</a></li>
	<li class=" menu-item menu-item-type-post_type menu-item-object-post menu-item-162795"><a href="https://pulpmx.com/2021/02/12/guest-podcast-episode-archive-2/">PulpMX Podcast Feed URLS</a></li>
	<li class=" menu-item menu-item-type-custom menu-item-object-custom menu-item-164972"><a href="http://pulpmx.com/podcast_category/coffeewithkeefers/">Coffee with the Keefers</a></li>
	<li class=" menu-item menu-item-type-custom menu-item-object-custom menu-item-164969"><a href="http://pulpmx.com/podcast_category/moto60/">Fly Racing Moto:60 Show</a></li>
	<li class=" menu-item menu-item-type-custom menu-item-object-custom menu-item-164967"><a href="http://pulpmx.com/podcast_category/pulpmx/">PulpMX Show</a></li>
	<li class=" menu-item menu-item-type-custom menu-item-object-custom menu-item-164968"><a href="http://pulpmx.com/podcast_category/reraceables/">Re-Raceables</a></li>
	<li class=" menu-item menu-item-type-custom menu-item-object-custom menu-item-164971"><a href="http://pulpmx.com/podcast_category/keefer/">Rocky Mountain ATV/MC Keefer Tested</a></li>
	<li class=" menu-item menu-item-type-custom menu-item-object-custom menu-item-164973"><a href="http://pulpmx.com/podcast_category/shiftinggears/">Shifting Gears: The Zach Osborne Podcast</a></li>
	<li class=" menu-item menu-item-type-custom menu-item-object-custom menu-item-164966"><a href="http://pulpmx.com/podcast_category/steveshow/">The Steve Matthes Show</a></li>
</ul>
</li>
<li class=" menu-item menu-item-type-taxonomy menu-item-object-category menu-item-has-children menu-item-42919 menu-item-category-190"><a href="https://pulpmx.com/category/mxhistory/"><span><i class="fa fa-plus"></i></span></span>MX History</a>
<ul class="sub-menu">
	<li class=" menu-item menu-item-type-post_type menu-item-object-post menu-item-164965"><a href="https://pulpmx.com/2021/11/19/the-oral-history-of-the-u-s-open-of-supercross/">The Oral History of the U.S. Open of Supercross</a></li>
	<li class=" menu-item menu-item-type-post_type menu-item-object-post menu-item-160000"><a href="https://pulpmx.com/2020/05/12/windham-the-lost-seasons/">Windham: “The Lost Seasons”</a></li>
	<li class=" menu-item menu-item-type-post_type menu-item-object-post menu-item-155589"><a href="https://pulpmx.com/2019/05/01/the-rise-and-fall-of-no-fear/">The Rise and Fall of No Fear</a></li>
	<li class=" menu-item menu-item-type-post_type menu-item-object-post menu-item-125447"><a href="https://pulpmx.com/2018/05/11/the-oral-history-of-two-two-motorsports/">The Oral History of Two Two Motorsports</a></li>
	<li class=" menu-item menu-item-type-post_type menu-item-object-post menu-item-31937"><a href="https://pulpmx.com/2017/02/21/fourteen-and-one/">Fourteen and One</a></li>
	<li class=" menu-item menu-item-type-post_type menu-item-object-post menu-item-31936"><a href="https://pulpmx.com/2017/08/17/fight-club-pastrana-langston-brown-and-a-title/">Fight Club: Pastrana, Langston, Brown and a Title</a></li>
	<li class=" menu-item menu-item-type-post_type menu-item-object-post menu-item-39993"><a href="https://pulpmx.com/2014/07/24/moto-xxx-the-complete-oral-history/">Moto XXX: The Complete Oral History</a></li>
	<li class=" menu-item menu-item-type-post_type menu-item-object-post menu-item-31938"><a href="https://pulpmx.com/2016/09/11/pro-circuit-a-season-on-the-brink/">Pro Circuit: A Season on the Brink</a></li>
	<li class=" menu-item menu-item-type-post_type menu-item-object-post menu-item-102052"><a href="https://pulpmx.com/2018/04/07/boy-wonder-the-eddie-hicks-story/">Boy Wonder: The Eddie Hicks Story</a></li>
	<li class=" menu-item menu-item-type-post_type menu-item-object-post menu-item-31939"><a href="https://pulpmx.com/2015/12/01/scott-motosports-eleven-tenths/">Scott Motosports: Eleven Tenths</a></li>
	<li class=" menu-item menu-item-type-post_type menu-item-object-post menu-item-151365"><a href="https://pulpmx.com/2018/08/02/inside-motocross-issue-1/">Inside Motocross Issue: 1</a></li>
	<li class=" menu-item menu-item-type-post_type menu-item-object-post menu-item-151366"><a href="https://pulpmx.com/2018/08/07/inside-motocross-issue-2/">Inside Motocross Issue: 2</a></li>
	<li class=" menu-item menu-item-type-post_type menu-item-object-post menu-item-61119"><a href="https://pulpmx.com/2013/09/17/numerology-1980-1989/">Numerology- 1980-1989</a></li>
	<li class=" menu-item menu-item-type-post_type menu-item-object-post menu-item-61121"><a href="https://pulpmx.com/2013/09/12/numerology-1990-1999/">Numerology- 1990-1999</a></li>
	<li class=" menu-item menu-item-type-post_type menu-item-object-post menu-item-61122"><a href="https://pulpmx.com/2013/09/11/numerology-2000-2009/">Numerology- 2000-2009</a></li>
	<li class=" menu-item menu-item-type-post_type menu-item-object-post menu-item-61120"><a href="https://pulpmx.com/2013/09/13/numerology-2010-2014/">Numerology- 2010-2014</a></li>
</ul>
</li>
<li class=" menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-32081"><a href="http://pulpmx.com/category/pulpmx-video/"><span><i class="fa fa-plus"></i></span></span>Videos</a>
<ul class="sub-menu">
	<li class=" menu-item menu-item-type-taxonomy menu-item-object-category menu-item-78353 menu-item-category-243"><a href="https://pulpmx.com/category/video-on-location/">On Location</a></li>
	<li class=" menu-item menu-item-type-custom menu-item-object-custom menu-item-78559"><a href="http://pulpmx.com/2018/03/09/the-bto-sports-bottom-line-show-season-2/">The Bottom Line Show</a></li>
	<li class=" menu-item menu-item-type-taxonomy menu-item-object-category menu-item-68756 menu-item-category-215"><a href="https://pulpmx.com/category/classic-commentary/">Classic Commentary</a></li>
	<li class=" menu-item menu-item-type-custom menu-item-object-custom menu-item-78352"><a href="http://pulpmx.com/2018/02/23/pulpmx-showpro-archived-playlist/">PulpMX ShowPRO</a></li>
</ul>
</li>
<li class=" menu-item menu-item-type-custom menu-item-object-custom menu-item-104166"><a href="http://pulpmx.com/2016/04/25/shop-pulpmx-gear/">Shop</a></li>
<li class=" menu-item menu-item-type-custom menu-item-object-custom menu-item-34672"><a target="_blank" href="http://www.pulpmxfantasy.com">PulpMX Fantasy</a></li>
</ul>									<div class="social-links">
							</div>
			<div class="menu-footer">
							</div>
	</div>
</nav>
</div> <!-- End #wrapper -->

		<a id="scroll_totop"><i class="fa fa-angle-up"></i></a>
		<script>
		var advanced_ads_adsense_UID = false;
		/**
 * Check if an ad blocker is enabled.
 *
 * @param {function} callback A callback function that is executed after the check has been done.
 *                            The 'is_enabled' (bool) variable is passed as the callback's first argument.
 */
;advanced_ads_check_adblocker = ( function( callback ) {
	var pending_callbacks = [];
	var is_enabled = null;

	function RAF( RAF_callback ) {
		var fn = window.requestAnimationFrame
		|| window.mozRequestAnimationFrame
		|| window.webkitRequestAnimationFrame
		|| function( RAF_callback ) { return setTimeout( RAF_callback, 16 ); };

		fn.call( window, RAF_callback );
	}

	RAF( function() {
		// Create a bait.
		var ad = document.createElement( 'div' );
		ad.innerHTML = '&nbsp;';
		ad.setAttribute( 'class', 'ad_unit ad-unit text-ad text_ad pub_300x250' );
		ad.setAttribute( 'style', 'width: 1px !important; height: 1px !important; position: absolute !important; left: 0px !important; top: 0px !important; overflow: hidden !important;' );
		document.body.appendChild( ad );

		RAF( function() {
			var styles = window.getComputedStyle && window.getComputedStyle( ad );
			var moz_binding = styles && styles.getPropertyValue( '-moz-binding' );

			is_enabled = ( styles && styles.getPropertyValue( 'display' ) === 'none' )
			|| ( typeof moz_binding === 'string' && moz_binding.indexOf( 'about:' ) !== -1 );

			// Call pending callbacks.
			for ( var i = 0; i < pending_callbacks.length; i++ ) {
				pending_callbacks[ i ]( is_enabled );
			}
			pending_callbacks = [];
		} );
	} );

	return function( callback ) {
		if ( is_enabled === null ) {
			pending_callbacks.push( callback );
			return;
		}
		// Run the callback immediately
		callback( is_enabled );
	}
}());

(function() {
	var advadsTracker = function( name, UID ) {
		this.name = name;
		this.UID = UID;
		this.analyticsObject = null;
		var that = this;
		var data = {
			hitType: 'event',
			eventCategory: 'Advanced Ads',
			eventAction: 'AdBlock',
			eventLabel: 'Yes',
			nonInteraction: true,
			transport: 'beacon'
		};

		/**
		 * check if someone has already requested the analytics.js and created a GoogleAnalyticsObject
		 */
		this.analyticsObject = ( 'string' == typeof( GoogleAnalyticsObject ) && 'function' == typeof( window[GoogleAnalyticsObject] ) )? window[GoogleAnalyticsObject] : false;

		if ( false === this.analyticsObject ) {
			// No one has requested analytics.js at this point. Require it
			(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
				(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
				m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
			})(window,document,'script','https://www.google-analytics.com/analytics.js','_advads_ga');

			_advads_ga( 'create', that.UID, 'auto', this.name );
			_advads_ga( that.name + '.send', data );
		} else {
			// someone has already created a variable, use it to avoid conflicts.
			window.console && window.console.log( "Advanced Ads Analytics >> using other's variable named `" + GoogleAnalyticsObject + "`" );
			window[GoogleAnalyticsObject]( 'create', that.UID, 'auto', this.name );
			window[GoogleAnalyticsObject]( that.name + '.send', data );
		}
	}

	advanced_ads_check_adblocker( function( is_enabled ) {
		// Send data to Google Analytics if an ad blocker was detected.
		if ( is_enabled && 'string' === typeof advanced_ads_adsense_UID && advanced_ads_adsense_UID ) {
			new advadsTracker( 'advadsTracker', advanced_ads_adsense_UID );
		}
	} );
}());

		</script><aside class="thb-cookie-bar">
	<div class="thb-cookie-text">
	<p>Our site uses cookies. Learn more about our use of cookies: <a href="#">cookie policy</a></p>	</div>
	<a class="button white-transparent">ACCEPT</a>
</aside>
	<script type="text/html" id="wpb-modifications"></script><style id='core-block-supports-inline-css' type='text/css'>
/**
 * Core styles: block-supports
 */

</style>
<script src='https://cdn.plyr.io/3.6.3/plyr.polyfilled.js?ver=3.6.3' id='plyr-js'></script>
<script src='https://pulpmx.com/wp/wp-includes/js/underscore.min.js?ver=1.13.4' id='underscore-js'></script>
<script src='https://pulpmx.com/app/themes/goodlife-wp/assets/js/vendor.min.js?ver=4.6.0' id='thb-vendor-js'></script>
<script type='text/javascript' id='thb-app-js-extra'>
/* <![CDATA[ */
var themeajax = {"url":"https:\/\/pulpmx.com\/wp\/wp-admin\/admin-ajax.php","l10n":{"loading":"Loading ...","nomore":"No More Posts"},"settings":{"viai_publisher_id":"431861828953521","thb_custom_video_player":"on"}};
/* ]]> */
</script>
<script src='https://pulpmx.com/app/themes/goodlife-wp/assets/js/app.min.js?ver=4.6.0' id='thb-app-js'></script>
<script type='text/javascript' id='pulpmx/js-js-extra'>
/* <![CDATA[ */
var pulpmx = {"post_id":"275","post_count":"12"};
/* ]]> */
</script>
<script src='https://pulpmx.com/app/themes/pulpmx/dist/scripts/main.js' id='pulpmx/js-js'></script>
<script src='https://pulpmx.com/app/plugins/js_composer/assets/js/dist/js_composer_front.min.js?ver=6.8.0' id='wpb_composer_front_js-js'></script>
	<aside id="thb-login" class="mfp-hide thb-login-form light">
		<ul>
			<li class="lost"><a href="#" class="always">Lost Password</a> <span class="back">Back &#x27F6;</span></li>
			<li><a href="#" class="active">Login</a></li>
			<li><a href="#">Register</a></li>
		</ul>
		<div class="thb-overflow-container">
		<div class="thb-form-container">
			<div class="thb-lost">
				<form id="thb_lost_form" action="https://pulpmx.com/" method="post">
					<div class="thb-errors lost-errors"></div>
					<div class="form-field">
						<input class="form-control required " name="thb_user_or_email" id="thb_user_or_email" type="text" placeholder="Username or E-mail" />
					</div>
					<div class="form-field">
						<input type="hidden" name="action" value="thb_reset_password"/>
						<button class="btn " type="submit">Get new password</button>
					</div>
					<input type="hidden" id="password-security" name="password-security" value="465622c1a1" /><input type="hidden" name="_wp_http_referer" value="/" />				</form>
			</div>
			<div class="thb-login">
				<form id="thb_login_form" action="https://pulpmx.com/" method="post">
					<div class="thb-errors login-errors"></div>
					<div class="form-field">
						<input class="form-control required " name="thb_user_login" type="text" placeholder="Username" autocomplete="off" />
					</div>
					<div class="form-field">
						<input class="form-control required " name="thb_user_pass" id="thb_user_pass" type="password" placeholder="Password">
					</div>
					<div class="form-field">
						 <a href="#" class="lost_password">Lost Password?</a>
					</div>
					<div class="form-field last">
						<input type="hidden" name="action" value="thb_login_member"/>
						<button class="btn " type="submit">Login</button>
					</div>
					<input type="hidden" id="login-security" name="login-security" value="465622c1a1" /><input type="hidden" name="_wp_http_referer" value="/" />				</form>

			</div>
			<div class="thb-register">
				<div class="alert alert-warning">Registration is disabled.</div>			</div>
		</div>
		</div>
	</aside>
		<div class="hide">
		<svg class="comment_icon" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
	 width="13px" height="13px" viewBox="0 0 13 13" enable-background="new 0 0 13 13" xml:space="preserve">
<path id="comment_icon" d="M12.7,0H0.3C0.134,0,0,0.128,0,0.286v9.143c0,0.157,0.134,0.286,0.3,0.286h2.1v3c0,0.105,0.061,0.201,0.159,0.252
	C2.603,12.988,2.651,13,2.7,13c0.058,0,0.116-0.016,0.167-0.048l3.524-3.237H12.7c0.165,0,0.3-0.129,0.3-0.286V0.286
	C13,0.128,12.865,0,12.7,0z"/>
</svg>
	</div>
	</body>
</html>