archive.usaultimate.org Open in urlscan Pro
162.244.71.49  Public Scan

Submitted URL: http://archive.usaultimate.org/
Effective URL: https://archive.usaultimate.org/
Submission: On May 03 via api from US — Scanned from DE

Form analysis 1 forms found in the DOM

Name: mainPOST /

<form name="main" method="post" action="/" id="main">
  <div>
    <input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="">
    <input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="">
    <input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE"
      value="/wEPDwULLTExNzk4MzI1MzYPZBYCZg9kFgICDA9kFgQCBQ9kFgICAQ9kFgJmDxYCHgdWaXNpYmxlaGQCEw9kFgICAQ9kFgRmD2QWAmYPZBYEAgEPFgIeC18hSXRlbUNvdW50AgIWBGYPZBYCAgEPZBYCZg8VAQEwZAIBD2QWAgIBD2QWAmYPFQEBMWQCAw8WAh8BAgIWBGYPZBYCAgEPZBYCZg8VAQEwZAIBD2QWAgIBD2QWAmYPFQEBMWQCAg8WAh8AaBYIZg8WAh4FVmFsdWUFAzM3NWQCAg8QZGQWAGQCBg8QZGQWAGQCCA8WAh4FdmFsdWUFG1RhYkdyb3VwSWQ9OTcmVGFiTGlzdElkPTM3NWRkIG82MdSzZoC8U1MRUv9QdhKIKO4=">
  </div>
  <script type="text/javascript">
    //<![CDATA[
    var theForm = document.forms['main'];
    if (!theForm) {
      theForm = document.main;
    }

    function __doPostBack(eventTarget, eventArgument) {
      if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
        theForm.__EVENTTARGET.value = eventTarget;
        theForm.__EVENTARGUMENT.value = eventArgument;
        theForm.submit();
      }
    }
    //]]>
  </script>
  <script src="/WebResource.axd?d=w6D06B2Crz9FPnwCYF7QFupPwoZmeJasBgfz67PNgB4fb1K1XiQSLp5MbxbS9h4uFYZuAaqVqr7MhaUpdl3ZpVfz89Y1&amp;t=638313686908353130" type="text/javascript"></script>
  <script src="/includes/VideoScript.js" type="text/javascript"></script>
  <script src="/includes/AdScript.js" type="text/javascript"></script>
  <script src="/ScriptResource.axd?d=vLnzqoeg3L-I2wxfzAHuQvMJzhUk40uwzsyQkZJaUtk44TI5EOYWpjwfcuDcgFC0kc-P2YmLUL5y4JZ75nZHiUK5XZpnRR8IkdUehuNXeIJkWxFqRbVPz60hfegj2I5Y2kh1MAb_4VTi_qwk8Pd6Ix3Xqhk1&amp;t=7bc6e319" type="text/javascript"></script>
  <script src="/ScriptResource.axd?d=Hs0qln9WGLO6shurfSIjhUdkJK8cjAkCu_7bbZBlxevnvWLkPxouqk3ohJeyP5pPH2KDHRcIU595j0SXjLI_IZWYsgb0XIli2AUJf0OqxiK6wBBxNCWQtCctXaREBW0Ae63G3G3QWXdFmsvWNRIuEp7h73-sWHbK6cOZ2rZv-VPpNi2M0&amp;t=7bc6e319"
    type="text/javascript"></script>
  <script type="text/javascript">
    //<![CDATA[
    Sys.WebForms.PageRequestManager._initialize('sm', document.getElementById('main'));
    Sys.WebForms.PageRequestManager.getInstance()._updateControls([], [], [], 90);
    //]]>
  </script>
  <div id="home" class="wrapper">
    <div id="header">
      <h1><a href="/"><span>USA Ultimate</span><img src="/cms/images/layout/header/logo.png" alt="USA Ultimate Logo"></a></h1>
      <h2><a href="/"><span>The United States national governing body for the sport of Ultimate</span><img src="/cms/images/layout/header/slogan.png" alt="USA Ultimate Logo"></a></h2>
      <div class="usocLogo"><img src="/cms/images/layout/header/usoc_new_logo.png"></div>
      <div id="social_media">
        <ul>
          <li><a href="https://www.facebook.com/pages/USA-Ultimate/119701558067872" id="header_facebook" target="_blank">Facebook</a></li>
          <li><a href="https://twitter.com/USAUltimate" id="header_twitter" target="_blank">Twitter</a></li>
          <li><a href="https://plus.google.com/u/0/106652851630933181480/posts" id="header_google" target="_blank">Google</a></li>
          <li><a href="https://www.youtube.com/usaultimate" id="header_youtube" target="_blank">Youtube</a></li>
        </ul>
      </div>
      <div>
        <a href="http://play.usaultimate.org/members/login/" target="_blank" id="header_login">Member Account</a>
      </div>
      <div id="header_search">
        <input type="text" id="topq" name="topq" class="search_box" value="Search USA Ultimate" onkeypress="return submitEnter(this,event)" onblur="handleBlur(this);" onfocus="handleFocus(this);">
        <input type="submit" class="search_submit" value="Go" onclick="SearchSite('topq'); return false;">
      </div>
      <script type="text/javascript" language="javascript">
        <!--
        function handleFocus(element) {
          if (element.value == element.defaultValue) {
            element.value = '';
          }
        }

        function handleBlur(element) {
          if (element.value == '') {
            element.value = element.defaultValue;
          }
        }

        function URLEncode(str) {
          var result = "";
          for (i = 0; i < str.length; i++) {
            if (str.charAt(i) == " ") {
              result += "+";
            } else {
              result += str.charAt(i);
            }
          }
          return escape(result);
        }

        function URLDecode(str) {
          var result = str.replace(/\+/g, " ");
          return unescape(result);
        }

        function submitEnter(myfield, e) {
          var keycode;
          if (window.event) {
            keycode = window.event.keyCode;
          } else if (e) {
            keycode = e.which;
          } else {
            return true;
          }
          if (keycode == 13) {
            SearchSite(myfield.name);
            return false;
          } else {
            return true;
          }
        }

        function getQuerystring(key, defaultValue) {
          if (defaultValue == null) {
            defaultValue = "";
          }
          key = key.replace(/[\[]/, "\\\[").replace(/[\]]/, "\\\]");
          var regex = new RegExp("[\\?&]" + key + "=([^&#]*)");
          var qs = regex.exec(window.location.href);
          if (qs == null) {
            return defaultValue;
          } else {
            return qs[1];
          }
        }

        function SearchSite(inputId) {
          var searchTerm = document.getElementById(inputId).value;
          if (searchTerm != null && searchTerm != '') {
            if (searchTerm == 'Search USA Ultimate') {
              searchTerm = '';
            }
          }
          searchTerm = URLEncode(searchTerm);
          document.location.href = '/search.aspx?cx=014143725352721742498:b5jom6ybn34&cof=FORID%3A9&ie=UTF-8&q=' + searchTerm + '&sa=Search';
        }
        -->
      </script>
      <div class="mainNav" style="height: 56px; overflow: visible;">
        <ul class="sf-menu sf-js-enabled">
          <li id="CT_Header_1_rptNav_ctl00_liItem" class="firstnavitemli">
            <a id="CT_Header_1_rptNav_ctl00_lnkLink1" class="firstnavitema sf-with-ul">About<span class="sf-sub-indicator"> »</span></a>
            <ul style="display: none; visibility: hidden;">
              <li>
                <a href="/contact_us/" id="CT_Header_1_rptNav_ctl00_rptSubNav_ctl01_lnk" style="" class="sf-with-ul">Contact Us<span class="sf-sub-indicator"> »</span></a>
                <ul style="display: none; visibility: hidden;">
                  <li>
                    <a href="/hqstaff/" id="CT_Header_1_rptNav_ctl00_rptSubNav_ctl01_rptSubSubNav_ctl01_lnkInner" style="">USA Ultimate Staff</a>
                  </li>
                  <li>
                    <a href="/youth-contacts/" id="CT_Header_1_rptNav_ctl00_rptSubNav_ctl01_rptSubSubNav_ctl02_lnkInner" style="">Youth Division</a>
                  </li>
                  <li>
                    <a href="/collegecontacts/" id="CT_Header_1_rptNav_ctl00_rptSubNav_ctl01_rptSubSubNav_ctl03_lnkInner" style="">College Division</a>
                  </li>
                  <li>
                    <a href="/clubcontacts/" id="CT_Header_1_rptNav_ctl00_rptSubNav_ctl01_rptSubSubNav_ctl04_lnkInner" style="">Club Division</a>
                  </li>
                  <li>
                    <a href="/masterscontacts/" id="CT_Header_1_rptNav_ctl00_rptSubNav_ctl01_rptSubSubNav_ctl05_lnkInner" style="">Masters Division</a>
                  </li>
                  <li>
                    <a href="/beachcontacts/" id="CT_Header_1_rptNav_ctl00_rptSubNav_ctl01_rptSubSubNav_ctl06_lnkInner" style="">Beach Division</a>
                  </li>
                  <li>
                    <a href="/CurrentAffiliates/" id="CT_Header_1_rptNav_ctl00_rptSubNav_ctl01_rptSubSubNav_ctl07_lnkInner" style="">USA Ultimate Affiliates</a>
                  </li>
                  <li>
                    <a href="/contactstateorgs/" id="CT_Header_1_rptNav_ctl00_rptSubNav_ctl01_rptSubSubNav_ctl08_lnkInner" style="">State-Based Organizations</a>
                  </li>
                  <li>
                    <a href="/board/" id="CT_Header_1_rptNav_ctl00_rptSubNav_ctl01_rptSubSubNav_ctl09_lnkInner" style="">Board of Directors</a>
                  </li>
                </ul>
              </li>
              <li>
                <a href="/local/" id="CT_Header_1_rptNav_ctl00_rptSubNav_ctl02_lnk" style="">Where to Play</a>
              </li>
              <li>
                <a href="/about/" id="CT_Header_1_rptNav_ctl00_rptSubNav_ctl03_lnk" style="" class="sf-with-ul">About Ultimate<span class="sf-sub-indicator"> »</span></a>
                <ul style="display: none; visibility: hidden;">
                  <li>
                    <a href="https://www.usaultimate.org/resources/officiating/rules/2020_2021rules.aspx" id="CT_Header_1_rptNav_ctl00_rptSubNav_ctl03_rptSubSubNav_ctl01_lnkInner" style="">2020-21 Rules of Ultimate</a>
                  </li>
                  <li>
                    <a href="/spirit/" id="CT_Header_1_rptNav_ctl00_rptSubNav_ctl03_rptSubSubNav_ctl02_lnkInner" style="">Spirit of the Game</a>
                  </li>
                </ul>
              </li>
              <li>
                <a href="/about_us/" id="CT_Header_1_rptNav_ctl00_rptSubNav_ctl04_lnk" style="" class="sf-with-ul">About USA Ultimate<span class="sf-sub-indicator"> »</span></a>
                <ul style="display: none; visibility: hidden;">
                  <li>
                    <a href="/annual_report/" id="CT_Header_1_rptNav_ctl00_rptSubNav_ctl04_rptSubSubNav_ctl01_lnkInner" style="">Annual Report (2018)</a>
                  </li>
                  <li>
                    <a href="/jobs/" id="CT_Header_1_rptNav_ctl00_rptSubNav_ctl04_rptSubSubNav_ctl02_lnkInner" style="">Employment &amp; Volunteer Job Opportunities</a>
                  </li>
                </ul>
              </li>
              <li>
                <a href="/hall_of_fame/" id="CT_Header_1_rptNav_ctl00_rptSubNav_ctl05_lnk" style="">Hall of Fame</a>
              </li>
              <li>
                <a href="/governance/" id="CT_Header_1_rptNav_ctl00_rptSubNav_ctl06_lnk" style="" class="sf-with-ul">Governance<span class="sf-sub-indicator"> »</span></a>
                <ul style="display: none; visibility: hidden;">
                  <li>
                    <a href="/bylaws/" id="CT_Header_1_rptNav_ctl00_rptSubNav_ctl06_rptSubSubNav_ctl01_lnkInner" style="">Bylaws (2014)</a>
                  </li>
                  <li>
                    <a href="https://www.usaultimate.org/pulltogether/" id="CT_Header_1_rptNav_ctl00_rptSubNav_ctl06_rptSubSubNav_ctl02_lnkInner" style="">Strategic Plan (2019-2021)</a>
                  </li>
                </ul>
              </li>
              <li>
                <a href="https://www.usaultimate.org/equity/" id="CT_Header_1_rptNav_ctl00_rptSubNav_ctl07_lnk" style="">Equity and Diversity</a>
              </li>
              <li>
                <a href="/faq/" id="CT_Header_1_rptNav_ctl00_rptSubNav_ctl08_lnk" style="">FAQs</a>
              </li>
            </ul>
            <div class="nav_wysiwyg" style="margin: 16px 20px;">
            </div>
          </li>
          <li id="CT_Header_1_rptNav_ctl01_liItem">
            <a id="CT_Header_1_rptNav_ctl01_lnkLink1" class="sf-with-ul">News<span class="sf-sub-indicator"> »</span></a>
            <ul style="display: none; visibility: hidden;">
              <li>
                <a id="CT_Header_1_rptNav_ctl01_rptSubNav_ctl01_lnk" style="" class="sf-with-ul">USA Ultimate Mobile App<span class="sf-sub-indicator"> »</span></a>
                <ul style="display: none; visibility: hidden;">
                  <li>
                    <a href="https://itunes.apple.com/us/app/usa-ultimate/id1032772331?mt=8" id="CT_Header_1_rptNav_ctl01_rptSubNav_ctl01_rptSubSubNav_ctl01_lnkInner" style="">iOS</a>
                  </li>
                  <li>
                    <a href="https://play.google.com/store/apps/details?id=org.usaultimate.usaultimate&amp;hl=en" id="CT_Header_1_rptNav_ctl01_rptSubNav_ctl01_rptSubSubNav_ctl02_lnkInner" style="">Android</a>
                  </li>
                </ul>
              </li>
              <li>
                <a href="/magazine/" id="CT_Header_1_rptNav_ctl01_rptSubNav_ctl02_lnk" style="">USA Ultimate Magazine</a>
              </li>
              <li>
                <a href="http://play.usaultimate.org/teams/events/rankings/" id="CT_Header_1_rptNav_ctl01_rptSubNav_ctl03_lnk" style="" class="sf-with-ul">Rankings<span class="sf-sub-indicator"> »</span></a>
                <ul style="display: none; visibility: hidden;">
                  <li>
                    <a href="http://play.usaultimate.org/teams/events/team_rankings/?RankSet=College-Men" id="CT_Header_1_rptNav_ctl01_rptSubNav_ctl03_rptSubSubNav_ctl01_lnkInner" style="">College Men's</a>
                  </li>
                  <li>
                    <a href="http://play.usaultimate.org/teams/events/team_rankings/?RankSet=College-Women" id="CT_Header_1_rptNav_ctl01_rptSubNav_ctl03_rptSubSubNav_ctl02_lnkInner" style="">College Women's</a>
                  </li>
                  <li>
                    <a href="http://play.usaultimate.org/teams/events/team_rankings/?RankSet=Club-Men" id="CT_Header_1_rptNav_ctl01_rptSubNav_ctl03_rptSubSubNav_ctl03_lnkInner" style="">TCT Men's</a>
                  </li>
                  <li>
                    <a href="http://play.usaultimate.org/teams/events/team_rankings/?RankSet=Club-Mixed" id="CT_Header_1_rptNav_ctl01_rptSubNav_ctl03_rptSubSubNav_ctl04_lnkInner" style="">TCT Mixed</a>
                  </li>
                  <li>
                    <a href="http://play.usaultimate.org/teams/events/team_rankings/?RankSet=Club-Women" id="CT_Header_1_rptNav_ctl01_rptSubNav_ctl03_rptSubSubNav_ctl05_lnkInner" style="">TCT Women's</a>
                  </li>
                </ul>
              </li>
              <li>
                <a href="http://www.youtube.com/user/usaultimate" id="CT_Header_1_rptNav_ctl01_rptSubNav_ctl04_lnk" style="">Videos</a>
              </li>
              <li>
                <a href="https://www.usaultimate.org/news/default.aspx?CategoryId=18" id="CT_Header_1_rptNav_ctl01_rptSubNav_ctl05_lnk" style="">USA Ultimate Weekly</a>
              </li>
              <li>
                <a href="https://www.usaultimate.org/news/default.aspx?CategoryId=5" id="CT_Header_1_rptNav_ctl01_rptSubNav_ctl06_lnk" style="">College News</a>
              </li>
              <li>
                <a href="http://tct.usaultimate.org/news/" id="CT_Header_1_rptNav_ctl01_rptSubNav_ctl07_lnk" style="">Triple Crown Tour News</a>
              </li>
              <li>
                <a href="https://www.usaultimate.org/news/default.aspx?CategoryId=19" id="CT_Header_1_rptNav_ctl01_rptSubNav_ctl08_lnk" style="">Beach News</a>
              </li>
              <li>
                <a href="https://www.usaultimate.org/news/default.aspx?CategoryId=7" id="CT_Header_1_rptNav_ctl01_rptSubNav_ctl09_lnk" style="">Youth News</a>
              </li>
              <li>
                <a href="http://nationalteam.usaultimate.org/news/" id="CT_Header_1_rptNav_ctl01_rptSubNav_ctl10_lnk" style="">National Teams News</a>
              </li>
              <li>
                <a href="/news/default.aspx" id="CT_Header_1_rptNav_ctl01_rptSubNav_ctl11_lnk" style="">All News Posts</a>
              </li>
            </ul>
            <div class="nav_wysiwyg" style="margin: 16px 20px;">
            </div>
          </li>
          <li id="CT_Header_1_rptNav_ctl02_liItem">
            <a id="CT_Header_1_rptNav_ctl02_lnkLink1" class="sf-with-ul">Events<span class="sf-sub-indicator"> »</span></a>
            <ul style="display: none; visibility: hidden;">
              <li>
                <a href="http://play.usaultimate.org/events/tournament/" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl01_lnk" style="" class="sf-with-ul">Tournament Calendar<span class="sf-sub-indicator"> »</span></a>
                <ul style="display: none; visibility: hidden;">
                  <li>
                    <a href="http://play.usaultimate.org/events/league/" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl01_rptSubSubNav_ctl01_lnkInner" style="">League Calendar</a>
                  </li>
                </ul>
              </li>
              <li>
                <a href="https://www.usaultimate.org/archives/" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl02_lnk" style="" class="sf-with-ul">Event Archives ('79-'19)<span class="sf-sub-indicator"> »</span></a>
                <ul style="display: none; visibility: hidden;">
                  <li>
                    <a href="/archives/2019.aspx" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl02_rptSubSubNav_ctl01_lnkInner" style="">2019</a>
                  </li>
                  <li>
                    <a href="https://www.usaultimate.org/archives/2018.aspx" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl02_rptSubSubNav_ctl02_lnkInner" style="">2018</a>
                  </li>
                  <li>
                    <a href="/archives/2017.aspx" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl02_rptSubSubNav_ctl03_lnkInner" style="">2017</a>
                  </li>
                  <li>
                    <a href="https://www.usaultimate.org/archives/2016.aspx" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl02_rptSubSubNav_ctl04_lnkInner" style="">2016</a>
                  </li>
                  <li>
                    <a href="https://www.usaultimate.org/archives/2015.aspx" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl02_rptSubSubNav_ctl05_lnkInner" style="">2015</a>
                  </li>
                  <li>
                    <a href="https://www.usaultimate.org/archives/2014.aspx" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl02_rptSubSubNav_ctl06_lnkInner" style="">2014</a>
                  </li>
                  <li>
                    <a href="https://www.usaultimate.org/archives/2013.aspx" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl02_rptSubSubNav_ctl07_lnkInner" style="">2013</a>
                  </li>
                  <li>
                    <a href="https://www.usaultimate.org/archives/2012.aspx" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl02_rptSubSubNav_ctl08_lnkInner" style="">2012</a>
                  </li>
                  <li>
                    <a href="https://www.usaultimate.org/archives/2011.aspx" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl02_rptSubSubNav_ctl09_lnkInner" style="">2011</a>
                  </li>
                  <li>
                    <a href="https://www.usaultimate.org/archives/2010.aspx" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl02_rptSubSubNav_ctl10_lnkInner" style="">2010</a>
                  </li>
                  <li>
                    <a href="https://www.usaultimate.org/archives/2009.aspx" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl02_rptSubSubNav_ctl11_lnkInner" style="">2009</a>
                  </li>
                  <li>
                    <a href="https://www.usaultimate.org/archives/2008.aspx" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl02_rptSubSubNav_ctl12_lnkInner" style="">2008</a>
                  </li>
                  <li>
                    <a href="https://www.usaultimate.org/archives/2007.aspx" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl02_rptSubSubNav_ctl13_lnkInner" style="">2007</a>
                  </li>
                  <li>
                    <a href="https://www.usaultimate.org/archives/2006.aspx" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl02_rptSubSubNav_ctl14_lnkInner" style="">2006</a>
                  </li>
                  <li>
                    <a href="https://www.usaultimate.org/archives/2005.aspx" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl02_rptSubSubNav_ctl15_lnkInner" style="">2005</a>
                  </li>
                  <li>
                    <a href="https://www.usaultimate.org/archives/2004.aspx" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl02_rptSubSubNav_ctl16_lnkInner" style="">2004</a>
                  </li>
                  <li>
                    <a href="https://www.usaultimate.org/archives/2003.aspx" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl02_rptSubSubNav_ctl17_lnkInner" style="">2003</a>
                  </li>
                  <li>
                    <a href="https://www.usaultimate.org/archives/2002.aspx" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl02_rptSubSubNav_ctl18_lnkInner" style="">2002</a>
                  </li>
                  <li>
                    <a href="https://www.usaultimate.org/archives/2001.aspx" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl02_rptSubSubNav_ctl19_lnkInner" style="">2001</a>
                  </li>
                  <li>
                    <a href="https://www.usaultimate.org/archives/2000.aspx" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl02_rptSubSubNav_ctl20_lnkInner" style="">2000</a>
                  </li>
                  <li>
                    <a href="https://www.usaultimate.org/archives/1999.aspx" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl02_rptSubSubNav_ctl21_lnkInner" style="">1999</a>
                  </li>
                  <li>
                    <a href="https://www.usaultimate.org/archives/1998.aspx" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl02_rptSubSubNav_ctl22_lnkInner" style="">1998</a>
                  </li>
                  <li>
                    <a href="https://www.usaultimate.org/archives/1997.aspx" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl02_rptSubSubNav_ctl23_lnkInner" style="">1997</a>
                  </li>
                  <li>
                    <a href="https://www.usaultimate.org/archives/1996.aspx" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl02_rptSubSubNav_ctl24_lnkInner" style="">1996</a>
                  </li>
                  <li>
                    <a href="https://www.usaultimate.org/archives/1995.aspx" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl02_rptSubSubNav_ctl25_lnkInner" style="">1995</a>
                  </li>
                  <li>
                    <a href="https://www.usaultimate.org/archives/1994.aspx" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl02_rptSubSubNav_ctl26_lnkInner" style="">1994</a>
                  </li>
                  <li>
                    <a href="https://www.usaultimate.org/archives/1993.aspx" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl02_rptSubSubNav_ctl27_lnkInner" style="">1993</a>
                  </li>
                  <li>
                    <a href="https://www.usaultimate.org/archives/1992.aspx" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl02_rptSubSubNav_ctl28_lnkInner" style="">1992</a>
                  </li>
                  <li>
                    <a href="https://www.usaultimate.org/archives/1991.aspx" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl02_rptSubSubNav_ctl29_lnkInner" style="">1991</a>
                  </li>
                  <li>
                    <a href="https://www.usaultimate.org/archives/1990.aspx" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl02_rptSubSubNav_ctl30_lnkInner" style="">1990</a>
                  </li>
                  <li>
                    <a href="https://www.usaultimate.org/archives/1989.aspx" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl02_rptSubSubNav_ctl31_lnkInner" style="">1989</a>
                  </li>
                  <li>
                    <a href="https://www.usaultimate.org/archives/1988.aspx" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl02_rptSubSubNav_ctl32_lnkInner" style="">1988</a>
                  </li>
                  <li>
                    <a href="https://www.usaultimate.org/archives/1987.aspx" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl02_rptSubSubNav_ctl33_lnkInner" style="">1987</a>
                  </li>
                  <li>
                    <a href="https://www.usaultimate.org/archives/1986.aspx" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl02_rptSubSubNav_ctl34_lnkInner" style="">1986</a>
                  </li>
                  <li>
                    <a href="https://www.usaultimate.org/archives/1985.aspx" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl02_rptSubSubNav_ctl35_lnkInner" style="">1985</a>
                  </li>
                  <li>
                    <a href="https://www.usaultimate.org/archives/1984.aspx" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl02_rptSubSubNav_ctl36_lnkInner" style="">1984</a>
                  </li>
                  <li>
                    <a href="https://www.usaultimate.org/archives/1983.aspx" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl02_rptSubSubNav_ctl37_lnkInner" style="">1983</a>
                  </li>
                  <li>
                    <a href="https://www.usaultimate.org/archives/1982.aspx" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl02_rptSubSubNav_ctl38_lnkInner" style="">1982</a>
                  </li>
                  <li>
                    <a href="https://www.usaultimate.org/archives/1981.aspx" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl02_rptSubSubNav_ctl39_lnkInner" style="">1981</a>
                  </li>
                  <li>
                    <a href="https://www.usaultimate.org/archives/1980.aspx" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl02_rptSubSubNav_ctl40_lnkInner" style="">1980</a>
                  </li>
                  <li>
                    <a href="https://www.usaultimate.org/archives/1979.aspx" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl02_rptSubSubNav_ctl41_lnkInner" style="">1979</a>
                  </li>
                </ul>
              </li>
              <li>
                <a href="https://play.usaultimate.org/events/2020-USA-Ultimate-Beach-Championships/" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl03_lnk" style="">Beach Championships</a>
              </li>
              <li>
                <a href="http://collegechampionships.usaultimate.org" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl04_lnk" style="">D-III College</a>
              </li>
              <li>
                <a href="http://collegechampionships.usaultimate.org" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl05_lnk" style="">D-I College</a>
              </li>
              <li>
                <a href="https://www.usaultimate.org/youth/default.aspx#season_hs" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl06_lnk" style="">H.S. States</a>
              </li>
              <li>
                <a href="http://usopen.usaultimate.org/" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl07_lnk" style="">YCC</a>
              </li>
              <li>
                <a href="http://usopen.usaultimate.org" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl08_lnk" style="">U.S. Open</a>
              </li>
              <li>
                <a href="https://play.usaultimate.org/events/TCT-Elite-Select-Challenge-2019/" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl09_lnk" style="">Elite-Select Challenge</a>
              </li>
              <li>
                <a href="https://play.usaultimate.org/events/TCT-Pro-Elite-Challenge-2019/" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl10_lnk" style="">Pro-Elite Challenge</a>
              </li>
              <li>
                <a href="https://play.usaultimate.org/events/TCT-Select-Flight-Invite-East-2019/" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl11_lnk" style="">Select Flight Invite - East</a>
              </li>
              <li>
                <a href="https://play.usaultimate.org/events/TCT-Select-Flight-Invite-West-2019/" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl12_lnk" style="">Select Flight Invite - West</a>
              </li>
              <li>
                <a href="https://play.usaultimate.org/events/TCT-Pro-Championships-2019/" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl13_lnk" style="">Pro Championships</a>
              </li>
              <li>
                <a href="http://tct.usaultimate.org/national-championships/" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl14_lnk" style="">National Championships</a>
              </li>
              <li>
                <a href="https://play.usaultimate.org/events/2019-USA-Ultimate-Masters-Championships/" id="CT_Header_1_rptNav_ctl02_rptSubNav_ctl15_lnk" style="">Masters Championships</a>
              </li>
            </ul>
            <div class="nav_wysiwyg" style="margin: 16px 20px;">
            </div>
          </li>
          <li id="CT_Header_1_rptNav_ctl03_liItem">
            <a id="CT_Header_1_rptNav_ctl03_lnkLink1" class="sf-with-ul">Competition<span class="sf-sub-indicator"> »</span></a>
            <ul style="display: none; visibility: hidden;">
              <li>
                <a href="https://www.usaultimate.org/assets/1/Page/ReturnToPlayGuidance-June2020.pdf" id="CT_Header_1_rptNav_ctl03_rptSubNav_ctl01_lnk" style="">Return to Play Guidelines</a>
              </li>
              <li>
                <a href="/youth/" id="CT_Header_1_rptNav_ctl03_rptSubNav_ctl02_lnk" style="" class="sf-with-ul">Youth Division<span class="sf-sub-indicator"> »</span></a>
                <ul style="display: none; visibility: hidden;">
                  <li>
                    <a href="/youth_guidelines/" id="CT_Header_1_rptNav_ctl03_rptSubNav_ctl02_rptSubSubNav_ctl01_lnkInner" style="">Youth Guidelines (2020)</a>
                  </li>
                </ul>
              </li>
              <li>
                <a href="/college/" id="CT_Header_1_rptNav_ctl03_rptSubNav_ctl03_lnk" style="" class="sf-with-ul">College Division<span class="sf-sub-indicator"> »</span></a>
                <ul style="display: none; visibility: hidden;">
                  <li>
                    <a href="/college_eligibility/" id="CT_Header_1_rptNav_ctl03_rptSubNav_ctl03_rptSubSubNav_ctl01_lnkInner" style="">College Eligibility</a>
                  </li>
                  <li>
                    <a href="/college_guidelines/" id="CT_Header_1_rptNav_ctl03_rptSubNav_ctl03_rptSubSubNav_ctl02_lnkInner" style="">College Guidelines (2020)</a>
                  </li>
                  <li>
                    <a href="/college_mixedguidelines/" id="CT_Header_1_rptNav_ctl03_rptSubNav_ctl03_rptSubSubNav_ctl03_lnkInner" style="">College Mixed Guidelines (2019)</a>
                  </li>
                  <li>
                    <a href="/college_development/" id="CT_Header_1_rptNav_ctl03_rptSubNav_ctl03_rptSubSubNav_ctl04_lnkInner" style="">College Resources</a>
                  </li>
                </ul>
              </li>
              <li>
                <a href="/club/" id="CT_Header_1_rptNav_ctl03_rptSubNav_ctl04_lnk" style="" class="sf-with-ul">Club Division (Triple Crown Tour)<span class="sf-sub-indicator"> »</span></a>
                <ul style="display: none; visibility: hidden;">
                  <li>
                    <a href="/tct_guidelines/" id="CT_Header_1_rptNav_ctl03_rptSubNav_ctl04_rptSubSubNav_ctl01_lnkInner" style="">TCT Guidelines (2020)</a>
                  </li>
                  <li>
                    <a href="https://play.usaultimate.org/events/2019-US-Open-Club-Championship/" id="CT_Header_1_rptNav_ctl03_rptSubNav_ctl04_rptSubSubNav_ctl02_lnkInner" style="">U.S. Open Club Championships</a>
                  </li>
                </ul>
              </li>
              <li>
                <a href="/master/" id="CT_Header_1_rptNav_ctl03_rptSubNav_ctl05_lnk" style="" class="sf-with-ul">Masters Division<span class="sf-sub-indicator"> »</span></a>
                <ul style="display: none; visibility: hidden;">
                  <li>
                    <a href="/masters_guidelines/" id="CT_Header_1_rptNav_ctl03_rptSubNav_ctl05_rptSubSubNav_ctl01_lnkInner" style="">Masters Guidelines (2020)</a>
                  </li>
                </ul>
              </li>
              <li>
                <a href="/beach/" id="CT_Header_1_rptNav_ctl03_rptSubNav_ctl06_lnk" style="" class="sf-with-ul">Beach Division<span class="sf-sub-indicator"> »</span></a>
                <ul style="display: none; visibility: hidden;">
                  <li>
                    <a href="/beach_guidelines/" id="CT_Header_1_rptNav_ctl03_rptSubNav_ctl06_rptSubSubNav_ctl01_lnkInner" style="">Beach Guidelines (2020)</a>
                  </li>
                </ul>
              </li>
              <li>
                <a href="/national_teams/" id="CT_Header_1_rptNav_ctl03_rptSubNav_ctl07_lnk" style="" class="sf-with-ul">USA Ultimate National Teams<span class="sf-sub-indicator"> »</span></a>
                <ul style="display: none; visibility: hidden;">
                  <li>
                    <a href="/about/usaultimate/international/wu24_2019.aspx" id="CT_Header_1_rptNav_ctl03_rptSubNav_ctl07_rptSubSubNav_ctl01_lnkInner" style="">2019 WU24</a>
                  </li>
                  <li>
                    <a href="/about/usaultimate/international/wugc_2020.aspx" id="CT_Header_1_rptNav_ctl03_rptSubNav_ctl07_rptSubSubNav_ctl02_lnkInner" style="">2020 WUGC</a>
                  </li>
                  <li>
                    <a href="/about/usaultimate/international/wjuc_2020.aspx" id="CT_Header_1_rptNav_ctl03_rptSubNav_ctl07_rptSubSubNav_ctl03_lnkInner" style="">2020 WJUC</a>
                  </li>
                  <li>
                    <a href="/about/usaultimate/international/wmuc_2020.aspx" id="CT_Header_1_rptNav_ctl03_rptSubNav_ctl07_rptSubSubNav_ctl04_lnkInner" style="">2020 WMUC</a>
                  </li>
                </ul>
              </li>
              <li>
                <a href="/2020-national-skills-challenge/" id="CT_Header_1_rptNav_ctl03_rptSubNav_ctl08_lnk" style="" class="sf-with-ul">National Skills Challenge<span class="sf-sub-indicator"> »</span></a>
                <ul style="display: none; visibility: hidden;">
                  <li>
                    <a href="/resources/national_skills_challenge_guidelines.aspx" id="CT_Header_1_rptNav_ctl03_rptSubNav_ctl08_rptSubSubNav_ctl01_lnkInner" style="">National Skills Challenge Guidelines (2020)</a>
                  </li>
                </ul>
              </li>
              <li>
                <a href="/resources/skills_challenge.aspx" id="CT_Header_1_rptNav_ctl03_rptSubNav_ctl09_lnk" style="">Skills Challenge App Program</a>
              </li>
              <li>
                <a href="https://www.usaultimate.org/resources/ultimate_disc_golf.aspx" id="CT_Header_1_rptNav_ctl03_rptSubNav_ctl10_lnk" style="" class="sf-with-ul">Ultimate Disc Golf Derby<span class="sf-sub-indicator"> »</span></a>
                <ul style="display: none; visibility: hidden;">
                  <li>
                    <a href="/resources/ultimate_disc_golf_derby_guidelines.aspx" id="CT_Header_1_rptNav_ctl03_rptSubNav_ctl10_rptSubSubNav_ctl01_lnkInner" style="">Ultimate Disc Golf Derby Guidelines (2020)</a>
                  </li>
                </ul>
              </li>
            </ul>
            <div class="nav_wysiwyg" style="margin: 16px 20px;">
            </div>
          </li>
          <li id="CT_Header_1_rptNav_ctl04_liItem">
            <a id="CT_Header_1_rptNav_ctl04_lnkLink1" class="sf-with-ul">Programs<span class="sf-sub-indicator"> »</span></a>
            <ul style="display: none; visibility: hidden;">
              <li>
                <a href="/affiliates/" id="CT_Header_1_rptNav_ctl04_rptSubNav_ctl01_lnk" style="" class="sf-with-ul">Affiliates<span class="sf-sub-indicator"> »</span></a>
                <ul style="display: none; visibility: hidden;">
                  <li>
                    <a href="/about_affiliation/" id="CT_Header_1_rptNav_ctl04_rptSubNav_ctl01_rptSubSubNav_ctl01_lnkInner" style="">About</a>
                  </li>
                  <li>
                    <a href="/become_an_affiliate/" id="CT_Header_1_rptNav_ctl04_rptSubNav_ctl01_rptSubSubNav_ctl02_lnkInner" style="">Apply</a>
                  </li>
                  <li>
                    <a href="/affiliateprograms/" id="CT_Header_1_rptNav_ctl04_rptSubNav_ctl01_rptSubSubNav_ctl03_lnkInner" style="">Benefits</a>
                  </li>
                  <li>
                    <a href="/CurrentAffiliates/" id="CT_Header_1_rptNav_ctl04_rptSubNav_ctl01_rptSubSubNav_ctl04_lnkInner" style="">Contacts</a>
                  </li>
                  <li>
                    <a href="/affiliate_events/" id="CT_Header_1_rptNav_ctl04_rptSubNav_ctl01_rptSubSubNav_ctl05_lnkInner" style="">Event Registration</a>
                  </li>
                  <li>
                    <a href="/affiliatefaq/" id="CT_Header_1_rptNav_ctl04_rptSubNav_ctl01_rptSubSubNav_ctl06_lnkInner" style="">FAQ</a>
                  </li>
                  <li>
                    <a href="/affiliategrants/" id="CT_Header_1_rptNav_ctl04_rptSubNav_ctl01_rptSubSubNav_ctl07_lnkInner" style="">Grants</a>
                  </li>
                  <li>
                    <a href="/affiliate_recognition/" id="CT_Header_1_rptNav_ctl04_rptSubNav_ctl01_rptSubSubNav_ctl08_lnkInner" style="">Recognition</a>
                  </li>
                  <li>
                    <a href="/document_resources/" id="CT_Header_1_rptNav_ctl04_rptSubNav_ctl01_rptSubSubNav_ctl09_lnkInner" style="">Written Resources</a>
                  </li>
                </ul>
              </li>
              <li>
                <a href="/camp/" id="CT_Header_1_rptNav_ctl04_rptSubNav_ctl02_lnk" style="">Camps</a>
              </li>
              <li>
                <a href="/chaperones/" id="CT_Header_1_rptNav_ctl04_rptSubNav_ctl03_lnk" style="" class="sf-with-ul">Chaperone<span class="sf-sub-indicator"> »</span></a>
                <ul style="display: none; visibility: hidden;">
                  <li>
                    <a href="/youth_requirements/" id="CT_Header_1_rptNav_ctl04_rptSubNav_ctl03_rptSubSubNav_ctl01_lnkInner" style="">Youth Safety</a>
                  </li>
                </ul>
              </li>
              <li>
                <a href="/coaching/" id="CT_Header_1_rptNav_ctl04_rptSubNav_ctl04_lnk" style="" class="sf-with-ul">Coaching<span class="sf-sub-indicator"> »</span></a>
                <ul style="display: none; visibility: hidden;">
                  <li>
                    <a href="/cdp/" id="CT_Header_1_rptNav_ctl04_rptSubNav_ctl04_rptSubSubNav_ctl01_lnkInner" style="">Coaching Development Program</a>
                  </li>
                  <li>
                    <a href="/protection/" id="CT_Header_1_rptNav_ctl04_rptSubNav_ctl04_rptSubSubNav_ctl02_lnkInner" style="">Athlete Protection</a>
                  </li>
                </ul>
              </li>
              <li>
                <a href="/sanctioning/" id="CT_Header_1_rptNav_ctl04_rptSubNav_ctl05_lnk" style="" class="sf-with-ul">Event Sanctioning &amp; Insurance<span class="sf-sub-indicator"> »</span></a>
                <ul style="display: none; visibility: hidden;">
                  <li>
                    <a href="/tournaments/" id="CT_Header_1_rptNav_ctl04_rptSubNav_ctl05_rptSubSubNav_ctl01_lnkInner" style="">Tournament Sanctioning</a>
                  </li>
                  <li>
                    <a href="/leagues/" id="CT_Header_1_rptNav_ctl04_rptSubNav_ctl05_rptSubSubNav_ctl02_lnkInner" style="">League Sanctioning</a>
                  </li>
                  <li>
                    <a href="/insurance_program/" id="CT_Header_1_rptNav_ctl04_rptSubNav_ctl05_rptSubSubNav_ctl03_lnkInner" style="">Practice Insurance</a>
                  </li>
                </ul>
              </li>
              <li>
                <a href="http://gum.usaultimate.org" id="CT_Header_1_rptNav_ctl04_rptSubNav_ctl06_lnk" style="">Girls' Ultimate Movement (GUM)</a>
              </li>
              <li>
                <a href="/learntoplay/" id="CT_Header_1_rptNav_ctl04_rptSubNav_ctl07_lnk" style="">Learn to Play</a>
              </li>
              <li>
                <a href="https://play.usaultimate.org/events/2021_convention/" id="CT_Header_1_rptNav_ctl04_rptSubNav_ctl08_lnk" style="">Coach &amp; Organizer Convention</a>
              </li>
              <li>
                <a href="/grants/" id="CT_Header_1_rptNav_ctl04_rptSubNav_ctl09_lnk" style="">New Start Grant Kits</a>
              </li>
              <li>
                <a href="/organizers/" id="CT_Header_1_rptNav_ctl04_rptSubNav_ctl10_lnk" style="" class="sf-with-ul">Organizer Resources<span class="sf-sub-indicator"> »</span></a>
                <ul style="display: none; visibility: hidden;">
                  <li>
                    <a href="/champ_events/" id="CT_Header_1_rptNav_ctl04_rptSubNav_ctl10_rptSubSubNav_ctl01_lnkInner" style="">Bid to Host USA Ultimate Events</a>
                  </li>
                  <li>
                    <a href="https://www.usaultimate.org/tdcp/" id="CT_Header_1_rptNav_ctl04_rptSubNav_ctl10_rptSubSubNav_ctl02_lnkInner" style="">Tournament Director's Certification Program</a>
                  </li>
                  <li>
                    <a href="/youtheducation/" id="CT_Header_1_rptNav_ctl04_rptSubNav_ctl10_rptSubSubNav_ctl03_lnkInner" style="">Youth &amp; Education Resources</a>
                  </li>
                  <li>
                    <a href="/womens_development/" id="CT_Header_1_rptNav_ctl04_rptSubNav_ctl10_rptSubSubNav_ctl04_lnkInner" style="">Women's Development</a>
                  </li>
                  <li>
                    <a href="/college_development/" id="CT_Header_1_rptNav_ctl04_rptSubNav_ctl10_rptSubSubNav_ctl05_lnkInner" style="">College Development</a>
                  </li>
                  <li>
                    <a href="/develop_locally/" id="CT_Header_1_rptNav_ctl04_rptSubNav_ctl10_rptSubSubNav_ctl06_lnkInner" style="">Ultimate in Your Community</a>
                  </li>
                </ul>
              </li>
              <li>
                <a href="/parents/" id="CT_Header_1_rptNav_ctl04_rptSubNav_ctl11_lnk" style="">Parent Resources</a>
              </li>
              <li>
                <a href="/officiating/" id="CT_Header_1_rptNav_ctl04_rptSubNav_ctl12_lnk" style="" class="sf-with-ul">Rules &amp; Officiating<span class="sf-sub-indicator"> »</span></a>
                <ul style="display: none; visibility: hidden;">
                  <li>
                    <a href="/rules/" id="CT_Header_1_rptNav_ctl04_rptSubNav_ctl12_rptSubSubNav_ctl01_lnkInner" style="">Rules</a>
                  </li>
                  <li>
                    <a href="/ocp/" id="CT_Header_1_rptNav_ctl04_rptSubNav_ctl12_rptSubSubNav_ctl02_lnkInner" style="">Observer Certification Program</a>
                  </li>
                  <li>
                    <a href="/discstandards/" id="CT_Header_1_rptNav_ctl04_rptSubNav_ctl12_rptSubSubNav_ctl03_lnkInner" style="">Disc Standards</a>
                  </li>
                </ul>
              </li>
              <li>
                <a href="/stateorgs/" id="CT_Header_1_rptNav_ctl04_rptSubNav_ctl13_lnk" style="" class="sf-with-ul">State-Based Organizations<span class="sf-sub-indicator"> »</span></a>
                <ul style="display: none; visibility: hidden;">
                  <li>
                    <a href="/stateorgreqs/" id="CT_Header_1_rptNav_ctl04_rptSubNav_ctl13_rptSubSubNav_ctl01_lnkInner" style="">Benefits &amp; Requirements</a>
                  </li>
                  <li>
                    <a href="/stateorgfaq/" id="CT_Header_1_rptNav_ctl04_rptSubNav_ctl13_rptSubSubNav_ctl02_lnkInner" style="">FAQ</a>
                  </li>
                  <li>
                    <a href="/contactstateorgs/" id="CT_Header_1_rptNav_ctl04_rptSubNav_ctl13_rptSubSubNav_ctl03_lnkInner" style="">Contact State Orgs</a>
                  </li>
                </ul>
              </li>
            </ul>
            <div class="nav_wysiwyg" style="margin: 16px 20px;">
            </div>
          </li>
          <li id="CT_Header_1_rptNav_ctl05_liItem">
            <a id="CT_Header_1_rptNav_ctl05_lnkLink1" class="sf-with-ul">Membership<span class="sf-sub-indicator"> »</span></a>
            <ul style="display: none; visibility: hidden;">
              <li>
                <a href="/membervalue/" id="CT_Header_1_rptNav_ctl05_rptSubNav_ctl01_lnk" style="">Benefits &amp; Value</a>
              </li>
              <li>
                <a href="/giftcertificate/" id="CT_Header_1_rptNav_ctl05_rptSubNav_ctl02_lnk" style="">Gift Certificates</a>
              </li>
              <li>
                <a href="/membershipimpact/" id="CT_Header_1_rptNav_ctl05_rptSubNav_ctl03_lnk" style="">Impact of Our Members</a>
              </li>
              <li>
                <a href="/memberships/" id="CT_Header_1_rptNav_ctl05_rptSubNav_ctl04_lnk" style="" class="sf-with-ul">Membership Levels<span class="sf-sub-indicator"> »</span></a>
                <ul style="display: none; visibility: hidden;">
                  <li>
                    <a href="/lifetimemembers/" id="CT_Header_1_rptNav_ctl05_rptSubNav_ctl04_rptSubSubNav_ctl01_lnkInner" style="">Lifetime Members</a>
                  </li>
                  <li>
                    <a href="/yso/" id="CT_Header_1_rptNav_ctl05_rptSubNav_ctl04_rptSubSubNav_ctl02_lnkInner" style="">Youth-Serving Organizations</a>
                  </li>
                </ul>
              </li>
              <li>
                <a href="/playitforward/" id="CT_Header_1_rptNav_ctl05_rptSubNav_ctl05_lnk" style="">Play It Forward</a>
              </li>
              <li>
                <a href="https://www.usaultimate.org/membership/default.aspx#Registration_Forms" id="CT_Header_1_rptNav_ctl05_rptSubNav_ctl06_lnk" style="">Registration Forms: Waiver &amp; Medical Authorization</a>
              </li>
              <li>
                <a href="/SignatureSeries/" id="CT_Header_1_rptNav_ctl05_rptSubNav_ctl07_lnk" style="">Signature Series Disc</a>
              </li>
              <li>
                <a href="/membershiptrends/" id="CT_Header_1_rptNav_ctl05_rptSubNav_ctl08_lnk" style="">Trends Over Time</a>
              </li>
              <li>
                <a href="http://play.usaultimate.org/members/login/" id="CT_Header_1_rptNav_ctl05_rptSubNav_ctl09_lnk" style="">Login</a>
              </li>
            </ul>
            <div class="nav_wysiwyg" style="margin: 16px 20px;">
            </div>
          </li>
          <li id="CT_Header_1_rptNav_ctl06_liItem" class="lastnavitemli">
            <a id="CT_Header_1_rptNav_ctl06_lnkLink1" class="sf-with-ul">Shop<span class="sf-sub-indicator"> »</span></a>
            <ul style="display: none; visibility: hidden;">
              <li>
                <a href="/merchandise/" id="CT_Header_1_rptNav_ctl06_rptSubNav_ctl01_lnk" style="">USA Ultimate Discs, Kits &amp; Merchandise</a>
              </li>
              <li>
                <a href="http://usaultimate.teamfanshop.com/" id="CT_Header_1_rptNav_ctl06_rptSubNav_ctl02_lnk" style="" target="_blank" class="sf-with-ul">Apparel &amp; Accessories<span class="sf-sub-indicator"> »</span></a>
                <ul style="display: none; visibility: hidden;">
                  <li>
                    <a href="http://usaultimate.teamfanshop.com/Mens" id="CT_Header_1_rptNav_ctl06_rptSubNav_ctl02_rptSubSubNav_ctl01_lnkInner" style="" target="_blank">Men</a>
                  </li>
                  <li>
                    <a href="http://usaultimate.teamfanshop.com/Ladies" id="CT_Header_1_rptNav_ctl06_rptSubNav_ctl02_rptSubSubNav_ctl02_lnkInner" style="" target="_blank">Women</a>
                  </li>
                  <li>
                    <a href="http://usaultimate.teamfanshop.com/Kids" id="CT_Header_1_rptNav_ctl06_rptSubNav_ctl02_rptSubSubNav_ctl03_lnkInner" style="" target="_blank">Kids</a>
                  </li>
                  <li>
                    <a href="http://usaultimate.teamfanshop.com/T-Shirts" id="CT_Header_1_rptNav_ctl06_rptSubNav_ctl02_rptSubSubNav_ctl04_lnkInner" style="" target="_blank">T-Shirts</a>
                  </li>
                  <li>
                    <a href="http://usaultimate.teamfanshop.com/Sweatshirts_And_Fleece" id="CT_Header_1_rptNav_ctl06_rptSubNav_ctl02_rptSubSubNav_ctl05_lnkInner" style="" target="_blank">Sweats</a>
                  </li>
                </ul>
              </li>
              <li>
                <a href="/shop/additional_merchandise.aspx" id="CT_Header_1_rptNav_ctl06_rptSubNav_ctl03_lnk" style="">Licensed Merchandise Suppliers</a>
              </li>
              <li>
                <a href="/discstandards/" id="CT_Header_1_rptNav_ctl06_rptSubNav_ctl04_lnk" style="">Approved Disc Models</a>
              </li>
            </ul>
            <div class="nav_wysiwyg" style="margin: 16px 20px;">
            </div>
          </li>
        </ul>
        <ul class="secondary-menu sf-menu sf-js-enabled">
          <li id="CT_Header_1_rptNav_ctl07_liItem">
            <a href="/spirit/" id="CT_Header_1_rptNav_ctl07_lnkLink1" class="sf-with-ul">Spirit of the Game<span class="sf-sub-indicator"> »</span></a>
            <ul style="display: none; visibility: hidden;">
              <li>
                <a href="/coachingspirit/" id="CT_Header_1_rptNav_ctl07_rptSubNav_ctl01_lnk" style="">Spirit of Coaching</a>
              </li>
              <li>
                <a href="/spiritawards/" id="CT_Header_1_rptNav_ctl07_rptSubNav_ctl02_lnk" style="">Spirit Awards</a>
              </li>
              <li>
                <a href="https://www.usaultimate.org/assets/1/Page/Spirit%20Captain%20Role.pdf" id="CT_Header_1_rptNav_ctl07_rptSubNav_ctl03_lnk" style="">Spirit Captain Role</a>
              </li>
            </ul>
            <div class="nav_wysiwyg" style="margin: 16px 20px;">
            </div>
          </li>
          <li id="CT_Header_1_rptNav_ctl08_liItem">
            <a href="https://www.usaultimate.org/rules/" id="CT_Header_1_rptNav_ctl08_lnkLink1" class="sf-with-ul">Rules<span class="sf-sub-indicator"> »</span></a>
            <ul style="display: none; visibility: hidden;">
              <li>
                <a href="https://www.usaultimate.org/resources/officiating/rules/2020_2021rules.aspx" id="CT_Header_1_rptNav_ctl08_rptSubNav_ctl01_lnk" style="">2020-21 Rules of Ultimate</a>
              </li>
              <li>
                <a href="/ocp/" id="CT_Header_1_rptNav_ctl08_rptSubNav_ctl02_lnk" style="" class="sf-with-ul">Observer Program<span class="sf-sub-indicator"> »</span></a>
                <ul style="display: none; visibility: hidden;">
                  <li>
                    <a href="https://www.usaultimate.org/about/contact_us/other.aspx#observers" id="CT_Header_1_rptNav_ctl08_rptSubNav_ctl02_rptSubSubNav_ctl01_lnkInner" style="">Observer Contacts</a>
                  </li>
                </ul>
              </li>
            </ul>
            <div class="nav_wysiwyg" style="margin: 16px 20px;">
            </div>
          </li>
          <li id="CT_Header_1_rptNav_ctl09_liItem">
            <a href="/events/event.aspx" id="CT_Header_1_rptNav_ctl09_lnkLink1" class="sf-with-ul">Athletes<span class="sf-sub-indicator"> »</span></a>
            <ul style="display: none; visibility: hidden;">
              <li>
                <a href="/local/" id="CT_Header_1_rptNav_ctl09_rptSubNav_ctl01_lnk" style="">Where to Play</a>
              </li>
              <li>
                <a href="/sanctioned_events/" id="CT_Header_1_rptNav_ctl09_rptSubNav_ctl02_lnk" style="">Sanctioned Event Registration</a>
              </li>
              <li>
                <a href="/protection/" id="CT_Header_1_rptNav_ctl09_rptSubNav_ctl03_lnk" style="">Athlete Protection</a>
              </li>
            </ul>
            <div class="nav_wysiwyg" style="margin: 16px 20px;">
            </div>
          </li>
          <li id="CT_Header_1_rptNav_ctl10_liItem">
            <a href="/coaching/" id="CT_Header_1_rptNav_ctl10_lnkLink1" class="sf-with-ul">Coaches<span class="sf-sub-indicator"> »</span></a>
            <ul style="display: none; visibility: hidden;">
              <li>
                <a href="/coaching_requirements/" id="CT_Header_1_rptNav_ctl10_rptSubNav_ctl01_lnk" style="">Coaching Requirements</a>
              </li>
              <li>
                <a href="/cdp/" id="CT_Header_1_rptNav_ctl10_rptSubNav_ctl02_lnk" style="" class="sf-with-ul">The Coaching Development Program<span class="sf-sub-indicator"> »</span></a>
                <ul style="display: none; visibility: hidden;">
                  <li>
                    <a href="http://play.usaultimate.org/events/tournament/?ViewAll=false&amp;IsLeagueType=false&amp;IsClinic=true&amp;FilterByCategory=AE&amp;ClinicTypeId=1" id="CT_Header_1_rptNav_ctl10_rptSubNav_ctl02_rptSubSubNav_ctl01_lnkInner" style="">Register for a workshop</a>
                  </li>
                </ul>
              </li>
              <li>
                <a href="/memberships/" id="CT_Header_1_rptNav_ctl10_rptSubNav_ctl03_lnk" style="">Become a USA Ultimate Coach Member</a>
              </li>
              <li>
                <a href="/protection/" id="CT_Header_1_rptNav_ctl10_rptSubNav_ctl04_lnk" style="">Athlete Protection</a>
              </li>
            </ul>
            <div class="nav_wysiwyg" style="margin: 16px 20px;">
            </div>
          </li>
          <li id="CT_Header_1_rptNav_ctl11_liItem">
            <a href="http://play.usaultimate.org/" id="CT_Header_1_rptNav_ctl11_lnkLink1" class="sf-with-ul">Fans<span class="sf-sub-indicator"> »</span></a>
            <ul style="display: none; visibility: hidden;">
              <li>
                <a href="http://play.usaultimate.org/" id="CT_Header_1_rptNav_ctl11_rptSubNav_ctl01_lnk" style="">Event Calendar</a>
              </li>
              <li>
                <a href="/archives/" id="CT_Header_1_rptNav_ctl11_rptSubNav_ctl02_lnk" style="">History / Event Archives</a>
              </li>
              <li>
                <a href="/parents/" id="CT_Header_1_rptNav_ctl11_rptSubNav_ctl03_lnk" style="">Parent Resources</a>
              </li>
            </ul>
            <div class="nav_wysiwyg" style="margin: 16px 20px;">
            </div>
          </li>
          <li id="CT_Header_1_rptNav_ctl12_liItem" class="lastnavitemli">
            <a href="/organizers/" id="CT_Header_1_rptNav_ctl12_lnkLink1" class="lastnavitema sf-with-ul" style="border-right: none;">Organizers / Admins<span class="sf-sub-indicator"> »</span></a>
            <ul style="display: none; visibility: hidden;">
              <li>
                <a href="/organizers/" id="CT_Header_1_rptNav_ctl12_rptSubNav_ctl01_lnk" style="border-right: none;" class="sf-with-ul">Resources<span class="sf-sub-indicator"> »</span></a>
                <ul style="display: none; visibility: hidden;">
                  <li>
                    <a href="/champ_events/" id="CT_Header_1_rptNav_ctl12_rptSubNav_ctl01_rptSubSubNav_ctl01_lnkInner" style="border-right: none;">Bid to Host USA Ultimate Events</a>
                  </li>
                  <li>
                    <a href="https://www.usaultimate.org/tdcp/" id="CT_Header_1_rptNav_ctl12_rptSubNav_ctl01_rptSubSubNav_ctl02_lnkInner" style="border-right: none;">Tournament Director's Certification Program</a>
                  </li>
                </ul>
              </li>
              <li>
                <a href="/sanctioning/" id="CT_Header_1_rptNav_ctl12_rptSubNav_ctl02_lnk" style="border-right: none;" class="sf-with-ul">Event Sanctioning<span class="sf-sub-indicator"> »</span></a>
                <ul style="display: none; visibility: hidden;">
                  <li>
                    <a href="/leagues/" id="CT_Header_1_rptNav_ctl12_rptSubNav_ctl02_rptSubSubNav_ctl01_lnkInner" style="border-right: none;">League Competition</a>
                  </li>
                  <li>
                    <a href="/tournaments/" id="CT_Header_1_rptNav_ctl12_rptSubNav_ctl02_rptSubSubNav_ctl02_lnkInner" style="border-right: none;">Tournament Competition</a>
                  </li>
                  <li>
                    <a href="/insurance_program/" id="CT_Header_1_rptNav_ctl12_rptSubNav_ctl02_rptSubSubNav_ctl03_lnkInner" style="border-right: none;">Other Development (Practices, Clinics, etc)</a>
                  </li>
                </ul>
              </li>
              <li>
                <a href="/insurance/" id="CT_Header_1_rptNav_ctl12_rptSubNav_ctl03_lnk" style="border-right: none;">Insurance</a>
              </li>
              <li>
                <a href="/chaperones/" id="CT_Header_1_rptNav_ctl12_rptSubNav_ctl04_lnk" style="border-right: none;">Become a Chaperone</a>
              </li>
              <li>
                <a href="/protection/" id="CT_Header_1_rptNav_ctl12_rptSubNav_ctl05_lnk" style="border-right: none;">Athlete Protection</a>
              </li>
            </ul>
            <div class="nav_wysiwyg" style="margin: 16px 20px;">
            </div>
          </li>
        </ul>
        <div class="clear">&nbsp;</div>
      </div>
    </div>
    <div id="stories">
      <div id="homepage_rotator_prev">Previous</div>
      <ul id="homepage_rotator">
        <li>
          <div class="activator">
            <img src="/assets/1/Photos/435x290/2021_23_BoardElections_Rotator.jpg" id="CT_Stories_0_cache_rptRotator_ctl03_ctl00_imgThumb" class="article_image" alt="Vote in the 2020 Board of Directors Election">
            <h3 style="background: rgb(11, 48, 91);">
              <a href="/news/vote-in-the-2020-board-of-directors-election/" id="CT_Stories_0_cache_rptRotator_ctl03_ctl00_aLink" rel="article" style="padding-top: 10px; padding-bottom: 10px;">Vote in the 2020 Board of Directors Election</a></h3>
            <div class="summary">Get to know the candidates running for the 2021-23 USA Ultimate Board of Directors and vote by December 23!</div>
          </div>
        </li>
        <li>
          <div class="activator">
            <img src="/assets/1/Photos/435x290/Dec2020_CWG_Rotator.jpg" id="CT_Stories_0_cache_rptRotator_ctl04_ctl00_imgThumb" class="article_image" alt="Competition Working Group Meets to Discuss and Make Decisions on 2021 Season">
            <h3 style="background: rgb(6, 33, 64);">
              <a href="/news/competition-working-group-meets-to-discuss-and-make-decisions-on-2021-season/" id="CT_Stories_0_cache_rptRotator_ctl04_ctl00_aLink" rel="article" style="padding-top: 4px; padding-bottom: 4px;">Competition Working Group Meets to Discuss and Make Decisions on 2021 Season</a>
            </h3>
            <div class="summary">College Series Moved to the Fall, Eligibility Extended, Return to Play Guidelines Being Updated</div>
          </div>
        </li>
        <li>
          <div class="activator">
            <img src="/assets/1/Photos/435x290/NationalSkillsChallengeLogo_Rotator.png" id="CT_Stories_0_cache_rptRotator_ctl05_ctl00_imgThumb" class="article_image" alt="Final Results Announced in 2020 National Skills Challenge">
            <h3 style="background: rgb(11, 48, 91);">
              <a href="/news/final-results-announced-in-2020-national-skills-challenge/" id="CT_Stories_0_cache_rptRotator_ctl05_ctl00_aLink" rel="article" style="padding-top: 10px; padding-bottom: 10px;">Final Results Announced in 2020 National Skills Challenge</a>
            </h3>
            <div class="summary">Check out the final standings in the 2020 National Skills Challenge.</div>
          </div>
        </li>
        <li>
          <div class="activator">
            <img src="/assets/1/Photos/435x290/2020SpiritAwards_Rotator.jpg" id="CT_Stories_0_cache_rptRotator_ctl06_ctl00_imgThumb" class="article_image" alt="Individual Spirit Awards to be Presented Despite Season Cancellation">
            <h3 style="background: rgb(6, 33, 64);">
              <a href="/news/individual-spirit-awards-to-be-presented-despite-season-cancellation/" id="CT_Stories_0_cache_rptRotator_ctl06_ctl00_aLink" rel="article" style="padding-top: 4px; padding-bottom: 4px;">Individual Spirit Awards to be Presented Despite Season Cancellation</a>
            </h3>
            <div class="summary">USA Ultimate will continue to recognize winners of the club and masters division individual Spirit awards.</div>
          </div>
        </li>
        <li class="active" style="z-index: 19;">
          <div class="activator">
            <img src="/assets/1/Photos/435x290/DGD 602x397.png" id="CT_Stories_0_cache_rptRotator_ctl01_ctl00_imgThumb" class="article_image" alt="Ultimate Disc Golf Derby Final Results Released">
            <h3 style="background: transparent;">
              <a href="/news/ultimate-disc-golf-derby-final-results-released/" id="CT_Stories_0_cache_rptRotator_ctl01_ctl00_aLink" rel="article" style="padding-top: 8px; padding-bottom: 8px;">Ultimate Disc Golf Derby Final Results Released</a></h3>
            <div class="summary">Check out the final results in the 2020 Ultimate Disc Golf Derby.</div>
          </div>
        </li>
        <li>
          <div class="activator">
            <img src="/assets/1/Photos/435x290/Cone_Sunrise.jpg" id="CT_Stories_0_cache_rptRotator_ctl02_ctl00_imgThumb" class="article_image" alt="Become a 2021 Member and Save Through December 31!">
            <h3 style="background: rgb(11, 48, 91);">
              <a href="/news/become-a-2021-member-and-save-through-december-31/" id="CT_Stories_0_cache_rptRotator_ctl02_ctl00_aLink" rel="article" style="padding-top: 10px; padding-bottom: 10px;">Become a 2021 Member and Save Through December 31!</a>
            </h3>
            <div class="summary">Youth, College, Adult and Coach Memberships will be discounted through the end of the year.</div>
          </div>
        </li>
      </ul>
      <div id="homepage_rotator_next">Next</div>
      <div id="story_area" style="z-index: 15;">
        <div id="story_info"><img src="/assets/1/Photos/435x290/DGD 602x397.png" id="CT_Stories_0_cache_rptRotator_ctl01_ctl00_imgThumb" class="article_image" alt="Ultimate Disc Golf Derby Final Results Released">
          <div class="summary">Check out the final results in the 2020 Ultimate Disc Golf Derby.</div>
          <a href="/news/ultimate-disc-golf-derby-final-results-released/" id="CT_Stories_0_cache_rptRotator_ctl01_ctl00_aLink" rel="article" style="padding-top: 0px; padding-bottom: 0px;" class="full_story"><span>Read the Full Story</span></a>
          <div class="image_overlay">&nbsp;</div>
        </div>
      </div>
    </div>
    <div id="news_slot">
      <div style="margin-bottom:15px;"><a href="https://iliveultimate.com"><img src="/assets/1/Page/USAU_LiveUltimate_PopUpAd_v3.gif" alt="USAU LiveUltimate" width="300" height="390"></a></div>
      <p><a href="https://www.fiveultimate.com/"><img height="89" width="300" src="/assets/1/Page/USAU-Five-USNT-Banner-2019.jpg" alt="USAU Five USNT Banner 2019"></a></p>
    </div>
    <div id="Banner_slot">
      <div id="divAdZone_47204ab786654146af476bb8ec609525"> <a href="/ad-forward.aspx?AdId=28&amp;AdZoneId=9"><img src="/assets/ad/DiscraftBanner-sep17.jpg" width="638" height="90" border="0" alt=""></a></div>
      <script type="text/javascript">
        getAd(9, 28, 'divAdZone_47204ab786654146af476bb8ec609525')
      </script>
    </div>
    <div id="events_slot">
    </div>
    <div id="photo_gallery_slot">
    </div>
    <div id="Alternate_slot">
      <br><img src="/cms/images/spacer.gif" width="1" height="10"><br>
      <div id="CT_Alternate_1_divTabModule" class="global_tabs">
        <ul class="global_tabs_nav">
          <li id="CT_Alternate_1_rptName_ctl00_liTabTitle" class="active">
            <h4 href="#tabid_0"> Competition </h4>
          </li>
          <li id="CT_Alternate_1_rptName_ctl01_liTabTitle">
            <h4 href="#tabid_1"> Event Archives </h4>
          </li>
        </ul>
        <ul class="global_tabs_slides">
          <li id="CT_Alternate_1_rptTabs_ctl00_liTabHtml" class="global_tabs_slide" style="display: list-item;">
            <div id="tabid_0">
              <table width="580" border="0" cellpadding="0" cellspacing="0" style="color: rgb(0, 0, 0); font-family: 'Times New Roman'; font-size: medium; font-style: normal;">
                <tbody>
                  <tr>
                    <td width="10">&nbsp;</td>
                    <td width="200">
                      <a href="https://www.usaultimate.org/youth/"><img src="/assets/1/Photos/602x397/US Open 2018_DQT_20180804_165754-(ZF-4058-68816-1-001).jpg" alt="US Open 2018 DQT 20180804 165754 (ZF 4058 68816 1 001)" width="200" height="133"></a>
                    </td>
                    <td width="20">&nbsp;</td>
                    <td valign="middle">
                      <p class="georgia" style="font-size: 17px; line-height: 1.3em; text-align: center;"><a href="https://www.usaultimate.org/youth/">Youth Division</a></p>
                      <p><span class="smallest"><span class="smaller">At more than 15,000 members and growing, our youth division currently includes championship play at the high school, U-20 and U-17 levels, in addition to development-level programs
                            for elementary and middle school players. </span>&nbsp;</span></p>
                    </td>
                  </tr>
                  <tr>
                    <td>&nbsp;</td>
                    <td>&nbsp;</td>
                    <td>&nbsp;</td>
                    <td>&nbsp;</td>
                  </tr>
                  <tr>
                    <td>&nbsp;</td>
                    <td>
                      <a href="https://www.usaultimate.org/college/"><img src="/assets/1/Photos/602x397/USAU_D1_2018_PMR_5-27-18_10-01-05 AM-(ZF-4058-68816-1-002).jpg" alt="USAU D1 2018 PMR 5 27 18 10 01 05 AM (ZF 4058 68816 1 002)" width="200" height="133"></a>
                    </td>
                    <td>&nbsp;</td>
                    <td valign="middle">
                      <p class="georgia" style="font-size: 17px; line-height: 1.3em; text-align: center;"><a href="https://www.usaultimate.org/college/">College Division</a></p>
                      <p><span class="smallest"><span class="smaller">More than 18,000 student-athletes across 800+ college teams compete in our college division. This division has competition for large schools and small schools, as well as
                            developmental programs.</span></span></p>
                    </td>
                  </tr>
                  <tr>
                    <td>&nbsp;</td>
                    <td>&nbsp;</td>
                    <td>&nbsp;</td>
                    <td>&nbsp;</td>
                  </tr>
                  <tr>
                    <td>&nbsp;</td>
                    <td>
                      <a href="https://www.usaultimate.org/triplecrowntour/"><img src="/assets/1/Photos/602x397/ClubNats_2018_PMR_10-18-18_4-57-33 PM-(ZF-6580-85073-1-001).jpg" width="200" height="133" alt="ClubNats 2018 PMR 10 18 18 4 57 33 PM (ZF 6580 85073 1 001)" style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"></a>
                    </td>
                    <td>&nbsp;</td>
                    <td valign="middle">
                      <p class="georgia" style="font-size: 17px; line-height: 1.3em; text-align: center;"><a href="https://www.usaultimate.org/triplecrowntour/">Triple Crown Tour</a></p>
                      <p><span class="smallest"><span class="smaller">The Triple Crown Tour represents the highest level of competitive ultimate in North America and features teams in three divisions: men's, mixed and women's.</span></span></p>
                    </td>
                  </tr>
                  <tr>
                    <td>&nbsp;</td>
                    <td>&nbsp;</td>
                    <td>&nbsp;</td>
                    <td>&nbsp;</td>
                  </tr>
                  <tr>
                    <td>&nbsp;</td>
                    <td>
                      <a href="https://www.usaultimate.org/masters/"><img src="/assets/1/Photos/602x397/USAU_Masters_2018_20180722_134519_RC_81-(ZF-4058-68816-1-004).jpg" width="200" height="133" alt="USAU Masters 2018 20180722 134519 RC 81 (ZF 4058 68816 1 004)" style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"></a>
                    </td>
                    <td>&nbsp;</td>
                    <td valign="middle">
                      <p class="georgia" style="font-size: 17px; line-height: 1.3em; text-align: center;"><a href="https://www.usaultimate.org/masters/">Masters Division</a></p>
                      <p><span class="smallest"><span class="smaller">This age-restricted division consists of seven divisions of play:&nbsp;</span></span><span
                          style="color: rgb(0, 0, 0); font-style: normal; font-weight: normal; background-color: rgb(255, 255, 255); font-size: 11.52px;">Men's Masters&nbsp;</span><span class="smallest"
                          style="color: rgb(0, 0, 0); font-style: normal; font-weight: normal; background-color: rgb(255, 255, 255);"><span class="smaller">(33+); Mixed Masters (men: 33+, women: 30+);</span></span><span class="smallest"
                          style="color: rgb(0, 0, 0);"><span class="smaller">Women's Masters (30+); Men's G</span></span><span class="smallest" style="color: rgb(0, 0, 0);"><span class="smaller">rand Masters (40+); Women's Grand Masters (37+); Men's
                            Great Grand Masters (50+); and Women's Great Grand Masters (45+). </span></span><span class="smaller" style="color: rgb(0, 0, 0);">&nbsp;</span></p>
                    </td>
                  </tr>
                  <tr>
                    <td>&nbsp;</td>
                    <td>&nbsp;</td>
                    <td>&nbsp;</td>
                    <td valign="top">&nbsp;</td>
                  </tr>
                  <tr>
                    <td>&nbsp;</td>
                    <td>
                      <a href="https://www.usaultimate.org/beach/"><img src="/assets/1/Photos/602x397/USAU_Beach_2018_PMR_5-20-18_1-22-02 PM-(ZF-4058-68816-1-005).jpg" width="200" height="133" alt="USAU Beach 2018 PMR 5 20 18 1 22 02 PM (ZF 4058 68816 1 005)" style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"></a>
                    </td>
                    <td>&nbsp;</td>
                    <td valign="middle">
                      <p class="georgia" style="font-style: normal; font-size: 17px; line-height: 1.3em; text-align: center; background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/beach/">Beach Division</a></p>
                      <p style="font-style: normal; background-color: rgb(255, 255, 255);"><span class="smallest"><span class="smaller">Beach ultimate is a popular and fast-growing spin-off of the grass-based game and is played as 4-on-4 or 5-on-5.
                            The divisions for USA Ultimate's Beach Championships include the men's, mixed, women's, masters mixed, grand masters men's and great grand masters men's divisions.<br>
                          </span></span></p>
                    </td>
                  </tr>
                </tbody>
              </table>
            </div>
          </li>
          <li id="CT_Alternate_1_rptTabs_ctl01_liTabHtml" class="global_tabs_slide" style="display: none;">
            <div id="tabid_1">
              <p>&nbsp;</p>
              <center>
                <p style="text-align: center;"><a href="https://www.usaultimate.org/archives/default.aspx"><img src="https://www.usaultimate.org/assets/1/Page/History_banner_940x80.png" width="580" height="49" alt=""></a></p>
              </center>
              <p>&nbsp;</p>
              <p style="font-size: 17px; font-weight: normal; line-height: 1.3em; text-align: center; margin: 0px 0px 1em;" class="georgia">Youth Division (Est. 1988)</p>
              <table width="570" border="0" cellpadding="0" cellspacing="0">
                <tbody>
                  <tr>
                    <td height="20" style="text-align: center;"><a href="https://www.usaultimate.org/archives/2019_youth.aspx">2019</a></td>
                    <td style="text-align: center;"><a href="https://www.usaultimate.org/archives/2018_youth.aspx">2018</a></td>
                    <td style="text-align: center;"><a href="https://www.usaultimate.org/archives/2017.aspx">2017</a></td>
                    <td style="text-align: center;"><a href="https://www.usaultimate.org/archives/2016_youth.aspx">2016</a></td>
                    <td style="text-align: center;"><a href="https://www.usaultimate.org/archives/2015_youth.aspx" style="font-weight: normal; font-style: normal; font-size: 11.2px; background-color: rgb(255, 255, 255);">2015</a></td>
                    <td style="text-align: center;"><a href="https://www.usaultimate.org/archives/2014_youth.aspx" style="font-style: normal; font-size: 11.1999998092651px; background-color: rgb(255, 255, 255);">2014</a></td>
                    <td style="text-align: center;"><a href="https://www.usaultimate.org/archives/2013_youth.aspx">2013</a></td>
                    <td style="text-align: center;"><a href="https://www.usaultimate.org/archives/2012_youth.aspx">2012</a></td>
                    <td style="text-align: center;"><a href="https://www.usaultimate.org/archives/2011_youth.aspx">2011</a></td>
                    <td style="text-align: center;"><a href="https://www.usaultimate.org/archives/2010_youth.aspx">2010</a></td>
                  </tr>
                  <tr>
                    <td height="20" style="text-align: center;"><a href="https://www.usaultimate.org/archives/2009_youth.aspx">2009</a></td>
                    <td style="text-align: center;"><a href="https://www.usaultimate.org/archives/2008_youth.aspx">2008</a></td>
                    <td style="text-align: center;"><a href="https://www.usaultimate.org/archives/2007_youth.aspx">2007</a></td>
                    <td style="text-align: center;"><span style="color: rgb(0, 0, 0); font-style: normal; background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/2006_youth.aspx">2006</a></span></td>
                    <td style="text-align: center;"><span style="color: rgb(0, 0, 0); font-style: normal; background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/2005_youth.aspx">2005</a></span></td>
                    <td style="text-align: center;"><span style="color: rgb(0, 0, 0); font-style: normal; background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/2004_youth.aspx">2004</a></span></td>
                    <td style="text-align: center;"><span style="color: rgb(0, 0, 0); font-style: normal; background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/2003_youth.aspx">2003</a></span></td>
                    <td style="text-align: center;"><span style="color: rgb(0, 0, 0); font-style: normal; background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/2002_youth.aspx">2002</a></span></td>
                    <td style="text-align: center;"><span style="color: rgb(0, 0, 0); font-style: normal; background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/2001_youth.aspx">2001</a></span></td>
                    <td style="text-align: center;"><span style="color: rgb(0, 0, 0); font-style: normal; background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/2000_youth.aspx">2000</a></span></td>
                  </tr>
                  <tr>
                    <td height="20" style="text-align: center;"><a href="https://www.usaultimate.org/archives/1999_youth.aspx">1999</a></td>
                    <td style="text-align: center;"><a href="https://www.usaultimate.org/archives/1998_youth.aspx" style="font-style: normal; background-color: rgb(255, 255, 255);">1998</a></td>
                    <td style="text-align: center;">&nbsp;</td>
                    <td style="text-align: center;">&nbsp;</td>
                    <td style="text-align: center;">&nbsp;</td>
                    <td style="text-align: center;">&nbsp;</td>
                    <td style="text-align: center;">&nbsp;</td>
                    <td style="text-align: center;">&nbsp;</td>
                    <td style="text-align: center;">&nbsp;</td>
                    <td style="text-align: center;">&nbsp;</td>
                  </tr>
                  <tr>
                    <td height="20" style="text-align: center;">&nbsp;</td>
                    <td style="text-align: center;"><span style="color: rgb(0, 0, 0); font-style: normal; background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/1988_youth.aspx">1988</a></span></td>
                    <td style="text-align: center;">&nbsp;</td>
                    <td style="text-align: center;">&nbsp;</td>
                    <td style="text-align: center;">&nbsp;</td>
                    <td style="text-align: center;">&nbsp;</td>
                    <td style="text-align: center;">&nbsp;</td>
                    <td style="text-align: center;">&nbsp;</td>
                    <td style="text-align: center;">&nbsp;</td>
                    <td style="text-align: center;">&nbsp;</td>
                  </tr>
                </tbody>
              </table>
              <p>&nbsp;</p>
              <p style="font-size: 17px; font-weight: normal; line-height: 1.3em; text-align: center; margin: 0px 0px 1em;" class="georgia">College Division (Est. 1984<span
                  style="color: rgb(0, 0, 0); background-color: rgb(255, 255, 255); line-height: 1.3em;">)</span></p>
              <table width="570" border="0" cellpadding="0" cellspacing="0" style="font-size: 11px; font-style: normal; color: rgb(0, 0, 0);">
                <tbody>
                  <tr>
                    <td height="20" style="text-align: center;"><a href="https://www.usaultimate.org/archives/2019_college.aspx">2019</a></td>
                    <td style="text-align: center;"><a href="https://www.usaultimate.org/archives/2018_college.aspx">2018</a></td>
                    <td style="text-align: center;"><a href="https://www.usaultimate.org/archives/2017_college.aspx">2017</a></td>
                    <td style="text-align: center;"><a href="https://www.usaultimate.org/archives/2016_college.aspx">2016</a></td>
                    <td style="text-align: center;"><a href="https://www.usaultimate.org/archives/2015_college.aspx" style="font-weight: normal; font-style: normal; font-size: 11.2px; background-color: rgb(255, 255, 255);">2015</a></td>
                    <td style="text-align: center;"><a href="https://www.usaultimate.org/archives/2014_college.aspx" style="font-style: normal; font-size: 11.1999998092651px; background-color: rgb(255, 255, 255);">2014</a></td>
                    <td style="text-align: center;"><a href="https://www.usaultimate.org/archives/2013_college.aspx">2013</a></td>
                    <td style="text-align: center;"><a href="https://www.usaultimate.org/archives/2012_college.aspx">2012</a></td>
                    <td style="text-align: center;"><a href="https://www.usaultimate.org/archives/2011_college.aspx">2011</a></td>
                    <td style="text-align: center;"><a href="https://www.usaultimate.org/archives/2010_college.aspx">2010</a></td>
                  </tr>
                  <tr>
                    <td height="20" style="text-align: center;"><a href="https://www.usaultimate.org/archives/2009_college.aspx">2009</a></td>
                    <td style="text-align: center;"><a href="https://www.usaultimate.org/archives/2008_college.aspx">2008</a></td>
                    <td style="text-align: center;"><a href="https://www.usaultimate.org/archives/2007_college.aspx">2007</a></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/2006_college.aspx">2006</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/2005_college.aspx">2005</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/2004_college.aspx">2004</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/2003_college.aspx">2003</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/2002_college.aspx">2002</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/2001_college.aspx">2001</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/2000_college.aspx">2000</a></span></td>
                  </tr>
                  <tr>
                    <td height="20" style="text-align: center;"><a href="https://www.usaultimate.org/archives/1999_college.aspx">1999</a></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/1998_college.aspx">1998</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/1997_college.aspx">1997</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/1996_college.aspx">1996</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/1995_college.aspx">1995</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/1994_college.aspx">1994</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/1993_college.aspx">1993</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/1992_college.aspx">1992</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/1991_college.aspx">1991</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/1990_college.aspx">1990</a></span></td>
                  </tr>
                  <tr>
                    <td height="20" style="text-align: center;"><a href="https://www.usaultimate.org/archives/1989_college.aspx">1989</a></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/1988_college.aspx">1988</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/1987_college.aspx">1987</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/1986_college.aspx">1986</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/1985_college.aspx">1985</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/1984_college.aspx">1984</a></span></td>
                    <td style="text-align: center;">&nbsp;</td>
                    <td style="text-align: center;">&nbsp;</td>
                    <td style="text-align: center;">&nbsp;</td>
                    <td style="text-align: center;">&nbsp;</td>
                  </tr>
                </tbody>
              </table>
              <p>&nbsp;</p>
              <p style="font-size: 17px; font-weight: normal; line-height: 1.3em; text-align: center; margin: 0px 0px 1em;" class="georgia"><br> Club Division (Est. 1979<span
                  style="color: rgb(0, 0, 0); background-color: rgb(255, 255, 255); line-height: 1.3em;">)</span></p>
              <table width="570" border="0" cellpadding="0" cellspacing="0" style="font-size: 11px; font-style: normal; color: rgb(0, 0, 0);">
                <tbody>
                  <tr>
                    <td height="20" style="text-align: center;"><a href="https://www.usaultimate.org/archives/2019_club.aspx" style="font-weight: 400; font-style: normal; background-color: rgb(255, 255, 255); text-align: center;">2019</a></td>
                    <td style="text-align: center;"><a href="https://www.usaultimate.org/archives/2018_club.aspx">2018</a></td>
                    <td style="text-align: center;"><a href="https://www.usaultimate.org/archives/2017_club.aspx">2017</a></td>
                    <td style="text-align: center;"><a href="https://www.usaultimate.org/archives/2016_club.aspx">2016</a></td>
                    <td style="text-align: center;"><a href="https://www.usaultimate.org/archives/2015_club.aspx" style="font-weight: normal; font-style: normal; font-size: 11.2px; background-color: rgb(255, 255, 255);">2015</a></td>
                    <td style="text-align: center;"><a href="https://www.usaultimate.org/archives/2014_club.aspx" style="font-style: normal; font-size: 11.1999998092651px; background-color: rgb(255, 255, 255);">2014</a></td>
                    <td style="text-align: center;"><a href="https://www.usaultimate.org/archives/2013_club.aspx">2013</a></td>
                    <td style="text-align: center;"><a href="https://www.usaultimate.org/archives/2012_club.aspx">2012</a></td>
                    <td style="text-align: center;"><a href="https://www.usaultimate.org/archives/2011_club.aspx">2011</a></td>
                    <td style="text-align: center;"><a href="https://www.usaultimate.org/archives/2010_club.aspx">2010</a></td>
                  </tr>
                  <tr>
                    <td height="20" style="text-align: center;"><a href="https://www.usaultimate.org/archives/2009_club.aspx">2009</a></td>
                    <td style="text-align: center;"><a href="https://www.usaultimate.org/archives/2008_club.aspx">2008</a></td>
                    <td style="text-align: center;"><a href="https://www.usaultimate.org/archives/2007_club.aspx">2007</a></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/2006_club.aspx">2006</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/2005_club.aspx">2005</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/2004_club.aspx">2004</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/2003_club.aspx">2003</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/2002_club.aspx">2002</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/2001_club.aspx">2001</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/2000_club.aspx">2000</a></span></td>
                  </tr>
                  <tr>
                    <td height="20" style="text-align: center;"><a href="https://www.usaultimate.org/archives/1999_club.aspx">1999</a></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/1998_club.aspx">1998</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/1997_club.aspx">1997</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/1996_club.aspx">1996</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/1995_club.aspx">1995</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/1994_club.aspx">1994</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/1993_club.aspx">1993</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/1992_club.aspx">1992</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/1991_club.aspx">1991</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/1990_club.aspx">1990</a></span></td>
                  </tr>
                  <tr>
                    <td height="20" style="text-align: center;"><a href="https://www.usaultimate.org/archives/1989_club.aspx">1989</a></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/1988_club.aspx">1988</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/1987_club.aspx">1987</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/1986_club.aspx">1986</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/1985_club.aspx">1985</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/1984_club.aspx">1984</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/1983_club.aspx">1983</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/1982_club.aspx">1982</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/1981_club.aspx">1981</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/1980_club.aspx">1980</a></span></td>
                  </tr>
                  <tr>
                    <td height="20" style="text-align: center;"><a href="https://www.usaultimate.org/archives/1979_club.aspx">1979</a></td>
                    <td style="text-align: center;">&nbsp;</td>
                    <td style="text-align: center;">&nbsp;</td>
                    <td style="text-align: center;">&nbsp;</td>
                    <td style="text-align: center;">&nbsp;</td>
                    <td style="text-align: center;">&nbsp;</td>
                    <td style="text-align: center;">&nbsp;</td>
                    <td style="text-align: center;">&nbsp;</td>
                    <td style="text-align: center;">&nbsp;</td>
                    <td style="text-align: center;">&nbsp;</td>
                  </tr>
                </tbody>
              </table>
              <p>&nbsp;</p>
              <p class="georgia" style="font-weight: normal; font-style: normal; font-size: 17px; line-height: 1.3em; text-align: center;">Masters Division (Est. 1991<span
                  style="color: rgb(0, 0, 0); line-height: 1.3em; background-color: rgb(255, 255, 255);">)<br>
                  <br type="_moz">
                </span></p>
              <table width="570" border="0" cellpadding="0" cellspacing="0" style="font-size: 11px; font-weight: normal; font-style: normal; color: rgb(0, 0, 0);">
                <tbody>
                  <tr>
                    <td height="20" style="text-align: center;"><a href="http://www.usaultimate.org/archives/2019_masters.aspx">2019</a></td>
                    <td style="text-align: center;"><a href="https://www.usaultimate.org/archives/2018_masters.aspx">2018</a></td>
                    <td style="text-align: center;"><a href="https://www.usaultimate.org/archives/2017_masters.aspx">2017</a></td>
                    <td style="text-align: center;"><a href="https://www.usaultimate.org/archives/2016_masters.aspx">2016</a></td>
                    <td style="text-align: center;"><a href="https://www.usaultimate.org/archives/2015_masters.aspx" style="font-weight: normal; font-style: normal; font-size: 11.2px; background-color: rgb(255, 255, 255);">2015</a></td>
                    <td style="text-align: center;"><a href="https://www.usaultimate.org/archives/2014_masters.aspx" style="font-style: normal; font-size: 11.2px; background-color: rgb(255, 255, 255);">2014</a></td>
                    <td style="text-align: center;"><a href="https://www.usaultimate.org/archives/2013_masters.aspx">2013</a></td>
                    <td style="text-align: center;"><a href="https://www.usaultimate.org/archives/2012_masters.aspx">2012</a></td>
                    <td style="text-align: center;"><a href="https://www.usaultimate.org/archives/2011_masters.aspx">2011</a></td>
                    <td style="text-align: center;"><a href="https://www.usaultimate.org/archives/2010_masters.aspx">2010</a></td>
                  </tr>
                  <tr>
                    <td height="20" style="text-align: center;"><a href="https://www.usaultimate.org/archives/2009_masters.aspx">2009</a></td>
                    <td style="text-align: center;"><a href="https://www.usaultimate.org/archives/2008_masters.aspx">2008</a></td>
                    <td style="text-align: center;"><a href="https://www.usaultimate.org/archives/2007_masters.aspx">2007</a></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/2006_masters.aspx">2006</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/2005_masters.aspx">2005</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/2004_masters.aspx">2004</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/2003_masters.aspx">2003</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/2002_masters.aspx">2002</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/2001_masters.aspx">2001</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/2000_masters.aspx">2000</a></span></td>
                  </tr>
                  <tr>
                    <td height="20" style="text-align: center;"><a href="https://www.usaultimate.org/archives/1999_masters.aspx">1999</a></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/1998_masters.aspx">1998</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/1997_masters.aspx">1997</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/1996_masters.aspx">1996</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/1995_masters.aspx">1995</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/1994_masters.aspx">1994</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/1993_masters.aspx">1993</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/1992_masters.aspx">1992</a></span></td>
                    <td style="text-align: center;"><span style="font-style: normal; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/1991_masters.aspx">1991</a></span></td>
                    <td style="text-align: center;">&nbsp;</td>
                  </tr>
                </tbody>
              </table>
              <p><span style="color: rgb(0, 0, 0); font-style: normal; font-weight: normal;">&nbsp;</span>&nbsp;</p>
              <p style="font-size: 17px; font-weight: normal; line-height: 1.3em; text-align: center; margin: 0px 0px 1em;" class="georgia"><br> Beach Division (Est. 2015<span
                  style="color: rgb(0, 0, 0); background-color: rgb(255, 255, 255); line-height: 1.3em;">)</span></p>
              <table width="570" border="0" cellpadding="0" cellspacing="0" style="font-size: 11px; font-style: normal; color: rgb(0, 0, 0);">
                <tbody>
                  <tr>
                    <td height="20" width="10%" style="text-align: center;"><span
                        style="color: rgb(0, 0, 0); font-style: normal; font-weight: normal; background-color: rgb(255, 255, 255);"><a href="http://www.usaultimate.org/archives/2019_beach.aspx">2019</a></span></td>
                    <td width="10%" style="text-align: center;"><span
                        style="color: rgb(0, 0, 0); font-style: normal; font-weight: normal; background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/2018_beach.aspx">2018</a></span></td>
                    <td style="text-align: center;" width="10%"><span
                        style="color: rgb(0, 0, 0); font-style: normal; font-weight: normal; background-color: rgb(255, 255, 255);"><a href="https://www.usaultimate.org/archives/2017_beach.aspx">2017</a></span></td>
                    <td style="text-align: center;" width="10%"><a href="https://www.usaultimate.org/archives/2016_beach.aspx">2016</a></td>
                    <td style="text-align: center;" width="10%"><a href="https://www.usaultimate.org/archives/2015_beach.aspx" style="font-weight: normal; font-style: normal; font-size: 11.2px; background-color: rgb(255, 255, 255);">2015</a></td>
                    <td style="text-align: center;" width="10%">&nbsp; &nbsp;&nbsp;</td>
                    <td style="text-align: center;">&nbsp; &nbsp;&nbsp;</td>
                    <td style="text-align: center;" width="10%">&nbsp; &nbsp;&nbsp;</td>
                    <td style="text-align: center;" width="10%">&nbsp; &nbsp;&nbsp;</td>
                    <td style="text-align: center;" width="10%">&nbsp; &nbsp;&nbsp;</td>
                  </tr>
                  <tr>
                    <td height="20" style="text-align: center;">&nbsp;</td>
                    <td style="text-align: center;">&nbsp;</td>
                    <td style="text-align: center;">&nbsp;</td>
                    <td style="text-align: center;">&nbsp;</td>
                    <td style="text-align: center;">&nbsp;</td>
                    <td style="text-align: center;">&nbsp;</td>
                    <td style="text-align: center;">&nbsp;</td>
                    <td style="text-align: center;">&nbsp;</td>
                    <td style="text-align: center;">&nbsp;</td>
                    <td style="text-align: center;">&nbsp;</td>
                  </tr>
                  <tr>
                    <td height="20" style="text-align: center;">&nbsp;</td>
                    <td style="text-align: center;">&nbsp;</td>
                    <td style="text-align: center;">&nbsp;</td>
                    <td style="text-align: center;">&nbsp;</td>
                    <td style="text-align: center;">&nbsp;</td>
                    <td style="text-align: center;">&nbsp;</td>
                    <td style="text-align: center;">&nbsp;</td>
                    <td style="text-align: center;">&nbsp;</td>
                    <td style="text-align: center;">&nbsp;</td>
                    <td style="text-align: center;">&nbsp;</td>
                  </tr>
                </tbody>
              </table>
              <p>&nbsp;</p>
              <p style="text-align: center;">
                <a href="https://www.usaultimate.org/news/about-the-archives-a-message-from-usa-ultimate/" style="font-style: normal; background-color: rgb(255, 255, 255);"><em>About the Archives: a Message From USA Ultimate</em></a></p>
            </div>
          </li>
        </ul>
      </div><input name="CT_Alternate_1$hdnCount" type="hidden" id="CT_Alternate_1_hdnCount" class="hdnCount" value="2">
    </div>
    <div id="additional_content">
      <p><a href="http://www.united.com"><img src="/assets/1/Page/UA_UMP-176_DigitalMedia_USOC_300x250.jpg" alt="UA UMP 176 DigitalMedia USOC 300x250" width="300" height="250"></a>&nbsp;</p>
      <center> <a href="http://theultimatefoundation.org/donate/"><img src="/assets/1/Page/DonateNow.jpg" alt="DonateNow" width="300" height="90"></a> </center>
      <p>&nbsp;</p>
      <p>&nbsp;</p>
      <center>
        <!-- /96139156/HomePage -->
        <div id="div-gpt-ad-1449169598968-0" style="height:250px; width:300px;" data-google-query-id="CJ2P_Oe48IUDFTIBvwQdNtMAHQ">
          <script type="text/javascript">
            googletag.cmd.push(function() {
              googletag.display('div-gpt-ad-1449169598968-0');
            });
          </script>
          <div id="google_ads_iframe_/96139156/HomePage_0__container__" style="border: 0pt none; width: 300px; height: 0px;"></div>
        </div>
        <br><br>
        <!-- /96139156/Homepage2 -->
        <div id="div-gpt-ad-1449169598968-1" style="height:250px; width:300px;" data-google-query-id="CJ6P_Oe48IUDFTIBvwQdNtMAHQ">
          <script type="text/javascript">
            googletag.cmd.push(function() {
              googletag.display('div-gpt-ad-1449169598968-1');
            });
          </script>
          <div id="google_ads_iframe_/96139156/Homepage2_0__container__" style="border: 0pt none; width: 300px; height: 0px;"></div>
        </div>
      </center>
    </div>
    <div id="footer_ad">
      <div id="divAdZone_0b0d47841e234e62832c5351a60cd78e"></div>
      <script type="text/javascript">
        getAd(2, 0, 'divAdZone_0b0d47841e234e62832c5351a60cd78e')
      </script>
    </div>
  </div>
  <div id="footer_slot">
    <div id="footer">
      <div id="footer_info"> © 2024 usaultimate.org All Rights Reserved. <ul id="footer_links">
          <li><a href="/privacy_policy.aspx">Privacy Policy</a></li>
          <li>|</li>
          <li><a href="/site_map.aspx">Site Map</a></li>
          <li>|</li>
          <li><a href="/about/contact_us/">Contact Us</a></li>
          <li>|</li>
          <li><a href="/mobile/default.aspx">Mobile</a></li>
          <li>|</li>
          <li><a href="/rss.aspx">RSS</a></li>
        </ul>
      </div>
      <div class="vcard">
        <a class="fn org url" href="/">USA Ultimate</a>
        <div class="adr">
          <div><span class="street-address">5825 Delmonico Dr.</span> • <span class="extended-address">Suite 370</span></div>
          <span class="locality">Colorado Springs</span>, <abbr class="region" title="Colorado">CO</abbr>
          <span class="postal-code">80919</span>
          <div class="country-name">USA</div>
        </div>
        <div class="tel">800.872.4384 <span class="type">Work</span></div>
      </div>
    </div>
  </div>
  <div>
    <input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="3989C74E">
    <input type="hidden" name="__EVENTVALIDATION" id="__EVENTVALIDATION" value="/wEWAgKz1drtBwKs1/HXDWW5zoGFOSrr+96wGfqIll2p8spq">
  </div>
  <script type="text/javascript">
    //<![CDATA[
    Sys.Application.initialize();
    //]]>
  </script>
