<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
 "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>Error 404</title>
    <meta name="description" content="" />
    <meta name="keywords" content="" />
    <link href="http://www.limelight.com/Content/Site.css" rel="stylesheet" type="text/css" />
    <link href="http://www.limelight.com/assets/js/lightbox/thickbox.css" rel="stylesheet" type="text/css" />
    <link href="/Content/print.css" rel="stylesheet" type="text/css" media="print" />
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
	<script type="text/javascript" src="http://www.limelight.com/assets/js/jquery-1.5.2.min.js"></script>
    <script type="text/javascript" src="http://www.limelight.com/assets/js/array-0.9.js"></script>
    <script type="text/javascript" src="http://www.limelight.com/assets/js/swfobject.js"></script>
    <script type="text/javascript" src="http://www.limelight.com/assets/js/jclip.js"></script>
    <script type="text/javascript" src="http://www.limelight.com/assets/js/lightbox/thickbox.js"></script>
	<script type="text/javascript">
	    //Plugin for trunication
	    (function ($) {
	        $.fn.truncate = function (options) {
	            var defaults = {
	                more: '. . .'
	            };
	            var options = $.extend(defaults, options);
	            return this.each(function (num) {
	                var height = parseInt($(this).css("height"));
	                var content = $(this).html();
	                while (this.scrollHeight > height) {
	                    content = content.replace(/\s+\S*$/, "");
	                    $(this).html(content + " " + options.more);
	                }
	            })
	        }
	    })(jQuery);


	    jQuery(document).ready(function () {
	        //jQuery for Support Select
	        $('div.portals').click(function () {
	            $('.cl-select ul').slideToggle('fast');
	        });
	        $('a.control').click(function () {
	            $('span.replace').replaceWith('<span class="replace">Limelight CONTROL (CDN)</span>');
	            $('.cl-select ul').slideUp('fast');
	        });
	        $('a.int-adv').click(function () {
	            $('span.replace').replaceWith('<span class="replace">Interacrive Advertising Reporting</span>');
	            $('.cl-select ul').slideUp('fast');
	        });
	        $('a.mobile').click(function () {
	            $('span.replace').replaceWith('<span class="replace">Limelight Reach</span>');
	            $('.cl-select ul').slideUp('fast');
	        });
	        $('a.support').click(function () {
	            $('span.replace').replaceWith('<span class="replace">General Support</span>');
	            $('.cl-select ul').slideUp('fast');
	        });
	        $('a.reseller').click(function () {
	            $('span.replace').replaceWith('<span class="replace">Reseller Portal</span>');
	            $('.cl-select ul').slideUp('fast');
	        });
	        //jQuery for input boxes
	        $('input.clearme').focus(function () {
	            $(this).attr({ value: '' });
	        });
	        //jQuery for Selected Menu Item
	        var cookieJar = $("p.cookieTrail a:nth-child(2)").attr("href");
	        if (cookieJar == '/services/') {
	            jQuery('ul.main-nav li:nth-child(2)').addClass('here');
	        }
	        if (cookieJar == '/solutions/') {
	            jQuery('ul.main-nav li:nth-child(1)').addClass('here');
	        }
	        if (window.location.pathname.match("/services/")) {
	            jQuery('ul.main-nav li:nth-child(2)').addClass('here');
	        }
	        if (window.location.pathname.match("/solutions/")) {
	            jQuery('ul.main-nav li:nth-child(1)').addClass('here');
	        }
	        if (window.location.pathname.match("/showcase/")) {
	            jQuery('ul.main-nav li:nth-child(3)').addClass('here');
	        }
	        if (window.location.pathname.match("/insights/")) {
	            jQuery('ul.main-nav li:nth-child(4)').addClass('here');
	        }
	        if (window.location.pathname.match("/company/")) {
	            jQuery('ul.main-nav li:nth-child(5)').addClass('here');
	        }
	        if (window.location.pathname.match("/support/")) {
	            jQuery('ul.main-nav li:nth-child(6)').addClass('here');
	        }

	        //jQuery for the menus
	        jQuery('.main-nav li.logining').hover(
				function () {
				    jQuery('.cl-select ul').hide();
				},
				function () {
				    jQuery('.cl-select ul').hide();
				});
	        jQuery('.main-nav li').hover(
				function () {
				    jQuery('div.mega', this).slideDown();
				    jQuery(this).addClass('hover');
				},
				function () {
				    jQuery('div.mega', this).hide();
				    jQuery(this).removeClass('hover');
				});
	        jQuery('li.cl').hover(
				function () {
				    jQuery('div.login', this).show();
				    jQuery('.cl-select ul').hide();
				},
				function () {
				    jQuery('div.login', this).hide();
				});
	        jQuery('li.int').hover(
				function () { jQuery('li.int ul li').show(); },
				function () {
				    jQuery('li.int ul li').hide();
				});

	        //jQuery for Solutions and Services
	        $('div.m1a .serv').mouseover(function () {
	            $('div.m1b').show();
	            $('div.m1a').hide();
	        });
	        $('div.m1b .sol').mouseover(function () {
	            $('div.m1a').show();
	            $('div.m1b').hide();
	        });

	        $('h2.plus').click(function () {
	            $( this).siblings('ul').slideToggle();
	            $( this).toggleClass("minus");
	            $(this).siblings('p.plus').toggleClass("minus");
	        });
	        $('p.plus').click(function () {
	            $(this).siblings('ul').slideToggle();
                $(this).siblings('ul li').slideToggle();
	            $(this).toggleClass("minus");
	            $(this).siblings('p.plus').toggleClass("minus");
	        });

	        //jQuery for Left Menu
	        jQuery('.leftSidebar li').hover(
				function () {
				    jQuery(this).addClass('hover');
				},
				function () {
				    jQuery(this).removeClass('hover');
				});

	        //jQuery for Gray Menu (Insights)
	        $('div.insight_header li').click(function () {
	            $('div.insight_header li.selected').removeClass('selected');
	            $(this).addClass('selected');
	        });

	        //jQuery for Gray Menu (Showcase)
	        $('div.showcase_header li').click(function () {
	            $('div.showcase_header li.selected').removeClass('selected');
	            $(this).addClass('selected');
	            $('div.showcase_sub_header li.selected').removeClass('selected');
	            $('div#subcatAd li:first').addClass('selected');
	            $('div#subcatVideo li:first').addClass('selected');
	            $('div#subcatContentManagement li:first').addClass('selected');
	        });
	        //(Subs)
	        $('div#subcatAd li').click(function () {
	            $('div#subcatAd li.selected').removeClass('selected');
	            $(this).addClass('selected');
	        });
	        $('div#subcatVideo li').click(function () {
	            $('div#subcatVideo li.selected').removeClass('selected');
	            $(this).addClass('selected');
	        });
	        $('div#subcatContentManagement li').click(function () {
	            $('div#subcatContentManagement li.selected').removeClass('selected');
	            $(this).addClass('selected');
	        });
	        //Showcase featured image clipping
	        $('.hero-black-trans .featured img').jclip(5, 5, 360, 205);

	        //jQuery for Gray Menu (Support)
	        $('li.supportFAQ').click(function () {
	            $('.support-tabs li.selected').removeClass('selected');
	            $(this).addClass('selected');
	            $('div.tab').slideUp(200);
	            $('div.supportFAQ').delay(200).slideDown();
	        });
	        $('li.supportHelp').click(function () {
	            $('.support-tabs li.selected').removeClass('selected');
	            $(this).addClass('selected');
	            $('div.tab').slideUp(200);
	            $('div.supportHelp').delay(200).slideDown();
	        });
	        $('li.manageMyServices').click(function () {
	            $('.support-tabs li.selected').removeClass('selected');
	            $(this).addClass('selected');
	            $('div.tab').slideUp(200);
	            $('div.manageMyServices').delay(200).slideDown();
	        });

	        //jQuery for Partners

	        Limelight = { slideLock: false, accActClass: 'accordion_toggle_active', sendProp19: function (self) { var s = s_gi(s_account); s.prop19 = jQuery(self).attr('prop19'); s.linkTrackVars = 'prop19'; s.tl(self, 'o', s.prop19); }, slideDownPartnerGroup: function () {
	            if (!Limelight.slideLock) {
	                var toggle = jQuery('.accordion_toggle', this); if (toggle.hasClass(Limelight.accActClass))
	                    return; Limelight.slideLock = true; jQuery('.accordion_toggle').removeClass(Limelight.accActClass); jQuery('.accordion_content').slideUp('fast'); toggle.addClass(Limelight.accActClass); jQuery('.accordion_content', this).slideDown('slow', function () { Limelight.slideLock = false; });
	            }
	        }, slideUpPartnerGroup: function () {
	            if (!Limelight.slideLock) {
	                var toggle = jQuery('.accordion_toggle', this); if (!toggle.hasClass(Limelight.accActClass))
	                    return; Limelight.slideLock = true; toggle.removeClass(Limelight.accActClass); jQuery('.accordion_content', this).slideUp('fast', function () { Limelight.slideLock = false; });
	            }
	        }
	    }; jQuery(document).ready(function () { jQuery('.partner-group').mousemove(Limelight.slideDownPartnerGroup); jQuery('.accordion_toggle[title]').hover(function () { Limelight.sendProp19(this); }, function () { }); });

	    //trunication
	    $('.itemlist li a').truncate();

	});

 
    </script>
