<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<script>
        window.ConsentManager = window.ConsentManager || {
            /**
             * @param {bool} enabled whether consent management is enabled
             * @note Since we do not have 'must-use' modules currently, this is
             *       a way for us to safeguard in the case that our amg_consent_management
             *       module gets disabled for some reason. This in effect causes our site to
             *       run without the notion of 'consent'.
             */
            enabled: true,

            registerPurposeHandler: function (purposes, callback) {
                this.handle(callback);
            },
            registerVendorHandler: function (vendor, callback) {
                this.handle(callback);
            },
            registerPublisherHandler: function (purposes, callback) {
                this.handle(callback);
            },
            handle: function (callback) {
                if (this.enabled === true) {
                    callback();
                }
            },
            checkPurposeConsent: function(purpose) {
                return this.enabled;
            }
        };
    </script>
<script>
if (typeof window.LogBuilder === "undefined") {
    window.LogBuilder = function(prefix, enabled) {
        return {
            buffer: [],
            debugOn : enabled,
            prefix: prefix,

            log: function (label, value) {
                if (this.debugOn !== true) {
                    this.bufferItem('log')
                    return;
                }

                console.log(this.prefix + label);

                if (typeof value === "undefined") {
                    return;
                }

                console.log(value);
            },
            table: function(label, value) {
                if (this.debugOn !== true) {
                    this.bufferItem('table', arguments)
                    return;
                }

                console.log(this.prefix + label);

                if (typeof console.table === "function") {
                    console.table(value);
                } else {
                    // ie doesn't have console.table
                    console.log(value);
                }

            },
            info: function(label, value) {
                if (this.debugOn !== true) {
                    this.bufferItem('info', arguments);
                    return;
                }
                console.info(this.prefix + label);

                if (typeof value !== "undefined") {
                    console.info(value);
                }
            },
            warn: function(label, value) {
                if (this.debugOn !== true) {
                    this.bufferItem('warn', arguments);
                    return;
                }
                console.warn(this.prefix + label);

                if (typeof value !== "undefined") {
                    console.warn(value);
                }
            },
            error: function(label, value) {
                if (this.debugOn !== true) {
                    this.bufferItem('error', arguments);
                    return;
                }
                console.error("AMG_ADS -- " + label);

                if (typeof value !== "undefined") {
                    console.error(value);
                }
            },
            enable: function() {
                if (this.debugOn !== true) {
                    this.debugOn = true;
                    this.dumpBuffer();
                }

                return this;
            },
            disable: function() {
                if (this.debugOn !== false) {
                    this.debugOff = true;
                    this.buffer = [];
                }

                return this;
            },
            bufferItem : function(type, arguments) {
                this.buffer.push({'type' : type, 'arguments' : arguments});
                return this;
            },
            dumpBuffer: function() {
                if (this.debugOn !== true) {
                    return this;
                }

                while (this.buffer.length > 0) {
                    var item = this.buffer.shift();
                    this[item['type']].apply(this, item['arguments']);
                }
            },
            queryStringExists: function(targetString) {
                var regex = new RegExp(targetString);
                if (regex.exec(window.location.search.toLowerCase()) === null) {
                    // string doesn't exist in query string
                    return false;
                }
                // string exists in query string
                return true;
            }

        };
    };
}
</script>

<link rel="stylesheet" href="https://cdn.consentmanager.mgr.consensu.org/delivery/cmp.min.css" />
<script type="text/javascript" async=true>
    /** PROMISE POLYFILL **/
    !function(e,n){"object"==typeof exports&&"undefined"!=typeof module?n():"function"==typeof define&&define.amd?define(n):n()}(0,function(){"use strict";function e(e){var n=this.constructor;return this.then(function(t){return n.resolve(e()).then(function(){return t})},function(t){return n.resolve(e()).then(function(){return n.reject(t)})})}function n(e){return!(!e||"undefined"==typeof e.length)}function t(){}function o(e){if(!(this instanceof o))throw new TypeError("Promises must be constructed via new");if("function"!=typeof e)throw new TypeError("not a function");this._state=0,this._handled=!1,this._value=undefined,this._deferreds=[],c(e,this)}function r(e,n){for(;3===e._state;)e=e._value;0!==e._state?(e._handled=!0,o._immediateFn(function(){var t=1===e._state?n.onFulfilled:n.onRejected;if(null!==t){var o;try{o=t(e._value)}catch(r){return void f(n.promise,r)}i(n.promise,o)}else(1===e._state?i:f)(n.promise,e._value)})):e._deferreds.push(n)}function i(e,n){try{if(n===e)throw new TypeError("A promise cannot be resolved with itself.");if(n&&("object"==typeof n||"function"==typeof n)){var t=n.then;if(n instanceof o)return e._state=3,e._value=n,void u(e);if("function"==typeof t)return void c(function(e,n){return function(){e.apply(n,arguments)}}(t,n),e)}e._state=1,e._value=n,u(e)}catch(r){f(e,r)}}function f(e,n){e._state=2,e._value=n,u(e)}function u(e){2===e._state&&0===e._deferreds.length&&o._immediateFn(function(){e._handled||o._unhandledRejectionFn(e._value)});for(var n=0,t=e._deferreds.length;t>n;n++)r(e,e._deferreds[n]);e._deferreds=null}function c(e,n){var t=!1;try{e(function(e){t||(t=!0,i(n,e))},function(e){t||(t=!0,f(n,e))})}catch(o){if(t)return;t=!0,f(n,o)}}var a=setTimeout;o.prototype["catch"]=function(e){return this.then(null,e)},o.prototype.then=function(e,n){var o=new this.constructor(t);return r(this,new function(e,n,t){this.onFulfilled="function"==typeof e?e:null,this.onRejected="function"==typeof n?n:null,this.promise=t}(e,n,o)),o},o.prototype["finally"]=e,o.all=function(e){return new o(function(t,o){function r(e,n){try{if(n&&("object"==typeof n||"function"==typeof n)){var u=n.then;if("function"==typeof u)return void u.call(n,function(n){r(e,n)},o)}i[e]=n,0==--f&&t(i)}catch(c){o(c)}}if(!n(e))return o(new TypeError("Promise.all accepts an array"));var i=Array.prototype.slice.call(e);if(0===i.length)return t([]);for(var f=i.length,u=0;i.length>u;u++)r(u,i[u])})},o.resolve=function(e){return e&&"object"==typeof e&&e.constructor===o?e:new o(function(n){n(e)})},o.reject=function(e){return new o(function(n,t){t(e)})},o.race=function(e){return new o(function(t,r){if(!n(e))return r(new TypeError("Promise.race accepts an array"));for(var i=0,f=e.length;f>i;i++)o.resolve(e[i]).then(t,r)})},o._immediateFn="function"==typeof setImmediate&&function(e){setImmediate(e)}||function(e){a(e,0)},o._unhandledRejectionFn=function(e){void 0!==console&&console&&console.warn("Possible Unhandled Promise Rejection:",e)};var l=function(){if("undefined"!=typeof self)return self;if("undefined"!=typeof window)return window;if("undefined"!=typeof global)return global;throw Error("unable to locate global object")}();"Promise"in l?l.Promise.prototype["finally"]||(l.Promise.prototype["finally"]=e):l.Promise=o});

    // separately set the cmp_id to allow for different CMP configurations
    var _consentAdapterConfig = {"recheckTime":10,"initSettings":[],"ccpaVendors":[80,240,"s1"],"defaultCcpaConsent":true,"defaultGdprConsent":false};
    window.cmp_id = _consentAdapterConfig.cmp_id || 5474; 

    /** START CONSENTMANAGER.NET TAG */
    window.gdprAppliesGlobally=false;if(!("cmp_id" in window)){window.cmp_id=5474}if(!("cmp_params" in window)){window.cmp_params=""}window.cmp_host="consentmanager.mgr.consensu.org";window.cmp_cdn="cdn.consentmanager.mgr.consensu.org";function cmp_getlang(j){if(typeof(j)!="boolean"){j=true}if(j&&typeof(cmp_getlang.usedlang)=="string"&&cmp_getlang.usedlang!==""){return cmp_getlang.usedlang}var g=["DE","EN","FR","IT","NO","DA","FI","ES","PT","RO","BG","ET","EL","GA","HR","LV","LT","MT","NL","PL","SV","SK","SL","CS","HU","RU","SR","ZH","TR","UK"];var c=[];var f=location.hash;var e=location.search;var a="languages" in navigator?navigator.languages:[];if(f.indexOf("cmplang=")!=-1){c.push(f.substr(f.indexOf("cmplang=")+8,2))}else{if(e.indexOf("cmplang=")!=-1){c.push(e.substr(e.indexOf("cmplang=")+8,2))}else{if("cmp_setlang" in window&&window.cmp_setlang!=""){c.push(window.cmp_setlang.toUpperCase())}else{if(a.length>0){for(var d=0;d<a.length;d++){c.push(a[d])}}}}}if("language" in navigator){c.push(navigator.language)}if("userLanguage" in navigator){c.push(navigator.userLanguage)}var h="";for(var d=0;d<c.length;d++){var b=c[d].toUpperCase();if(b.indexOf("-")!=-1){b=b.substr(0,2)}if(g.indexOf(b)!=-1){h=b;break}}if(h==""&&typeof(cmp_getlang.defaultlang)=="string"&&cmp_getlang.defaultlang!==""){return cmp_getlang.defaultlang}else{if(h==""){h="EN"}}h=h.toUpperCase();return h}(function(){var a="";var c="_en";if("cmp_getlang" in window){a=window.cmp_getlang().toLowerCase();c="_"+a}var b=document.createElement("script");b.src="https://"+window.cmp_host+"/delivery/cmp.php?id="+window.cmp_id+"&h="+encodeURIComponent(location.href)+"&"+window.cmp_params+(document.cookie.length>0?"&__cmpfcc=1":"")+"&l="+a+"&o="+(new Date()).getTime();b.type="text/javascript";b.setAttribute("data-cmp-ab",1);b.async=true;if(document.body){document.body.appendChild(b)}else{if(document.currentScript){document.currentScript.parentElement.appendChild(b)}else{document.write(b.outerHTML)}}var b=document.createElement("script");b.src="https://"+window.cmp_cdn+"/delivery/cmp"+c+".min.js";b.type="text/javascript";b.setAttribute("data-cmp-ab",1);b.async=true;if(document.body){document.body.appendChild(b)}else{if(document.currentScript){document.currentScript.parentElement.appendChild(b)}else{document.write(b.outerHTML)}}window.cmp_addFrame=function(e){if(!window.frames[e]){if(document.body){var d=document.createElement("iframe");d.style.cssText="display:none";d.name=e;document.body.appendChild(d)}else{window.setTimeout('window.cmp_addFrame("'+e+'")',10)}}};window.cmp_rc=function(k){var d=document.cookie;var h="";var f=0;while(d!=""&&f<100){f++;while(d.substr(0,1)==" "){d=d.substr(1,d.length)}var j=d.substring(0,d.indexOf("="));if(d.indexOf(";")!=-1){var e=d.substring(d.indexOf("=")+1,d.indexOf(";"))}else{var e=d.substr(d.indexOf("=")+1,d.length)}if(k==j){h=e}var g=d.indexOf(";")+1;if(g==0){g=d.length}d=d.substring(g,d.length)}return(h)};window.cmp_stub=function(){var d=arguments;__cmapi.a=__cmapi.a||[];if(!d.length){return __cmapi.a}else{if(d[0]==="ping"){if(d[1]===2){d[2]({gdprApplies:gdprAppliesGlobally,cmpLoaded:false,cmpStatus:"stub",displayStatus:"hidden",apiVersion:"2.0",cmpId:31},true)}else{d[2]({gdprAppliesGlobally:gdprAppliesGlobally,cmpLoaded:false},true)}}else{if(d[0]==="getUSPData"){d[2]({version:1,uspString:window.cmp_rc("")},true)}else{if(d[0]==="getTCData"){__cmapi.a.push([].slice.apply(d))}else{if(d[0]==="addEventListener"){__cmapi.a.push([].slice.apply(d))}else{if(d.length==4&&d[3]===false){d[2]({},false)}else{__cmapi.a.push([].slice.apply(d))}}}}}}};window.cmp_msghandler=function(h){var d=typeof h.data==="string";try{var g=d?JSON.parse(h.data):h.data}catch(j){var g=null}if(typeof(g)==="object"&&g!==null&&"__cmpCall" in g){var f=g.__cmpCall;window.__cmp(f.command,f.parameter,function(k,i){var e={__cmpReturn:{returnValue:k,success:i,callId:f.callId}};h.source.postMessage(d?JSON.stringify(e):e,"*")})}if(typeof(g)==="object"&&g!==null&&"__cmapiCall" in g){var f=g.__cmapiCall;window.__cmapi(f.command,f.parameter,function(k,i){var e={__cmapiReturn:{returnValue:k,success:i,callId:f.callId}};h.source.postMessage(d?JSON.stringify(e):e,"*")})}if(typeof(g)==="object"&&g!==null&&"__uspapiCall" in g){var f=g.__uspapiCall;window.__uspapi(f.command,f.version,function(k,i){var e={__uspapiReturn:{returnValue:k,success:i,callId:f.callId}};h.source.postMessage(d?JSON.stringify(e):e,"*")})}if(typeof(g)==="object"&&g!==null&&"__tcfapiCall" in g){var f=g.__tcfapiCall;window.__tcfapi(f.command,f.version,function(k,i){var e={__tcfapiReturn:{returnValue:k,success:i,callId:f.callId}};h.source.postMessage(d?JSON.stringify(e):e,"*")},f.parameter)}};window.cmp_setStub=function(d){if(!(d in window)||(typeof(window[d])!=="function"&&typeof(window[d])!=="object"&&(typeof(window[d])==="undefined"||window[d]!==null))){window[d]=window.cmp_stub;window[d].msgHandler=window.cmp_msghandler;if(window.addEventListener){window.addEventListener("message",window.cmp_msghandler,false)}else{window.attachEvent("onmessage",window.cmp_msghandler)}}};window.cmp_addFrame("__cmapiLocator");window.cmp_addFrame("__cmpLocator");window.cmp_addFrame("__uspapiLocator");window.cmp_addFrame("__tcfapiLocator");window.cmp_setStub("__cmapi");window.cmp_setStub("__cmp");window.cmp_setStub("__tcfapi");window.cmp_setStub("__uspapi")})();    /** END CONSENTMANANGER.NET TAG */

    window.ConsentAdapter = (function (_adapterConfig) {

        var __logger = LogBuilder("AMG_CMNET -- ", false);

        var cmpmngrLoaded = function () {
            return ('cmpmngr' in window && 'status' in cmpmngr && cmpmngr.status >= 2);
        };

        // @todo move this to a generic position?  It's pretty much abstract as it is
        var Adapter = {
            consentStatus: false, // true means consents have been retrieved
            defaultConsent: null, // for when no consentModel applies
            userRequiresConsent: null,
            markLoaded: null,
            loadedPromise: null, 
            activeModel: null,
            consentModels: [],
            pendingModels: 0,

            logger : null, //for ease of access

            init: function (_consentModels, logger) {
                this.logger = logger || __logger;

                this.logger.info("initializing  ConsentManager.net facade adapter");

                if (typeof _consentModels === 'undefined' || typeof _consentModels.forEach !== 'function') {
                    this.logger.warn("No consent models supplied to ConsentManager.net facade adapter");
                    return;
                }

                this.loadPromise = new Promise(function(resolve){ this.markLoaded = resolve}.bind(this));
                this.pendingModels = _consentModels.length;

                _consentModels.forEach(this.registerConsentModel.bind(this));
            },
            registerConsentModel : function (consentModel) {
                if (typeof consentModel.init !== 'function') {
                    this.logger.error("Unable to register consent model as does not supply the required interface", consentModel);
                }

                consentModel.init().then(this.markModelLoaded.bind(this));
                this.consentModels.push(consentModel);
            },
            markModelLoaded : function(consentModel) {
                if (this.activeModel !== null) {
                    this.logger.warn(
                        "CMnet adapter already selected, refraning from loading secondary adapter",
                        {"active": this.activeModel, "new" : consentModel}
                    );

                    return;
                }

                if (!consentModel || typeof consentModel.needsConsent !== "function") {
                    this.logger.error("Attempting to mark an undefined model as loaded", consentModel);
                    return;
                }

                // CURRENT WORK LOCATION
                if (consentModel.needsConsent() === true) {
                    this.logger.info("Marking consent model as active", consentModel);
                    this.activeModel = consentModel;
                    this.pendingModels = 0;
                    this.markLoaded();
                    return;
                }

                this.pendingModels--;

                if (this.pendingModels <= 0) {
                    // if no models apply, we don't need consent.
                    this.defaultConsent = true;
                }
            },
            /* facade methods */
            loadPreExistingConsent: function () {
                return (this.activeModel === null) ? false : this.activeModel.loadPreExistingConsent();
            },
            checksCountry: function () {
                return (this.activeModel === null) ?  true : this.activeModel.checksCountry();
            },
            consentsRetrieved: function () {
                return (this.activeModel === null) ? false : this.activeModel.consentsRetrieved();
            },
            retrieveConsents: function (callback, cancelRetrievalTimeout) {
                if (typeof cancelRetrievalTimeout !== 'function') {
                    cancelRetrievalTimeout = function () {};
                }

                this.loadPromise.then(function() {
                    cancelRetrievalTimeout(); // ensure immediate cancellation
                    return this.activeModel.retrieveConsents(callback);
                }.bind(this));
            },

            refreshConsents: function (callback) {
                if (this.activeModel !== null) { 
                    return this.activeModel.refreshConsents(callback);
                }
            },
            needsConsent: function () {
                return (this.activeModel === null) ? this.defaultConsent : this.activeModel.needsConsent();
            },
            getConsentForPurpose: function (purpose, defaultConsent) {
                if (this.consentsRetrieved()) {
                    return this.activeModel.getConsentForPurpose(purpose, defaultConsent);
                }

                return defaultConsent;
            },
            getConsentForVendor: function (vendorId, defaultConsent) {
                if (this.consentsRetrieved()) {
                    return this.activeModel.getConsentForVendor(vendorId, defaultConsent);
                }
                
                return defaultConsent;
            },
            getConsentForPublisher: function (purpose, defaultConsent) {
                if (this.consentsRetrieved()) {
                    return this.activeModel.getConsentForPublisher(purpose, defaultConsent);
                }
                
                return defaultConsent;
            },
            manageConsents: function (callback, modelName) {
                if (modelName === "gdpr") {
                    gdprAdapter.manageConsents(callback);
                    return;
                } else if (modelName == "ccpa") {
                    ccpaAdapter.manageConsents(callback);
                    return;
                }

                __logger.info("No active consent model, no known model specified to open.");

            }
            /* end facade methods */
        };


        var gdprAdapter = (function() {
            return {
            consentStatus: false, // true means consents have been retrieved
            loadedPromise: null,
            userRequiresConsent: null,
            purposeConsents: {},
            vendorConsents: {},
            publisherConsents: {},
            init: function () {

                var consentsComplete;
                var completedPromise = new Promise(function(resolve, reject) { consentsComplete = resolve;})
                    .then(function() { return this;}.bind(this) );

                this.loadedPromise = new Promise(function(resolve, reject){
                        this.startLoadWatcher(resolve);
                    }.bind(this)
                ).then(function() {
                    // this will fire after the load watcher completes
                    this.checkIfAdapterApplies(function() { 
                        __logger.info("Initial GDPR load complete");
                        consentsComplete();
                    });
                }.bind(this));


                return completedPromise;
            },
            startLoadWatcher: function(resolveLoadPromise) {
                // this anon function handles the __tcfapi status check.  Usually will be not loaded
                var pingHandler = function(results, success) {
                    if (results.cmpLoaded === false || !cmpmngrLoaded()) {
                        // retry as the 'init' event will not work as expected
                        setTimeout(ping, 10);
                        return;
                    }
                    __logger.info("GDPR adapter loaded");

                    if (typeof resolveLoadPromise === "function") {
                        resolveLoadPromise();
                    }
                }.bind(this);

                var ping = function() {
                    window.__tcfapi('ping', 2, pingHandler);
                }.bind(this);

                // start the process
                ping();
            },
            loadPreExistingConsent: function () {
                return false;
            },
            checksCountry: function () {
                return true;
            },
            consentsRetrieved: function () {
                return this.consentStatus;
            },
            checkIfAdapterApplies : function (completionCallback) {
                __logger.info("Checking GDPR applicability");
                window.__tcfapi('getTCData', 2, function() {
                    __logger.info("Checking if GDPR applies");

                    this.userRequiresConsent = (window.cmpmngr && window.cmpmngr.getRegulation && window.cmpmngr.getRegulation() === 1);

                    if (this.userRequiresConsent) {
                        __logger.info("GDPR applies");
                    } else {
                        // setting default gdpr consent to true as it doesn't apply (edge case)
                        _adapterConfig.defaultGdprConsent = true;
                        __logger.info("GDPR does not apply");
                    }

                    completionCallback();
                }.bind(this), false);
            },
            retrieveConsents: function (callback, cancelRetrievalTimeout) {
                if (typeof cancelRetrievalTimeout !== 'function') {
                    cancelRetrievalTimeout = function () {
                    };
                }

                var checkAndRetrieve = function() {

                    cancelRetrievalTimeout();
                    if (cmpmngr.isLayerShown) {
                        // consent layer open, wait for selection
                        __logger.info("GDPR consent layer open, registering listener");
                        __tcfapi('addEventListener', 2, ['consent', this.refreshConsents.bind(this,callback), false], false);
                        return;
                    }

                    __logger.info("GDPR consent layer closed");
                    this.consentStatus = true;
                    
                    callback();
                }.bind(this);

                this.loadedPromise.then(function() {
                    var delay = _adapterConfig.bannerCheckDelay || 100;

                    if (Object.keys(this.vendorConsents).length == 0) {
                        __logger.info('Delaying consent refresh to give dialog a chance to open');
                        // empty consents may imply the cmp needs to show the screen.  Delay once to give it a chance
                        setTimeout(checkAndRetrieve, delay);    
                        return;
                    } 
                    
                    // no need to delay
                    checkAndRetrieve();
                }.bind(this));
            },
            refreshConsents: function (callback) {
                if (this.userRequiresConsent === false) {
                    // if we don't need consent, we'll just use default.
                    callback();
                    return;
                }

            },
            needsConsent: function () {
                return this.userRequiresConsent;
            },
            getConsentForPurpose: function (purpose, defaultConsent) {
                if (!this.consentsRetrieved()) {
                    return defaultConsent;
                }

                var results = __tcfapi('getTCData', 2);
                
                return (this.purposeConsents.hasOwnProperty(purpose)) ? this.purposeConsents[purpose] : _adapterConfig.defaultGdprConsent;
            },
            getConsentForVendor: function (vendorId, defaultConsent) {
                if (!this.consentsRetrieved()) {
                    return defaultConsent;
                }

                var results = __tcfapi('getTCData', 2);

                if (results.vendor.consents.hasOwnProperty(vendorId)) {
                    // TCF signitory vendors
                    return results.vendor.consents[vendorId];
                }

                if (results.customVendorConsents.hasOwnProperty(vendorId)) {
                    // Custom vendors
                    return results.customVendorConsents[vendorId];
                }    

                // vendor not found, returning default
                return _adapterConfig.defaultGdprConsent;
            },
            getConsentForPublisher: function (purpose, defaultConsent) {
                if (!this.consentsRetrieved()) {
                    return defaultConsent;
                }

                return (this.publisherConsents.hasOwnProperty(purpose)) ? this.publisherConsents[purpose] : _adapterConfig.defaultGdprConsent;
            },
            manageConsents: function (callback) {
                __logger.info("Displaying GDPR Consent Management screen");

                if (window.cmpmngr.cnf.regulation == 1) {
                    window.__cmp('showScreen');
                } else {
                    window.__cmp('showScreenAdvanced');
                }
            }
        };
        })();


        var ccpaAdapter = (function() {
            return {
            consentStatus: false, // true means consents have been retrieved
            loadedPromise: null,
            userRequiresConsent: null,
            userGivesConsent: null,
            purposeConsents: {},
            vendorConsents: {},
            publisherConsents: {},
            settings: {
                usConsentDoesNotApply: '1---',
                revokedPos: 2 // position in string that says the user has revoked consent
            },
            init: function () {
                var consentsComplete;
                var completedPromise = new Promise(function(resolve, reject) { consentsComplete = resolve;})
                    .then(function() { return this;}.bind(this) );

                this.loadedPromise = new Promise(function(resolve, reject){
                        this.startLoadWatcher(resolve);
                    }.bind(this)
                ).then(function() {
                    this.refreshConsents(function() {
                        consentsComplete();
                    });
                
                    }.bind(this)
                );

                return completedPromise;
            },
            startLoadWatcher: function(callback) {
                if (typeof __uspapi === "undefined") {
                    // Create uspapi object so our ping check works.
                    __uspapi = function(action,b, stubCB, d) {
                        if (action === "ping") {
                            stubCB({'cmpLoaded' : false});
                        }
                    };
                }

                // this anon function handles the __uspapi status check.  Usually will be not loaded
                var pingHandler = function(results, success) {
                    if (cmpmngrLoaded()) {
                        __logger.info("CCPA adapter loaded");
                        this.consentStatus = true;
                        if(typeof callback === "function") {
                            callback();
                        }

                        return;
                    }

                    // retry as the 'init' event will not work as expected
                    setTimeout(ping, 10);
                }.bind(this);

                var ping = function() {
                    window.__uspapi('ping', null, pingHandler);
                }.bind(this);

                // start the process
                ping();
            },
            loadPreExistingConsent: function () {
                return false;
            },
            checksCountry: function () {
                return true;
            },
            consentsRetrieved: function () {
                return this.consentStatus;
            },
            retrieveConsents: function (callback, cancelRetrievalTimeout) {
                __logger.info("retrieving CCPA consents")
                if (typeof cancelRetrievalTimeout !== 'function') {
                    cancelRetrievalTimeout = function () {};
                }

                this.loadedPromise.then(function() {
                    cancelRetrievalTimeout();
                    this.refreshConsents(callback)
                }.bind(this));
            },
            refreshConsents: function (callback) {
                __logger.info("retrieving CCPA consents");
                var consentRefresh = function (result, success) {
                    if (success !== true) {
                        __logger.error("Unable to retrive CCPA consents!");
                        return;
                    }

                    if (!result || !result.uspString) {
                        __logger.error("Unable to retrive CCPA consent string");
                        return;
                    }

                    var regulationIndex = (window.cmpmngr&& window.cmpmngr.getRegulation) ? window.cmpmngr.getRegulation() : false;
                    
                    if (regulationIndex === 2) {
                        __logger.info("CCPA applies");
                        this.userRequiresConsent = true;
                        this.userGivesConsent = (result.uspString[this.settings.revokedPos] === "N");
                    } else {
                        this.userRequiresConsent = false;
                        __logger.info("CCPA does not apply");
                    }

                    callback();
                }.bind(this);

                window.__uspapi('getUSPData', null, consentRefresh.bind(this), true);

            },
            needsConsent: function () {
                return this.userRequiresConsent;
            },
            userHasGivenConsent: function() {
                return (this.userGivesConsent === null) ? _adapterConfig.defaultCcpaConsent : this.userGivesConsent;
            },
            getConsentForPurpose: function (purpose, defaultConsent) {
                if (!this.consentsRetrieved()) {
                    return defaultConsent;
                }

                if (isGdprPurpose(purpose)) {
                    return true;
                }

                return this.needsConsent()? this.userHasGivenConsent() : true;
            },
            getConsentForVendor: function (vendorId, defaultConsent) {
                if (!this.consentsRetrieved()) {
                    return defaultConsent;
                }

                return this.vendorNeedsConsent(vendorId) ? this.userHasGivenConsent() : true;
            },
            getConsentForPublisher: function (purpose, defaultConsent) {
                if (gdprPurpose(purpose)) {
                    return true;
                }

                return this.userHasGivenConsent(defaultConsent);
            },

            vendorNeedsConsent: function(vendorId) {
                if (_adapterConfig.ccpaVendors && _adapterConfig.ccpaVendors[vendorId]) {
                    return true;                    
                }

                return false;
            },
            manageConsents: function (callback) {
                __logger.info("Displaying CCPA consent management screen");
       
                // hackaround while waiting on cmnet fix
                window.cmpmngr.cnf.regulation = 2;
                __cmp('showScreenAdvanced');
            }
        };
        })();

        
        // Bring the wrapper online, with both consent model adapaters 
        Adapter.init([gdprAdapter, ccpaAdapter], __logger);

        return Adapter;
    })(_consentAdapterConfig);

