<!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']);
                }
            }
        };
    };
}
</script>

<script type="text/javascript" async=true>
    window.__cmp = (function () {
        return typeof (__cmp) == "function" ? __cmp : function (c) {
            var b = arguments;
            if (!b.length) {
                return __cmp.a;
            }
            else if (c == '__cmp')
                return false;
            else {
                if (typeof __cmp.a === 'undefined') {
                    __cmp.a = [];
                }
                __cmp.a.push([].slice.apply(b));
            }
        }
    })();

    window.ConsentAdapter = (function(_adapterConfig) {
        var Adapter = {
            consentStatus: false, // true means consents have been retrieved
            userRequiresConsent: null,
            purposeConsents: {},
            vendorConsents: {},
            publisherConsents: {},
            init: function() {
                var elem = document.createElement('script');

                elem.src = _adapterConfig.cmpUri;
                elem.async = true;
                elem.type = "text/javascript";
                var scpt = document.getElementsByTagName('script')[0];
                scpt.parentNode.insertBefore(elem, scpt);

                window.__cmp('init', _adapterConfig.initSettings);
            },
            loadPreExistingConsent: function () {
                return false;
            },
            checksCountry: function() {
                return true;
            },
            consentsRetrieved : function () {
                return this.consentStatus;
            },
            retrieveConsents: function (callback, cancelRetrievalTimeout) {
                if (typeof cancelRetrievalTimeout !== 'function') {
                    cancelRetrievalTimeout = function() {};
                }

                // when __cmp is loaded, or as soon as it loads, tell the consent manager that it shouldn't timeout
                window.__cmp('ping', null, cancelRetrievalTimeout);

                /*
                 * The adapter will either return immediately (consent cookie) or go through the
                 * consent management UI flow. When the user exits the UI, an event is fired letting
                 * us know consents are done being managed.
                 *
                 * @note this is a quantcast specific callback, and not IAB specific.
                 */
                window.__cmp('setConsentUiCallback', function() {
                    // getConsentData will make sure all consent info is properly loaded
                    // and will get needed user input before completing.
                    window.__cmp('getConsentData', '1.0', this.refreshConsents.bind(this, callback));
                }.bind(this));
            },
            refreshConsents: function(callback) {
                var publisherRefresh = function(publisherResult, success) {
                    if (success === true && publisherResult.standardPurposeConsents) {
                        this.publisherConsents = publisherResult.standardPurposeConsents;
                    }

                    if (typeof callback === 'function') {
                        callback();
                    }
                };

                // getVenderConsents will immediately return with parsed consent
                // info, so we can't use it until getConsentData is complete
                window.__cmp('getVendorConsents', null, function(result, success) {
                    this.consentStatus = true;
                    this.userRequiresConsent = result.gdprApplies;
                    this.purposeConsents = result.purposeConsents;
                    this.vendorConsents = result.vendorConsents;
                    window.__cmp('getPublisherConsents', null, publisherRefresh.bind(this));
                }.bind(this));

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

                return (this.purposeConsents.hasOwnProperty(purpose)) ? this.purposeConsents[purpose] : defaultConsent;
            },
            getConsentForVendor: function (vendorId, defaultConsent) {
                if (!this.consentsRetrieved()) {
                    return defaultConsent;
                }

                return (this.vendorConsents.hasOwnProperty(vendorId)) ? this.vendorConsents[vendorId] : defaultConsent;
            },
            getConsentForPublisher: function(purpose, defaultConsent) {
                if (!this.consentsRetrieved()) {
                    return defaultConsent;
                }

                return (this.publisherConsents.hasOwnProperty(purpose)) ? this.publisherConsents[purpose] : defaultConsent;
            },
            manageConsents: function(callback) {
                window.__cmp('displayConsentUi');
                // @todo refresh when consent change is detected, can't currently detect this
            }
        };

        Adapter.init();

        return Adapter;
    })({"cmpUri":"https:\/\/quantcast.mgr.consensu.org\/cmp.js","recheckTime":200,"initSettings":{"Display UI":"inEU","Min Days Between UI Displays":1,"Publisher Name":"Athlon Sports","Publisher Logo":"https:\/\/ath-clients.s3.amazonaws.com\/athlon\/logo\/asl.png","Publisher Vendor List URL":"https:\/\/athlonsports.com\/.well-known\/pubvendors.json","Publisher Purpose IDs":[1,2,3,4,5],"Initial Screen Title Text":"We value your privacy","Initial Screen Body Text":"Athlon Sports and our partners use technology such as cookies on our site to personalize content and ads, provide social media features, and analyze our traffic. Click below to consent to the use of this technology by Athlon Sports and these 3rd parties across the web. You can change your mind and revisit your consent choices at anytime by returning to this site.","Initial Screen Reject Button Text":"I Do Not Accept","Initial Screen Accept Button Text":"I Accept","Initial Screen Purpose Link Text":"Show Purposes","Purpose Screen Header Title Text":"Manage Preferences","Purpose Screen Title Text":"Purposes For Which We Use Your Data","Purpose Screen Body Text":"Athlon Sports and our partners use technology such as cookies on our site to personalize content and ads, provide social media features, and analyze our traffic. You can toggle on or off your consent preference based on purpose for all companies listed under each purpose to the use of this technology across the web. You can change your mind and revisit your consent choices at anytime by returning to this site.","Purpose Screen Enable All Button Text":"Enable all purposes","Purpose Screen Vendor Link Text":"See full vendor list","Purpose Screen Cancel Button Text":"Cancel","Purpose Screen Save and Exit Button Text":"Save & Exit","Vendor Screen Title Text":"We value your privacy","Vendor Screen Body Text":"Athlon Sports and our partners use technology such as cookies on our site to personalize content and ads, provide social media features, and analyze our traffic. You can toggle on or off your consent preference for each company to the use of this technology across the web. You can change your mind and revisit your consent choices at anytime by returning to this site.","Vendor Screen Reject All Button Text":"Reject All","Vendor Screen Accept All Button Text":"Accept All","Vendor Screen Purposes Link Text":"Back to purposes","Vendor Screen Cancel Button Text":"Cancel","Vendor Screen Save and Exit Button Text":"Save & Exit"}});