</head>
<body>
    <div class="area">
        <!-- [[[[HEADER]]]] -->
        <script type="text/javascript">
    function swapLoginForm(Selection, LoginLocation) {
        $("#control" + LoginLocation + "Login").hide();
        $("#adv" + LoginLocation + "Login").hide();
        $("#lvp" + LoginLocation + "Login").hide();
        $("#mobil" + LoginLocation + "Login").hide();
        $("#support" + LoginLocation + "Login").hide();
        $("#reseller" + LoginLocation + "Login").hide();

        $("#" + Selection + LoginLocation + "Login").show();
    }
</script>
<!-- lang  -->
<div class="header">
    <div class="constrain">
        <a href="http://www.limelight.com/">
            <img src="http://www.limelight.com/assets/images/limelight-content-delivery.jpg" alt="limelight networks content delivery"
                class="global-logo" /></a>
        <div class="tagline" style="font-size:18px;float:left;margin-top:50px;color:#79B343;font-family: 'MontrealTS-xLight', 'Arial', 'sans-serif';">Orchestrate brilliance.</div>
        <ul class="global-nav">
            <li class="cl"><a href="#">CLIENT LOGIN</a><br />
                <div class="login" align="center">
                    <!-- login -->
                    <div class="col">
                        <h3>
                            Manage Your Limelight Services</h3>
                        <p>
                            Log in for exclusive resources</p>
                        <div class="cl-select">
                            <div class="portals">
                                <span class="replace">Select Support Portal</span>
                            </div>
                            <ul>
                                <li><a href="#" onclick="swapLoginForm('control','H');" class="control">Limelight Control
                                    (CDN)</a></li>
                                <li><a href="http://assets.delvenetworks.com/" target="_blank">Limelight Video Platform</a></li>
                                <li><a onclick="swapLoginForm('mobile','H');" class="mobile">Limelight Reach</a></li>
                                <li><a href="https://cms.clickability.com/index.html" target="_blank">Web Content Management</a></li>
                                <li><a onclick="swapLoginForm('support','H');" class="support">General Support</a></li>
                                
                            </ul>
                        </div>
                        <div id="headerForms">
                            <div id="controlHLogin" style="display: block">
                                <form action="http://control.llnw.com/portal/j_spring_security_check" method="post">
                                <input name="j_username" type="text" id="username" class="clearme" value="username" />
                                <input name="j_password" type="password" class="clearme" value="password" />
                                <input type="image" src="http://www.limelight.com/assets/images/submit-cdn-support.png" width="80" height="31"
                                    class="submit" />
                                </form>
                                <br />
                                <br clear="all" />
                                <p class="right">
                                    <a href="http://control.llnw.com/portal/reset/requestPassword.do" target="_blank">Forgot
                                        Password?</a></p>
                            </div>
                            <div id="mobileHLogin" style="display: none;">
                                <form action="https://kiptronic.com/ops/guest/signin.do" method="post">
                                <input name="login" type="text" class="clearme" value="username" />
                                <input name="password" type="password" class="clearme" value="password" />
                                <input type="image" src="http://www.limelight.com/assets/images/submit-cdn-support.png" width="80" height="31"
                                    class="submit" />
                                </form>
                                <br />
                                <br clear="all" />
                                <p class="right">
                                    <a href="https://kiptronic.com/ops/guest/forgot-password.do" target="_blank">Forgot
                                        Password?</a></p>
                            </div>
                            <div id="supportHLogin" style="display: none;">
                                <form action="http://www.limelightnetworks.com/contact-support/" method="post">
                                <input name="login" type="text" class="clearme" value="username" />
                                <input name="password" type="password" class="clearme" value="password" />
                                <input type="image" src="http://www.limelight.com/assets/images/submit-cdn-support.png" width="80" height="31"
                                    class="submit" />
                                </form>
                                <br />
                                <br clear="all" />
                                <p class="right">
                                    <a href="http://www.limelightnetworks.com/contact-support/" target="_blank">Forgot Password?</a></p>
                            </div>
                            <div id="resellerHLogin" style="display: none;">
                                <form action="http://www.limelightnetworks.com/partnerportal/" method="post">
                                <input name="login" type="text" class="clearme" value="username" />
                                <input name="password" type="password" class="clearme" value="password" />
                                <input type="image" src="http://www.limelight.com/assets/images/submit-cdn-support.png" width="80" height="31"
                                    class="submit" />
                                </form>
                                <br />
                                <br clear="all" />
                                <p class="right">
                                    <a href="http://www.limelightnetworks.com/partnerportal/" target="_blank">Forgot Password?</a></p>
                            </div>
                        </div>
                    </div>
                    <!-- /login -->
                </div>
            </li>
            <li class="div-left"><a href="http://www.limelight.com/contact/">CONTACT US</a></li>
            <li class="int"><a class="int">INTERNATIONAL</a>
                <ul>
                    <li><a href="http://www.limelight.com/">US</a></li>
                    <li><a href="http://uk.llnw.com/">UK</a></li>
                    <li><a href="http://de.llnw.com/">Germany</a></li>
                    <li><a href="http://fr.llnw.com">France</a></li>
                    <li><a href="http://www.llnw.jp/">Japan</a></li>
                </ul>
            </li>
        </ul>
        <!-- global-nav -->
        <br />
        <div class="contact">
            <form action="http://www.limelight.com/search" method="post">
            <input name="Query" value="Search" class="clearme" />
            </form>
            <div id="lpchatbutton1">
            </div>
            <script src="/assets/js/mtagconfig.js" type="text/Javascript" ></script>