</script>

<script>
    var ConsentManager = window.ConsentManager || {};
    var consentParams = {"adapterName":"consentManagerNet","defaultConsent":true,"usePurposeMap":true,"consentCheckDelay":1000,"purposeMap":{"storage":1,"personalization":2,"ad_selection":3,"content_selection":4,"measurement":5,"ccpa--sells_data":-1},"prebidConfig":{"cmpApi":"iab","timeout":8000,"allowAuctionWithoutConsent":true},"requiredCountries":{"be":"Belgium","bg":"Bulgaria","cz":"Czech Republic","dk":"Denmark","de":"Germany","ee":"Estonia","ie":"Ireland","el":"Greece","es":"Spain","fr":"France","hr":"Croatia","it":"Italy","cy":"Cyprus","lv":"Latvia","lt":"Lithuania","lu":"Luxembourg","hu":"Hungary","mt":"Malta","nl":"Netherlands","at":"Austria","pl":"Poland","pt":"Portugal","ro":"Romania","si":"Slovenia","sk":"Slovakia","fi":"Finland","se":"Sweden","uk":"United Kingdom"},"countryCodeHeader":"http_cf_ipcountry","countryCheckUri":"\/country-code"};
    window.dataLayer = window.dataLayer || [];

    if (typeof window.isGdprPurpose !== 'function') {
        window.isGdprPurpose = function(purpose) {
            // this is a sorta fragile check.  If purposes expand beyond gdpr
            // it will need to be expanded.
            return (purpose >= 0);
        };
    }

    (function (_consentSettings, _adapter, gtagDataLayer) {
        ConsentManager = {
            settings : {
                debugQueryString: 'amgconsentdebug',
                defaultConsent : false,
                defaultPrebidConfig: {
                    cmpApi: 'iab',
                    timeout: 8000,
                    allowAuctionWithoutConsent: false
                },
                countryCodeTimeout: 100,
                consentCheckDelay : 500,
                requiredCountries: [],
                countryCodeHeader: '',
                consentEventName: "AMGConsentsRetrieved",  //really shouldn't mess with this one
                consentManagementClass: "amgmanageconsent",
                consentManagementModelAttribute: "data-consent-model"
            },

            initDone: false,
            logger: LogBuilder('AMG_CONSENT -- ', false),
            countryCode: null,
            countryCodeXHR: null,

            // START PUBLIC INTERFACE METHODS
            registerVendorHandler: function(vendorId, consentMethod, nonConsentMethod, label) {
                this.checkVendorConsent(vendorId)

                this.logger.info("Registering vendor consent handler for vendor:\n" + vendorId + " -- " + label);
                this.registerHandlerSet(vendorId, consentMethod, nonConsentMethod, label + "-- vendor handler", this.checkVendorConsent.bind(this));
            },
            registerPurposeHandler: function(purposes, consentMethod, nonConsentMethod, label) {
                if (typeof label == 'undefined') {
                    label = '';
                }

                this.logger.info("Registering purpose handler:\n" + label, purposes);
                this.registerHandlerSet(purposes, consentMethod, nonConsentMethod, label + "-- purpose handler", this.checkPurposeConsent.bind(this));
            },
            registerPublisherHandler: function(purposes, consentMethod, nonConsentMethod, label) {
                if (typeof label === 'undefined') {
                    label = '';
                }

                this.logger.info("Registering publisher purpose handler:\n" + label, purposes);
                this.registerHandlerSet(purposes, consentMethod, nonConsentMethod, label + "-- publisher handler", this.checkPublisherConsent.bind(this));
            },
            registerHandlerSet: function(criteria, consentMethod, nonConsentMethod, label, checkMethod) {
                if (typeof consentMethod !== 'function') {
                    this.logger.error(
                        'Unable to register consent handler, incorrect types given',
                        {"critera": critera, "handler": consentMethod, "nonConsentMethod" : nonConsentMethod, "label": label}
                    );
                }

                this.registerHandler(function() {
                    if (checkMethod(criteria)) {
                        this.logger.info("Calling consent handler:\n" + label, criteria);
                        consentMethod();
                        return;
                    }

                    if (typeof nonConsentMethod === "function") {
                        this.logger.info("Calling nonconsent handle:\n" + label, criteria);
                        nonConsentMethod();
                    } else {
                        this.logger.info("Not calling handler as consent is not given:\n" + label, criteria);
                    }
                }.bind(this));
            },
            registerHandler: function(handlerMethod) {
                // register the handler for ongoing use
                window.addEventListener(this.getRetrievedEventName(), handlerMethod);

                // if the consents have already been retrived, call the handler immediately
                if (this.consentsRetrieved() || this.useConsentDefault === true) {
                    this.logger.info("Handler registered after consents have already been retrieved, calling handler immediately");
                    handlerMethod();
                }
            },
            consentsRetrieved: function() {
                return this.adapter.consentsRetrieved();
            },
            checkPurposeConsent: function (purposes) {
                if (this.useConsentDefault === true) {
                    return this.getDefaultConsent();
                }

                if (!this.consentsRetrieved()) {
                    return null;
                }

                if (!Array.isArray(purposes)) {
                    // no point in looping over a single item.
                    return this.checkSinglePurposeConsent(purposes);
                }

                for (var purpose = 0; purpose < purposes.length; purpose++) {
                    if (this.checkSinglePurposeConsent(purposes[purpose]) !== true) {
                        this.logger.warn("No consent for purpose, bailing:\n" + purposes[purpose]);
                        return false;
                    }
                }

                return true;
            },
            checkSinglePurposeConsent: function(purpose) {
                var purpose = this.mapPurpose(purpose);
                if (purpose === false) {
                    return this.getDefaultConsent();
                }

                if (!this.consentsRetrieved()) {
                    this.logger.info("Unable to determine consent as consent data has not been retrieved");
                    // we don't know yet
                    return null;
                }

                return this.adapter.getConsentForPurpose(purpose, this.getDefaultConsent());
            },

            checkPublisherConsent: function (purposes) {
                if (this.useConsentDefault === true) {
                    return this.getDefaultConsent();
                }

                if (!this.consentsRetrieved()) {
                    return null;
                }

                if (!Array.isArray(purposes)) {
                    // no point in looping over a single item.
                    return this.checkSinglePublisherConsent(purposes);
                }

                for (var purpose = 0; purpose < purposes.length; purpose++) {
                    if (this.checkSinglePublisherConsent(purposes[purpose]) !== true) {
                        this.logger.warn("No consent for publisher purpose, bailing:\n" + purposes[purpose]);
                        return false;
                    }
                }

                return true;
            },
            checkSinglePublisherConsent: function(purpose) {
                var purpose = this.mapPurpose(purpose);
                if (purpose === false) {
                    return this.getDefaultConsent();
                }

                if (!this.consentsRetrieved()) {
                    this.logger.info("Unable to determine publisher consent as consent data has not been retrieved");
                    // we don't know yet
                    return null;
                }

                return this.adapter.getConsentForPublisher(purpose, this.getDefaultConsent());
            },

            mapPurpose: function(purpose) {
                if (!this.settings.usePurposeMap) {
                    return purpose;
                }

                if (!this.settings.purposeMap.hasOwnProperty(purpose)) {
                    this.logger.error("Cannot find specified purpose in the purpose map",
                        {"purposeMap" : this.settings.purposeMap, "purpose": purpose}
                    );
                    return false;
                }

                return this.settings.purposeMap[purpose];
            },

            checkVendorConsent: function (vendorId) {
                if (this.useConsentDefault === true) {
                    this.logger.info("Using default consent for vendor id:\n" + vendorId);
                    return this.getDefaultConsent();
                }

                if (this.consentsRetrieved()) {
                    this.logger.info("Checking consent for vendor:\n" +  vendorId);
                    return this.adapter.getConsentForVendor(vendorId, this.getDefaultConsent());
                }

                return null;
            },
            // This is the event that will be sent out on the window object when consents are retrieved
            getRetrievedEventName: function() {
                return this.settings.consentEventName;
            },
            gdprApplies: function() {
                return this.adapter.needsConsent();
            },
            setDebug: function(enable) {
                if (enable !== true && !this.logger.queryStringExists(this.settings.debugQueryString)) {
                    return;
                }

                this.logger.enable();

                if (this.Adapter && this.Adapter.logger) {
                    this.logger.enable();
                }
            },
            // END PUBLIC INTERFACE METHODS

            init: function () {
                if (this.initDone === true) {
                    return;
                }

                this.setDebug();
                this.setManagerParams(_consentSettings);
                this.setAdapter(_adapter);
                this.hookManageConsent();

                this.initConsentFlow();

                this.initDone = true;
            },
            // @todo I really really want to refactor this into a settings obj
            setManagerParams: function (managerParams) {
                this.logger.table("Setting Consent Manager params", managerParams);
                for (var paramName in managerParams) {
                    if (managerParams.hasOwnProperty(paramName)) {
                        this.settings[paramName] = managerParams[paramName];
                    }
                }

                return this;
            },
            // @todo I think it'd be good to have some ducktyping in here for the adapter
            setAdapter: function(_adapter) {
                this.adapter = _adapter;

                if (this.logger.debugOn && _adapter.logger) {
                    _adapter.logger.enable();
                }

                return this;
            },
            initConsentFlow: function() {
                this.logger.info('Starting consent check flow');
                if (this.adapter.loadPreExistingConsent()) {
                    this.logger.info('Consent Manager detected pre-existing consent information');
                    // Sending event just in case something else loaded prior.  Shouldn't happen, but...
                    this.sendConsentRetrievedEvent();
                    return;
                }

                this.logger.info('No pre-existing consent information detected');

                if (this.adapter.checksCountry()) {
                    this.logger.info('CMP adapter provides country code check, checking consent');
                    this.retrieveConsents();
                } else {
                    this.getCountryCode();
                }
            },

            retrieveConsents: function() {
                this.logger.info(
                    "Instructing adapter to retrieve consents, no notification of user managment available"
                );

                var retrievalTimer;
                var timerCanceled = false;

                // This is called if the adapter can notify when users are doing inital consent management.
                var cancelRetrievalTimeout = function() {
                    this.logger.info(
                        "Adapter is in user consent management flow, canceling consent retrieval timeout"
                    );
                    timerCanceled = true;
                    clearTimeout(retrievalTimer);
                }.bind(this);

                this.adapter.retrieveConsents(
                    this.notifyConsentsRetrieved.bind(this),
                    cancelRetrievalTimeout
                );

                // setting timeout first in case the adapter is blocking or has an error
                retrievalTimer = setTimeout(function() {
                    if (timerCanceled) {
                        return; // early exit due to backup cancelation
                    }                    
                    this.logger.info("Consent retrieval timed out, setting defaults");
                    this.markConsentDefault();
                    this.sendConsentRetrievedEvent();
                }.bind(this), this.settings.consentCheckDelay);
            },
            manageConsents: function(e) {
                if (e && typeof e.preventDefault === "function") {
                    e.preventDefault();
                }

                this.logger.info("Instructing adapter to get user modification of consents");
                // no timeout on this one, as it is expected to take a long time.
                this.adapter.manageConsents(this.notifyConsentsRetrieved.bind(this), e.srcElement.getAttribute(this.settings.consentManagementModelAttribute));

                return false;
            },
            hookManageConsent: function() {
                document.addEventListener('DOMContentLoaded', function() {
                    var elements = document.getElementsByClassName(this.settings.consentManagementClass);
                    if (elements.length == 0) {
                        this.logger.warn("No elements matching the consent management selector were found: " + this.settings.consentManagementClass);
                        return;
                    }

                    for (var element in elements) {
                        if (typeof elements[element].addEventListener === "function") {
                            this.logger.info("Binding object click event to 'manageConsents()'", elements[element]);
                            elements[element].addEventListener("click", this.manageConsents.bind(this));
                        }
                    }
                }.bind(this));
            },
            notifyConsentsRetrieved: function() {
                this.logger.info("Consent Provider has retrieved or updated consents");

                if (this.adapter.needsConsent() === false) {
                    this.logger.info("Adapter specifies that we don't need consent");
                    this.markConsentDefault(true);
                    this.sendConsentRetrievedEvent();
                    return;
                }

                if (this.useConsentDefault === true) {
                    this.logger.info(
                        "Default Consents were previously being used, clearing to use specific consents."
                    );

                    this.useConsentDefault = false;
                }

                gtagDataLayer.push({"event":"ConsentFinished"});
                this.sendConsentRetrievedEvent();
            },
            sendConsentRetrievedEvent: function() {
                this.logger.info("Sending consent retrieved event");
                var consentEvent = new Event(this.getRetrievedEventName());
                window.dispatchEvent(consentEvent);
            },
            getDefaultConsent: function() {
                return this.settings.defaultConsent;
            },
            markConsentDefault: function(newDefaultConsent) {
                this.logger.info("Marking that manager should use it's default consent value");
                this.useConsentDefault = true;

                if (typeof newDefaultConsent !== "undefined") {
                    this.logger.info("New default consent value supplied", newDefaultConsent);
                    this.settings.defaultConsent = (newDefaultConsent);
                }

                return this;
            },
            getPrebidConfig: function() {
                if (this.adapter.needsConsent() === false) {
                    // if we don't need consent, allow without it
                    this.settings.prebidConfig.allowAuctionWithoutConsent = true;
                }

                return this.settings.prebidConfig;
            },
            getCountryCode: function () {
                if (this.countryCodeXHR === null) {
                    this.countryCodeXHR = new XMLHttpRequest();
                }

                this.logger.info('Sending request to determine user country');
                this.countryCodeXHR.addEventListener("load", this.onCountryLoad.bind(this));
                this.countryCodeXHR.addEventListener("error", this.onCountryError.bind(this));
                this.countryCodeXHR.addEventListener("abort", this.onCountryAbort.bind(this));

                this.countryCodeXHR.open("GET", this.settings.countryCheckUri, true);
                this.countryCodeXHR.send();

                setTimeout(function () {
                    if (this.countryCodeXHR === null || this.countryCodeXHR.readyState > 1) {
                        this.logger.info("Country code request completed before timeout");
                        return;
                    }
                    this.logger.warn("Country code check timed out, aborting");
                    this.countryCodeXHR.abort();
                }.bind(this), this.settings.countryCodeTimeout);
            },
            onCountryLoad: function(response) {
                this.countryCodeXHR = null;
                this.logger.info("Country code response received");

                var countryCode = response.currentTarget.getResponseHeader(this.settings.countryCodeHeader);
                this.logger.info("Country code retrieved: " + countryCode);
                if (typeof countryCode !== 'string') {
                    this.logger.error("Improper country code detected");
                    this.markConsentDefault(false);
                    this.sendConsentRetrievedEvent();
                    return;
                }

                if (!this.settings.requiredCountries.hasOwnProperty(countryCode)) {
                    this.logger.info("User's country does not require consent check");
                    this.markConsentDefault(true);
                    this.sendConsentRetrievedEvent();
                    return;
                }

                this.logger.info("User's country requires consent");
                this.retrieveConsents();
            },
            onCountryError: function(xhrEvent) {
                this.logger.error("Country code request encountered an error");
                this.cleanCountryRequest();
                this.markConsentDefault();
                this.sendConsentRetrievedEvent();
            },
            onCountryAbort: function(xhrEvent) {
                this.logger.warn("Country code request aborted");
                this.cleanCountryRequest();
                this.markConsentDefault();
                this.sendConsentRetrievedEvent();
            },
            cleanCountryRequest: function() {
                this.countryCodeXHR.removeEventListener("load", this.onCountryLoad.bind(this));
                this.countryCodeXHR.removeEventListener("error", this.onCountryError.bind(this));
                this.countryCodeXHR.removeEventListener("abort", this.onCountryAbort.bind(this));
            }
        };

        ConsentManager.init();
    })(consentParams, window.ConsentAdapter, window.dataLayer);