</script>

<script>
    var ConsentManager = window.ConsentManager || {};
    var consentParams = {"adapterName":"quantcast","usePurposeMap":true,"purposeMap":{"storage":1,"personalization":2,"ad_selection":3,"content_selection":4,"measurement":5},"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"};

    (function (_consentSettings, _adapter) {
        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"
            },

            initDone: false,
            consentEventSent: 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.checkPurposeConsent.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.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 || window.location.search.toLowerCase().includes(this.settings.debugQueryString)) {
                    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;
                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;

                // 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"
                    );
                    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() {
                    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));

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

                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);
</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 - North Carolina" href="https://athlonsports.com/category/cfb-players/north-carolina/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/cfb-players/north-carolina/0/feed" />
<link rel="shortlink" href="https://athlonsports.com/taxonomy/term/697/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/cfb-players/north-carolina/0/feed" />
<meta property="og:title" content="North Carolina" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@AthlonSports" />
<meta name="twitter:url" content="https://athlonsports.com/category/cfb-players/north-carolina/0/feed" />
<meta name="twitter:title" content="North Carolina" />
<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>North Carolina | 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__w2I9Qq6Uxxf-cY_v77voOpAv4z8WV-0EDawOH0T4YH8__zH9UlcVsgHC5Zby28cFMIaraEo32AxQ33XOtcLOksw0__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.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?pt2u2d"></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?pt2u2d" data-cfasync="false"></script>
<script type="text/javascript" src="https://athlonsports.com/sites/all/modules/athlon/amg_dfp_extensions/js/adManager.js?pt2u2d"></script>
<script type="text/javascript" src="https://athlonsports.com/sites/all/themes/omega/omega/js/jquery.formalize.js?pt2u2d"></script>
<script type="text/javascript" src="https://athlonsports.com/sites/all/themes/omega/omega/js/omega-mediaqueries.js?pt2u2d"></script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
jQuery.extend(Drupal.settings, {"basePath":"\/","pathPrefix":"","ajaxPageState":{"theme":"asomega","theme_token":"S9IIdW9cknyAn_Tln3OA0EDdCrCkBo6xypXMlS3Ea6Y","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,"wide::sites\/athlonsports.com\/themes\/asomega\/css\/asomega-alpha-default.css":1,"wide::sites\/athlonsports.com\/themes\/asomega\/css\/asomega-alpha-default-wide.css":1,"sites\/all\/themes\/omega\/alpha\/css\/grid\/alpha_default\/wide\/alpha-default-wide-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.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":{"wallpaperBreakpoint":740,"slotDefinitions":{"adhesion_bottom_11560551739":"dfp_slots[\u0022adhesion_bottom_11560551739\u0022] = function() { return googletag.defineOutOfPageSlot(\u0022\/1065729\/Adhesion_Bottom\u0022, \u0022dfp-ad-adhesion_bottom_11560551739\u0022).addService(googletag.pubads()); }","rect_atf_center_11560551739":"dfp_slots[\u0022rect_atf_center_11560551739\u0022] = function() { return googletag.defineSlot(\u0022\/1065729\/Rect_ATF_Center\u0022, [[728, 90], [970, 90], [970, 250], [320, 50]], \u0022dfp-ad-rect_atf_center_11560551739\u0022).set(\u0022adsense_ad_types\u0022, \u0022image\u0022).addService(googletag.pubads()); }","boxflex_art_atf_right_11560551740":"dfp_slots[\u0022boxflex_art_atf_right_11560551740\u0022] = function() { return googletag.defineSlot(\u0022\/1065729\/BoxFlex_ART_ATF_RIGHT\u0022, [[300, 1050], [300, 600], [300, 250]], \u0022dfp-ad-boxflex_art_atf_right_11560551740\u0022).set(\u0022adsense_ad_types\u0022, \u0022image\u0022).addService(googletag.pubads()); }","boxflex_art_btf_right_float_11560551740":"dfp_slots[\u0022boxflex_art_btf_right_float_11560551740\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_11560551740\u0022).set(\u0022adsense_ad_types\u0022, \u0022image\u0022).addService(googletag.pubads()); }"},"slotLookup":{"adhesion_bottom_11560551739":"adhesion_bottom","rect_atf_center_11560551739":"rect_atf_center","boxflex_art_atf_right_11560551740":"boxflex_art_atf_right","boxflex_art_btf_right_float_11560551740":"boxflex_art_btf_right_float"},"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\/697\/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":""},"urlIsAjaxTrusted":{"\/taxonomy\/term\/697\/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","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">
        /**
         * @see https://vendorlist.consensu.org/vendorlist.json
         * @todo refactor these magic integers into a map of some sort
         */
        ConsentManager.registerVendorHandler(77, function() {
            var _comscore = _comscore || [];
            _comscore.push({c1: "2", c2: "8207537"});

            (function () {
                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 type="text/javascript" data-cfasync="false">
            function addOpentagEl(opentagEl) {
                document.getElementsByTagName('head')[0].appendChild(opentagEl);
            }

            var opentagEl = document.createElement("script");
            opentagEl.src = "//d3c3cq33003psk.cloudfront.net/opentag-54778-athlonsportsprod.js";

            if (window.addEventListener) {
                window.addEventListener('load', function () {
                    addOpentagEl(opentagEl)
                });
            } else if (window.attachEvent) {
                window.attachEvent('onload', function () {
                    addOpentagEl(opentagEl)
                });
            }
        </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-697 page-taxonomy-term-0 page-taxonomy-term-feed context-taxonomy">

<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_11560551739-wrapper" class="dfp-tag-wrapper"><div id="dfp-ad-adhesion_bottom_11560551739" class="dfp-tag-wrapper adhesion_bottom">
</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-7634"><a href="http://www.athlonsports.com/galleries/college-football">Galleries</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-dd9fca5196ac2ca329eb6f1d8c5326ed">
<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-starting-quarterback-rankings-2019"><img src="/sites/athlonsports.com/files/styles/meganav_rect/public/Top-130-QBs-2019.jpg?itok=7-B2wOOU" alt="College Football Starting Quarterback Rankings for 2019" title="College Football Starting Quarterback Rankings for 2019" /></a></div> </div>
<div> <span><a href="/college-football/college-football-starting-quarterback-rankings-2019">College Football Starting Quarterback Rankings for 2019 (Top 130)</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/top-25-college-football-rankings-2019"><img src="/sites/athlonsports.com/files/styles/meganav_rect/public/Athlon-Top-25-Rankings-2019_0.jpg?itok=3W7qle9l" alt="College Football Top 25 Rankings for 2019" title="College Football Top 25 Rankings for 2019" /></a></div> </div>
<div> <span><a href="/college-football/top-25-college-football-rankings-2019">College Football Top 25 Rankings for 2019</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/sec-quarterback-rankings-2019"><img src="/sites/athlonsports.com/files/styles/meganav_rect/public/SEC-QBs-Rankings-2019_0.jpg?itok=mzleLTZZ" alt="SEC Quarterback Rankings 2019" title="SEC Quarterback Rankings 2019" /></a></div> </div>
<div> <span><a href="/college-football/sec-quarterback-rankings-2019">2019 SEC Quarterback Rankings</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-7658"><a href="http://athlonsports.com/galleries/nfl">Galleries</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-c54815ab83aea1aa798e9d4e39046cdc">
<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="/125-funny-fantasy-football-team-names-new"><img src="/sites/athlonsports.com/files/styles/meganav_rect/public/Fantasy_Football_Team_Names_2019.jpg?itok=0VFyfi0S" alt="Funny Fantasy Football Team Names" title="Funny Fantasy Football Team Names" /></a></div> </div>
<div> <span><a href="/125-funny-fantasy-football-team-names-new">125 Funny Fantasy Football Team Names</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-preseason-schedule-2019"><img src="/sites/athlonsports.com/files/styles/meganav_rect/public/NFL_Preseason_Schedule_2019_DL.jpg?itok=VDUeEjl-" alt="NFL Preseason Schedule 2019 " title="NFL Preseason Schedule 2019 " /></a></div> </div>
<div> <span><a href="/nfl-preseason-schedule-2019">NFL Preseason Schedule 2019</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"><a href="/college-basketball/teams">Teams</a></li><li class="menu-7625 last"><a href="http://athlonsports.com/galleries/college-basketball">Galleries</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-b50ddd31ea1049cb3a3a1474040172be">
<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="/duke-basketball-schedule"><img src="/sites/athlonsports.com/files/styles/meganav_rect/public/Duke_Basketball_Schedule.jpg?itok=RH_avbH8" alt="Duke Basketball Schedule" title="Duke Basketball Schedule" /></a></div> </div>
<div> <span><a href="/duke-basketball-schedule">Duke Basketball Schedule 2018-19</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="/kentucky-basketball-schedule"><img src="/sites/athlonsports.com/files/styles/meganav_rect/public/UK-Basketball-Schedule.jpg?itok=EzZkHtIh" alt="Kentucky Basketball Schedule 2018-19" title="Kentucky Basketball Schedule 2018-19" /></a></div> </div>
<div> <span><a href="/kentucky-basketball-schedule">Kentucky Basketball Schedule 2019</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="/north-carolina-basketball-schedule"><img src="/sites/athlonsports.com/files/styles/meganav_rect/public/UNC-basketball_schedule_0.jpg?itok=IG9qAryL" alt="UNC Basketball Schedule" title="UNC Basketball Schedule" /></a></div> </div>
<div> <span><a href="/north-carolina-basketball-schedule">North Carolina Basketball Schedule 2018-19</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="/iowa-state-basketball-schedule"><img src="/sites/athlonsports.com/files/styles/meganav_rect/public/IOWA-STATE-CBB-Schedules.jpg?itok=VKKPKxjM" alt="Iowa State Basketball Schedule 2018-19" title="Iowa State Basketball Schedule 2018-19" /></a></div> </div>
<div> <span><a href="/iowa-state-basketball-schedule">Iowa State Basketball Schedule 2018-19</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-7668"><a href="http://www.athlonsports.com/galleries/nascar">Galleries</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-f098f6c08b13d37604e3f685e89726d4">
<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-2019-Races.jpg?itok=sBtFCUV8" alt="2019 Monster Energy NASCAR Cup Series TV Schedule" title="2019 Monster Energy NASCAR Cup Series TV Schedule" /></a></div> </div>
<div> <span><a href="/nascar-schedule">2019 NASCAR TV Schedule: Monster Energy 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-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-3 views-row-odd">
<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/Funny-NASCAR-Names-2019.jpg?itok=-NbviJSx" alt="75 Funny Fantasy NASCAR Team Names for 2019" title="75 Funny Fantasy NASCAR Team Names for 2019" /></a></div> </div>
<div> <span><a href="/nascar/funny-fantasy-nascar-team-names-2019">75 Funny Fantasy NASCAR Team Names for 2019</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-7634"><a href="http://www.athlonsports.com/galleries/college-football">Galleries</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-7658"><a href="http://athlonsports.com/galleries/nfl">Galleries</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"><a href="/college-basketball/teams">Teams</a></li><li class="menu-7625 last"><a href="http://athlonsports.com/galleries/college-basketball">Galleries</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-7668"><a href="http://www.athlonsports.com/galleries/nascar">Galleries</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/697/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-tTsS7_3Ii2a9f2q869dksPygkno7WWUxoLAgfGEspaE" />
<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/697/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-tTsS7_3Ii2a9f2q869dksPygkno7WWUxoLAgfGEspaE" />
<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="college-basketball"><a href="/college-basketball" class="sub" data-track-event="college-basketball">NCAAB</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="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/697/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-tTsS7_3Ii2a9f2q869dksPygkno7WWUxoLAgfGEspaE" />
<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_11560551739-wrapper" class="dfp-tag-wrapper"><div id="dfp-ad-rect_atf_center_11560551739" 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">North Carolina</h1>
</div>
<div class="term-listing-heading"><div id="taxonomy-term-697" class="taxonomy-term vocabulary-vocabulary-50">
<div class="content">
</div>
</div>
</div>
<div id="node-5461" class="node node-news node-promoted node-teaser clearfix">
<article class="node node-news node-promoted node-teaser node-published node-not-sticky author-steven-lassan odd clearfix" id="node-news-5461">


<header>
<h2 class="node-title"><a href="/college-football/acc-player-ranks" title="Ranking the ACC&#039;s Top 25 Players for 2011">Ranking the ACC&#039;s Top 25 Players for 2011</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 ACC is light on proven offensive names, but loaded with defensive talent. </div></div></div><ul class="links inline"><li class="node-readmore first last"><a href="/college-football/acc-player-ranks" rel="tag" title="Ranking the ACC&#039;s Top 25 Players for 2011">Read more<span class="element-invisible"> about Ranking the ACC&#039;s Top 25 Players for 2011</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">&lt;p&gt;
Athlon Sports continues its countdown to the upcoming season with a look at the top 25 players for 2011 in the ACC.&lt;/p&gt;
</div></div></div><div class="field field-name-taxonomyextra field-type-taxonomy-term-reference field-label-above"><div class="field-label">Taxonomy upgrade extras:&nbsp;</div><div class="field-items"><div class="field-item even"><a href="/category/cfb-conferences/acc">ACC</a></div><div class="field-item odd"><a href="/category/cfb-players/florida-state">Florida State</a></div><div class="field-item even"><a href="/category/cfb-players/clemson">Clemson</a></div><div class="field-item odd"><a href="/category/cfb-players/boston-college">Boston College</a></div><div class="field-item even"><a href="/category/cfb-players/nc-state">NC State</a></div><div class="field-item odd"><a href="/category/cfb-players/maryland">Maryland</a></div><div class="field-item even"><a href="/category/cfb-players/wake-forest">Wake Forest</a></div><div class="field-item odd"><a href="/category/cfb-players/duke">Duke</a></div><div class="field-item even"><a href="/category/cfb-players/miami">Miami</a></div><div class="field-item odd"><a href="/category/cfb-players/georgia-tech">Georgia Tech</a></div><div class="field-item even"><a href="/category/cfb-players/virginia">Virginia</a></div><div class="field-item odd"><a href="/category/cfb-players/virginia-tech">Virginia Tech</a></div><div class="field-item even"><a href="/category/cfb-players/north-carolina">North Carolina</a></div><div class="field-item odd"><a href="/category/section/college-football">College Football</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>
<em>By Braden Gall (@<a href="http://twitter.com/#!/AthlonBraden" target="_blank">AthlonBraden</a>) and Steven Lassan (@<a href="http://twitter.com/#!/AthlonSteven" target="_blank">AthlonSteven</a>)</em></p>
<p>
Athlon Sports continues its countdown to the upcoming season with a look at the top 25 players for 2011 in the ACC.</p>
<p>
Several factors worked into the criteria for developing the 25 players: </p>
<p>
Previous production was weighed, but a heavy emphasis was placed on what we expect will happen in 2011.</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="/college-football/acc-player-ranks" rel="tag" title="Ranking the ACC&#039;s Top 25 Players for 2011">Read more<span class="element-invisible"> about Ranking the ACC&#039;s Top 25 Players for 2011</span></a></li></ul></nav>
</div>
</article>



</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_11560551740-wrapper" class="dfp-tag-wrapper"><div id="dfp-ad-boxflex_art_atf_right_11560551740" 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_11560551740-wrapper" class="dfp-tag-wrapper"><div id="dfp-ad-boxflex_art_btf_right_float_11560551740" 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"> <span class="ad-link-footer--item"> Athlonsports.com</span> | <a class="ad-link-footer--item" href="/cdn-cgi/l/email-protection#8de5e8e1fdcdecf9e5e1e2e3fefde2fff9fea3eee2e0">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="http://www.athlonmediagroup.com/athlon-sports/" rel="nofollow" target="_blank">Media Kit</a> | <a class="ad-link-footer--item" href="/cdn-cgi/l/email-protection#593b2c3e2a19382d313536372a29362b2d2a773a3634">Report a Bug</a> | <a class="ad-link-footer--item" href="/cdn-cgi/l/email-protection#f396979a879c8180b392879b9f9c9d80839c818780dd909c9e"> 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></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?pt2u2d"></script>
<script type="text/javascript" src="https://athlonsports.com/sites/all/modules/athlon/analytics/js/analytics_pageview.js?pt2u2d" data-cfasync="false"></script>
<script type="text/javascript" src="https://athlonsports.com/sites/all/modules/athlon/analytics/js/analytics_events.js?pt2u2d" 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>