<script type="text/javascript">
    lpUnit = "";
    if (typeof (lpUnit) == 'undefined' || lpUnit == "") var lpUnit = 'sales';
</script>
<script type="text/javascript">
    // Variables submission using lpAddVars
    function getCookie(name) {
        var nameEQ = name + "=";
        var ca = document.cookie.split(';');
        for (var i = 0; i < ca.length; i++) {
            var c = ca[i];
            while (c.charAt(0) == ' ') c = c.substring(1, c.length);
            if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length, c.length);
        }
        return null;
    }
    var mylpRegion = getCookie('sr');
    lpAddVars('session', 'language', "english");
    lpAddVars('session', 'Region', mylpRegion == null ? "west" : mylpRegion);
    //lpAddVars('page', 'pageExclude', '0');
    
</script>
<div id="lpChatButtoneast" style="display: none;">
    <div id="lpchatsalesEast">
    </div>
</div>
<div id="lpChatButtonwest" style="display: none;">
    <div id="lpchatsalesWest">
    </div>
</div>
<div id="lpChatButtonsales" style="display: none;">
</div>
<script type="text/javascript">
    if (mylpRegion == "west") {
        //document.getElementById("lpChatButtonwest").style.display = "block";
    }
    else if (mylpRegion == "east") {
        //document.getElementById("lpChatButtoneast").style.display = "block";
    }

    else {
        document.getElementById("lpChatButtonsales").style.display = "block";
    }