</script>
<meta name="msvalidate.01" content="413297C6804C62718E0BA66143296F1D" />
<!--[if IE]><![endif]-->
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="dns-prefetch" href="//edge.quantserve.com" />
<link rel="dns-prefetch" href="//americanfootballfilms.com" />
<link rel="dns-prefetch" href="//www.huntlogo.com" />
<link rel="dns-prefetch" href="//www.cbssports.com" />
<link rel="dns-prefetch" href="//ksrcollege.wpengine.netdna-cdn.com" />
<link rel="dns-prefetch" href="//www.sportsnetworker.com" />
<link rel="dns-prefetch" href="//acc.blogs.starnewsonline.com" />
<link rel="dns-prefetch" href="//www.pentagram.com" />
<link rel="dns-prefetch" href="//upload.wikimedia.org" />
<link rel="dns-prefetch" href="//s3.amazonaws.com" />
<link rel="dns-prefetch" href="//netdna.bootstrapcdn.com" />
<link rel="dns-prefetch" href="//ajax.googleapis.com" />
<link rel="shortcut icon" href="https://athlonsports.com/sites/athlonsports.com/files/favicon_3.ico" type="image/vnd.microsoft.icon" />
<link rel="alternate" type="application/rss+xml" title="RSS - Randy Johnson" href="https://athlonsports.com/category/mlb-players/randy-johnson/feed" />
<meta name="twitter:creator" content="@AthlonSports" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no" />
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests" />
<meta content="ilvCI_p8bUvq_749dPQEFSxPGHBrkfSdFrd6p8I2-aI" name="google-site-verification" />
<meta name="description" content="AthlonSports.com offers reliable predictions, provides expert analysis, reacts to breaking news, and helps shape the way fans view the game." />
<meta name="generator" content="Drupal 7 (http://drupal.org)" />
<link rel="canonical" href="https://athlonsports.com/category/mlb-players/randy-johnson/0/feed" />
<link rel="shortlink" href="https://athlonsports.com/taxonomy/term/787/0/feed" />
<meta property="og:site_name" content="AthlonSports.com" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://athlonsports.com/category/mlb-players/randy-johnson/0/feed" />
<meta property="og:title" content="Randy Johnson" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@AthlonSports" />
<meta name="twitter:url" content="https://athlonsports.com/category/mlb-players/randy-johnson/0/feed" />
<meta name="twitter:title" content="Randy Johnson" />
<meta name="twitter:description" content="AthlonSports.com offers reliable predictions, provides expert analysis, reacts to breaking news, and helps shape the way fans view the game...." />
<title>Randy Johnson | AthlonSports.com</title>
<link type="text/css" rel="stylesheet" href="https://netdna.bootstrapcdn.com/font-awesome/3.2.0/css/font-awesome.min.css" media="all" />
<link type="text/css" rel="stylesheet" href="https://athlonsports.com/sites/athlonsports.com/files/advagg_css/css__q6MITPZeps0VZuhYcAi4ZnZndfG7nXRj_etNFfAdlpI__kWeomL_mbxdxHNQ6GylvCSn_O_VovmLTSa8GDApCpp4__sCKtC3OFO62qTaWWVWvAEDOGenD_7hNg9GiKlrlwK8c.css" media="all" />
<link type="text/css" rel="stylesheet" href="https://athlonsports.com/sites/athlonsports.com/files/advagg_css/css__Ry6g_cIKKSoekF1KEXRFSuBCNUY3KmCgN8BXc6NTbZQ__HmUwRIzeICviTv0D-akPSqp3QkIB8zcb3K6gX-NbeZc__sCKtC3OFO62qTaWWVWvAEDOGenD_7hNg9GiKlrlwK8c.css" media="all" />
<!--[if IE]>
<link type="text/css" rel="stylesheet" href="https://athlonsports.com/sites/athlonsports.com/files/advagg_css/css__MIbGYNqw8X5qjGQRbk1QL3vebney4peQHY2p8g8PKoI__5aLpVLKoGEsAOz-LmlyvqGOuDmRDyO6xn3R1jxadIlQ__sCKtC3OFO62qTaWWVWvAEDOGenD_7hNg9GiKlrlwK8c.css" media="all" />
<![endif]-->
<link type="text/css" rel="stylesheet" href="https://athlonsports.com/sites/athlonsports.com/files/advagg_css/css__eaCMPQSsdCftALFPozui0W7z2-uTMOlz9ZLYjedXzGY__eGimNp8yjOKF2ZHDrObWKQrJpW9g_kfkgGmeuIpXWDc__sCKtC3OFO62qTaWWVWvAEDOGenD_7hNg9GiKlrlwK8c.css" media="all" />
<!--[if lt IE 9]>
    <script data-cfasync="false" src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <script data-cfasync="false"
            src="//cdn.athlonsports.com/sites/all/libraries/respondjs/respond.min.js"></script>
    <link href="//cdn.athlonsports.com/sites/all/libraries/respondjs/cross-domain/respond-proxy.html"
          id="respond-proxy" rel="respond-proxy"/>
    <link href="/sites/all/libraries/respondjs/cross-domain/respond.proxy.gif" id="respond-redirect"
          rel="respond-redirect"/>
    <script data-cfasync="false" src="/sites/all/libraries/respondjs/cross-domain/respond.proxy.js"></script>
    <![endif]-->
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
window.jQuery || document.write("<script src='/sites/all/modules/jquery_update/replace/jquery/1.8/jquery.min.js'>\x3C/script>")
//--><!]]>
</script>
<script type="text/javascript" src="https://athlonsports.com/misc/jquery-extend-3.4.0.js?v=1.8.3"></script>
<script type="text/javascript" src="https://athlonsports.com/misc/jquery.once.js?v=1.2"></script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--

  var dfp_slots = new Array();
  var googletag = googletag || {};
  googletag.cmd = googletag.cmd || [];