</form>

Text Content

USA ULTIMATE


THE UNITED STATES NATIONAL GOVERNING BODY FOR THE SPORT OF ULTIMATE


 * Facebook
 * Twitter
 * Google
 * Youtube

Member Account

 * About »
   * Contact Us »
     * USA Ultimate Staff
     * Youth Division
     * College Division
     * Club Division
     * Masters Division
     * Beach Division
     * USA Ultimate Affiliates
     * State-Based Organizations
     * Board of Directors
   * Where to Play
   * About Ultimate »
     * 2020-21 Rules of Ultimate
     * Spirit of the Game
   * About USA Ultimate »
     * Annual Report (2018)
     * Employment & Volunteer Job Opportunities
   * Hall of Fame
   * Governance »
     * Bylaws (2014)
     * Strategic Plan (2019-2021)
   * Equity and Diversity
   * FAQs
   
 * News »
   * USA Ultimate Mobile App »
     * iOS
     * Android
   * USA Ultimate Magazine
   * Rankings »
     * College Men's
     * College Women's
     * TCT Men's
     * TCT Mixed
     * TCT Women's
   * Videos
   * USA Ultimate Weekly
   * College News
   * Triple Crown Tour News
   * Beach News
   * Youth News
   * National Teams News
   * All News Posts
   
 * Events »
   * Tournament Calendar »
     * League Calendar
   * Event Archives ('79-'19) »
     * 2019
     * 2018
     * 2017
     * 2016
     * 2015
     * 2014
     * 2013
     * 2012
     * 2011
     * 2010
     * 2009
     * 2008
     * 2007
     * 2006
     * 2005
     * 2004
     * 2003
     * 2002
     * 2001
     * 2000
     * 1999
     * 1998
     * 1997
     * 1996
     * 1995
     * 1994
     * 1993
     * 1992
     * 1991
     * 1990
     * 1989
     * 1988
     * 1987
     * 1986
     * 1985
     * 1984
     * 1983
     * 1982
     * 1981
     * 1980
     * 1979
   * Beach Championships
   * D-III College
   * D-I College
   * H.S. States
   * YCC
   * U.S. Open
   * Elite-Select Challenge
   * Pro-Elite Challenge
   * Select Flight Invite - East
   * Select Flight Invite - West
   * Pro Championships
   * National Championships
   * Masters Championships
   
 * Competition »
   * Return to Play Guidelines
   * Youth Division »
     * Youth Guidelines (2020)
   * College Division »
     * College Eligibility
     * College Guidelines (2020)
     * College Mixed Guidelines (2019)
     * College Resources
   * Club Division (Triple Crown Tour) »
     * TCT Guidelines (2020)
     * U.S. Open Club Championships
   * Masters Division »
     * Masters Guidelines (2020)
   * Beach Division »
     * Beach Guidelines (2020)
   * USA Ultimate National Teams »
     * 2019 WU24
     * 2020 WUGC
     * 2020 WJUC
     * 2020 WMUC
   * National Skills Challenge »
     * National Skills Challenge Guidelines (2020)
   * Skills Challenge App Program
   * Ultimate Disc Golf Derby »
     * Ultimate Disc Golf Derby Guidelines (2020)
   
 * Programs »
   * Affiliates »
     * About
     * Apply
     * Benefits
     * Contacts
     * Event Registration
     * FAQ
     * Grants
     * Recognition
     * Written Resources
   * Camps
   * Chaperone »
     * Youth Safety
   * Coaching »
     * Coaching Development Program
     * Athlete Protection
   * Event Sanctioning & Insurance »
     * Tournament Sanctioning
     * League Sanctioning
     * Practice Insurance
   * Girls' Ultimate Movement (GUM)
   * Learn to Play
   * Coach & Organizer Convention
   * New Start Grant Kits
   * Organizer Resources »
     * Bid to Host USA Ultimate Events
     * Tournament Director's Certification Program
     * Youth & Education Resources
     * Women's Development
     * College Development
     * Ultimate in Your Community
   * Parent Resources
   * Rules & Officiating »
     * Rules
     * Observer Certification Program
     * Disc Standards
   * State-Based Organizations »
     * Benefits & Requirements
     * FAQ
     * Contact State Orgs
   
 * Membership »
   * Benefits & Value
   * Gift Certificates
   * Impact of Our Members
   * Membership Levels »
     * Lifetime Members
     * Youth-Serving Organizations
   * Play It Forward
   * Registration Forms: Waiver & Medical Authorization
   * Signature Series Disc
   * Trends Over Time
   * Login
   
 * Shop »
   * USA Ultimate Discs, Kits & Merchandise
   * Apparel & Accessories »
     * Men
     * Women
     * Kids
     * T-Shirts
     * Sweats
   * Licensed Merchandise Suppliers
   * Approved Disc Models
   

 * Spirit of the Game »
   * Spirit of Coaching
   * Spirit Awards
   * Spirit Captain Role
   
 * Rules »
   * 2020-21 Rules of Ultimate
   * Observer Program »
     * Observer Contacts
   
 * Athletes »
   * Where to Play
   * Sanctioned Event Registration
   * Athlete Protection
   
 * Coaches »
   * Coaching Requirements
   * The Coaching Development Program »
     * Register for a workshop
   * Become a USA Ultimate Coach Member
   * Athlete Protection
   
 * Fans »
   * Event Calendar
   * History / Event Archives
   * Parent Resources
   
 * Organizers / Admins »
   * Resources »
     * Bid to Host USA Ultimate Events
     * Tournament Director's Certification Program
   * Event Sanctioning »
     * League Competition
     * Tournament Competition
     * Other Development (Practices, Clinics, etc)
   * Insurance
   * Become a Chaperone
   * Athlete Protection
   

 