</script>
            
        </div>
        <br clear="all" />
        <div class="quick-links sans-ql">
            <a href="#">
                <img src="http://www.limelight.com/assets/images/predictive-behaviorial-icon.jpg" alt="predictive-behaviorial-icon"
                    width="19" height="17" align="left" />QUICK LINKS</a>
            <div class="pbt-pull">
                Stuff
            </div>
        </div>
        <ul class="main-nav">
            <li><a href="http://www.limelight.com/solutions/" onclick="s.tl(this,'o','header:solutions');" class="one">SOLUTIONS</a>
                <div class="mega m1a">
                    <div class="col1">
                        <img src="http://www.limelight.com/assets/images/Index/solutions-home.png" alt="ph" width="250" height="121" />
                        <p>
                            Build your business. Enhance your brand. Monetize your digital assets. With integrated
                            solutions from Limelight Networks, you’ll streamline every aspect of your online
                            operations.</p>
                        <a href="http://www.limelight.com/solutions/">
                            <img src="http://www.limelight.com/assets/images/more.png" alt="see-all" width="73" height="31" class="see-all-rt" /></a>
                        <br clear="all" />
                    </div>
                    <div class="col">
                        <h3>
                            <a href="http://www.limelight.com/media-web-publishing/">Publishing</a></h3>
                        <p>
                            Take everything you do on your website and make it richer, faster, and more engaging.</p>
                        <h3>
                            <a href="http://www.limelight.com/it-cloud-services/">Cloud Infrastructure</a></h3>
                        <p>
                            Leverage our robust, scalable platform and global capacity to support your IT services.</p>
                        <h3>
                            <a href="http://www.limelight.com/interactive-online-advertising/">Advertising</a></h3>
                        <p>
                            Capture the attention of Internet users with rich-media websites.</p>
                        <h3>
                            <a href="http://www.limelight.com/ecommerce-mcommerce-storefront-solutions/">E-Commerce</a></h3>
                        <p>
                            Maximize the value of your online store and extend your business with ease.</p>
                        <br clear="all" />
                    </div>
                    <div class="col">
                        <h3>
                            <a href="http://www.limelight.com/internet-digital-marketing/">Marketing</a></h3>
                        <p>
                            Reach customers through all online channels and captivate them with flawless online
                            experiences.</p>
                        <h3>
                            <a href="http://www.limelight.com/mobility-solutions/">Mobility</a></h3>
                        <p>
                            Grow your market and extend the reach of your digital media content and online ads.</p>
                        <h3>
                            <a href="http://www.limelight.com/public-sector/">Public Sector</a></h3>
                        <p>
                            Increase efficiencies while conforming to the information requirements of your institution.</p>
                        <br clear="all" />
                    </div>
                    <br clear="all" />
                    <a href="http://www.limelight.com/solutions/">
                        <img src="http://www.limelight.com/assets/images/css/css-sol-on.jpg" alt="css-sol-off" width="480" height="30"
                            class="sol" /></a><img src="http://www.limelight.com/assets/images/css/css-serv-off.jpg" alt="css-serv-on"
                                width="481" height="30" class="serv" />
                    <br clear="all" />
                </div>
                <!-- /mega m1a -->
            </li>
            <li><a href="http://www.limelight.com/services/" class="another-one">SERVICES</a>
                <div class="mega m1b">
                    <!-- services -->
                    <div class="col1">
                        <img src="http://www.limelight.com/assets/images/Index/services-home.png" alt="ph" width="250" height="121" />
                        <p>
                            Expand your online presence with scalable services that captivate audiences and
                            deliver results to your business. Limelight Networks offers a broad portfolio of
                            Internet innovations.</p>
                        <a href="http://www.limelight.com/services/">
                            <img src="http://www.limelight.com/assets/images/more.png" alt="see-all" width="73" height="31" class="see-all-rt" /></a>
                        <br clear="all" />
                    </div>
                    <div class="col" style="/*width:208px;*/">
                        <h3>
                            <a href="http://www.limelight.com/website-application-acceleration/">Web Acceleration Services</a></h3>
                        <ul>
                            <li><a href="http://www.limelight.com/website-application-acceleration/">Limelight Accelerate</a></li>
                        </ul>
                        <h3>
                            <a href="http://www.limelight.com/media-delivery/">Media Delivery</a></h3>
                        <ul>
                            <li><a href="http://www.limelight.com/software-video-delivery/">Limelight Deliver</a></li>
                            <li><a href="http://www.limelight.com/streaming-video-audio/">Limelight Stream</a></li>
                            <li><a href="http://www.limelight.com/content-delivery-security/">Content Security</a></li>
                            <li><a href="http://www.limelight.com/cdn-reporting/">Limelight Control</a></li>
                        </ul>
                        <h3>
                            <a href="http://www.limelight.com/content-management/">Content Management</a></h3>
                        <ul>
                            <li><a href="http://www.limelight.com/web-content-management/">Limelight Dynamic Site Platform</a></li>
                            <li><a href="http://www.limelight.com/mobile-content-management/">Limelight Dynamic Site Platform<br /> for Mobile</a></li>
                            <li><a href="http://www.limelight.com/online-video-platform/">Limelight Video Platform</a></li>
                        </ul>
                        <br clear="all" />
                    </div>
                    <div class="col" style="/*width:178px;*/">
                        <h3>
                            <a href="http://www.limelight.com/mobility/">Mobile Delivery</a></h3>
                        <ul>
                            <li><a href="http://www.limelight.com/mobile-video-delivery/">Limelight Reach Video</a></li>
                            <li><a href="http://www.limelight.com/mobile-ad-insertion/">Limelight Reach Ads</a></li>
                            <li><a href="http://www.limelight.com/mobile-interactive-app-insertion/">Limelight Reach Interactive</a></li>
                        </ul>
                        <h3>
                            <a href="http://www.limelight.com/cloud-infrastructure/">IT Cloud Services</a></h3>
                        <ul>
                            <li><a href="http://www.limelight.com/agile-cloud-storage/">Agile Storage</a></li>
                            <li><a href="http://www.limelight.com/content-connect/">Content Connect</a></li>
                            <li><a href="http://www.limelight.com/media-transcode/">Media Transcode</a></li>
                            <li><a href="http://www.limelight.com/traffic-load-balancer/">Traffic Balancer</a></li>
                        </ul>
                        <br clear="all" />
                    </div>
                    <div class="col">
                        <h3>
                            <a href="http://www.limelight.com/professional-services/">Professional Services</a></h3>
                        <ul>
                            <li><a href="http://www.limelight.com/customized-services/">Customized Services</a></li>
                            <li><a href="http://www.limelight.com/staff-augmentation-training/">Staff Augmentation and Training</a></li>
                            <li><a href="http://www.limelight.com/integration-services/">Integration Services</a></li>
                        </ul>
                        <h3>
                            Global Platform</h3>
                        <ul>
                            <li><a href="http://www.limelight.com/platform/">Edge Computing Platform</a></li>
                            <li><a href="http://www.limelight.com/intelligent-software/">Intelligent Software</a></li>
                            <li><a href="http://www.limelight.com/network/">Global Infrastructure</a></li>
                        </ul>
                        <br clear="all" />
                    </div>
                    <br clear="all" />
                    <img src="http://www.limelight.com/assets/images/css/css-sol-off.jpg" alt="css-sol-off" width="480" height="30"
                        class="sol" /><a href="http://www.limelight.com/services/"><img src="http://www.limelight.com/assets/images/css/css-serv-on.jpg"
                            alt="css-serv-on" width="481" height="30" class="serv" /></a>
                    <br clear="all" />
                </div>
                <!-- /mega m1b -->
            </li>
            <li><a href="http://www.limelight.com/showcase/" class="nomega two">SHOWCASE</a></li>
            <li><a href="http://www.limelight.com/insights/" class="three">INSIGHTS</a>
                <div class="mega m2">
                    <!-- insights (needs to be dynamic) -->
                    <div class="col1">
                        <img src="http://www.limelight.com/assets/images/sfi_insights_mega.jpg" alt="Stop Faking It" width="250"
                            height="121" />
                        <h3>
                            <a onclick="tb_show('','http://www.limelight.com/showcase/ad-content-marketing?KeepThis=true&amp;TB_iframe=true&amp;height=250&amp;width=300');" class="thickbox">See our latest ad: Stop Faking It.</a></h3>
                        <p>
                            Learn how to drive real in-banner engagement.</p>
                        <br clear="all" />
                    </div>
                    <div class="col">
                        <h3>
                            <a href="http://www.limelight.com/assets/insights/pdf/DallasCowboys_cs_1211.pdf">Dallas Cowboys Case Study</a></h3>
                        <p>Learn how theDallas Cowboys drive fan engagement with Limelight Networks.</p>
                        <h3>
                            <a href="http://www.limelight.com/insights/rich-media-web">Boosting Website Performance</a></h3>
                        <p> Tips and case studies for boosting customer engagement on your websites through web acceleration and rich media content delivery.</p>
                        <h3>
                            <a href="http://www.limelight.com/insights/content-marketing-webinar">Content Marketing Strategies from Development through Distribution</a></h3>
                        <p>Learn the keys to successful content marketing including content development, website engagement, and multi-channel distribution.</p>
                        <a href="http://www.limelight.com/insights/">
                            <img src="http://www.limelight.com/assets/images/more.png" alt="see-all" width="73" height="31" class="see-all-rt" /></a>
                        <br clear="all" />
                    </div>
                    <div class="col3">
                        <h3>
                            Featured White Papers</h3>
                        <ul>
                                <li><a href="http://www.limelight.com/insights/rich-media-web">Boosting Website Performance</a></li>
                                <li><a href="http://www.limelight.com/insights/content-marketing">How to Master the Art of Content Marketing</a></li>
                                <li><a href="http://www.limelight.com/insights/mobile-website">5 Keys to a Successful Mobile Site</a></li>
                                <li><a href="http://www.limelight.com/insights/mobile-retail">3 Lessons for Mobile Retailers from the Entertainment Industry</a></li>
                                <li><a href="http://www.limelight.com/insights/retail-mobile-marketing-technologies">3 New Mobile Technologies to Supercharge Your Retail Marketing</a></li>
                        </ul>
                        <br />
                    </div>
                    <br clear="all" />
                </div>
                <!-- /mega m2 (insights) -->
            </li>
            <li><a href="http://www.limelight.com/company/" class="four">COMPANY</a>
                <div class="mega m3">
                    <!-- company -->
                    <div class="col1">
                        <h3>
                            Limelight Networks</h3>
                        <p>
                            Looking for the best way to create and monetize digital experiences? By orchestrating
                            the most critical parts of the content value chain, Limelight Networks ensures that
                            your brand and your business results are always brilliant.</p>
                        <br clear="all" />
                    </div>
                    <div class="col">
                        <h3>
                            Media</h3>
                        <ul>
                            <li><a href="http://blog.limelight.com/">In the Limelight Blog</a></li>
                            <li><a href="http://www.limelight.com/company/social/">Social</a></li>
                            <li><a href="http://investors.limelightnetworks.com/releases.cfm">News Releases</a></li>
                        </ul>
                        <h3>
                            Leadership</h3>
                        <ul>
                            <li><a href="http://investors.limelightnetworks.com/management.cfm">Management Team</a></li>
                            <li><a href="http://investors.limelightnetworks.com/directors.cfm">Board</a></li>
                        </ul>
                        <br clear="all" />
                    </div>
                    <div class="col" style="position: relative;">
                        <h3>
                            Investors</h3>
                        <ul>
                            <li><a href="http://investors.limelightnetworks.com/">Investor Overview</a></li>
                            <li><a href="http://investors.limelightnetworks.com/stockquote.cfm">Stock Information</a></li>
                            <li><a href="http://investors.limelightnetworks.com/sec.cfm">SEC Filings</a></li>
                            <li><a href="http://investors.limelightnetworks.com/faq.cfm">Investor FAQ</a></li>
                        </ul>
                        <h3><a href="http://www.limelight.com/company/customers/">Customers</a></h3>
                        <br clear="all" />
                    </div>
                    <div class="col">
                        <h3>
                            <a href="http://www.limelight.com/contact/">Contact</a></h3>
                        <h3>
                            <a href="http://www.limelight.com/locations/">Locations</a></h3>
                        <h3>
                            <a href="http://www.limelight.com/company/partners/">Partners</a></h3>
                        <h3>
                            <a href="http://www.limelight.com/company/careers/">Careers</a></h3>
                        <br clear="all" />
                    </div>
                    <br clear="all" />
                </div>
                <!-- /mega m3 (company) -->
            </li>
            <li class="logining"><a href="http://www.limelight.com/support/" class="five">SUPPORT</a>
                <div class="mega m4">
                    <!-- support -->
                    <div class="col1">
                        <img src="http://www.limelight.com/assets/images/support/NOC_Mega_Menu.png" />
                        <p>
                            Content delivery, interactive advertising, and web acceleration can get complicated.
                            Our Support Services persistently monitor and proactively support your deployment.
                            So you don’t have to.</p>
                        <a href="http://www.limelight.com/support/">
                            <img src="http://www.limelight.com/assets/images/more.png" alt="see-all" width="73" height="31" class="see-all-rt" /></a>
                        <br clear="all" />
                    </div>
                    <div class="col" style="border-right: 1px solid #ccc; height: 220px;">
                        <img src="http://www.limelight.com/assets/images/support/call-support.jpg" style="margin-top: 60px;" /><br />
                        <a href="mailto:support@llnw.com">
                            <img src="http://www.limelight.com/assets/images/support/email-support.jpg" /></a><br />
                        <!--<a href='https://server.iad.liveperson.net/hc/5510502/?cmd=file&file=visitorWantsToChat&site=5510502&byhref=1&imageUrl=https://server.iad.liveperson.net/hcp/Gallery/ChatButton-Gallery/English/General/1a&skill=Operations-CS'
                            target='chat5510502'>
                            <img src="http://www.limelight.com/assets/images/support/chat-support-on.jpg" /></a>-->
                    </div>
                    <div class="col">
                        <h3>
                            Manage Your Limelight Services</h3>
                        <p>
                            Log in for exclusive resources</p>
                        <div class="cl-select">
                            <div class="portals">
                                <span class="replace">Select Support Portal</span>
                            </div>
                            <ul>
                                <li><a href="#" onclick="swapLoginForm('control','S');" class="control">Limelight Control
                                    (CDN)</a></li>
                                <li><a href="http://assets.delvenetworks.com/" target="_blank">Limelight Video Platform</a></li>
                                <li><a href="#" onclick="swapLoginForm('mobile','S');" class="mobile">Limelight Reach</a></li>
                                <li><a href="https://cms.clickability.com/index.html" target="_blank">Web Content Management</a></li>
                                <li><a href="#" onclick="swapLoginForm('support','S');" class="support">General Support</a></li>
                                
                            </ul>
                        </div>
                        <div id="supportForms">
                            <div id="controlSLogin" style="display: block">
                                <form action="http://control.llnw.com/portal/j_spring_security_check" method="post">
                                <input name="j_username" type="text" id="username" class="clearme" value="username" />
                                <input name="j_password" type="password" class="clearme" value="password" />
                                <input type="image" src="http://www.limelight.com/assets/images/submit-cdn-support.png" width="80" height="31"
                                    class="submit" />
                                </form>
                                <br />
                                <br clear="all" />
                                <p class="right">
                                    <a href="http://control.llnw.com/portal/reset/requestPassword.do" target="_blank">Forgot
                                        Password?</a></p>
                            </div>
                            <div id="lvpSLogin" style="display: none;">
                                <form action="http://www.delvenetworks.com/console/" method="post">
                                <input name="j_username" type="text" class="clearme" value="username" />
                                <input name="j_password" type="password" class="clearme" value="password" />
                                <input type="image" src="http://www.limelight.com/assets/images/submit-cdn-support.png" width="80" height="31"
                                    class="submit" />
                                </form>
                                <br />
                                <br clear="all" />
                                <p class="right">
                                    <a href="http://www.delvenetworks.com/console/" target="_blank">Forgot Password?</a></p>
                            </div>
                            <div id="mobileSLogin" style="display: none;">
                                <form action="https://kiptronic.com/ops/guest/signin.do" method="post">
                                <input name="login" type="text" class="clearme" value="username" />
                                <input name="password" type="password" class="clearme" value="password" />
                                <input type="image" src="http://www.limelight.com/assets/images/submit-cdn-support.png" width="80" height="31"
                                    class="submit" />
                                </form>
                                <br />
                                <br clear="all" />
                                <p class="right">
                                    <a href="https://kiptronic.com/ops/guest/forgot-password.do" target="_blank">Forgot
                                        Password?</a></p>
                            </div>
                            <div id="supportSLogin" style="display: none;">
                                <form action="http://www.limelightnetworks.com/contact-support/" method="post">
                                <input name="login" type="text" class="clearme" value="username" />
                                <input name="password" type="password" class="clearme" value="password" />
                                <input type="image" src="http://www.limelight.com/assets/images/submit-cdn-support.png" width="80" height="31"
                                    class="submit" />
                                </form>
                                <br />
                                <br clear="all" />
                                <p class="right">
                                    <a href="http://www.limelightnetworks.com/contact-support/" target="_blank">Forgot Password?</a></p>
                            </div>
                            <div id="resellerSLogin" style="display: none;">
                                <form action="http://www.limelightnetworks.com/partnerportal/" method="post">
                                <input name="login" type="text" class="clearme" value="username" />
                                <input name="password" type="password" class="clearme" value="password" />
                                <input type="image" src="http://www.limelight.com/assets/images/submit-cdn-support.png" width="80" height="31"
                                    class="submit" />
                                </form>
                                <br />
                                <br clear="all" />
                                <p class="right">
                                    <a href="http://www.limelightnetworks.com/partnerportal/" target="_blank">Forgot Password?</a></p>
                            </div>
                        </div>
                        <br clear="all" />
                    </div>
                </div>
                <!-- /mega m4 (support) -->
            </li>
            <li><a href="http://www.limelight.com/company/social/" class="six">SOCIAL</a>
                <div class="mega m2">
                    <!-- copied styles -->
                    <div class="col3 firstblog">
                        <h3>
                            <a href="http://blog.limelight.com">In the Limelight Blog</a></h3>
                        <ul class="notranslate">