//--><!]]>
</script>
<script type="text/javascript" src="https://athlonsports.com/misc/drupal.js?qus8qd"></script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
var gaId="UA-198298-1";
//--><!]]>
</script>
<script type="text/javascript" src="https://athlonsports.com/sites/all/modules/athlon/analytics/js/google_analytics.js?qus8qd" data-cfasync="false"></script>
<script type="text/javascript" src="https://athlonsports.com/sites/all/modules/athlon/amg_dfp_extensions/js/adManager.js?qus8qd"></script>
<script type="text/javascript" src="https://athlonsports.com/sites/all/themes/omega/omega/js/jquery.formalize.js?qus8qd"></script>
<script type="text/javascript" src="https://athlonsports.com/sites/all/themes/omega/omega/js/omega-mediaqueries.js?qus8qd"></script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
jQuery.extend(Drupal.settings, {"basePath":"\/","pathPrefix":"","ajaxPageState":{"theme":"asomega","theme_token":"il2q5tGlGmb3Ik67cFVIpqhpl3YGC4JpyGGj5pb-uAQ","css":{"https:\/\/netdna.bootstrapcdn.com\/font-awesome\/3.2.0\/css\/font-awesome.min.css":1,"modules\/system\/system.base.css":1,"modules\/system\/system.menus.css":1,"modules\/system\/system.messages.css":1,"sites\/all\/modules\/date\/date_api\/date.css":1,"sites\/all\/modules\/date\/date_popup\/themes\/datepicker.1.7.css":1,"modules\/field\/theme\/field.css":1,"modules\/node\/node.css":1,"modules\/poll\/poll.css":1,"modules\/search\/search.css":1,"modules\/user\/user.css":1,"sites\/all\/modules\/views\/css\/views.css":1,"sites\/all\/modules\/ctools\/css\/ctools.css":1,"sites\/all\/modules\/panels\/css\/panels.css":1,"sites\/all\/modules\/athlon\/athlon_filters\/css\/athlon_filters.css":1,"sites\/all\/modules\/newsletter\/css\/newsletter-signup.css":1,"sites\/all\/modules\/athlon\/athlon_meganav\/css\/athlon_meganav.css":1,"modules\/taxonomy\/taxonomy.css":1,"sites\/all\/modules\/athlon\/amg_consent_management\/assets\/css\/cmp-overrides.css":1,"sites\/all\/themes\/omega\/alpha\/css\/alpha-reset.css":1,"sites\/all\/themes\/omega\/alpha\/css\/alpha-mobile.css":1,"sites\/all\/themes\/omega\/alpha\/css\/alpha-alpha.css":1,"sites\/all\/themes\/omega\/omega\/css\/formalize.css":1,"sites\/all\/themes\/omega\/omega\/css\/omega-text.css":1,"sites\/all\/themes\/omega\/omega\/css\/omega-branding.css":1,"sites\/all\/themes\/omega\/omega\/css\/omega-menu.css":1,"sites\/all\/themes\/omega\/omega\/css\/omega-forms.css":1,"sites\/all\/themes\/omega\/omega\/css\/omega-visuals.css":1,"sites\/athlonsports.com\/themes\/asomega\/css\/lt-ie9.css":1,"sites\/athlonsports.com\/themes\/asomega\/css\/global.css":1,"narrow::sites\/athlonsports.com\/themes\/asomega\/css\/asomega-alpha-default.css":1,"narrow::sites\/athlonsports.com\/themes\/asomega\/css\/asomega-alpha-default-narrow.css":1,"sites\/all\/themes\/omega\/alpha\/css\/grid\/alpha_default\/narrow\/alpha-default-narrow-24.css":1,"normal::sites\/athlonsports.com\/themes\/asomega\/css\/asomega-alpha-default.css":1,"normal::sites\/athlonsports.com\/themes\/asomega\/css\/asomega-alpha-default-normal.css":1,"sites\/all\/themes\/omega\/alpha\/css\/grid\/alpha_default\/normal\/alpha-default-normal-24.css":1},"js":{"sites\/all\/modules\/athlon\/athlon_meganav\/js\/athlon_meganav.js":1,"sites\/all\/modules\/athlon\/analytics\/js\/analytics_pageview.js":1,"sites\/all\/modules\/athlon\/analytics\/js\/analytics_events.js":1,"https:\/\/edge.quantserve.com\/quant.js":1,"\/\/ajax.googleapis.com\/ajax\/libs\/jquery\/1.8.3\/jquery.min.js":1,"misc\/jquery-extend-3.4.0.js":1,"misc\/jquery.once.js":1,"misc\/drupal.js":1,"sites\/all\/modules\/athlon\/analytics\/js\/google_analytics.js":1,"sites\/all\/modules\/athlon\/amg_dfp_extensions\/js\/adManager.js":1,"sites\/all\/themes\/omega\/omega\/js\/jquery.formalize.js":1,"sites\/all\/themes\/omega\/omega\/js\/omega-mediaqueries.js":1}},"amg_dfp":{"disabledSlots":{"dfp-rect_atf_center":"leaderboard"},"wallpaperBreakpoint":740,"genericWallpaperEnabled":true,"slotDefinitions":{"adhesion_bottom_11623877974":"dfp_slots[\u0022adhesion_bottom_11623877974\u0022] = function() { return googletag.defineOutOfPageSlot(\u0022\/1065729\/Adhesion_Bottom\u0022, \u0022dfp-ad-adhesion_bottom_11623877974\u0022).addService(googletag.pubads()); }","backgroundslot_11623877974":"dfp_slots[\u0022backgroundslot_11623877974\u0022] = function() { return googletag.defineOutOfPageSlot(\u0022\/1065729\/BackgroundSlot\u0022, \u0022dfp-ad-backgroundslot_11623877974\u0022).setTargeting(\u0022pos\u0022, \u0022wallpaper\u0022).setTargeting(\u0022loc\u0022, \u0022background\u0022).addService(googletag.pubads()); }","rect_atf_center_11623877974":"dfp_slots[\u0022rect_atf_center_11623877974\u0022] = function() { return googletag.defineSlot(\u0022\/1065729\/Rect_ATF_Center\u0022, [[728, 90], [970, 90], [970, 250], [320, 50]], \u0022dfp-ad-rect_atf_center_11623877974\u0022).set(\u0022adsense_ad_types\u0022, \u0022image\u0022).addService(googletag.pubads()); }","boxflex_art_atf_right_11623877974":"dfp_slots[\u0022boxflex_art_atf_right_11623877974\u0022] = function() { return googletag.defineSlot(\u0022\/1065729\/BoxFlex_ART_ATF_RIGHT\u0022, [[300, 1050], [300, 600], [300, 250]], \u0022dfp-ad-boxflex_art_atf_right_11623877974\u0022).set(\u0022adsense_ad_types\u0022, \u0022image\u0022).addService(googletag.pubads()); }","boxflex_art_btf_right_float_11623877974":"dfp_slots[\u0022boxflex_art_btf_right_float_11623877974\u0022] = function() { return googletag.defineSlot(\u0022\/1065729\/BoxFlex_ART_BTF_RIGHT_FLOAT\u0022, [[300, 1050], [300, 600], [300, 250]], \u0022dfp-ad-boxflex_art_btf_right_float_11623877974\u0022).set(\u0022adsense_ad_types\u0022, \u0022image\u0022).addService(googletag.pubads()); }"},"slotLookup":{"adhesion_bottom_11623877974":"adhesion_bottom","backgroundslot_11623877974":"backgroundslot","rect_atf_center_11623877974":"rect_atf_center","boxflex_art_atf_right_11623877974":"boxflex_art_atf_right","boxflex_art_btf_right_float_11623877974":"boxflex_art_btf_right_float"},"wallpaperSlotConfig":{"adid":"20","machinename":"backgroundslot","slot":"BackgroundSlot","adunit":"\/1065729\/BackgroundSlot","size":"[0, 0]","block":"0","settings":{"out_of_page":1,"slug":"","short_tag":0,"adsense_ad_types":"","adsense_channel_ids":"","adsense_colors":{"background":"","border":"","link":"","text":"","url":""},"amp_size":"0x0","targeting":[{"target":"pos","value":"wallpaper"},{"target":"loc","value":"background"}],"breakpoints":[]},"table":"dfp_tags","type":"Normal","export_type":1,"raw":{"adid":"20","machinename":"backgroundslot","slot":"BackgroundSlot","adunit":"[dfp_tag:slot]","size":"0x0","block":"0","settings":{"out_of_page":1,"slug":"","short_tag":0,"adsense_ad_types":"","adsense_channel_ids":"","adsense_colors":{"background":"","border":"","link":"","text":"","url":""},"amp_size":"0x0","targeting":[{"target":"pos","value":"wallpaper"},{"target":"loc","value":"background"}],"breakpoints":[]},"table":"dfp_tags","type":"Normal","export_type":1},"out_of_page":1,"slug":"","short_tag":0,"adsense_ad_types":"","adsense_channel_ids":"","adsense_colors":{"background":"","border":"","link":"","text":"","url":""},"amp_size":"0x0","targeting":[{"target":"pos","value":"wallpaper"},{"target":"loc","value":"background"}],"breakpoints":[],"instance_count":1,"unique_hash":"11623877974","wrapper_id":"dfp-ad-backgroundslot_11623877974-wrapper","placeholder_id":"dfp-ad-backgroundslot_11623877974"},"googletagServicesConfig":{"library":"(function() {\n    var gads = document.createElement(\u0027script\u0027);\n    gads.type = \u0027text\/javascript\u0027;\n    gads.async = true;\n    var useSSL = \u0027https:\u0027 == document.location.protocol;\n    gads.src = (useSSL ? \u0027https:\u0027 : \u0027http:\u0027) +\n      \u0027\/\/www.googletagservices.com\/tag\/js\/gpt.js\u0027;\n    var node = document.getElementsByTagName(\u0027script\u0027)[0];\n    node.parentNode.insertBefore(gads, node);\n  })();","init":"googletag.cmd.push(function() {\n  googletag.pubads().enableAsyncRendering();\n  googletag.pubads().enableSingleRequest();\n  googletag.pubads().collapseEmptyDivs();\n  googletag.pubads().setTargeting(\u0022path\u0022, \u0022taxonomy\/term\/787\/0\/feed\u0022);\n  googletag.pubads().setTargeting(\u0022path_first\u0022, \u0022taxonomy\u0022);\n  googletag.pubads().setTargeting(\u0022teams\u0022, [\u0022\u0022,\u0022\u0022,\u0022\u0022,\u0022\u0022]);\n  googletag.pubads().setTargeting(\u0022env\u0022, \u0022production\u0022);\nAMG_PERSONALIZED_PLACEHOLDER  googletag.enableServices();\n});\n\n"},"deferredCss":"\u003Clink type=\u0022text\/css\u0022 rel=\u0022stylesheet\u0022 href=\u0022https:\/\/athlonsports.com\/sites\/athlonsports.com\/themes\/asomega\/css\/asomega-alpha-default.css?qus8qd\u0022 media=\u0022all and (min-width: 1220px)\u0022 \/\u003E\n\u003Clink type=\u0022text\/css\u0022 rel=\u0022stylesheet\u0022 href=\u0022https:\/\/athlonsports.com\/sites\/athlonsports.com\/themes\/asomega\/css\/asomega-alpha-default-wide.css?qus8qd\u0022 media=\u0022all and (min-width: 1220px)\u0022 \/\u003E\n\u003Clink type=\u0022text\/css\u0022 rel=\u0022stylesheet\u0022 href=\u0022https:\/\/athlonsports.com\/sites\/all\/themes\/omega\/alpha\/css\/grid\/alpha_default\/wide\/alpha-default-wide-24.css?qus8qd\u0022 media=\u0022all and (min-width: 1220px)\u0022 \/\u003E\n"},"urlIsAjaxTrusted":{"\/taxonomy\/term\/787\/0\/feed":true},"analytics":{"member":0,"isLoggedIn":"no","format":"channel"},"chartbeat":{"authorName":"Athlon System","section":"Athlon System","isLoggedIn":"no"},"amg_globals":{"pageType":"node","enabledContexts":["footer","genesis_interstitial_ad","menu","100_right_rail","adhesion_bottom_ad","content_hub_blog_empty_field_blog","wallpaper_ad","leaderboard","footer","genesis_interstitial_ad","menu","100_right_rail","adhesion_bottom_ad","content_hub_blog_empty_field_blog","wallpaper_ad","leaderboard","footer","genesis_interstitial_ad","menu","100_right_rail","adhesion_bottom_ad","content_hub_blog_empty_field_blog","wallpaper_ad","leaderboard","footer","genesis_interstitial_ad","menu","100_right_rail","adhesion_bottom_ad","content_hub_blog_empty_field_blog","wallpaper_ad","leaderboard","footer","genesis_interstitial_ad","menu","100_right_rail","adhesion_bottom_ad","content_hub_blog_empty_field_blog","wallpaper_ad","leaderboard","footer","genesis_interstitial_ad","menu","100_right_rail","adhesion_bottom_ad","content_hub_blog_empty_field_blog","wallpaper_ad","leaderboard","footer","genesis_interstitial_ad","menu","100_right_rail","adhesion_bottom_ad","content_hub_blog_empty_field_blog","wallpaper_ad","leaderboard","footer","genesis_interstitial_ad","menu","100_right_rail","adhesion_bottom_ad","content_hub_blog_empty_field_blog","wallpaper_ad","leaderboard","footer","genesis_interstitial_ad","menu","100_right_rail","adhesion_bottom_ad","content_hub_blog_empty_field_blog","wallpaper_ad","leaderboard","footer","genesis_interstitial_ad","menu","100_right_rail","adhesion_bottom_ad","content_hub_blog_empty_field_blog","wallpaper_ad","leaderboard"]},"omega":{"layouts":{"primary":"normal","order":["narrow","normal","wide"],"queries":{"narrow":"all and (min-width: 740px) and (min-device-width: 740px), (max-device-width: 800px) and (min-width: 740px) and (orientation:landscape)","normal":"all and (min-width: 980px) and (min-device-width: 980px), all and (max-device-width: 1024px) and (min-width: 1024px) and (orientation:landscape)","wide":"all and (min-width: 1220px)"}}}});
//--><!]]>
</script>

<script type='text/javascript' data-cfasync="false">
            var _sf_startpt = (new Date()).getTime();
            var _sf_async_config = _sf_async_config || {};
            /** CONFIGURATION START **/
            _sf_async_config.uid = 17212; //Athlon user id.
            _sf_async_config.domain = 'athlonsports.com'; //Athlon domain.
            _sf_async_config.useCanonical = true;
            _sf_async_config.useCanonicalDomain = true;
            _sf_async_config.flickerControl= true;
            var flickerTimeout = 1000; //time in ms set to timeout for flicker control to load
            var flickerCss = 'body {visibility: hidden !important; }';

            //If chartbeat.authorName is available, assign it to _sf_async_config.authors
            if(window.Drupal.settings.chartbeat.authorName){
                _sf_async_config.authors = window.Drupal.settings.chartbeat.authorName;
            }

            //If chartbeat.section is available, assign it to _sf_async_config.sections
            if(window.Drupal.settings.chartbeat.section) {
                _sf_async_config.sections = window.Drupal.settings.chartbeat.section;
            }

            var _cbq = window._cbq = (window._cbq || []);
            if(window.Drupal.settings.chartbeat.isLoggedIn === "yes"){
            //if chartbeat.isLogged in is yes, the user will be set as Registered. If not, the user with be set as Guest.
                _cbq.push(['_acct', 'lgdin']); //"Registered" in chartbeat dashboard
            }
            else {
                _cbq.push(['_acct', 'anon']); //"Guest" in chartbeat dashboard
            }

            /** CONFIGURATION END **/
            (function () {

                function chartbeatConsentActions(){
                    loadChartbeat();
                    loadChartbeatMab();
                }

                function chartbeatNonConsentActions() {
                    flickerControlRemoval();
                }

                /**
                 * Loads Standard Chartbeat Script
                 */
                function loadChartbeat() {
                    window._sf_endpt = (new Date()).getTime();
                    var e = document.createElement('script');
                    e.setAttribute('language', 'javascript');
                    e.setAttribute('type', 'text/javascript');
                    e.setAttribute('src', '//static.chartbeat.com/js/chartbeat.js');
                    document.head.appendChild(e);
                }

                /**
                 * Loads Chartbeat Headline Testing Script
                 */
                function loadChartbeatMab() {
                    window._sf_endpt = (new Date()).getTime();
                    var e = document.createElement('script');
                    e.setAttribute('language', 'javascript');
                    e.setAttribute('type', 'text/javascript');
                    e.setAttribute('async', '');
                    e.setAttribute('src', '//static.chartbeat.com/js/chartbeat_mab.js');
                    document.head.appendChild(e);
                }

                /**
                 * Loads style element that hides all page elements
                 */
                function loadFlickerControlStyle() {
                    var style = document.createElement('style');
                    style.setAttribute('id', 'chartbeat-flicker-control-style');
                    style.setAttribute('type', 'text/css');
                    style.innerHTML = flickerCss;
                    document.head.appendChild(style);
                }

                /**
                 * Removes style element that hides page elements
                 */
                function flickerControlRemoval() {
                    var hider = document.getElementById('chartbeat-flicker-control-style');
                    if (hider) {
                        hider.parentNode.removeChild(hider);
                    }
                }

                loadFlickerControlStyle();

                window.setTimeout(flickerControlRemoval, flickerTimeout);

                ConsentManager.registerPurposeHandler(['storage', 'measurement'], chartbeatConsentActions, chartbeatNonConsentActions, "Load All Chartbeat Data");
            })();
    </script>

<script type="text/javascript" data-cfasync="false">
        (function() {
            var _comscore = _comscore || [];
            _comscore.push({c1: "2", c2: "8207537"});

            var s = document.createElement("script"), el = document.getElementsByTagName("script")[0];
            s.async = true;
            s.src = (document.location.protocol == "https:" ? "https://sb" : "http://b") + ".scorecardresearch.com/beacon.js";
            el.parentNode.insertBefore(s, el);
        })();
    </script>


<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
        new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
        j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
        'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
        })(window,document,'script','dataLayer', "GTM-5DVJSLW");</script>


<script type="text/javascript">
        /**
         * DFP requires multiple purposes listed below:
         * 'purpose':'purpose id'
         * [
         *      'storage':          1,
         *      'personalization':  2,
         *      'ad_selection':     3,
         *      'measurement':      5
         *
         * @see https://support.google.com/dfp_premium/answer/7673898#personalized
         * @see sites/all/modules/athlon/amg_consent_management/assets/config/config.json
         */
        ConsentManager.registerPurposeHandler(['storage', 'personalization', 'ad_selection', 'measurement'], function() {
            var dfpMoreSlots = [];

            function attachDfpMoreSlotEvent($) {
                $(document).on('dfpMoreSlotAdded', function () {
                    $.each(dfpMoreSlots, function (index, element) {
                        if (typeof element === 'function') {
                            element();
                        }
                    });
                });
            }

            if (document.addEventListener) {
                window.addEventListener('load', function () {
                    attachDfpMoreSlotEvent(jQuery);
                });
            } else if (document.attachEvent) {
                window.attachEvent('onload', function () {
                    attachDfpMoreSlotEvent(jQuery);
                });
            }
        });
    </script>
</head>

<body class="html not-front not-logged-in no-sidebars page-taxonomy page-taxonomy-term page-taxonomy-term- page-taxonomy-term-787 page-taxonomy-term-0 page-taxonomy-term-feed context-taxonomy">

<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-5DVJSLW"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>


<script>
    /**
     * 'purpose':'purpose id'
     * [
     *      'storage':              1,
     *      'personalization':      2,
     *      'ad_selection':         3,
     *      'content_selection':    4,
     *      'measurement':          5
     *
     * @see sites/all/modules/athlon/amg_consent_management/assets/config/config.json
     */
    ConsentManager.registerPurposeHandler(['storage', 'personalization', 'ad_selection', 'content_selection', 'measurement'], function() {
        window.fbAsyncInit = function () {
            FB.init({
                appId: '346985075427767',
                autoLogAppEvents: true,
                cookie: true,
                xfbml: true,
                version: 'v2.12'
            });
            FB.AppEvents.logPageView();
        };

        (function (d, s, id) {
            var js, fjs = d.getElementsByTagName(s)[0];
            if (d.getElementById(id)) {
                return;
            }
            js = d.createElement(s);
            js.id = id;
            js.src = "//connect.facebook.net/en_US/sdk.js";
            fjs.parentNode.insertBefore(js, fjs);
        }(document, 'script', 'facebook-jssdk'));
    });
