<!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 - Mark Ingram" href="https://athlonsports.com/category/nfl-players/mark-ingram/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/nfl-players/mark-ingram/0/feed" />
<link rel="shortlink" href="https://athlonsports.com/taxonomy/term/851/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/nfl-players/mark-ingram/0/feed" />
<meta property="og:title" content="Mark Ingram" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@AthlonSports" />
<meta name="twitter:url" content="https://athlonsports.com/category/nfl-players/mark-ingram/0/feed" />
<meta name="twitter:title" content="Mark Ingram" />
<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>Mark Ingram | 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?qv8wqd"></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?qv8wqd" data-cfasync="false"></script>
<script type="text/javascript" src="https://athlonsports.com/sites/all/modules/athlon/amg_dfp_extensions/js/adManager.js?qv8wqd"></script>
<script type="text/javascript" src="https://athlonsports.com/sites/all/themes/omega/omega/js/jquery.formalize.js?qv8wqd"></script>
<script type="text/javascript" src="https://athlonsports.com/sites/all/themes/omega/omega/js/omega-mediaqueries.js?qv8wqd"></script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
jQuery.extend(Drupal.settings, {"basePath":"\/","pathPrefix":"","ajaxPageState":{"theme":"asomega","theme_token":"rMaC4sTwNJLzRFwLa6HxiJx45-ibsQ2wT1vM4mXcFE8","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_11624685648":"dfp_slots[\u0022adhesion_bottom_11624685648\u0022] = function() { return googletag.defineOutOfPageSlot(\u0022\/1065729\/Adhesion_Bottom\u0022, \u0022dfp-ad-adhesion_bottom_11624685648\u0022).addService(googletag.pubads()); }","backgroundslot_11624685648":"dfp_slots[\u0022backgroundslot_11624685648\u0022] = function() { return googletag.defineOutOfPageSlot(\u0022\/1065729\/BackgroundSlot\u0022, \u0022dfp-ad-backgroundslot_11624685648\u0022).setTargeting(\u0022pos\u0022, \u0022wallpaper\u0022).setTargeting(\u0022loc\u0022, \u0022background\u0022).addService(googletag.pubads()); }","rect_atf_center_11624685648":"dfp_slots[\u0022rect_atf_center_11624685648\u0022] = function() { return googletag.defineSlot(\u0022\/1065729\/Rect_ATF_Center\u0022, [[728, 90], [970, 90], [970, 250], [320, 50]], \u0022dfp-ad-rect_atf_center_11624685648\u0022).set(\u0022adsense_ad_types\u0022, \u0022image\u0022).addService(googletag.pubads()); }","boxflex_art_atf_right_11624685648":"dfp_slots[\u0022boxflex_art_atf_right_11624685648\u0022] = function() { return googletag.defineSlot(\u0022\/1065729\/BoxFlex_ART_ATF_RIGHT\u0022, [[300, 1050], [300, 600], [300, 250]], \u0022dfp-ad-boxflex_art_atf_right_11624685648\u0022).set(\u0022adsense_ad_types\u0022, \u0022image\u0022).addService(googletag.pubads()); }","boxflex_art_btf_right_float_11624685648":"dfp_slots[\u0022boxflex_art_btf_right_float_11624685648\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_11624685648\u0022).set(\u0022adsense_ad_types\u0022, \u0022image\u0022).addService(googletag.pubads()); }"},"slotLookup":{"adhesion_bottom_11624685648":"adhesion_bottom","backgroundslot_11624685648":"backgroundslot","rect_atf_center_11624685648":"rect_atf_center","boxflex_art_atf_right_11624685648":"boxflex_art_atf_right","boxflex_art_btf_right_float_11624685648":"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":"11624685648","wrapper_id":"dfp-ad-backgroundslot_11624685648-wrapper","placeholder_id":"dfp-ad-backgroundslot_11624685648"},"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\/851\/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?qv8wqd\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?qv8wqd\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?qv8wqd\u0022 media=\u0022all and (min-width: 1220px)\u0022 \/\u003E\n"},"urlIsAjaxTrusted":{"\/taxonomy\/term\/851\/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-851 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_11624685648-wrapper" class="dfp-tag-wrapper"><div id="dfp-ad-adhesion_bottom_11624685648" class="dfp-tag-wrapper adhesion_bottom">
</div>
</div><div id="dfp-ad-backgroundslot_11624685648-wrapper" class="dfp-tag-wrapper element-hidden"><div id="dfp-ad-backgroundslot_11624685648" 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-d9f284cb9a7997f03e4be81903691115">
<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/college-football-top-130-team-rankings-2021"><img src="/sites/athlonsports.com/files/styles/meganav_rect/public/NickSaban_2019_1_13.jpg?itok=BJaLFXeV" alt="College Football Top 130 Team Rankings 2021" title="College Football Top 130 Team Rankings 2021" /></a></div> </div>
<div> <span><a href="/college-football/college-football-top-130-team-rankings-2021">College Football Top 130 Team Rankings for 2021</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/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-3 views-row-odd views-row-last">
<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>
</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-2dbe2cdd8d1669706bbd6f11a50bf547">
<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-9ac624bebc5c49609f96333c3417957b">
<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-bdc823a1b1bf1fa41ba9afe68bf39fa8">
<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/851/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-6d_WUNFO4Nz6Rqb1EOjVaS0m732D7MwOwvT7xCwI-10" />
<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/851/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-6d_WUNFO4Nz6Rqb1EOjVaS0m732D7MwOwvT7xCwI-10" />
<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/851/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-6d_WUNFO4Nz6Rqb1EOjVaS0m732D7MwOwvT7xCwI-10" />
<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_11624685648-wrapper" class="dfp-tag-wrapper"><div id="dfp-ad-rect_atf_center_11624685648" 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">Mark Ingram</h1>
</div>
<div class="term-listing-heading"><div id="taxonomy-term-851" class="taxonomy-term vocabulary-vocabulary-54">
<div class="content">
</div>
</div>
</div>
<div id="node-123841" class="node node-news node-teaser clearfix">
<article class="node node-news node-teaser node-published node-not-promoted node-not-sticky author-jake-rose odd clearfix" id="node-news-123841">


<header>
<h2 class="node-title"><a href="/nfl/cleveland-browns-vs-baltimore-ravens-prediction-picks-2020" title="Cleveland Browns vs. Baltimore Ravens Prediction and Preview">Cleveland Browns vs. Baltimore Ravens Prediction and Preview</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">The reigning MVP &amp; Co. welcome the Browns to Baltimore for season-opening AFC North showdown</div></div></div><ul class="links inline"><li class="node-readmore first last"><a href="/nfl/cleveland-browns-vs-baltimore-ravens-prediction-picks-2020" rel="tag" title="Cleveland Browns vs. Baltimore Ravens Prediction and Preview">Read more<span class="element-invisible"> about Cleveland Browns vs. Baltimore Ravens Prediction and Preview</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">Cleveland Browns vs. Baltimore Ravens Prediction and Preview</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="/nfl/nfl-week-1-picks-predictions-2020">NFL Predictions: Week 1 Picks for Every Game</a></div><div class="field-item odd"><a href="/nfl/nfl-picks-against-spread-ats-week-1-2020">NFL Picks Against the Spread (ATS) for Week 1</a></div><div class="field-item even"><a href="/nfl/miami-dolphins-vs-new-england-patriots-prediction-picks-2020">Miami Dolphins vs. New England Patriots Prediction and Preview</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>Expectations abound for the <a href="https://athlonsports.com/nfl/teams/cleveland-browns" target="_blank"><strong>Cleveland Browns</strong></a> and the <a href="https://athlonsports.com/nfl/teams/baltimore-ravens" target="_blank"><strong>Baltimore Ravens</strong></a> in the 2020 <a href="http://athlonsports.com/nfl" target="_blank"><strong>NFL</strong></a> season. The Ravens are thinking Super Bowl or bust, but the Browns are just trying to make the playoffs, something they haven't done since <em>Everybody Loves Raymond</em> and <em>The West Wing</em> were winning Emmys (2002).</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="/nfl/cleveland-browns-vs-baltimore-ravens-prediction-picks-2020" rel="tag" title="Cleveland Browns vs. Baltimore Ravens Prediction and Preview">Read more<span class="element-invisible"> about Cleveland Browns vs. Baltimore Ravens Prediction and Preview</span></a></li></ul></nav>
</div>
</article>



</div>
<div id="node-113037" class="node node-news node-teaser clearfix">
<article class="node node-news node-teaser node-published node-not-promoted node-not-sticky author-athlon-sports even clearfix" id="node-news-113037">


<header>
<h2 class="node-title"><a href="/New-Orleans-Saints-fantasy-football-team-names" title="New Orleans Saints Fantasy Football Team Names (2020)">New Orleans Saints Fantasy Football Team Names (2020)</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">The best, most clever and funny fantasy team names for New Orleans Saints fans</div></div></div><ul class="links inline"><li class="node-readmore first last"><a href="/New-Orleans-Saints-fantasy-football-team-names" rel="tag" title="New Orleans Saints Fantasy Football Team Names (2020)">Read more<span class="element-invisible"> about New Orleans Saints Fantasy Football Team Names (2020)</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">New Orleans Saints Fantasy Football Team Names (2020)</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="/fantasy-football-league-names">100 Funny Fantasy Football League Names</a></div><div class="field-item odd"><a href="/125-funny-fantasy-football-team-names-new">125 Funny Fantasy Football Team Names (2021)</a></div><div class="field-item even"><a href="/fantasy/5-fantasy-football-team-name-generators-you-should-try">4 Fantasy Football Team Name Generators You Should Try</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>What are the best fantasy football team names for New Orleans Saints fans? Look no further. Whether you're looking for great, funny, clever, old, new or stupid fantasy football team names to match your favorite team — the New Orleans Saints — we've got it right here.</p>
<p> </p>
<p>The best fantasy football team names are often created by looking at the team's top players. For the Saints, that's quarterback Drew Brees, running back Alvin Kamara, and tight end Jared Cook. Brees also has a new backup in former Buccaneers starter Jameis Winston.</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="/New-Orleans-Saints-fantasy-football-team-names" rel="tag" title="New Orleans Saints Fantasy Football Team Names (2020)">Read more<span class="element-invisible"> about New Orleans Saints Fantasy Football Team Names (2020)</span></a></li></ul></nav>
</div>
</article>



</div>
<div id="node-121946" class="node node-news node-teaser clearfix">
<article class="node node-news node-teaser node-published node-not-promoted node-not-sticky author-rob-mcvey odd clearfix" id="node-news-121946">


<header>
<h2 class="node-title"><a href="/nfl/thursday-night-football-new-york-jets-vs-baltimore-ravens-prediction-picks-2019" title="Thursday Night Football: New York Jets vs. Baltimore Ravens Prediction and Preview">Thursday Night Football: New York Jets vs. Baltimore Ravens Prediction and Preview</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">AFC-leading Ravens aim for 10th straight win and a division title against the Jets on final TNF game of the season</div></div></div><ul class="links inline"><li class="node-readmore first last"><a href="/nfl/thursday-night-football-new-york-jets-vs-baltimore-ravens-prediction-picks-2019" rel="tag" title="Thursday Night Football: New York Jets vs. Baltimore Ravens Prediction and Preview">Read more<span class="element-invisible"> about Thursday Night Football: New York Jets vs. Baltimore Ravens Prediction and Preview</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">Thursday Night Football: New York Jets vs. Baltimore Ravens Prediction and Preview</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="/nfl-power-rankings">NFL Power Rankings: Post-Draft Edition</a></div><div class="field-item odd"><a href="/nfl-thursday-night-football-schedule-kickoff-tv-times-2016">NFL Thursday Night Football Schedule 2021</a></div><div class="field-item even"><a href="/nfl/ranking-all-31-nfl-stadiums-worst-best">Ranking All 30 NFL Stadiums, Worst to Best</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 <strong><a href="https://athlonsports.com/nfl/teams/baltimore-ravens" target="_blank">Baltimore Ravens</a></strong> are set to host the <strong><a href="https://athlonsports.com/nfl/teams/new-york-jets" target="_blank">New York Jets</a></strong> to kick off Week 15 in what will be the final installment of “<a href="https://athlonsports.com/nfl-thursday-night-football-schedule-kickoff-tv-times-2016" target="_blank">Thursday Night Football</a>” for the 2019 <a href="https://athlonsports.com/nfl" target="_blank">NFL</a> season.</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="/nfl/thursday-night-football-new-york-jets-vs-baltimore-ravens-prediction-picks-2019" rel="tag" title="Thursday Night Football: New York Jets vs. Baltimore Ravens Prediction and Preview">Read more<span class="element-invisible"> about Thursday Night Football: New York Jets vs. Baltimore Ravens Prediction and Preview</span></a></li></ul></nav>
</div>
</article>



</div>
<div id="node-119964" class="node node-news node-teaser clearfix">
<article class="node node-news node-teaser node-published node-not-promoted node-not-sticky author-athlon-sports even clearfix" id="node-news-119964">


<header>
<h2 class="node-title"><a href="/fantasy/mark-ingram-fantasy-outlook-2019" title="Mark Ingram: Fantasy Outlook 2019">Mark Ingram: Fantasy Outlook 2019</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">Projections for the season ahead</div></div></div><ul class="links inline"><li class="node-readmore first last"><a href="/fantasy/mark-ingram-fantasy-outlook-2019" rel="tag" title="Mark Ingram: Fantasy Outlook 2019">Read more<span class="element-invisible"> about Mark Ingram: Fantasy Outlook 2019</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-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="/baltimore-ravens-schedule">Baltimore Ravens Schedule 2021</a></div><div class="field-item odd"><a href="/125-funny-fantasy-football-team-names-new">125 Funny Fantasy Football Team Names (2021)</a></div><div class="field-item even"><a href="/nfl-sunday-night-football-schedule-2016-kickoff-tv-times">NFL Sunday Night Football Schedule 2021</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>As the 2019 fantasy football season nears, it's time to examine players who could make or break your fantasy team. Here's a look at Baltimore Ravens running back <strong>Mark Ingram</strong> and his fantasy outlook for the season ahead.  </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="/fantasy/mark-ingram-fantasy-outlook-2019" rel="tag" title="Mark Ingram: Fantasy Outlook 2019">Read more<span class="element-invisible"> about Mark Ingram: Fantasy Outlook 2019</span></a></li></ul></nav>
</div>
</article>



</div>
<div id="node-118256" class="node node-news node-teaser clearfix">
<article class="node node-news node-teaser node-published node-not-promoted node-not-sticky author-rob-mcvey odd clearfix" id="node-news-118256">


<header>
<h2 class="node-title"><a href="/nfl/thanksgiving-day-atlanta-falcons-vs-new-orleans-saints-prediction-picks-2018" title="Thanksgiving Day: Atlanta Falcons vs. New Orleans Saints Prediction and Preview">Thanksgiving Day: Atlanta Falcons vs. New Orleans Saints Prediction and Preview</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">The red-hot Saints host the Falcons for a primetime Thanksgiving rematch between division rivals</div></div></div><ul class="links inline"><li class="node-readmore first last"><a href="/nfl/thanksgiving-day-atlanta-falcons-vs-new-orleans-saints-prediction-picks-2018" rel="tag" title="Thanksgiving Day: Atlanta Falcons vs. New Orleans Saints Prediction and Preview">Read more<span class="element-invisible"> about Thanksgiving Day: Atlanta Falcons vs. New Orleans Saints Prediction and Preview</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">Thanksgiving Day: Atlanta Falcons vs. New Orleans Saints Prediction and Preview</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="/nfl/nfl-week-12-picks-predictions-2018">NFL Week 12 Picks for Every Game</a></div><div class="field-item odd"><a href="/thanksgiving-football-games-schedule-2018">Thanksgiving Football Game Schedules for NFL and College</a></div><div class="field-item even"><a href="/atlanta-falcons-schedule">Atlanta Falcons Schedule 2021</a></div><div class="field-item odd"><a href="/new-orleans-saints-schedule">New Orleans Saints Schedule 2021</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 New Orleans Saints needed overtime to fend off the Atlanta Falcons in a 43-37 shootout back in Week 3. But much has changed since Sept. 23, as the Saints get set to face the rival Falcons for the second time this season <a href="/thanksgiving-football-games-schedule-2018" target="_blank">Thanksgiving</a> night inside the Mercedes-Benz Superdome.</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="/nfl/thanksgiving-day-atlanta-falcons-vs-new-orleans-saints-prediction-picks-2018" rel="tag" title="Thanksgiving Day: Atlanta Falcons vs. New Orleans Saints Prediction and Preview">Read more<span class="element-invisible"> about Thanksgiving Day: Atlanta Falcons vs. New Orleans Saints Prediction and Preview</span></a></li></ul></nav>
</div>
</article>



</div>
<div id="node-112945" class="node node-news node-teaser clearfix">
<article class="node node-news node-teaser node-published node-not-promoted node-not-sticky author-john-la-fleur even clearfix" id="node-news-112945">


 <header>
<h2 class="node-title"><a href="/nfl/future-sean-payton-new-orleans-saints-two-opposing-views" title="The Future of Sean Payton with the New Orleans Saints: Two Opposing Views">The Future of Sean Payton with the New Orleans Saints: Two Opposing Views</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">A supporter of Payton and one of his detractors argue about what the Saints&#039; head coach has and has not accomplished </div></div></div><ul class="links inline"><li class="node-readmore first last"><a href="/nfl/future-sean-payton-new-orleans-saints-two-opposing-views" rel="tag" title="The Future of Sean Payton with the New Orleans Saints: Two Opposing Views">Read more<span class="element-invisible"> about The Future of Sean Payton with the New Orleans Saints: Two Opposing Views</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">The Future of Sean Payton with the Saints: Two Opposing Views</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="/nfl/new-orleans-saints-2017-team-preview-and-prediction">New Orleans Saints 2017 Team Preview and Prediction</a></div><div class="field-item odd"><a href="/nfl/athlon-sports-2017-nfl-division-picks-and-playoff-predictions">Athlon Sports&#039; 2017 NFL Division Picks and Playoff Predictions</a></div><div class="field-item even"><a href="/nfl/25-greatest-head-coaches-nfl-history">25 Greatest Head Coaches in NFL History</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><img alt="" src="/sites/athlonsports.com/files/shared/nfl/NFC%20South/Saints/SeanPayton_2016_325.jpg" style="width: 325px; height: 425px; margin: 6px; float: right;" />The 2017 season will be <strong>Sean Payton</strong>'s 12th as the head coach of the New Orleans Saints. Should his tenure extend beyond this season? The Court of Public Opinion, where everyone has his or her own views along with his or her own facts, will debate this issue.</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="/nfl/future-sean-payton-new-orleans-saints-two-opposing-views" rel="tag" title="The Future of Sean Payton with the New Orleans Saints: Two Opposing Views">Read more<span class="element-invisible"> about The Future of Sean Payton with the New Orleans Saints: Two Opposing Views</span></a></li></ul></nav>
</div>
</article>



</div>
<div id="node-107732" class="node node-news node-teaser clearfix">
<article class="node node-news node-teaser node-published node-not-promoted node-not-sticky author-michael-horvath odd clearfix" id="node-news-107732">


<header>
<h2 class="node-title"><a href="/fantasy/why-you-should-sit-matt-ryan-and-other-startsit-fantasy-advice-week-12" title="Why You Should Sit Matt Ryan and Other Start/Sit Fantasy Advice For Week 12">Why You Should Sit Matt Ryan and Other Start/Sit Fantasy Advice For Week 12</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">Which players will provide fantasy feasts and which will play the role of turkeys this weekend?</div></div></div><ul class="links inline"><li class="node-readmore first last"><a href="/fantasy/why-you-should-sit-matt-ryan-and-other-startsit-fantasy-advice-week-12" rel="tag" title="Why You Should Sit Matt Ryan and Other Start/Sit Fantasy Advice For Week 12">Read more<span class="element-invisible"> about Why You Should Sit Matt Ryan and Other Start/Sit Fantasy Advice For Week 12</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">Why You Should Sit Matt Ryan and Other Start/Sit Fantasy Advice For Week 12</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="/fantasy/fantasy-football-2015-quarterback-rankings-week-12">Fantasy Football 2015 Quarterback Rankings: Week 12</a></div><div class="field-item odd"><a href="/fantasy/fantasy-football-2015-flex-rankings-week-12">Fantasy Football 2015 Flex Rankings: Week 12</a></div><div class="field-item even"><a href="/fantasy/fantasy-football-2015-defensespecial-teams-rankings-week-12">Fantasy Football 2015 Defense/Special Teams Rankings: Week 12</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><img alt="" src="http://athlonsports.com/sites/athlonsports.com/files/shared/nfl/AFC%20West/Raiders/DerekCarr_2014_300.jpg" style="width: 300px; height: 392px; margin: 4px; float: right;" />Thanksgiving Day was just the appetizer for Week 12 NFL and <a href="/fantasy" target="_blank"><strong>fantasy</strong></a> action. For the first time since Week 3 all 32 teams are in action, which means we still have 13 games to go between Sunday and Monday.</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="/fantasy/why-you-should-sit-matt-ryan-and-other-startsit-fantasy-advice-week-12" rel="tag" title="Why You Should Sit Matt Ryan and Other Start/Sit Fantasy Advice For Week 12">Read more<span class="element-invisible"> about Why You Should Sit Matt Ryan and Other Start/Sit Fantasy Advice For Week 12</span></a></li></ul></nav>
</div>
</article>



</div>
<div id="node-107726" class="node node-news node-teaser clearfix">
<article class="node node-news node-teaser node-published node-not-promoted node-not-sticky author-michael-horvath even clearfix" id="node-news-107726">


<header>
<h2 class="node-title"><a href="/fantasy/why-you-should-start-eddie-lacy-other-startsit-fantasy-advice-week-12-thanksgiving-games" title="Why You Should Start Eddie Lacy and Other Start/Sit Fantasy Advice for the Week 12 Thanksgiving Games">Why You Should Start Eddie Lacy and Other Start/Sit Fantasy Advice for the Week 12 Thanksgiving Games</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">Who should you start and sit for the Thanksgiving games?</div></div></div><ul class="links inline"><li class="node-readmore first last"><a href="/fantasy/why-you-should-start-eddie-lacy-other-startsit-fantasy-advice-week-12-thanksgiving-games" rel="tag" title="Why You Should Start Eddie Lacy and Other Start/Sit Fantasy Advice for the Week 12 Thanksgiving Games">Read more<span class="element-invisible"> about Why You Should Start Eddie Lacy and Other Start/Sit Fantasy Advice for the Week 12 Thanksgiving Games</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">Why You Should Start Eddie Lacy and Other Start/Sit Fantasy Advice for the Week 12 Thanksgiving Games</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="/fantasy/fantasy-football-2015-quarterback-rankings-week-12">Fantasy Football 2015 Quarterback Rankings: Week 12</a></div><div class="field-item odd"><a href="/fantasy/fantasy-football-2015-running-back-rankings-week-12">Fantasy Football 2015 Running Back Rankings: Week 12</a></div><div class="field-item even"><a href="/fantasy/fantasy-football-2015-wide-receiver-rankings-week-12">Fantasy Football 2015 Wide Receiver Rankings: Week 12</a></div><div class="field-item odd"><a href="/fantasy/fantasy-football-2015-tight-end-rankings-week-12">Fantasy Football 2015 Tight End Rankings: Week 12</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><img alt="" src="http://athlonsports.com/sites/athlonsports.com/files/shared/nfl/NFC%20East/Cowboys/DezBryant_2014_300.jpg" style="width: 300px; height: 392px; margin: 4px; float: right;" />While there are plenty of things to be thankful for, one of them for football (and <a href="/fantasy" target="_blank"><strong>fantasy</strong></a>) fans is three games on Thanksgiving Day! And speaking of these three, oh-so-tasty matchups, what is a fantasy owner to do?</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="/fantasy/why-you-should-start-eddie-lacy-other-startsit-fantasy-advice-week-12-thanksgiving-games" rel="tag" title="Why You Should Start Eddie Lacy and Other Start/Sit Fantasy Advice for the Week 12 Thanksgiving Games">Read more<span class="element-invisible"> about Why You Should Start Eddie Lacy and Other Start/Sit Fantasy Advice for the Week 12 Thanksgiving Games</span></a></li></ul></nav>
</div>
</article>



</div>
<div id="node-107724" class="node node-news node-teaser clearfix">
<article class="node node-news node-teaser node-published node-not-promoted node-not-sticky author-michael-horvath odd clearfix" id="node-news-107724">


<header>
<h2 class="node-title"><a href="/fantasy/fantasy-football-2015-running-back-rankings-week-12" title="Fantasy Football 2015 Running Back Rankings: Week 12">Fantasy Football 2015 Running Back Rankings: Week 12</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">What does Matt Forte&#039;s return mean for the workload and fantasy value of Jeremy Langford?</div></div></div><ul class="links inline"><li class="node-readmore first last"><a href="/fantasy/fantasy-football-2015-running-back-rankings-week-12" rel="tag" title="Fantasy Football 2015 Running Back Rankings: Week 12">Read more<span class="element-invisible"> about Fantasy Football 2015 Running Back Rankings: Week 12</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">Fantasy Football 2015 Running Back Rankings: Week 12</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="/fantasy/fantasy-football-2015-quarterback-rankings-week-12">Fantasy Football 2015 Quarterback Rankings: Week 12</a></div><div class="field-item odd"><a href="/fantasy/fantasy-football-2015-defensespecial-teams-rankings-week-12">Fantasy Football 2015 Defense/Special Teams Rankings: Week 12</a></div><div class="field-item even"><a href="/fantasy/fantasy-football-2015-flex-rankings-week-12">Fantasy Football 2015 Flex Rankings: Week 12</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><img alt="" src="http://athlonsports.com/sites/athlonsports.com/files/shared/nfl/NFC%20South/DevontaFreeman_2015_300.jpg" style="width: 300px; height: 392px; margin: 4px; float: right;" />Is it just me or is the NFL and <a href="/fantasy" target="_blank"><strong>fantasy</strong></a> season flying by? Can you believe that it’s Thanksgiving already? The really good news is that since we are now in Week 12, every team has had their bye. So that means from here on out we have a full schedule of all 32 teams playing. Which also means we finally have true position rankings.</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="/fantasy/fantasy-football-2015-running-back-rankings-week-12" rel="tag" title="Fantasy Football 2015 Running Back Rankings: Week 12">Read more<span class="element-invisible"> about Fantasy Football 2015 Running Back Rankings: Week 12</span></a></li></ul></nav>
</div>
</article>



</div>
<div id="node-107428" class="node node-news node-teaser clearfix">
<article class="node node-news node-teaser node-published node-not-promoted node-not-sticky author-michael-horvath even clearfix" id="node-news-107428">


<header>
<h2 class="node-title"><a href="/fantasy/week-9-nfl-fantasy-all-stud-and-all-dud-teams" title="Week 9 NFL Fantasy All-Stud and All-Dud Teams">Week 9 NFL Fantasy All-Stud and All-Dud Teams</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">Were you lucky enough to grab DeAngelo Williams off the waiver wire last week? I sure hope so.</div></div></div><ul class="links inline"><li class="node-readmore first last"><a href="/fantasy/week-9-nfl-fantasy-all-stud-and-all-dud-teams" rel="tag" title="Week 9 NFL Fantasy All-Stud and All-Dud Teams">Read more<span class="element-invisible"> about Week 9 NFL Fantasy All-Stud and All-Dud Teams</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">Week 9 NFL Fantasy All-Stud and All-Dud Teams</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="/fantasy/bold-fantasy-predicitions-week-9-nfl">Bold Fantasy Predictions for Week 9 in the NFL</a></div><div class="field-item odd"><a href="/fantasy/week-8-nfl-fantasy-all-stud-all-dud-teams">Week 8 NFL Fantasy All-Stud and All-Dud Teams</a></div><div class="field-item even"><a href="/fantasy/week-7-nfl-fantasy-all-stud-all-dud-teams">Week 7 NFL Fantasy All-Stud and All-Dud 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><img alt="" src="http://athlonsports.com/sites/athlonsports.com/files/shared/nfl/AFC%20North/Steelers/AntonioBrown_2014_300.jpg" style="width: 300px; height: 392px; margin: 4px; float: right;" />What an interesting week we just witnessed in the NFL and <a href="/fantasy" target="_blank"><strong>fantasy</strong></a>! Who had the Falcons losing to the 49ers and who had Devonta Freeman only getting 12 yards on 12 carries? Thank goodness he caught a touchdown!</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="/fantasy/week-9-nfl-fantasy-all-stud-and-all-dud-teams" rel="tag" title="Week 9 NFL Fantasy All-Stud and All-Dud Teams">Read more<span class="element-invisible"> about Week 9 NFL Fantasy All-Stud and All-Dud Teams</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/nfl-players/mark-ingram/0/feed?page=1">2</a></li><li class="pager-item"><a title="Go to page 3" href="/category/nfl-players/mark-ingram/0/feed?page=2">3</a></li><li class="pager-next"><a title="Go to next page" href="/category/nfl-players/mark-ingram/0/feed?page=1">next ›</a></li><li class="pager-last last"><a title="Go to last page" href="/category/nfl-players/mark-ingram/0/feed?page=2">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_11624685648-wrapper" class="dfp-tag-wrapper"><div id="dfp-ad-boxflex_art_atf_right_11624685648" 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_11624685648-wrapper" class="dfp-tag-wrapper"><div id="dfp-ad-boxflex_art_btf_right_float_11624685648" 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#0f676a637f4f6e7b676360617c7f607d7b7c216c6062">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#5e3c2b392d1e3f2a363231302d2e312c2a2d703d3133">Report a Bug</a> | <a class="ad-link-footer--item" href="/cdn-cgi/l/email-protection#89ecede0fde6fbfac9e8fde1e5e6e7faf9e6fbfdfaa7eae6e4"> 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?qv8wqd"></script>
<script type="text/javascript" src="https://athlonsports.com/sites/all/modules/athlon/analytics/js/analytics_pageview.js?qv8wqd" data-cfasync="false"></script>
<script type="text/javascript" src="https://athlonsports.com/sites/all/modules/athlon/analytics/js/analytics_events.js?qv8wqd" 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>