<li><a href="http://blog.limelight.com/2011/12/marketers-as-publishers-your-questions-answered/" target="_blank">Marketers as Publishers: Your Questions Answered</a></li>
<li><a href="http://blog.limelight.com/2011/11/new-stats-show-how-critical-the-mobile-experience-is-for-e-commerce/" target="_blank">New Stats Show How Critical the Mobile Experience is for E-Commerce</a></li>
<li><a href="http://blog.limelight.com/2011/11/new-webcast-with-adage-on-marketers-as-publishers/" target="_blank">New Webcast with AdAge on Marketers as Publishers</a></li>
<li><a href="http://blog.limelight.com/2011/11/the-new-limelight-dynamic-site-platform-for-mobile/" target="_blank">The New Limelight Dynamic Site Platform for Mobile</a></li>
<li><a href="http://blog.limelight.com/2011/11/the-spirit-international-streams-live-to-web-mobile-and-roku/" target="_blank">The Spirit International Streams Live to Web, Mobile and Roku</a></li>

</ul>
                        <br clear="all" />
                    </div>
                    <div class="col3 midblog">
                        <h3>
                            <a href="http://blog.delvenetworks.com/">Limelight Video Platform Blog</a></h3>
                        <ul class="notranslate">
                            <li><a href="http://blog.delvenetworks.com/2012/01/05/limelight-video-platform-update-on-creating-restriction-rules/" target="_blank">Limelight Video Platform Update on Creating Restriction Rules</a></li>