</script>
<div id="skip-link">
<a href="#main-content" class="element-invisible element-focusable">Skip to main content</a>
</div>
<div class="region region-page-top" id="region-page-top">
<div class="region-inner region-page-top-inner">
<div id="dfp-ad-adhesion_bottom_11623877974-wrapper" class="dfp-tag-wrapper"><div id="dfp-ad-adhesion_bottom_11623877974" class="dfp-tag-wrapper adhesion_bottom">
</div>
</div><div id="dfp-ad-backgroundslot_11623877974-wrapper" class="dfp-tag-wrapper element-hidden"><div id="dfp-ad-backgroundslot_11623877974" class="dfp-tag-wrapper">
</div>
</div> </div>
</div><div class="page clearfix" id="page">
<header id="section-header" class="section section-header">
<div id="zone-menu-wrapper" class="zone-wrapper zone-menu-wrapper clearfix">
<div id="zone-menu" class="zone zone-menu clearfix container-24">
<div class="grid-24 region region-menu" id="region-menu">
<div class="region-inner region-menu-inner">
<div class="block block-athlon-meganav block-athlon-meganav-athlon-meganav odd block-without-title" id="block-athlon-meganav-athlon-meganav">
<div class="block-inner clearfix">
<div class="content clearfix">
<div id="athlon-global-menu" class="global-nav">

<div class="nav-contents">

<div id="nav-athlon-social" class="nav-content" style="display:none">
<ul id="athlon-social">
<li class="social-four-square">
<ul>
<li class="facebook">
<h3>Like Us</h3>
<div class="fb-like" data-href="https://facebook.com/AthlonSports" data-send="false" data-layout="box_count" data-width="450" data-show-faces="false" data-font="arial"></div>
<div id="fb-root"></div>
<a href="https://www.facebook.com/AthlonSports" title="Athlon Sports on Facebook" target="_blank"><i class="icon-facebook icon-5x"></i></a>
</li>
<li class="twitter">
<h3>Follow Us</h3>
<a href="https://twitter.com/athlonsports" class="twitter-follow-button" data-show-count="false" data-size="large" data-show-screen-name="false">Follow @athlonsports</a>
<a href="https://twitter.com/athlonsports" title="Athlon Sports on Twitter" target="_blank"><i class="icon-twitter icon-5x"></i></a>
</li>
<li class="you-tube">
<h3>Subscribe</h3>
<a href="https://www.youtube.com/subscription_center?add_user=athlonsports" target="_blank"><i class="icon-youtube icon-5x"></i></a>
</li>
<li class="instagram">
<h3>Follow</h3>
<a href="https://www.instagram.com/athlonsports/" title="Athlon Sports on Instagram" target="_blank"><i class="icon-instagram icon-5x"></i></a>
</li>
</ul>
</li>
<li class="newsletter">



 <a href="/rss.xml" title="Athlon Sports RSS Feed"><i class="icon-rss icon-4x" target="_blank"></i>&nbsp;&nbsp;RSS</a>
</li>
</ul>
</div>

<div id="nav-college-football" class="nav-content" style="display:none">
<ul>
<li class="meganav-links">
<a href="/college-football"><h3>College Football</h3></a>
<ul class="links"><li class="menu-7626 first"><a href="/college-football">NCAAF Home</a></li><li class="menu-7631"><a href="/college-football/teams">Teams</a></li><li class="menu-9071"><a href="/podcast">Cover 2 Podcast</a></li><li class="menu-9545 last"><a href="http://amglifestylestore.com/m-19-athlon-sports.aspx">Buy Magazine</a></li></ul> </li>
<li class="college-football-teams">
<div class="cfb-teams">
<h3>Conferences</h3>
<ul>
<li><a class="acc" href="/college-football/conference/acc">ACC</a></li>
<li><a class="big-12" href="/college-football/conference/big-12">Big 12</a></li>
<li><a class="big-east" href="/college-football/conference/american">American</a></li>
<li><a class="big-10" href="/college-football/conference/big-ten">Big Ten</a></li>
<li><a class="pac-12" href="/college-football/conference/pac-12">Pac-12</a></li>
<li><a class="sec" href="/college-football/conference/sec">SEC</a></li>
</ul>
</div>
</li>
<li class="college-football-articles">
<h3>College Football Articles</h3>
<div class="view view-megamenu-articles view-id-megamenu_articles view-display-id-block mega-article-block view-dom-id-f3b9d09f5ce0374b3855fd86ee73b559">
<div class="view-content">
<div class="item-list"> <ul> <li class="views-row views-row-1 views-row-odd views-row-first">
<div class="views-field views-field-field-feautred-image"> <div class="field-content"><a href="/college-football/big-12-football-2021-predictions"><img src="/sites/athlonsports.com/files/styles/meganav_rect/public/SpencerRattler_2019_5_5.jpeg?itok=AUuh4Dl4" alt="Spencer Rattler, Oklahoma Sooners Football" title="Spencer Rattler, Oklahoma Sooners Football" /></a></div> </div>
<div> <span><a href="/college-football/big-12-football-2021-predictions">Big 12 Football 2021 Predictions</a></span> </div></li>
<li class="views-row views-row-2 views-row-even">
<div class="views-field views-field-field-feautred-image"> <div class="field-content"><a href="/college-football/why-cfb-playoff-expanding-and-everything-know-about-12-team-format"><img src="/sites/athlonsports.com/files/styles/meganav_rect/public/CFBPlayoffLogo1_4.jpg?itok=9KUKbl8S" alt="College Football Playoff" title="College Football Playoff" /></a></div> </div>
<div> <span><a href="/college-football/why-cfb-playoff-expanding-and-everything-know-about-12-team-format">Why the CFB Playoff is Expanding and Everything to Know About the 12-Team Format</a></span> </div></li>
<li class="views-row views-row-3 views-row-odd views-row-last">
<div class="views-field views-field-field-feautred-image"> <div class="field-content"><a href="/college-football/what-if-college-football-playoff-had-12-team-format-2014"><img src="/sites/athlonsports.com/files/styles/meganav_rect/public/CFBPlayoffLogo1_2.jpg?itok=rvXFwP6x" alt="College Football Playoff" title="College Football Playoff" /></a></div> </div>
<div> <span><a href="/college-football/what-if-college-football-playoff-had-12-team-format-2014">What if the College Football Playoff Had a 12-Team Format Since 2014</a></span> </div></li>
</ul></div> </div>
</div> </li>
<ul>
</div>

<div id="nav-nfl" class="nav-content" style="display:none">
<ul>
<li class="meganav-links">
<a href="/nfl"><h3>NFL</h3></a>
<ul class="links"><li class="menu-7648 first"><a href="/nfl">NFL Homepage</a></li><li class="menu-7653"><a href="/nfl/teams">Teams</a></li><li class="menu-9546 last"><a href="http://amglifestylestore.com/m-19-athlon-sports.aspx">Buy Magazine</a></li></ul> </li>
<li class="nfl-teams">
<div class="nfl-teams">
<ul>
<h3>AFC Teams</h3>
<li><a class="buffalo-logo" href="/nfl/teams/buffalo-bills">Buffalo</a></li>
<li><a class="miami-logo" href="/nfl/teams/miami-dolphins">Miami</a></li>
<li><a class="new-england-logo" href="/nfl/teams/new-england-patriots">New England</a></li>
<li><a class="ny-jets-logo" href="/nfl/teams/new-york-jets">NY Jets</a></li>
<li><a class="baltimore-logo" href="/nfl/teams/baltimore-ravens">Baltimore</a></li>
<li><a class="cincinnati-logo" href="/nfl/teams/cincinnati-bengals">Cincinnati</a></li>
<li><a class="cleveland-logo" href="/nfl/teams/cleveland-browns">Cleveland</a></li>
<li><a class="pittsburgh-logo" href="/nfl/teams/pittsburgh-steelers">Pittsburgh</a></li>
<li><a class="houston-logo" href="/nfl/teams/houston-texans">Houston</a></li>
<li><a class="indianapolis-logo" href="/nfl/teams/indianapolis-colts">Indianapolis</a></li>
<li><a class="jacksonville-logo" href="/nfl/teams/jacksonville-jaguars">Jacksonville</a></li>
<li><a class="tenneessee-logo" href="/nfl/teams/tennessee-titans">Tennessee</a></li>
<li><a class="denver-logo" href="/nfl/teams/denver-broncos">Denver</a></li>
<li><a class="kc-logo" href="/nfl/teams/kansas-city-chiefs">Kansas City</a></li>
<li><a class="oakland-logo" href="/nfl/teams/oakland-raiders">Oakland</a></li>
<li><a class="san-diego-logo" href="/nfl/teams/san-diego-chargers">San Diego</a></li>
</ul>
<ul>
<h3>NFC Teams</h3>
<li><a class="dallas-logo" href="/nfl/teams/dallas-cowboys">Dallas</a></li>
<li><a class="ny-giants-logo" href="/nfl/teams/new-york-giants">NY Giants</a></li>
<li><a class="philadelphia-logo" href="/nfl/teams/philadelphia-eagles">Philadelphia</a></li>
<li><a class="washington-logo" href="/nfl/teams/washington-redskins">Washington</a></li>
<li><a class="chicago-logo" href="/nfl/teams/chicago-bears">Chicago</a></li>
<li><a class="detroit-logo" href="/nfl/teams/detroit-lions">Detroit</a></li>
<li><a class="greenbay-logo" href="/nfl/teams/green-bay-packers">Green Bay</a></li>
<li><a class="minnesota-logo" href="/nfl/teams/minnesota-vikings">Minnesota</a></li>
<li><a class="atlanta-logo" href="/nfl/teams/atlanta-falcons">Atlanta</a></li>
<li><a class="carolina-logo" href="/nfl/teams/carolina-panthers">Carolina</a></li>
<li><a class="neworleans-logo" href="/nfl/teams/new-orleans-saints">New Orleans</a></li>
<li><a class="tampabay-logo" href="/nfl/teams/tampa-bay-buccaneers">Tampa Bay</a></li>
<li><a class="arizona-logo" href="/nfl/teams/arizona-cardinals">Arizona</a></li>
<li><a class="sanfrancisco-logo" href="/nfl/teams/san-francisco-49ers">San Francisco</a></li>
<li><a class="seattle-logo" href="/nfl/teams/seattle-seahawks">Seattle</a></li>
<li><a class="stlouis-logo" href="/nfl/teams/st-louis-rams">St Louis</a></li>
</ul>
</div>
</li>
<li class="nfl-articles">
<h3>NFL Articles</h3>
<div class="view view-megamenu-articles view-id-megamenu_articles view-display-id-block mega-article-block view-dom-id-03df46d8f36d8080b0cc2342724d44d7">
<div class="view-content">
<div class="item-list"> <ul> <li class="views-row views-row-1 views-row-odd views-row-first">
<div class="views-field views-field-field-feautred-image"> <div class="field-content"><a href="/nfl/athlon-sports-2021-nfl-preview-magazine-available-now"><img src="/sites/athlonsports.com/files/styles/meganav_rect/public/2021_nfl_magazine_covers_DL.jpg?itok=HG3AVUdH" alt="Athlon Sports&#039; 2021 NFL Preview Magazine Available Now!" title="Athlon Sports&#039; 2021 NFL Preview Magazine Available Now!" /></a></div> </div>
<div> <span><a href="/nfl/athlon-sports-2021-nfl-preview-magazine-available-now">Athlon Sports&#039; 2021 NFL Preview Magazine Available Now!</a></span> </div></li>
<li class="views-row views-row-2 views-row-even views-row-last">
<div class="views-field views-field-field-feautred-image"> <div class="field-content"><a href="/nfl/must-see-games-2021-nfl-season"><img src="/sites/athlonsports.com/files/styles/meganav_rect/public/PatrickMahomes_3_2019_5.jpg?itok=DcU3bXg8" alt="10 Must-See Games in the 2021 NFL Season" title="10 Must-See Games in the 2021 NFL Season" /></a></div> </div>
<div> <span><a href="/nfl/must-see-games-2021-nfl-season">10 Must-See Games in the 2021 NFL Season</a></span> </div></li>
</ul></div> </div>
</div> </li>
</ul>
</div>

<div id="nav-college-basketball" class="nav-content" style="display:none">
<ul>
<li class="meganav-links">
<a href="/college-basketball"><h3>College Basketball</h3></a>
<ul class="links"><li class="menu-7618 first"><a href="/college-basketball">NCAAB Home</a></li><li class="menu-7621 last"><a href="/college-basketball/teams">Teams</a></li></ul> </li>
<li class="college-basketball-articles">
<h3>College Basketball Articles</h3>
<div class="view view-megamenu-articles view-id-megamenu_articles view-display-id-block mega-article-block view-dom-id-fcdeaa07a3cf8ea7c05963a39f0715f0">
<div class="view-content">
<div class="item-list"> <ul> <li class="views-row views-row-1 views-row-odd views-row-first">
<div class="views-field views-field-field-feautred-image"> <div class="field-content"><a href="/college-basketball/ranking-college-basketballs-national-champions-since-1985"><img src="/sites/athlonsports.com/files/styles/meganav_rect/public/Baylor_Bears_national_champs_2021_baylormbb.jpg?itok=HYMTgzs0" alt="Ranking College Basketball&#039;s National Champions Since 1985" title="Ranking College Basketball&#039;s National Champions Since 1985" /></a></div> </div>
<div> <span><a href="/college-basketball/ranking-college-basketballs-national-champions-since-1985">Ranking College Basketball&#039;s National Champions Since 1985</a></span> </div></li>
<li class="views-row views-row-2 views-row-even">
<div class="views-field views-field-field-feautred-image"> <div class="field-content"><a href="/college-basketball/ncaa-tournament-final-four-date-location"><img src="/sites/athlonsports.com/files/styles/meganav_rect/public/FinalFour_logo_2022_DL.jpg?itok=QV9Gaf0n" alt="Where is the Final Four in 2022?" title="Where is the Final Four in 2022?" /></a></div> </div>
<div> <span><a href="/college-basketball/ncaa-tournament-final-four-date-location">Where is the Final Four in 2022?</a></span> </div></li>
<li class="views-row views-row-3 views-row-odd">
<div class="views-field views-field-field-feautred-image"> <div class="field-content"><a href="/college-basketball/15-best-teams-did-not-win-ncaa-tournament-2016"><img src="/sites/athlonsports.com/files/styles/meganav_rect/public/UNLV.jpg?itok=vqp6YLSN" alt="15 Best Teams That Did Not Win the NCAA Tournament" title="15 Best Teams That Did Not Win the NCAA Tournament" /></a></div> </div>
<div> <span><a href="/college-basketball/15-best-teams-did-not-win-ncaa-tournament-2016">15 Best Teams That Did Not Win the NCAA Tournament</a></span> </div></li>
<li class="views-row views-row-4 views-row-even views-row-last">
<div class="views-field views-field-field-feautred-image"> <div class="field-content"><a href="/college-basketball/2021-ncaa-tournament-ranking-sweet-16-teams"><img src="/sites/athlonsports.com/files/styles/meganav_rect/public/Gonzaga_Bulldogs_huddle_2021_zagmbb.jpg?itok=gHh7Lnbf" alt="2021 NCAA Tournament: Ranking the Sweet 16 Teams" title="2021 NCAA Tournament: Ranking the Sweet 16 Teams" /></a></div> </div>
<div> <span><a href="/college-basketball/2021-ncaa-tournament-ranking-sweet-16-teams">2021 NCAA Tournament: Ranking the Sweet 16 Teams</a></span> </div></li>
</ul></div> </div>
</div> </li>
</ul>
</div>



<div id="nav-nascar" class="nav-content" style="display:none">
<ul>
<li class="meganav-links">
<a href="/nascar"><h3>NASCAR</h3></a>
<ul class="links"><li class="menu-7660 first"><a href="/nascar">NASCAR Home</a></li><li class="menu-9346 last"><a href="http://amglifestylestore.com/m-19-athlon-sports.aspx">Buy Magazine</a></li></ul> </li>
<li class="nascar-articles">
<h3>NASCAR Articles</h3>
<div class="view view-megamenu-articles view-id-megamenu_articles view-display-id-block mega-article-block view-dom-id-37d49338385413ab735ba50b3f6ae5c3">
<div class="view-content">
<div class="item-list"> <ul> <li class="views-row views-row-1 views-row-odd views-row-first">
<div class="views-field views-field-field-feautred-image"> <div class="field-content"><a href="/nascar-schedule"><img src="/sites/athlonsports.com/files/styles/meganav_rect/public/nascar_schedule_2021_DL.jpg?itok=1BCViBMG" alt="2021 NASCAR Cup Series TV Schedule" title="2021 NASCAR Cup Series TV Schedule" /></a></div> </div>
<div> <span><a href="/nascar-schedule">2021 NASCAR Schedule: NASCAR Cup Series</a></span> </div></li>
<li class="views-row views-row-2 views-row-even">
<div class="views-field views-field-field-feautred-image"> <div class="field-content"><a href="/nascar/funny-fantasy-nascar-team-names-2019"><img src="/sites/athlonsports.com/files/styles/meganav_rect/public/NASCAR_fantasy_team_names_2021_DL.jpg?itok=BHStes7W" alt="75 Funny Fantasy NASCAR Team Names for 2021" title="75 Funny Fantasy NASCAR Team Names for 2021" /></a></div> </div>
<div> <span><a href="/nascar/funny-fantasy-nascar-team-names-2019">75 Funny Fantasy NASCAR Team Names for 2021</a></span> </div></li>
<li class="views-row views-row-3 views-row-odd">
<div class="views-field views-field-field-feautred-image"> <div class="field-content"><a href="/nascar-live-stream-free"><img src="/sites/athlonsports.com/files/styles/meganav_rect/public/NASCAR_Live_Streaming.jpg?itok=mtB_tMZZ" alt="Watch and Live Stream NASCAR Online (some for free)" title="Watch and Live Stream NASCAR Online (some for free)" /></a></div> </div>
<div> <span><a href="/nascar-live-stream-free">How to Watch and Live Stream NASCAR Online (some for free)</a></span> </div></li>
<li class="views-row views-row-4 views-row-even views-row-last">
<div class="views-field views-field-field-feautred-image"> <div class="field-content"><a href="/most-nascar-wins"><img src="/sites/athlonsports.com/files/styles/meganav_rect/public/Richard-Petty-wins.jpg?itok=e5E888Mw" alt="Richard Petty: All-Time NASCAR Cup Series Wins" title="Richard Petty: All-Time NASCAR Cup Series Wins" /></a></div> </div>
<div> <span><a href="/most-nascar-wins">All-Time NASCAR Cup Series Wins List</a></span> </div></li>
</ul></div> </div>
</div> </li>
</ul>
</div>