Previous


 * VOTE IN THE 2020 BOARD OF DIRECTORS ELECTION
   
   Get to know the candidates running for the 2021-23 USA Ultimate Board of
   Directors and vote by December 23!


 * COMPETITION WORKING GROUP MEETS TO DISCUSS AND MAKE DECISIONS ON 2021 SEASON
   
   College Series Moved to the Fall, Eligibility Extended, Return to Play
   Guidelines Being Updated


 * FINAL RESULTS ANNOUNCED IN 2020 NATIONAL SKILLS CHALLENGE
   
   Check out the final standings in the 2020 National Skills Challenge.


 * INDIVIDUAL SPIRIT AWARDS TO BE PRESENTED DESPITE SEASON CANCELLATION
   
   USA Ultimate will continue to recognize winners of the club and masters
   division individual Spirit awards.


 * ULTIMATE DISC GOLF DERBY FINAL RESULTS RELEASED
   
   Check out the final results in the 2020 Ultimate Disc Golf Derby.


 * BECOME A 2021 MEMBER AND SAVE THROUGH DECEMBER 31!
   
   Youth, College, Adult and Coach Memberships will be discounted through the
   end of the year.

Next
Check out the final results in the 2020 Ultimate Disc Golf Derby.
Read the Full Story
 










 * COMPETITION

 * EVENT ARCHIVES

 *    
   
   Youth Division
   
   At more than 15,000 members and growing, our youth division currently
   includes championship play at the high school, U-20 and U-17 levels, in
   addition to development-level programs for elementary and middle school
   players.  
   
              
   
   College Division
   
   More than 18,000 student-athletes across 800+ college teams compete in our
   college division. This division has competition for large schools and small
   schools, as well as developmental programs.
   
              
   
   Triple Crown Tour
   
   The Triple Crown Tour represents the highest level of competitive ultimate in
   North America and features teams in three divisions: men's, mixed and
   women's.
   
              
   
   Masters Division
   
   This age-restricted division consists of seven divisions of play: Men's
   Masters (33+); Mixed Masters (men: 33+, women: 30+);Women's Masters (30+);
   Men's Grand Masters (40+); Women's Grand Masters (37+); Men's Great Grand
   Masters (50+); and Women's Great Grand Masters (45+).  
   
              
   
   Beach Division
   
   Beach ultimate is a popular and fast-growing spin-off of the grass-based game
   and is played as 4-on-4 or 5-on-5. The divisions for USA Ultimate's Beach
   Championships include the men's, mixed, women's, masters mixed, grand masters
   men's and great grand masters men's divisions.
   

 *  
   
   
   
    
   
   Youth Division (Est. 1988)
   
   2019 2018 2017 2016 2015 2014 2013 2012 2011 2010 2009 2008 2007 2006 2005
   2004 2003 2002 2001 2000 1999 1998                   1988                
   
    
   
   College Division (Est. 1984)
   
   2019 2018 2017 2016 2015 2014 2013 2012 2011 2010 2009 2008 2007 2006 2005
   2004 2003 2002 2001 2000 1999 1998 1997 1996 1995 1994 1993 1992 1991 1990
   1989 1988 1987 1986 1985 1984        
   
    
   
   
   Club Division (Est. 1979)
   
   2019 2018 2017 2016 2015 2014 2013 2012 2011 2010 2009 2008 2007 2006 2005
   2004 2003 2002 2001 2000 1999 1998 1997 1996 1995 1994 1993 1992 1991 1990
   1989 1988 1987 1986 1985 1984 1983 1982 1981 1980 1979                  
   
    
   
   Masters Division (Est. 1991)
   
   
   
   2019 2018 2017 2016 2015 2014 2013 2012 2011 2010 2009 2008 2007 2006 2005
   2004 2003 2002 2001 2000 1999 1998 1997 1996 1995 1994 1993 1992 1991  
   
     
   
   
   Beach Division (Est. 2015)
   
   2019 2018 2017 2016 2015                                                     
              
   
    
   
   About the Archives: a Message From USA Ultimate

 

 

 






© 2024 usaultimate.org All Rights Reserved.
 * Privacy Policy
 * |
 * Site Map
 * |
 * Contact Us
 * |
 * Mobile
 * |
 * RSS

USA Ultimate
5825 Delmonico Dr. • Suite 370
Colorado Springs, CO 80919
USA
800.872.4384 Work