<li><a href="http://blog.delvenetworks.com/2011/12/29/limelight-video-platform-adds-a-new-analytics-report-for-improved-viewership-tracking/" target="_blank">Limelight Video Platform Adds a New Analytics Report for Improved Viewership Tracking</a></li>
<li><a href="http://blog.delvenetworks.com/2011/12/28/limelight-video-platform-update-to-existing-player-templates/" target="_blank">Limelight Video Platform: Update to Existing Player Templates</a></li>
<li><a href="http://blog.delvenetworks.com/2011/12/16/new-api-search-for-media/" target="_blank">New API : Search for Media</a></li>
<li><a href="http://blog.delvenetworks.com/2011/12/01/improve-the-mobile-video-experience-on-your-site-with-our-html5-player/" target="_blank">Improve the Mobile Video Experience on Your Site with our HTML5 Player</a></li>


                        </ul>
                        <br clear="all" />
                    </div>
                    <div class="col3 lastblog">
                        <h3>
                            <a href="http://www.twitter.com/LLNW/">Limelight Twitter</a></h3>
                        <ul class="notranslate">
                            <li><a href="http://twitter.com/llnw/statuses/156843279424561152" target="_blank">llnw: Client site of the day: http://t.co/3dMaS50c. Check out what Limelight Dynamic Site Platform can do for you: http://t.co/Uvo8kz5a</a></li>