<div id="nav-mobile-more" class="nav-content" style="display:none">
<ul class="athlon-mobile-menu">
<li class="mobile-home-menu"><a class="home no-sub" href="https://athlonsports.com">HOME</a>
<a class="login no-sub" href="https://athlonsports.com/user">LOGIN</a>
</li>
<li><a class="ncaaf-menu sub" href="" data-track-event="ncaaf-menu-nav-content">COLLEGE FOOTBALL</a>
<div class="ncaaf-menu-nav-content two-tier" style="display:none">
<ul class="links"><li class="menu-7626 first"><a href="/college-football">NCAAF Home</a></li><li class="menu-7631"><a href="/college-football/teams">Teams</a></li><li class="menu-9071"><a href="/podcast">Cover 2 Podcast</a></li><li class="menu-9545 last"><a href="http://amglifestylestore.com/m-19-athlon-sports.aspx">Buy Magazine</a></li></ul> </div>
</li>
<li><a class="nfl-menu sub" href="" data-track-event="nfl-menu-nav-content">NFL</a>
<div class="nfl-menu-nav-content two-tier" style="display:none">
<ul class="links"><li class="menu-7648 first"><a href="/nfl">NFL Homepage</a></li><li class="menu-7653"><a href="/nfl/teams">Teams</a></li><li class="menu-9546 last"><a href="http://amglifestylestore.com/m-19-athlon-sports.aspx">Buy Magazine</a></li></ul> </div>
</li>

<li><a class="fantasy-menu no-sub" href="/fantasy">FANTASY</a></li>
<li><a class="ncaab-menu sub" href="" data-track-event="ncaab-menu-nav-content">COLLEGE BASKETBALL</a>
<div class="ncaab-menu-nav-content two-tier" style="display:none">
<ul class="links"><li class="menu-7618 first"><a href="/college-basketball">NCAAB Home</a></li><li class="menu-7621 last"><a href="/college-basketball/teams">Teams</a></li></ul> </div>
</li>
<li><a class="mlb-menu no-sub" href="/mlb">MLB</a></li>
<li><a class="nascar-menu sub" href="" data-track-event="nascar-menu-nav-content">NASCAR</a>
<div class="nascar-menu-nav-content two-tier" style="display:none">
<ul class="links"><li class="menu-7660 first"><a href="/nascar">NASCAR Home</a></li><li class="menu-9346 last"><a href="http://amglifestylestore.com/m-19-athlon-sports.aspx">Buy Magazine</a></li></ul> </div>
</li>


<li><a class="magazines-menu no-sub" href="/magazines">Magazines</a></li>


<li><a class="overtime-menu no-sub" href="/overtime">OverTime</a></li>

<li><a class="store-menu no-sub" href="https://www.amglifestylestore.com/m-19-athlon-sports.aspx" rel="nofollow" target="_blank">BUY MAGAZINES</a></li>
</ul>
</div>
<div id="nav-mobile-search" class="nav-content" style="display:none">
<form action="/taxonomy/term/787/0/feed" method="post" id="search-block-form" accept-charset="UTF-8"><div><div class="container-inline">
<h2 class="element-invisible">Search form</h2>
<div class="form-item form-type-textfield form-item-search-block-form">
<label class="element-invisible" for="edit-search-block-form--2">Search </label>
<input title="Enter the terms you wish to search for." type="text" id="edit-search-block-form--2" name="search_block_form" value="" size="15" maxlength="128" class="form-text" />
</div>
<div class="form-actions form-wrapper" id="edit-actions"><input type="submit" id="edit-submit" name="op" value="Search" class="form-submit" /></div><input type="hidden" name="form_build_id" value="form-4qMHa6thYe496iq_EfIG1-CEL6SzpuGIwodDnKDqdIc" />
<input type="hidden" name="form_id" value="search_block_form" />
</div>
</div></form> </div>
</div>

<div class="nav-bar">
<div class="nav-bar-content">
<div class="primary-nav">
<ul class="mobile-nav clearfix"> 
<li class="athlon-logo"><a href='/'>Athlon Sports</a></li>
<li class="left">
<ul>
<li id="mobile-search" class="nav-content" style="display:none">
<form action="/taxonomy/term/787/0/feed" method="post" id="search-block-form" accept-charset="UTF-8"><div><div class="container-inline">
<h2 class="element-invisible">Search form</h2>
<div class="form-item form-type-textfield form-item-search-block-form">
<label class="element-invisible" for="edit-search-block-form--2">Search </label>
<input title="Enter the terms you wish to search for." type="text" id="edit-search-block-form--2" name="search_block_form" value="" size="15" maxlength="128" class="form-text" />
</div>
<div class="form-actions form-wrapper" id="edit-actions"><input type="submit" id="edit-submit" name="op" value="Search" class="form-submit" /></div><input type="hidden" name="form_build_id" value="form-4qMHa6thYe496iq_EfIG1-CEL6SzpuGIwodDnKDqdIc" />
<input type="hidden" name="form_id" value="search_block_form" />
</div>
</div></form> </li>
<li class="mobile-more phone"><a class="mobile-more sub" href="#" data-track-event="mobile-more"><i class="icon-reorder icon-2x"></i></a></li>
<li class="mobile search"><a class="mobile-search sub" href="" data-track-event="mobile-search"><i class="icon-search icon-2x"></i></a>
</li>
</ul>
</li>
</ul>

<ul class="regular-nav clearfix"> 
<li class="athlon-logo"><a class="no-sub" href='/'>Athlon Sports</a></li>
<li class="left more">
<ul>
<li class="external-links">
<ul>


<li class="athlon-store"><a href="https://www.amglifestylestore.com/m-19-athlon-sports.aspx" rel="nofollow" target="_blank">Buy Your Magazine Here</a></li>
<li class="athlon-social"><a class="athlon-social sub" href="" data-track-event="athlon-social">Social</a></li>
</ul>
</li>
</ul>





 </li>

<li class="right mobile-view">
<ul>
<li class="college-football"><a href="/college-football" class="sub" data-track-event="college-football">NCAAF</a></li>
<li class="nfl"><a href="/nfl" class="sub" data-track-event="nfl">NFL</a></li>

<li class="fantasy"><a href="/fantasy" data-track-event="fantasy">Fantasy</a></li>
<li class="college-basketball"><a href="/college-basketball" class="sub" data-track-event="college-basketball">NCAAB</a></li>
<li class="mlb"><a href="/mlb" data-track-event="mlb">MLB</a></li>
<li class="nascar"><a href="/nascar" class="sub" data-track-event="nascar">NASCAR</a></li>


<li class="magazines"><a href="/magazines" data-track-event="magazines">Magazines</a></li>


<li class="overtime"><a href="/overtime" class="overtime">OT</a></li>
</ul>
</li>

<li class="top">
<ul>
<li id="nav-search" class="nav-content" style="display:none">
<form action="/taxonomy/term/787/0/feed" method="post" id="search-block-form" accept-charset="UTF-8"><div><div class="container-inline">
<h2 class="element-invisible">Search form</h2>
<div class="form-item form-type-textfield form-item-search-block-form">
<label class="element-invisible" for="edit-search-block-form--2">Search </label>
<input title="Enter the terms you wish to search for." type="text" id="edit-search-block-form--2" name="search_block_form" value="" size="15" maxlength="128" class="form-text" />
</div>
<div class="form-actions form-wrapper" id="edit-actions"><input type="submit" id="edit-submit" name="op" value="Search" class="form-submit" /></div><input type="hidden" name="form_build_id" value="form-4qMHa6thYe496iq_EfIG1-CEL6SzpuGIwodDnKDqdIc" />
<input type="hidden" name="form_id" value="search_block_form" />
</div>
</div></form> </li>
<li class="search"><a class="search" href=""><i class="icon-search"></i></a></li>
 <li class="login"><a href="/user">Log In</a>
<ul class="usermenu-more">
<li class="logout"><a href="/user/logout">Logout</a></li>
</ul>
</li>
<li class="mobile-more tablet"><a class="mobile-more sub" href="#" data-track-event="mobile-more"><i class="icon-reorder icon-2x"></i></a></li>
</ul>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div> </div>
</div>
</div>
</div><div id="zone-branding-wrapper" class="zone-wrapper zone-branding-wrapper clearfix">
<div id="zone-branding" class="zone zone-branding clearfix container-24">
<div class="grid-24 region region-branding" id="region-branding">
<div class="region-inner region-branding-inner">
</div>
</div> </div>
</div>
<div id="zone-ad" class="zone zone-ad clearfix container-24">
<div class="grid-24 region region-ad-horizontal" id="region-ad-horizontal">
<div class="region-inner region-ad-horizontal-inner">
<div class="block block-dfp block-rect-atf-center block-dfp-rect-atf-center odd block-without-title" id="block-dfp-rect-atf-center">
<div class="block-inner clearfix">
<div class="content clearfix">
<div id="dfp-ad-rect_atf_center_11623877974-wrapper" class="dfp-tag-wrapper"><div id="dfp-ad-rect_atf_center_11623877974" class="dfp-tag-wrapper">
</div>
</div> </div>
</div>
</div> </div>
</div> </div>
</header>
<section id="section-content" class="section section-content">
<div id="zone-content-wrapper" class="zone-wrapper zone-content-wrapper clearfix">
<div id="zone-content" class="zone zone-content clearfix container-24">
<div class="grid-17 region region-content" id="region-content">
<div class="region-inner region-content-inner">
<a id="main-content"></a>
<div class="header">
<h1 class="title" id="page-title">Randy Johnson</h1>
</div>
<div class="term-listing-heading"><div id="taxonomy-term-787" class="taxonomy-term vocabulary-vocabulary-65">
<div class="content">
</div>
</div>
</div>
<div id="node-125933" class="node node-news node-teaser clearfix">
<article class="node node-news node-teaser node-published node-not-promoted node-not-sticky author-aaron-tallent odd clearfix" id="node-news-125933">


<header>
<h2 class="node-title"><a href="/overtime/greatest-age-defying-feats-sports-history" title="5 Greatest Age-Defying Feats in Sports History">5 Greatest Age-Defying Feats in Sports History</a></h2>
</header>
<div class="content clearfix">
<div class="field field-name-field-subtitle field-type-text field-label-hidden"><div class="field-items"><div class="field-item even">Phil Mickelson defied Father Time with his PGA Championship win</div></div></div><ul class="links inline"><li class="node-readmore first last"><a href="/overtime/greatest-age-defying-feats-sports-history" rel="tag" title="5 Greatest Age-Defying Feats in Sports History">Read more<span class="element-invisible"> about 5 Greatest Age-Defying Feats in Sports History</span></a></li></ul><div class="field field-name-field-template field-type-list-text field-label-hidden"><div class="field-items"><div class="field-item even">Main Header Image</div></div></div><div class="field field-name-field-featured-weight field-type-list-text field-label-hidden"><div class="field-items"><div class="field-item even">3</div></div></div><div class="field field-name-field-teaser field-type-text-long field-label-hidden"><div class="field-items"><div class="field-item even">5 Greatest Age-Defying Feats in Sports History</div></div></div><div class="field field-name-field-featured-racing-hub field-type-list-boolean field-label-hidden"><div class="field-items"><div class="field-item even">0</div></div></div><div class="field field-name-field-related-articles field-type-node-reference field-label-hidden"><div class="field-items"><div class="field-item even"><a href="/golf/greatest-golfers-all-time">20 Greatest Golfers of All Time (Updated)</a></div><div class="field-item odd"><a href="/daytona-500-winners-list">Daytona 500 Winners List (1959-2021)</a></div><div class="field-item even"><a href="/nfl/super-bowl-mvps-complete-list">Super Bowl MVPs: A Complete List from Super Bowl I to LV</a></div></div></div><div class="field field-name-body field-type-text-with-summary field-label-hidden"><div class="field-items"><div class="field-item even"> <p>Phil Mickelson became the oldest golfer to <a href="/golfers-most-major-championships-victories" target="_blank">win a major</a> last weekend when he won the PGA Championship at the age of 50 years, 11 months, and 7 days. Mickelson's win is one of the most significant age-defying feats in sports history. Here are five that were greater.</p>
<p> </p></div></div></div> </div>
<div class="clearfix">
<nav class="links node-links clearfix"><ul class="links inline"><li class="node-readmore first last"><a href="/overtime/greatest-age-defying-feats-sports-history" rel="tag" title="5 Greatest Age-Defying Feats in Sports History">Read more<span class="element-invisible"> about 5 Greatest Age-Defying Feats in Sports History</span></a></li></ul></nav>
</div>
</article>



</div>
<div id="node-122957" class="node node-news node-teaser clearfix">
<article class="node node-news node-teaser node-published node-not-promoted node-not-sticky author-aaron-tallent even clearfix" id="node-news-122957">


<header>
<h2 class="node-title"><a href="/overtime/day-sports-history-june-4-john-wooden-randy-johnson-kobe-bryant-shaquille-oneal" title="This Day in Sports History: June 4">This Day in Sports History: June 4</a></h2>
</header>
<div class="content clearfix">
<div class="field field-name-field-subtitle field-type-text field-label-hidden"><div class="field-items"><div class="field-item even">Recapping events that took place in the sports world on this day</div></div></div><ul class="links inline"><li class="node-readmore first last"><a href="/overtime/day-sports-history-june-4-john-wooden-randy-johnson-kobe-bryant-shaquille-oneal" rel="tag" title="This Day in Sports History: June 4">Read more<span class="element-invisible"> about This Day in Sports History: June 4</span></a></li></ul><div class="field field-name-field-template field-type-list-text field-label-hidden"><div class="field-items"><div class="field-item even">Main Header Image</div></div></div><div class="field field-name-field-featured-weight field-type-list-text field-label-hidden"><div class="field-items"><div class="field-item even">3</div></div></div><div class="field field-name-field-teaser field-type-text-long field-label-hidden"><div class="field-items"><div class="field-item even">This Day in Sports History: June 4</div></div></div><div class="field field-name-field-featured-racing-hub field-type-list-boolean field-label-hidden"><div class="field-items"><div class="field-item even">0</div></div></div><div class="field field-name-field-related-articles field-type-node-reference field-label-hidden"><div class="field-items"><div class="field-item even"><a href="/overtime/day-sports-history-june-3-muhammad-ali-magic-johnson-michael-jordan">This Day in Sports History: June 3</a></div><div class="field-item odd"><a href="/overtime/day-sports-history-june-2-lou-gehrig-armando-galarraga-jim-joyce-ken-griffey-jr">This Day in Sports History: June 2</a></div><div class="field-item even"><a href="/overtime/day-sports-history-june-1-seattle-supersonics-nba-finals-johan-santana">This Day in Sports History: June 1</a></div></div></div><div class="field field-name-body field-type-text-with-summary field-label-hidden"><div class="field-items"><div class="field-item even"> <p>The history of sports is both vast and rich, thanks to the existence of so many different ones and the longevity associated with them. With so much history to cull through, Athlon Sports wanted to offer the opportunity to look back and see what memorable things happened or milestones were reached on a specific date.</p>
<p> </p>
<p>With that in mind, June 4 is a day in which Kobe and Shaq completed a series-clinching alley-oop and Randy Johnson achieved that magic number for pitching wins.</p>
<p> </p></div></div></div> </div>
<div class="clearfix">
<nav class="links node-links clearfix"><ul class="links inline"><li class="node-readmore first last"><a href="/overtime/day-sports-history-june-4-john-wooden-randy-johnson-kobe-bryant-shaquille-oneal" rel="tag" title="This Day in Sports History: June 4">Read more<span class="element-invisible"> about This Day in Sports History: June 4</span></a></li></ul></nav>
</div>
</article>



</div>
<div id="node-122950" class="node node-news node-teaser clearfix">
<article class="node node-news node-teaser node-published node-not-promoted node-not-sticky author-aaron-tallent odd clearfix" id="node-news-122950">