<li><a href="http://twitter.com/llnw/statuses/155364968739520512" target="_blank">llnw: US mobile commerce sales surged 91.4%, to $6.7 billion in 2011. Growth will boost mCommerce to $31 billion in 2015. http://t.co/LXp2LpDf</a></li>
<li><a href="http://twitter.com/llnw/statuses/155332631330955264" target="_blank">llnw: RT &#64;pkos: nifty, Article on &#64;llnw in today's AZ Republic. http://t.co/0ZgoJGBe</a></li>


                        </ul>
                        <br clear="all" />
                    </div>
                    <br clear="all" />
                </div>
            </li>
        </ul>
        <br clear="all" />
        <!-- main-nav -->
    </div>
    <!-- constrain -->
</div>
<!-- header -->

        <!-- [[[[CONTENT]]]] -->
        <div class="container">
            <!-- constrain -->
                <div class="herospace detailPage">
        &nbsp;
    </div>
    <div class="constrain">
    <div class="contentArea no-left">
        <p>
            <h1>
                We apologize for the inconvenience, but the page you are looking for is either no
                longer available or has moved.</h1>
        </p>
        <p>
            <small>http://www.limelight.com/kiptronic</small></p>
        <p>
            May we suggest you visit our <a href="/Solutions">Solutions</a> or <a href="/Services">
                Services</a> site sections to help find what you are looking for.</p>
                </div>
        <div class="rightSidebar">
            <div class="side-item">
                <h3>
                    Contact Us</h3>
                <p>
                    Voice: 866-200-LIME<br />
                    Voice: 602-850-5000<br />
                    Fax: 602-850-5001</p>
            </div>
            <div class="side-item">
                <h3>
                    <a href="http://blog.llnw.com">In the Limelight Blog</a></h3>
                <ul>
                    <li><a href="http://blog.limelight.com/2011/12/marketers-as-publishers-your-questions-answered/" target="_blank">Marketers as Publishers: Your Questions Answered</a></li>
<li><a href="http://blog.limelight.com/2011/11/new-stats-show-how-critical-the-mobile-experience-is-for-e-commerce/" target="_blank">New Stats Show How Critical the Mobile Experience is for E-Commerce</a></li>
<li><a href="http://blog.limelight.com/2011/11/new-webcast-with-adage-on-marketers-as-publishers/" target="_blank">New Webcast with AdAge on Marketers as Publishers</a></li>
<li><a href="http://blog.limelight.com/2011/11/the-new-limelight-dynamic-site-platform-for-mobile/" target="_blank">The New Limelight Dynamic Site Platform for Mobile</a></li>
<li><a href="http://blog.limelight.com/2011/11/the-spirit-international-streams-live-to-web-mobile-and-roku/" target="_blank">The Spirit International Streams Live to Web, Mobile and Roku</a></li>


                </ul>
            </div>
        </div>
        <br clear="all" />
    </div>
<input type="hidden" name="UrlKey" value="kiptronic" />
            <br clear="all" />
        </div>
        <!-- container -->
    </div>
    <!-- area -->
    <!-- [[[[FOOTER]]]] -->
    <div class="footer">
    <div class="constrain">
        <div class="foot-col">
            <strong><a href="/solutions/">SOLUTIONS</a></strong>
            <ul>
                <li><a href="/media-web-publishing/">Publishing</a></li>
                <li><a href="/it-cloud-services/">Cloud Infrastructure</a></li>
                <li><a href="/interactive-online-advertising/">Advertising</a></li>
                <li><a href="/ecommerce-mcommerce-storefront-solutions/">E-Commerce</a></li>
                <li><a href="/internet-digital-marketing/">Marketing</a></li>
                <li><a href="/mobility-solutions/">Mobility</a></li>
                <li><a href="/public-sector/">Public Sector</a></li>
            </ul>
        </div>
        <div class="foot-col">
            <strong><a href="/services/">SERVICES</a></strong>
            <ul>
                <li><a href="/media-delivery/">Media Delivery</a></li>
                <li><a href="/content-management/">Content Management</a></li>
                <li><a href="/mobility/">Mobile Delivery</a></li>
                <li><a href="/website-application-acceleration/">Web and Application Acceleration</a></li>
                <li><a href="/cloud-infrastructure/">IT Cloud Services</a></li>
                <li><a href="/professional-services/">Professional Services</a></li>
            </ul>
        </div>
        <div class="foot-col">
            <strong><a href="/platform/">PLATFORM</a></strong>
            <ul>
                <li><a href="/platform/">Edge Computing Platform</a></li>
                <li><a href="/intelligent-software/">Intelligent Software</a></li>
                <li><a href="/network/">Global Infrastructure</a></li>
            </ul>
            <strong><a href="/showcase/">SHOWCASE</a></strong>
            <ul>
            </ul>
            <strong><a href="/insights/">INSIGHTS</a></strong><br />
            <ul>
            </ul>
        </div>
        <div class="foot-col">
            <strong><a href="/company/">COMPANY</a></strong>
            <ul>
                <li><a href="/platform/">Limelight Networks</a></li>
                <li><a href="/company/social/">Media</a></li>
                <li><a href="http://investors.limelightnetworks.com/">Investors</a></li>
                <li><a href="http://investors.limelightnetworks.com/management.cfm">Leadership</a></li>
                <li><a href="/company/careers/">Careers</a></li>
                <li><a href="/company/partners/">Partners</a></li>
                <li><a href="/company/customers/">Customers</a></li>
            </ul>
          
        </div>
        <div class="foot-col">
            <strong><a href="/support/">SUPPORT</a></strong>
            <ul>
            </ul>
            <strong><a href="/contact/">CONTACT</a></strong>
            <ul>
            </ul>
            <strong>LIMELIGHT SOCIAL</strong>
            <ul>
                <li><a href="http://www.facebook.com/pages/Limelight-Networks-Inc/94192452191">Facebook</a></li>
                <li><a href="http://twitter.com/llnw">Twitter</a></li>
            </ul>
        </div>
        <br clear="all" />
        <small class="cpa"><a href="/contact/">Contact Us</a> | <a href="/privacy/">Privacy Policy</a> | <a href="/acceptable-use-policy/">Acceptable Use Policy</a></small>
        <small>Copyright &copy; 2011 Limelight Networks. All rights reserved.</small>
        
    </div>
    <!-- constrain -->