<header>
<h2 class="node-title"><a href="/overtime/day-sports-history-june-2-lou-gehrig-armando-galarraga-jim-joyce-ken-griffey-jr" title="This Day in Sports History: June 2">This Day in Sports History: June 2</a></h2>
</header>
<div class="content clearfix">
<div class="field field-name-field-subtitle field-type-text field-label-hidden"><div class="field-items"><div class="field-item even">Recapping events that took place in the sports world on this day</div></div></div><ul class="links inline"><li class="node-readmore first last"><a href="/overtime/day-sports-history-june-2-lou-gehrig-armando-galarraga-jim-joyce-ken-griffey-jr" rel="tag" title="This Day in Sports History: June 2">Read more<span class="element-invisible"> about This Day in Sports History: June 2</span></a></li></ul><div class="field field-name-field-template field-type-list-text field-label-hidden"><div class="field-items"><div class="field-item even">Main Header Image</div></div></div><div class="field field-name-field-featured-weight field-type-list-text field-label-hidden"><div class="field-items"><div class="field-item even">3</div></div></div><div class="field field-name-field-teaser field-type-text-long field-label-hidden"><div class="field-items"><div class="field-item even">This Day in Sports History: June 2</div></div></div><div class="field field-name-field-featured-racing-hub field-type-list-boolean field-label-hidden"><div class="field-items"><div class="field-item even">0</div></div></div><div class="field field-name-field-related-articles field-type-node-reference field-label-hidden"><div class="field-items"><div class="field-item even"><a href="/overtime/day-sports-history-june-1-seattle-supersonics-nba-finals-johan-santana">This Day in Sports History: June 1</a></div><div class="field-item odd"><a href="/overtime/day-sports-history-may-31-usain-bolt-nba-playoffs">This Day in Sports History: May 31</a></div><div class="field-item even"><a href="/overtime/day-sports-history-may-30-indinapolis-500-ray-harroun-aj-foyt-mario-andretti">This Day in Sports History: May 30</a></div></div></div><div class="field field-name-body field-type-text-with-summary field-label-hidden"><div class="field-items"><div class="field-item even"> <p>The history of sports is both vast and rich, thanks to the existence of so many different ones and the longevity associated with them. With so much history to cull through, Athlon Sports wanted to offer the opportunity to look back and see what memorable things happened or milestones were reached on a specific date.</p>
<p> </p>
<p>With that in mind, June 2 is a day in which a blown call ruined a perfect game but brought about great sportsmanship and the Dallas Mavericks came back to lead one of the biggest upsets in NBA Finals history.</p>
<p> </p></div></div></div> </div>
<div class="clearfix">
<nav class="links node-links clearfix"><ul class="links inline"><li class="node-readmore first last"><a href="/overtime/day-sports-history-june-2-lou-gehrig-armando-galarraga-jim-joyce-ken-griffey-jr" rel="tag" title="This Day in Sports History: June 2">Read more<span class="element-invisible"> about This Day in Sports History: June 2</span></a></li></ul></nav>
</div>
</article>



</div>
<div id="node-122911" class="node node-news node-teaser clearfix">
<article class="node node-news node-teaser node-published node-not-promoted node-not-sticky author-aaron-tallent even clearfix" id="node-news-122911">


<header>
<h2 class="node-title"><a href="/overtime/day-sports-history-may-18-randy-johnson-perfect-game-ernie-davis" title="This Day in Sports History: May 18">This Day in Sports History: May 18</a></h2>
</header>
<div class="content clearfix">
<div class="field field-name-field-subtitle field-type-text field-label-hidden"><div class="field-items"><div class="field-item even">Recapping events that took place in the sports world on this day</div></div></div><ul class="links inline"><li class="node-readmore first last"><a href="/overtime/day-sports-history-may-18-randy-johnson-perfect-game-ernie-davis" rel="tag" title="This Day in Sports History: May 18">Read more<span class="element-invisible"> about This Day in Sports History: May 18</span></a></li></ul><div class="field field-name-field-template field-type-list-text field-label-hidden"><div class="field-items"><div class="field-item even">Main Header Image</div></div></div><div class="field field-name-field-featured-weight field-type-list-text field-label-hidden"><div class="field-items"><div class="field-item even">3</div></div></div><div class="field field-name-field-teaser field-type-text-long field-label-hidden"><div class="field-items"><div class="field-item even">This Day in Sports History: May 18</div></div></div><div class="field field-name-field-featured-racing-hub field-type-list-boolean field-label-hidden"><div class="field-items"><div class="field-item even">0</div></div></div><div class="field field-name-field-related-articles field-type-node-reference field-label-hidden"><div class="field-items"><div class="field-item even"><a href="/overtime/day-sports-history-may-17-david-wells-jeff-gordon-stanley-cup-finals">This Day in Sports History: May 17</a></div><div class="field-item odd"><a href="/overtime/day-sports-history-may-16-magic-johnson-billy-martin-thurman-thomas">This Day in Sports History: May 16</a></div><div class="field-item even"><a href="/overtime/day-sports-history-may-15-len-barker-joe-dimaggio-antonio-tarver-roy-jones-jr">This Day in Sports History: May 15</a></div></div></div><div class="field field-name-body field-type-text-with-summary field-label-hidden"><div class="field-items"><div class="field-item even"> <p>The history of sports is both vast and rich, thanks to the existence of so many different ones and the longevity associated with them. With so much history to cull through, Athlon Sports wanted to offer the opportunity to look back and see what memorable things happened or milestones were reached on a specific date.</p>
<p> </p>
<p>With that in mind, May 18 is a day in which a bad call resulted in major NBA playoffs implications and Randy Johnson became the oldest player to achieve pitching greatness.</p>
<p> </p></div></div></div> </div>
<div class="clearfix">
<nav class="links node-links clearfix"><ul class="links inline"><li class="node-readmore first last"><a href="/overtime/day-sports-history-may-18-randy-johnson-perfect-game-ernie-davis" rel="tag" title="This Day in Sports History: May 18">Read more<span class="element-invisible"> about This Day in Sports History: May 18</span></a></li></ul></nav>
</div>
</article>



</div>
<div id="node-104609" class="node node-news node-teaser clearfix">
<article class="node node-news node-teaser node-published node-not-promoted node-not-sticky author-charlie-miller odd clearfix" id="node-news-104609">


<header>
<h2 class="node-title"><a href="/mlb/arizona-diamondbacks-mt-rushmore-franchise-four" title="Arizona Diamondbacks Mt. Rushmore (Franchise Four)">Arizona Diamondbacks Mt. Rushmore (Franchise Four)</a></h2>
</header>
<div class="content clearfix">
<div class="field field-name-field-subtitle field-type-text field-label-hidden"><div class="field-items"><div class="field-item even">Gonzo and the Big Unit are honored here. But who are the other two players on Arizona&#039;s Mt. Rushmore?</div></div></div><ul class="links inline"><li class="node-readmore first last"><a href="/mlb/arizona-diamondbacks-mt-rushmore-franchise-four" rel="tag" title="Arizona Diamondbacks Mt. Rushmore (Franchise Four)">Read more<span class="element-invisible"> about Arizona Diamondbacks Mt. Rushmore (Franchise Four)</span></a></li></ul><div class="field field-name-field-template field-type-list-text field-label-hidden"><div class="field-items"><div class="field-item even">One left &amp; One Right Image</div></div></div><div class="field field-name-field-featured-weight field-type-list-text field-label-hidden"><div class="field-items"><div class="field-item even">3</div></div></div><div class="field field-name-field-teaser field-type-text-long field-label-hidden"><div class="field-items"><div class="field-item even">&lt;p&gt;
I am continuing the series of MLB Mt. Rushmores. The question was posed earlier this season whether Derek Jeter should be considered as part of the Yankees’ Mt. Rushmore. That certainly piqued my interest. Not really the Jeter-Yankees part, but the idea that all MLB teams should have their own Mt. Rushmores. Who are the four individuals that have risen above all others for each organization? The question sounds simple. But it isn&#039;t as easy as it sounds. Let the arguments begin.&lt;/p&gt;
</div></div></div><div class="field field-name-taxonomyextra field-type-taxonomy-term-reference field-label-above"><div class="field-label">Taxonomy upgrade extras:&nbsp;</div><div class="field-items"><div class="field-item even"><a href="/category/mlb-league/national-league">National League</a></div><div class="field-item odd"><a href="/category/mlb-teams/arizona-diamondbacks">Arizona Diamondbacks</a></div><div class="field-item even"><a href="/category/mlb-divisions/nl-west">NL West</a></div><div class="field-item odd"><a href="/category/miscellaneous/mt-rushmore">Mt. Rushmore</a></div><div class="field-item even"><a href="/category/mlb-players/randy-johnson">Randy Johnson</a></div><div class="field-item odd"><a href="/category/mlb-players/luis-gonzalez">Luis Gonzalez</a></div><div class="field-item even"><a href="/category/mlb-players/big-unit">Big Unit</a></div><div class="field-item odd"><a href="/category/mlb-players/paul-goldschmidt">Paul Goldschmidt</a></div><div class="field-item even"><a href="/category/mlb-players/gonzo">Gonzo</a></div><div class="field-item odd"><a href="/category/mlb-players/jay-bell">Jay Bell</a></div><div class="field-item even"><a href="/category/mlb-players/steve-finley">Steve Finley</a></div><div class="field-item odd"><a href="/category/mlb-players/brandon-webb">Brandon Webb</a></div><div class="field-item even"><a href="/category/mlb-players/justin-upton">Justin Upton</a></div><div class="field-item odd"><a href="/category/mlb-players/stephen-drew">Stephen Drew</a></div><div class="field-item even"><a href="/category/mlb-players/curt-schilling">Curt Schilling</a></div><div class="field-item odd"><a href="/category/mlb-players/chris-young">Chris Young</a></div><div class="field-item even"><a href="/category/mlb-divisions/mlb">MLB</a></div></div></div><div class="field field-name-field-featured-racing-hub field-type-list-boolean field-label-hidden"><div class="field-items"><div class="field-item even">0</div></div></div><div class="field field-name-body field-type-text-with-summary field-label-hidden"><div class="field-items"><div class="field-item even"> <p style="font-size: 13px; line-height: 20px;">Major League Baseball is promoting an effort to identify the best four players in each team’s history with their "Franchise Four." We selected our choices for Mt. Rushmores a few years ago. Here are updated versions for all 30 teams. Who are the four baseball players that have risen above all others for each organization? The question sounds simple, right? Not so fast. Let the arguments begin.</p></div></div></div> </div>
<div class="clearfix">
<nav class="links node-links clearfix"><ul class="links inline"><li class="node-readmore first last"><a href="/mlb/arizona-diamondbacks-mt-rushmore-franchise-four" rel="tag" title="Arizona Diamondbacks Mt. Rushmore (Franchise Four)">Read more<span class="element-invisible"> about Arizona Diamondbacks Mt. Rushmore (Franchise Four)</span></a></li></ul></nav>
</div>
</article>



</div>
<div id="node-104605" class="node node-news node-teaser clearfix">
<article class="node node-news node-teaser node-published node-not-promoted node-not-sticky author-charlie-miller even clearfix" id="node-news-104605">


<header>
<h2 class="node-title"><a href="/mlb/seattle-mariners-mt-rushmore-franchise-four" title="Seattle Mariners Mt. Rushmore (Franchise Four)">Seattle Mariners Mt. Rushmore (Franchise Four)</a></h2>
</header>
<div class="content clearfix">
<div class="field field-name-field-subtitle field-type-text field-label-hidden"><div class="field-items"><div class="field-item even">Clear choices for Seattle foursome</div></div></div><ul class="links inline"><li class="node-readmore first last"><a href="/mlb/seattle-mariners-mt-rushmore-franchise-four" rel="tag" title="Seattle Mariners Mt. Rushmore (Franchise Four)">Read more<span class="element-invisible"> about Seattle Mariners Mt. Rushmore (Franchise Four)</span></a></li></ul><div class="field field-name-field-template field-type-list-text field-label-hidden"><div class="field-items"><div class="field-item even">Two Left Sidebar Images</div></div></div><div class="field field-name-field-featured-weight field-type-list-text field-label-hidden"><div class="field-items"><div class="field-item even">3</div></div></div><div class="field field-name-field-teaser field-type-text-long field-label-hidden"><div class="field-items"><div class="field-item even">&lt;p&gt;
The latest in the series of MLB teams&#039; Mt. Rushmores, the Seattle foursome is the easiest selection of all teams. Should they be carved from Mt. Rainier?&lt;/p&gt;
</div></div></div><div class="field field-name-taxonomyextra field-type-taxonomy-term-reference field-label-above"><div class="field-label">Taxonomy upgrade extras:&nbsp;</div><div class="field-items"><div class="field-item even"><a href="/category/mlb-players/ken-griffey">Ken Griffey</a></div><div class="field-item odd"><a href="/category/mlb-teams/seattle-mariners">Seattle Mariners</a></div><div class="field-item even"><a href="/category/miscellaneous/mt-rushmore">Mt. Rushmore</a></div><div class="field-item odd"><a href="/category/mlb-players/randy-johnson">Randy Johnson</a></div><div class="field-item even"><a href="/category/mlb-players/big-unit">Big Unit</a></div><div class="field-item odd"><a href="/category/mlb-players/ichiro-suzuki">Ichiro Suzuki</a></div><div class="field-item even"><a href="/category/mlb-players/edgar-martinez">Edgar Martinez</a></div><div class="field-item odd"><a href="/category/miscellaneous/moeller-high-school">Moeller High School</a></div><div class="field-item even"><a href="/category/mlb-divisions/mlb">MLB</a></div><div class="field-item odd"><a href="/category/mlb-players/felix-hernandez">Felix Hernandez</a></div></div></div><div class="field field-name-field-featured-racing-hub field-type-list-boolean field-label-hidden"><div class="field-items"><div class="field-item even">0</div></div></div><div class="field field-name-body field-type-text-with-summary field-label-hidden"><div class="field-items"><div class="field-item even"> <p style="font-size: 13px; line-height: 20px;">Major League Baseball is promoting an effort to identify the best four players in each team’s history with their "Franchise Four." We selected our choices for Mt. Rushmores a few years ago. Here are updated versions for all 30 teams. Who are the four baseball players that have risen above all others for each organization? The question sounds simple, right? Not so fast. Let the arguments begin.</p></div></div></div> </div>
<div class="clearfix">
<nav class="links node-links clearfix"><ul class="links inline"><li class="node-readmore first last"><a href="/mlb/seattle-mariners-mt-rushmore-franchise-four" rel="tag" title="Seattle Mariners Mt. Rushmore (Franchise Four)">Read more<span class="element-invisible"> about Seattle Mariners Mt. Rushmore (Franchise Four)</span></a></li></ul></nav>
</div>
</article>



</div>
<div id="node-26564" class="node node-news node-promoted node-teaser clearfix">
<article class="node node-news node-promoted node-teaser node-published node-not-sticky author-charlie-miller odd clearfix" id="node-news-26564">


<header>
<h2 class="node-title"><a href="/mlb/you-wont-believe-everything-thats-happened-pirates-had-winning-season" title="You Won&#039;t Believe Everything That&#039;s Happened Since the Pirates Had a Winning Season">You Won&#039;t Believe Everything That&#039;s Happened Since the Pirates Had a Winning Season</a></h2>
</header>
<div class="content clearfix">
<ul class="links inline"><li class="node-readmore first last"><a href="/mlb/you-wont-believe-everything-thats-happened-pirates-had-winning-season" rel="tag" title="You Won&#039;t Believe Everything That&#039;s Happened Since the Pirates Had a Winning Season">Read more<span class="element-invisible"> about You Won&#039;t Believe Everything That&#039;s Happened Since the Pirates Had a Winning Season</span></a></li></ul><div class="field field-name-field-featured-weight field-type-list-text field-label-hidden"><div class="field-items"><div class="field-item even">3</div></div></div><div class="field field-name-field-teaser field-type-text-long field-label-hidden"><div class="field-items"><div class="field-item even">It’s been a long time since the Pittsburgh Pirates had a winning season. A well-documented long time. But, last night, the Pirates won their 82nd game of the season, ensuring themselves of a winning season in 2013. A few notable events have happened in baseball since the Bucs were winners. </div></div></div><div class="field field-name-field-featured-racing-hub field-type-list-boolean field-label-hidden"><div class="field-items"><div class="field-item even">0</div></div></div><div class="field field-name-field-related-articles field-type-node-reference field-label-hidden"><div class="field-items"><div class="field-item even"><a href="/mlb/15-amazing-mlb-stats-week-may-20-26">15 Amazing MLB Stats for the Week of May 20-26</a></div><div class="field-item odd"><a href="/mlb/2013-mlb-pennant-fever-z">2013 MLB Pennant Races: A to Z</a></div><div class="field-item even"><a href="/MtRushmore">Baseball&#039;s Mt. Rushmores - All 30 Teams</a></div></div></div><div class="field field-name-body field-type-text-with-summary field-label-hidden"><div class="field-items"><div class="field-item even"> <p>It’s been a long time since the Pittsburgh Pirates had a winning season. A well-documented long time. My daughter is a junior in college, and the Pirates have not had a season with a winning record in her lifetime.<br /><br />But, last night, the Pirates won their 82nd game of the season, ensuring themselves of a winning year in 2013.<br /><br />A few notable events have happened in baseball since the Bucs were winners back in 1992. Here are a few:</p></div></div></div> </div>
<div class="clearfix">
<nav class="links node-links clearfix"><ul class="links inline"><li class="node-readmore first last"><a href="/mlb/you-wont-believe-everything-thats-happened-pirates-had-winning-season" rel="tag" title="You Won&#039;t Believe Everything That&#039;s Happened Since the Pirates Had a Winning Season">Read more<span class="element-invisible"> about You Won&#039;t Believe Everything That&#039;s Happened Since the Pirates Had a Winning Season</span></a></li></ul></nav>
</div>
</article>



</div>
<div id="node-11210" class="node node-news node-promoted node-teaser clearfix">
<article class="node node-news node-promoted node-teaser node-published node-not-sticky author-charlie-miller even clearfix" id="node-news-11210">