</div>
<!-- footer -->

    <!-- [[[[/FOOTER]]]] -->
    <!-- SiteCatalyst code version: H.17.
Copyright 1997-2008 Omniture, Inc. More info available at
http://www.omniture.com -->
<script language="JavaScript" type="text/javascript" src="/assets/js/s_code.js"></script>
<script type="text/javascript">    /*
    Copyright 2010 Ben Griffith Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 
    */
    (function (a) { a.fn.elqTrack = function (e, d) { if (typeof d == "undefined") { d = "" } if (typeof e == "undefined") { return false } var f = "v200"; var c = (document.location.protocol == "https:" ? "https://secure" : "http://now") + ".eloqua.com/visitor/" + f + "/svrGP.aspx"; var b = document.referrer != "" ? document.referrer : "elqNone"; this.each(function () { var g = this.href; if (g == "") { return false } a(this).click(function () { var i = new Date().getMilliseconds(); var h = c + "?pps=10&siteid=" + e + "&elq=" + d + "&ref=" + g + "&ref2=" + b + "&ms=" + i; a.ajax({ url: h, async: false, dataType: "script" }); return false }) }) }; a.elq = function (c) { var e = "v200"; var b = (document.location.protocol == "https:" ? "https://secure" : "http://now") + ".eloqua.com/visitor/" + e + "/svrGP.aspx"; var c = c; var d; this.pageTrack = function (h) { settings = a.extend({ url: "", success: "" }, h); var f = document.referrer != "" ? document.referrer : "elqNone"; var k = new Date(20020101).getTimezoneOffset(); var g = new Date().getMilliseconds(); if (settings.url != "") { var i = b + "?pps=31&siteid=" + c + "&ref=" + settings.url + "&ref2=" + f + "&tzo=" + k + "&ms=" + g; if (a("#elqFrame").length > 0) { a(j).load(function () { if (typeof settings.success == "function") { settings.success() } }); a("#elqFrame").attr("src", i) } else { var j = document.createElement("iframe"); j.style.display = "none"; j.id = "elqFrame"; a(j).load(function () { if (typeof settings.success == "function") { settings.success() } }); j.src = i; document.body.appendChild(j) } } else { var i = b + "?pps=3&siteid=" + c + "&ref2=" + f + "&tzo=" + k + "&ms=" + g; var l = new Image(1, 1); a(l).load(function () { if (typeof settings.success == "function") { settings.success() } }); l.src = i } }; this.getGUID = function (j) { var h = location.href; var g = new Date().getMilliseconds(); var f = b + "?pps=70&siteid=" + c + "&ref=" + h + "&ms=" + g; var i; a.ajax({ url: f, async: false, dataType: "script", success: function () { var k; if (typeof GetElqCustomerGUID == "function") { k = GetElqCustomerGUID() } else { return false } if (typeof j == "function") { j(k) } else { return false } } }) }; this.getData = function (g) { settings = a.extend({ key: "", lookup: "", success: "" }, g); if (settings.key != "") { var f = new Date().getMilliseconds(); var h = b + "?pps=50&siteid=" + c + "&DLKey=" + settings.key + "&DLLookup=" + settings.lookup + "&ms=" + f; a.ajax({ url: h, async: false, dataType: "script", success: function () { if (typeof settings.success == "function") { settings.success() } else { return false } } }) } }; this.redirect = function (h) { settings = a.extend({ url: "", elq: "" }, h); if (settings.url == "") { return false } var g = new Date().getMilliseconds(); var f = document.referrer != "" ? document.referrer : "elqNone"; var i = b + "?pps=10&siteid=" + c + "&elq=" + settings.elq + "&ref=" + settings.url + "&ref2=" + f + "&ms=" + g; a.ajax({ url: i, async: false, dataType: "script" }) } } })(jQuery);</script>

<script language="JavaScript" type="text/javascript"><!--
var elqTracker = new jQuery.elq(653);
elqTracker.pageTrack({success: function() {
    elqTracker.getGUID(function(guid) {
        var exdays = 360;
        var exdate = new Date();
        exdate.setTime(exdate.getTime()+(exdays*24*60*60*1000));
        document.cookie="ELOQUA="+guid+";expires="+exdate+";path=/;";
    });
}});
/* You may give each page an identifying name, server, and channel on the next lines. */
/************* DO NOT ALTER ANYTHING BELOW THIS LINE ! **************/
//TODO: uncoment out this line to make it work
var s_code=s.t();if(s_code)document.write(s_code)//-->
lpAddVars('session', 'cid', s.campaign);
lpAddVars('session', 'rcid', s.eVar27);
</script>
<!-- End SiteCatalyst code version: H.17. -->
<script type='text/javascript' language='JavaScript' src='/assets/js/elqNow/elqCfg.js'></script>
<script type='text/javascript' language='JavaScript' src='/assets/js/elqNow/elqImg.js'></script>
<script type="text/javascript">
 
  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-22152631-3']);
  _gaq.push(['_trackPageview']);
 
  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();
 
</script>

</body>
</html>