<header>
<h2 class="node-title"><a href="/mlb/2012-mlb-all-star-game-fixing-its-problems" title="2012 MLB All-Star Game: Fixing its Problems">2012 MLB All-Star Game: Fixing its Problems</a></h2>
</header>
<div class="content clearfix">
<ul class="links inline"><li class="node-readmore first last"><a href="/mlb/2012-mlb-all-star-game-fixing-its-problems" rel="tag" title="2012 MLB All-Star Game: Fixing its Problems">Read more<span class="element-invisible"> about 2012 MLB All-Star Game: Fixing its Problems</span></a></li></ul><div class="field field-name-field-template field-type-list-text field-label-hidden"><div class="field-items"><div class="field-item even">Main Header Image</div></div></div><div class="field field-name-field-featured-weight field-type-list-text field-label-hidden"><div class="field-items"><div class="field-item even">3</div></div></div><div class="field field-name-field-teaser field-type-text-long field-label-hidden"><div class="field-items"><div class="field-item even">&lt;p&gt;
I don’t understand how players and teams accept determining home-field advantage by teams elected by the fans in a popularity vote. With the starters voted in by the fans, some players elected by a survey of players, and other reserves selected by the manager, how can we expect the best of each team to be there?&lt;/p&gt;
</div></div></div><div class="field field-name-taxonomyextra field-type-taxonomy-term-reference field-label-above"><div class="field-label">Taxonomy upgrade extras:&nbsp;</div><div class="field-items"><div class="field-item even"><a href="/category/mlb-players/john-smoltz">John Smoltz</a></div><div class="field-item odd"><a href="/category/mlb-players/randy-johnson">Randy Johnson</a></div><div class="field-item even"><a href="/category/mlb-players/tony-la-russa">Tony La Russa</a></div><div class="field-item odd"><a href="/category/mlb-players/david-wright">David Wright</a></div><div class="field-item even"><a href="/category/mlb-players/yogi-berra">Yogi Berra</a></div><div class="field-item odd"><a href="/category/mlb-players/brandon-phillips">Brandon Phillips</a></div><div class="field-item even"><a href="/category/mlb-players/pablo-sandoval">Pablo Sandoval</a></div><div class="field-item odd"><a href="/category/mlb-players/tom-glavine">Tom Glavine</a></div><div class="field-item even"><a href="/category/mlb-players/greg-maddux">Greg Maddux</a></div><div class="field-item odd"><a href="/category/section/mlb">MLB</a></div></div></div><div class="field field-name-field-featured-racing-hub field-type-list-boolean field-label-hidden"><div class="field-items"><div class="field-item even">0</div></div></div><div class="field field-name-body field-type-text-with-summary field-label-hidden"><div class="field-items"><div class="field-item even"> <p>
This is the 11th season that the All-Star Game has “counted.” If you recall, way back in 2001, both teams ran out of pitchers and the game ended in a tie after 11 exciting innings, leaving fans at the stadium and TV viewers disappointed, to put it mildly.</p>
<p>
So, in all his wisdom, Commissioner Bud Selig — along with TV executives — led efforts to bring some meaning back to the All-Star Game. The result is that the All-Star Game determines home-field advantage for the World Series.</p></div></div></div> </div>
<div class="clearfix">
<nav class="links node-links clearfix"><ul class="links inline"><li class="node-readmore first last"><a href="/mlb/2012-mlb-all-star-game-fixing-its-problems" rel="tag" title="2012 MLB All-Star Game: Fixing its Problems">Read more<span class="element-invisible"> about 2012 MLB All-Star Game: Fixing its Problems</span></a></li></ul></nav>
</div>
</article>



</div>
<div id="node-8018" class="node node-news node-promoted node-teaser clearfix">
<article class="node node-news node-promoted node-teaser node-published node-not-sticky author-charlie-miller odd clearfix" id="node-news-8018">


<header>
<h2 class="node-title"><a href="/mlb/seattle-mariners-mt-rushmore" title="Seattle Mariners Mt. Rushmore">Seattle Mariners Mt. Rushmore</a></h2>
</header>
<div class="content clearfix">
<div class="field field-name-field-subtitle field-type-text field-label-hidden"><div class="field-items"><div class="field-item even">Clear choices for Seattle foursome</div></div></div><ul class="links inline"><li class="node-readmore first last"><a href="/mlb/seattle-mariners-mt-rushmore" rel="tag" title="Seattle Mariners Mt. Rushmore">Read more<span class="element-invisible"> about Seattle Mariners Mt. Rushmore</span></a></li></ul><div class="field field-name-field-template field-type-list-text field-label-hidden"><div class="field-items"><div class="field-item even">Two Left Sidebar Images</div></div></div><div class="field field-name-field-featured-weight field-type-list-text field-label-hidden"><div class="field-items"><div class="field-item even">3</div></div></div><div class="field field-name-field-teaser field-type-text-long field-label-hidden"><div class="field-items"><div class="field-item even">&lt;p&gt;
The latest in the series of MLB teams&#039; Mt. Rushmores, the Seattle foursome is the easiest selection of all teams. Should they be carved from Mt. Rainier?&lt;/p&gt;
</div></div></div><div class="field field-name-taxonomyextra field-type-taxonomy-term-reference field-label-above"><div class="field-label">Taxonomy upgrade extras:&nbsp;</div><div class="field-items"><div class="field-item even"><a href="/category/mlb-players/ken-griffey">Ken Griffey</a></div><div class="field-item odd"><a href="/category/mlb-teams/seattle-mariners">Seattle Mariners</a></div><div class="field-item even"><a href="/category/miscellaneous/mt-rushmore">Mt. Rushmore</a></div><div class="field-item odd"><a href="/category/mlb-players/randy-johnson">Randy Johnson</a></div><div class="field-item even"><a href="/category/mlb-players/big-unit">Big Unit</a></div><div class="field-item odd"><a href="/category/mlb-players/ichiro-suzuki">Ichiro Suzuki</a></div><div class="field-item even"><a href="/category/mlb-players/edgar-martinez">Edgar Martinez</a></div><div class="field-item odd"><a href="/category/miscellaneous/moeller-high-school">Moeller High School</a></div><div class="field-item even"><a href="/category/mlb-divisions/mlb">MLB</a></div><div class="field-item odd"><a href="/category/mlb-players/felix-hernandez">Felix Hernandez</a></div></div></div><div class="field field-name-field-featured-racing-hub field-type-list-boolean field-label-hidden"><div class="field-items"><div class="field-item even">0</div></div></div><div class="field field-name-body field-type-text-with-summary field-label-hidden"><div class="field-items"><div class="field-item even"> <p><span style="font-family:arial,helvetica,sans-serif;"><strong><span style="color:#b22222;"><span style="font-size: 22px;">MLB Mt. Rushmores</span></span></strong></span></p><p><span style="font-family:arial,helvetica,sans-serif;"><span style="font-size:14px;"><em>by Charlie Miller</em></span></span></p></div></div></div> </div>
<div class="clearfix">
<nav class="links node-links clearfix"><ul class="links inline"><li class="node-readmore first last"><a href="/mlb/seattle-mariners-mt-rushmore" rel="tag" title="Seattle Mariners Mt. Rushmore">Read more<span class="element-invisible"> about Seattle Mariners Mt. Rushmore</span></a></li></ul></nav>
</div>
</article>



</div>
<div id="node-5942" class="node node-news node-promoted node-teaser clearfix">
<article class="node node-news node-promoted node-teaser node-published node-not-sticky author-charlie-miller even clearfix" id="node-news-5942">


<header>
<h2 class="node-title"><a href="/mlb/arizona-diamondbacks-mt-rushmore" title="Arizona Diamondbacks Mt. Rushmore">Arizona Diamondbacks Mt. Rushmore</a></h2>
</header>
<div class="content clearfix">
<div class="field field-name-field-subtitle field-type-text field-label-hidden"><div class="field-items"><div class="field-item even">Gonzo and the Big Unit are honored here. But who are the other two players on Arizona&#039;s Mt. Rushmore?</div></div></div><ul class="links inline"><li class="node-readmore first last"><a href="/mlb/arizona-diamondbacks-mt-rushmore" rel="tag" title="Arizona Diamondbacks Mt. Rushmore">Read more<span class="element-invisible"> about Arizona Diamondbacks Mt. Rushmore</span></a></li></ul><div class="field field-name-field-template field-type-list-text field-label-hidden"><div class="field-items"><div class="field-item even">One left &amp; One Right Image</div></div></div><div class="field field-name-field-featured-weight field-type-list-text field-label-hidden"><div class="field-items"><div class="field-item even">3</div></div></div><div class="field field-name-field-teaser field-type-text-long field-label-hidden"><div class="field-items"><div class="field-item even">&lt;p&gt;
I am continuing the series of MLB Mt. Rushmores. The question was posed earlier this season whether Derek Jeter should be considered as part of the Yankees’ Mt. Rushmore. That certainly piqued my interest. Not really the Jeter-Yankees part, but the idea that all MLB teams should have their own Mt. Rushmores. Who are the four individuals that have risen above all others for each organization? The question sounds simple. But it isn&#039;t as easy as it sounds. Let the arguments begin.&lt;/p&gt;
</div></div></div><div class="field field-name-taxonomyextra field-type-taxonomy-term-reference field-label-above"><div class="field-label">Taxonomy upgrade extras:&nbsp;</div><div class="field-items"><div class="field-item even"><a href="/category/mlb-league/national-league">National League</a></div><div class="field-item odd"><a href="/category/mlb-teams/arizona-diamondbacks">Arizona Diamondbacks</a></div><div class="field-item even"><a href="/category/mlb-divisions/nl-west">NL West</a></div><div class="field-item odd"><a href="/category/miscellaneous/mt-rushmore">Mt. Rushmore</a></div><div class="field-item even"><a href="/category/mlb-players/randy-johnson">Randy Johnson</a></div><div class="field-item odd"><a href="/category/mlb-players/luis-gonzalez">Luis Gonzalez</a></div><div class="field-item even"><a href="/category/mlb-players/big-unit">Big Unit</a></div><div class="field-item odd"><a href="/category/mlb-players/paul-goldschmidt">Paul Goldschmidt</a></div><div class="field-item even"><a href="/category/mlb-players/gonzo">Gonzo</a></div><div class="field-item odd"><a href="/category/mlb-players/jay-bell">Jay Bell</a></div><div class="field-item even"><a href="/category/mlb-players/steve-finley">Steve Finley</a></div><div class="field-item odd"><a href="/category/mlb-players/brandon-webb">Brandon Webb</a></div><div class="field-item even"><a href="/category/mlb-players/justin-upton">Justin Upton</a></div><div class="field-item odd"><a href="/category/mlb-players/stephen-drew">Stephen Drew</a></div><div class="field-item even"><a href="/category/mlb-players/curt-schilling">Curt Schilling</a></div><div class="field-item odd"><a href="/category/mlb-players/chris-young">Chris Young</a></div><div class="field-item even"><a href="/category/mlb-divisions/mlb">MLB</a></div></div></div><div class="field field-name-field-featured-racing-hub field-type-list-boolean field-label-hidden"><div class="field-items"><div class="field-item even">0</div></div></div><div class="field field-name-body field-type-text-with-summary field-label-hidden"><div class="field-items"><div class="field-item even"> <p><span style="font-family:arial,helvetica,sans-serif;"><strong><span style="color:#b22222;"><span style="font-size: 22px;">MLB Mt. Rushmores</span></span></strong></span></p><p><span style="font-family:arial,helvetica,sans-serif;"><span style="font-size:14px;"><em>by Charlie Miller</em></span></span></p></div></div></div> </div>
<div class="clearfix">
<nav class="links node-links clearfix"><ul class="links inline"><li class="node-readmore first last"><a href="/mlb/arizona-diamondbacks-mt-rushmore" rel="tag" title="Arizona Diamondbacks Mt. Rushmore">Read more<span class="element-invisible"> about Arizona Diamondbacks Mt. Rushmore</span></a></li></ul></nav>

</div>
</article>



</div>
<h2 class="element-invisible">Pages</h2><div class="item-list"><ul class="pager clearfix"><li class="pager-current first">1</li><li class="pager-item"><a title="Go to page 2" href="/category/mlb-players/randy-johnson/0/feed?page=1">2</a></li><li class="pager-next"><a title="Go to next page" href="/category/mlb-players/randy-johnson/0/feed?page=1">next ›</a></li><li class="pager-last last"><a title="Go to last page" href="/category/mlb-players/randy-johnson/0/feed?page=1">last »</a></li></ul></div> </div>
</div>
<aside class="grid-7 region region-sidebar-second" id="region-sidebar-second">
<div class="region-inner region-sidebar-second-inner">
<div class="block block-dfp block-boxflex-art-atf-right block-dfp-boxflex-art-atf-right odd block-without-title" id="block-dfp-boxflex-art-atf-right">
<div class="block-inner clearfix">
<div class="content clearfix">
<div id="dfp-ad-boxflex_art_atf_right_11623877974-wrapper" class="dfp-tag-wrapper"><div id="dfp-ad-boxflex_art_atf_right_11623877974" class="dfp-tag-wrapper">
</div>
</div> </div>
</div>
</div><div class="block block-amg-newsletter block-default-newsletter block-amg-newsletter-default-newsletter even block-without-title" id="block-amg-newsletter-default-newsletter">
<div class="block-inner clearfix">
<div class="content clearfix">
<div class="email-signup-wrapper"></div> </div>
</div>
</div><div class="block block-whatreading block-whatreading-whatreading odd block-without-title" id="block-whatreading-whatreading">
<div class="block-inner clearfix">
<div class="content clearfix">
<h3 class="whatreading-title">What We're Reading</h3>
<div class="whatreading-wrapper">
<ul>
</ul>
</div> </div>
</div>
</div><div class="block block-dfp block-boxflex-art-btf-right-float block-dfp-boxflex-art-btf-right-float even block-without-title" id="block-dfp-boxflex-art-btf-right-float">
<div class="block-inner clearfix">
<div class="content clearfix">
<div id="dfp-ad-boxflex_art_btf_right_float_11623877974-wrapper" class="dfp-tag-wrapper"><div id="dfp-ad-boxflex_art_btf_right_float_11623877974" class="dfp-tag-wrapper">
</div>
</div> </div>
</div>
</div> </div>
</aside> </div>
</div></section>
<footer id="section-footer" class="section section-footer">
<div id="zone-footer-wrapper" class="zone-wrapper zone-footer-wrapper clearfix">
<div id="zone-footer" class="zone zone-footer clearfix container-24">
<div class="grid-24 region region-footer-second" id="region-footer-second">
<div class="region-inner region-footer-second-inner">
<div class="block block-block block-44 block-block-44 odd block-without-title" id="block-block-44">
<div class="block-inner clearfix">
<div class="content clearfix">
<span class="ad-link-footer"><a class="ad-link-footer--item" href="/cdn-cgi/l/email-protection#6e060b021e2e0f1a060201001d1e011c1a1d400d0103">Support</a> | <a class="ad-link-footer--item" href="http://www.athlonmediagroup.com/contact/" rel="nofollow" target="_blank">Contact Us</a> | <a class="ad-link-footer--item" href="https://ath-clients.s3.amazonaws.com/athlon/media-kit/21_AMGSports_MediaKit.pdf" rel="nofollow" target="_blank">Media Kit</a> | <a class="ad-link-footer--item" href="/cdn-cgi/l/email-protection#92f0e7f5e1d2f3e6fafefdfce1e2fde0e6e1bcf1fdff">Report a Bug</a> | <a class="ad-link-footer--item" href="/cdn-cgi/l/email-protection#c2a7a6abb6adb0b182a3b6aaaeadacb1b2adb0b6b1eca1adaf"> Corrections</a> | <a class="amgmanageconsent ad-link-footer--item" target="_blank">Update Consent</a> | <a class="ad-link-footer--item" href="http://athlonsports.com/feed/all/rss" target="_blank">RSS</a><br /><span class="ad-link-footer--item footer-legal"><br>Your use of this website constitutes and manifests your acceptance of our <a href="https://policies.athlonsports.com/user-agreement/">User Agreement</a>, <a href="https://policies.athlonsports.com/privacy-policy/">Privacy Policy</a>, <a href="https://policies.athlonsports.com/cookie-policy/">Cookie Notification</a>, and awareness of the <a href="https://policies.athlonsports.com/privacy-policy/#cpr">California Privacy Rights</a>. Pursuant to U.S. Copyright law, as well as other applicable federal and state laws, the content on this website may not be reproduced, distributed, displayed, transmitted, cached, or otherwise used, without the prior, express, and written permission of Athlon Media Group. <a href="https://policies.athlonsports.com/privacy-policy/#thirdparty">Ad Choices</a>.</span><br /><br /><a class="ad-link-footer--item" href="https://athlonsports.com/college-football">College Football</a> | <a class="ad-link-footer--item" href="https://athlonsports.com/nfl">NFL</a> | <a class="ad-link-footer--item" href="https://parade.com/tailgating/">Tailgate Food</a> | <a class="ad-link-footer--item" href="https://parade.com/1015984/jessicasager/tokyo-summer-olympics/">2021 Olympics</a></span> </div>
</div>
</div> </div>
</div> </div>
</div></footer> </div>
<script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script type="text/javascript" src="https://athlonsports.com/sites/all/modules/athlon/athlon_meganav/js/athlon_meganav.js?qus8qd"></script>
<script type="text/javascript" src="https://athlonsports.com/sites/all/modules/athlon/analytics/js/analytics_pageview.js?qus8qd" data-cfasync="false"></script>
<script type="text/javascript" src="https://athlonsports.com/sites/all/modules/athlon/analytics/js/analytics_events.js?qus8qd" data-cfasync="false"></script>
<script type="text/javascript" src="https://edge.quantserve.com/quant.js"></script>
<div class="merck-footer" style="background-color: #000;text-align: center; padding: 20px 0;">
<span style="position: relative; color:#fff;font-size:12px;text-align:center;display:block;">advertisement</span>
<a href="https://amglifestylestore.com/p-2240-athlon-sports-subscription-bundle.aspx" style="position: relative;">
<img src="https://s3.amazonaws.com/i.athcdn.com/assets/images/ads/athlon-subs-ad-300x250.jpg" border="0" />
</a>
</div>



</body>
</html>
